diff options
520 files changed, 5182 insertions, 2900 deletions
diff --git a/Documentation/devicetree/bindings/net/macb.txt b/Documentation/devicetree/bindings/net/macb.txt index 44afa0e5057d..4ff65047bb9a 100644 --- a/Documentation/devicetree/bindings/net/macb.txt +++ b/Documentation/devicetree/bindings/net/macb.txt | |||
| @@ -4,7 +4,7 @@ Required properties: | |||
| 4 | - compatible: Should be "cdns,[<chip>-]{macb|gem}" | 4 | - compatible: Should be "cdns,[<chip>-]{macb|gem}" |
| 5 | Use "cdns,at91sam9260-macb" Atmel at91sam9260 and at91sam9263 SoCs. | 5 | Use "cdns,at91sam9260-macb" Atmel at91sam9260 and at91sam9263 SoCs. |
| 6 | Use "cdns,at32ap7000-macb" for other 10/100 usage or use the generic form: "cdns,macb". | 6 | Use "cdns,at32ap7000-macb" for other 10/100 usage or use the generic form: "cdns,macb". |
| 7 | Use "cnds,pc302-gem" for Picochip picoXcell pc302 and later devices based on | 7 | Use "cdns,pc302-gem" for Picochip picoXcell pc302 and later devices based on |
| 8 | the Cadence GEM, or the generic form: "cdns,gem". | 8 | the Cadence GEM, or the generic form: "cdns,gem". |
| 9 | - reg: Address and length of the register set for the device | 9 | - reg: Address and length of the register set for the device |
| 10 | - interrupts: Should contain macb interrupt | 10 | - interrupts: Should contain macb interrupt |
diff --git a/Documentation/devicetree/bindings/video/simple-framebuffer.txt b/Documentation/devicetree/bindings/video/simple-framebuffer.txt new file mode 100644 index 000000000000..3ea460583111 --- /dev/null +++ b/Documentation/devicetree/bindings/video/simple-framebuffer.txt | |||
| @@ -0,0 +1,25 @@ | |||
| 1 | Simple Framebuffer | ||
| 2 | |||
| 3 | A simple frame-buffer describes a raw memory region that may be rendered to, | ||
| 4 | with the assumption that the display hardware has already been set up to scan | ||
| 5 | out from that buffer. | ||
| 6 | |||
| 7 | Required properties: | ||
| 8 | - compatible: "simple-framebuffer" | ||
| 9 | - reg: Should contain the location and size of the framebuffer memory. | ||
| 10 | - width: The width of the framebuffer in pixels. | ||
| 11 | - height: The height of the framebuffer in pixels. | ||
| 12 | - stride: The number of bytes in each line of the framebuffer. | ||
| 13 | - format: The format of the framebuffer surface. Valid values are: | ||
| 14 | - r5g6b5 (16-bit pixels, d[15:11]=r, d[10:5]=g, d[4:0]=b). | ||
| 15 | |||
| 16 | Example: | ||
| 17 | |||
| 18 | framebuffer { | ||
| 19 | compatible = "simple-framebuffer"; | ||
| 20 | reg = <0x1d385000 (1600 * 1200 * 2)>; | ||
| 21 | width = <1600>; | ||
| 22 | height = <1200>; | ||
| 23 | stride = <(1600 * 2)>; | ||
| 24 | format = "r5g6b5"; | ||
| 25 | }; | ||
diff --git a/Documentation/rapidio/rapidio.txt b/Documentation/rapidio/rapidio.txt index c75694b35d08..a9c16c979da2 100644 --- a/Documentation/rapidio/rapidio.txt +++ b/Documentation/rapidio/rapidio.txt | |||
| @@ -79,20 +79,63 @@ master port that is used to communicate with devices within the network. | |||
| 79 | In order to initialize the RapidIO subsystem, a platform must initialize and | 79 | In order to initialize the RapidIO subsystem, a platform must initialize and |
| 80 | register at least one master port within the RapidIO network. To register mport | 80 | register at least one master port within the RapidIO network. To register mport |
| 81 | within the subsystem controller driver initialization code calls function | 81 | within the subsystem controller driver initialization code calls function |
| 82 | rio_register_mport() for each available master port. After all active master | 82 | rio_register_mport() for each available master port. |
| 83 | ports are registered with a RapidIO subsystem, the rio_init_mports() routine | ||
| 84 | is called to perform enumeration and discovery. | ||
| 85 | 83 | ||
| 86 | In the current PowerPC-based implementation a subsys_initcall() is specified to | 84 | RapidIO subsystem uses subsys_initcall() or device_initcall() to perform |
| 87 | perform controller initialization and mport registration. At the end it directly | 85 | controller initialization (depending on controller device type). |
| 88 | calls rio_init_mports() to execute RapidIO enumeration and discovery. | 86 | |
| 87 | After all active master ports are registered with a RapidIO subsystem, | ||
| 88 | an enumeration and/or discovery routine may be called automatically or | ||
| 89 | by user-space command. | ||
| 89 | 90 | ||
| 90 | 4. Enumeration and Discovery | 91 | 4. Enumeration and Discovery |
| 91 | ---------------------------- | 92 | ---------------------------- |
| 92 | 93 | ||
| 93 | When rio_init_mports() is called it scans a list of registered master ports and | 94 | 4.1 Overview |
| 94 | calls an enumeration or discovery routine depending on the configured role of a | 95 | ------------ |
| 95 | master port: host or agent. | 96 | |
| 97 | RapidIO subsystem configuration options allow users to specify enumeration and | ||
| 98 | discovery methods as statically linked components or loadable modules. | ||
| 99 | An enumeration/discovery method implementation and available input parameters | ||
| 100 | define how any given method can be attached to available RapidIO mports: | ||
| 101 | simply to all available mports OR individually to the specified mport device. | ||
| 102 | |||
| 103 | Depending on selected enumeration/discovery build configuration, there are | ||
| 104 | several methods to initiate an enumeration and/or discovery process: | ||
| 105 | |||
| 106 | (a) Statically linked enumeration and discovery process can be started | ||
| 107 | automatically during kernel initialization time using corresponding module | ||
| 108 | parameters. This was the original method used since introduction of RapidIO | ||
| 109 | subsystem. Now this method relies on enumerator module parameter which is | ||
| 110 | 'rio-scan.scan' for existing basic enumeration/discovery method. | ||
| 111 | When automatic start of enumeration/discovery is used a user has to ensure | ||
| 112 | that all discovering endpoints are started before the enumerating endpoint | ||
| 113 | and are waiting for enumeration to be completed. | ||
| 114 | Configuration option CONFIG_RAPIDIO_DISC_TIMEOUT defines time that discovering | ||
| 115 | endpoint waits for enumeration to be completed. If the specified timeout | ||
| 116 | expires the discovery process is terminated without obtaining RapidIO network | ||
| 117 | information. NOTE: a timed out discovery process may be restarted later using | ||
| 118 | a user-space command as it is described later if the given endpoint was | ||
| 119 | enumerated successfully. | ||
| 120 | |||
| 121 | (b) Statically linked enumeration and discovery process can be started by | ||
| 122 | a command from user space. This initiation method provides more flexibility | ||
| 123 | for a system startup compared to the option (a) above. After all participating | ||
| 124 | endpoints have been successfully booted, an enumeration process shall be | ||
| 125 | started first by issuing a user-space command, after an enumeration is | ||
| 126 | completed a discovery process can be started on all remaining endpoints. | ||
| 127 | |||
| 128 | (c) Modular enumeration and discovery process can be started by a command from | ||
| 129 | user space. After an enumeration/discovery module is loaded, a network scan | ||
| 130 | process can be started by issuing a user-space command. | ||
| 131 | Similar to the option (b) above, an enumerator has to be started first. | ||
| 132 | |||
| 133 | (d) Modular enumeration and discovery process can be started by a module | ||
| 134 | initialization routine. In this case an enumerating module shall be loaded | ||
| 135 | first. | ||
| 136 | |||
| 137 | When a network scan process is started it calls an enumeration or discovery | ||
| 138 | routine depending on the configured role of a master port: host or agent. | ||
| 96 | 139 | ||
| 97 | Enumeration is performed by a master port if it is configured as a host port by | 140 | Enumeration is performed by a master port if it is configured as a host port by |
| 98 | assigning a host device ID greater than or equal to zero. A host device ID is | 141 | assigning a host device ID greater than or equal to zero. A host device ID is |
| @@ -104,8 +147,58 @@ for it. | |||
| 104 | The enumeration and discovery routines use RapidIO maintenance transactions | 147 | The enumeration and discovery routines use RapidIO maintenance transactions |
| 105 | to access the configuration space of devices. | 148 | to access the configuration space of devices. |
| 106 | 149 | ||
| 107 | The enumeration process is implemented according to the enumeration algorithm | 150 | 4.2 Automatic Start of Enumeration and Discovery |
| 108 | outlined in the RapidIO Interconnect Specification: Annex I [1]. | 151 | ------------------------------------------------ |
| 152 | |||
| 153 | Automatic enumeration/discovery start method is applicable only to built-in | ||
| 154 | enumeration/discovery RapidIO configuration selection. To enable automatic | ||
| 155 | enumeration/discovery start by existing basic enumerator method set use boot | ||
| 156 | command line parameter "rio-scan.scan=1". | ||
| 157 | |||
| 158 | This configuration requires synchronized start of all RapidIO endpoints that | ||
| 159 | form a network which will be enumerated/discovered. Discovering endpoints have | ||
| 160 | to be started before an enumeration starts to ensure that all RapidIO | ||
| 161 | controllers have been initialized and are ready to be discovered. Configuration | ||
| 162 | parameter CONFIG_RAPIDIO_DISC_TIMEOUT defines time (in seconds) which | ||
| 163 | a discovering endpoint will wait for enumeration to be completed. | ||
| 164 | |||
| 165 | When automatic enumeration/discovery start is selected, basic method's | ||
| 166 | initialization routine calls rio_init_mports() to perform enumeration or | ||
| 167 | discovery for all known mport devices. | ||
| 168 | |||
| 169 | Depending on RapidIO network size and configuration this automatic | ||
| 170 | enumeration/discovery start method may be difficult to use due to the | ||
| 171 | requirement for synchronized start of all endpoints. | ||
| 172 | |||
| 173 | 4.3 User-space Start of Enumeration and Discovery | ||
| 174 | ------------------------------------------------- | ||
| 175 | |||
| 176 | User-space start of enumeration and discovery can be used with built-in and | ||
| 177 | modular build configurations. For user-space controlled start RapidIO subsystem | ||
| 178 | creates the sysfs write-only attribute file '/sys/bus/rapidio/scan'. To initiate | ||
| 179 | an enumeration or discovery process on specific mport device, a user needs to | ||
| 180 | write mport_ID (not RapidIO destination ID) into that file. The mport_ID is a | ||
| 181 | sequential number (0 ... RIO_MAX_MPORTS) assigned during mport device | ||
| 182 | registration. For example for machine with single RapidIO controller, mport_ID | ||
| 183 | for that controller always will be 0. | ||
| 184 | |||
| 185 | To initiate RapidIO enumeration/discovery on all available mports a user may | ||
| 186 | write '-1' (or RIO_MPORT_ANY) into the scan attribute file. | ||
| 187 | |||
| 188 | 4.4 Basic Enumeration Method | ||
| 189 | ---------------------------- | ||
| 190 | |||
| 191 | This is an original enumeration/discovery method which is available since | ||
| 192 | first release of RapidIO subsystem code. The enumeration process is | ||
| 193 | implemented according to the enumeration algorithm outlined in the RapidIO | ||
| 194 | Interconnect Specification: Annex I [1]. | ||
| 195 | |||
| 196 | This method can be configured as statically linked or loadable module. | ||
| 197 | The method's single parameter "scan" allows to trigger the enumeration/discovery | ||
| 198 | process from module initialization routine. | ||
| 199 | |||
| 200 | This enumeration/discovery method can be started only once and does not support | ||
| 201 | unloading if it is built as a module. | ||
| 109 | 202 | ||
| 110 | The enumeration process traverses the network using a recursive depth-first | 203 | The enumeration process traverses the network using a recursive depth-first |
| 111 | algorithm. When a new device is found, the enumerator takes ownership of that | 204 | algorithm. When a new device is found, the enumerator takes ownership of that |
| @@ -160,6 +253,19 @@ time period. If this wait time period expires before enumeration is completed, | |||
| 160 | an agent skips RapidIO discovery and continues with remaining kernel | 253 | an agent skips RapidIO discovery and continues with remaining kernel |
| 161 | initialization. | 254 | initialization. |
| 162 | 255 | ||
| 256 | 4.5 Adding New Enumeration/Discovery Method | ||
| 257 | ------------------------------------------- | ||
| 258 | |||
| 259 | RapidIO subsystem code organization allows addition of new enumeration/discovery | ||
| 260 | methods as new configuration options without significant impact to to the core | ||
| 261 | RapidIO code. | ||
| 262 | |||
| 263 | A new enumeration/discovery method has to be attached to one or more mport | ||
| 264 | devices before an enumeration/discovery process can be started. Normally, | ||
| 265 | method's module initialization routine calls rio_register_scan() to attach | ||
| 266 | an enumerator to a specified mport device (or devices). The basic enumerator | ||
| 267 | implementation demonstrates this process. | ||
| 268 | |||
| 163 | 5. References | 269 | 5. References |
| 164 | ------------- | 270 | ------------- |
| 165 | 271 | ||
diff --git a/Documentation/rapidio/sysfs.txt b/Documentation/rapidio/sysfs.txt index 97f71ce575d6..19878179da4c 100644 --- a/Documentation/rapidio/sysfs.txt +++ b/Documentation/rapidio/sysfs.txt | |||
| @@ -88,3 +88,20 @@ that exports additional attributes. | |||
| 88 | 88 | ||
| 89 | IDT_GEN2: | 89 | IDT_GEN2: |
| 90 | errlog - reads contents of device error log until it is empty. | 90 | errlog - reads contents of device error log until it is empty. |
| 91 | |||
| 92 | |||
| 93 | 5. RapidIO Bus Attributes | ||
| 94 | ------------------------- | ||
| 95 | |||
| 96 | RapidIO bus subdirectory /sys/bus/rapidio implements the following bus-specific | ||
| 97 | attribute: | ||
| 98 | |||
| 99 | scan - allows to trigger enumeration discovery process from user space. This | ||
| 100 | is a write-only attribute. To initiate an enumeration or discovery | ||
| 101 | process on specific mport device, a user needs to write mport_ID (not | ||
| 102 | RapidIO destination ID) into this file. The mport_ID is a sequential | ||
| 103 | number (0 ... RIO_MAX_MPORTS) assigned to the mport device. | ||
| 104 | For example, for a machine with a single RapidIO controller, mport_ID | ||
| 105 | for that controller always will be 0. | ||
| 106 | To initiate RapidIO enumeration/discovery on all available mports | ||
| 107 | a user must write '-1' (or RIO_MPORT_ANY) into this attribute file. | ||
diff --git a/MAINTAINERS b/MAINTAINERS index 829c0321108b..fd3a495a0005 100644 --- a/MAINTAINERS +++ b/MAINTAINERS | |||
| @@ -3865,9 +3865,16 @@ M: K. Y. Srinivasan <kys@microsoft.com> | |||
| 3865 | M: Haiyang Zhang <haiyangz@microsoft.com> | 3865 | M: Haiyang Zhang <haiyangz@microsoft.com> |
| 3866 | L: devel@linuxdriverproject.org | 3866 | L: devel@linuxdriverproject.org |
| 3867 | S: Maintained | 3867 | S: Maintained |
| 3868 | F: drivers/hv/ | 3868 | F: arch/x86/include/asm/mshyperv.h |
| 3869 | F: arch/x86/include/uapi/asm/hyperv.h | ||
| 3870 | F: arch/x86/kernel/cpu/mshyperv.c | ||
| 3869 | F: drivers/hid/hid-hyperv.c | 3871 | F: drivers/hid/hid-hyperv.c |
| 3872 | F: drivers/hv/ | ||
| 3870 | F: drivers/net/hyperv/ | 3873 | F: drivers/net/hyperv/ |
| 3874 | F: drivers/scsi/storvsc_drv.c | ||
| 3875 | F: drivers/video/hyperv_fb.c | ||
| 3876 | F: include/linux/hyperv.h | ||
| 3877 | F: tools/hv/ | ||
| 3871 | 3878 | ||
| 3872 | I2C OVER PARALLEL PORT | 3879 | I2C OVER PARALLEL PORT |
| 3873 | M: Jean Delvare <khali@linux-fr.org> | 3880 | M: Jean Delvare <khali@linux-fr.org> |
| @@ -4641,12 +4648,13 @@ F: include/linux/sunrpc/ | |||
| 4641 | F: include/uapi/linux/sunrpc/ | 4648 | F: include/uapi/linux/sunrpc/ |
| 4642 | 4649 | ||
| 4643 | KERNEL VIRTUAL MACHINE (KVM) | 4650 | KERNEL VIRTUAL MACHINE (KVM) |
| 4644 | M: Marcelo Tosatti <mtosatti@redhat.com> | ||
| 4645 | M: Gleb Natapov <gleb@redhat.com> | 4651 | M: Gleb Natapov <gleb@redhat.com> |
| 4652 | M: Paolo Bonzini <pbonzini@redhat.com> | ||
| 4646 | L: kvm@vger.kernel.org | 4653 | L: kvm@vger.kernel.org |
| 4647 | W: http://kvm.qumranet.com | 4654 | W: http://linux-kvm.org |
| 4648 | S: Supported | 4655 | S: Supported |
| 4649 | F: Documentation/*/kvm.txt | 4656 | F: Documentation/*/kvm*.txt |
| 4657 | F: Documentation/virtual/kvm/ | ||
| 4650 | F: arch/*/kvm/ | 4658 | F: arch/*/kvm/ |
| 4651 | F: arch/*/include/asm/kvm* | 4659 | F: arch/*/include/asm/kvm* |
| 4652 | F: include/linux/kvm* | 4660 | F: include/linux/kvm* |
| @@ -5516,18 +5524,18 @@ F: Documentation/networking/s2io.txt | |||
| 5516 | F: Documentation/networking/vxge.txt | 5524 | F: Documentation/networking/vxge.txt |
| 5517 | F: drivers/net/ethernet/neterion/ | 5525 | F: drivers/net/ethernet/neterion/ |
| 5518 | 5526 | ||
| 5519 | NETFILTER/IPTABLES/IPCHAINS | 5527 | NETFILTER/IPTABLES |
| 5520 | P: Harald Welte | ||
| 5521 | P: Jozsef Kadlecsik | ||
| 5522 | M: Pablo Neira Ayuso <pablo@netfilter.org> | 5528 | M: Pablo Neira Ayuso <pablo@netfilter.org> |
| 5523 | M: Patrick McHardy <kaber@trash.net> | 5529 | M: Patrick McHardy <kaber@trash.net> |
| 5530 | M: Jozsef Kadlecsik <kadlec@blackhole.kfki.hu> | ||
| 5524 | L: netfilter-devel@vger.kernel.org | 5531 | L: netfilter-devel@vger.kernel.org |
| 5525 | L: netfilter@vger.kernel.org | 5532 | L: netfilter@vger.kernel.org |
| 5526 | L: coreteam@netfilter.org | 5533 | L: coreteam@netfilter.org |
| 5527 | W: http://www.netfilter.org/ | 5534 | W: http://www.netfilter.org/ |
| 5528 | W: http://www.iptables.org/ | 5535 | W: http://www.iptables.org/ |
| 5529 | T: git git://1984.lsi.us.es/nf | 5536 | Q: http://patchwork.ozlabs.org/project/netfilter-devel/list/ |
| 5530 | T: git git://1984.lsi.us.es/nf-next | 5537 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git |
| 5538 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git | ||
| 5531 | S: Supported | 5539 | S: Supported |
| 5532 | F: include/linux/netfilter* | 5540 | F: include/linux/netfilter* |
| 5533 | F: include/linux/netfilter/ | 5541 | F: include/linux/netfilter/ |
| @@ -6076,6 +6084,7 @@ L: linux-parisc@vger.kernel.org | |||
| 6076 | W: http://www.parisc-linux.org/ | 6084 | W: http://www.parisc-linux.org/ |
| 6077 | Q: http://patchwork.kernel.org/project/linux-parisc/list/ | 6085 | Q: http://patchwork.kernel.org/project/linux-parisc/list/ |
| 6078 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git | 6086 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git |
| 6087 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git | ||
| 6079 | S: Maintained | 6088 | S: Maintained |
| 6080 | F: arch/parisc/ | 6089 | F: arch/parisc/ |
| 6081 | F: drivers/parisc/ | 6090 | F: drivers/parisc/ |
| @@ -1,7 +1,7 @@ | |||
| 1 | VERSION = 3 | 1 | VERSION = 3 |
| 2 | PATCHLEVEL = 10 | 2 | PATCHLEVEL = 10 |
| 3 | SUBLEVEL = 0 | 3 | SUBLEVEL = 0 |
| 4 | EXTRAVERSION = -rc2 | 4 | EXTRAVERSION = -rc3 |
| 5 | NAME = Unicycling Gorilla | 5 | NAME = Unicycling Gorilla |
| 6 | 6 | ||
| 7 | # *DOCUMENTATION* | 7 | # *DOCUMENTATION* |
diff --git a/arch/arc/boot/dts/abilis_tb100_dvk.dts b/arch/arc/boot/dts/abilis_tb100_dvk.dts index c0fd3623c393..0fa0d4abe795 100644 --- a/arch/arc/boot/dts/abilis_tb100_dvk.dts +++ b/arch/arc/boot/dts/abilis_tb100_dvk.dts | |||
| @@ -37,7 +37,7 @@ | |||
| 37 | 37 | ||
| 38 | soc100 { | 38 | soc100 { |
| 39 | uart@FF100000 { | 39 | uart@FF100000 { |
| 40 | pinctrl-names = "abilis,simple-default"; | 40 | pinctrl-names = "default"; |
| 41 | pinctrl-0 = <&pctl_uart0>; | 41 | pinctrl-0 = <&pctl_uart0>; |
| 42 | }; | 42 | }; |
| 43 | ethernet@FE100000 { | 43 | ethernet@FE100000 { |
diff --git a/arch/arc/boot/dts/abilis_tb101_dvk.dts b/arch/arc/boot/dts/abilis_tb101_dvk.dts index 6f8c381f6268..a4d80ce283ae 100644 --- a/arch/arc/boot/dts/abilis_tb101_dvk.dts +++ b/arch/arc/boot/dts/abilis_tb101_dvk.dts | |||
| @@ -37,7 +37,7 @@ | |||
| 37 | 37 | ||
| 38 | soc100 { | 38 | soc100 { |
| 39 | uart@FF100000 { | 39 | uart@FF100000 { |
| 40 | pinctrl-names = "abilis,simple-default"; | 40 | pinctrl-names = "default"; |
| 41 | pinctrl-0 = <&pctl_uart0>; | 41 | pinctrl-0 = <&pctl_uart0>; |
| 42 | }; | 42 | }; |
| 43 | ethernet@FE100000 { | 43 | ethernet@FE100000 { |
diff --git a/arch/arc/boot/dts/abilis_tb10x.dtsi b/arch/arc/boot/dts/abilis_tb10x.dtsi index a6139fc5aaa3..b97e3051ba4b 100644 --- a/arch/arc/boot/dts/abilis_tb10x.dtsi +++ b/arch/arc/boot/dts/abilis_tb10x.dtsi | |||
| @@ -88,8 +88,7 @@ | |||
| 88 | }; | 88 | }; |
| 89 | 89 | ||
| 90 | uart@FF100000 { | 90 | uart@FF100000 { |
| 91 | compatible = "snps,dw-apb-uart", | 91 | compatible = "snps,dw-apb-uart"; |
| 92 | "abilis,simple-pinctrl"; | ||
| 93 | reg = <0xFF100000 0x100>; | 92 | reg = <0xFF100000 0x100>; |
| 94 | clock-frequency = <166666666>; | 93 | clock-frequency = <166666666>; |
| 95 | interrupts = <25 1>; | 94 | interrupts = <25 1>; |
| @@ -184,8 +183,7 @@ | |||
| 184 | #address-cells = <1>; | 183 | #address-cells = <1>; |
| 185 | #size-cells = <0>; | 184 | #size-cells = <0>; |
| 186 | cell-index = <1>; | 185 | cell-index = <1>; |
| 187 | compatible = "abilis,tb100-spi", | 186 | compatible = "abilis,tb100-spi"; |
| 188 | "abilis,simple-pinctrl"; | ||
| 189 | num-cs = <2>; | 187 | num-cs = <2>; |
| 190 | reg = <0xFE011000 0x20>; | 188 | reg = <0xFE011000 0x20>; |
| 191 | interrupt-parent = <&tb10x_ictl>; | 189 | interrupt-parent = <&tb10x_ictl>; |
diff --git a/arch/arc/include/asm/cacheflush.h b/arch/arc/include/asm/cacheflush.h index 9f841af41092..ef62682e8d95 100644 --- a/arch/arc/include/asm/cacheflush.h +++ b/arch/arc/include/asm/cacheflush.h | |||
| @@ -93,14 +93,16 @@ static inline int cache_is_vipt_aliasing(void) | |||
| 93 | #endif | 93 | #endif |
| 94 | } | 94 | } |
| 95 | 95 | ||
| 96 | #define CACHE_COLOR(addr) (((unsigned long)(addr) >> (PAGE_SHIFT)) & 3) | 96 | #define CACHE_COLOR(addr) (((unsigned long)(addr) >> (PAGE_SHIFT)) & 1) |
| 97 | 97 | ||
| 98 | /* | 98 | /* |
| 99 | * checks if two addresses (after page aligning) index into same cache set | 99 | * checks if two addresses (after page aligning) index into same cache set |
| 100 | */ | 100 | */ |
| 101 | #define addr_not_cache_congruent(addr1, addr2) \ | 101 | #define addr_not_cache_congruent(addr1, addr2) \ |
| 102 | ({ \ | ||
| 102 | cache_is_vipt_aliasing() ? \ | 103 | cache_is_vipt_aliasing() ? \ |
| 103 | (CACHE_COLOR(addr1) != CACHE_COLOR(addr2)) : 0 \ | 104 | (CACHE_COLOR(addr1) != CACHE_COLOR(addr2)) : 0; \ |
| 105 | }) | ||
| 104 | 106 | ||
| 105 | #define copy_to_user_page(vma, page, vaddr, dst, src, len) \ | 107 | #define copy_to_user_page(vma, page, vaddr, dst, src, len) \ |
| 106 | do { \ | 108 | do { \ |
diff --git a/arch/arc/include/asm/page.h b/arch/arc/include/asm/page.h index 374a35514116..ab84bf131fe1 100644 --- a/arch/arc/include/asm/page.h +++ b/arch/arc/include/asm/page.h | |||
| @@ -19,13 +19,6 @@ | |||
| 19 | #define clear_page(paddr) memset((paddr), 0, PAGE_SIZE) | 19 | #define clear_page(paddr) memset((paddr), 0, PAGE_SIZE) |
| 20 | #define copy_page(to, from) memcpy((to), (from), PAGE_SIZE) | 20 | #define copy_page(to, from) memcpy((to), (from), PAGE_SIZE) |
| 21 | 21 | ||
| 22 | #ifndef CONFIG_ARC_CACHE_VIPT_ALIASING | ||
| 23 | |||
| 24 | #define clear_user_page(addr, vaddr, pg) clear_page(addr) | ||
| 25 | #define copy_user_page(vto, vfrom, vaddr, pg) copy_page(vto, vfrom) | ||
| 26 | |||
| 27 | #else /* VIPT aliasing dcache */ | ||
| 28 | |||
| 29 | struct vm_area_struct; | 22 | struct vm_area_struct; |
| 30 | struct page; | 23 | struct page; |
| 31 | 24 | ||
| @@ -35,8 +28,6 @@ void copy_user_highpage(struct page *to, struct page *from, | |||
| 35 | unsigned long u_vaddr, struct vm_area_struct *vma); | 28 | unsigned long u_vaddr, struct vm_area_struct *vma); |
| 36 | void clear_user_page(void *to, unsigned long u_vaddr, struct page *page); | 29 | void clear_user_page(void *to, unsigned long u_vaddr, struct page *page); |
| 37 | 30 | ||
| 38 | #endif /* CONFIG_ARC_CACHE_VIPT_ALIASING */ | ||
| 39 | |||
| 40 | #undef STRICT_MM_TYPECHECKS | 31 | #undef STRICT_MM_TYPECHECKS |
| 41 | 32 | ||
| 42 | #ifdef STRICT_MM_TYPECHECKS | 33 | #ifdef STRICT_MM_TYPECHECKS |
diff --git a/arch/arc/include/asm/pgtable.h b/arch/arc/include/asm/pgtable.h index 1cc4720faccb..95b1522212a7 100644 --- a/arch/arc/include/asm/pgtable.h +++ b/arch/arc/include/asm/pgtable.h | |||
| @@ -57,9 +57,9 @@ | |||
| 57 | 57 | ||
| 58 | #define _PAGE_ACCESSED (1<<1) /* Page is accessed (S) */ | 58 | #define _PAGE_ACCESSED (1<<1) /* Page is accessed (S) */ |
| 59 | #define _PAGE_CACHEABLE (1<<2) /* Page is cached (H) */ | 59 | #define _PAGE_CACHEABLE (1<<2) /* Page is cached (H) */ |
| 60 | #define _PAGE_EXECUTE (1<<3) /* Page has user execute perm (H) */ | 60 | #define _PAGE_U_EXECUTE (1<<3) /* Page has user execute perm (H) */ |
| 61 | #define _PAGE_WRITE (1<<4) /* Page has user write perm (H) */ | 61 | #define _PAGE_U_WRITE (1<<4) /* Page has user write perm (H) */ |
| 62 | #define _PAGE_READ (1<<5) /* Page has user read perm (H) */ | 62 | #define _PAGE_U_READ (1<<5) /* Page has user read perm (H) */ |
| 63 | #define _PAGE_K_EXECUTE (1<<6) /* Page has kernel execute perm (H) */ | 63 | #define _PAGE_K_EXECUTE (1<<6) /* Page has kernel execute perm (H) */ |
| 64 | #define _PAGE_K_WRITE (1<<7) /* Page has kernel write perm (H) */ | 64 | #define _PAGE_K_WRITE (1<<7) /* Page has kernel write perm (H) */ |
| 65 | #define _PAGE_K_READ (1<<8) /* Page has kernel perm (H) */ | 65 | #define _PAGE_K_READ (1<<8) /* Page has kernel perm (H) */ |
| @@ -72,9 +72,9 @@ | |||
| 72 | 72 | ||
| 73 | /* PD1 */ | 73 | /* PD1 */ |
| 74 | #define _PAGE_CACHEABLE (1<<0) /* Page is cached (H) */ | 74 | #define _PAGE_CACHEABLE (1<<0) /* Page is cached (H) */ |
| 75 | #define _PAGE_EXECUTE (1<<1) /* Page has user execute perm (H) */ | 75 | #define _PAGE_U_EXECUTE (1<<1) /* Page has user execute perm (H) */ |
| 76 | #define _PAGE_WRITE (1<<2) /* Page has user write perm (H) */ | 76 | #define _PAGE_U_WRITE (1<<2) /* Page has user write perm (H) */ |
| 77 | #define _PAGE_READ (1<<3) /* Page has user read perm (H) */ | 77 | #define _PAGE_U_READ (1<<3) /* Page has user read perm (H) */ |
| 78 | #define _PAGE_K_EXECUTE (1<<4) /* Page has kernel execute perm (H) */ | 78 | #define _PAGE_K_EXECUTE (1<<4) /* Page has kernel execute perm (H) */ |
| 79 | #define _PAGE_K_WRITE (1<<5) /* Page has kernel write perm (H) */ | 79 | #define _PAGE_K_WRITE (1<<5) /* Page has kernel write perm (H) */ |
| 80 | #define _PAGE_K_READ (1<<6) /* Page has kernel perm (H) */ | 80 | #define _PAGE_K_READ (1<<6) /* Page has kernel perm (H) */ |
| @@ -93,7 +93,8 @@ | |||
| 93 | #endif | 93 | #endif |
| 94 | 94 | ||
| 95 | /* Kernel allowed all permissions for all pages */ | 95 | /* Kernel allowed all permissions for all pages */ |
| 96 | #define _K_PAGE_PERMS (_PAGE_K_EXECUTE | _PAGE_K_WRITE | _PAGE_K_READ) | 96 | #define _K_PAGE_PERMS (_PAGE_K_EXECUTE | _PAGE_K_WRITE | _PAGE_K_READ | \ |
| 97 | _PAGE_GLOBAL | _PAGE_PRESENT) | ||
| 97 | 98 | ||
| 98 | #ifdef CONFIG_ARC_CACHE_PAGES | 99 | #ifdef CONFIG_ARC_CACHE_PAGES |
| 99 | #define _PAGE_DEF_CACHEABLE _PAGE_CACHEABLE | 100 | #define _PAGE_DEF_CACHEABLE _PAGE_CACHEABLE |
| @@ -106,7 +107,11 @@ | |||
| 106 | * -by default cached, unless config otherwise | 107 | * -by default cached, unless config otherwise |
| 107 | * -present in memory | 108 | * -present in memory |
| 108 | */ | 109 | */ |
| 109 | #define ___DEF (_PAGE_PRESENT | _K_PAGE_PERMS | _PAGE_DEF_CACHEABLE) | 110 | #define ___DEF (_PAGE_PRESENT | _PAGE_DEF_CACHEABLE) |
| 111 | |||
| 112 | #define _PAGE_READ (_PAGE_U_READ | _PAGE_K_READ) | ||
| 113 | #define _PAGE_WRITE (_PAGE_U_WRITE | _PAGE_K_WRITE) | ||
| 114 | #define _PAGE_EXECUTE (_PAGE_U_EXECUTE | _PAGE_K_EXECUTE) | ||
| 110 | 115 | ||
| 111 | /* Set of bits not changed in pte_modify */ | 116 | /* Set of bits not changed in pte_modify */ |
| 112 | #define _PAGE_CHG_MASK (PAGE_MASK | _PAGE_ACCESSED | _PAGE_MODIFIED) | 117 | #define _PAGE_CHG_MASK (PAGE_MASK | _PAGE_ACCESSED | _PAGE_MODIFIED) |
| @@ -125,11 +130,10 @@ | |||
| 125 | * kernel vaddr space - visible in all addr spaces, but kernel mode only | 130 | * kernel vaddr space - visible in all addr spaces, but kernel mode only |
| 126 | * Thus Global, all-kernel-access, no-user-access, cached | 131 | * Thus Global, all-kernel-access, no-user-access, cached |
| 127 | */ | 132 | */ |
| 128 | #define PAGE_KERNEL __pgprot(___DEF | _PAGE_GLOBAL) | 133 | #define PAGE_KERNEL __pgprot(_K_PAGE_PERMS | _PAGE_DEF_CACHEABLE) |
| 129 | 134 | ||
| 130 | /* ioremap */ | 135 | /* ioremap */ |
| 131 | #define PAGE_KERNEL_NO_CACHE __pgprot(_PAGE_PRESENT | _K_PAGE_PERMS | \ | 136 | #define PAGE_KERNEL_NO_CACHE __pgprot(_K_PAGE_PERMS) |
| 132 | _PAGE_GLOBAL) | ||
| 133 | 137 | ||
| 134 | /************************************************************************** | 138 | /************************************************************************** |
| 135 | * Mapping of vm_flags (Generic VM) to PTE flags (arch specific) | 139 | * Mapping of vm_flags (Generic VM) to PTE flags (arch specific) |
diff --git a/arch/arc/include/asm/tlb.h b/arch/arc/include/asm/tlb.h index 85b6df839bd7..cb0c708ca665 100644 --- a/arch/arc/include/asm/tlb.h +++ b/arch/arc/include/asm/tlb.h | |||
| @@ -16,7 +16,7 @@ | |||
| 16 | /* Masks for actual TLB "PD"s */ | 16 | /* Masks for actual TLB "PD"s */ |
| 17 | #define PTE_BITS_IN_PD0 (_PAGE_GLOBAL | _PAGE_PRESENT) | 17 | #define PTE_BITS_IN_PD0 (_PAGE_GLOBAL | _PAGE_PRESENT) |
| 18 | #define PTE_BITS_IN_PD1 (PAGE_MASK | _PAGE_CACHEABLE | \ | 18 | #define PTE_BITS_IN_PD1 (PAGE_MASK | _PAGE_CACHEABLE | \ |
| 19 | _PAGE_EXECUTE | _PAGE_WRITE | _PAGE_READ | \ | 19 | _PAGE_U_EXECUTE | _PAGE_U_WRITE | _PAGE_U_READ | \ |
| 20 | _PAGE_K_EXECUTE | _PAGE_K_WRITE | _PAGE_K_READ) | 20 | _PAGE_K_EXECUTE | _PAGE_K_WRITE | _PAGE_K_READ) |
| 21 | 21 | ||
| 22 | #ifndef __ASSEMBLY__ | 22 | #ifndef __ASSEMBLY__ |
diff --git a/arch/arc/mm/cache_arc700.c b/arch/arc/mm/cache_arc700.c index 2f12bca8aef3..aedce1905441 100644 --- a/arch/arc/mm/cache_arc700.c +++ b/arch/arc/mm/cache_arc700.c | |||
| @@ -610,7 +610,7 @@ void __sync_icache_dcache(unsigned long paddr, unsigned long vaddr, int len) | |||
| 610 | 610 | ||
| 611 | local_irq_save(flags); | 611 | local_irq_save(flags); |
| 612 | __ic_line_inv_vaddr(paddr, vaddr, len); | 612 | __ic_line_inv_vaddr(paddr, vaddr, len); |
| 613 | __dc_line_op(paddr, vaddr, len, OP_FLUSH); | 613 | __dc_line_op(paddr, vaddr, len, OP_FLUSH_N_INV); |
| 614 | local_irq_restore(flags); | 614 | local_irq_restore(flags); |
| 615 | } | 615 | } |
| 616 | 616 | ||
| @@ -676,6 +676,17 @@ void flush_cache_range(struct vm_area_struct *vma, unsigned long start, | |||
| 676 | flush_cache_all(); | 676 | flush_cache_all(); |
| 677 | } | 677 | } |
| 678 | 678 | ||
| 679 | void flush_anon_page(struct vm_area_struct *vma, struct page *page, | ||
| 680 | unsigned long u_vaddr) | ||
| 681 | { | ||
| 682 | /* TBD: do we really need to clear the kernel mapping */ | ||
| 683 | __flush_dcache_page(page_address(page), u_vaddr); | ||
| 684 | __flush_dcache_page(page_address(page), page_address(page)); | ||
| 685 | |||
| 686 | } | ||
| 687 | |||
| 688 | #endif | ||
| 689 | |||
| 679 | void copy_user_highpage(struct page *to, struct page *from, | 690 | void copy_user_highpage(struct page *to, struct page *from, |
| 680 | unsigned long u_vaddr, struct vm_area_struct *vma) | 691 | unsigned long u_vaddr, struct vm_area_struct *vma) |
| 681 | { | 692 | { |
| @@ -725,16 +736,6 @@ void clear_user_page(void *to, unsigned long u_vaddr, struct page *page) | |||
| 725 | set_bit(PG_arch_1, &page->flags); | 736 | set_bit(PG_arch_1, &page->flags); |
| 726 | } | 737 | } |
| 727 | 738 | ||
| 728 | void flush_anon_page(struct vm_area_struct *vma, struct page *page, | ||
| 729 | unsigned long u_vaddr) | ||
| 730 | { | ||
| 731 | /* TBD: do we really need to clear the kernel mapping */ | ||
| 732 | __flush_dcache_page(page_address(page), u_vaddr); | ||
| 733 | __flush_dcache_page(page_address(page), page_address(page)); | ||
| 734 | |||
| 735 | } | ||
| 736 | |||
| 737 | #endif | ||
| 738 | 739 | ||
| 739 | /********************************************************************** | 740 | /********************************************************************** |
| 740 | * Explicit Cache flush request from user space via syscall | 741 | * Explicit Cache flush request from user space via syscall |
diff --git a/arch/arc/mm/tlb.c b/arch/arc/mm/tlb.c index 066145b5f348..fe1c5a073afe 100644 --- a/arch/arc/mm/tlb.c +++ b/arch/arc/mm/tlb.c | |||
| @@ -444,7 +444,8 @@ void update_mmu_cache(struct vm_area_struct *vma, unsigned long vaddr_unaligned, | |||
| 444 | * so userspace sees the right data. | 444 | * so userspace sees the right data. |
| 445 | * (Avoids the flush for Non-exec + congruent mapping case) | 445 | * (Avoids the flush for Non-exec + congruent mapping case) |
| 446 | */ | 446 | */ |
| 447 | if (vma->vm_flags & VM_EXEC || addr_not_cache_congruent(paddr, vaddr)) { | 447 | if ((vma->vm_flags & VM_EXEC) || |
| 448 | addr_not_cache_congruent(paddr, vaddr)) { | ||
| 448 | struct page *page = pfn_to_page(pte_pfn(*ptep)); | 449 | struct page *page = pfn_to_page(pte_pfn(*ptep)); |
| 449 | 450 | ||
| 450 | int dirty = test_and_clear_bit(PG_arch_1, &page->flags); | 451 | int dirty = test_and_clear_bit(PG_arch_1, &page->flags); |
diff --git a/arch/arc/mm/tlbex.S b/arch/arc/mm/tlbex.S index 9df765dc7c3a..3357d26ffe54 100644 --- a/arch/arc/mm/tlbex.S +++ b/arch/arc/mm/tlbex.S | |||
| @@ -277,7 +277,7 @@ ARC_ENTRY EV_TLBMissI | |||
| 277 | ;---------------------------------------------------------------- | 277 | ;---------------------------------------------------------------- |
| 278 | ; VERIFY_PTE: Check if PTE permissions approp for executing code | 278 | ; VERIFY_PTE: Check if PTE permissions approp for executing code |
| 279 | cmp_s r2, VMALLOC_START | 279 | cmp_s r2, VMALLOC_START |
| 280 | mov.lo r2, (_PAGE_PRESENT | _PAGE_READ | _PAGE_EXECUTE) | 280 | mov.lo r2, (_PAGE_PRESENT | _PAGE_U_READ | _PAGE_U_EXECUTE) |
| 281 | mov.hs r2, (_PAGE_PRESENT | _PAGE_K_READ | _PAGE_K_EXECUTE) | 281 | mov.hs r2, (_PAGE_PRESENT | _PAGE_K_READ | _PAGE_K_EXECUTE) |
| 282 | 282 | ||
| 283 | and r3, r0, r2 ; Mask out NON Flag bits from PTE | 283 | and r3, r0, r2 ; Mask out NON Flag bits from PTE |
| @@ -320,9 +320,9 @@ ARC_ENTRY EV_TLBMissD | |||
| 320 | mov_s r2, 0 | 320 | mov_s r2, 0 |
| 321 | lr r3, [ecr] | 321 | lr r3, [ecr] |
| 322 | btst_s r3, ECR_C_BIT_DTLB_LD_MISS ; Read Access | 322 | btst_s r3, ECR_C_BIT_DTLB_LD_MISS ; Read Access |
| 323 | or.nz r2, r2, _PAGE_READ ; chk for Read flag in PTE | 323 | or.nz r2, r2, _PAGE_U_READ ; chk for Read flag in PTE |
| 324 | btst_s r3, ECR_C_BIT_DTLB_ST_MISS ; Write Access | 324 | btst_s r3, ECR_C_BIT_DTLB_ST_MISS ; Write Access |
| 325 | or.nz r2, r2, _PAGE_WRITE ; chk for Write flag in PTE | 325 | or.nz r2, r2, _PAGE_U_WRITE ; chk for Write flag in PTE |
| 326 | ; Above laddering takes care of XCHG access | 326 | ; Above laddering takes care of XCHG access |
| 327 | ; which is both Read and Write | 327 | ; which is both Read and Write |
| 328 | 328 | ||
diff --git a/arch/arc/plat-tb10x/tb10x.c b/arch/arc/plat-tb10x/tb10x.c index d3567691c7e1..06cb30929460 100644 --- a/arch/arc/plat-tb10x/tb10x.c +++ b/arch/arc/plat-tb10x/tb10x.c | |||
| @@ -34,31 +34,6 @@ static void __init tb10x_platform_init(void) | |||
| 34 | of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL); | 34 | of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL); |
| 35 | } | 35 | } |
| 36 | 36 | ||
| 37 | static void __init tb10x_platform_late_init(void) | ||
| 38 | { | ||
| 39 | struct device_node *dn; | ||
| 40 | |||
| 41 | /* | ||
| 42 | * Pinctrl documentation recommends setting up the iomux here for | ||
| 43 | * all modules which don't require control over the pins themselves. | ||
| 44 | * Modules which need this kind of assistance are compatible with | ||
| 45 | * "abilis,simple-pinctrl", i.e. we can easily iterate over them. | ||
| 46 | * TODO: Does this recommended method work cleanly with pins required | ||
| 47 | * by modules? | ||
| 48 | */ | ||
| 49 | for_each_compatible_node(dn, NULL, "abilis,simple-pinctrl") { | ||
| 50 | struct platform_device *pd = of_find_device_by_node(dn); | ||
| 51 | struct pinctrl *pctl; | ||
| 52 | |||
| 53 | pctl = pinctrl_get_select(&pd->dev, "abilis,simple-default"); | ||
| 54 | if (IS_ERR(pctl)) { | ||
| 55 | int ret = PTR_ERR(pctl); | ||
| 56 | dev_err(&pd->dev, "Could not set up pinctrl: %d\n", | ||
| 57 | ret); | ||
| 58 | } | ||
| 59 | } | ||
| 60 | } | ||
| 61 | |||
| 62 | static const char *tb10x_compat[] __initdata = { | 37 | static const char *tb10x_compat[] __initdata = { |
| 63 | "abilis,arc-tb10x", | 38 | "abilis,arc-tb10x", |
| 64 | NULL, | 39 | NULL, |
| @@ -67,5 +42,4 @@ static const char *tb10x_compat[] __initdata = { | |||
| 67 | MACHINE_START(TB10x, "tb10x") | 42 | MACHINE_START(TB10x, "tb10x") |
| 68 | .dt_compat = tb10x_compat, | 43 | .dt_compat = tb10x_compat, |
| 69 | .init_machine = tb10x_platform_init, | 44 | .init_machine = tb10x_platform_init, |
| 70 | .init_late = tb10x_platform_late_init, | ||
| 71 | MACHINE_END | 45 | MACHINE_END |
diff --git a/arch/arm/boot/dts/Makefile b/arch/arm/boot/dts/Makefile index b9f7121e6ecf..f0895c581a89 100644 --- a/arch/arm/boot/dts/Makefile +++ b/arch/arm/boot/dts/Makefile | |||
| @@ -177,7 +177,9 @@ dtb-$(CONFIG_ARCH_SPEAR3XX)+= spear300-evb.dtb \ | |||
| 177 | spear320-evb.dtb \ | 177 | spear320-evb.dtb \ |
| 178 | spear320-hmi.dtb | 178 | spear320-hmi.dtb |
| 179 | dtb-$(CONFIG_ARCH_SPEAR6XX)+= spear600-evb.dtb | 179 | dtb-$(CONFIG_ARCH_SPEAR6XX)+= spear600-evb.dtb |
| 180 | dtb-$(CONFIG_ARCH_SUNXI) += sun4i-a10-cubieboard.dtb \ | 180 | dtb-$(CONFIG_ARCH_SUNXI) += \ |
| 181 | sun4i-a10-cubieboard.dtb \ | ||
| 182 | sun4i-a10-mini-xplus.dtb \ | ||
| 181 | sun4i-a10-hackberry.dtb \ | 183 | sun4i-a10-hackberry.dtb \ |
| 182 | sun5i-a13-olinuxino.dtb | 184 | sun5i-a13-olinuxino.dtb |
| 183 | dtb-$(CONFIG_ARCH_TEGRA) += tegra20-harmony.dtb \ | 185 | dtb-$(CONFIG_ARCH_TEGRA) += tegra20-harmony.dtb \ |
diff --git a/arch/arm/boot/dts/armada-370-xp.dtsi b/arch/arm/boot/dts/armada-370-xp.dtsi index 272bbc65fab0..550eb772c30e 100644 --- a/arch/arm/boot/dts/armada-370-xp.dtsi +++ b/arch/arm/boot/dts/armada-370-xp.dtsi | |||
| @@ -33,7 +33,8 @@ | |||
| 33 | #size-cells = <1>; | 33 | #size-cells = <1>; |
| 34 | compatible = "simple-bus"; | 34 | compatible = "simple-bus"; |
| 35 | interrupt-parent = <&mpic>; | 35 | interrupt-parent = <&mpic>; |
| 36 | ranges = <0 0 0xd0000000 0x100000>; | 36 | ranges = <0 0 0xd0000000 0x0100000 /* internal registers */ |
| 37 | 0xe0000000 0 0xe0000000 0x8100000 /* PCIe */>; | ||
| 37 | 38 | ||
| 38 | internal-regs { | 39 | internal-regs { |
| 39 | compatible = "simple-bus"; | 40 | compatible = "simple-bus"; |
diff --git a/arch/arm/boot/dts/armada-370.dtsi b/arch/arm/boot/dts/armada-370.dtsi index b2c1b5af9749..aee2b1866ce2 100644 --- a/arch/arm/boot/dts/armada-370.dtsi +++ b/arch/arm/boot/dts/armada-370.dtsi | |||
| @@ -29,7 +29,8 @@ | |||
| 29 | }; | 29 | }; |
| 30 | 30 | ||
| 31 | soc { | 31 | soc { |
| 32 | ranges = <0 0xd0000000 0x100000>; | 32 | ranges = <0 0xd0000000 0x0100000 /* internal registers */ |
| 33 | 0xe0000000 0xe0000000 0x8100000 /* PCIe */>; | ||
| 33 | internal-regs { | 34 | internal-regs { |
| 34 | system-controller@18200 { | 35 | system-controller@18200 { |
| 35 | compatible = "marvell,armada-370-xp-system-controller"; | 36 | compatible = "marvell,armada-370-xp-system-controller"; |
| @@ -38,12 +39,12 @@ | |||
| 38 | 39 | ||
| 39 | L2: l2-cache { | 40 | L2: l2-cache { |
| 40 | compatible = "marvell,aurora-outer-cache"; | 41 | compatible = "marvell,aurora-outer-cache"; |
| 41 | reg = <0xd0008000 0x1000>; | 42 | reg = <0x08000 0x1000>; |
| 42 | cache-id-part = <0x100>; | 43 | cache-id-part = <0x100>; |
| 43 | wt-override; | 44 | wt-override; |
| 44 | }; | 45 | }; |
| 45 | 46 | ||
| 46 | mpic: interrupt-controller@20000 { | 47 | interrupt-controller@20000 { |
| 47 | reg = <0x20a00 0x1d0>, <0x21870 0x58>; | 48 | reg = <0x20a00 0x1d0>, <0x21870 0x58>; |
| 48 | }; | 49 | }; |
| 49 | 50 | ||
diff --git a/arch/arm/boot/dts/armada-xp-gp.dts b/arch/arm/boot/dts/armada-xp-gp.dts index 26ad06fc147e..3ee63d128e27 100644 --- a/arch/arm/boot/dts/armada-xp-gp.dts +++ b/arch/arm/boot/dts/armada-xp-gp.dts | |||
| @@ -39,6 +39,9 @@ | |||
| 39 | }; | 39 | }; |
| 40 | 40 | ||
| 41 | soc { | 41 | soc { |
| 42 | ranges = <0 0 0xd0000000 0x100000 | ||
| 43 | 0xf0000000 0 0xf0000000 0x1000000>; | ||
| 44 | |||
| 42 | internal-regs { | 45 | internal-regs { |
| 43 | serial@12000 { | 46 | serial@12000 { |
| 44 | clock-frequency = <250000000>; | 47 | clock-frequency = <250000000>; |
diff --git a/arch/arm/boot/dts/armada-xp-openblocks-ax3-4.dts b/arch/arm/boot/dts/armada-xp-openblocks-ax3-4.dts index f14d36c46159..46b785064dd8 100644 --- a/arch/arm/boot/dts/armada-xp-openblocks-ax3-4.dts +++ b/arch/arm/boot/dts/armada-xp-openblocks-ax3-4.dts | |||
| @@ -27,6 +27,9 @@ | |||
| 27 | }; | 27 | }; |
| 28 | 28 | ||
| 29 | soc { | 29 | soc { |
| 30 | ranges = <0 0 0xd0000000 0x100000 | ||
| 31 | 0xf0000000 0 0xf0000000 0x8000000>; | ||
| 32 | |||
| 30 | internal-regs { | 33 | internal-regs { |
| 31 | serial@12000 { | 34 | serial@12000 { |
| 32 | clock-frequency = <250000000>; | 35 | clock-frequency = <250000000>; |
diff --git a/arch/arm/boot/dts/armada-xp.dtsi b/arch/arm/boot/dts/armada-xp.dtsi index bacab11c10dc..5b902f9a3af2 100644 --- a/arch/arm/boot/dts/armada-xp.dtsi +++ b/arch/arm/boot/dts/armada-xp.dtsi | |||
| @@ -31,7 +31,7 @@ | |||
| 31 | wt-override; | 31 | wt-override; |
| 32 | }; | 32 | }; |
| 33 | 33 | ||
| 34 | mpic: interrupt-controller@20000 { | 34 | interrupt-controller@20000 { |
| 35 | reg = <0x20a00 0x2d0>, <0x21070 0x58>; | 35 | reg = <0x20a00 0x2d0>, <0x21070 0x58>; |
| 36 | }; | 36 | }; |
| 37 | 37 | ||
diff --git a/arch/arm/boot/dts/at91sam9260.dtsi b/arch/arm/boot/dts/at91sam9260.dtsi index 70b5ccbac234..84c4bef2d726 100644 --- a/arch/arm/boot/dts/at91sam9260.dtsi +++ b/arch/arm/boot/dts/at91sam9260.dtsi | |||
| @@ -264,7 +264,7 @@ | |||
| 264 | atmel,pins = | 264 | atmel,pins = |
| 265 | <0 10 0x2 0x0 /* PA10 periph B */ | 265 | <0 10 0x2 0x0 /* PA10 periph B */ |
| 266 | 0 11 0x2 0x0 /* PA11 periph B */ | 266 | 0 11 0x2 0x0 /* PA11 periph B */ |
| 267 | 0 24 0x2 0x0 /* PA24 periph B */ | 267 | 0 22 0x2 0x0 /* PA22 periph B */ |
| 268 | 0 25 0x2 0x0 /* PA25 periph B */ | 268 | 0 25 0x2 0x0 /* PA25 periph B */ |
| 269 | 0 26 0x2 0x0 /* PA26 periph B */ | 269 | 0 26 0x2 0x0 /* PA26 periph B */ |
| 270 | 0 27 0x2 0x0 /* PA27 periph B */ | 270 | 0 27 0x2 0x0 /* PA27 periph B */ |
diff --git a/arch/arm/boot/dts/at91sam9n12.dtsi b/arch/arm/boot/dts/at91sam9n12.dtsi index 3de8e6dfbcb1..8d25f889928e 100644 --- a/arch/arm/boot/dts/at91sam9n12.dtsi +++ b/arch/arm/boot/dts/at91sam9n12.dtsi | |||
| @@ -57,6 +57,7 @@ | |||
| 57 | compatible = "atmel,at91rm9200-aic"; | 57 | compatible = "atmel,at91rm9200-aic"; |
| 58 | interrupt-controller; | 58 | interrupt-controller; |
| 59 | reg = <0xfffff000 0x200>; | 59 | reg = <0xfffff000 0x200>; |
| 60 | atmel,external-irqs = <31>; | ||
| 60 | }; | 61 | }; |
| 61 | 62 | ||
| 62 | ramc0: ramc@ffffe800 { | 63 | ramc0: ramc@ffffe800 { |
diff --git a/arch/arm/boot/dts/at91sam9x25ek.dts b/arch/arm/boot/dts/at91sam9x25ek.dts index 3b40d11d65e7..315250b4995e 100644 --- a/arch/arm/boot/dts/at91sam9x25ek.dts +++ b/arch/arm/boot/dts/at91sam9x25ek.dts | |||
| @@ -11,7 +11,7 @@ | |||
| 11 | /include/ "at91sam9x5ek.dtsi" | 11 | /include/ "at91sam9x5ek.dtsi" |
| 12 | 12 | ||
| 13 | / { | 13 | / { |
| 14 | model = "Atmel AT91SAM9G25-EK"; | 14 | model = "Atmel AT91SAM9X25-EK"; |
| 15 | compatible = "atmel,at91sam9x25ek", "atmel,at91sam9x5ek", "atmel,at91sam9x5", "atmel,at91sam9"; | 15 | compatible = "atmel,at91sam9x25ek", "atmel,at91sam9x5ek", "atmel,at91sam9x5", "atmel,at91sam9"; |
| 16 | 16 | ||
| 17 | ahb { | 17 | ahb { |
diff --git a/arch/arm/boot/dts/omap3.dtsi b/arch/arm/boot/dts/omap3.dtsi index 82a404da1c0d..99ba6e14ebf3 100644 --- a/arch/arm/boot/dts/omap3.dtsi +++ b/arch/arm/boot/dts/omap3.dtsi | |||
| @@ -516,7 +516,7 @@ | |||
| 516 | usb_otg_hs: usb_otg_hs@480ab000 { | 516 | usb_otg_hs: usb_otg_hs@480ab000 { |
| 517 | compatible = "ti,omap3-musb"; | 517 | compatible = "ti,omap3-musb"; |
| 518 | reg = <0x480ab000 0x1000>; | 518 | reg = <0x480ab000 0x1000>; |
| 519 | interrupts = <0 92 0x4>, <0 93 0x4>; | 519 | interrupts = <92>, <93>; |
| 520 | interrupt-names = "mc", "dma"; | 520 | interrupt-names = "mc", "dma"; |
| 521 | ti,hwmods = "usb_otg_hs"; | 521 | ti,hwmods = "usb_otg_hs"; |
| 522 | multipoint = <1>; | 522 | multipoint = <1>; |
diff --git a/arch/arm/boot/dts/sama5d3.dtsi b/arch/arm/boot/dts/sama5d3.dtsi index 2e643ea51cce..5000e0d42849 100644 --- a/arch/arm/boot/dts/sama5d3.dtsi +++ b/arch/arm/boot/dts/sama5d3.dtsi | |||
| @@ -75,11 +75,6 @@ | |||
| 75 | compatible = "atmel,at91sam9x5-spi"; | 75 | compatible = "atmel,at91sam9x5-spi"; |
| 76 | reg = <0xf0004000 0x100>; | 76 | reg = <0xf0004000 0x100>; |
| 77 | interrupts = <24 4 3>; | 77 | interrupts = <24 4 3>; |
| 78 | cs-gpios = <&pioD 13 0 | ||
| 79 | &pioD 14 0 /* conflicts with SCK0 and CANRX0 */ | ||
| 80 | &pioD 15 0 /* conflicts with CTS0 and CANTX0 */ | ||
| 81 | &pioD 16 0 /* conflicts with RTS0 and PWMFI3 */ | ||
| 82 | >; | ||
| 83 | pinctrl-names = "default"; | 78 | pinctrl-names = "default"; |
| 84 | pinctrl-0 = <&pinctrl_spi0>; | 79 | pinctrl-0 = <&pinctrl_spi0>; |
| 85 | status = "disabled"; | 80 | status = "disabled"; |
| @@ -156,7 +151,7 @@ | |||
| 156 | }; | 151 | }; |
| 157 | 152 | ||
| 158 | macb0: ethernet@f0028000 { | 153 | macb0: ethernet@f0028000 { |
| 159 | compatible = "cnds,pc302-gem", "cdns,gem"; | 154 | compatible = "cdns,pc302-gem", "cdns,gem"; |
| 160 | reg = <0xf0028000 0x100>; | 155 | reg = <0xf0028000 0x100>; |
| 161 | interrupts = <34 4 3>; | 156 | interrupts = <34 4 3>; |
| 162 | pinctrl-names = "default"; | 157 | pinctrl-names = "default"; |
| @@ -203,11 +198,6 @@ | |||
| 203 | compatible = "atmel,at91sam9x5-spi"; | 198 | compatible = "atmel,at91sam9x5-spi"; |
| 204 | reg = <0xf8008000 0x100>; | 199 | reg = <0xf8008000 0x100>; |
| 205 | interrupts = <25 4 3>; | 200 | interrupts = <25 4 3>; |
| 206 | cs-gpios = <&pioC 25 0 | ||
| 207 | &pioC 26 0 /* conflitcs with TWD1 and ISI_D11 */ | ||
| 208 | &pioC 27 0 /* conflitcs with TWCK1 and ISI_D10 */ | ||
| 209 | &pioC 28 0 /* conflitcs with PWMFI0 and ISI_D9 */ | ||
| 210 | >; | ||
| 211 | pinctrl-names = "default"; | 201 | pinctrl-names = "default"; |
| 212 | pinctrl-0 = <&pinctrl_spi1>; | 202 | pinctrl-0 = <&pinctrl_spi1>; |
| 213 | status = "disabled"; | 203 | status = "disabled"; |
diff --git a/arch/arm/boot/dts/sama5d3xcm.dtsi b/arch/arm/boot/dts/sama5d3xcm.dtsi index 1f8ed404626c..b336e7787cb3 100644 --- a/arch/arm/boot/dts/sama5d3xcm.dtsi +++ b/arch/arm/boot/dts/sama5d3xcm.dtsi | |||
| @@ -32,6 +32,10 @@ | |||
| 32 | 32 | ||
| 33 | ahb { | 33 | ahb { |
| 34 | apb { | 34 | apb { |
| 35 | spi0: spi@f0004000 { | ||
| 36 | cs-gpios = <&pioD 13 0>, <0>, <0>, <0>; | ||
| 37 | }; | ||
| 38 | |||
| 35 | macb0: ethernet@f0028000 { | 39 | macb0: ethernet@f0028000 { |
| 36 | phy-mode = "rgmii"; | 40 | phy-mode = "rgmii"; |
| 37 | }; | 41 | }; |
diff --git a/arch/arm/boot/dts/ste-nomadik-s8815.dts b/arch/arm/boot/dts/ste-nomadik-s8815.dts index b28fbf3408e3..6f82d9368948 100644 --- a/arch/arm/boot/dts/ste-nomadik-s8815.dts +++ b/arch/arm/boot/dts/ste-nomadik-s8815.dts | |||
| @@ -14,13 +14,19 @@ | |||
| 14 | bootargs = "root=/dev/ram0 console=ttyAMA1,115200n8 earlyprintk"; | 14 | bootargs = "root=/dev/ram0 console=ttyAMA1,115200n8 earlyprintk"; |
| 15 | }; | 15 | }; |
| 16 | 16 | ||
| 17 | /* This is where the interrupt is routed on the S8815 board */ | ||
| 18 | external-bus@34000000 { | ||
| 19 | ethernet@300 { | ||
| 20 | interrupt-parent = <&gpio3>; | ||
| 21 | interrupts = <8 0x1>; | ||
| 22 | }; | ||
| 23 | }; | ||
| 24 | |||
| 17 | /* Custom board node with GPIO pins to active etc */ | 25 | /* Custom board node with GPIO pins to active etc */ |
| 18 | usb-s8815 { | 26 | usb-s8815 { |
| 19 | /* The S8815 is using this very GPIO pin for the SMSC91x IRQs */ | 27 | /* The S8815 is using this very GPIO pin for the SMSC91x IRQs */ |
| 20 | ethernet-gpio { | 28 | ethernet-gpio { |
| 21 | gpios = <&gpio3 19 0x1>; | 29 | gpios = <&gpio3 8 0x1>; |
| 22 | interrupts = <19 0x1>; | ||
| 23 | interrupt-parent = <&gpio3>; | ||
| 24 | }; | 30 | }; |
| 25 | /* This will bias the MMC/SD card detect line */ | 31 | /* This will bias the MMC/SD card detect line */ |
| 26 | mmcsd-gpio { | 32 | mmcsd-gpio { |
diff --git a/arch/arm/boot/dts/sun4i-a10-mini-xplus.dts b/arch/arm/boot/dts/sun4i-a10-mini-xplus.dts index 4a7c35d6726a..078ed7f618d7 100644 --- a/arch/arm/boot/dts/sun4i-a10-mini-xplus.dts +++ b/arch/arm/boot/dts/sun4i-a10-mini-xplus.dts | |||
| @@ -22,8 +22,8 @@ | |||
| 22 | bootargs = "earlyprintk console=ttyS0,115200"; | 22 | bootargs = "earlyprintk console=ttyS0,115200"; |
| 23 | }; | 23 | }; |
| 24 | 24 | ||
| 25 | soc { | 25 | soc@01c20000 { |
| 26 | uart0: uart@01c28000 { | 26 | uart0: serial@01c28000 { |
| 27 | pinctrl-names = "default"; | 27 | pinctrl-names = "default"; |
| 28 | pinctrl-0 = <&uart0_pins_a>; | 28 | pinctrl-0 = <&uart0_pins_a>; |
| 29 | status = "okay"; | 29 | status = "okay"; |
diff --git a/arch/arm/configs/omap1_defconfig b/arch/arm/configs/omap1_defconfig index 7e0ebb64a7f9..9940f7b4e438 100644 --- a/arch/arm/configs/omap1_defconfig +++ b/arch/arm/configs/omap1_defconfig | |||
| @@ -199,7 +199,6 @@ CONFIG_USB_PHY=y | |||
| 199 | CONFIG_USB_DEBUG=y | 199 | CONFIG_USB_DEBUG=y |
| 200 | CONFIG_USB_DEVICEFS=y | 200 | CONFIG_USB_DEVICEFS=y |
| 201 | # CONFIG_USB_DEVICE_CLASS is not set | 201 | # CONFIG_USB_DEVICE_CLASS is not set |
| 202 | CONFIG_USB_SUSPEND=y | ||
| 203 | CONFIG_USB_MON=y | 202 | CONFIG_USB_MON=y |
| 204 | CONFIG_USB_OHCI_HCD=y | 203 | CONFIG_USB_OHCI_HCD=y |
| 205 | CONFIG_USB_STORAGE=y | 204 | CONFIG_USB_STORAGE=y |
diff --git a/arch/arm/configs/omap2plus_defconfig b/arch/arm/configs/omap2plus_defconfig index c1ef64bc5abd..abbe31937c65 100644 --- a/arch/arm/configs/omap2plus_defconfig +++ b/arch/arm/configs/omap2plus_defconfig | |||
| @@ -20,6 +20,7 @@ CONFIG_MODULE_FORCE_UNLOAD=y | |||
| 20 | CONFIG_MODVERSIONS=y | 20 | CONFIG_MODVERSIONS=y |
| 21 | CONFIG_MODULE_SRCVERSION_ALL=y | 21 | CONFIG_MODULE_SRCVERSION_ALL=y |
| 22 | # CONFIG_BLK_DEV_BSG is not set | 22 | # CONFIG_BLK_DEV_BSG is not set |
| 23 | CONFIG_ARCH_MULTI_V6=y | ||
| 23 | CONFIG_ARCH_OMAP2PLUS=y | 24 | CONFIG_ARCH_OMAP2PLUS=y |
| 24 | CONFIG_OMAP_RESET_CLOCKS=y | 25 | CONFIG_OMAP_RESET_CLOCKS=y |
| 25 | CONFIG_OMAP_MUX_DEBUG=y | 26 | CONFIG_OMAP_MUX_DEBUG=y |
| @@ -204,7 +205,6 @@ CONFIG_USB=y | |||
| 204 | CONFIG_USB_DEBUG=y | 205 | CONFIG_USB_DEBUG=y |
| 205 | CONFIG_USB_ANNOUNCE_NEW_DEVICES=y | 206 | CONFIG_USB_ANNOUNCE_NEW_DEVICES=y |
| 206 | CONFIG_USB_DEVICEFS=y | 207 | CONFIG_USB_DEVICEFS=y |
| 207 | CONFIG_USB_SUSPEND=y | ||
| 208 | CONFIG_USB_MON=y | 208 | CONFIG_USB_MON=y |
| 209 | CONFIG_USB_WDM=y | 209 | CONFIG_USB_WDM=y |
| 210 | CONFIG_USB_STORAGE=y | 210 | CONFIG_USB_STORAGE=y |
diff --git a/arch/arm/configs/tegra_defconfig b/arch/arm/configs/tegra_defconfig index a5f0485133cf..f7ba316164d4 100644 --- a/arch/arm/configs/tegra_defconfig +++ b/arch/arm/configs/tegra_defconfig | |||
| @@ -153,6 +153,7 @@ CONFIG_MEDIA_CAMERA_SUPPORT=y | |||
| 153 | CONFIG_MEDIA_USB_SUPPORT=y | 153 | CONFIG_MEDIA_USB_SUPPORT=y |
| 154 | CONFIG_USB_VIDEO_CLASS=m | 154 | CONFIG_USB_VIDEO_CLASS=m |
| 155 | CONFIG_DRM=y | 155 | CONFIG_DRM=y |
| 156 | CONFIG_TEGRA_HOST1X=y | ||
| 156 | CONFIG_DRM_TEGRA=y | 157 | CONFIG_DRM_TEGRA=y |
| 157 | CONFIG_BACKLIGHT_LCD_SUPPORT=y | 158 | CONFIG_BACKLIGHT_LCD_SUPPORT=y |
| 158 | # CONFIG_LCD_CLASS_DEVICE is not set | 159 | # CONFIG_LCD_CLASS_DEVICE is not set |
| @@ -202,7 +203,7 @@ CONFIG_TEGRA20_APB_DMA=y | |||
| 202 | CONFIG_STAGING=y | 203 | CONFIG_STAGING=y |
| 203 | CONFIG_SENSORS_ISL29018=y | 204 | CONFIG_SENSORS_ISL29018=y |
| 204 | CONFIG_SENSORS_ISL29028=y | 205 | CONFIG_SENSORS_ISL29028=y |
| 205 | CONFIG_SENSORS_AK8975=y | 206 | CONFIG_AK8975=y |
| 206 | CONFIG_MFD_NVEC=y | 207 | CONFIG_MFD_NVEC=y |
| 207 | CONFIG_KEYBOARD_NVEC=y | 208 | CONFIG_KEYBOARD_NVEC=y |
| 208 | CONFIG_SERIO_NVEC_PS2=y | 209 | CONFIG_SERIO_NVEC_PS2=y |
diff --git a/arch/arm/crypto/sha1-armv4-large.S b/arch/arm/crypto/sha1-armv4-large.S index 92c6eed7aac9..99207c45ec10 100644 --- a/arch/arm/crypto/sha1-armv4-large.S +++ b/arch/arm/crypto/sha1-armv4-large.S | |||
| @@ -195,6 +195,7 @@ ENTRY(sha1_block_data_order) | |||
| 195 | add r3,r3,r10 @ E+=F_00_19(B,C,D) | 195 | add r3,r3,r10 @ E+=F_00_19(B,C,D) |
| 196 | cmp r14,sp | 196 | cmp r14,sp |
| 197 | bne .L_00_15 @ [((11+4)*5+2)*3] | 197 | bne .L_00_15 @ [((11+4)*5+2)*3] |
| 198 | sub sp,sp,#25*4 | ||
| 198 | #if __ARM_ARCH__<7 | 199 | #if __ARM_ARCH__<7 |
| 199 | ldrb r10,[r1,#2] | 200 | ldrb r10,[r1,#2] |
| 200 | ldrb r9,[r1,#3] | 201 | ldrb r9,[r1,#3] |
| @@ -290,7 +291,6 @@ ENTRY(sha1_block_data_order) | |||
| 290 | add r3,r3,r10 @ E+=F_00_19(B,C,D) | 291 | add r3,r3,r10 @ E+=F_00_19(B,C,D) |
| 291 | 292 | ||
| 292 | ldr r8,.LK_20_39 @ [+15+16*4] | 293 | ldr r8,.LK_20_39 @ [+15+16*4] |
| 293 | sub sp,sp,#25*4 | ||
| 294 | cmn sp,#0 @ [+3], clear carry to denote 20_39 | 294 | cmn sp,#0 @ [+3], clear carry to denote 20_39 |
| 295 | .L_20_39_or_60_79: | 295 | .L_20_39_or_60_79: |
| 296 | ldr r9,[r14,#15*4] | 296 | ldr r9,[r14,#15*4] |
diff --git a/arch/arm/include/debug/ux500.S b/arch/arm/include/debug/ux500.S index 2848857f5b62..fbd24beeb1fa 100644 --- a/arch/arm/include/debug/ux500.S +++ b/arch/arm/include/debug/ux500.S | |||
| @@ -24,9 +24,9 @@ | |||
| 24 | #define U8500_UART0_PHYS_BASE (0x80120000) | 24 | #define U8500_UART0_PHYS_BASE (0x80120000) |
| 25 | #define U8500_UART1_PHYS_BASE (0x80121000) | 25 | #define U8500_UART1_PHYS_BASE (0x80121000) |
| 26 | #define U8500_UART2_PHYS_BASE (0x80007000) | 26 | #define U8500_UART2_PHYS_BASE (0x80007000) |
| 27 | #define U8500_UART0_VIRT_BASE (0xa8120000) | 27 | #define U8500_UART0_VIRT_BASE (0xf8120000) |
| 28 | #define U8500_UART1_VIRT_BASE (0xa8121000) | 28 | #define U8500_UART1_VIRT_BASE (0xf8121000) |
| 29 | #define U8500_UART2_VIRT_BASE (0xa8007000) | 29 | #define U8500_UART2_VIRT_BASE (0xf8007000) |
| 30 | #define __UX500_PHYS_UART(n) U8500_UART##n##_PHYS_BASE | 30 | #define __UX500_PHYS_UART(n) U8500_UART##n##_PHYS_BASE |
| 31 | #define __UX500_VIRT_UART(n) U8500_UART##n##_VIRT_BASE | 31 | #define __UX500_VIRT_UART(n) U8500_UART##n##_VIRT_BASE |
| 32 | #endif | 32 | #endif |
diff --git a/arch/arm/kernel/process.c b/arch/arm/kernel/process.c index f21970316836..282de4826abb 100644 --- a/arch/arm/kernel/process.c +++ b/arch/arm/kernel/process.c | |||
| @@ -411,7 +411,6 @@ static struct vm_area_struct gate_vma = { | |||
| 411 | .vm_start = 0xffff0000, | 411 | .vm_start = 0xffff0000, |
| 412 | .vm_end = 0xffff0000 + PAGE_SIZE, | 412 | .vm_end = 0xffff0000 + PAGE_SIZE, |
| 413 | .vm_flags = VM_READ | VM_EXEC | VM_MAYREAD | VM_MAYEXEC, | 413 | .vm_flags = VM_READ | VM_EXEC | VM_MAYREAD | VM_MAYEXEC, |
| 414 | .vm_mm = &init_mm, | ||
| 415 | }; | 414 | }; |
| 416 | 415 | ||
| 417 | static int __init gate_vma_init(void) | 416 | static int __init gate_vma_init(void) |
diff --git a/arch/arm/kernel/smp.c b/arch/arm/kernel/smp.c index 47ab90563bf4..550d63cef68e 100644 --- a/arch/arm/kernel/smp.c +++ b/arch/arm/kernel/smp.c | |||
| @@ -251,7 +251,7 @@ void __ref cpu_die(void) | |||
| 251 | * this returns, power and/or clocks can be removed at any point | 251 | * this returns, power and/or clocks can be removed at any point |
| 252 | * from this CPU and its cache by platform_cpu_kill(). | 252 | * from this CPU and its cache by platform_cpu_kill(). |
| 253 | */ | 253 | */ |
| 254 | RCU_NONIDLE(complete(&cpu_died)); | 254 | complete(&cpu_died); |
| 255 | 255 | ||
| 256 | /* | 256 | /* |
| 257 | * Ensure that the cache lines associated with that completion are | 257 | * Ensure that the cache lines associated with that completion are |
diff --git a/arch/arm/mach-at91/at91rm9200_time.c b/arch/arm/mach-at91/at91rm9200_time.c index 2acdff4c1dfe..180b3024bec3 100644 --- a/arch/arm/mach-at91/at91rm9200_time.c +++ b/arch/arm/mach-at91/at91rm9200_time.c | |||
| @@ -174,6 +174,7 @@ clkevt32k_next_event(unsigned long delta, struct clock_event_device *dev) | |||
| 174 | static struct clock_event_device clkevt = { | 174 | static struct clock_event_device clkevt = { |
| 175 | .name = "at91_tick", | 175 | .name = "at91_tick", |
| 176 | .features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT, | 176 | .features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT, |
| 177 | .shift = 32, | ||
| 177 | .rating = 150, | 178 | .rating = 150, |
| 178 | .set_next_event = clkevt32k_next_event, | 179 | .set_next_event = clkevt32k_next_event, |
| 179 | .set_mode = clkevt32k_mode, | 180 | .set_mode = clkevt32k_mode, |
| @@ -264,9 +265,11 @@ void __init at91rm9200_timer_init(void) | |||
| 264 | at91_st_write(AT91_ST_RTMR, 1); | 265 | at91_st_write(AT91_ST_RTMR, 1); |
| 265 | 266 | ||
| 266 | /* Setup timer clockevent, with minimum of two ticks (important!!) */ | 267 | /* Setup timer clockevent, with minimum of two ticks (important!!) */ |
| 268 | clkevt.mult = div_sc(AT91_SLOW_CLOCK, NSEC_PER_SEC, clkevt.shift); | ||
| 269 | clkevt.max_delta_ns = clockevent_delta2ns(AT91_ST_ALMV, &clkevt); | ||
| 270 | clkevt.min_delta_ns = clockevent_delta2ns(2, &clkevt) + 1; | ||
| 267 | clkevt.cpumask = cpumask_of(0); | 271 | clkevt.cpumask = cpumask_of(0); |
| 268 | clockevents_config_and_register(&clkevt, AT91_SLOW_CLOCK, | 272 | clockevents_register_device(&clkevt); |
| 269 | 2, AT91_ST_ALMV); | ||
| 270 | 273 | ||
| 271 | /* register clocksource */ | 274 | /* register clocksource */ |
| 272 | clocksource_register_hz(&clk32k, AT91_SLOW_CLOCK); | 275 | clocksource_register_hz(&clk32k, AT91_SLOW_CLOCK); |
diff --git a/arch/arm/mach-at91/at91sam9n12.c b/arch/arm/mach-at91/at91sam9n12.c index 13cdbcd48f51..c7d670d11802 100644 --- a/arch/arm/mach-at91/at91sam9n12.c +++ b/arch/arm/mach-at91/at91sam9n12.c | |||
| @@ -223,13 +223,7 @@ static void __init at91sam9n12_map_io(void) | |||
| 223 | at91_init_sram(0, AT91SAM9N12_SRAM_BASE, AT91SAM9N12_SRAM_SIZE); | 223 | at91_init_sram(0, AT91SAM9N12_SRAM_BASE, AT91SAM9N12_SRAM_SIZE); |
| 224 | } | 224 | } |
| 225 | 225 | ||
| 226 | void __init at91sam9n12_initialize(void) | ||
| 227 | { | ||
| 228 | at91_extern_irq = (1 << AT91SAM9N12_ID_IRQ0); | ||
| 229 | } | ||
| 230 | |||
| 231 | AT91_SOC_START(at91sam9n12) | 226 | AT91_SOC_START(at91sam9n12) |
| 232 | .map_io = at91sam9n12_map_io, | 227 | .map_io = at91sam9n12_map_io, |
| 233 | .register_clocks = at91sam9n12_register_clocks, | 228 | .register_clocks = at91sam9n12_register_clocks, |
| 234 | .init = at91sam9n12_initialize, | ||
| 235 | AT91_SOC_END | 229 | AT91_SOC_END |
diff --git a/arch/arm/mach-at91/include/mach/at91_pmc.h b/arch/arm/mach-at91/include/mach/at91_pmc.h index 31df12029c4e..2bd7f51b0b82 100644 --- a/arch/arm/mach-at91/include/mach/at91_pmc.h +++ b/arch/arm/mach-at91/include/mach/at91_pmc.h | |||
| @@ -179,9 +179,9 @@ extern void __iomem *at91_pmc_base; | |||
| 179 | #define AT91_PMC_PCR_CMD (0x1 << 12) /* Command (read=0, write=1) */ | 179 | #define AT91_PMC_PCR_CMD (0x1 << 12) /* Command (read=0, write=1) */ |
| 180 | #define AT91_PMC_PCR_DIV(n) ((n) << 16) /* Divisor Value */ | 180 | #define AT91_PMC_PCR_DIV(n) ((n) << 16) /* Divisor Value */ |
| 181 | #define AT91_PMC_PCR_DIV0 0x0 /* Peripheral clock is MCK */ | 181 | #define AT91_PMC_PCR_DIV0 0x0 /* Peripheral clock is MCK */ |
| 182 | #define AT91_PMC_PCR_DIV2 0x2 /* Peripheral clock is MCK/2 */ | 182 | #define AT91_PMC_PCR_DIV2 0x1 /* Peripheral clock is MCK/2 */ |
| 183 | #define AT91_PMC_PCR_DIV4 0x4 /* Peripheral clock is MCK/4 */ | 183 | #define AT91_PMC_PCR_DIV4 0x2 /* Peripheral clock is MCK/4 */ |
| 184 | #define AT91_PMC_PCR_DIV8 0x8 /* Peripheral clock is MCK/8 */ | 184 | #define AT91_PMC_PCR_DIV8 0x3 /* Peripheral clock is MCK/8 */ |
| 185 | #define AT91_PMC_PCR_EN (0x1 << 28) /* Enable */ | 185 | #define AT91_PMC_PCR_EN (0x1 << 28) /* Enable */ |
| 186 | 186 | ||
| 187 | #endif | 187 | #endif |
diff --git a/arch/arm/mach-imx/clk-imx6q.c b/arch/arm/mach-imx/clk-imx6q.c index 151259003086..dda9a2bd3acb 100644 --- a/arch/arm/mach-imx/clk-imx6q.c +++ b/arch/arm/mach-imx/clk-imx6q.c | |||
| @@ -177,7 +177,8 @@ int imx6q_set_lpm(enum mxc_cpu_pwr_mode mode) | |||
| 177 | static const char *step_sels[] = { "osc", "pll2_pfd2_396m", }; | 177 | static const char *step_sels[] = { "osc", "pll2_pfd2_396m", }; |
| 178 | static const char *pll1_sw_sels[] = { "pll1_sys", "step", }; | 178 | static const char *pll1_sw_sels[] = { "pll1_sys", "step", }; |
| 179 | static const char *periph_pre_sels[] = { "pll2_bus", "pll2_pfd2_396m", "pll2_pfd0_352m", "pll2_198m", }; | 179 | static const char *periph_pre_sels[] = { "pll2_bus", "pll2_pfd2_396m", "pll2_pfd0_352m", "pll2_198m", }; |
| 180 | static const char *periph_clk2_sels[] = { "pll3_usb_otg", "osc", }; | 180 | static const char *periph_clk2_sels[] = { "pll3_usb_otg", "osc", "osc", "dummy", }; |
| 181 | static const char *periph2_clk2_sels[] = { "pll3_usb_otg", "pll2_bus", }; | ||
| 181 | static const char *periph_sels[] = { "periph_pre", "periph_clk2", }; | 182 | static const char *periph_sels[] = { "periph_pre", "periph_clk2", }; |
| 182 | static const char *periph2_sels[] = { "periph2_pre", "periph2_clk2", }; | 183 | static const char *periph2_sels[] = { "periph2_pre", "periph2_clk2", }; |
| 183 | static const char *axi_sels[] = { "periph", "pll2_pfd2_396m", "pll3_pfd1_540m", }; | 184 | static const char *axi_sels[] = { "periph", "pll2_pfd2_396m", "pll3_pfd1_540m", }; |
| @@ -185,7 +186,7 @@ static const char *audio_sels[] = { "pll4_post_div", "pll3_pfd2_508m", "pll3_pfd | |||
| 185 | static const char *gpu_axi_sels[] = { "axi", "ahb", }; | 186 | static const char *gpu_axi_sels[] = { "axi", "ahb", }; |
| 186 | static const char *gpu2d_core_sels[] = { "axi", "pll3_usb_otg", "pll2_pfd0_352m", "pll2_pfd2_396m", }; | 187 | static const char *gpu2d_core_sels[] = { "axi", "pll3_usb_otg", "pll2_pfd0_352m", "pll2_pfd2_396m", }; |
| 187 | static const char *gpu3d_core_sels[] = { "mmdc_ch0_axi", "pll3_usb_otg", "pll2_pfd1_594m", "pll2_pfd2_396m", }; | 188 | static const char *gpu3d_core_sels[] = { "mmdc_ch0_axi", "pll3_usb_otg", "pll2_pfd1_594m", "pll2_pfd2_396m", }; |
| 188 | static const char *gpu3d_shader_sels[] = { "mmdc_ch0_axi", "pll3_usb_otg", "pll2_pfd1_594m", "pll2_pfd9_720m", }; | 189 | static const char *gpu3d_shader_sels[] = { "mmdc_ch0_axi", "pll3_usb_otg", "pll2_pfd1_594m", "pll3_pfd0_720m", }; |
| 189 | static const char *ipu_sels[] = { "mmdc_ch0_axi", "pll2_pfd2_396m", "pll3_120m", "pll3_pfd1_540m", }; | 190 | static const char *ipu_sels[] = { "mmdc_ch0_axi", "pll2_pfd2_396m", "pll3_120m", "pll3_pfd1_540m", }; |
| 190 | static const char *ldb_di_sels[] = { "pll5_video", "pll2_pfd0_352m", "pll2_pfd2_396m", "mmdc_ch1_axi", "pll3_usb_otg", }; | 191 | static const char *ldb_di_sels[] = { "pll5_video", "pll2_pfd0_352m", "pll2_pfd2_396m", "mmdc_ch1_axi", "pll3_usb_otg", }; |
| 191 | static const char *ipu_di_pre_sels[] = { "mmdc_ch0_axi", "pll3_usb_otg", "pll5_video_div", "pll2_pfd0_352m", "pll2_pfd2_396m", "pll3_pfd1_540m", }; | 192 | static const char *ipu_di_pre_sels[] = { "mmdc_ch0_axi", "pll3_usb_otg", "pll5_video_div", "pll2_pfd0_352m", "pll2_pfd2_396m", "pll3_pfd1_540m", }; |
| @@ -369,8 +370,8 @@ int __init mx6q_clocks_init(void) | |||
| 369 | clk[pll1_sw] = imx_clk_mux("pll1_sw", base + 0xc, 2, 1, pll1_sw_sels, ARRAY_SIZE(pll1_sw_sels)); | 370 | clk[pll1_sw] = imx_clk_mux("pll1_sw", base + 0xc, 2, 1, pll1_sw_sels, ARRAY_SIZE(pll1_sw_sels)); |
| 370 | clk[periph_pre] = imx_clk_mux("periph_pre", base + 0x18, 18, 2, periph_pre_sels, ARRAY_SIZE(periph_pre_sels)); | 371 | clk[periph_pre] = imx_clk_mux("periph_pre", base + 0x18, 18, 2, periph_pre_sels, ARRAY_SIZE(periph_pre_sels)); |
| 371 | clk[periph2_pre] = imx_clk_mux("periph2_pre", base + 0x18, 21, 2, periph_pre_sels, ARRAY_SIZE(periph_pre_sels)); | 372 | clk[periph2_pre] = imx_clk_mux("periph2_pre", base + 0x18, 21, 2, periph_pre_sels, ARRAY_SIZE(periph_pre_sels)); |
| 372 | clk[periph_clk2_sel] = imx_clk_mux("periph_clk2_sel", base + 0x18, 12, 1, periph_clk2_sels, ARRAY_SIZE(periph_clk2_sels)); | 373 | clk[periph_clk2_sel] = imx_clk_mux("periph_clk2_sel", base + 0x18, 12, 2, periph_clk2_sels, ARRAY_SIZE(periph_clk2_sels)); |
| 373 | clk[periph2_clk2_sel] = imx_clk_mux("periph2_clk2_sel", base + 0x18, 20, 1, periph_clk2_sels, ARRAY_SIZE(periph_clk2_sels)); | 374 | clk[periph2_clk2_sel] = imx_clk_mux("periph2_clk2_sel", base + 0x18, 20, 1, periph2_clk2_sels, ARRAY_SIZE(periph2_clk2_sels)); |
| 374 | clk[axi_sel] = imx_clk_mux("axi_sel", base + 0x14, 6, 2, axi_sels, ARRAY_SIZE(axi_sels)); | 375 | clk[axi_sel] = imx_clk_mux("axi_sel", base + 0x14, 6, 2, axi_sels, ARRAY_SIZE(axi_sels)); |
| 375 | clk[esai_sel] = imx_clk_mux("esai_sel", base + 0x20, 19, 2, audio_sels, ARRAY_SIZE(audio_sels)); | 376 | clk[esai_sel] = imx_clk_mux("esai_sel", base + 0x20, 19, 2, audio_sels, ARRAY_SIZE(audio_sels)); |
| 376 | clk[asrc_sel] = imx_clk_mux("asrc_sel", base + 0x30, 7, 2, audio_sels, ARRAY_SIZE(audio_sels)); | 377 | clk[asrc_sel] = imx_clk_mux("asrc_sel", base + 0x30, 7, 2, audio_sels, ARRAY_SIZE(audio_sels)); |
| @@ -498,7 +499,7 @@ int __init mx6q_clocks_init(void) | |||
| 498 | clk[ldb_di1] = imx_clk_gate2("ldb_di1", "ldb_di1_podf", base + 0x74, 14); | 499 | clk[ldb_di1] = imx_clk_gate2("ldb_di1", "ldb_di1_podf", base + 0x74, 14); |
| 499 | clk[ipu2_di1] = imx_clk_gate2("ipu2_di1", "ipu2_di1_sel", base + 0x74, 10); | 500 | clk[ipu2_di1] = imx_clk_gate2("ipu2_di1", "ipu2_di1_sel", base + 0x74, 10); |
| 500 | clk[hsi_tx] = imx_clk_gate2("hsi_tx", "hsi_tx_podf", base + 0x74, 16); | 501 | clk[hsi_tx] = imx_clk_gate2("hsi_tx", "hsi_tx_podf", base + 0x74, 16); |
| 501 | clk[mlb] = imx_clk_gate2("mlb", "pll8_mlb", base + 0x74, 18); | 502 | clk[mlb] = imx_clk_gate2("mlb", "axi", base + 0x74, 18); |
| 502 | clk[mmdc_ch0_axi] = imx_clk_gate2("mmdc_ch0_axi", "mmdc_ch0_axi_podf", base + 0x74, 20); | 503 | clk[mmdc_ch0_axi] = imx_clk_gate2("mmdc_ch0_axi", "mmdc_ch0_axi_podf", base + 0x74, 20); |
| 503 | clk[mmdc_ch1_axi] = imx_clk_gate2("mmdc_ch1_axi", "mmdc_ch1_axi_podf", base + 0x74, 22); | 504 | clk[mmdc_ch1_axi] = imx_clk_gate2("mmdc_ch1_axi", "mmdc_ch1_axi_podf", base + 0x74, 22); |
| 504 | clk[ocram] = imx_clk_gate2("ocram", "ahb", base + 0x74, 28); | 505 | clk[ocram] = imx_clk_gate2("ocram", "ahb", base + 0x74, 28); |
diff --git a/arch/arm/mach-imx/headsmp.S b/arch/arm/mach-imx/headsmp.S index 67b9c48dcafe..627f16f0e9d1 100644 --- a/arch/arm/mach-imx/headsmp.S +++ b/arch/arm/mach-imx/headsmp.S | |||
| @@ -18,8 +18,20 @@ | |||
| 18 | .section ".text.head", "ax" | 18 | .section ".text.head", "ax" |
| 19 | 19 | ||
| 20 | #ifdef CONFIG_SMP | 20 | #ifdef CONFIG_SMP |
| 21 | diag_reg_offset: | ||
| 22 | .word g_diag_reg - . | ||
| 23 | |||
| 24 | .macro set_diag_reg | ||
| 25 | adr r0, diag_reg_offset | ||
| 26 | ldr r1, [r0] | ||
| 27 | add r1, r1, r0 @ r1 = physical &g_diag_reg | ||
| 28 | ldr r0, [r1] | ||
| 29 | mcr p15, 0, r0, c15, c0, 1 @ write diagnostic register | ||
| 30 | .endm | ||
| 31 | |||
| 21 | ENTRY(v7_secondary_startup) | 32 | ENTRY(v7_secondary_startup) |
| 22 | bl v7_invalidate_l1 | 33 | bl v7_invalidate_l1 |
| 34 | set_diag_reg | ||
| 23 | b secondary_startup | 35 | b secondary_startup |
| 24 | ENDPROC(v7_secondary_startup) | 36 | ENDPROC(v7_secondary_startup) |
| 25 | #endif | 37 | #endif |
diff --git a/arch/arm/mach-imx/platsmp.c b/arch/arm/mach-imx/platsmp.c index 4a69305db65e..c6e1ab544882 100644 --- a/arch/arm/mach-imx/platsmp.c +++ b/arch/arm/mach-imx/platsmp.c | |||
| @@ -12,6 +12,7 @@ | |||
| 12 | 12 | ||
| 13 | #include <linux/init.h> | 13 | #include <linux/init.h> |
| 14 | #include <linux/smp.h> | 14 | #include <linux/smp.h> |
| 15 | #include <asm/cacheflush.h> | ||
| 15 | #include <asm/page.h> | 16 | #include <asm/page.h> |
| 16 | #include <asm/smp_scu.h> | 17 | #include <asm/smp_scu.h> |
| 17 | #include <asm/mach/map.h> | 18 | #include <asm/mach/map.h> |
| @@ -21,6 +22,7 @@ | |||
| 21 | 22 | ||
| 22 | #define SCU_STANDBY_ENABLE (1 << 5) | 23 | #define SCU_STANDBY_ENABLE (1 << 5) |
| 23 | 24 | ||
| 25 | u32 g_diag_reg; | ||
| 24 | static void __iomem *scu_base; | 26 | static void __iomem *scu_base; |
| 25 | 27 | ||
| 26 | static struct map_desc scu_io_desc __initdata = { | 28 | static struct map_desc scu_io_desc __initdata = { |
| @@ -80,6 +82,18 @@ void imx_smp_prepare(void) | |||
| 80 | static void __init imx_smp_prepare_cpus(unsigned int max_cpus) | 82 | static void __init imx_smp_prepare_cpus(unsigned int max_cpus) |
| 81 | { | 83 | { |
| 82 | imx_smp_prepare(); | 84 | imx_smp_prepare(); |
| 85 | |||
| 86 | /* | ||
| 87 | * The diagnostic register holds the errata bits. Mostly bootloader | ||
| 88 | * does not bring up secondary cores, so that when errata bits are set | ||
| 89 | * in bootloader, they are set only for boot cpu. But on a SMP | ||
| 90 | * configuration, it should be equally done on every single core. | ||
| 91 | * Read the register from boot cpu here, and will replicate it into | ||
| 92 | * secondary cores when booting them. | ||
| 93 | */ | ||
| 94 | asm("mrc p15, 0, %0, c15, c0, 1" : "=r" (g_diag_reg) : : "cc"); | ||
| 95 | __cpuc_flush_dcache_area(&g_diag_reg, sizeof(g_diag_reg)); | ||
| 96 | outer_clean_range(__pa(&g_diag_reg), __pa(&g_diag_reg + 1)); | ||
| 83 | } | 97 | } |
| 84 | 98 | ||
| 85 | struct smp_operations imx_smp_ops __initdata = { | 99 | struct smp_operations imx_smp_ops __initdata = { |
diff --git a/arch/arm/mach-kirkwood/common.c b/arch/arm/mach-kirkwood/common.c index c2cae69e6d2b..f38922897563 100644 --- a/arch/arm/mach-kirkwood/common.c +++ b/arch/arm/mach-kirkwood/common.c | |||
| @@ -528,12 +528,6 @@ void __init kirkwood_init_early(void) | |||
| 528 | { | 528 | { |
| 529 | orion_time_set_base(TIMER_VIRT_BASE); | 529 | orion_time_set_base(TIMER_VIRT_BASE); |
| 530 | 530 | ||
| 531 | /* | ||
| 532 | * Some Kirkwood devices allocate their coherent buffers from atomic | ||
| 533 | * context. Increase size of atomic coherent pool to make sure such | ||
| 534 | * the allocations won't fail. | ||
| 535 | */ | ||
| 536 | init_dma_coherent_pool_size(SZ_1M); | ||
| 537 | mvebu_mbus_init("marvell,kirkwood-mbus", | 531 | mvebu_mbus_init("marvell,kirkwood-mbus", |
| 538 | BRIDGE_WINS_BASE, BRIDGE_WINS_SZ, | 532 | BRIDGE_WINS_BASE, BRIDGE_WINS_SZ, |
| 539 | DDR_WINDOW_CPU_BASE, DDR_WINDOW_CPU_SZ); | 533 | DDR_WINDOW_CPU_BASE, DDR_WINDOW_CPU_SZ); |
diff --git a/arch/arm/mach-kirkwood/ts219-setup.c b/arch/arm/mach-kirkwood/ts219-setup.c index 283abff90228..e1267d6b468f 100644 --- a/arch/arm/mach-kirkwood/ts219-setup.c +++ b/arch/arm/mach-kirkwood/ts219-setup.c | |||
| @@ -124,7 +124,7 @@ static void __init qnap_ts219_init(void) | |||
| 124 | static int __init ts219_pci_init(void) | 124 | static int __init ts219_pci_init(void) |
| 125 | { | 125 | { |
| 126 | if (machine_is_ts219()) | 126 | if (machine_is_ts219()) |
| 127 | kirkwood_pcie_init(KW_PCIE0); | 127 | kirkwood_pcie_init(KW_PCIE1 | KW_PCIE0); |
| 128 | 128 | ||
| 129 | return 0; | 129 | return 0; |
| 130 | } | 130 | } |
diff --git a/arch/arm/mach-mvebu/Kconfig b/arch/arm/mach-mvebu/Kconfig index e11acbb0a46d..80a8bcacd9d5 100644 --- a/arch/arm/mach-mvebu/Kconfig +++ b/arch/arm/mach-mvebu/Kconfig | |||
| @@ -15,6 +15,7 @@ config ARCH_MVEBU | |||
| 15 | select MVEBU_CLK_GATING | 15 | select MVEBU_CLK_GATING |
| 16 | select MVEBU_MBUS | 16 | select MVEBU_MBUS |
| 17 | select ZONE_DMA if ARM_LPAE | 17 | select ZONE_DMA if ARM_LPAE |
| 18 | select ARCH_REQUIRE_GPIOLIB | ||
| 18 | 19 | ||
| 19 | if ARCH_MVEBU | 20 | if ARCH_MVEBU |
| 20 | 21 | ||
diff --git a/arch/arm/mach-mvebu/armada-370-xp.c b/arch/arm/mach-mvebu/armada-370-xp.c index 42a4cb3087e2..1c48890bb72b 100644 --- a/arch/arm/mach-mvebu/armada-370-xp.c +++ b/arch/arm/mach-mvebu/armada-370-xp.c | |||
| @@ -54,13 +54,6 @@ void __init armada_370_xp_init_early(void) | |||
| 54 | char *mbus_soc_name; | 54 | char *mbus_soc_name; |
| 55 | 55 | ||
| 56 | /* | 56 | /* |
| 57 | * Some Armada 370/XP devices allocate their coherent buffers | ||
| 58 | * from atomic context. Increase size of atomic coherent pool | ||
| 59 | * to make sure such the allocations won't fail. | ||
| 60 | */ | ||
| 61 | init_dma_coherent_pool_size(SZ_1M); | ||
| 62 | |||
| 63 | /* | ||
| 64 | * This initialization will be replaced by a DT-based | 57 | * This initialization will be replaced by a DT-based |
| 65 | * initialization once the mvebu-mbus driver gains DT support. | 58 | * initialization once the mvebu-mbus driver gains DT support. |
| 66 | */ | 59 | */ |
diff --git a/arch/arm/mach-omap1/dma.c b/arch/arm/mach-omap1/dma.c index 68ab858e27b7..a94b3a718d1a 100644 --- a/arch/arm/mach-omap1/dma.c +++ b/arch/arm/mach-omap1/dma.c | |||
| @@ -345,6 +345,7 @@ static int __init omap1_system_dma_init(void) | |||
| 345 | dev_err(&pdev->dev, | 345 | dev_err(&pdev->dev, |
| 346 | "%s: Memory allocation failed for d->chan!\n", | 346 | "%s: Memory allocation failed for d->chan!\n", |
| 347 | __func__); | 347 | __func__); |
| 348 | ret = -ENOMEM; | ||
| 348 | goto exit_release_d; | 349 | goto exit_release_d; |
| 349 | } | 350 | } |
| 350 | 351 | ||
diff --git a/arch/arm/mach-omap2/cclock33xx_data.c b/arch/arm/mach-omap2/cclock33xx_data.c index 6ebc7803bc3e..af3544ce4f02 100644 --- a/arch/arm/mach-omap2/cclock33xx_data.c +++ b/arch/arm/mach-omap2/cclock33xx_data.c | |||
| @@ -454,9 +454,29 @@ DEFINE_CLK_GATE(cefuse_fck, "sys_clkin_ck", &sys_clkin_ck, 0x0, | |||
| 454 | */ | 454 | */ |
| 455 | DEFINE_CLK_FIXED_FACTOR(clkdiv32k_ck, "clk_24mhz", &clk_24mhz, 0x0, 1, 732); | 455 | DEFINE_CLK_FIXED_FACTOR(clkdiv32k_ck, "clk_24mhz", &clk_24mhz, 0x0, 1, 732); |
| 456 | 456 | ||
| 457 | DEFINE_CLK_GATE(clkdiv32k_ick, "clkdiv32k_ck", &clkdiv32k_ck, 0x0, | 457 | static struct clk clkdiv32k_ick; |
| 458 | AM33XX_CM_PER_CLKDIV32K_CLKCTRL, AM33XX_MODULEMODE_SWCTRL_SHIFT, | 458 | |
| 459 | 0x0, NULL); | 459 | static const char *clkdiv32k_ick_parent_names[] = { |
| 460 | "clkdiv32k_ck", | ||
| 461 | }; | ||
| 462 | |||
| 463 | static const struct clk_ops clkdiv32k_ick_ops = { | ||
| 464 | .enable = &omap2_dflt_clk_enable, | ||
| 465 | .disable = &omap2_dflt_clk_disable, | ||
| 466 | .is_enabled = &omap2_dflt_clk_is_enabled, | ||
| 467 | .init = &omap2_init_clk_clkdm, | ||
| 468 | }; | ||
| 469 | |||
| 470 | static struct clk_hw_omap clkdiv32k_ick_hw = { | ||
| 471 | .hw = { | ||
| 472 | .clk = &clkdiv32k_ick, | ||
| 473 | }, | ||
| 474 | .enable_reg = AM33XX_CM_PER_CLKDIV32K_CLKCTRL, | ||
| 475 | .enable_bit = AM33XX_MODULEMODE_SWCTRL_SHIFT, | ||
| 476 | .clkdm_name = "clk_24mhz_clkdm", | ||
| 477 | }; | ||
| 478 | |||
| 479 | DEFINE_STRUCT_CLK(clkdiv32k_ick, clkdiv32k_ick_parent_names, clkdiv32k_ick_ops); | ||
| 460 | 480 | ||
| 461 | /* "usbotg_fck" is an additional clock and not really a modulemode */ | 481 | /* "usbotg_fck" is an additional clock and not really a modulemode */ |
| 462 | DEFINE_CLK_GATE(usbotg_fck, "dpll_per_ck", &dpll_per_ck, 0x0, | 482 | DEFINE_CLK_GATE(usbotg_fck, "dpll_per_ck", &dpll_per_ck, 0x0, |
diff --git a/arch/arm/mach-omap2/omap_hwmod.c b/arch/arm/mach-omap2/omap_hwmod.c index d25a95fe9921..7341eff63f56 100644 --- a/arch/arm/mach-omap2/omap_hwmod.c +++ b/arch/arm/mach-omap2/omap_hwmod.c | |||
| @@ -1356,13 +1356,27 @@ static void _enable_sysc(struct omap_hwmod *oh) | |||
| 1356 | 1356 | ||
| 1357 | clkdm = _get_clkdm(oh); | 1357 | clkdm = _get_clkdm(oh); |
| 1358 | if (sf & SYSC_HAS_SIDLEMODE) { | 1358 | if (sf & SYSC_HAS_SIDLEMODE) { |
| 1359 | if (oh->flags & HWMOD_SWSUP_SIDLE || | ||
| 1360 | oh->flags & HWMOD_SWSUP_SIDLE_ACT) { | ||
| 1361 | idlemode = HWMOD_IDLEMODE_NO; | ||
| 1362 | } else { | ||
| 1363 | if (sf & SYSC_HAS_ENAWAKEUP) | ||
| 1364 | _enable_wakeup(oh, &v); | ||
| 1365 | if (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP) | ||
| 1366 | idlemode = HWMOD_IDLEMODE_SMART_WKUP; | ||
| 1367 | else | ||
| 1368 | idlemode = HWMOD_IDLEMODE_SMART; | ||
| 1369 | } | ||
| 1370 | |||
| 1371 | /* | ||
| 1372 | * This is special handling for some IPs like | ||
| 1373 | * 32k sync timer. Force them to idle! | ||
| 1374 | */ | ||
| 1359 | clkdm_act = (clkdm && clkdm->flags & CLKDM_ACTIVE_WITH_MPU); | 1375 | clkdm_act = (clkdm && clkdm->flags & CLKDM_ACTIVE_WITH_MPU); |
| 1360 | if (clkdm_act && !(oh->class->sysc->idlemodes & | 1376 | if (clkdm_act && !(oh->class->sysc->idlemodes & |
| 1361 | (SIDLE_SMART | SIDLE_SMART_WKUP))) | 1377 | (SIDLE_SMART | SIDLE_SMART_WKUP))) |
| 1362 | idlemode = HWMOD_IDLEMODE_FORCE; | 1378 | idlemode = HWMOD_IDLEMODE_FORCE; |
| 1363 | else | 1379 | |
| 1364 | idlemode = (oh->flags & HWMOD_SWSUP_SIDLE) ? | ||
| 1365 | HWMOD_IDLEMODE_NO : HWMOD_IDLEMODE_SMART; | ||
| 1366 | _set_slave_idlemode(oh, idlemode, &v); | 1380 | _set_slave_idlemode(oh, idlemode, &v); |
| 1367 | } | 1381 | } |
| 1368 | 1382 | ||
| @@ -1391,10 +1405,6 @@ static void _enable_sysc(struct omap_hwmod *oh) | |||
| 1391 | (sf & SYSC_HAS_CLOCKACTIVITY)) | 1405 | (sf & SYSC_HAS_CLOCKACTIVITY)) |
| 1392 | _set_clockactivity(oh, oh->class->sysc->clockact, &v); | 1406 | _set_clockactivity(oh, oh->class->sysc->clockact, &v); |
| 1393 | 1407 | ||
| 1394 | /* If slave is in SMARTIDLE, also enable wakeup */ | ||
| 1395 | if ((sf & SYSC_HAS_SIDLEMODE) && !(oh->flags & HWMOD_SWSUP_SIDLE)) | ||
| 1396 | _enable_wakeup(oh, &v); | ||
| 1397 | |||
| 1398 | _write_sysconfig(v, oh); | 1408 | _write_sysconfig(v, oh); |
| 1399 | 1409 | ||
| 1400 | /* | 1410 | /* |
| @@ -1430,13 +1440,16 @@ static void _idle_sysc(struct omap_hwmod *oh) | |||
| 1430 | sf = oh->class->sysc->sysc_flags; | 1440 | sf = oh->class->sysc->sysc_flags; |
| 1431 | 1441 | ||
| 1432 | if (sf & SYSC_HAS_SIDLEMODE) { | 1442 | if (sf & SYSC_HAS_SIDLEMODE) { |
| 1433 | /* XXX What about HWMOD_IDLEMODE_SMART_WKUP? */ | 1443 | if (oh->flags & HWMOD_SWSUP_SIDLE) { |
| 1434 | if (oh->flags & HWMOD_SWSUP_SIDLE || | ||
| 1435 | !(oh->class->sysc->idlemodes & | ||
| 1436 | (SIDLE_SMART | SIDLE_SMART_WKUP))) | ||
| 1437 | idlemode = HWMOD_IDLEMODE_FORCE; | 1444 | idlemode = HWMOD_IDLEMODE_FORCE; |
| 1438 | else | 1445 | } else { |
| 1439 | idlemode = HWMOD_IDLEMODE_SMART; | 1446 | if (sf & SYSC_HAS_ENAWAKEUP) |
| 1447 | _enable_wakeup(oh, &v); | ||
| 1448 | if (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP) | ||
| 1449 | idlemode = HWMOD_IDLEMODE_SMART_WKUP; | ||
| 1450 | else | ||
| 1451 | idlemode = HWMOD_IDLEMODE_SMART; | ||
| 1452 | } | ||
| 1440 | _set_slave_idlemode(oh, idlemode, &v); | 1453 | _set_slave_idlemode(oh, idlemode, &v); |
| 1441 | } | 1454 | } |
| 1442 | 1455 | ||
| @@ -1455,10 +1468,6 @@ static void _idle_sysc(struct omap_hwmod *oh) | |||
| 1455 | _set_master_standbymode(oh, idlemode, &v); | 1468 | _set_master_standbymode(oh, idlemode, &v); |
| 1456 | } | 1469 | } |
| 1457 | 1470 | ||
| 1458 | /* If slave is in SMARTIDLE, also enable wakeup */ | ||
| 1459 | if ((sf & SYSC_HAS_SIDLEMODE) && !(oh->flags & HWMOD_SWSUP_SIDLE)) | ||
| 1460 | _enable_wakeup(oh, &v); | ||
| 1461 | |||
| 1462 | _write_sysconfig(v, oh); | 1471 | _write_sysconfig(v, oh); |
| 1463 | } | 1472 | } |
| 1464 | 1473 | ||
| @@ -2065,7 +2074,7 @@ static int _omap4_get_context_lost(struct omap_hwmod *oh) | |||
| 2065 | * do so is present in the hwmod data, then call it and pass along the | 2074 | * do so is present in the hwmod data, then call it and pass along the |
| 2066 | * return value; otherwise, return 0. | 2075 | * return value; otherwise, return 0. |
| 2067 | */ | 2076 | */ |
| 2068 | static int __init _enable_preprogram(struct omap_hwmod *oh) | 2077 | static int _enable_preprogram(struct omap_hwmod *oh) |
| 2069 | { | 2078 | { |
| 2070 | if (!oh->class->enable_preprogram) | 2079 | if (!oh->class->enable_preprogram) |
| 2071 | return 0; | 2080 | return 0; |
| @@ -2246,42 +2255,6 @@ static int _idle(struct omap_hwmod *oh) | |||
| 2246 | } | 2255 | } |
| 2247 | 2256 | ||
| 2248 | /** | 2257 | /** |
| 2249 | * omap_hwmod_set_ocp_autoidle - set the hwmod's OCP autoidle bit | ||
| 2250 | * @oh: struct omap_hwmod * | ||
| 2251 | * @autoidle: desired AUTOIDLE bitfield value (0 or 1) | ||
| 2252 | * | ||
| 2253 | * Sets the IP block's OCP autoidle bit in hardware, and updates our | ||
| 2254 | * local copy. Intended to be used by drivers that require | ||
| 2255 | * direct manipulation of the AUTOIDLE bits. | ||
| 2256 | * Returns -EINVAL if @oh is null or is not in the ENABLED state, or passes | ||
| 2257 | * along the return value from _set_module_autoidle(). | ||
| 2258 | * | ||
| 2259 | * Any users of this function should be scrutinized carefully. | ||
| 2260 | */ | ||
| 2261 | int omap_hwmod_set_ocp_autoidle(struct omap_hwmod *oh, u8 autoidle) | ||
| 2262 | { | ||
| 2263 | u32 v; | ||
| 2264 | int retval = 0; | ||
| 2265 | unsigned long flags; | ||
| 2266 | |||
| 2267 | if (!oh || oh->_state != _HWMOD_STATE_ENABLED) | ||
| 2268 | return -EINVAL; | ||
| 2269 | |||
| 2270 | spin_lock_irqsave(&oh->_lock, flags); | ||
| 2271 | |||
| 2272 | v = oh->_sysc_cache; | ||
| 2273 | |||
| 2274 | retval = _set_module_autoidle(oh, autoidle, &v); | ||
| 2275 | |||
| 2276 | if (!retval) | ||
| 2277 | _write_sysconfig(v, oh); | ||
| 2278 | |||
| 2279 | spin_unlock_irqrestore(&oh->_lock, flags); | ||
| 2280 | |||
| 2281 | return retval; | ||
| 2282 | } | ||
| 2283 | |||
| 2284 | /** | ||
| 2285 | * _shutdown - shutdown an omap_hwmod | 2258 | * _shutdown - shutdown an omap_hwmod |
| 2286 | * @oh: struct omap_hwmod * | 2259 | * @oh: struct omap_hwmod * |
| 2287 | * | 2260 | * |
| @@ -3180,38 +3153,6 @@ error: | |||
| 3180 | } | 3153 | } |
| 3181 | 3154 | ||
| 3182 | /** | 3155 | /** |
| 3183 | * omap_hwmod_set_slave_idlemode - set the hwmod's OCP slave idlemode | ||
| 3184 | * @oh: struct omap_hwmod * | ||
| 3185 | * @idlemode: SIDLEMODE field bits (shifted to bit 0) | ||
| 3186 | * | ||
| 3187 | * Sets the IP block's OCP slave idlemode in hardware, and updates our | ||
| 3188 | * local copy. Intended to be used by drivers that have some erratum | ||
| 3189 | * that requires direct manipulation of the SIDLEMODE bits. Returns | ||
| 3190 | * -EINVAL if @oh is null, or passes along the return value from | ||
| 3191 | * _set_slave_idlemode(). | ||
| 3192 | * | ||
| 3193 | * XXX Does this function have any current users? If not, we should | ||
| 3194 | * remove it; it is better to let the rest of the hwmod code handle this. | ||
| 3195 | * Any users of this function should be scrutinized carefully. | ||
| 3196 | */ | ||
| 3197 | int omap_hwmod_set_slave_idlemode(struct omap_hwmod *oh, u8 idlemode) | ||
| 3198 | { | ||
| 3199 | u32 v; | ||
| 3200 | int retval = 0; | ||
| 3201 | |||
| 3202 | if (!oh) | ||
| 3203 | return -EINVAL; | ||
| 3204 | |||
| 3205 | v = oh->_sysc_cache; | ||
| 3206 | |||
| 3207 | retval = _set_slave_idlemode(oh, idlemode, &v); | ||
| 3208 | if (!retval) | ||
| 3209 | _write_sysconfig(v, oh); | ||
| 3210 | |||
| 3211 | return retval; | ||
| 3212 | } | ||
| 3213 | |||
| 3214 | /** | ||
| 3215 | * omap_hwmod_lookup - look up a registered omap_hwmod by name | 3156 | * omap_hwmod_lookup - look up a registered omap_hwmod by name |
| 3216 | * @name: name of the omap_hwmod to look up | 3157 | * @name: name of the omap_hwmod to look up |
| 3217 | * | 3158 | * |
diff --git a/arch/arm/mach-omap2/omap_hwmod.h b/arch/arm/mach-omap2/omap_hwmod.h index fe5962921f07..0c898f58ac9b 100644 --- a/arch/arm/mach-omap2/omap_hwmod.h +++ b/arch/arm/mach-omap2/omap_hwmod.h | |||
| @@ -463,6 +463,9 @@ struct omap_hwmod_omap4_prcm { | |||
| 463 | * is kept in force-standby mode. Failing to do so causes PM problems | 463 | * is kept in force-standby mode. Failing to do so causes PM problems |
| 464 | * with musb on OMAP3630 at least. Note that musb has a dedicated register | 464 | * with musb on OMAP3630 at least. Note that musb has a dedicated register |
| 465 | * to control MSTANDBY signal when MIDLEMODE is set to force-standby. | 465 | * to control MSTANDBY signal when MIDLEMODE is set to force-standby. |
| 466 | * HWMOD_SWSUP_SIDLE_ACT: omap_hwmod code should manually bring the module | ||
| 467 | * out of idle, but rely on smart-idle to the put it back in idle, | ||
| 468 | * so the wakeups are still functional (Only known case for now is UART) | ||
| 466 | */ | 469 | */ |
| 467 | #define HWMOD_SWSUP_SIDLE (1 << 0) | 470 | #define HWMOD_SWSUP_SIDLE (1 << 0) |
| 468 | #define HWMOD_SWSUP_MSTANDBY (1 << 1) | 471 | #define HWMOD_SWSUP_MSTANDBY (1 << 1) |
| @@ -476,6 +479,7 @@ struct omap_hwmod_omap4_prcm { | |||
| 476 | #define HWMOD_EXT_OPT_MAIN_CLK (1 << 9) | 479 | #define HWMOD_EXT_OPT_MAIN_CLK (1 << 9) |
| 477 | #define HWMOD_BLOCK_WFI (1 << 10) | 480 | #define HWMOD_BLOCK_WFI (1 << 10) |
| 478 | #define HWMOD_FORCE_MSTANDBY (1 << 11) | 481 | #define HWMOD_FORCE_MSTANDBY (1 << 11) |
| 482 | #define HWMOD_SWSUP_SIDLE_ACT (1 << 12) | ||
| 479 | 483 | ||
| 480 | /* | 484 | /* |
| 481 | * omap_hwmod._int_flags definitions | 485 | * omap_hwmod._int_flags definitions |
| @@ -641,9 +645,6 @@ int omap_hwmod_read_hardreset(struct omap_hwmod *oh, const char *name); | |||
| 641 | int omap_hwmod_enable_clocks(struct omap_hwmod *oh); | 645 | int omap_hwmod_enable_clocks(struct omap_hwmod *oh); |
| 642 | int omap_hwmod_disable_clocks(struct omap_hwmod *oh); | 646 | int omap_hwmod_disable_clocks(struct omap_hwmod *oh); |
| 643 | 647 | ||
| 644 | int omap_hwmod_set_slave_idlemode(struct omap_hwmod *oh, u8 idlemode); | ||
| 645 | int omap_hwmod_set_ocp_autoidle(struct omap_hwmod *oh, u8 autoidle); | ||
| 646 | |||
| 647 | int omap_hwmod_reset(struct omap_hwmod *oh); | 648 | int omap_hwmod_reset(struct omap_hwmod *oh); |
| 648 | void omap_hwmod_ocp_barrier(struct omap_hwmod *oh); | 649 | void omap_hwmod_ocp_barrier(struct omap_hwmod *oh); |
| 649 | 650 | ||
diff --git a/arch/arm/mach-omap2/omap_hwmod_2xxx_ipblock_data.c b/arch/arm/mach-omap2/omap_hwmod_2xxx_ipblock_data.c index c8c64b3e1acc..d05fc7b54567 100644 --- a/arch/arm/mach-omap2/omap_hwmod_2xxx_ipblock_data.c +++ b/arch/arm/mach-omap2/omap_hwmod_2xxx_ipblock_data.c | |||
| @@ -512,6 +512,7 @@ struct omap_hwmod omap2xxx_uart1_hwmod = { | |||
| 512 | .mpu_irqs = omap2_uart1_mpu_irqs, | 512 | .mpu_irqs = omap2_uart1_mpu_irqs, |
| 513 | .sdma_reqs = omap2_uart1_sdma_reqs, | 513 | .sdma_reqs = omap2_uart1_sdma_reqs, |
| 514 | .main_clk = "uart1_fck", | 514 | .main_clk = "uart1_fck", |
| 515 | .flags = HWMOD_SWSUP_SIDLE_ACT, | ||
| 515 | .prcm = { | 516 | .prcm = { |
| 516 | .omap2 = { | 517 | .omap2 = { |
| 517 | .module_offs = CORE_MOD, | 518 | .module_offs = CORE_MOD, |
| @@ -531,6 +532,7 @@ struct omap_hwmod omap2xxx_uart2_hwmod = { | |||
| 531 | .mpu_irqs = omap2_uart2_mpu_irqs, | 532 | .mpu_irqs = omap2_uart2_mpu_irqs, |
| 532 | .sdma_reqs = omap2_uart2_sdma_reqs, | 533 | .sdma_reqs = omap2_uart2_sdma_reqs, |
| 533 | .main_clk = "uart2_fck", | 534 | .main_clk = "uart2_fck", |
| 535 | .flags = HWMOD_SWSUP_SIDLE_ACT, | ||
| 534 | .prcm = { | 536 | .prcm = { |
| 535 | .omap2 = { | 537 | .omap2 = { |
| 536 | .module_offs = CORE_MOD, | 538 | .module_offs = CORE_MOD, |
| @@ -550,6 +552,7 @@ struct omap_hwmod omap2xxx_uart3_hwmod = { | |||
| 550 | .mpu_irqs = omap2_uart3_mpu_irqs, | 552 | .mpu_irqs = omap2_uart3_mpu_irqs, |
| 551 | .sdma_reqs = omap2_uart3_sdma_reqs, | 553 | .sdma_reqs = omap2_uart3_sdma_reqs, |
| 552 | .main_clk = "uart3_fck", | 554 | .main_clk = "uart3_fck", |
| 555 | .flags = HWMOD_SWSUP_SIDLE_ACT, | ||
| 553 | .prcm = { | 556 | .prcm = { |
| 554 | .omap2 = { | 557 | .omap2 = { |
| 555 | .module_offs = CORE_MOD, | 558 | .module_offs = CORE_MOD, |
diff --git a/arch/arm/mach-omap2/omap_hwmod_33xx_data.c b/arch/arm/mach-omap2/omap_hwmod_33xx_data.c index 01d8f324450a..075f7cc51026 100644 --- a/arch/arm/mach-omap2/omap_hwmod_33xx_data.c +++ b/arch/arm/mach-omap2/omap_hwmod_33xx_data.c | |||
| @@ -1995,6 +1995,7 @@ static struct omap_hwmod am33xx_uart1_hwmod = { | |||
| 1995 | .name = "uart1", | 1995 | .name = "uart1", |
| 1996 | .class = &uart_class, | 1996 | .class = &uart_class, |
| 1997 | .clkdm_name = "l4_wkup_clkdm", | 1997 | .clkdm_name = "l4_wkup_clkdm", |
| 1998 | .flags = HWMOD_SWSUP_SIDLE_ACT, | ||
| 1998 | .mpu_irqs = am33xx_uart1_irqs, | 1999 | .mpu_irqs = am33xx_uart1_irqs, |
| 1999 | .sdma_reqs = uart1_edma_reqs, | 2000 | .sdma_reqs = uart1_edma_reqs, |
| 2000 | .main_clk = "dpll_per_m2_div4_wkupdm_ck", | 2001 | .main_clk = "dpll_per_m2_div4_wkupdm_ck", |
| @@ -2015,6 +2016,7 @@ static struct omap_hwmod am33xx_uart2_hwmod = { | |||
| 2015 | .name = "uart2", | 2016 | .name = "uart2", |
| 2016 | .class = &uart_class, | 2017 | .class = &uart_class, |
| 2017 | .clkdm_name = "l4ls_clkdm", | 2018 | .clkdm_name = "l4ls_clkdm", |
| 2019 | .flags = HWMOD_SWSUP_SIDLE_ACT, | ||
| 2018 | .mpu_irqs = am33xx_uart2_irqs, | 2020 | .mpu_irqs = am33xx_uart2_irqs, |
| 2019 | .sdma_reqs = uart1_edma_reqs, | 2021 | .sdma_reqs = uart1_edma_reqs, |
| 2020 | .main_clk = "dpll_per_m2_div4_ck", | 2022 | .main_clk = "dpll_per_m2_div4_ck", |
| @@ -2042,6 +2044,7 @@ static struct omap_hwmod am33xx_uart3_hwmod = { | |||
| 2042 | .name = "uart3", | 2044 | .name = "uart3", |
| 2043 | .class = &uart_class, | 2045 | .class = &uart_class, |
| 2044 | .clkdm_name = "l4ls_clkdm", | 2046 | .clkdm_name = "l4ls_clkdm", |
| 2047 | .flags = HWMOD_SWSUP_SIDLE_ACT, | ||
| 2045 | .mpu_irqs = am33xx_uart3_irqs, | 2048 | .mpu_irqs = am33xx_uart3_irqs, |
| 2046 | .sdma_reqs = uart3_edma_reqs, | 2049 | .sdma_reqs = uart3_edma_reqs, |
| 2047 | .main_clk = "dpll_per_m2_div4_ck", | 2050 | .main_clk = "dpll_per_m2_div4_ck", |
| @@ -2062,6 +2065,7 @@ static struct omap_hwmod am33xx_uart4_hwmod = { | |||
| 2062 | .name = "uart4", | 2065 | .name = "uart4", |
| 2063 | .class = &uart_class, | 2066 | .class = &uart_class, |
| 2064 | .clkdm_name = "l4ls_clkdm", | 2067 | .clkdm_name = "l4ls_clkdm", |
| 2068 | .flags = HWMOD_SWSUP_SIDLE_ACT, | ||
| 2065 | .mpu_irqs = am33xx_uart4_irqs, | 2069 | .mpu_irqs = am33xx_uart4_irqs, |
| 2066 | .sdma_reqs = uart1_edma_reqs, | 2070 | .sdma_reqs = uart1_edma_reqs, |
| 2067 | .main_clk = "dpll_per_m2_div4_ck", | 2071 | .main_clk = "dpll_per_m2_div4_ck", |
| @@ -2082,6 +2086,7 @@ static struct omap_hwmod am33xx_uart5_hwmod = { | |||
| 2082 | .name = "uart5", | 2086 | .name = "uart5", |
| 2083 | .class = &uart_class, | 2087 | .class = &uart_class, |
| 2084 | .clkdm_name = "l4ls_clkdm", | 2088 | .clkdm_name = "l4ls_clkdm", |
| 2089 | .flags = HWMOD_SWSUP_SIDLE_ACT, | ||
| 2085 | .mpu_irqs = am33xx_uart5_irqs, | 2090 | .mpu_irqs = am33xx_uart5_irqs, |
| 2086 | .sdma_reqs = uart1_edma_reqs, | 2091 | .sdma_reqs = uart1_edma_reqs, |
| 2087 | .main_clk = "dpll_per_m2_div4_ck", | 2092 | .main_clk = "dpll_per_m2_div4_ck", |
| @@ -2102,6 +2107,7 @@ static struct omap_hwmod am33xx_uart6_hwmod = { | |||
| 2102 | .name = "uart6", | 2107 | .name = "uart6", |
| 2103 | .class = &uart_class, | 2108 | .class = &uart_class, |
| 2104 | .clkdm_name = "l4ls_clkdm", | 2109 | .clkdm_name = "l4ls_clkdm", |
| 2110 | .flags = HWMOD_SWSUP_SIDLE_ACT, | ||
| 2105 | .mpu_irqs = am33xx_uart6_irqs, | 2111 | .mpu_irqs = am33xx_uart6_irqs, |
| 2106 | .sdma_reqs = uart1_edma_reqs, | 2112 | .sdma_reqs = uart1_edma_reqs, |
| 2107 | .main_clk = "dpll_per_m2_div4_ck", | 2113 | .main_clk = "dpll_per_m2_div4_ck", |
diff --git a/arch/arm/mach-omap2/omap_hwmod_3xxx_data.c b/arch/arm/mach-omap2/omap_hwmod_3xxx_data.c index 4083606ea1da..31c7126eb3bb 100644 --- a/arch/arm/mach-omap2/omap_hwmod_3xxx_data.c +++ b/arch/arm/mach-omap2/omap_hwmod_3xxx_data.c | |||
| @@ -490,6 +490,7 @@ static struct omap_hwmod omap3xxx_uart1_hwmod = { | |||
| 490 | .mpu_irqs = omap2_uart1_mpu_irqs, | 490 | .mpu_irqs = omap2_uart1_mpu_irqs, |
| 491 | .sdma_reqs = omap2_uart1_sdma_reqs, | 491 | .sdma_reqs = omap2_uart1_sdma_reqs, |
| 492 | .main_clk = "uart1_fck", | 492 | .main_clk = "uart1_fck", |
| 493 | .flags = HWMOD_SWSUP_SIDLE_ACT, | ||
| 493 | .prcm = { | 494 | .prcm = { |
| 494 | .omap2 = { | 495 | .omap2 = { |
| 495 | .module_offs = CORE_MOD, | 496 | .module_offs = CORE_MOD, |
| @@ -508,6 +509,7 @@ static struct omap_hwmod omap3xxx_uart2_hwmod = { | |||
| 508 | .mpu_irqs = omap2_uart2_mpu_irqs, | 509 | .mpu_irqs = omap2_uart2_mpu_irqs, |
| 509 | .sdma_reqs = omap2_uart2_sdma_reqs, | 510 | .sdma_reqs = omap2_uart2_sdma_reqs, |
| 510 | .main_clk = "uart2_fck", | 511 | .main_clk = "uart2_fck", |
| 512 | .flags = HWMOD_SWSUP_SIDLE_ACT, | ||
| 511 | .prcm = { | 513 | .prcm = { |
| 512 | .omap2 = { | 514 | .omap2 = { |
| 513 | .module_offs = CORE_MOD, | 515 | .module_offs = CORE_MOD, |
| @@ -526,6 +528,7 @@ static struct omap_hwmod omap3xxx_uart3_hwmod = { | |||
| 526 | .mpu_irqs = omap2_uart3_mpu_irqs, | 528 | .mpu_irqs = omap2_uart3_mpu_irqs, |
| 527 | .sdma_reqs = omap2_uart3_sdma_reqs, | 529 | .sdma_reqs = omap2_uart3_sdma_reqs, |
| 528 | .main_clk = "uart3_fck", | 530 | .main_clk = "uart3_fck", |
| 531 | .flags = HWMOD_SWSUP_SIDLE_ACT, | ||
| 529 | .prcm = { | 532 | .prcm = { |
| 530 | .omap2 = { | 533 | .omap2 = { |
| 531 | .module_offs = OMAP3430_PER_MOD, | 534 | .module_offs = OMAP3430_PER_MOD, |
| @@ -555,6 +558,7 @@ static struct omap_hwmod omap36xx_uart4_hwmod = { | |||
| 555 | .mpu_irqs = uart4_mpu_irqs, | 558 | .mpu_irqs = uart4_mpu_irqs, |
| 556 | .sdma_reqs = uart4_sdma_reqs, | 559 | .sdma_reqs = uart4_sdma_reqs, |
| 557 | .main_clk = "uart4_fck", | 560 | .main_clk = "uart4_fck", |
| 561 | .flags = HWMOD_SWSUP_SIDLE_ACT, | ||
| 558 | .prcm = { | 562 | .prcm = { |
| 559 | .omap2 = { | 563 | .omap2 = { |
| 560 | .module_offs = OMAP3430_PER_MOD, | 564 | .module_offs = OMAP3430_PER_MOD, |
diff --git a/arch/arm/mach-omap2/omap_hwmod_44xx_data.c b/arch/arm/mach-omap2/omap_hwmod_44xx_data.c index eaba9dc91a0d..848b6dc67590 100644 --- a/arch/arm/mach-omap2/omap_hwmod_44xx_data.c +++ b/arch/arm/mach-omap2/omap_hwmod_44xx_data.c | |||
| @@ -3434,6 +3434,7 @@ static struct omap_hwmod omap44xx_uart1_hwmod = { | |||
| 3434 | .name = "uart1", | 3434 | .name = "uart1", |
| 3435 | .class = &omap44xx_uart_hwmod_class, | 3435 | .class = &omap44xx_uart_hwmod_class, |
| 3436 | .clkdm_name = "l4_per_clkdm", | 3436 | .clkdm_name = "l4_per_clkdm", |
| 3437 | .flags = HWMOD_SWSUP_SIDLE_ACT, | ||
| 3437 | .mpu_irqs = omap44xx_uart1_irqs, | 3438 | .mpu_irqs = omap44xx_uart1_irqs, |
| 3438 | .sdma_reqs = omap44xx_uart1_sdma_reqs, | 3439 | .sdma_reqs = omap44xx_uart1_sdma_reqs, |
| 3439 | .main_clk = "func_48m_fclk", | 3440 | .main_clk = "func_48m_fclk", |
| @@ -3462,6 +3463,7 @@ static struct omap_hwmod omap44xx_uart2_hwmod = { | |||
| 3462 | .name = "uart2", | 3463 | .name = "uart2", |
| 3463 | .class = &omap44xx_uart_hwmod_class, | 3464 | .class = &omap44xx_uart_hwmod_class, |
| 3464 | .clkdm_name = "l4_per_clkdm", | 3465 | .clkdm_name = "l4_per_clkdm", |
| 3466 | .flags = HWMOD_SWSUP_SIDLE_ACT, | ||
| 3465 | .mpu_irqs = omap44xx_uart2_irqs, | 3467 | .mpu_irqs = omap44xx_uart2_irqs, |
| 3466 | .sdma_reqs = omap44xx_uart2_sdma_reqs, | 3468 | .sdma_reqs = omap44xx_uart2_sdma_reqs, |
| 3467 | .main_clk = "func_48m_fclk", | 3469 | .main_clk = "func_48m_fclk", |
| @@ -3490,7 +3492,8 @@ static struct omap_hwmod omap44xx_uart3_hwmod = { | |||
| 3490 | .name = "uart3", | 3492 | .name = "uart3", |
| 3491 | .class = &omap44xx_uart_hwmod_class, | 3493 | .class = &omap44xx_uart_hwmod_class, |
| 3492 | .clkdm_name = "l4_per_clkdm", | 3494 | .clkdm_name = "l4_per_clkdm", |
| 3493 | .flags = HWMOD_INIT_NO_IDLE | HWMOD_INIT_NO_RESET, | 3495 | .flags = HWMOD_INIT_NO_IDLE | HWMOD_INIT_NO_RESET | |
| 3496 | HWMOD_SWSUP_SIDLE_ACT, | ||
| 3494 | .mpu_irqs = omap44xx_uart3_irqs, | 3497 | .mpu_irqs = omap44xx_uart3_irqs, |
| 3495 | .sdma_reqs = omap44xx_uart3_sdma_reqs, | 3498 | .sdma_reqs = omap44xx_uart3_sdma_reqs, |
| 3496 | .main_clk = "func_48m_fclk", | 3499 | .main_clk = "func_48m_fclk", |
| @@ -3519,6 +3522,7 @@ static struct omap_hwmod omap44xx_uart4_hwmod = { | |||
| 3519 | .name = "uart4", | 3522 | .name = "uart4", |
| 3520 | .class = &omap44xx_uart_hwmod_class, | 3523 | .class = &omap44xx_uart_hwmod_class, |
| 3521 | .clkdm_name = "l4_per_clkdm", | 3524 | .clkdm_name = "l4_per_clkdm", |
| 3525 | .flags = HWMOD_SWSUP_SIDLE_ACT, | ||
| 3522 | .mpu_irqs = omap44xx_uart4_irqs, | 3526 | .mpu_irqs = omap44xx_uart4_irqs, |
| 3523 | .sdma_reqs = omap44xx_uart4_sdma_reqs, | 3527 | .sdma_reqs = omap44xx_uart4_sdma_reqs, |
| 3524 | .main_clk = "func_48m_fclk", | 3528 | .main_clk = "func_48m_fclk", |
diff --git a/arch/arm/mach-omap2/serial.c b/arch/arm/mach-omap2/serial.c index 8396b5b7e912..f6601563aa69 100644 --- a/arch/arm/mach-omap2/serial.c +++ b/arch/arm/mach-omap2/serial.c | |||
| @@ -95,38 +95,9 @@ static void omap_uart_enable_wakeup(struct device *dev, bool enable) | |||
| 95 | omap_hwmod_disable_wakeup(od->hwmods[0]); | 95 | omap_hwmod_disable_wakeup(od->hwmods[0]); |
| 96 | } | 96 | } |
| 97 | 97 | ||
| 98 | /* | ||
| 99 | * Errata i291: [UART]:Cannot Acknowledge Idle Requests | ||
| 100 | * in Smartidle Mode When Configured for DMA Operations. | ||
| 101 | * WA: configure uart in force idle mode. | ||
| 102 | */ | ||
| 103 | static void omap_uart_set_noidle(struct device *dev) | ||
| 104 | { | ||
| 105 | struct platform_device *pdev = to_platform_device(dev); | ||
| 106 | struct omap_device *od = to_omap_device(pdev); | ||
| 107 | |||
| 108 | omap_hwmod_set_slave_idlemode(od->hwmods[0], HWMOD_IDLEMODE_NO); | ||
| 109 | } | ||
| 110 | |||
| 111 | static void omap_uart_set_smartidle(struct device *dev) | ||
| 112 | { | ||
| 113 | struct platform_device *pdev = to_platform_device(dev); | ||
| 114 | struct omap_device *od = to_omap_device(pdev); | ||
| 115 | u8 idlemode; | ||
| 116 | |||
| 117 | if (od->hwmods[0]->class->sysc->idlemodes & SIDLE_SMART_WKUP) | ||
| 118 | idlemode = HWMOD_IDLEMODE_SMART_WKUP; | ||
| 119 | else | ||
| 120 | idlemode = HWMOD_IDLEMODE_SMART; | ||
| 121 | |||
| 122 | omap_hwmod_set_slave_idlemode(od->hwmods[0], idlemode); | ||
| 123 | } | ||
| 124 | |||
| 125 | #else | 98 | #else |
| 126 | static void omap_uart_enable_wakeup(struct device *dev, bool enable) | 99 | static void omap_uart_enable_wakeup(struct device *dev, bool enable) |
| 127 | {} | 100 | {} |
| 128 | static void omap_uart_set_noidle(struct device *dev) {} | ||
| 129 | static void omap_uart_set_smartidle(struct device *dev) {} | ||
| 130 | #endif /* CONFIG_PM */ | 101 | #endif /* CONFIG_PM */ |
| 131 | 102 | ||
| 132 | #ifdef CONFIG_OMAP_MUX | 103 | #ifdef CONFIG_OMAP_MUX |
| @@ -299,8 +270,6 @@ void __init omap_serial_init_port(struct omap_board_data *bdata, | |||
| 299 | omap_up.uartclk = OMAP24XX_BASE_BAUD * 16; | 270 | omap_up.uartclk = OMAP24XX_BASE_BAUD * 16; |
| 300 | omap_up.flags = UPF_BOOT_AUTOCONF; | 271 | omap_up.flags = UPF_BOOT_AUTOCONF; |
| 301 | omap_up.get_context_loss_count = omap_pm_get_dev_context_loss_count; | 272 | omap_up.get_context_loss_count = omap_pm_get_dev_context_loss_count; |
| 302 | omap_up.set_forceidle = omap_uart_set_smartidle; | ||
| 303 | omap_up.set_noidle = omap_uart_set_noidle; | ||
| 304 | omap_up.enable_wakeup = omap_uart_enable_wakeup; | 273 | omap_up.enable_wakeup = omap_uart_enable_wakeup; |
| 305 | omap_up.dma_rx_buf_size = info->dma_rx_buf_size; | 274 | omap_up.dma_rx_buf_size = info->dma_rx_buf_size; |
| 306 | omap_up.dma_rx_timeout = info->dma_rx_timeout; | 275 | omap_up.dma_rx_timeout = info->dma_rx_timeout; |
diff --git a/arch/arm/mach-orion5x/common.c b/arch/arm/mach-orion5x/common.c index b97fd672e89d..f8a6db9239bf 100644 --- a/arch/arm/mach-orion5x/common.c +++ b/arch/arm/mach-orion5x/common.c | |||
| @@ -199,13 +199,6 @@ void __init orion5x_init_early(void) | |||
| 199 | 199 | ||
| 200 | orion_time_set_base(TIMER_VIRT_BASE); | 200 | orion_time_set_base(TIMER_VIRT_BASE); |
| 201 | 201 | ||
| 202 | /* | ||
| 203 | * Some Orion5x devices allocate their coherent buffers from atomic | ||
| 204 | * context. Increase size of atomic coherent pool to make sure such | ||
| 205 | * the allocations won't fail. | ||
| 206 | */ | ||
| 207 | init_dma_coherent_pool_size(SZ_1M); | ||
| 208 | |||
| 209 | /* Initialize the MBUS driver */ | 202 | /* Initialize the MBUS driver */ |
| 210 | orion5x_pcie_id(&dev, &rev); | 203 | orion5x_pcie_id(&dev, &rev); |
| 211 | if (dev == MV88F5281_DEV_ID) | 204 | if (dev == MV88F5281_DEV_ID) |
diff --git a/arch/arm/mach-shmobile/board-marzen.c b/arch/arm/mach-shmobile/board-marzen.c index 91052855cc12..b9594e911ce7 100644 --- a/arch/arm/mach-shmobile/board-marzen.c +++ b/arch/arm/mach-shmobile/board-marzen.c | |||
| @@ -212,8 +212,8 @@ static struct platform_device *marzen_devices[] __initdata = { | |||
| 212 | static struct usb_phy *phy; | 212 | static struct usb_phy *phy; |
| 213 | static int usb_power_on(struct platform_device *pdev) | 213 | static int usb_power_on(struct platform_device *pdev) |
| 214 | { | 214 | { |
| 215 | if (!phy) | 215 | if (IS_ERR(phy)) |
| 216 | return -EIO; | 216 | return PTR_ERR(phy); |
| 217 | 217 | ||
| 218 | pm_runtime_enable(&pdev->dev); | 218 | pm_runtime_enable(&pdev->dev); |
| 219 | pm_runtime_get_sync(&pdev->dev); | 219 | pm_runtime_get_sync(&pdev->dev); |
| @@ -225,7 +225,7 @@ static int usb_power_on(struct platform_device *pdev) | |||
| 225 | 225 | ||
| 226 | static void usb_power_off(struct platform_device *pdev) | 226 | static void usb_power_off(struct platform_device *pdev) |
| 227 | { | 227 | { |
| 228 | if (!phy) | 228 | if (IS_ERR(phy)) |
| 229 | return; | 229 | return; |
| 230 | 230 | ||
| 231 | usb_phy_shutdown(phy); | 231 | usb_phy_shutdown(phy); |
diff --git a/arch/arm/mach-sunxi/Kconfig b/arch/arm/mach-sunxi/Kconfig index d259c782d742..5b045e302b43 100644 --- a/arch/arm/mach-sunxi/Kconfig +++ b/arch/arm/mach-sunxi/Kconfig | |||
| @@ -1,5 +1,6 @@ | |||
| 1 | config ARCH_SUNXI | 1 | config ARCH_SUNXI |
| 2 | bool "Allwinner A1X SOCs" if ARCH_MULTI_V7 | 2 | bool "Allwinner A1X SOCs" if ARCH_MULTI_V7 |
| 3 | select ARCH_REQUIRE_GPIOLIB | ||
| 3 | select CLKSRC_MMIO | 4 | select CLKSRC_MMIO |
| 4 | select CLKSRC_OF | 5 | select CLKSRC_OF |
| 5 | select COMMON_CLK | 6 | select COMMON_CLK |
diff --git a/arch/arm/mach-ux500/Kconfig b/arch/arm/mach-ux500/Kconfig index 6a4387e39df8..b19b07204aaf 100644 --- a/arch/arm/mach-ux500/Kconfig +++ b/arch/arm/mach-ux500/Kconfig | |||
| @@ -51,6 +51,7 @@ config MACH_MOP500 | |||
| 51 | bool "U8500 Development platform, MOP500 versions" | 51 | bool "U8500 Development platform, MOP500 versions" |
| 52 | select I2C | 52 | select I2C |
| 53 | select I2C_NOMADIK | 53 | select I2C_NOMADIK |
| 54 | select REGULATOR | ||
| 54 | select REGULATOR_FIXED_VOLTAGE | 55 | select REGULATOR_FIXED_VOLTAGE |
| 55 | select SOC_BUS | 56 | select SOC_BUS |
| 56 | select UX500_SOC_DB8500 | 57 | select UX500_SOC_DB8500 |
diff --git a/arch/arm/mach-ux500/board-mop500.c b/arch/arm/mach-ux500/board-mop500.c index 3cd555ac6d0a..78389de94dde 100644 --- a/arch/arm/mach-ux500/board-mop500.c +++ b/arch/arm/mach-ux500/board-mop500.c | |||
| @@ -623,7 +623,7 @@ static void __init mop500_init_machine(void) | |||
| 623 | sdi0_reg_info.gpios[0].gpio = GPIO_SDMMC_1V8_3V_SEL; | 623 | sdi0_reg_info.gpios[0].gpio = GPIO_SDMMC_1V8_3V_SEL; |
| 624 | 624 | ||
| 625 | mop500_pinmaps_init(); | 625 | mop500_pinmaps_init(); |
| 626 | parent = u8500_init_devices(&ab8500_platdata); | 626 | parent = u8500_init_devices(); |
| 627 | 627 | ||
| 628 | for (i = 0; i < ARRAY_SIZE(mop500_platform_devs); i++) | 628 | for (i = 0; i < ARRAY_SIZE(mop500_platform_devs); i++) |
| 629 | mop500_platform_devs[i]->dev.parent = parent; | 629 | mop500_platform_devs[i]->dev.parent = parent; |
| @@ -660,7 +660,7 @@ static void __init snowball_init_machine(void) | |||
| 660 | sdi0_reg_info.gpios[0].gpio = SNOWBALL_SDMMC_1V8_3V_GPIO; | 660 | sdi0_reg_info.gpios[0].gpio = SNOWBALL_SDMMC_1V8_3V_GPIO; |
| 661 | 661 | ||
| 662 | snowball_pinmaps_init(); | 662 | snowball_pinmaps_init(); |
| 663 | parent = u8500_init_devices(&ab8500_platdata); | 663 | parent = u8500_init_devices(); |
| 664 | 664 | ||
| 665 | for (i = 0; i < ARRAY_SIZE(snowball_platform_devs); i++) | 665 | for (i = 0; i < ARRAY_SIZE(snowball_platform_devs); i++) |
| 666 | snowball_platform_devs[i]->dev.parent = parent; | 666 | snowball_platform_devs[i]->dev.parent = parent; |
| @@ -698,7 +698,7 @@ static void __init hrefv60_init_machine(void) | |||
| 698 | sdi0_reg_info.gpios[0].gpio = HREFV60_SDMMC_1V8_3V_GPIO; | 698 | sdi0_reg_info.gpios[0].gpio = HREFV60_SDMMC_1V8_3V_GPIO; |
| 699 | 699 | ||
| 700 | hrefv60_pinmaps_init(); | 700 | hrefv60_pinmaps_init(); |
| 701 | parent = u8500_init_devices(&ab8500_platdata); | 701 | parent = u8500_init_devices(); |
| 702 | 702 | ||
| 703 | for (i = 0; i < ARRAY_SIZE(mop500_platform_devs); i++) | 703 | for (i = 0; i < ARRAY_SIZE(mop500_platform_devs); i++) |
| 704 | mop500_platform_devs[i]->dev.parent = parent; | 704 | mop500_platform_devs[i]->dev.parent = parent; |
diff --git a/arch/arm/mach-ux500/cpu-db8500.c b/arch/arm/mach-ux500/cpu-db8500.c index e90b5ab23b6d..46cca52890bc 100644 --- a/arch/arm/mach-ux500/cpu-db8500.c +++ b/arch/arm/mach-ux500/cpu-db8500.c | |||
| @@ -206,7 +206,7 @@ static struct device * __init db8500_soc_device_init(void) | |||
| 206 | /* | 206 | /* |
| 207 | * This function is called from the board init | 207 | * This function is called from the board init |
| 208 | */ | 208 | */ |
| 209 | struct device * __init u8500_init_devices(struct ab8500_platform_data *ab8500) | 209 | struct device * __init u8500_init_devices(void) |
| 210 | { | 210 | { |
| 211 | struct device *parent; | 211 | struct device *parent; |
| 212 | int i; | 212 | int i; |
| @@ -220,8 +220,6 @@ struct device * __init u8500_init_devices(struct ab8500_platform_data *ab8500) | |||
| 220 | for (i = 0; i < ARRAY_SIZE(platform_devs); i++) | 220 | for (i = 0; i < ARRAY_SIZE(platform_devs); i++) |
| 221 | platform_devs[i]->dev.parent = parent; | 221 | platform_devs[i]->dev.parent = parent; |
| 222 | 222 | ||
| 223 | db8500_prcmu_device.dev.platform_data = ab8500; | ||
| 224 | |||
| 225 | platform_add_devices(platform_devs, ARRAY_SIZE(platform_devs)); | 223 | platform_add_devices(platform_devs, ARRAY_SIZE(platform_devs)); |
| 226 | 224 | ||
| 227 | return parent; | 225 | return parent; |
| @@ -278,7 +276,7 @@ static struct of_dev_auxdata u8500_auxdata_lookup[] __initdata = { | |||
| 278 | OF_DEV_AUXDATA("st,nomadik-i2c", 0x8012a000, "nmk-i2c.4", NULL), | 276 | OF_DEV_AUXDATA("st,nomadik-i2c", 0x8012a000, "nmk-i2c.4", NULL), |
| 279 | OF_DEV_AUXDATA("stericsson,db8500-prcmu", 0x80157000, "db8500-prcmu", | 277 | OF_DEV_AUXDATA("stericsson,db8500-prcmu", 0x80157000, "db8500-prcmu", |
| 280 | &db8500_prcmu_pdata), | 278 | &db8500_prcmu_pdata), |
| 281 | OF_DEV_AUXDATA("smsc,lan9115", 0x50000000, "smsc911x", NULL), | 279 | OF_DEV_AUXDATA("smsc,lan9115", 0x50000000, "smsc911x.0", NULL), |
| 282 | /* Requires device name bindings. */ | 280 | /* Requires device name bindings. */ |
| 283 | OF_DEV_AUXDATA("stericsson,nmk-pinctrl", U8500_PRCMU_BASE, | 281 | OF_DEV_AUXDATA("stericsson,nmk-pinctrl", U8500_PRCMU_BASE, |
| 284 | "pinctrl-db8500", NULL), | 282 | "pinctrl-db8500", NULL), |
diff --git a/arch/arm/mach-ux500/setup.h b/arch/arm/mach-ux500/setup.h index bddce2b49372..cad3ca86c540 100644 --- a/arch/arm/mach-ux500/setup.h +++ b/arch/arm/mach-ux500/setup.h | |||
| @@ -18,7 +18,7 @@ | |||
| 18 | void __init ux500_map_io(void); | 18 | void __init ux500_map_io(void); |
| 19 | extern void __init u8500_map_io(void); | 19 | extern void __init u8500_map_io(void); |
| 20 | 20 | ||
| 21 | extern struct device * __init u8500_init_devices(struct ab8500_platform_data *ab8500); | 21 | extern struct device * __init u8500_init_devices(void); |
| 22 | 22 | ||
| 23 | extern void __init ux500_init_irq(void); | 23 | extern void __init ux500_init_irq(void); |
| 24 | extern void __init ux500_init_late(void); | 24 | extern void __init ux500_init_late(void); |
diff --git a/arch/arm/mach-vt8500/vt8500.c b/arch/arm/mach-vt8500/vt8500.c index 1dd281efc020..f5c33df7a597 100644 --- a/arch/arm/mach-vt8500/vt8500.c +++ b/arch/arm/mach-vt8500/vt8500.c | |||
| @@ -173,6 +173,7 @@ static const char * const vt8500_dt_compat[] = { | |||
| 173 | "wm,wm8505", | 173 | "wm,wm8505", |
| 174 | "wm,wm8750", | 174 | "wm,wm8750", |
| 175 | "wm,wm8850", | 175 | "wm,wm8850", |
| 176 | NULL | ||
| 176 | }; | 177 | }; |
| 177 | 178 | ||
| 178 | DT_MACHINE_START(WMT_DT, "VIA/Wondermedia SoC (Device Tree Support)") | 179 | DT_MACHINE_START(WMT_DT, "VIA/Wondermedia SoC (Device Tree Support)") |
diff --git a/arch/arm/plat-orion/common.c b/arch/arm/plat-orion/common.c index 251f827271e9..c019b7aaf776 100644 --- a/arch/arm/plat-orion/common.c +++ b/arch/arm/plat-orion/common.c | |||
| @@ -383,7 +383,7 @@ static struct resource orion_ge10_shared_resources[] = { | |||
| 383 | 383 | ||
| 384 | static struct platform_device orion_ge10_shared = { | 384 | static struct platform_device orion_ge10_shared = { |
| 385 | .name = MV643XX_ETH_SHARED_NAME, | 385 | .name = MV643XX_ETH_SHARED_NAME, |
| 386 | .id = 1, | 386 | .id = 2, |
| 387 | .dev = { | 387 | .dev = { |
| 388 | .platform_data = &orion_ge10_shared_data, | 388 | .platform_data = &orion_ge10_shared_data, |
| 389 | }, | 389 | }, |
| @@ -398,8 +398,8 @@ static struct resource orion_ge10_resources[] = { | |||
| 398 | 398 | ||
| 399 | static struct platform_device orion_ge10 = { | 399 | static struct platform_device orion_ge10 = { |
| 400 | .name = MV643XX_ETH_NAME, | 400 | .name = MV643XX_ETH_NAME, |
| 401 | .id = 1, | 401 | .id = 2, |
| 402 | .num_resources = 2, | 402 | .num_resources = 1, |
| 403 | .resource = orion_ge10_resources, | 403 | .resource = orion_ge10_resources, |
| 404 | .dev = { | 404 | .dev = { |
| 405 | .coherent_dma_mask = DMA_BIT_MASK(32), | 405 | .coherent_dma_mask = DMA_BIT_MASK(32), |
| @@ -432,7 +432,7 @@ static struct resource orion_ge11_shared_resources[] = { | |||
| 432 | 432 | ||
| 433 | static struct platform_device orion_ge11_shared = { | 433 | static struct platform_device orion_ge11_shared = { |
| 434 | .name = MV643XX_ETH_SHARED_NAME, | 434 | .name = MV643XX_ETH_SHARED_NAME, |
| 435 | .id = 1, | 435 | .id = 3, |
| 436 | .dev = { | 436 | .dev = { |
| 437 | .platform_data = &orion_ge11_shared_data, | 437 | .platform_data = &orion_ge11_shared_data, |
| 438 | }, | 438 | }, |
| @@ -447,8 +447,8 @@ static struct resource orion_ge11_resources[] = { | |||
| 447 | 447 | ||
| 448 | static struct platform_device orion_ge11 = { | 448 | static struct platform_device orion_ge11 = { |
| 449 | .name = MV643XX_ETH_NAME, | 449 | .name = MV643XX_ETH_NAME, |
| 450 | .id = 1, | 450 | .id = 3, |
| 451 | .num_resources = 2, | 451 | .num_resources = 1, |
| 452 | .resource = orion_ge11_resources, | 452 | .resource = orion_ge11_resources, |
| 453 | .dev = { | 453 | .dev = { |
| 454 | .coherent_dma_mask = DMA_BIT_MASK(32), | 454 | .coherent_dma_mask = DMA_BIT_MASK(32), |
diff --git a/arch/arm/plat-orion/include/plat/common.h b/arch/arm/plat-orion/include/plat/common.h index e06fc5fefa14..d9a24f605a2b 100644 --- a/arch/arm/plat-orion/include/plat/common.h +++ b/arch/arm/plat-orion/include/plat/common.h | |||
| @@ -10,6 +10,7 @@ | |||
| 10 | 10 | ||
| 11 | #ifndef __PLAT_COMMON_H | 11 | #ifndef __PLAT_COMMON_H |
| 12 | #include <linux/mv643xx_eth.h> | 12 | #include <linux/mv643xx_eth.h> |
| 13 | #include <linux/platform_data/usb-ehci-orion.h> | ||
| 13 | 14 | ||
| 14 | struct dsa_platform_data; | 15 | struct dsa_platform_data; |
| 15 | struct mv_sata_platform_data; | 16 | struct mv_sata_platform_data; |
diff --git a/arch/arm/vfp/entry.S b/arch/arm/vfp/entry.S index 323ce1a62bbf..46e17492fd1f 100644 --- a/arch/arm/vfp/entry.S +++ b/arch/arm/vfp/entry.S | |||
| @@ -60,7 +60,7 @@ ENTRY(vfp_testing_entry) | |||
| 60 | str r11, [r10, #TI_PREEMPT] | 60 | str r11, [r10, #TI_PREEMPT] |
| 61 | #endif | 61 | #endif |
| 62 | ldr r0, VFP_arch_address | 62 | ldr r0, VFP_arch_address |
| 63 | str r5, [r0] @ known non-zero value | 63 | str r0, [r0] @ set to non-zero value |
| 64 | mov pc, r9 @ we have handled the fault | 64 | mov pc, r9 @ we have handled the fault |
| 65 | ENDPROC(vfp_testing_entry) | 65 | ENDPROC(vfp_testing_entry) |
| 66 | 66 | ||
diff --git a/arch/avr32/Kconfig b/arch/avr32/Kconfig index bdc35589277f..549903cfc2cb 100644 --- a/arch/avr32/Kconfig +++ b/arch/avr32/Kconfig | |||
| @@ -205,6 +205,11 @@ config ARCH_DISCONTIGMEM_ENABLE | |||
| 205 | config ARCH_SPARSEMEM_ENABLE | 205 | config ARCH_SPARSEMEM_ENABLE |
| 206 | def_bool n | 206 | def_bool n |
| 207 | 207 | ||
| 208 | config NODES_SHIFT | ||
| 209 | int | ||
| 210 | default "2" | ||
| 211 | depends on NEED_MULTIPLE_NODES | ||
| 212 | |||
| 208 | source "mm/Kconfig" | 213 | source "mm/Kconfig" |
| 209 | 214 | ||
| 210 | config OWNERSHIP_TRACE | 215 | config OWNERSHIP_TRACE |
diff --git a/arch/avr32/include/asm/Kbuild b/arch/avr32/include/asm/Kbuild index 4dd4f78d3dcc..d22af851f3f6 100644 --- a/arch/avr32/include/asm/Kbuild +++ b/arch/avr32/include/asm/Kbuild | |||
| @@ -2,3 +2,4 @@ | |||
| 2 | generic-y += clkdev.h | 2 | generic-y += clkdev.h |
| 3 | generic-y += exec.h | 3 | generic-y += exec.h |
| 4 | generic-y += trace_clock.h | 4 | generic-y += trace_clock.h |
| 5 | generic-y += param.h | ||
diff --git a/arch/avr32/include/asm/numnodes.h b/arch/avr32/include/asm/numnodes.h deleted file mode 100644 index 0b864d7ce330..000000000000 --- a/arch/avr32/include/asm/numnodes.h +++ /dev/null | |||
| @@ -1,7 +0,0 @@ | |||
| 1 | #ifndef __ASM_AVR32_NUMNODES_H | ||
| 2 | #define __ASM_AVR32_NUMNODES_H | ||
| 3 | |||
| 4 | /* Max 4 nodes */ | ||
| 5 | #define NODES_SHIFT 2 | ||
| 6 | |||
| 7 | #endif /* __ASM_AVR32_NUMNODES_H */ | ||
diff --git a/arch/avr32/include/asm/param.h b/arch/avr32/include/asm/param.h deleted file mode 100644 index 009a167aea1f..000000000000 --- a/arch/avr32/include/asm/param.h +++ /dev/null | |||
| @@ -1,9 +0,0 @@ | |||
| 1 | #ifndef __ASM_AVR32_PARAM_H | ||
| 2 | #define __ASM_AVR32_PARAM_H | ||
| 3 | |||
| 4 | #include <uapi/asm/param.h> | ||
| 5 | |||
| 6 | # define HZ CONFIG_HZ | ||
| 7 | # define USER_HZ 100 /* User interfaces are in "ticks" */ | ||
| 8 | # define CLOCKS_PER_SEC (USER_HZ) /* frequency at which times() counts */ | ||
| 9 | #endif /* __ASM_AVR32_PARAM_H */ | ||
diff --git a/arch/avr32/include/uapi/asm/Kbuild b/arch/avr32/include/uapi/asm/Kbuild index df53e7a46774..3b85eaddf525 100644 --- a/arch/avr32/include/uapi/asm/Kbuild +++ b/arch/avr32/include/uapi/asm/Kbuild | |||
| @@ -33,3 +33,4 @@ header-y += termbits.h | |||
| 33 | header-y += termios.h | 33 | header-y += termios.h |
| 34 | header-y += types.h | 34 | header-y += types.h |
| 35 | header-y += unistd.h | 35 | header-y += unistd.h |
| 36 | generic-y += param.h | ||
diff --git a/arch/avr32/include/uapi/asm/param.h b/arch/avr32/include/uapi/asm/param.h deleted file mode 100644 index d28aa5ee6d37..000000000000 --- a/arch/avr32/include/uapi/asm/param.h +++ /dev/null | |||
| @@ -1,18 +0,0 @@ | |||
| 1 | #ifndef _UAPI__ASM_AVR32_PARAM_H | ||
| 2 | #define _UAPI__ASM_AVR32_PARAM_H | ||
| 3 | |||
| 4 | |||
| 5 | #ifndef HZ | ||
| 6 | # define HZ 100 | ||
| 7 | #endif | ||
| 8 | |||
| 9 | /* TODO: Should be configurable */ | ||
| 10 | #define EXEC_PAGESIZE 4096 | ||
| 11 | |||
| 12 | #ifndef NOGROUP | ||
| 13 | # define NOGROUP (-1) | ||
| 14 | #endif | ||
| 15 | |||
| 16 | #define MAXHOSTNAMELEN 64 | ||
| 17 | |||
| 18 | #endif /* _UAPI__ASM_AVR32_PARAM_H */ | ||
diff --git a/arch/avr32/kernel/module.c b/arch/avr32/kernel/module.c index 596f7305d93f..2c9412908024 100644 --- a/arch/avr32/kernel/module.c +++ b/arch/avr32/kernel/module.c | |||
| @@ -264,7 +264,7 @@ int apply_relocate_add(Elf32_Shdr *sechdrs, const char *strtab, | |||
| 264 | break; | 264 | break; |
| 265 | case R_AVR32_GOT18SW: | 265 | case R_AVR32_GOT18SW: |
| 266 | if ((relocation & 0xfffe0003) != 0 | 266 | if ((relocation & 0xfffe0003) != 0 |
| 267 | && (relocation & 0xfffc0003) != 0xffff0000) | 267 | && (relocation & 0xfffc0000) != 0xfffc0000) |
| 268 | return reloc_overflow(module, "R_AVR32_GOT18SW", | 268 | return reloc_overflow(module, "R_AVR32_GOT18SW", |
| 269 | relocation); | 269 | relocation); |
| 270 | relocation >>= 2; | 270 | relocation >>= 2; |
diff --git a/arch/mips/alchemy/board-gpr.c b/arch/mips/alchemy/board-gpr.c index cb0f6afb7389..9edc35ff8cf1 100644 --- a/arch/mips/alchemy/board-gpr.c +++ b/arch/mips/alchemy/board-gpr.c | |||
| @@ -31,6 +31,7 @@ | |||
| 31 | #include <linux/i2c.h> | 31 | #include <linux/i2c.h> |
| 32 | #include <linux/i2c-gpio.h> | 32 | #include <linux/i2c-gpio.h> |
| 33 | #include <asm/bootinfo.h> | 33 | #include <asm/bootinfo.h> |
| 34 | #include <asm/idle.h> | ||
| 34 | #include <asm/reboot.h> | 35 | #include <asm/reboot.h> |
| 35 | #include <asm/mach-au1x00/au1000.h> | 36 | #include <asm/mach-au1x00/au1000.h> |
| 36 | #include <prom.h> | 37 | #include <prom.h> |
diff --git a/arch/mips/alchemy/common/time.c b/arch/mips/alchemy/common/time.c index 38afb11ba2c4..93fa586d52e2 100644 --- a/arch/mips/alchemy/common/time.c +++ b/arch/mips/alchemy/common/time.c | |||
| @@ -36,6 +36,7 @@ | |||
| 36 | #include <linux/interrupt.h> | 36 | #include <linux/interrupt.h> |
| 37 | #include <linux/spinlock.h> | 37 | #include <linux/spinlock.h> |
| 38 | 38 | ||
| 39 | #include <asm/idle.h> | ||
| 39 | #include <asm/processor.h> | 40 | #include <asm/processor.h> |
| 40 | #include <asm/time.h> | 41 | #include <asm/time.h> |
| 41 | #include <asm/mach-au1x00/au1000.h> | 42 | #include <asm/mach-au1x00/au1000.h> |
diff --git a/arch/mips/ath79/setup.c b/arch/mips/ath79/setup.c index a0233a2c1988..8be4e856b8b8 100644 --- a/arch/mips/ath79/setup.c +++ b/arch/mips/ath79/setup.c | |||
| @@ -19,6 +19,7 @@ | |||
| 19 | #include <linux/clk.h> | 19 | #include <linux/clk.h> |
| 20 | 20 | ||
| 21 | #include <asm/bootinfo.h> | 21 | #include <asm/bootinfo.h> |
| 22 | #include <asm/idle.h> | ||
| 22 | #include <asm/time.h> /* for mips_hpt_frequency */ | 23 | #include <asm/time.h> /* for mips_hpt_frequency */ |
| 23 | #include <asm/reboot.h> /* for _machine_{restart,halt} */ | 24 | #include <asm/reboot.h> /* for _machine_{restart,halt} */ |
| 24 | #include <asm/mips_machine.h> | 25 | #include <asm/mips_machine.h> |
diff --git a/arch/mips/cobalt/reset.c b/arch/mips/cobalt/reset.c index 516b4428df4e..4eedd481dd00 100644 --- a/arch/mips/cobalt/reset.c +++ b/arch/mips/cobalt/reset.c | |||
| @@ -12,6 +12,7 @@ | |||
| 12 | #include <linux/io.h> | 12 | #include <linux/io.h> |
| 13 | #include <linux/leds.h> | 13 | #include <linux/leds.h> |
| 14 | 14 | ||
| 15 | #include <asm/idle.h> | ||
| 15 | #include <asm/processor.h> | 16 | #include <asm/processor.h> |
| 16 | 17 | ||
| 17 | #include <cobalt.h> | 18 | #include <cobalt.h> |
diff --git a/arch/mips/configs/db1000_defconfig b/arch/mips/configs/db1000_defconfig index face9d26e6d5..bac26b971c5e 100644 --- a/arch/mips/configs/db1000_defconfig +++ b/arch/mips/configs/db1000_defconfig | |||
| @@ -228,7 +228,6 @@ CONFIG_HIDRAW=y | |||
| 228 | CONFIG_USB_HID=y | 228 | CONFIG_USB_HID=y |
| 229 | CONFIG_USB_SUPPORT=y | 229 | CONFIG_USB_SUPPORT=y |
| 230 | CONFIG_USB=y | 230 | CONFIG_USB=y |
| 231 | CONFIG_USB_SUSPEND=y | ||
| 232 | CONFIG_USB_EHCI_HCD=y | 231 | CONFIG_USB_EHCI_HCD=y |
| 233 | CONFIG_USB_EHCI_ROOT_HUB_TT=y | 232 | CONFIG_USB_EHCI_ROOT_HUB_TT=y |
| 234 | CONFIG_USB_EHCI_TT_NEWSCHED=y | 233 | CONFIG_USB_EHCI_TT_NEWSCHED=y |
diff --git a/arch/mips/configs/db1235_defconfig b/arch/mips/configs/db1235_defconfig index 14752dde7540..e2b4ad55462f 100644 --- a/arch/mips/configs/db1235_defconfig +++ b/arch/mips/configs/db1235_defconfig | |||
| @@ -344,7 +344,6 @@ CONFIG_UHID=y | |||
| 344 | CONFIG_USB_HIDDEV=y | 344 | CONFIG_USB_HIDDEV=y |
| 345 | CONFIG_USB=y | 345 | CONFIG_USB=y |
| 346 | CONFIG_USB_DYNAMIC_MINORS=y | 346 | CONFIG_USB_DYNAMIC_MINORS=y |
| 347 | CONFIG_USB_SUSPEND=y | ||
| 348 | CONFIG_USB_EHCI_HCD=y | 347 | CONFIG_USB_EHCI_HCD=y |
| 349 | CONFIG_USB_EHCI_HCD_PLATFORM=y | 348 | CONFIG_USB_EHCI_HCD_PLATFORM=y |
| 350 | CONFIG_USB_EHCI_ROOT_HUB_TT=y | 349 | CONFIG_USB_EHCI_ROOT_HUB_TT=y |
diff --git a/arch/mips/configs/lemote2f_defconfig b/arch/mips/configs/lemote2f_defconfig index b6acd2f256b6..343bebc4b63b 100644 --- a/arch/mips/configs/lemote2f_defconfig +++ b/arch/mips/configs/lemote2f_defconfig | |||
| @@ -300,7 +300,6 @@ CONFIG_USB=y | |||
| 300 | CONFIG_USB_DEVICEFS=y | 300 | CONFIG_USB_DEVICEFS=y |
| 301 | # CONFIG_USB_DEVICE_CLASS is not set | 301 | # CONFIG_USB_DEVICE_CLASS is not set |
| 302 | CONFIG_USB_DYNAMIC_MINORS=y | 302 | CONFIG_USB_DYNAMIC_MINORS=y |
| 303 | CONFIG_USB_SUSPEND=y | ||
| 304 | CONFIG_USB_OTG_WHITELIST=y | 303 | CONFIG_USB_OTG_WHITELIST=y |
| 305 | CONFIG_USB_MON=y | 304 | CONFIG_USB_MON=y |
| 306 | CONFIG_USB_EHCI_HCD=y | 305 | CONFIG_USB_EHCI_HCD=y |
diff --git a/arch/mips/include/asm/clock.h b/arch/mips/include/asm/clock.h index c9456e7a7283..778e32d817bc 100644 --- a/arch/mips/include/asm/clock.h +++ b/arch/mips/include/asm/clock.h | |||
| @@ -6,8 +6,6 @@ | |||
| 6 | #include <linux/seq_file.h> | 6 | #include <linux/seq_file.h> |
| 7 | #include <linux/clk.h> | 7 | #include <linux/clk.h> |
| 8 | 8 | ||
| 9 | extern void (*cpu_wait) (void); | ||
| 10 | |||
| 11 | struct clk; | 9 | struct clk; |
| 12 | 10 | ||
| 13 | struct clk_ops { | 11 | struct clk_ops { |
diff --git a/arch/mips/include/asm/idle.h b/arch/mips/include/asm/idle.h new file mode 100644 index 000000000000..d192158886b1 --- /dev/null +++ b/arch/mips/include/asm/idle.h | |||
| @@ -0,0 +1,23 @@ | |||
| 1 | #ifndef __ASM_IDLE_H | ||
| 2 | #define __ASM_IDLE_H | ||
| 3 | |||
| 4 | #include <linux/linkage.h> | ||
| 5 | |||
| 6 | extern void (*cpu_wait)(void); | ||
| 7 | extern void r4k_wait(void); | ||
| 8 | extern asmlinkage void __r4k_wait(void); | ||
| 9 | extern void r4k_wait_irqoff(void); | ||
| 10 | extern void __pastwait(void); | ||
| 11 | |||
| 12 | static inline int using_rollback_handler(void) | ||
| 13 | { | ||
| 14 | return cpu_wait == r4k_wait; | ||
| 15 | } | ||
| 16 | |||
| 17 | static inline int address_is_in_r4k_wait_irqoff(unsigned long addr) | ||
| 18 | { | ||
| 19 | return addr >= (unsigned long)r4k_wait_irqoff && | ||
| 20 | addr < (unsigned long)__pastwait; | ||
| 21 | } | ||
| 22 | |||
| 23 | #endif /* __ASM_IDLE_H */ | ||
diff --git a/arch/mips/include/asm/page.h b/arch/mips/include/asm/page.h index ec1ca537fbc1..f59552fae917 100644 --- a/arch/mips/include/asm/page.h +++ b/arch/mips/include/asm/page.h | |||
| @@ -171,14 +171,13 @@ typedef struct { unsigned long pgprot; } pgprot_t; | |||
| 171 | 171 | ||
| 172 | #ifdef CONFIG_FLATMEM | 172 | #ifdef CONFIG_FLATMEM |
| 173 | 173 | ||
| 174 | #define pfn_valid(pfn) \ | 174 | static inline int pfn_valid(unsigned long pfn) |
| 175 | ({ \ | 175 | { |
| 176 | unsigned long __pfn = (pfn); \ | 176 | /* avoid <linux/mm.h> include hell */ |
| 177 | /* avoid <linux/bootmem.h> include hell */ \ | 177 | extern unsigned long max_mapnr; |
| 178 | extern unsigned long min_low_pfn; \ | 178 | |
| 179 | \ | 179 | return pfn >= ARCH_PFN_OFFSET && pfn < max_mapnr; |
| 180 | __pfn >= min_low_pfn && __pfn < max_mapnr; \ | 180 | } |
| 181 | }) | ||
| 182 | 181 | ||
| 183 | #elif defined(CONFIG_SPARSEMEM) | 182 | #elif defined(CONFIG_SPARSEMEM) |
| 184 | 183 | ||
diff --git a/arch/mips/include/asm/processor.h b/arch/mips/include/asm/processor.h index 71686c897dea..1470b7b68b0e 100644 --- a/arch/mips/include/asm/processor.h +++ b/arch/mips/include/asm/processor.h | |||
| @@ -28,7 +28,6 @@ | |||
| 28 | /* | 28 | /* |
| 29 | * System setup and hardware flags.. | 29 | * System setup and hardware flags.. |
| 30 | */ | 30 | */ |
| 31 | extern void (*cpu_wait)(void); | ||
| 32 | 31 | ||
| 33 | extern unsigned int vced_count, vcei_count; | 32 | extern unsigned int vced_count, vcei_count; |
| 34 | 33 | ||
diff --git a/arch/mips/include/asm/kvm.h b/arch/mips/include/uapi/asm/kvm.h index 85789eacbf18..85789eacbf18 100644 --- a/arch/mips/include/asm/kvm.h +++ b/arch/mips/include/uapi/asm/kvm.h | |||
diff --git a/arch/mips/include/uapi/asm/unistd.h b/arch/mips/include/uapi/asm/unistd.h index 16338b84fa79..1dee279f9665 100644 --- a/arch/mips/include/uapi/asm/unistd.h +++ b/arch/mips/include/uapi/asm/unistd.h | |||
| @@ -694,16 +694,17 @@ | |||
| 694 | #define __NR_process_vm_writev (__NR_Linux + 305) | 694 | #define __NR_process_vm_writev (__NR_Linux + 305) |
| 695 | #define __NR_kcmp (__NR_Linux + 306) | 695 | #define __NR_kcmp (__NR_Linux + 306) |
| 696 | #define __NR_finit_module (__NR_Linux + 307) | 696 | #define __NR_finit_module (__NR_Linux + 307) |
| 697 | #define __NR_getdents64 (__NR_Linux + 308) | ||
| 697 | 698 | ||
| 698 | /* | 699 | /* |
| 699 | * Offset of the last Linux 64-bit flavoured syscall | 700 | * Offset of the last Linux 64-bit flavoured syscall |
| 700 | */ | 701 | */ |
| 701 | #define __NR_Linux_syscalls 307 | 702 | #define __NR_Linux_syscalls 308 |
| 702 | 703 | ||
| 703 | #endif /* _MIPS_SIM == _MIPS_SIM_ABI64 */ | 704 | #endif /* _MIPS_SIM == _MIPS_SIM_ABI64 */ |
| 704 | 705 | ||
| 705 | #define __NR_64_Linux 5000 | 706 | #define __NR_64_Linux 5000 |
| 706 | #define __NR_64_Linux_syscalls 307 | 707 | #define __NR_64_Linux_syscalls 308 |
| 707 | 708 | ||
| 708 | #if _MIPS_SIM == _MIPS_SIM_NABI32 | 709 | #if _MIPS_SIM == _MIPS_SIM_NABI32 |
| 709 | 710 | ||
diff --git a/arch/mips/kernel/Makefile b/arch/mips/kernel/Makefile index 6ad9e04bdf62..423d871a946b 100644 --- a/arch/mips/kernel/Makefile +++ b/arch/mips/kernel/Makefile | |||
| @@ -4,7 +4,7 @@ | |||
| 4 | 4 | ||
| 5 | extra-y := head.o vmlinux.lds | 5 | extra-y := head.o vmlinux.lds |
| 6 | 6 | ||
| 7 | obj-y += cpu-probe.o branch.o entry.o genex.o irq.o process.o \ | 7 | obj-y += cpu-probe.o branch.o entry.o genex.o idle.o irq.o process.o \ |
| 8 | prom.o ptrace.o reset.o setup.o signal.o syscall.o \ | 8 | prom.o ptrace.o reset.o setup.o signal.o syscall.o \ |
| 9 | time.o topology.o traps.o unaligned.o watch.o vdso.o | 9 | time.o topology.o traps.o unaligned.o watch.o vdso.o |
| 10 | 10 | ||
diff --git a/arch/mips/kernel/cpu-probe.c b/arch/mips/kernel/cpu-probe.c index 4bbffdb9024f..c6568bf4b1b0 100644 --- a/arch/mips/kernel/cpu-probe.c +++ b/arch/mips/kernel/cpu-probe.c | |||
| @@ -27,105 +27,6 @@ | |||
| 27 | #include <asm/spram.h> | 27 | #include <asm/spram.h> |
| 28 | #include <asm/uaccess.h> | 28 | #include <asm/uaccess.h> |
| 29 | 29 | ||
| 30 | /* | ||
| 31 | * Not all of the MIPS CPUs have the "wait" instruction available. Moreover, | ||
| 32 | * the implementation of the "wait" feature differs between CPU families. This | ||
| 33 | * points to the function that implements CPU specific wait. | ||
| 34 | * The wait instruction stops the pipeline and reduces the power consumption of | ||
| 35 | * the CPU very much. | ||
| 36 | */ | ||
| 37 | void (*cpu_wait)(void); | ||
| 38 | EXPORT_SYMBOL(cpu_wait); | ||
| 39 | |||
| 40 | static void r3081_wait(void) | ||
| 41 | { | ||
| 42 | unsigned long cfg = read_c0_conf(); | ||
| 43 | write_c0_conf(cfg | R30XX_CONF_HALT); | ||
| 44 | } | ||
| 45 | |||
| 46 | static void r39xx_wait(void) | ||
| 47 | { | ||
| 48 | local_irq_disable(); | ||
| 49 | if (!need_resched()) | ||
| 50 | write_c0_conf(read_c0_conf() | TX39_CONF_HALT); | ||
| 51 | local_irq_enable(); | ||
| 52 | } | ||
| 53 | |||
| 54 | extern void r4k_wait(void); | ||
| 55 | |||
| 56 | /* | ||
| 57 | * This variant is preferable as it allows testing need_resched and going to | ||
| 58 | * sleep depending on the outcome atomically. Unfortunately the "It is | ||
| 59 | * implementation-dependent whether the pipeline restarts when a non-enabled | ||
| 60 | * interrupt is requested" restriction in the MIPS32/MIPS64 architecture makes | ||
| 61 | * using this version a gamble. | ||
| 62 | */ | ||
| 63 | void r4k_wait_irqoff(void) | ||
| 64 | { | ||
| 65 | local_irq_disable(); | ||
| 66 | if (!need_resched()) | ||
| 67 | __asm__(" .set push \n" | ||
| 68 | " .set mips3 \n" | ||
| 69 | " wait \n" | ||
| 70 | " .set pop \n"); | ||
| 71 | local_irq_enable(); | ||
| 72 | __asm__(" .globl __pastwait \n" | ||
| 73 | "__pastwait: \n"); | ||
| 74 | } | ||
| 75 | |||
| 76 | /* | ||
| 77 | * The RM7000 variant has to handle erratum 38. The workaround is to not | ||
| 78 | * have any pending stores when the WAIT instruction is executed. | ||
| 79 | */ | ||
| 80 | static void rm7k_wait_irqoff(void) | ||
| 81 | { | ||
| 82 | local_irq_disable(); | ||
| 83 | if (!need_resched()) | ||
| 84 | __asm__( | ||
| 85 | " .set push \n" | ||
| 86 | " .set mips3 \n" | ||
| 87 | " .set noat \n" | ||
| 88 | " mfc0 $1, $12 \n" | ||
| 89 | " sync \n" | ||
| 90 | " mtc0 $1, $12 # stalls until W stage \n" | ||
| 91 | " wait \n" | ||
| 92 | " mtc0 $1, $12 # stalls until W stage \n" | ||
| 93 | " .set pop \n"); | ||
| 94 | local_irq_enable(); | ||
| 95 | } | ||
| 96 | |||
| 97 | /* | ||
| 98 | * The Au1xxx wait is available only if using 32khz counter or | ||
| 99 | * external timer source, but specifically not CP0 Counter. | ||
| 100 | * alchemy/common/time.c may override cpu_wait! | ||
| 101 | */ | ||
| 102 | static void au1k_wait(void) | ||
| 103 | { | ||
| 104 | __asm__(" .set mips3 \n" | ||
| 105 | " cache 0x14, 0(%0) \n" | ||
| 106 | " cache 0x14, 32(%0) \n" | ||
| 107 | " sync \n" | ||
| 108 | " nop \n" | ||
| 109 | " wait \n" | ||
| 110 | " nop \n" | ||
| 111 | " nop \n" | ||
| 112 | " nop \n" | ||
| 113 | " nop \n" | ||
| 114 | " .set mips0 \n" | ||
| 115 | : : "r" (au1k_wait)); | ||
| 116 | } | ||
| 117 | |||
| 118 | static int __initdata nowait; | ||
| 119 | |||
| 120 | static int __init wait_disable(char *s) | ||
| 121 | { | ||
| 122 | nowait = 1; | ||
| 123 | |||
| 124 | return 1; | ||
| 125 | } | ||
| 126 | |||
| 127 | __setup("nowait", wait_disable); | ||
| 128 | |||
| 129 | static int __cpuinitdata mips_fpu_disabled; | 30 | static int __cpuinitdata mips_fpu_disabled; |
| 130 | 31 | ||
| 131 | static int __init fpu_disable(char *s) | 32 | static int __init fpu_disable(char *s) |
| @@ -150,105 +51,6 @@ static int __init dsp_disable(char *s) | |||
| 150 | 51 | ||
| 151 | __setup("nodsp", dsp_disable); | 52 | __setup("nodsp", dsp_disable); |
| 152 | 53 | ||
| 153 | void __init check_wait(void) | ||
| 154 | { | ||
| 155 | struct cpuinfo_mips *c = ¤t_cpu_data; | ||
| 156 | |||
| 157 | if (nowait) { | ||
| 158 | printk("Wait instruction disabled.\n"); | ||
| 159 | return; | ||
| 160 | } | ||
| 161 | |||
| 162 | switch (c->cputype) { | ||
| 163 | case CPU_R3081: | ||
| 164 | case CPU_R3081E: | ||
| 165 | cpu_wait = r3081_wait; | ||
| 166 | break; | ||
| 167 | case CPU_TX3927: | ||
| 168 | cpu_wait = r39xx_wait; | ||
| 169 | break; | ||
| 170 | case CPU_R4200: | ||
| 171 | /* case CPU_R4300: */ | ||
| 172 | case CPU_R4600: | ||
| 173 | case CPU_R4640: | ||
| 174 | case CPU_R4650: | ||
| 175 | case CPU_R4700: | ||
| 176 | case CPU_R5000: | ||
| 177 | case CPU_R5500: | ||
| 178 | case CPU_NEVADA: | ||
| 179 | case CPU_4KC: | ||
| 180 | case CPU_4KEC: | ||
| 181 | case CPU_4KSC: | ||
| 182 | case CPU_5KC: | ||
| 183 | case CPU_25KF: | ||
| 184 | case CPU_PR4450: | ||
| 185 | case CPU_BMIPS3300: | ||
| 186 | case CPU_BMIPS4350: | ||
| 187 | case CPU_BMIPS4380: | ||
| 188 | case CPU_BMIPS5000: | ||
| 189 | case CPU_CAVIUM_OCTEON: | ||
| 190 | case CPU_CAVIUM_OCTEON_PLUS: | ||
| 191 | case CPU_CAVIUM_OCTEON2: | ||
| 192 | case CPU_JZRISC: | ||
| 193 | case CPU_LOONGSON1: | ||
| 194 | case CPU_XLR: | ||
| 195 | case CPU_XLP: | ||
| 196 | cpu_wait = r4k_wait; | ||
| 197 | break; | ||
| 198 | |||
| 199 | case CPU_RM7000: | ||
| 200 | cpu_wait = rm7k_wait_irqoff; | ||
| 201 | break; | ||
| 202 | |||
| 203 | case CPU_M14KC: | ||
| 204 | case CPU_M14KEC: | ||
| 205 | case CPU_24K: | ||
| 206 | case CPU_34K: | ||
| 207 | case CPU_1004K: | ||
| 208 | cpu_wait = r4k_wait; | ||
| 209 | if (read_c0_config7() & MIPS_CONF7_WII) | ||
| 210 | cpu_wait = r4k_wait_irqoff; | ||
| 211 | break; | ||
| 212 | |||
| 213 | case CPU_74K: | ||
| 214 | cpu_wait = r4k_wait; | ||
| 215 | if ((c->processor_id & 0xff) >= PRID_REV_ENCODE_332(2, 1, 0)) | ||
| 216 | cpu_wait = r4k_wait_irqoff; | ||
| 217 | break; | ||
| 218 | |||
| 219 | case CPU_TX49XX: | ||
| 220 | cpu_wait = r4k_wait_irqoff; | ||
| 221 | break; | ||
| 222 | case CPU_ALCHEMY: | ||
| 223 | cpu_wait = au1k_wait; | ||
| 224 | break; | ||
| 225 | case CPU_20KC: | ||
| 226 | /* | ||
| 227 | * WAIT on Rev1.0 has E1, E2, E3 and E16. | ||
| 228 | * WAIT on Rev2.0 and Rev3.0 has E16. | ||
| 229 | * Rev3.1 WAIT is nop, why bother | ||
| 230 | */ | ||
| 231 | if ((c->processor_id & 0xff) <= 0x64) | ||
| 232 | break; | ||
| 233 | |||
| 234 | /* | ||
| 235 | * Another rev is incremeting c0_count at a reduced clock | ||
| 236 | * rate while in WAIT mode. So we basically have the choice | ||
| 237 | * between using the cp0 timer as clocksource or avoiding | ||
| 238 | * the WAIT instruction. Until more details are known, | ||
| 239 | * disable the use of WAIT for 20Kc entirely. | ||
| 240 | cpu_wait = r4k_wait; | ||
| 241 | */ | ||
| 242 | break; | ||
| 243 | case CPU_RM9000: | ||
| 244 | if ((c->processor_id & 0x00ff) >= 0x40) | ||
| 245 | cpu_wait = r4k_wait; | ||
| 246 | break; | ||
| 247 | default: | ||
| 248 | break; | ||
| 249 | } | ||
| 250 | } | ||
| 251 | |||
| 252 | static inline void check_errata(void) | 54 | static inline void check_errata(void) |
| 253 | { | 55 | { |
| 254 | struct cpuinfo_mips *c = ¤t_cpu_data; | 56 | struct cpuinfo_mips *c = ¤t_cpu_data; |
diff --git a/arch/mips/kernel/genex.S b/arch/mips/kernel/genex.S index 9098829bfcb0..31fa856829cb 100644 --- a/arch/mips/kernel/genex.S +++ b/arch/mips/kernel/genex.S | |||
| @@ -122,7 +122,7 @@ handle_vcei: | |||
| 122 | __FINIT | 122 | __FINIT |
| 123 | 123 | ||
| 124 | .align 5 /* 32 byte rollback region */ | 124 | .align 5 /* 32 byte rollback region */ |
| 125 | LEAF(r4k_wait) | 125 | LEAF(__r4k_wait) |
| 126 | .set push | 126 | .set push |
| 127 | .set noreorder | 127 | .set noreorder |
| 128 | /* start of rollback region */ | 128 | /* start of rollback region */ |
| @@ -146,14 +146,14 @@ LEAF(r4k_wait) | |||
| 146 | jr ra | 146 | jr ra |
| 147 | nop | 147 | nop |
| 148 | .set pop | 148 | .set pop |
| 149 | END(r4k_wait) | 149 | END(__r4k_wait) |
| 150 | 150 | ||
| 151 | .macro BUILD_ROLLBACK_PROLOGUE handler | 151 | .macro BUILD_ROLLBACK_PROLOGUE handler |
| 152 | FEXPORT(rollback_\handler) | 152 | FEXPORT(rollback_\handler) |
| 153 | .set push | 153 | .set push |
| 154 | .set noat | 154 | .set noat |
| 155 | MFC0 k0, CP0_EPC | 155 | MFC0 k0, CP0_EPC |
| 156 | PTR_LA k1, r4k_wait | 156 | PTR_LA k1, __r4k_wait |
| 157 | ori k0, 0x1f /* 32 byte rollback region */ | 157 | ori k0, 0x1f /* 32 byte rollback region */ |
| 158 | xori k0, 0x1f | 158 | xori k0, 0x1f |
| 159 | bne k0, k1, 9f | 159 | bne k0, k1, 9f |
diff --git a/arch/mips/kernel/idle.c b/arch/mips/kernel/idle.c new file mode 100644 index 000000000000..3b09b888afa9 --- /dev/null +++ b/arch/mips/kernel/idle.c | |||
| @@ -0,0 +1,244 @@ | |||
| 1 | /* | ||
| 2 | * MIPS idle loop and WAIT instruction support. | ||
| 3 | * | ||
| 4 | * Copyright (C) xxxx the Anonymous | ||
| 5 | * Copyright (C) 1994 - 2006 Ralf Baechle | ||
| 6 | * Copyright (C) 2003, 2004 Maciej W. Rozycki | ||
| 7 | * Copyright (C) 2001, 2004, 2011, 2012 MIPS Technologies, Inc. | ||
| 8 | * | ||
| 9 | * This program is free software; you can redistribute it and/or | ||
| 10 | * modify it under the terms of the GNU General Public License | ||
| 11 | * as published by the Free Software Foundation; either version | ||
| 12 | * 2 of the License, or (at your option) any later version. | ||
| 13 | */ | ||
| 14 | #include <linux/export.h> | ||
| 15 | #include <linux/init.h> | ||
| 16 | #include <linux/irqflags.h> | ||
| 17 | #include <linux/printk.h> | ||
| 18 | #include <linux/sched.h> | ||
| 19 | #include <asm/cpu.h> | ||
| 20 | #include <asm/cpu-info.h> | ||
| 21 | #include <asm/idle.h> | ||
| 22 | #include <asm/mipsregs.h> | ||
| 23 | |||
| 24 | /* | ||
| 25 | * Not all of the MIPS CPUs have the "wait" instruction available. Moreover, | ||
| 26 | * the implementation of the "wait" feature differs between CPU families. This | ||
| 27 | * points to the function that implements CPU specific wait. | ||
| 28 | * The wait instruction stops the pipeline and reduces the power consumption of | ||
| 29 | * the CPU very much. | ||
| 30 | */ | ||
| 31 | void (*cpu_wait)(void); | ||
| 32 | EXPORT_SYMBOL(cpu_wait); | ||
| 33 | |||
| 34 | static void r3081_wait(void) | ||
| 35 | { | ||
| 36 | unsigned long cfg = read_c0_conf(); | ||
| 37 | write_c0_conf(cfg | R30XX_CONF_HALT); | ||
| 38 | local_irq_enable(); | ||
| 39 | } | ||
| 40 | |||
| 41 | static void r39xx_wait(void) | ||
| 42 | { | ||
| 43 | if (!need_resched()) | ||
| 44 | write_c0_conf(read_c0_conf() | TX39_CONF_HALT); | ||
| 45 | local_irq_enable(); | ||
| 46 | } | ||
| 47 | |||
| 48 | void r4k_wait(void) | ||
| 49 | { | ||
| 50 | local_irq_enable(); | ||
| 51 | __r4k_wait(); | ||
| 52 | } | ||
| 53 | |||
| 54 | /* | ||
| 55 | * This variant is preferable as it allows testing need_resched and going to | ||
| 56 | * sleep depending on the outcome atomically. Unfortunately the "It is | ||
| 57 | * implementation-dependent whether the pipeline restarts when a non-enabled | ||
| 58 | * interrupt is requested" restriction in the MIPS32/MIPS64 architecture makes | ||
| 59 | * using this version a gamble. | ||
| 60 | */ | ||
| 61 | void r4k_wait_irqoff(void) | ||
| 62 | { | ||
| 63 | if (!need_resched()) | ||
| 64 | __asm__( | ||
| 65 | " .set push \n" | ||
| 66 | " .set mips3 \n" | ||
| 67 | " wait \n" | ||
| 68 | " .set pop \n"); | ||
| 69 | local_irq_enable(); | ||
| 70 | __asm__( | ||
| 71 | " .globl __pastwait \n" | ||
| 72 | "__pastwait: \n"); | ||
| 73 | } | ||
| 74 | |||
| 75 | /* | ||
| 76 | * The RM7000 variant has to handle erratum 38. The workaround is to not | ||
| 77 | * have any pending stores when the WAIT instruction is executed. | ||
| 78 | */ | ||
| 79 | static void rm7k_wait_irqoff(void) | ||
| 80 | { | ||
| 81 | if (!need_resched()) | ||
| 82 | __asm__( | ||
| 83 | " .set push \n" | ||
| 84 | " .set mips3 \n" | ||
| 85 | " .set noat \n" | ||
| 86 | " mfc0 $1, $12 \n" | ||
| 87 | " sync \n" | ||
| 88 | " mtc0 $1, $12 # stalls until W stage \n" | ||
| 89 | " wait \n" | ||
| 90 | " mtc0 $1, $12 # stalls until W stage \n" | ||
| 91 | " .set pop \n"); | ||
| 92 | local_irq_enable(); | ||
| 93 | } | ||
| 94 | |||
| 95 | /* | ||
| 96 | * The Au1xxx wait is available only if using 32khz counter or | ||
| 97 | * external timer source, but specifically not CP0 Counter. | ||
| 98 | * alchemy/common/time.c may override cpu_wait! | ||
| 99 | */ | ||
| 100 | static void au1k_wait(void) | ||
| 101 | { | ||
| 102 | __asm__( | ||
| 103 | " .set mips3 \n" | ||
| 104 | " cache 0x14, 0(%0) \n" | ||
| 105 | " cache 0x14, 32(%0) \n" | ||
| 106 | " sync \n" | ||
| 107 | " nop \n" | ||
| 108 | " wait \n" | ||
| 109 | " nop \n" | ||
| 110 | " nop \n" | ||
| 111 | " nop \n" | ||
| 112 | " nop \n" | ||
| 113 | " .set mips0 \n" | ||
| 114 | : : "r" (au1k_wait)); | ||
| 115 | local_irq_enable(); | ||
| 116 | } | ||
| 117 | |||
| 118 | static int __initdata nowait; | ||
| 119 | |||
| 120 | static int __init wait_disable(char *s) | ||
| 121 | { | ||
| 122 | nowait = 1; | ||
| 123 | |||
| 124 | return 1; | ||
| 125 | } | ||
| 126 | |||
| 127 | __setup("nowait", wait_disable); | ||
| 128 | |||
| 129 | void __init check_wait(void) | ||
| 130 | { | ||
| 131 | struct cpuinfo_mips *c = ¤t_cpu_data; | ||
| 132 | |||
| 133 | if (nowait) { | ||
| 134 | printk("Wait instruction disabled.\n"); | ||
| 135 | return; | ||
| 136 | } | ||
| 137 | |||
| 138 | switch (c->cputype) { | ||
| 139 | case CPU_R3081: | ||
| 140 | case CPU_R3081E: | ||
| 141 | cpu_wait = r3081_wait; | ||
| 142 | break; | ||
| 143 | case CPU_TX3927: | ||
| 144 | cpu_wait = r39xx_wait; | ||
| 145 | break; | ||
| 146 | case CPU_R4200: | ||
| 147 | /* case CPU_R4300: */ | ||
| 148 | case CPU_R4600: | ||
| 149 | case CPU_R4640: | ||
| 150 | case CPU_R4650: | ||
| 151 | case CPU_R4700: | ||
| 152 | case CPU_R5000: | ||
| 153 | case CPU_R5500: | ||
| 154 | case CPU_NEVADA: | ||
| 155 | case CPU_4KC: | ||
| 156 | case CPU_4KEC: | ||
| 157 | case CPU_4KSC: | ||
| 158 | case CPU_5KC: | ||
| 159 | case CPU_25KF: | ||
| 160 | case CPU_PR4450: | ||
| 161 | case CPU_BMIPS3300: | ||
| 162 | case CPU_BMIPS4350: | ||
| 163 | case CPU_BMIPS4380: | ||
| 164 | case CPU_BMIPS5000: | ||
| 165 | case CPU_CAVIUM_OCTEON: | ||
| 166 | case CPU_CAVIUM_OCTEON_PLUS: | ||
| 167 | case CPU_CAVIUM_OCTEON2: | ||
| 168 | case CPU_JZRISC: | ||
| 169 | case CPU_LOONGSON1: | ||
| 170 | case CPU_XLR: | ||
| 171 | case CPU_XLP: | ||
| 172 | cpu_wait = r4k_wait; | ||
| 173 | break; | ||
| 174 | |||
| 175 | case CPU_RM7000: | ||
| 176 | cpu_wait = rm7k_wait_irqoff; | ||
| 177 | break; | ||
| 178 | |||
| 179 | case CPU_M14KC: | ||
| 180 | case CPU_M14KEC: | ||
| 181 | case CPU_24K: | ||
| 182 | case CPU_34K: | ||
| 183 | case CPU_1004K: | ||
| 184 | cpu_wait = r4k_wait; | ||
| 185 | if (read_c0_config7() & MIPS_CONF7_WII) | ||
| 186 | cpu_wait = r4k_wait_irqoff; | ||
| 187 | break; | ||
| 188 | |||
| 189 | case CPU_74K: | ||
| 190 | cpu_wait = r4k_wait; | ||
| 191 | if ((c->processor_id & 0xff) >= PRID_REV_ENCODE_332(2, 1, 0)) | ||
| 192 | cpu_wait = r4k_wait_irqoff; | ||
| 193 | break; | ||
| 194 | |||
| 195 | case CPU_TX49XX: | ||
| 196 | cpu_wait = r4k_wait_irqoff; | ||
| 197 | break; | ||
| 198 | case CPU_ALCHEMY: | ||
| 199 | cpu_wait = au1k_wait; | ||
| 200 | break; | ||
| 201 | case CPU_20KC: | ||
| 202 | /* | ||
| 203 | * WAIT on Rev1.0 has E1, E2, E3 and E16. | ||
| 204 | * WAIT on Rev2.0 and Rev3.0 has E16. | ||
| 205 | * Rev3.1 WAIT is nop, why bother | ||
| 206 | */ | ||
| 207 | if ((c->processor_id & 0xff) <= 0x64) | ||
| 208 | break; | ||
| 209 | |||
| 210 | /* | ||
| 211 | * Another rev is incremeting c0_count at a reduced clock | ||
| 212 | * rate while in WAIT mode. So we basically have the choice | ||
| 213 | * between using the cp0 timer as clocksource or avoiding | ||
| 214 | * the WAIT instruction. Until more details are known, | ||
| 215 | * disable the use of WAIT for 20Kc entirely. | ||
| 216 | cpu_wait = r4k_wait; | ||
| 217 | */ | ||
| 218 | break; | ||
| 219 | case CPU_RM9000: | ||
| 220 | if ((c->processor_id & 0x00ff) >= 0x40) | ||
| 221 | cpu_wait = r4k_wait; | ||
| 222 | break; | ||
| 223 | default: | ||
| 224 | break; | ||
| 225 | } | ||
| 226 | } | ||
| 227 | |||
| 228 | static void smtc_idle_hook(void) | ||
| 229 | { | ||
| 230 | #ifdef CONFIG_MIPS_MT_SMTC | ||
| 231 | void smtc_idle_loop_hook(void); | ||
| 232 | |||
| 233 | smtc_idle_loop_hook(); | ||
| 234 | #endif | ||
| 235 | } | ||
| 236 | |||
| 237 | void arch_cpu_idle(void) | ||
| 238 | { | ||
| 239 | smtc_idle_hook(); | ||
| 240 | if (cpu_wait) | ||
| 241 | cpu_wait(); | ||
| 242 | else | ||
| 243 | local_irq_enable(); | ||
| 244 | } | ||
diff --git a/arch/mips/kernel/kprobes.c b/arch/mips/kernel/kprobes.c index 12bc4ebdf55b..1f8187ab0997 100644 --- a/arch/mips/kernel/kprobes.c +++ b/arch/mips/kernel/kprobes.c | |||
| @@ -207,7 +207,10 @@ void __kprobes arch_disarm_kprobe(struct kprobe *p) | |||
| 207 | 207 | ||
| 208 | void __kprobes arch_remove_kprobe(struct kprobe *p) | 208 | void __kprobes arch_remove_kprobe(struct kprobe *p) |
| 209 | { | 209 | { |
| 210 | free_insn_slot(p->ainsn.insn, 0); | 210 | if (p->ainsn.insn) { |
| 211 | free_insn_slot(p->ainsn.insn, 0); | ||
| 212 | p->ainsn.insn = NULL; | ||
| 213 | } | ||
| 211 | } | 214 | } |
| 212 | 215 | ||
| 213 | static void save_previous_kprobe(struct kprobe_ctlblk *kcb) | 216 | static void save_previous_kprobe(struct kprobe_ctlblk *kcb) |
diff --git a/arch/mips/kernel/proc.c b/arch/mips/kernel/proc.c index a3e461408b7e..acb34373679e 100644 --- a/arch/mips/kernel/proc.c +++ b/arch/mips/kernel/proc.c | |||
| @@ -10,6 +10,7 @@ | |||
| 10 | #include <asm/bootinfo.h> | 10 | #include <asm/bootinfo.h> |
| 11 | #include <asm/cpu.h> | 11 | #include <asm/cpu.h> |
| 12 | #include <asm/cpu-features.h> | 12 | #include <asm/cpu-features.h> |
| 13 | #include <asm/idle.h> | ||
| 13 | #include <asm/mipsregs.h> | 14 | #include <asm/mipsregs.h> |
| 14 | #include <asm/processor.h> | 15 | #include <asm/processor.h> |
| 15 | #include <asm/prom.h> | 16 | #include <asm/prom.h> |
diff --git a/arch/mips/kernel/process.c b/arch/mips/kernel/process.c index a682a87bcc04..c6a041d9d05d 100644 --- a/arch/mips/kernel/process.c +++ b/arch/mips/kernel/process.c | |||
| @@ -51,19 +51,6 @@ void arch_cpu_idle_dead(void) | |||
| 51 | } | 51 | } |
| 52 | #endif | 52 | #endif |
| 53 | 53 | ||
| 54 | void arch_cpu_idle(void) | ||
| 55 | { | ||
| 56 | #ifdef CONFIG_MIPS_MT_SMTC | ||
| 57 | extern void smtc_idle_loop_hook(void); | ||
| 58 | |||
| 59 | smtc_idle_loop_hook(); | ||
| 60 | #endif | ||
| 61 | if (cpu_wait) | ||
| 62 | (*cpu_wait)(); | ||
| 63 | else | ||
| 64 | local_irq_enable(); | ||
| 65 | } | ||
| 66 | |||
| 67 | asmlinkage void ret_from_fork(void); | 54 | asmlinkage void ret_from_fork(void); |
| 68 | asmlinkage void ret_from_kernel_thread(void); | 55 | asmlinkage void ret_from_kernel_thread(void); |
| 69 | 56 | ||
diff --git a/arch/mips/kernel/scall64-64.S b/arch/mips/kernel/scall64-64.S index 36cfd4060e1f..97a5909a61cf 100644 --- a/arch/mips/kernel/scall64-64.S +++ b/arch/mips/kernel/scall64-64.S | |||
| @@ -423,4 +423,5 @@ sys_call_table: | |||
| 423 | PTR sys_process_vm_writev /* 5305 */ | 423 | PTR sys_process_vm_writev /* 5305 */ |
| 424 | PTR sys_kcmp | 424 | PTR sys_kcmp |
| 425 | PTR sys_finit_module | 425 | PTR sys_finit_module |
| 426 | PTR sys_getdents64 | ||
| 426 | .size sys_call_table,.-sys_call_table | 427 | .size sys_call_table,.-sys_call_table |
diff --git a/arch/mips/kernel/smp.c b/arch/mips/kernel/smp.c index c17619fe18e3..6e7862ab46cc 100644 --- a/arch/mips/kernel/smp.c +++ b/arch/mips/kernel/smp.c | |||
| @@ -37,6 +37,7 @@ | |||
| 37 | #include <linux/atomic.h> | 37 | #include <linux/atomic.h> |
| 38 | #include <asm/cpu.h> | 38 | #include <asm/cpu.h> |
| 39 | #include <asm/processor.h> | 39 | #include <asm/processor.h> |
| 40 | #include <asm/idle.h> | ||
| 40 | #include <asm/r4k-timer.h> | 41 | #include <asm/r4k-timer.h> |
| 41 | #include <asm/mmu_context.h> | 42 | #include <asm/mmu_context.h> |
| 42 | #include <asm/time.h> | 43 | #include <asm/time.h> |
diff --git a/arch/mips/kernel/smtc.c b/arch/mips/kernel/smtc.c index 7186222dc5bb..75a4fd709841 100644 --- a/arch/mips/kernel/smtc.c +++ b/arch/mips/kernel/smtc.c | |||
| @@ -34,6 +34,7 @@ | |||
| 34 | #include <asm/hardirq.h> | 34 | #include <asm/hardirq.h> |
| 35 | #include <asm/hazards.h> | 35 | #include <asm/hazards.h> |
| 36 | #include <asm/irq.h> | 36 | #include <asm/irq.h> |
| 37 | #include <asm/idle.h> | ||
| 37 | #include <asm/mmu_context.h> | 38 | #include <asm/mmu_context.h> |
| 38 | #include <asm/mipsregs.h> | 39 | #include <asm/mipsregs.h> |
| 39 | #include <asm/cacheflush.h> | 40 | #include <asm/cacheflush.h> |
| @@ -858,7 +859,6 @@ void smtc_send_ipi(int cpu, int type, unsigned int action) | |||
| 858 | unsigned long flags; | 859 | unsigned long flags; |
| 859 | int mtflags; | 860 | int mtflags; |
| 860 | unsigned long tcrestart; | 861 | unsigned long tcrestart; |
| 861 | extern void r4k_wait_irqoff(void), __pastwait(void); | ||
| 862 | int set_resched_flag = (type == LINUX_SMP_IPI && | 862 | int set_resched_flag = (type == LINUX_SMP_IPI && |
| 863 | action == SMP_RESCHEDULE_YOURSELF); | 863 | action == SMP_RESCHEDULE_YOURSELF); |
| 864 | 864 | ||
| @@ -914,8 +914,7 @@ void smtc_send_ipi(int cpu, int type, unsigned int action) | |||
| 914 | */ | 914 | */ |
| 915 | if (cpu_wait == r4k_wait_irqoff) { | 915 | if (cpu_wait == r4k_wait_irqoff) { |
| 916 | tcrestart = read_tc_c0_tcrestart(); | 916 | tcrestart = read_tc_c0_tcrestart(); |
| 917 | if (tcrestart >= (unsigned long)r4k_wait_irqoff | 917 | if (address_is_in_r4k_wait_irqoff(tcrestart)) { |
| 918 | && tcrestart < (unsigned long)__pastwait) { | ||
| 919 | write_tc_c0_tcrestart(__pastwait); | 918 | write_tc_c0_tcrestart(__pastwait); |
| 920 | tcstatus &= ~TCSTATUS_IXMT; | 919 | tcstatus &= ~TCSTATUS_IXMT; |
| 921 | write_tc_c0_tcstatus(tcstatus); | 920 | write_tc_c0_tcstatus(tcstatus); |
diff --git a/arch/mips/kernel/traps.c b/arch/mips/kernel/traps.c index cb14db3c5764..e3be67012d78 100644 --- a/arch/mips/kernel/traps.c +++ b/arch/mips/kernel/traps.c | |||
| @@ -41,6 +41,7 @@ | |||
| 41 | #include <asm/dsp.h> | 41 | #include <asm/dsp.h> |
| 42 | #include <asm/fpu.h> | 42 | #include <asm/fpu.h> |
| 43 | #include <asm/fpu_emulator.h> | 43 | #include <asm/fpu_emulator.h> |
| 44 | #include <asm/idle.h> | ||
| 44 | #include <asm/mipsregs.h> | 45 | #include <asm/mipsregs.h> |
| 45 | #include <asm/mipsmtregs.h> | 46 | #include <asm/mipsmtregs.h> |
| 46 | #include <asm/module.h> | 47 | #include <asm/module.h> |
| @@ -57,7 +58,6 @@ | |||
| 57 | #include <asm/uasm.h> | 58 | #include <asm/uasm.h> |
| 58 | 59 | ||
| 59 | extern void check_wait(void); | 60 | extern void check_wait(void); |
| 60 | extern asmlinkage void r4k_wait(void); | ||
| 61 | extern asmlinkage void rollback_handle_int(void); | 61 | extern asmlinkage void rollback_handle_int(void); |
| 62 | extern asmlinkage void handle_int(void); | 62 | extern asmlinkage void handle_int(void); |
| 63 | extern u32 handle_tlbl[]; | 63 | extern u32 handle_tlbl[]; |
| @@ -1542,7 +1542,7 @@ static void *set_vi_srs_handler(int n, vi_handler_t addr, int srs) | |||
| 1542 | extern char except_vec_vi, except_vec_vi_lui; | 1542 | extern char except_vec_vi, except_vec_vi_lui; |
| 1543 | extern char except_vec_vi_ori, except_vec_vi_end; | 1543 | extern char except_vec_vi_ori, except_vec_vi_end; |
| 1544 | extern char rollback_except_vec_vi; | 1544 | extern char rollback_except_vec_vi; |
| 1545 | char *vec_start = (cpu_wait == r4k_wait) ? | 1545 | char *vec_start = using_rollback_handler() ? |
| 1546 | &rollback_except_vec_vi : &except_vec_vi; | 1546 | &rollback_except_vec_vi : &except_vec_vi; |
| 1547 | #ifdef CONFIG_MIPS_MT_SMTC | 1547 | #ifdef CONFIG_MIPS_MT_SMTC |
| 1548 | /* | 1548 | /* |
| @@ -1812,10 +1812,8 @@ void __init trap_init(void) | |||
| 1812 | extern char except_vec4; | 1812 | extern char except_vec4; |
| 1813 | extern char except_vec3_r4000; | 1813 | extern char except_vec3_r4000; |
| 1814 | unsigned long i; | 1814 | unsigned long i; |
| 1815 | int rollback; | ||
| 1816 | 1815 | ||
| 1817 | check_wait(); | 1816 | check_wait(); |
| 1818 | rollback = (cpu_wait == r4k_wait); | ||
| 1819 | 1817 | ||
| 1820 | #if defined(CONFIG_KGDB) | 1818 | #if defined(CONFIG_KGDB) |
| 1821 | if (kgdb_early_setup) | 1819 | if (kgdb_early_setup) |
| @@ -1892,7 +1890,8 @@ void __init trap_init(void) | |||
| 1892 | if (board_be_init) | 1890 | if (board_be_init) |
| 1893 | board_be_init(); | 1891 | board_be_init(); |
| 1894 | 1892 | ||
| 1895 | set_except_vector(0, rollback ? rollback_handle_int : handle_int); | 1893 | set_except_vector(0, using_rollback_handler() ? rollback_handle_int |
| 1894 | : handle_int); | ||
| 1896 | set_except_vector(1, handle_tlbm); | 1895 | set_except_vector(1, handle_tlbm); |
| 1897 | set_except_vector(2, handle_tlbl); | 1896 | set_except_vector(2, handle_tlbl); |
| 1898 | set_except_vector(3, handle_tlbs); | 1897 | set_except_vector(3, handle_tlbs); |
diff --git a/arch/mips/kvm/kvm_tlb.c b/arch/mips/kvm/kvm_tlb.c index e3f0d9b8b6c5..c777dd36d4a8 100644 --- a/arch/mips/kvm/kvm_tlb.c +++ b/arch/mips/kvm/kvm_tlb.c | |||
| @@ -17,6 +17,8 @@ | |||
| 17 | #include <linux/delay.h> | 17 | #include <linux/delay.h> |
| 18 | #include <linux/module.h> | 18 | #include <linux/module.h> |
| 19 | #include <linux/kvm_host.h> | 19 | #include <linux/kvm_host.h> |
| 20 | #include <linux/srcu.h> | ||
| 21 | |||
| 20 | 22 | ||
| 21 | #include <asm/cpu.h> | 23 | #include <asm/cpu.h> |
| 22 | #include <asm/bootinfo.h> | 24 | #include <asm/bootinfo.h> |
| @@ -169,21 +171,27 @@ void kvm_mips_dump_shadow_tlbs(struct kvm_vcpu *vcpu) | |||
| 169 | } | 171 | } |
| 170 | } | 172 | } |
| 171 | 173 | ||
| 172 | static void kvm_mips_map_page(struct kvm *kvm, gfn_t gfn) | 174 | static int kvm_mips_map_page(struct kvm *kvm, gfn_t gfn) |
| 173 | { | 175 | { |
| 176 | int srcu_idx, err = 0; | ||
| 174 | pfn_t pfn; | 177 | pfn_t pfn; |
| 175 | 178 | ||
| 176 | if (kvm->arch.guest_pmap[gfn] != KVM_INVALID_PAGE) | 179 | if (kvm->arch.guest_pmap[gfn] != KVM_INVALID_PAGE) |
| 177 | return; | 180 | return 0; |
| 178 | 181 | ||
| 182 | srcu_idx = srcu_read_lock(&kvm->srcu); | ||
| 179 | pfn = kvm_mips_gfn_to_pfn(kvm, gfn); | 183 | pfn = kvm_mips_gfn_to_pfn(kvm, gfn); |
| 180 | 184 | ||
| 181 | if (kvm_mips_is_error_pfn(pfn)) { | 185 | if (kvm_mips_is_error_pfn(pfn)) { |
| 182 | panic("Couldn't get pfn for gfn %#" PRIx64 "!\n", gfn); | 186 | kvm_err("Couldn't get pfn for gfn %#" PRIx64 "!\n", gfn); |
| 187 | err = -EFAULT; | ||
| 188 | goto out; | ||
| 183 | } | 189 | } |
| 184 | 190 | ||
| 185 | kvm->arch.guest_pmap[gfn] = pfn; | 191 | kvm->arch.guest_pmap[gfn] = pfn; |
| 186 | return; | 192 | out: |
| 193 | srcu_read_unlock(&kvm->srcu, srcu_idx); | ||
| 194 | return err; | ||
| 187 | } | 195 | } |
| 188 | 196 | ||
| 189 | /* Translate guest KSEG0 addresses to Host PA */ | 197 | /* Translate guest KSEG0 addresses to Host PA */ |
| @@ -207,7 +215,10 @@ unsigned long kvm_mips_translate_guest_kseg0_to_hpa(struct kvm_vcpu *vcpu, | |||
| 207 | gva); | 215 | gva); |
| 208 | return KVM_INVALID_PAGE; | 216 | return KVM_INVALID_PAGE; |
| 209 | } | 217 | } |
| 210 | kvm_mips_map_page(vcpu->kvm, gfn); | 218 | |
| 219 | if (kvm_mips_map_page(vcpu->kvm, gfn) < 0) | ||
| 220 | return KVM_INVALID_ADDR; | ||
| 221 | |||
| 211 | return (kvm->arch.guest_pmap[gfn] << PAGE_SHIFT) + offset; | 222 | return (kvm->arch.guest_pmap[gfn] << PAGE_SHIFT) + offset; |
| 212 | } | 223 | } |
| 213 | 224 | ||
| @@ -310,8 +321,11 @@ int kvm_mips_handle_kseg0_tlb_fault(unsigned long badvaddr, | |||
| 310 | even = !(gfn & 0x1); | 321 | even = !(gfn & 0x1); |
| 311 | vaddr = badvaddr & (PAGE_MASK << 1); | 322 | vaddr = badvaddr & (PAGE_MASK << 1); |
| 312 | 323 | ||
| 313 | kvm_mips_map_page(vcpu->kvm, gfn); | 324 | if (kvm_mips_map_page(vcpu->kvm, gfn) < 0) |
| 314 | kvm_mips_map_page(vcpu->kvm, gfn ^ 0x1); | 325 | return -1; |
| 326 | |||
| 327 | if (kvm_mips_map_page(vcpu->kvm, gfn ^ 0x1) < 0) | ||
| 328 | return -1; | ||
| 315 | 329 | ||
| 316 | if (even) { | 330 | if (even) { |
| 317 | pfn0 = kvm->arch.guest_pmap[gfn]; | 331 | pfn0 = kvm->arch.guest_pmap[gfn]; |
| @@ -389,8 +403,11 @@ kvm_mips_handle_mapped_seg_tlb_fault(struct kvm_vcpu *vcpu, | |||
| 389 | pfn0 = 0; | 403 | pfn0 = 0; |
| 390 | pfn1 = 0; | 404 | pfn1 = 0; |
| 391 | } else { | 405 | } else { |
| 392 | kvm_mips_map_page(kvm, mips3_tlbpfn_to_paddr(tlb->tlb_lo0) >> PAGE_SHIFT); | 406 | if (kvm_mips_map_page(kvm, mips3_tlbpfn_to_paddr(tlb->tlb_lo0) >> PAGE_SHIFT) < 0) |
| 393 | kvm_mips_map_page(kvm, mips3_tlbpfn_to_paddr(tlb->tlb_lo1) >> PAGE_SHIFT); | 407 | return -1; |
| 408 | |||
| 409 | if (kvm_mips_map_page(kvm, mips3_tlbpfn_to_paddr(tlb->tlb_lo1) >> PAGE_SHIFT) < 0) | ||
| 410 | return -1; | ||
| 394 | 411 | ||
| 395 | pfn0 = kvm->arch.guest_pmap[mips3_tlbpfn_to_paddr(tlb->tlb_lo0) >> PAGE_SHIFT]; | 412 | pfn0 = kvm->arch.guest_pmap[mips3_tlbpfn_to_paddr(tlb->tlb_lo0) >> PAGE_SHIFT]; |
| 396 | pfn1 = kvm->arch.guest_pmap[mips3_tlbpfn_to_paddr(tlb->tlb_lo1) >> PAGE_SHIFT]; | 413 | pfn1 = kvm->arch.guest_pmap[mips3_tlbpfn_to_paddr(tlb->tlb_lo1) >> PAGE_SHIFT]; |
diff --git a/arch/mips/loongson/common/reset.c b/arch/mips/loongson/common/reset.c index 35c8c6468494..65bfbb5d06f4 100644 --- a/arch/mips/loongson/common/reset.c +++ b/arch/mips/loongson/common/reset.c | |||
| @@ -12,6 +12,7 @@ | |||
| 12 | #include <linux/init.h> | 12 | #include <linux/init.h> |
| 13 | #include <linux/pm.h> | 13 | #include <linux/pm.h> |
| 14 | 14 | ||
| 15 | #include <asm/idle.h> | ||
| 15 | #include <asm/reboot.h> | 16 | #include <asm/reboot.h> |
| 16 | 17 | ||
| 17 | #include <loongson.h> | 18 | #include <loongson.h> |
diff --git a/arch/mips/loongson1/common/reset.c b/arch/mips/loongson1/common/reset.c index d4f610f9604a..547f34b69e4c 100644 --- a/arch/mips/loongson1/common/reset.c +++ b/arch/mips/loongson1/common/reset.c | |||
| @@ -9,6 +9,7 @@ | |||
| 9 | 9 | ||
| 10 | #include <linux/io.h> | 10 | #include <linux/io.h> |
| 11 | #include <linux/pm.h> | 11 | #include <linux/pm.h> |
| 12 | #include <asm/idle.h> | ||
| 12 | #include <asm/reboot.h> | 13 | #include <asm/reboot.h> |
| 13 | 14 | ||
| 14 | #include <loongson1.h> | 15 | #include <loongson1.h> |
diff --git a/arch/mips/netlogic/xlp/setup.c b/arch/mips/netlogic/xlp/setup.c index af319143b591..eaa99d28cb8e 100644 --- a/arch/mips/netlogic/xlp/setup.c +++ b/arch/mips/netlogic/xlp/setup.c | |||
| @@ -37,6 +37,7 @@ | |||
| 37 | #include <linux/pm.h> | 37 | #include <linux/pm.h> |
| 38 | #include <linux/bootmem.h> | 38 | #include <linux/bootmem.h> |
| 39 | 39 | ||
| 40 | #include <asm/idle.h> | ||
| 40 | #include <asm/reboot.h> | 41 | #include <asm/reboot.h> |
| 41 | #include <asm/time.h> | 42 | #include <asm/time.h> |
| 42 | #include <asm/bootinfo.h> | 43 | #include <asm/bootinfo.h> |
diff --git a/arch/mips/netlogic/xlr/setup.c b/arch/mips/netlogic/xlr/setup.c index e3e094100e3e..89c8c1066632 100644 --- a/arch/mips/netlogic/xlr/setup.c +++ b/arch/mips/netlogic/xlr/setup.c | |||
| @@ -36,6 +36,7 @@ | |||
| 36 | #include <linux/serial_8250.h> | 36 | #include <linux/serial_8250.h> |
| 37 | #include <linux/pm.h> | 37 | #include <linux/pm.h> |
| 38 | 38 | ||
| 39 | #include <asm/idle.h> | ||
| 39 | #include <asm/reboot.h> | 40 | #include <asm/reboot.h> |
| 40 | #include <asm/time.h> | 41 | #include <asm/time.h> |
| 41 | #include <asm/bootinfo.h> | 42 | #include <asm/bootinfo.h> |
diff --git a/arch/mips/pmcs-msp71xx/msp_setup.c b/arch/mips/pmcs-msp71xx/msp_setup.c index 1651cfdbfe7b..396b2967ad85 100644 --- a/arch/mips/pmcs-msp71xx/msp_setup.c +++ b/arch/mips/pmcs-msp71xx/msp_setup.c | |||
| @@ -12,6 +12,7 @@ | |||
| 12 | 12 | ||
| 13 | #include <asm/bootinfo.h> | 13 | #include <asm/bootinfo.h> |
| 14 | #include <asm/cacheflush.h> | 14 | #include <asm/cacheflush.h> |
| 15 | #include <asm/idle.h> | ||
| 15 | #include <asm/r4kcache.h> | 16 | #include <asm/r4kcache.h> |
| 16 | #include <asm/reboot.h> | 17 | #include <asm/reboot.h> |
| 17 | #include <asm/smp-ops.h> | 18 | #include <asm/smp-ops.h> |
diff --git a/arch/mips/txx9/generic/setup.c b/arch/mips/txx9/generic/setup.c index 5364aabc2102..681e7f86c080 100644 --- a/arch/mips/txx9/generic/setup.c +++ b/arch/mips/txx9/generic/setup.c | |||
| @@ -26,6 +26,7 @@ | |||
| 26 | #include <linux/slab.h> | 26 | #include <linux/slab.h> |
| 27 | #include <linux/irq.h> | 27 | #include <linux/irq.h> |
| 28 | #include <asm/bootinfo.h> | 28 | #include <asm/bootinfo.h> |
| 29 | #include <asm/idle.h> | ||
| 29 | #include <asm/time.h> | 30 | #include <asm/time.h> |
| 30 | #include <asm/reboot.h> | 31 | #include <asm/reboot.h> |
| 31 | #include <asm/r4kcache.h> | 32 | #include <asm/r4kcache.h> |
diff --git a/arch/mips/vr41xx/common/pmu.c b/arch/mips/vr41xx/common/pmu.c index 70a3f90131d8..d7f755833c3f 100644 --- a/arch/mips/vr41xx/common/pmu.c +++ b/arch/mips/vr41xx/common/pmu.c | |||
| @@ -27,6 +27,7 @@ | |||
| 27 | 27 | ||
| 28 | #include <asm/cacheflush.h> | 28 | #include <asm/cacheflush.h> |
| 29 | #include <asm/cpu.h> | 29 | #include <asm/cpu.h> |
| 30 | #include <asm/idle.h> | ||
| 30 | #include <asm/io.h> | 31 | #include <asm/io.h> |
| 31 | #include <asm/processor.h> | 32 | #include <asm/processor.h> |
| 32 | #include <asm/reboot.h> | 33 | #include <asm/reboot.h> |
diff --git a/arch/mips/wrppmc/reset.c b/arch/mips/wrppmc/reset.c index cc5474b24f06..80beb188ed47 100644 --- a/arch/mips/wrppmc/reset.c +++ b/arch/mips/wrppmc/reset.c | |||
| @@ -9,6 +9,7 @@ | |||
| 9 | #include <linux/kernel.h> | 9 | #include <linux/kernel.h> |
| 10 | 10 | ||
| 11 | #include <asm/cacheflush.h> | 11 | #include <asm/cacheflush.h> |
| 12 | #include <asm/idle.h> | ||
| 12 | #include <asm/mipsregs.h> | 13 | #include <asm/mipsregs.h> |
| 13 | #include <asm/processor.h> | 14 | #include <asm/processor.h> |
| 14 | 15 | ||
diff --git a/arch/parisc/include/asm/assembly.h b/arch/parisc/include/asm/assembly.h index 89fb40005e3f..0da848232344 100644 --- a/arch/parisc/include/asm/assembly.h +++ b/arch/parisc/include/asm/assembly.h | |||
| @@ -438,7 +438,6 @@ | |||
| 438 | SAVE_SP (%sr4, PT_SR4 (\regs)) | 438 | SAVE_SP (%sr4, PT_SR4 (\regs)) |
| 439 | SAVE_SP (%sr5, PT_SR5 (\regs)) | 439 | SAVE_SP (%sr5, PT_SR5 (\regs)) |
| 440 | SAVE_SP (%sr6, PT_SR6 (\regs)) | 440 | SAVE_SP (%sr6, PT_SR6 (\regs)) |
| 441 | SAVE_SP (%sr7, PT_SR7 (\regs)) | ||
| 442 | 441 | ||
| 443 | SAVE_CR (%cr17, PT_IASQ0(\regs)) | 442 | SAVE_CR (%cr17, PT_IASQ0(\regs)) |
| 444 | mtctl %r0, %cr17 | 443 | mtctl %r0, %cr17 |
diff --git a/arch/parisc/include/asm/hardirq.h b/arch/parisc/include/asm/hardirq.h index c19f7138ba48..241c34518465 100644 --- a/arch/parisc/include/asm/hardirq.h +++ b/arch/parisc/include/asm/hardirq.h | |||
| @@ -17,17 +17,14 @@ | |||
| 17 | 17 | ||
| 18 | typedef struct { | 18 | typedef struct { |
| 19 | unsigned int __softirq_pending; | 19 | unsigned int __softirq_pending; |
| 20 | #ifdef CONFIG_DEBUG_STACKOVERFLOW | ||
| 21 | unsigned int kernel_stack_usage; | 20 | unsigned int kernel_stack_usage; |
| 22 | #ifdef CONFIG_IRQSTACKS | ||
| 23 | unsigned int irq_stack_usage; | 21 | unsigned int irq_stack_usage; |
| 24 | unsigned int irq_stack_counter; | ||
| 25 | #endif | ||
| 26 | #endif | ||
| 27 | #ifdef CONFIG_SMP | 22 | #ifdef CONFIG_SMP |
| 28 | unsigned int irq_resched_count; | 23 | unsigned int irq_resched_count; |
| 29 | unsigned int irq_call_count; | 24 | unsigned int irq_call_count; |
| 30 | #endif | 25 | #endif |
| 26 | unsigned int irq_unaligned_count; | ||
| 27 | unsigned int irq_fpassist_count; | ||
| 31 | unsigned int irq_tlb_count; | 28 | unsigned int irq_tlb_count; |
| 32 | } ____cacheline_aligned irq_cpustat_t; | 29 | } ____cacheline_aligned irq_cpustat_t; |
| 33 | 30 | ||
diff --git a/arch/parisc/include/asm/processor.h b/arch/parisc/include/asm/processor.h index cfbc43929cf6..cc2290a3cace 100644 --- a/arch/parisc/include/asm/processor.h +++ b/arch/parisc/include/asm/processor.h | |||
| @@ -17,7 +17,6 @@ | |||
| 17 | #include <asm/ptrace.h> | 17 | #include <asm/ptrace.h> |
| 18 | #include <asm/types.h> | 18 | #include <asm/types.h> |
| 19 | #include <asm/percpu.h> | 19 | #include <asm/percpu.h> |
| 20 | |||
| 21 | #endif /* __ASSEMBLY__ */ | 20 | #endif /* __ASSEMBLY__ */ |
| 22 | 21 | ||
| 23 | /* | 22 | /* |
| @@ -59,26 +58,6 @@ | |||
| 59 | #ifndef __ASSEMBLY__ | 58 | #ifndef __ASSEMBLY__ |
| 60 | 59 | ||
| 61 | /* | 60 | /* |
| 62 | * IRQ STACK - used for irq handler | ||
| 63 | */ | ||
| 64 | #ifdef __KERNEL__ | ||
| 65 | |||
| 66 | #include <linux/spinlock_types.h> | ||
| 67 | |||
| 68 | #define IRQ_STACK_SIZE (4096 << 2) /* 16k irq stack size */ | ||
| 69 | |||
| 70 | union irq_stack_union { | ||
| 71 | unsigned long stack[IRQ_STACK_SIZE/sizeof(unsigned long)]; | ||
| 72 | raw_spinlock_t lock; | ||
| 73 | }; | ||
| 74 | |||
| 75 | DECLARE_PER_CPU(union irq_stack_union, irq_stack_union); | ||
| 76 | |||
| 77 | void call_on_stack(unsigned long p1, void *func, unsigned long new_stack); | ||
| 78 | |||
| 79 | #endif /* __KERNEL__ */ | ||
| 80 | |||
| 81 | /* | ||
| 82 | * Data detected about CPUs at boot time which is the same for all CPU's. | 61 | * Data detected about CPUs at boot time which is the same for all CPU's. |
| 83 | * HP boxes are SMP - ie identical processors. | 62 | * HP boxes are SMP - ie identical processors. |
| 84 | * | 63 | * |
diff --git a/arch/parisc/kernel/entry.S b/arch/parisc/kernel/entry.S index ae27cb6ce19a..e8f07dd28401 100644 --- a/arch/parisc/kernel/entry.S +++ b/arch/parisc/kernel/entry.S | |||
| @@ -65,15 +65,11 @@ | |||
| 65 | rsm PSW_SM_I, %r0 /* barrier for "Relied upon Translation */ | 65 | rsm PSW_SM_I, %r0 /* barrier for "Relied upon Translation */ |
| 66 | mtsp %r0, %sr4 | 66 | mtsp %r0, %sr4 |
| 67 | mtsp %r0, %sr5 | 67 | mtsp %r0, %sr5 |
| 68 | mfsp %sr7, %r1 | 68 | mtsp %r0, %sr6 |
| 69 | or,= %r0,%r1,%r0 /* Only save sr7 in sr3 if sr7 != 0 */ | ||
| 70 | mtsp %r1, %sr3 | ||
| 71 | tovirt_r1 %r29 | 69 | tovirt_r1 %r29 |
| 72 | load32 KERNEL_PSW, %r1 | 70 | load32 KERNEL_PSW, %r1 |
| 73 | 71 | ||
| 74 | rsm PSW_SM_QUIET,%r0 /* second "heavy weight" ctl op */ | 72 | rsm PSW_SM_QUIET,%r0 /* second "heavy weight" ctl op */ |
| 75 | mtsp %r0, %sr6 | ||
| 76 | mtsp %r0, %sr7 | ||
| 77 | mtctl %r0, %cr17 /* Clear IIASQ tail */ | 73 | mtctl %r0, %cr17 /* Clear IIASQ tail */ |
| 78 | mtctl %r0, %cr17 /* Clear IIASQ head */ | 74 | mtctl %r0, %cr17 /* Clear IIASQ head */ |
| 79 | mtctl %r1, %ipsw | 75 | mtctl %r1, %ipsw |
| @@ -119,17 +115,20 @@ | |||
| 119 | 115 | ||
| 120 | /* we save the registers in the task struct */ | 116 | /* we save the registers in the task struct */ |
| 121 | 117 | ||
| 118 | copy %r30, %r17 | ||
| 122 | mfctl %cr30, %r1 | 119 | mfctl %cr30, %r1 |
| 120 | ldo THREAD_SZ_ALGN(%r1), %r30 | ||
| 121 | mtsp %r0,%sr7 | ||
| 122 | mtsp %r16,%sr3 | ||
| 123 | tophys %r1,%r9 | 123 | tophys %r1,%r9 |
| 124 | LDREG TI_TASK(%r9), %r1 /* thread_info -> task_struct */ | 124 | LDREG TI_TASK(%r9), %r1 /* thread_info -> task_struct */ |
| 125 | tophys %r1,%r9 | 125 | tophys %r1,%r9 |
| 126 | ldo TASK_REGS(%r9),%r9 | 126 | ldo TASK_REGS(%r9),%r9 |
| 127 | STREG %r30, PT_GR30(%r9) | 127 | STREG %r17,PT_GR30(%r9) |
| 128 | STREG %r29,PT_GR29(%r9) | 128 | STREG %r29,PT_GR29(%r9) |
| 129 | STREG %r26,PT_GR26(%r9) | 129 | STREG %r26,PT_GR26(%r9) |
| 130 | STREG %r16,PT_SR7(%r9) | ||
| 130 | copy %r9,%r29 | 131 | copy %r9,%r29 |
| 131 | mfctl %cr30, %r1 | ||
| 132 | ldo THREAD_SZ_ALGN(%r1), %r30 | ||
| 133 | .endm | 132 | .endm |
| 134 | 133 | ||
| 135 | .macro get_stack_use_r30 | 134 | .macro get_stack_use_r30 |
| @@ -137,10 +136,12 @@ | |||
| 137 | /* we put a struct pt_regs on the stack and save the registers there */ | 136 | /* we put a struct pt_regs on the stack and save the registers there */ |
| 138 | 137 | ||
| 139 | tophys %r30,%r9 | 138 | tophys %r30,%r9 |
| 140 | STREG %r30,PT_GR30(%r9) | 139 | copy %r30,%r1 |
| 141 | ldo PT_SZ_ALGN(%r30),%r30 | 140 | ldo PT_SZ_ALGN(%r30),%r30 |
| 141 | STREG %r1,PT_GR30(%r9) | ||
| 142 | STREG %r29,PT_GR29(%r9) | 142 | STREG %r29,PT_GR29(%r9) |
| 143 | STREG %r26,PT_GR26(%r9) | 143 | STREG %r26,PT_GR26(%r9) |
| 144 | STREG %r16,PT_SR7(%r9) | ||
| 144 | copy %r9,%r29 | 145 | copy %r9,%r29 |
| 145 | .endm | 146 | .endm |
| 146 | 147 | ||
diff --git a/arch/parisc/kernel/hardware.c b/arch/parisc/kernel/hardware.c index f7752f6af29e..9e2d2e408529 100644 --- a/arch/parisc/kernel/hardware.c +++ b/arch/parisc/kernel/hardware.c | |||
| @@ -222,6 +222,7 @@ static struct hp_hardware hp_hardware_list[] = { | |||
| 222 | {HPHW_NPROC,0x5DD,0x4,0x81,"Duet W2"}, | 222 | {HPHW_NPROC,0x5DD,0x4,0x81,"Duet W2"}, |
| 223 | {HPHW_NPROC,0x5DE,0x4,0x81,"Piccolo W+"}, | 223 | {HPHW_NPROC,0x5DE,0x4,0x81,"Piccolo W+"}, |
| 224 | {HPHW_NPROC,0x5DF,0x4,0x81,"Cantata W2"}, | 224 | {HPHW_NPROC,0x5DF,0x4,0x81,"Cantata W2"}, |
| 225 | {HPHW_NPROC,0x5DF,0x0,0x00,"Marcato W+? (rp5470)"}, | ||
| 225 | {HPHW_NPROC,0x5E0,0x4,0x91,"Cantata DC- W2"}, | 226 | {HPHW_NPROC,0x5E0,0x4,0x91,"Cantata DC- W2"}, |
| 226 | {HPHW_NPROC,0x5E1,0x4,0x91,"Crescendo DC- W2"}, | 227 | {HPHW_NPROC,0x5E1,0x4,0x91,"Crescendo DC- W2"}, |
| 227 | {HPHW_NPROC,0x5E2,0x4,0x91,"Crescendo 650 W2"}, | 228 | {HPHW_NPROC,0x5E2,0x4,0x91,"Crescendo 650 W2"}, |
diff --git a/arch/parisc/kernel/irq.c b/arch/parisc/kernel/irq.c index 55237a70e197..2e6443b1e922 100644 --- a/arch/parisc/kernel/irq.c +++ b/arch/parisc/kernel/irq.c | |||
| @@ -27,11 +27,11 @@ | |||
| 27 | #include <linux/interrupt.h> | 27 | #include <linux/interrupt.h> |
| 28 | #include <linux/kernel_stat.h> | 28 | #include <linux/kernel_stat.h> |
| 29 | #include <linux/seq_file.h> | 29 | #include <linux/seq_file.h> |
| 30 | #include <linux/spinlock.h> | ||
| 31 | #include <linux/types.h> | 30 | #include <linux/types.h> |
| 32 | #include <asm/io.h> | 31 | #include <asm/io.h> |
| 33 | 32 | ||
| 34 | #include <asm/smp.h> | 33 | #include <asm/smp.h> |
| 34 | #include <asm/ldcw.h> | ||
| 35 | 35 | ||
| 36 | #undef PARISC_IRQ_CR16_COUNTS | 36 | #undef PARISC_IRQ_CR16_COUNTS |
| 37 | 37 | ||
| @@ -172,10 +172,6 @@ int arch_show_interrupts(struct seq_file *p, int prec) | |||
| 172 | for_each_online_cpu(j) | 172 | for_each_online_cpu(j) |
| 173 | seq_printf(p, "%10u ", irq_stats(j)->irq_stack_usage); | 173 | seq_printf(p, "%10u ", irq_stats(j)->irq_stack_usage); |
| 174 | seq_puts(p, " Interrupt stack usage\n"); | 174 | seq_puts(p, " Interrupt stack usage\n"); |
| 175 | seq_printf(p, "%*s: ", prec, "ISC"); | ||
| 176 | for_each_online_cpu(j) | ||
| 177 | seq_printf(p, "%10u ", irq_stats(j)->irq_stack_counter); | ||
| 178 | seq_puts(p, " Interrupt stack usage counter\n"); | ||
| 179 | # endif | 175 | # endif |
| 180 | #endif | 176 | #endif |
| 181 | #ifdef CONFIG_SMP | 177 | #ifdef CONFIG_SMP |
| @@ -188,6 +184,14 @@ int arch_show_interrupts(struct seq_file *p, int prec) | |||
| 188 | seq_printf(p, "%10u ", irq_stats(j)->irq_call_count); | 184 | seq_printf(p, "%10u ", irq_stats(j)->irq_call_count); |
| 189 | seq_puts(p, " Function call interrupts\n"); | 185 | seq_puts(p, " Function call interrupts\n"); |
| 190 | #endif | 186 | #endif |
| 187 | seq_printf(p, "%*s: ", prec, "UAH"); | ||
| 188 | for_each_online_cpu(j) | ||
| 189 | seq_printf(p, "%10u ", irq_stats(j)->irq_unaligned_count); | ||
| 190 | seq_puts(p, " Unaligned access handler traps\n"); | ||
| 191 | seq_printf(p, "%*s: ", prec, "FPA"); | ||
| 192 | for_each_online_cpu(j) | ||
| 193 | seq_printf(p, "%10u ", irq_stats(j)->irq_fpassist_count); | ||
| 194 | seq_puts(p, " Floating point assist traps\n"); | ||
| 191 | seq_printf(p, "%*s: ", prec, "TLB"); | 195 | seq_printf(p, "%*s: ", prec, "TLB"); |
| 192 | for_each_online_cpu(j) | 196 | for_each_online_cpu(j) |
| 193 | seq_printf(p, "%10u ", irq_stats(j)->irq_tlb_count); | 197 | seq_printf(p, "%10u ", irq_stats(j)->irq_tlb_count); |
| @@ -376,6 +380,24 @@ static inline int eirr_to_irq(unsigned long eirr) | |||
| 376 | return (BITS_PER_LONG - bit) + TIMER_IRQ; | 380 | return (BITS_PER_LONG - bit) + TIMER_IRQ; |
| 377 | } | 381 | } |
| 378 | 382 | ||
| 383 | #ifdef CONFIG_IRQSTACKS | ||
| 384 | /* | ||
| 385 | * IRQ STACK - used for irq handler | ||
| 386 | */ | ||
| 387 | #define IRQ_STACK_SIZE (4096 << 2) /* 16k irq stack size */ | ||
| 388 | |||
| 389 | union irq_stack_union { | ||
| 390 | unsigned long stack[IRQ_STACK_SIZE/sizeof(unsigned long)]; | ||
| 391 | volatile unsigned int slock[4]; | ||
| 392 | volatile unsigned int lock[1]; | ||
| 393 | }; | ||
| 394 | |||
| 395 | DEFINE_PER_CPU(union irq_stack_union, irq_stack_union) = { | ||
| 396 | .slock = { 1,1,1,1 }, | ||
| 397 | }; | ||
| 398 | #endif | ||
| 399 | |||
| 400 | |||
| 379 | int sysctl_panic_on_stackoverflow = 1; | 401 | int sysctl_panic_on_stackoverflow = 1; |
| 380 | 402 | ||
| 381 | static inline void stack_overflow_check(struct pt_regs *regs) | 403 | static inline void stack_overflow_check(struct pt_regs *regs) |
| @@ -442,27 +464,26 @@ panic_check: | |||
| 442 | } | 464 | } |
| 443 | 465 | ||
| 444 | #ifdef CONFIG_IRQSTACKS | 466 | #ifdef CONFIG_IRQSTACKS |
| 445 | DEFINE_PER_CPU(union irq_stack_union, irq_stack_union) = { | 467 | /* in entry.S: */ |
| 446 | .lock = __RAW_SPIN_LOCK_UNLOCKED((irq_stack_union).lock) | 468 | void call_on_stack(unsigned long p1, void *func, unsigned long new_stack); |
| 447 | }; | ||
| 448 | 469 | ||
| 449 | static void execute_on_irq_stack(void *func, unsigned long param1) | 470 | static void execute_on_irq_stack(void *func, unsigned long param1) |
| 450 | { | 471 | { |
| 451 | union irq_stack_union *union_ptr; | 472 | union irq_stack_union *union_ptr; |
| 452 | unsigned long irq_stack; | 473 | unsigned long irq_stack; |
| 453 | raw_spinlock_t *irq_stack_in_use; | 474 | volatile unsigned int *irq_stack_in_use; |
| 454 | 475 | ||
| 455 | union_ptr = &per_cpu(irq_stack_union, smp_processor_id()); | 476 | union_ptr = &per_cpu(irq_stack_union, smp_processor_id()); |
| 456 | irq_stack = (unsigned long) &union_ptr->stack; | 477 | irq_stack = (unsigned long) &union_ptr->stack; |
| 457 | irq_stack = ALIGN(irq_stack + sizeof(irq_stack_union.lock), | 478 | irq_stack = ALIGN(irq_stack + sizeof(irq_stack_union.slock), |
| 458 | 64); /* align for stack frame usage */ | 479 | 64); /* align for stack frame usage */ |
| 459 | 480 | ||
| 460 | /* We may be called recursive. If we are already using the irq stack, | 481 | /* We may be called recursive. If we are already using the irq stack, |
| 461 | * just continue to use it. Use spinlocks to serialize | 482 | * just continue to use it. Use spinlocks to serialize |
| 462 | * the irq stack usage. | 483 | * the irq stack usage. |
| 463 | */ | 484 | */ |
| 464 | irq_stack_in_use = &union_ptr->lock; | 485 | irq_stack_in_use = (volatile unsigned int *)__ldcw_align(union_ptr); |
| 465 | if (!raw_spin_trylock(irq_stack_in_use)) { | 486 | if (!__ldcw(irq_stack_in_use)) { |
| 466 | void (*direct_call)(unsigned long p1) = func; | 487 | void (*direct_call)(unsigned long p1) = func; |
| 467 | 488 | ||
| 468 | /* We are using the IRQ stack already. | 489 | /* We are using the IRQ stack already. |
| @@ -474,10 +495,8 @@ static void execute_on_irq_stack(void *func, unsigned long param1) | |||
| 474 | /* This is where we switch to the IRQ stack. */ | 495 | /* This is where we switch to the IRQ stack. */ |
| 475 | call_on_stack(param1, func, irq_stack); | 496 | call_on_stack(param1, func, irq_stack); |
| 476 | 497 | ||
| 477 | __inc_irq_stat(irq_stack_counter); | ||
| 478 | |||
| 479 | /* free up irq stack usage. */ | 498 | /* free up irq stack usage. */ |
| 480 | do_raw_spin_unlock(irq_stack_in_use); | 499 | *irq_stack_in_use = 1; |
| 481 | } | 500 | } |
| 482 | 501 | ||
| 483 | asmlinkage void do_softirq(void) | 502 | asmlinkage void do_softirq(void) |
diff --git a/arch/parisc/kernel/pacache.S b/arch/parisc/kernel/pacache.S index 5e1de6072be5..36d7f402e48e 100644 --- a/arch/parisc/kernel/pacache.S +++ b/arch/parisc/kernel/pacache.S | |||
| @@ -605,14 +605,14 @@ ENTRY(copy_user_page_asm) | |||
| 605 | convert_phys_for_tlb_insert20 %r26 /* convert phys addr to tlb insert format */ | 605 | convert_phys_for_tlb_insert20 %r26 /* convert phys addr to tlb insert format */ |
| 606 | convert_phys_for_tlb_insert20 %r23 /* convert phys addr to tlb insert format */ | 606 | convert_phys_for_tlb_insert20 %r23 /* convert phys addr to tlb insert format */ |
| 607 | depd %r24,63,22, %r28 /* Form aliased virtual address 'to' */ | 607 | depd %r24,63,22, %r28 /* Form aliased virtual address 'to' */ |
| 608 | depdi 0, 63,PAGE_SHIFT, %r28 /* Clear any offset bits */ | 608 | depdi 0, 63,PAGE_SHIFT, %r28 /* Clear any offset bits */ |
| 609 | copy %r28, %r29 | 609 | copy %r28, %r29 |
| 610 | depdi 1, 41,1, %r29 /* Form aliased virtual address 'from' */ | 610 | depdi 1, 41,1, %r29 /* Form aliased virtual address 'from' */ |
| 611 | #else | 611 | #else |
| 612 | extrw,u %r26, 24,25, %r26 /* convert phys addr to tlb insert format */ | 612 | extrw,u %r26, 24,25, %r26 /* convert phys addr to tlb insert format */ |
| 613 | extrw,u %r23, 24,25, %r23 /* convert phys addr to tlb insert format */ | 613 | extrw,u %r23, 24,25, %r23 /* convert phys addr to tlb insert format */ |
| 614 | depw %r24, 31,22, %r28 /* Form aliased virtual address 'to' */ | 614 | depw %r24, 31,22, %r28 /* Form aliased virtual address 'to' */ |
| 615 | depwi 0, 31,12, %r28 /* Clear any offset bits */ | 615 | depwi 0, 31,PAGE_SHIFT, %r28 /* Clear any offset bits */ |
| 616 | copy %r28, %r29 | 616 | copy %r28, %r29 |
| 617 | depwi 1, 9,1, %r29 /* Form aliased virtual address 'from' */ | 617 | depwi 1, 9,1, %r29 /* Form aliased virtual address 'from' */ |
| 618 | #endif | 618 | #endif |
| @@ -762,7 +762,7 @@ ENTRY(clear_user_page_asm) | |||
| 762 | #else | 762 | #else |
| 763 | extrw,u %r26, 24,25, %r26 /* convert phys addr to tlb insert format */ | 763 | extrw,u %r26, 24,25, %r26 /* convert phys addr to tlb insert format */ |
| 764 | depw %r25, 31,22, %r28 /* Form aliased virtual address 'to' */ | 764 | depw %r25, 31,22, %r28 /* Form aliased virtual address 'to' */ |
| 765 | depwi 0, 31,12, %r28 /* Clear any offset bits */ | 765 | depwi 0, 31,PAGE_SHIFT, %r28 /* Clear any offset bits */ |
| 766 | #endif | 766 | #endif |
| 767 | 767 | ||
| 768 | /* Purge any old translation */ | 768 | /* Purge any old translation */ |
| @@ -846,7 +846,7 @@ ENTRY(flush_dcache_page_asm) | |||
| 846 | #else | 846 | #else |
| 847 | extrw,u %r26, 24,25, %r26 /* convert phys addr to tlb insert format */ | 847 | extrw,u %r26, 24,25, %r26 /* convert phys addr to tlb insert format */ |
| 848 | depw %r25, 31,22, %r28 /* Form aliased virtual address 'to' */ | 848 | depw %r25, 31,22, %r28 /* Form aliased virtual address 'to' */ |
| 849 | depwi 0, 31,12, %r28 /* Clear any offset bits */ | 849 | depwi 0, 31,PAGE_SHIFT, %r28 /* Clear any offset bits */ |
| 850 | #endif | 850 | #endif |
| 851 | 851 | ||
| 852 | /* Purge any old translation */ | 852 | /* Purge any old translation */ |
| @@ -918,11 +918,11 @@ ENTRY(flush_icache_page_asm) | |||
| 918 | #endif | 918 | #endif |
| 919 | convert_phys_for_tlb_insert20 %r26 /* convert phys addr to tlb insert format */ | 919 | convert_phys_for_tlb_insert20 %r26 /* convert phys addr to tlb insert format */ |
| 920 | depd %r25, 63,22, %r28 /* Form aliased virtual address 'to' */ | 920 | depd %r25, 63,22, %r28 /* Form aliased virtual address 'to' */ |
| 921 | depdi 0, 63,PAGE_SHIFT, %r28 /* Clear any offset bits */ | 921 | depdi 0, 63,PAGE_SHIFT, %r28 /* Clear any offset bits */ |
| 922 | #else | 922 | #else |
| 923 | extrw,u %r26, 24,25, %r26 /* convert phys addr to tlb insert format */ | 923 | extrw,u %r26, 24,25, %r26 /* convert phys addr to tlb insert format */ |
| 924 | depw %r25, 31,22, %r28 /* Form aliased virtual address 'to' */ | 924 | depw %r25, 31,22, %r28 /* Form aliased virtual address 'to' */ |
| 925 | depwi 0, 31,12, %r28 /* Clear any offset bits */ | 925 | depwi 0, 31,PAGE_SHIFT, %r28 /* Clear any offset bits */ |
| 926 | #endif | 926 | #endif |
| 927 | 927 | ||
| 928 | /* Purge any old translation */ | 928 | /* Purge any old translation */ |
diff --git a/arch/parisc/kernel/traps.c b/arch/parisc/kernel/traps.c index fe41a98043bb..04e47c6a4562 100644 --- a/arch/parisc/kernel/traps.c +++ b/arch/parisc/kernel/traps.c | |||
| @@ -646,6 +646,7 @@ void notrace handle_interruption(int code, struct pt_regs *regs) | |||
| 646 | case 14: | 646 | case 14: |
| 647 | /* Assist Exception Trap, i.e. floating point exception. */ | 647 | /* Assist Exception Trap, i.e. floating point exception. */ |
| 648 | die_if_kernel("Floating point exception", regs, 0); /* quiet */ | 648 | die_if_kernel("Floating point exception", regs, 0); /* quiet */ |
| 649 | __inc_irq_stat(irq_fpassist_count); | ||
| 649 | handle_fpe(regs); | 650 | handle_fpe(regs); |
| 650 | return; | 651 | return; |
| 651 | 652 | ||
diff --git a/arch/parisc/kernel/unaligned.c b/arch/parisc/kernel/unaligned.c index 234e3682cf09..d7c0acb35ec2 100644 --- a/arch/parisc/kernel/unaligned.c +++ b/arch/parisc/kernel/unaligned.c | |||
| @@ -27,6 +27,7 @@ | |||
| 27 | #include <linux/signal.h> | 27 | #include <linux/signal.h> |
| 28 | #include <linux/ratelimit.h> | 28 | #include <linux/ratelimit.h> |
| 29 | #include <asm/uaccess.h> | 29 | #include <asm/uaccess.h> |
| 30 | #include <asm/hardirq.h> | ||
| 30 | 31 | ||
| 31 | /* #define DEBUG_UNALIGNED 1 */ | 32 | /* #define DEBUG_UNALIGNED 1 */ |
| 32 | 33 | ||
| @@ -454,6 +455,8 @@ void handle_unaligned(struct pt_regs *regs) | |||
| 454 | struct siginfo si; | 455 | struct siginfo si; |
| 455 | register int flop=0; /* true if this is a flop */ | 456 | register int flop=0; /* true if this is a flop */ |
| 456 | 457 | ||
| 458 | __inc_irq_stat(irq_unaligned_count); | ||
| 459 | |||
| 457 | /* log a message with pacing */ | 460 | /* log a message with pacing */ |
| 458 | if (user_mode(regs)) { | 461 | if (user_mode(regs)) { |
| 459 | if (current->thread.flags & PARISC_UAC_SIGBUS) { | 462 | if (current->thread.flags & PARISC_UAC_SIGBUS) { |
diff --git a/arch/powerpc/configs/ps3_defconfig b/arch/powerpc/configs/ps3_defconfig index f79196232917..139a8308070c 100644 --- a/arch/powerpc/configs/ps3_defconfig +++ b/arch/powerpc/configs/ps3_defconfig | |||
| @@ -136,7 +136,6 @@ CONFIG_HID_SMARTJOYPLUS=m | |||
| 136 | CONFIG_USB_HIDDEV=y | 136 | CONFIG_USB_HIDDEV=y |
| 137 | CONFIG_USB=m | 137 | CONFIG_USB=m |
| 138 | CONFIG_USB_ANNOUNCE_NEW_DEVICES=y | 138 | CONFIG_USB_ANNOUNCE_NEW_DEVICES=y |
| 139 | CONFIG_USB_SUSPEND=y | ||
| 140 | CONFIG_USB_MON=m | 139 | CONFIG_USB_MON=m |
| 141 | CONFIG_USB_EHCI_HCD=m | 140 | CONFIG_USB_EHCI_HCD=m |
| 142 | # CONFIG_USB_EHCI_HCD_PPC_OF is not set | 141 | # CONFIG_USB_EHCI_HCD_PPC_OF is not set |
diff --git a/arch/powerpc/include/asm/pci-bridge.h b/arch/powerpc/include/asm/pci-bridge.h index 8b11b5bd9938..2c1d8cb9b265 100644 --- a/arch/powerpc/include/asm/pci-bridge.h +++ b/arch/powerpc/include/asm/pci-bridge.h | |||
| @@ -174,6 +174,8 @@ struct pci_dn { | |||
| 174 | /* Get the pointer to a device_node's pci_dn */ | 174 | /* Get the pointer to a device_node's pci_dn */ |
| 175 | #define PCI_DN(dn) ((struct pci_dn *) (dn)->data) | 175 | #define PCI_DN(dn) ((struct pci_dn *) (dn)->data) |
| 176 | 176 | ||
| 177 | extern struct pci_dn *pci_get_pdn(struct pci_dev *pdev); | ||
| 178 | |||
| 177 | extern void * update_dn_pci_info(struct device_node *dn, void *data); | 179 | extern void * update_dn_pci_info(struct device_node *dn, void *data); |
| 178 | 180 | ||
| 179 | static inline int pci_device_from_OF_node(struct device_node *np, | 181 | static inline int pci_device_from_OF_node(struct device_node *np, |
diff --git a/arch/powerpc/include/asm/processor.h b/arch/powerpc/include/asm/processor.h index d7e67ca8b4a6..594db6bc093c 100644 --- a/arch/powerpc/include/asm/processor.h +++ b/arch/powerpc/include/asm/processor.h | |||
| @@ -284,6 +284,12 @@ struct thread_struct { | |||
| 284 | unsigned long ebbrr; | 284 | unsigned long ebbrr; |
| 285 | unsigned long ebbhr; | 285 | unsigned long ebbhr; |
| 286 | unsigned long bescr; | 286 | unsigned long bescr; |
| 287 | unsigned long siar; | ||
| 288 | unsigned long sdar; | ||
| 289 | unsigned long sier; | ||
| 290 | unsigned long mmcr0; | ||
| 291 | unsigned long mmcr2; | ||
| 292 | unsigned long mmcra; | ||
| 287 | #endif | 293 | #endif |
| 288 | }; | 294 | }; |
| 289 | 295 | ||
diff --git a/arch/powerpc/kernel/asm-offsets.c b/arch/powerpc/kernel/asm-offsets.c index b51a97cfedf8..6f16ffafa6f0 100644 --- a/arch/powerpc/kernel/asm-offsets.c +++ b/arch/powerpc/kernel/asm-offsets.c | |||
| @@ -127,6 +127,12 @@ int main(void) | |||
| 127 | DEFINE(THREAD_BESCR, offsetof(struct thread_struct, bescr)); | 127 | DEFINE(THREAD_BESCR, offsetof(struct thread_struct, bescr)); |
| 128 | DEFINE(THREAD_EBBHR, offsetof(struct thread_struct, ebbhr)); | 128 | DEFINE(THREAD_EBBHR, offsetof(struct thread_struct, ebbhr)); |
| 129 | DEFINE(THREAD_EBBRR, offsetof(struct thread_struct, ebbrr)); | 129 | DEFINE(THREAD_EBBRR, offsetof(struct thread_struct, ebbrr)); |
| 130 | DEFINE(THREAD_SIAR, offsetof(struct thread_struct, siar)); | ||
| 131 | DEFINE(THREAD_SDAR, offsetof(struct thread_struct, sdar)); | ||
| 132 | DEFINE(THREAD_SIER, offsetof(struct thread_struct, sier)); | ||
| 133 | DEFINE(THREAD_MMCR0, offsetof(struct thread_struct, mmcr0)); | ||
| 134 | DEFINE(THREAD_MMCR2, offsetof(struct thread_struct, mmcr2)); | ||
| 135 | DEFINE(THREAD_MMCRA, offsetof(struct thread_struct, mmcra)); | ||
| 130 | #endif | 136 | #endif |
| 131 | #ifdef CONFIG_PPC_TRANSACTIONAL_MEM | 137 | #ifdef CONFIG_PPC_TRANSACTIONAL_MEM |
| 132 | DEFINE(PACATMSCRATCH, offsetof(struct paca_struct, tm_scratch)); | 138 | DEFINE(PACATMSCRATCH, offsetof(struct paca_struct, tm_scratch)); |
diff --git a/arch/powerpc/kernel/cpu_setup_power.S b/arch/powerpc/kernel/cpu_setup_power.S index a283b6442b26..18b5b9cf8e37 100644 --- a/arch/powerpc/kernel/cpu_setup_power.S +++ b/arch/powerpc/kernel/cpu_setup_power.S | |||
| @@ -135,8 +135,12 @@ __init_HFSCR: | |||
| 135 | blr | 135 | blr |
| 136 | 136 | ||
| 137 | __init_TLB: | 137 | __init_TLB: |
| 138 | /* Clear the TLB */ | 138 | /* |
| 139 | li r6,128 | 139 | * Clear the TLB using the "IS 3" form of tlbiel instruction |
| 140 | * (invalidate by congruence class). P7 has 128 CCs, P8 has 512 | ||
| 141 | * so we just always do 512 | ||
| 142 | */ | ||
| 143 | li r6,512 | ||
| 140 | mtctr r6 | 144 | mtctr r6 |
| 141 | li r7,0xc00 /* IS field = 0b11 */ | 145 | li r7,0xc00 /* IS field = 0b11 */ |
| 142 | ptesync | 146 | ptesync |
diff --git a/arch/powerpc/kernel/entry_64.S b/arch/powerpc/kernel/entry_64.S index 51cfb8fc301f..0e9095e47b5b 100644 --- a/arch/powerpc/kernel/entry_64.S +++ b/arch/powerpc/kernel/entry_64.S | |||
| @@ -465,6 +465,20 @@ BEGIN_FTR_SECTION | |||
| 465 | std r0, THREAD_EBBHR(r3) | 465 | std r0, THREAD_EBBHR(r3) |
| 466 | mfspr r0, SPRN_EBBRR | 466 | mfspr r0, SPRN_EBBRR |
| 467 | std r0, THREAD_EBBRR(r3) | 467 | std r0, THREAD_EBBRR(r3) |
| 468 | |||
| 469 | /* PMU registers made user read/(write) by EBB */ | ||
| 470 | mfspr r0, SPRN_SIAR | ||
| 471 | std r0, THREAD_SIAR(r3) | ||
| 472 | mfspr r0, SPRN_SDAR | ||
| 473 | std r0, THREAD_SDAR(r3) | ||
| 474 | mfspr r0, SPRN_SIER | ||
| 475 | std r0, THREAD_SIER(r3) | ||
| 476 | mfspr r0, SPRN_MMCR0 | ||
| 477 | std r0, THREAD_MMCR0(r3) | ||
| 478 | mfspr r0, SPRN_MMCR2 | ||
| 479 | std r0, THREAD_MMCR2(r3) | ||
| 480 | mfspr r0, SPRN_MMCRA | ||
| 481 | std r0, THREAD_MMCRA(r3) | ||
| 468 | END_FTR_SECTION_IFSET(CPU_FTR_ARCH_207S) | 482 | END_FTR_SECTION_IFSET(CPU_FTR_ARCH_207S) |
| 469 | #endif | 483 | #endif |
| 470 | 484 | ||
| @@ -560,6 +574,20 @@ BEGIN_FTR_SECTION | |||
| 560 | ld r0, THREAD_EBBRR(r4) | 574 | ld r0, THREAD_EBBRR(r4) |
| 561 | mtspr SPRN_EBBRR, r0 | 575 | mtspr SPRN_EBBRR, r0 |
| 562 | 576 | ||
| 577 | /* PMU registers made user read/(write) by EBB */ | ||
| 578 | ld r0, THREAD_SIAR(r4) | ||
| 579 | mtspr SPRN_SIAR, r0 | ||
| 580 | ld r0, THREAD_SDAR(r4) | ||
| 581 | mtspr SPRN_SDAR, r0 | ||
| 582 | ld r0, THREAD_SIER(r4) | ||
| 583 | mtspr SPRN_SIER, r0 | ||
| 584 | ld r0, THREAD_MMCR0(r4) | ||
| 585 | mtspr SPRN_MMCR0, r0 | ||
| 586 | ld r0, THREAD_MMCR2(r4) | ||
| 587 | mtspr SPRN_MMCR2, r0 | ||
| 588 | ld r0, THREAD_MMCRA(r4) | ||
| 589 | mtspr SPRN_MMCRA, r0 | ||
| 590 | |||
| 563 | ld r0,THREAD_TAR(r4) | 591 | ld r0,THREAD_TAR(r4) |
| 564 | mtspr SPRN_TAR,r0 | 592 | mtspr SPRN_TAR,r0 |
| 565 | END_FTR_SECTION_IFSET(CPU_FTR_ARCH_207S) | 593 | END_FTR_SECTION_IFSET(CPU_FTR_ARCH_207S) |
diff --git a/arch/powerpc/kernel/pci-common.c b/arch/powerpc/kernel/pci-common.c index 6053f037ef0a..e9acf50dd5b2 100644 --- a/arch/powerpc/kernel/pci-common.c +++ b/arch/powerpc/kernel/pci-common.c | |||
| @@ -1520,9 +1520,10 @@ static void pcibios_setup_phb_resources(struct pci_controller *hose, | |||
| 1520 | for (i = 0; i < 3; ++i) { | 1520 | for (i = 0; i < 3; ++i) { |
| 1521 | res = &hose->mem_resources[i]; | 1521 | res = &hose->mem_resources[i]; |
| 1522 | if (!res->flags) { | 1522 | if (!res->flags) { |
| 1523 | printk(KERN_ERR "PCI: Memory resource 0 not set for " | 1523 | if (i == 0) |
| 1524 | "host bridge %s (domain %d)\n", | 1524 | printk(KERN_ERR "PCI: Memory resource 0 not set for " |
| 1525 | hose->dn->full_name, hose->global_number); | 1525 | "host bridge %s (domain %d)\n", |
| 1526 | hose->dn->full_name, hose->global_number); | ||
| 1526 | continue; | 1527 | continue; |
| 1527 | } | 1528 | } |
| 1528 | offset = hose->mem_offset[i]; | 1529 | offset = hose->mem_offset[i]; |
diff --git a/arch/powerpc/kernel/pci_64.c b/arch/powerpc/kernel/pci_64.c index 873050d26840..2e8629654ca8 100644 --- a/arch/powerpc/kernel/pci_64.c +++ b/arch/powerpc/kernel/pci_64.c | |||
| @@ -266,3 +266,13 @@ int pcibus_to_node(struct pci_bus *bus) | |||
| 266 | } | 266 | } |
| 267 | EXPORT_SYMBOL(pcibus_to_node); | 267 | EXPORT_SYMBOL(pcibus_to_node); |
| 268 | #endif | 268 | #endif |
| 269 | |||
| 270 | static void quirk_radeon_32bit_msi(struct pci_dev *dev) | ||
| 271 | { | ||
| 272 | struct pci_dn *pdn = pci_get_pdn(dev); | ||
| 273 | |||
| 274 | if (pdn) | ||
| 275 | pdn->force_32bit_msi = 1; | ||
| 276 | } | ||
| 277 | DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_ATI, 0x68f2, quirk_radeon_32bit_msi); | ||
| 278 | DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_ATI, 0xaa68, quirk_radeon_32bit_msi); | ||
diff --git a/arch/powerpc/kernel/pci_dn.c b/arch/powerpc/kernel/pci_dn.c index e7af165f8b9d..df038442548a 100644 --- a/arch/powerpc/kernel/pci_dn.c +++ b/arch/powerpc/kernel/pci_dn.c | |||
| @@ -32,6 +32,14 @@ | |||
| 32 | #include <asm/ppc-pci.h> | 32 | #include <asm/ppc-pci.h> |
| 33 | #include <asm/firmware.h> | 33 | #include <asm/firmware.h> |
| 34 | 34 | ||
| 35 | struct pci_dn *pci_get_pdn(struct pci_dev *pdev) | ||
| 36 | { | ||
| 37 | struct device_node *dn = pci_device_to_OF_node(pdev); | ||
| 38 | if (!dn) | ||
| 39 | return NULL; | ||
| 40 | return PCI_DN(dn); | ||
| 41 | } | ||
| 42 | |||
| 35 | /* | 43 | /* |
| 36 | * Traverse_func that inits the PCI fields of the device node. | 44 | * Traverse_func that inits the PCI fields of the device node. |
| 37 | * NOTE: this *must* be done before read/write config to the device. | 45 | * NOTE: this *must* be done before read/write config to the device. |
diff --git a/arch/powerpc/platforms/powernv/Kconfig b/arch/powerpc/platforms/powernv/Kconfig index d3e840d643af..c24684c818ab 100644 --- a/arch/powerpc/platforms/powernv/Kconfig +++ b/arch/powerpc/platforms/powernv/Kconfig | |||
| @@ -6,6 +6,7 @@ config PPC_POWERNV | |||
| 6 | select PPC_ICP_NATIVE | 6 | select PPC_ICP_NATIVE |
| 7 | select PPC_P7_NAP | 7 | select PPC_P7_NAP |
| 8 | select PPC_PCI_CHOICE if EMBEDDED | 8 | select PPC_PCI_CHOICE if EMBEDDED |
| 9 | select EPAPR_BOOT | ||
| 9 | default y | 10 | default y |
| 10 | 11 | ||
| 11 | config POWERNV_MSI | 12 | config POWERNV_MSI |
diff --git a/arch/powerpc/platforms/powernv/pci-ioda.c b/arch/powerpc/platforms/powernv/pci-ioda.c index 3937aaae5bc4..9c9d15e4cdf2 100644 --- a/arch/powerpc/platforms/powernv/pci-ioda.c +++ b/arch/powerpc/platforms/powernv/pci-ioda.c | |||
| @@ -68,16 +68,6 @@ define_pe_printk_level(pe_err, KERN_ERR); | |||
| 68 | define_pe_printk_level(pe_warn, KERN_WARNING); | 68 | define_pe_printk_level(pe_warn, KERN_WARNING); |
| 69 | define_pe_printk_level(pe_info, KERN_INFO); | 69 | define_pe_printk_level(pe_info, KERN_INFO); |
| 70 | 70 | ||
| 71 | static struct pci_dn *pnv_ioda_get_pdn(struct pci_dev *dev) | ||
| 72 | { | ||
| 73 | struct device_node *np; | ||
| 74 | |||
| 75 | np = pci_device_to_OF_node(dev); | ||
| 76 | if (!np) | ||
| 77 | return NULL; | ||
| 78 | return PCI_DN(np); | ||
| 79 | } | ||
| 80 | |||
| 81 | static int pnv_ioda_alloc_pe(struct pnv_phb *phb) | 71 | static int pnv_ioda_alloc_pe(struct pnv_phb *phb) |
| 82 | { | 72 | { |
| 83 | unsigned long pe; | 73 | unsigned long pe; |
| @@ -110,7 +100,7 @@ static struct pnv_ioda_pe *pnv_ioda_get_pe(struct pci_dev *dev) | |||
| 110 | { | 100 | { |
| 111 | struct pci_controller *hose = pci_bus_to_host(dev->bus); | 101 | struct pci_controller *hose = pci_bus_to_host(dev->bus); |
| 112 | struct pnv_phb *phb = hose->private_data; | 102 | struct pnv_phb *phb = hose->private_data; |
| 113 | struct pci_dn *pdn = pnv_ioda_get_pdn(dev); | 103 | struct pci_dn *pdn = pci_get_pdn(dev); |
| 114 | 104 | ||
| 115 | if (!pdn) | 105 | if (!pdn) |
| 116 | return NULL; | 106 | return NULL; |
| @@ -173,7 +163,7 @@ static int pnv_ioda_configure_pe(struct pnv_phb *phb, struct pnv_ioda_pe *pe) | |||
| 173 | 163 | ||
| 174 | /* Add to all parents PELT-V */ | 164 | /* Add to all parents PELT-V */ |
| 175 | while (parent) { | 165 | while (parent) { |
| 176 | struct pci_dn *pdn = pnv_ioda_get_pdn(parent); | 166 | struct pci_dn *pdn = pci_get_pdn(parent); |
| 177 | if (pdn && pdn->pe_number != IODA_INVALID_PE) { | 167 | if (pdn && pdn->pe_number != IODA_INVALID_PE) { |
| 178 | rc = opal_pci_set_peltv(phb->opal_id, pdn->pe_number, | 168 | rc = opal_pci_set_peltv(phb->opal_id, pdn->pe_number, |
| 179 | pe->pe_number, OPAL_ADD_PE_TO_DOMAIN); | 169 | pe->pe_number, OPAL_ADD_PE_TO_DOMAIN); |
| @@ -252,7 +242,7 @@ static struct pnv_ioda_pe *pnv_ioda_setup_dev_PE(struct pci_dev *dev) | |||
| 252 | { | 242 | { |
| 253 | struct pci_controller *hose = pci_bus_to_host(dev->bus); | 243 | struct pci_controller *hose = pci_bus_to_host(dev->bus); |
| 254 | struct pnv_phb *phb = hose->private_data; | 244 | struct pnv_phb *phb = hose->private_data; |
| 255 | struct pci_dn *pdn = pnv_ioda_get_pdn(dev); | 245 | struct pci_dn *pdn = pci_get_pdn(dev); |
| 256 | struct pnv_ioda_pe *pe; | 246 | struct pnv_ioda_pe *pe; |
| 257 | int pe_num; | 247 | int pe_num; |
| 258 | 248 | ||
| @@ -323,7 +313,7 @@ static void pnv_ioda_setup_same_PE(struct pci_bus *bus, struct pnv_ioda_pe *pe) | |||
| 323 | struct pci_dev *dev; | 313 | struct pci_dev *dev; |
| 324 | 314 | ||
| 325 | list_for_each_entry(dev, &bus->devices, bus_list) { | 315 | list_for_each_entry(dev, &bus->devices, bus_list) { |
| 326 | struct pci_dn *pdn = pnv_ioda_get_pdn(dev); | 316 | struct pci_dn *pdn = pci_get_pdn(dev); |
| 327 | 317 | ||
| 328 | if (pdn == NULL) { | 318 | if (pdn == NULL) { |
| 329 | pr_warn("%s: No device node associated with device !\n", | 319 | pr_warn("%s: No device node associated with device !\n", |
| @@ -436,7 +426,7 @@ static void pnv_pci_ioda_setup_PEs(void) | |||
| 436 | 426 | ||
| 437 | static void pnv_pci_ioda_dma_dev_setup(struct pnv_phb *phb, struct pci_dev *pdev) | 427 | static void pnv_pci_ioda_dma_dev_setup(struct pnv_phb *phb, struct pci_dev *pdev) |
| 438 | { | 428 | { |
| 439 | struct pci_dn *pdn = pnv_ioda_get_pdn(pdev); | 429 | struct pci_dn *pdn = pci_get_pdn(pdev); |
| 440 | struct pnv_ioda_pe *pe; | 430 | struct pnv_ioda_pe *pe; |
| 441 | 431 | ||
| 442 | /* | 432 | /* |
| @@ -768,6 +758,7 @@ static int pnv_pci_ioda_msi_setup(struct pnv_phb *phb, struct pci_dev *dev, | |||
| 768 | unsigned int is_64, struct msi_msg *msg) | 758 | unsigned int is_64, struct msi_msg *msg) |
| 769 | { | 759 | { |
| 770 | struct pnv_ioda_pe *pe = pnv_ioda_get_pe(dev); | 760 | struct pnv_ioda_pe *pe = pnv_ioda_get_pe(dev); |
| 761 | struct pci_dn *pdn = pci_get_pdn(dev); | ||
| 771 | struct irq_data *idata; | 762 | struct irq_data *idata; |
| 772 | struct irq_chip *ichip; | 763 | struct irq_chip *ichip; |
| 773 | unsigned int xive_num = hwirq - phb->msi_base; | 764 | unsigned int xive_num = hwirq - phb->msi_base; |
| @@ -783,6 +774,10 @@ static int pnv_pci_ioda_msi_setup(struct pnv_phb *phb, struct pci_dev *dev, | |||
| 783 | if (pe->mve_number < 0) | 774 | if (pe->mve_number < 0) |
| 784 | return -ENXIO; | 775 | return -ENXIO; |
| 785 | 776 | ||
| 777 | /* Force 32-bit MSI on some broken devices */ | ||
| 778 | if (pdn && pdn->force_32bit_msi) | ||
| 779 | is_64 = 0; | ||
| 780 | |||
| 786 | /* Assign XIVE to PE */ | 781 | /* Assign XIVE to PE */ |
| 787 | rc = opal_pci_set_xive_pe(phb->opal_id, pe->pe_number, xive_num); | 782 | rc = opal_pci_set_xive_pe(phb->opal_id, pe->pe_number, xive_num); |
| 788 | if (rc) { | 783 | if (rc) { |
| @@ -1035,7 +1030,7 @@ static int pnv_pci_enable_device_hook(struct pci_dev *dev) | |||
| 1035 | if (!phb->initialized) | 1030 | if (!phb->initialized) |
| 1036 | return 0; | 1031 | return 0; |
| 1037 | 1032 | ||
| 1038 | pdn = pnv_ioda_get_pdn(dev); | 1033 | pdn = pci_get_pdn(dev); |
| 1039 | if (!pdn || pdn->pe_number == IODA_INVALID_PE) | 1034 | if (!pdn || pdn->pe_number == IODA_INVALID_PE) |
| 1040 | return -EINVAL; | 1035 | return -EINVAL; |
| 1041 | 1036 | ||
diff --git a/arch/powerpc/platforms/powernv/pci.c b/arch/powerpc/platforms/powernv/pci.c index 163bd7422f1c..277343cc6a3d 100644 --- a/arch/powerpc/platforms/powernv/pci.c +++ b/arch/powerpc/platforms/powernv/pci.c | |||
| @@ -47,6 +47,10 @@ static int pnv_msi_check_device(struct pci_dev* pdev, int nvec, int type) | |||
| 47 | { | 47 | { |
| 48 | struct pci_controller *hose = pci_bus_to_host(pdev->bus); | 48 | struct pci_controller *hose = pci_bus_to_host(pdev->bus); |
| 49 | struct pnv_phb *phb = hose->private_data; | 49 | struct pnv_phb *phb = hose->private_data; |
| 50 | struct pci_dn *pdn = pci_get_pdn(pdev); | ||
| 51 | |||
| 52 | if (pdn && pdn->force_32bit_msi && !phb->msi32_support) | ||
| 53 | return -ENODEV; | ||
| 50 | 54 | ||
| 51 | return (phb && phb->msi_bmp.bitmap) ? 0 : -ENODEV; | 55 | return (phb && phb->msi_bmp.bitmap) ? 0 : -ENODEV; |
| 52 | } | 56 | } |
| @@ -367,7 +371,7 @@ static void pnv_tce_free(struct iommu_table *tbl, long index, long npages) | |||
| 367 | while (npages--) | 371 | while (npages--) |
| 368 | *(tcep++) = 0; | 372 | *(tcep++) = 0; |
| 369 | 373 | ||
| 370 | if (tbl->it_type & TCE_PCI_SWINV_CREATE) | 374 | if (tbl->it_type & TCE_PCI_SWINV_FREE) |
| 371 | pnv_pci_ioda_tce_invalidate(tbl, tces, tcep - 1); | 375 | pnv_pci_ioda_tce_invalidate(tbl, tces, tcep - 1); |
| 372 | } | 376 | } |
| 373 | 377 | ||
diff --git a/arch/powerpc/platforms/pseries/msi.c b/arch/powerpc/platforms/pseries/msi.c index 420524e6f8c9..6d2f0abce6fa 100644 --- a/arch/powerpc/platforms/pseries/msi.c +++ b/arch/powerpc/platforms/pseries/msi.c | |||
| @@ -26,26 +26,6 @@ static int query_token, change_token; | |||
| 26 | #define RTAS_CHANGE_MSIX_FN 4 | 26 | #define RTAS_CHANGE_MSIX_FN 4 |
| 27 | #define RTAS_CHANGE_32MSI_FN 5 | 27 | #define RTAS_CHANGE_32MSI_FN 5 |
| 28 | 28 | ||
| 29 | static struct pci_dn *get_pdn(struct pci_dev *pdev) | ||
| 30 | { | ||
| 31 | struct device_node *dn; | ||
| 32 | struct pci_dn *pdn; | ||
| 33 | |||
| 34 | dn = pci_device_to_OF_node(pdev); | ||
| 35 | if (!dn) { | ||
| 36 | dev_dbg(&pdev->dev, "rtas_msi: No OF device node\n"); | ||
| 37 | return NULL; | ||
| 38 | } | ||
| 39 | |||
| 40 | pdn = PCI_DN(dn); | ||
| 41 | if (!pdn) { | ||
| 42 | dev_dbg(&pdev->dev, "rtas_msi: No PCI DN\n"); | ||
| 43 | return NULL; | ||
| 44 | } | ||
| 45 | |||
| 46 | return pdn; | ||
| 47 | } | ||
| 48 | |||
| 49 | /* RTAS Helpers */ | 29 | /* RTAS Helpers */ |
| 50 | 30 | ||
| 51 | static int rtas_change_msi(struct pci_dn *pdn, u32 func, u32 num_irqs) | 31 | static int rtas_change_msi(struct pci_dn *pdn, u32 func, u32 num_irqs) |
| @@ -91,7 +71,7 @@ static void rtas_disable_msi(struct pci_dev *pdev) | |||
| 91 | { | 71 | { |
| 92 | struct pci_dn *pdn; | 72 | struct pci_dn *pdn; |
| 93 | 73 | ||
| 94 | pdn = get_pdn(pdev); | 74 | pdn = pci_get_pdn(pdev); |
| 95 | if (!pdn) | 75 | if (!pdn) |
| 96 | return; | 76 | return; |
| 97 | 77 | ||
| @@ -152,7 +132,7 @@ static int check_req(struct pci_dev *pdev, int nvec, char *prop_name) | |||
| 152 | struct pci_dn *pdn; | 132 | struct pci_dn *pdn; |
| 153 | const u32 *req_msi; | 133 | const u32 *req_msi; |
| 154 | 134 | ||
| 155 | pdn = get_pdn(pdev); | 135 | pdn = pci_get_pdn(pdev); |
| 156 | if (!pdn) | 136 | if (!pdn) |
| 157 | return -ENODEV; | 137 | return -ENODEV; |
| 158 | 138 | ||
| @@ -394,6 +374,23 @@ static int check_msix_entries(struct pci_dev *pdev) | |||
| 394 | return 0; | 374 | return 0; |
| 395 | } | 375 | } |
| 396 | 376 | ||
| 377 | static void rtas_hack_32bit_msi_gen2(struct pci_dev *pdev) | ||
| 378 | { | ||
| 379 | u32 addr_hi, addr_lo; | ||
| 380 | |||
| 381 | /* | ||
| 382 | * We should only get in here for IODA1 configs. This is based on the | ||
| 383 | * fact that we using RTAS for MSIs, we don't have the 32 bit MSI RTAS | ||
| 384 | * support, and we are in a PCIe Gen2 slot. | ||
| 385 | */ | ||
| 386 | dev_info(&pdev->dev, | ||
| 387 | "rtas_msi: No 32 bit MSI firmware support, forcing 32 bit MSI\n"); | ||
| 388 | pci_read_config_dword(pdev, pdev->msi_cap + PCI_MSI_ADDRESS_HI, &addr_hi); | ||
| 389 | addr_lo = 0xffff0000 | ((addr_hi >> (48 - 32)) << 4); | ||
| 390 | pci_write_config_dword(pdev, pdev->msi_cap + PCI_MSI_ADDRESS_LO, addr_lo); | ||
| 391 | pci_write_config_dword(pdev, pdev->msi_cap + PCI_MSI_ADDRESS_HI, 0); | ||
| 392 | } | ||
| 393 | |||
| 397 | static int rtas_setup_msi_irqs(struct pci_dev *pdev, int nvec_in, int type) | 394 | static int rtas_setup_msi_irqs(struct pci_dev *pdev, int nvec_in, int type) |
| 398 | { | 395 | { |
| 399 | struct pci_dn *pdn; | 396 | struct pci_dn *pdn; |
| @@ -401,8 +398,9 @@ static int rtas_setup_msi_irqs(struct pci_dev *pdev, int nvec_in, int type) | |||
| 401 | struct msi_desc *entry; | 398 | struct msi_desc *entry; |
| 402 | struct msi_msg msg; | 399 | struct msi_msg msg; |
| 403 | int nvec = nvec_in; | 400 | int nvec = nvec_in; |
| 401 | int use_32bit_msi_hack = 0; | ||
| 404 | 402 | ||
| 405 | pdn = get_pdn(pdev); | 403 | pdn = pci_get_pdn(pdev); |
| 406 | if (!pdn) | 404 | if (!pdn) |
| 407 | return -ENODEV; | 405 | return -ENODEV; |
| 408 | 406 | ||
| @@ -428,15 +426,31 @@ static int rtas_setup_msi_irqs(struct pci_dev *pdev, int nvec_in, int type) | |||
| 428 | */ | 426 | */ |
| 429 | again: | 427 | again: |
| 430 | if (type == PCI_CAP_ID_MSI) { | 428 | if (type == PCI_CAP_ID_MSI) { |
| 431 | if (pdn->force_32bit_msi) | 429 | if (pdn->force_32bit_msi) { |
| 432 | rc = rtas_change_msi(pdn, RTAS_CHANGE_32MSI_FN, nvec); | 430 | rc = rtas_change_msi(pdn, RTAS_CHANGE_32MSI_FN, nvec); |
| 433 | else | 431 | if (rc < 0) { |
| 432 | /* | ||
| 433 | * We only want to run the 32 bit MSI hack below if | ||
| 434 | * the max bus speed is Gen2 speed | ||
| 435 | */ | ||
| 436 | if (pdev->bus->max_bus_speed != PCIE_SPEED_5_0GT) | ||
| 437 | return rc; | ||
| 438 | |||
| 439 | use_32bit_msi_hack = 1; | ||
| 440 | } | ||
| 441 | } else | ||
| 442 | rc = -1; | ||
| 443 | |||
| 444 | if (rc < 0) | ||
| 434 | rc = rtas_change_msi(pdn, RTAS_CHANGE_MSI_FN, nvec); | 445 | rc = rtas_change_msi(pdn, RTAS_CHANGE_MSI_FN, nvec); |
| 435 | 446 | ||
| 436 | if (rc < 0 && !pdn->force_32bit_msi) { | 447 | if (rc < 0) { |
| 437 | pr_debug("rtas_msi: trying the old firmware call.\n"); | 448 | pr_debug("rtas_msi: trying the old firmware call.\n"); |
| 438 | rc = rtas_change_msi(pdn, RTAS_CHANGE_FN, nvec); | 449 | rc = rtas_change_msi(pdn, RTAS_CHANGE_FN, nvec); |
| 439 | } | 450 | } |
| 451 | |||
| 452 | if (use_32bit_msi_hack && rc > 0) | ||
| 453 | rtas_hack_32bit_msi_gen2(pdev); | ||
| 440 | } else | 454 | } else |
| 441 | rc = rtas_change_msi(pdn, RTAS_CHANGE_MSIX_FN, nvec); | 455 | rc = rtas_change_msi(pdn, RTAS_CHANGE_MSIX_FN, nvec); |
| 442 | 456 | ||
| @@ -518,12 +532,3 @@ static int rtas_msi_init(void) | |||
| 518 | } | 532 | } |
| 519 | arch_initcall(rtas_msi_init); | 533 | arch_initcall(rtas_msi_init); |
| 520 | 534 | ||
| 521 | static void quirk_radeon(struct pci_dev *dev) | ||
| 522 | { | ||
| 523 | struct pci_dn *pdn = get_pdn(dev); | ||
| 524 | |||
| 525 | if (pdn) | ||
| 526 | pdn->force_32bit_msi = 1; | ||
| 527 | } | ||
| 528 | DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_ATI, 0x68f2, quirk_radeon); | ||
| 529 | DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_ATI, 0xaa68, quirk_radeon); | ||
diff --git a/arch/s390/Kconfig b/arch/s390/Kconfig index 2c9789da0e24..da183c5a103c 100644 --- a/arch/s390/Kconfig +++ b/arch/s390/Kconfig | |||
| @@ -98,7 +98,6 @@ config S390 | |||
| 98 | select CLONE_BACKWARDS2 | 98 | select CLONE_BACKWARDS2 |
| 99 | select GENERIC_CLOCKEVENTS | 99 | select GENERIC_CLOCKEVENTS |
| 100 | select GENERIC_CPU_DEVICES if !SMP | 100 | select GENERIC_CPU_DEVICES if !SMP |
| 101 | select GENERIC_KERNEL_THREAD | ||
| 102 | select GENERIC_SMP_IDLE_THREAD | 101 | select GENERIC_SMP_IDLE_THREAD |
| 103 | select GENERIC_TIME_VSYSCALL_OLD | 102 | select GENERIC_TIME_VSYSCALL_OLD |
| 104 | select HAVE_ALIGNED_STRUCT_PAGE if SLUB | 103 | select HAVE_ALIGNED_STRUCT_PAGE if SLUB |
diff --git a/arch/s390/include/asm/ftrace.h b/arch/s390/include/asm/ftrace.h index b7931faaef6d..bf246dae1367 100644 --- a/arch/s390/include/asm/ftrace.h +++ b/arch/s390/include/asm/ftrace.h | |||
| @@ -9,11 +9,6 @@ struct dyn_arch_ftrace { }; | |||
| 9 | 9 | ||
| 10 | #define MCOUNT_ADDR ((long)_mcount) | 10 | #define MCOUNT_ADDR ((long)_mcount) |
| 11 | 11 | ||
| 12 | #ifdef CONFIG_64BIT | ||
| 13 | #define MCOUNT_INSN_SIZE 12 | ||
| 14 | #else | ||
| 15 | #define MCOUNT_INSN_SIZE 20 | ||
| 16 | #endif | ||
| 17 | 12 | ||
| 18 | static inline unsigned long ftrace_call_adjust(unsigned long addr) | 13 | static inline unsigned long ftrace_call_adjust(unsigned long addr) |
| 19 | { | 14 | { |
| @@ -21,4 +16,11 @@ static inline unsigned long ftrace_call_adjust(unsigned long addr) | |||
| 21 | } | 16 | } |
| 22 | 17 | ||
| 23 | #endif /* __ASSEMBLY__ */ | 18 | #endif /* __ASSEMBLY__ */ |
| 19 | |||
| 20 | #ifdef CONFIG_64BIT | ||
| 21 | #define MCOUNT_INSN_SIZE 12 | ||
| 22 | #else | ||
| 23 | #define MCOUNT_INSN_SIZE 22 | ||
| 24 | #endif | ||
| 25 | |||
| 24 | #endif /* _ASM_S390_FTRACE_H */ | 26 | #endif /* _ASM_S390_FTRACE_H */ |
diff --git a/arch/s390/include/asm/page.h b/arch/s390/include/asm/page.h index 75ce9b065f9f..5d64fb7619cc 100644 --- a/arch/s390/include/asm/page.h +++ b/arch/s390/include/asm/page.h | |||
| @@ -32,7 +32,7 @@ | |||
| 32 | 32 | ||
| 33 | void storage_key_init_range(unsigned long start, unsigned long end); | 33 | void storage_key_init_range(unsigned long start, unsigned long end); |
| 34 | 34 | ||
| 35 | static unsigned long pfmf(unsigned long function, unsigned long address) | 35 | static inline unsigned long pfmf(unsigned long function, unsigned long address) |
| 36 | { | 36 | { |
| 37 | asm volatile( | 37 | asm volatile( |
| 38 | " .insn rre,0xb9af0000,%[function],%[address]" | 38 | " .insn rre,0xb9af0000,%[function],%[address]" |
| @@ -44,17 +44,13 @@ static unsigned long pfmf(unsigned long function, unsigned long address) | |||
| 44 | 44 | ||
| 45 | static inline void clear_page(void *page) | 45 | static inline void clear_page(void *page) |
| 46 | { | 46 | { |
| 47 | if (MACHINE_HAS_PFMF) { | 47 | register unsigned long reg1 asm ("1") = 0; |
| 48 | pfmf(0x10000, (unsigned long)page); | 48 | register void *reg2 asm ("2") = page; |
| 49 | } else { | 49 | register unsigned long reg3 asm ("3") = 4096; |
| 50 | register unsigned long reg1 asm ("1") = 0; | 50 | asm volatile( |
| 51 | register void *reg2 asm ("2") = page; | 51 | " mvcl 2,0" |
| 52 | register unsigned long reg3 asm ("3") = 4096; | 52 | : "+d" (reg2), "+d" (reg3) : "d" (reg1) |
| 53 | asm volatile( | 53 | : "memory", "cc"); |
| 54 | " mvcl 2,0" | ||
| 55 | : "+d" (reg2), "+d" (reg3) : "d" (reg1) | ||
| 56 | : "memory", "cc"); | ||
| 57 | } | ||
| 58 | } | 54 | } |
| 59 | 55 | ||
| 60 | static inline void copy_page(void *to, void *from) | 56 | static inline void copy_page(void *to, void *from) |
diff --git a/arch/s390/include/asm/pgtable.h b/arch/s390/include/asm/pgtable.h index 4105b8221fdd..0f0de30e3e3f 100644 --- a/arch/s390/include/asm/pgtable.h +++ b/arch/s390/include/asm/pgtable.h | |||
| @@ -306,7 +306,7 @@ extern unsigned long MODULES_END; | |||
| 306 | #define RCP_HC_BIT 0x00200000UL | 306 | #define RCP_HC_BIT 0x00200000UL |
| 307 | #define RCP_GR_BIT 0x00040000UL | 307 | #define RCP_GR_BIT 0x00040000UL |
| 308 | #define RCP_GC_BIT 0x00020000UL | 308 | #define RCP_GC_BIT 0x00020000UL |
| 309 | #define RCP_IN_BIT 0x00008000UL /* IPTE notify bit */ | 309 | #define RCP_IN_BIT 0x00002000UL /* IPTE notify bit */ |
| 310 | 310 | ||
| 311 | /* User dirty / referenced bit for KVM's migration feature */ | 311 | /* User dirty / referenced bit for KVM's migration feature */ |
| 312 | #define KVM_UR_BIT 0x00008000UL | 312 | #define KVM_UR_BIT 0x00008000UL |
| @@ -374,7 +374,7 @@ extern unsigned long MODULES_END; | |||
| 374 | #define RCP_HC_BIT 0x0020000000000000UL | 374 | #define RCP_HC_BIT 0x0020000000000000UL |
| 375 | #define RCP_GR_BIT 0x0004000000000000UL | 375 | #define RCP_GR_BIT 0x0004000000000000UL |
| 376 | #define RCP_GC_BIT 0x0002000000000000UL | 376 | #define RCP_GC_BIT 0x0002000000000000UL |
| 377 | #define RCP_IN_BIT 0x0000800000000000UL /* IPTE notify bit */ | 377 | #define RCP_IN_BIT 0x0000200000000000UL /* IPTE notify bit */ |
| 378 | 378 | ||
| 379 | /* User dirty / referenced bit for KVM's migration feature */ | 379 | /* User dirty / referenced bit for KVM's migration feature */ |
| 380 | #define KVM_UR_BIT 0x0000800000000000UL | 380 | #define KVM_UR_BIT 0x0000800000000000UL |
diff --git a/arch/s390/kernel/dis.c b/arch/s390/kernel/dis.c index 7f4a4a8c847c..be87d3e05a5b 100644 --- a/arch/s390/kernel/dis.c +++ b/arch/s390/kernel/dis.c | |||
| @@ -1862,6 +1862,8 @@ void print_fn_code(unsigned char *code, unsigned long len) | |||
| 1862 | while (len) { | 1862 | while (len) { |
| 1863 | ptr = buffer; | 1863 | ptr = buffer; |
| 1864 | opsize = insn_length(*code); | 1864 | opsize = insn_length(*code); |
| 1865 | if (opsize > len) | ||
| 1866 | break; | ||
| 1865 | ptr += sprintf(ptr, "%p: ", code); | 1867 | ptr += sprintf(ptr, "%p: ", code); |
| 1866 | for (i = 0; i < opsize; i++) | 1868 | for (i = 0; i < opsize; i++) |
| 1867 | ptr += sprintf(ptr, "%02x", code[i]); | 1869 | ptr += sprintf(ptr, "%02x", code[i]); |
diff --git a/arch/s390/kernel/ftrace.c b/arch/s390/kernel/ftrace.c index 78bdf0e5dff7..e3043aef87a9 100644 --- a/arch/s390/kernel/ftrace.c +++ b/arch/s390/kernel/ftrace.c | |||
| @@ -16,12 +16,6 @@ | |||
| 16 | #include <trace/syscall.h> | 16 | #include <trace/syscall.h> |
| 17 | #include <asm/asm-offsets.h> | 17 | #include <asm/asm-offsets.h> |
| 18 | 18 | ||
| 19 | #ifdef CONFIG_64BIT | ||
| 20 | #define MCOUNT_OFFSET_RET 12 | ||
| 21 | #else | ||
| 22 | #define MCOUNT_OFFSET_RET 22 | ||
| 23 | #endif | ||
| 24 | |||
| 25 | #ifdef CONFIG_DYNAMIC_FTRACE | 19 | #ifdef CONFIG_DYNAMIC_FTRACE |
| 26 | 20 | ||
| 27 | void ftrace_disable_code(void); | 21 | void ftrace_disable_code(void); |
| @@ -155,9 +149,10 @@ unsigned long __kprobes prepare_ftrace_return(unsigned long parent, | |||
| 155 | 149 | ||
| 156 | if (unlikely(atomic_read(¤t->tracing_graph_pause))) | 150 | if (unlikely(atomic_read(¤t->tracing_graph_pause))) |
| 157 | goto out; | 151 | goto out; |
| 152 | ip = (ip & PSW_ADDR_INSN) - MCOUNT_INSN_SIZE; | ||
| 158 | if (ftrace_push_return_trace(parent, ip, &trace.depth, 0) == -EBUSY) | 153 | if (ftrace_push_return_trace(parent, ip, &trace.depth, 0) == -EBUSY) |
| 159 | goto out; | 154 | goto out; |
| 160 | trace.func = (ip & PSW_ADDR_INSN) - MCOUNT_OFFSET_RET; | 155 | trace.func = ip; |
| 161 | /* Only trace if the calling function expects to. */ | 156 | /* Only trace if the calling function expects to. */ |
| 162 | if (!ftrace_graph_entry(&trace)) { | 157 | if (!ftrace_graph_entry(&trace)) { |
| 163 | current->curr_ret_stack--; | 158 | current->curr_ret_stack--; |
diff --git a/arch/s390/kernel/mcount.S b/arch/s390/kernel/mcount.S index 4567ce20d900..08dcf21cb8df 100644 --- a/arch/s390/kernel/mcount.S +++ b/arch/s390/kernel/mcount.S | |||
| @@ -7,6 +7,7 @@ | |||
| 7 | 7 | ||
| 8 | #include <linux/linkage.h> | 8 | #include <linux/linkage.h> |
| 9 | #include <asm/asm-offsets.h> | 9 | #include <asm/asm-offsets.h> |
| 10 | #include <asm/ftrace.h> | ||
| 10 | 11 | ||
| 11 | .section .kprobes.text, "ax" | 12 | .section .kprobes.text, "ax" |
| 12 | 13 | ||
| @@ -33,6 +34,7 @@ ENTRY(ftrace_caller) | |||
| 33 | la %r2,0(%r14) | 34 | la %r2,0(%r14) |
| 34 | st %r0,__SF_BACKCHAIN(%r15) | 35 | st %r0,__SF_BACKCHAIN(%r15) |
| 35 | la %r3,0(%r3) | 36 | la %r3,0(%r3) |
| 37 | ahi %r2,-MCOUNT_INSN_SIZE | ||
| 36 | l %r14,0b-0b(%r1) | 38 | l %r14,0b-0b(%r1) |
| 37 | l %r14,0(%r14) | 39 | l %r14,0(%r14) |
| 38 | basr %r14,%r14 | 40 | basr %r14,%r14 |
diff --git a/arch/s390/kernel/mcount64.S b/arch/s390/kernel/mcount64.S index 11332193db30..1c52eae3396a 100644 --- a/arch/s390/kernel/mcount64.S +++ b/arch/s390/kernel/mcount64.S | |||
| @@ -7,6 +7,7 @@ | |||
| 7 | 7 | ||
| 8 | #include <linux/linkage.h> | 8 | #include <linux/linkage.h> |
| 9 | #include <asm/asm-offsets.h> | 9 | #include <asm/asm-offsets.h> |
| 10 | #include <asm/ftrace.h> | ||
| 10 | 11 | ||
| 11 | .section .kprobes.text, "ax" | 12 | .section .kprobes.text, "ax" |
| 12 | 13 | ||
| @@ -29,6 +30,7 @@ ENTRY(ftrace_caller) | |||
| 29 | stg %r1,__SF_BACKCHAIN(%r15) | 30 | stg %r1,__SF_BACKCHAIN(%r15) |
| 30 | lgr %r2,%r14 | 31 | lgr %r2,%r14 |
| 31 | lg %r3,168(%r15) | 32 | lg %r3,168(%r15) |
| 33 | aghi %r2,-MCOUNT_INSN_SIZE | ||
| 32 | larl %r14,ftrace_trace_function | 34 | larl %r14,ftrace_trace_function |
| 33 | lg %r14,0(%r14) | 35 | lg %r14,0(%r14) |
| 34 | basr %r14,%r14 | 36 | basr %r14,%r14 |
diff --git a/arch/s390/kernel/smp.c b/arch/s390/kernel/smp.c index 8074cb4b7cbf..05674b669001 100644 --- a/arch/s390/kernel/smp.c +++ b/arch/s390/kernel/smp.c | |||
| @@ -645,7 +645,7 @@ static int __cpuinit __smp_rescan_cpus(struct sclp_cpu_info *info, | |||
| 645 | continue; | 645 | continue; |
| 646 | pcpu = pcpu_devices + cpu; | 646 | pcpu = pcpu_devices + cpu; |
| 647 | pcpu->address = info->cpu[i].address; | 647 | pcpu->address = info->cpu[i].address; |
| 648 | pcpu->state = (cpu >= info->configured) ? | 648 | pcpu->state = (i >= info->configured) ? |
| 649 | CPU_STATE_STANDBY : CPU_STATE_CONFIGURED; | 649 | CPU_STATE_STANDBY : CPU_STATE_CONFIGURED; |
| 650 | smp_cpu_set_polarization(cpu, POLARIZATION_UNKNOWN); | 650 | smp_cpu_set_polarization(cpu, POLARIZATION_UNKNOWN); |
| 651 | set_cpu_present(cpu, true); | 651 | set_cpu_present(cpu, true); |
diff --git a/arch/s390/mm/pgtable.c b/arch/s390/mm/pgtable.c index 7805ddca833d..18dc417aaf79 100644 --- a/arch/s390/mm/pgtable.c +++ b/arch/s390/mm/pgtable.c | |||
| @@ -677,8 +677,7 @@ int gmap_ipte_notify(struct gmap *gmap, unsigned long start, unsigned long len) | |||
| 677 | break; | 677 | break; |
| 678 | } | 678 | } |
| 679 | /* Get the page mapped */ | 679 | /* Get the page mapped */ |
| 680 | if (get_user_pages(current, gmap->mm, addr, 1, 1, 0, | 680 | if (fixup_user_fault(current, gmap->mm, addr, FAULT_FLAG_WRITE)) { |
| 681 | NULL, NULL) != 1) { | ||
| 682 | rc = -EFAULT; | 681 | rc = -EFAULT; |
| 683 | break; | 682 | break; |
| 684 | } | 683 | } |
diff --git a/arch/score/mm/init.c b/arch/score/mm/init.c index d8f988a37d16..0940682ab38b 100644 --- a/arch/score/mm/init.c +++ b/arch/score/mm/init.c | |||
| @@ -41,8 +41,6 @@ | |||
| 41 | unsigned long empty_zero_page; | 41 | unsigned long empty_zero_page; |
| 42 | EXPORT_SYMBOL_GPL(empty_zero_page); | 42 | EXPORT_SYMBOL_GPL(empty_zero_page); |
| 43 | 43 | ||
| 44 | static struct kcore_list kcore_mem, kcore_vmalloc; | ||
| 45 | |||
| 46 | static void setup_zero_page(void) | 44 | static void setup_zero_page(void) |
| 47 | { | 45 | { |
| 48 | struct page *page; | 46 | struct page *page; |
diff --git a/arch/x86/pci/mrst.c b/arch/x86/pci/mrst.c index 0e0fabf17342..6eb18c42a28a 100644 --- a/arch/x86/pci/mrst.c +++ b/arch/x86/pci/mrst.c | |||
| @@ -141,11 +141,6 @@ static int pci_device_update_fixed(struct pci_bus *bus, unsigned int devfn, | |||
| 141 | */ | 141 | */ |
| 142 | static bool type1_access_ok(unsigned int bus, unsigned int devfn, int reg) | 142 | static bool type1_access_ok(unsigned int bus, unsigned int devfn, int reg) |
| 143 | { | 143 | { |
| 144 | if (bus == 0 && (devfn == PCI_DEVFN(2, 0) | ||
| 145 | || devfn == PCI_DEVFN(0, 0) | ||
| 146 | || devfn == PCI_DEVFN(3, 0))) | ||
| 147 | return 1; | ||
| 148 | |||
| 149 | /* This is a workaround for A0 LNC bug where PCI status register does | 144 | /* This is a workaround for A0 LNC bug where PCI status register does |
| 150 | * not have new CAP bit set. can not be written by SW either. | 145 | * not have new CAP bit set. can not be written by SW either. |
| 151 | * | 146 | * |
| @@ -155,7 +150,10 @@ static bool type1_access_ok(unsigned int bus, unsigned int devfn, int reg) | |||
| 155 | */ | 150 | */ |
| 156 | if (reg >= 0x100 || reg == PCI_STATUS || reg == PCI_HEADER_TYPE) | 151 | if (reg >= 0x100 || reg == PCI_STATUS || reg == PCI_HEADER_TYPE) |
| 157 | return 0; | 152 | return 0; |
| 158 | 153 | if (bus == 0 && (devfn == PCI_DEVFN(2, 0) | |
| 154 | || devfn == PCI_DEVFN(0, 0) | ||
| 155 | || devfn == PCI_DEVFN(3, 0))) | ||
| 156 | return 1; | ||
| 159 | return 0; /* langwell on others */ | 157 | return 0; /* langwell on others */ |
| 160 | } | 158 | } |
| 161 | 159 | ||
diff --git a/drivers/acpi/Makefile b/drivers/acpi/Makefile index ecb743bf05a5..536562c626a2 100644 --- a/drivers/acpi/Makefile +++ b/drivers/acpi/Makefile | |||
| @@ -24,7 +24,7 @@ acpi-y += nvs.o | |||
| 24 | # Power management related files | 24 | # Power management related files |
| 25 | acpi-y += wakeup.o | 25 | acpi-y += wakeup.o |
| 26 | acpi-y += sleep.o | 26 | acpi-y += sleep.o |
| 27 | acpi-$(CONFIG_PM) += device_pm.o | 27 | acpi-y += device_pm.o |
| 28 | acpi-$(CONFIG_ACPI_SLEEP) += proc.o | 28 | acpi-$(CONFIG_ACPI_SLEEP) += proc.o |
| 29 | 29 | ||
| 30 | 30 | ||
| @@ -38,7 +38,6 @@ acpi-y += processor_core.o | |||
| 38 | acpi-y += ec.o | 38 | acpi-y += ec.o |
| 39 | acpi-$(CONFIG_ACPI_DOCK) += dock.o | 39 | acpi-$(CONFIG_ACPI_DOCK) += dock.o |
| 40 | acpi-y += pci_root.o pci_link.o pci_irq.o | 40 | acpi-y += pci_root.o pci_link.o pci_irq.o |
| 41 | acpi-y += csrt.o | ||
| 42 | acpi-$(CONFIG_X86_INTEL_LPSS) += acpi_lpss.o | 41 | acpi-$(CONFIG_X86_INTEL_LPSS) += acpi_lpss.o |
| 43 | acpi-y += acpi_platform.o | 42 | acpi-y += acpi_platform.o |
| 44 | acpi-y += power.o | 43 | acpi-y += power.o |
diff --git a/drivers/acpi/acpi_lpss.c b/drivers/acpi/acpi_lpss.c index b1c95422ce74..652fd5ce303c 100644 --- a/drivers/acpi/acpi_lpss.c +++ b/drivers/acpi/acpi_lpss.c | |||
| @@ -35,11 +35,16 @@ ACPI_MODULE_NAME("acpi_lpss"); | |||
| 35 | 35 | ||
| 36 | struct lpss_device_desc { | 36 | struct lpss_device_desc { |
| 37 | bool clk_required; | 37 | bool clk_required; |
| 38 | const char *clk_parent; | 38 | const char *clkdev_name; |
| 39 | bool ltr_required; | 39 | bool ltr_required; |
| 40 | unsigned int prv_offset; | 40 | unsigned int prv_offset; |
| 41 | }; | 41 | }; |
| 42 | 42 | ||
| 43 | static struct lpss_device_desc lpss_dma_desc = { | ||
| 44 | .clk_required = true, | ||
| 45 | .clkdev_name = "hclk", | ||
| 46 | }; | ||
| 47 | |||
| 43 | struct lpss_private_data { | 48 | struct lpss_private_data { |
| 44 | void __iomem *mmio_base; | 49 | void __iomem *mmio_base; |
| 45 | resource_size_t mmio_size; | 50 | resource_size_t mmio_size; |
| @@ -49,7 +54,6 @@ struct lpss_private_data { | |||
| 49 | 54 | ||
| 50 | static struct lpss_device_desc lpt_dev_desc = { | 55 | static struct lpss_device_desc lpt_dev_desc = { |
| 51 | .clk_required = true, | 56 | .clk_required = true, |
| 52 | .clk_parent = "lpss_clk", | ||
| 53 | .prv_offset = 0x800, | 57 | .prv_offset = 0x800, |
| 54 | .ltr_required = true, | 58 | .ltr_required = true, |
| 55 | }; | 59 | }; |
| @@ -60,6 +64,9 @@ static struct lpss_device_desc lpt_sdio_dev_desc = { | |||
| 60 | }; | 64 | }; |
| 61 | 65 | ||
| 62 | static const struct acpi_device_id acpi_lpss_device_ids[] = { | 66 | static const struct acpi_device_id acpi_lpss_device_ids[] = { |
| 67 | /* Generic LPSS devices */ | ||
| 68 | { "INTL9C60", (unsigned long)&lpss_dma_desc }, | ||
| 69 | |||
| 63 | /* Lynxpoint LPSS devices */ | 70 | /* Lynxpoint LPSS devices */ |
| 64 | { "INT33C0", (unsigned long)&lpt_dev_desc }, | 71 | { "INT33C0", (unsigned long)&lpt_dev_desc }, |
| 65 | { "INT33C1", (unsigned long)&lpt_dev_desc }, | 72 | { "INT33C1", (unsigned long)&lpt_dev_desc }, |
| @@ -91,16 +98,27 @@ static int register_device_clock(struct acpi_device *adev, | |||
| 91 | struct lpss_private_data *pdata) | 98 | struct lpss_private_data *pdata) |
| 92 | { | 99 | { |
| 93 | const struct lpss_device_desc *dev_desc = pdata->dev_desc; | 100 | const struct lpss_device_desc *dev_desc = pdata->dev_desc; |
| 101 | struct lpss_clk_data *clk_data; | ||
| 94 | 102 | ||
| 95 | if (!lpss_clk_dev) | 103 | if (!lpss_clk_dev) |
| 96 | lpt_register_clock_device(); | 104 | lpt_register_clock_device(); |
| 97 | 105 | ||
| 98 | if (!dev_desc->clk_parent || !pdata->mmio_base | 106 | clk_data = platform_get_drvdata(lpss_clk_dev); |
| 107 | if (!clk_data) | ||
| 108 | return -ENODEV; | ||
| 109 | |||
| 110 | if (dev_desc->clkdev_name) { | ||
| 111 | clk_register_clkdev(clk_data->clk, dev_desc->clkdev_name, | ||
| 112 | dev_name(&adev->dev)); | ||
| 113 | return 0; | ||
| 114 | } | ||
| 115 | |||
| 116 | if (!pdata->mmio_base | ||
| 99 | || pdata->mmio_size < dev_desc->prv_offset + LPSS_CLK_SIZE) | 117 | || pdata->mmio_size < dev_desc->prv_offset + LPSS_CLK_SIZE) |
| 100 | return -ENODATA; | 118 | return -ENODATA; |
| 101 | 119 | ||
| 102 | pdata->clk = clk_register_gate(NULL, dev_name(&adev->dev), | 120 | pdata->clk = clk_register_gate(NULL, dev_name(&adev->dev), |
| 103 | dev_desc->clk_parent, 0, | 121 | clk_data->name, 0, |
| 104 | pdata->mmio_base + dev_desc->prv_offset, | 122 | pdata->mmio_base + dev_desc->prv_offset, |
| 105 | 0, 0, NULL); | 123 | 0, 0, NULL); |
| 106 | if (IS_ERR(pdata->clk)) | 124 | if (IS_ERR(pdata->clk)) |
diff --git a/drivers/acpi/csrt.c b/drivers/acpi/csrt.c deleted file mode 100644 index 5c15a91faf0b..000000000000 --- a/drivers/acpi/csrt.c +++ /dev/null | |||
| @@ -1,159 +0,0 @@ | |||
| 1 | /* | ||
| 2 | * Support for Core System Resources Table (CSRT) | ||
| 3 | * | ||
| 4 | * Copyright (C) 2013, Intel Corporation | ||
| 5 | * Authors: Mika Westerberg <mika.westerberg@linux.intel.com> | ||
| 6 | * Andy Shevchenko <andriy.shevchenko@linux.intel.com> | ||
| 7 | * | ||
| 8 | * This program is free software; you can redistribute it and/or modify | ||
| 9 | * it under the terms of the GNU General Public License version 2 as | ||
| 10 | * published by the Free Software Foundation. | ||
| 11 | */ | ||
| 12 | |||
| 13 | #define pr_fmt(fmt) "ACPI: CSRT: " fmt | ||
| 14 | |||
| 15 | #include <linux/acpi.h> | ||
| 16 | #include <linux/device.h> | ||
| 17 | #include <linux/kernel.h> | ||
| 18 | #include <linux/module.h> | ||
| 19 | #include <linux/platform_device.h> | ||
| 20 | #include <linux/sizes.h> | ||
| 21 | |||
| 22 | ACPI_MODULE_NAME("CSRT"); | ||
| 23 | |||
| 24 | static int __init acpi_csrt_parse_shared_info(struct platform_device *pdev, | ||
| 25 | const struct acpi_csrt_group *grp) | ||
| 26 | { | ||
| 27 | const struct acpi_csrt_shared_info *si; | ||
| 28 | struct resource res[3]; | ||
| 29 | size_t nres; | ||
| 30 | int ret; | ||
| 31 | |||
| 32 | memset(res, 0, sizeof(res)); | ||
| 33 | nres = 0; | ||
| 34 | |||
| 35 | si = (const struct acpi_csrt_shared_info *)&grp[1]; | ||
| 36 | /* | ||
| 37 | * The peripherals that are listed on CSRT typically support only | ||
| 38 | * 32-bit addresses so we only use the low part of MMIO base for | ||
| 39 | * now. | ||
| 40 | */ | ||
| 41 | if (!si->mmio_base_high && si->mmio_base_low) { | ||
| 42 | /* | ||
| 43 | * There is no size of the memory resource in shared_info | ||
| 44 | * so we assume that it is 4k here. | ||
| 45 | */ | ||
| 46 | res[nres].start = si->mmio_base_low; | ||
| 47 | res[nres].end = res[0].start + SZ_4K - 1; | ||
| 48 | res[nres++].flags = IORESOURCE_MEM; | ||
| 49 | } | ||
| 50 | |||
| 51 | if (si->gsi_interrupt) { | ||
| 52 | int irq = acpi_register_gsi(NULL, si->gsi_interrupt, | ||
| 53 | si->interrupt_mode, | ||
| 54 | si->interrupt_polarity); | ||
| 55 | res[nres].start = irq; | ||
| 56 | res[nres].end = irq; | ||
| 57 | res[nres++].flags = IORESOURCE_IRQ; | ||
| 58 | } | ||
| 59 | |||
| 60 | if (si->base_request_line || si->num_handshake_signals) { | ||
| 61 | /* | ||
| 62 | * We pass the driver a DMA resource describing the range | ||
| 63 | * of request lines the device supports. | ||
| 64 | */ | ||
| 65 | res[nres].start = si->base_request_line; | ||
| 66 | res[nres].end = res[nres].start + si->num_handshake_signals - 1; | ||
| 67 | res[nres++].flags = IORESOURCE_DMA; | ||
| 68 | } | ||
| 69 | |||
| 70 | ret = platform_device_add_resources(pdev, res, nres); | ||
| 71 | if (ret) { | ||
| 72 | if (si->gsi_interrupt) | ||
| 73 | acpi_unregister_gsi(si->gsi_interrupt); | ||
| 74 | return ret; | ||
| 75 | } | ||
| 76 | |||
| 77 | return 0; | ||
| 78 | } | ||
| 79 | |||
| 80 | static int __init | ||
| 81 | acpi_csrt_parse_resource_group(const struct acpi_csrt_group *grp) | ||
| 82 | { | ||
| 83 | struct platform_device *pdev; | ||
| 84 | char vendor[5], name[16]; | ||
| 85 | int ret, i; | ||
| 86 | |||
| 87 | vendor[0] = grp->vendor_id; | ||
| 88 | vendor[1] = grp->vendor_id >> 8; | ||
| 89 | vendor[2] = grp->vendor_id >> 16; | ||
| 90 | vendor[3] = grp->vendor_id >> 24; | ||
| 91 | vendor[4] = '\0'; | ||
| 92 | |||
| 93 | if (grp->shared_info_length != sizeof(struct acpi_csrt_shared_info)) | ||
| 94 | return -ENODEV; | ||
| 95 | |||
| 96 | snprintf(name, sizeof(name), "%s%04X", vendor, grp->device_id); | ||
| 97 | pdev = platform_device_alloc(name, PLATFORM_DEVID_AUTO); | ||
| 98 | if (!pdev) | ||
| 99 | return -ENOMEM; | ||
| 100 | |||
| 101 | /* Add resources based on the shared info */ | ||
| 102 | ret = acpi_csrt_parse_shared_info(pdev, grp); | ||
| 103 | if (ret) | ||
| 104 | goto fail; | ||
| 105 | |||
| 106 | ret = platform_device_add(pdev); | ||
| 107 | if (ret) | ||
| 108 | goto fail; | ||
| 109 | |||
| 110 | for (i = 0; i < pdev->num_resources; i++) | ||
| 111 | dev_dbg(&pdev->dev, "%pR\n", &pdev->resource[i]); | ||
| 112 | |||
| 113 | return 0; | ||
| 114 | |||
| 115 | fail: | ||
| 116 | platform_device_put(pdev); | ||
| 117 | return ret; | ||
| 118 | } | ||
| 119 | |||
| 120 | /* | ||
| 121 | * CSRT or Core System Resources Table is a proprietary ACPI table | ||
| 122 | * introduced by Microsoft. This table can contain devices that are not in | ||
| 123 | * the system DSDT table. In particular DMA controllers might be described | ||
| 124 | * here. | ||
| 125 | * | ||
| 126 | * We present these devices as normal platform devices that don't have ACPI | ||
| 127 | * IDs or handle. The platform device name will be something like | ||
| 128 | * <VENDOR><DEVID>.<n>.auto for example: INTL9C06.0.auto. | ||
| 129 | */ | ||
| 130 | void __init acpi_csrt_init(void) | ||
| 131 | { | ||
| 132 | struct acpi_csrt_group *grp, *end; | ||
| 133 | struct acpi_table_csrt *csrt; | ||
| 134 | acpi_status status; | ||
| 135 | int ret; | ||
| 136 | |||
| 137 | status = acpi_get_table(ACPI_SIG_CSRT, 0, | ||
| 138 | (struct acpi_table_header **)&csrt); | ||
| 139 | if (ACPI_FAILURE(status)) { | ||
| 140 | if (status != AE_NOT_FOUND) | ||
| 141 | pr_warn("failed to get the CSRT table\n"); | ||
| 142 | return; | ||
| 143 | } | ||
| 144 | |||
| 145 | pr_debug("parsing CSRT table for devices\n"); | ||
| 146 | |||
| 147 | grp = (struct acpi_csrt_group *)(csrt + 1); | ||
| 148 | end = (struct acpi_csrt_group *)((void *)csrt + csrt->header.length); | ||
| 149 | |||
| 150 | while (grp < end) { | ||
| 151 | ret = acpi_csrt_parse_resource_group(grp); | ||
| 152 | if (ret) { | ||
| 153 | pr_warn("error in parsing resource group: %d\n", ret); | ||
| 154 | return; | ||
| 155 | } | ||
| 156 | |||
| 157 | grp = (struct acpi_csrt_group *)((void *)grp + grp->length); | ||
| 158 | } | ||
| 159 | } | ||
diff --git a/drivers/acpi/device_pm.c b/drivers/acpi/device_pm.c index 96de787e6104..bc493aa3af19 100644 --- a/drivers/acpi/device_pm.c +++ b/drivers/acpi/device_pm.c | |||
| @@ -37,68 +37,6 @@ | |||
| 37 | #define _COMPONENT ACPI_POWER_COMPONENT | 37 | #define _COMPONENT ACPI_POWER_COMPONENT |
| 38 | ACPI_MODULE_NAME("device_pm"); | 38 | ACPI_MODULE_NAME("device_pm"); |
| 39 | 39 | ||
| 40 | static DEFINE_MUTEX(acpi_pm_notifier_lock); | ||
| 41 | |||
| 42 | /** | ||
| 43 | * acpi_add_pm_notifier - Register PM notifier for given ACPI device. | ||
| 44 | * @adev: ACPI device to add the notifier for. | ||
| 45 | * @context: Context information to pass to the notifier routine. | ||
| 46 | * | ||
| 47 | * NOTE: @adev need not be a run-wake or wakeup device to be a valid source of | ||
| 48 | * PM wakeup events. For example, wakeup events may be generated for bridges | ||
| 49 | * if one of the devices below the bridge is signaling wakeup, even if the | ||
| 50 | * bridge itself doesn't have a wakeup GPE associated with it. | ||
| 51 | */ | ||
| 52 | acpi_status acpi_add_pm_notifier(struct acpi_device *adev, | ||
| 53 | acpi_notify_handler handler, void *context) | ||
| 54 | { | ||
| 55 | acpi_status status = AE_ALREADY_EXISTS; | ||
| 56 | |||
| 57 | mutex_lock(&acpi_pm_notifier_lock); | ||
| 58 | |||
| 59 | if (adev->wakeup.flags.notifier_present) | ||
| 60 | goto out; | ||
| 61 | |||
| 62 | status = acpi_install_notify_handler(adev->handle, | ||
| 63 | ACPI_SYSTEM_NOTIFY, | ||
| 64 | handler, context); | ||
| 65 | if (ACPI_FAILURE(status)) | ||
| 66 | goto out; | ||
| 67 | |||
| 68 | adev->wakeup.flags.notifier_present = true; | ||
| 69 | |||
| 70 | out: | ||
| 71 | mutex_unlock(&acpi_pm_notifier_lock); | ||
| 72 | return status; | ||
| 73 | } | ||
| 74 | |||
| 75 | /** | ||
| 76 | * acpi_remove_pm_notifier - Unregister PM notifier from given ACPI device. | ||
| 77 | * @adev: ACPI device to remove the notifier from. | ||
| 78 | */ | ||
| 79 | acpi_status acpi_remove_pm_notifier(struct acpi_device *adev, | ||
| 80 | acpi_notify_handler handler) | ||
| 81 | { | ||
| 82 | acpi_status status = AE_BAD_PARAMETER; | ||
| 83 | |||
| 84 | mutex_lock(&acpi_pm_notifier_lock); | ||
| 85 | |||
| 86 | if (!adev->wakeup.flags.notifier_present) | ||
| 87 | goto out; | ||
| 88 | |||
| 89 | status = acpi_remove_notify_handler(adev->handle, | ||
| 90 | ACPI_SYSTEM_NOTIFY, | ||
| 91 | handler); | ||
| 92 | if (ACPI_FAILURE(status)) | ||
| 93 | goto out; | ||
| 94 | |||
| 95 | adev->wakeup.flags.notifier_present = false; | ||
| 96 | |||
| 97 | out: | ||
| 98 | mutex_unlock(&acpi_pm_notifier_lock); | ||
| 99 | return status; | ||
| 100 | } | ||
| 101 | |||
| 102 | /** | 40 | /** |
| 103 | * acpi_power_state_string - String representation of ACPI device power state. | 41 | * acpi_power_state_string - String representation of ACPI device power state. |
| 104 | * @state: ACPI device power state to return the string representation of. | 42 | * @state: ACPI device power state to return the string representation of. |
| @@ -385,6 +323,69 @@ bool acpi_bus_power_manageable(acpi_handle handle) | |||
| 385 | } | 323 | } |
| 386 | EXPORT_SYMBOL(acpi_bus_power_manageable); | 324 | EXPORT_SYMBOL(acpi_bus_power_manageable); |
| 387 | 325 | ||
| 326 | #ifdef CONFIG_PM | ||
| 327 | static DEFINE_MUTEX(acpi_pm_notifier_lock); | ||
| 328 | |||
| 329 | /** | ||
| 330 | * acpi_add_pm_notifier - Register PM notifier for given ACPI device. | ||
| 331 | * @adev: ACPI device to add the notifier for. | ||
| 332 | * @context: Context information to pass to the notifier routine. | ||
| 333 | * | ||
| 334 | * NOTE: @adev need not be a run-wake or wakeup device to be a valid source of | ||
| 335 | * PM wakeup events. For example, wakeup events may be generated for bridges | ||
| 336 | * if one of the devices below the bridge is signaling wakeup, even if the | ||
| 337 | * bridge itself doesn't have a wakeup GPE associated with it. | ||
| 338 | */ | ||
| 339 | acpi_status acpi_add_pm_notifier(struct acpi_device *adev, | ||
| 340 | acpi_notify_handler handler, void *context) | ||
| 341 | { | ||
| 342 | acpi_status status = AE_ALREADY_EXISTS; | ||
| 343 | |||
| 344 | mutex_lock(&acpi_pm_notifier_lock); | ||
| 345 | |||
| 346 | if (adev->wakeup.flags.notifier_present) | ||
| 347 | goto out; | ||
| 348 | |||
| 349 | status = acpi_install_notify_handler(adev->handle, | ||
| 350 | ACPI_SYSTEM_NOTIFY, | ||
| 351 | handler, context); | ||
| 352 | if (ACPI_FAILURE(status)) | ||
| 353 | goto out; | ||
| 354 | |||
| 355 | adev->wakeup.flags.notifier_present = true; | ||
| 356 | |||
| 357 | out: | ||
| 358 | mutex_unlock(&acpi_pm_notifier_lock); | ||
| 359 | return status; | ||
| 360 | } | ||
| 361 | |||
| 362 | /** | ||
| 363 | * acpi_remove_pm_notifier - Unregister PM notifier from given ACPI device. | ||
| 364 | * @adev: ACPI device to remove the notifier from. | ||
| 365 | */ | ||
| 366 | acpi_status acpi_remove_pm_notifier(struct acpi_device *adev, | ||
| 367 | acpi_notify_handler handler) | ||
| 368 | { | ||
| 369 | acpi_status status = AE_BAD_PARAMETER; | ||
| 370 | |||
| 371 | mutex_lock(&acpi_pm_notifier_lock); | ||
| 372 | |||
| 373 | if (!adev->wakeup.flags.notifier_present) | ||
| 374 | goto out; | ||
| 375 | |||
| 376 | status = acpi_remove_notify_handler(adev->handle, | ||
| 377 | ACPI_SYSTEM_NOTIFY, | ||
| 378 | handler); | ||
| 379 | if (ACPI_FAILURE(status)) | ||
| 380 | goto out; | ||
| 381 | |||
| 382 | adev->wakeup.flags.notifier_present = false; | ||
| 383 | |||
| 384 | out: | ||
| 385 | mutex_unlock(&acpi_pm_notifier_lock); | ||
| 386 | return status; | ||
| 387 | } | ||
| 388 | |||
| 388 | bool acpi_bus_can_wakeup(acpi_handle handle) | 389 | bool acpi_bus_can_wakeup(acpi_handle handle) |
| 389 | { | 390 | { |
| 390 | struct acpi_device *device; | 391 | struct acpi_device *device; |
| @@ -1023,3 +1024,4 @@ void acpi_dev_pm_remove_dependent(acpi_handle handle, struct device *depdev) | |||
| 1023 | mutex_unlock(&adev->physical_node_lock); | 1024 | mutex_unlock(&adev->physical_node_lock); |
| 1024 | } | 1025 | } |
| 1025 | EXPORT_SYMBOL_GPL(acpi_dev_pm_remove_dependent); | 1026 | EXPORT_SYMBOL_GPL(acpi_dev_pm_remove_dependent); |
| 1027 | #endif /* CONFIG_PM */ | ||
diff --git a/drivers/acpi/internal.h b/drivers/acpi/internal.h index 6f1afd9118c8..297cbf456f86 100644 --- a/drivers/acpi/internal.h +++ b/drivers/acpi/internal.h | |||
| @@ -35,7 +35,6 @@ void acpi_pci_link_init(void); | |||
| 35 | void acpi_pci_root_hp_init(void); | 35 | void acpi_pci_root_hp_init(void); |
| 36 | void acpi_platform_init(void); | 36 | void acpi_platform_init(void); |
| 37 | int acpi_sysfs_init(void); | 37 | int acpi_sysfs_init(void); |
| 38 | void acpi_csrt_init(void); | ||
| 39 | #ifdef CONFIG_ACPI_CONTAINER | 38 | #ifdef CONFIG_ACPI_CONTAINER |
| 40 | void acpi_container_init(void); | 39 | void acpi_container_init(void); |
| 41 | #else | 40 | #else |
diff --git a/drivers/acpi/pci_root.c b/drivers/acpi/pci_root.c index 1dd6f6c85874..e427dc516c76 100644 --- a/drivers/acpi/pci_root.c +++ b/drivers/acpi/pci_root.c | |||
| @@ -641,7 +641,9 @@ static void _handle_hotplug_event_root(struct work_struct *work) | |||
| 641 | /* bus enumerate */ | 641 | /* bus enumerate */ |
| 642 | printk(KERN_DEBUG "%s: Bus check notify on %s\n", __func__, | 642 | printk(KERN_DEBUG "%s: Bus check notify on %s\n", __func__, |
| 643 | (char *)buffer.pointer); | 643 | (char *)buffer.pointer); |
| 644 | if (!root) | 644 | if (root) |
| 645 | acpiphp_check_host_bridge(handle); | ||
| 646 | else | ||
| 645 | handle_root_bridge_insertion(handle); | 647 | handle_root_bridge_insertion(handle); |
| 646 | 648 | ||
| 647 | break; | 649 | break; |
diff --git a/drivers/acpi/scan.c b/drivers/acpi/scan.c index c1bc608339a6..44225cb15f3a 100644 --- a/drivers/acpi/scan.c +++ b/drivers/acpi/scan.c | |||
| @@ -2043,7 +2043,6 @@ int __init acpi_scan_init(void) | |||
| 2043 | acpi_pci_link_init(); | 2043 | acpi_pci_link_init(); |
| 2044 | acpi_platform_init(); | 2044 | acpi_platform_init(); |
| 2045 | acpi_lpss_init(); | 2045 | acpi_lpss_init(); |
| 2046 | acpi_csrt_init(); | ||
| 2047 | acpi_container_init(); | 2046 | acpi_container_init(); |
| 2048 | acpi_memory_hotplug_init(); | 2047 | acpi_memory_hotplug_init(); |
| 2049 | 2048 | ||
diff --git a/drivers/acpi/video_detect.c b/drivers/acpi/video_detect.c index 66f67626f02e..e6bd910bc6ed 100644 --- a/drivers/acpi/video_detect.c +++ b/drivers/acpi/video_detect.c | |||
| @@ -161,6 +161,14 @@ static struct dmi_system_id video_detect_dmi_table[] = { | |||
| 161 | DMI_MATCH(DMI_PRODUCT_NAME, "UL30VT"), | 161 | DMI_MATCH(DMI_PRODUCT_NAME, "UL30VT"), |
| 162 | }, | 162 | }, |
| 163 | }, | 163 | }, |
| 164 | { | ||
| 165 | .callback = video_detect_force_vendor, | ||
| 166 | .ident = "Asus UL30A", | ||
| 167 | .matches = { | ||
| 168 | DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."), | ||
| 169 | DMI_MATCH(DMI_PRODUCT_NAME, "UL30A"), | ||
| 170 | }, | ||
| 171 | }, | ||
| 164 | { }, | 172 | { }, |
| 165 | }; | 173 | }; |
| 166 | 174 | ||
diff --git a/drivers/base/bus.c b/drivers/base/bus.c index 1a68f947ded8..d414331b480e 100644 --- a/drivers/base/bus.c +++ b/drivers/base/bus.c | |||
| @@ -1295,6 +1295,7 @@ int subsys_virtual_register(struct bus_type *subsys, | |||
| 1295 | 1295 | ||
| 1296 | return subsys_register(subsys, groups, virtual_dir); | 1296 | return subsys_register(subsys, groups, virtual_dir); |
| 1297 | } | 1297 | } |
| 1298 | EXPORT_SYMBOL_GPL(subsys_virtual_register); | ||
| 1298 | 1299 | ||
| 1299 | int __init buses_init(void) | 1300 | int __init buses_init(void) |
| 1300 | { | 1301 | { |
diff --git a/drivers/base/core.c b/drivers/base/core.c index 016312437577..2499cefdcdf2 100644 --- a/drivers/base/core.c +++ b/drivers/base/core.c | |||
| @@ -572,9 +572,11 @@ int device_create_file(struct device *dev, | |||
| 572 | 572 | ||
| 573 | if (dev) { | 573 | if (dev) { |
| 574 | WARN(((attr->attr.mode & S_IWUGO) && !attr->store), | 574 | WARN(((attr->attr.mode & S_IWUGO) && !attr->store), |
| 575 | "Write permission without 'store'\n"); | 575 | "Attribute %s: write permission without 'store'\n", |
| 576 | attr->attr.name); | ||
| 576 | WARN(((attr->attr.mode & S_IRUGO) && !attr->show), | 577 | WARN(((attr->attr.mode & S_IRUGO) && !attr->show), |
| 577 | "Read permission without 'show'\n"); | 578 | "Attribute %s: read permission without 'show'\n", |
| 579 | attr->attr.name); | ||
| 578 | error = sysfs_create_file(&dev->kobj, &attr->attr); | 580 | error = sysfs_create_file(&dev->kobj, &attr->attr); |
| 579 | } | 581 | } |
| 580 | 582 | ||
diff --git a/drivers/bcma/scan.c b/drivers/bcma/scan.c index bca9c80056fe..8bffa5c9818c 100644 --- a/drivers/bcma/scan.c +++ b/drivers/bcma/scan.c | |||
| @@ -84,6 +84,8 @@ static const struct bcma_device_id_name bcma_bcm_device_names[] = { | |||
| 84 | { BCMA_CORE_I2S, "I2S" }, | 84 | { BCMA_CORE_I2S, "I2S" }, |
| 85 | { BCMA_CORE_SDR_DDR1_MEM_CTL, "SDR/DDR1 Memory Controller" }, | 85 | { BCMA_CORE_SDR_DDR1_MEM_CTL, "SDR/DDR1 Memory Controller" }, |
| 86 | { BCMA_CORE_SHIM, "SHIM" }, | 86 | { BCMA_CORE_SHIM, "SHIM" }, |
| 87 | { BCMA_CORE_PCIE2, "PCIe Gen2" }, | ||
| 88 | { BCMA_CORE_ARM_CR4, "ARM CR4" }, | ||
| 87 | { BCMA_CORE_DEFAULT, "Default" }, | 89 | { BCMA_CORE_DEFAULT, "Default" }, |
| 88 | }; | 90 | }; |
| 89 | 91 | ||
diff --git a/drivers/block/brd.c b/drivers/block/brd.c index f1a29f8e9d33..9bf4371755f2 100644 --- a/drivers/block/brd.c +++ b/drivers/block/brd.c | |||
| @@ -117,13 +117,13 @@ static struct page *brd_insert_page(struct brd_device *brd, sector_t sector) | |||
| 117 | 117 | ||
| 118 | spin_lock(&brd->brd_lock); | 118 | spin_lock(&brd->brd_lock); |
| 119 | idx = sector >> PAGE_SECTORS_SHIFT; | 119 | idx = sector >> PAGE_SECTORS_SHIFT; |
| 120 | page->index = idx; | ||
| 120 | if (radix_tree_insert(&brd->brd_pages, idx, page)) { | 121 | if (radix_tree_insert(&brd->brd_pages, idx, page)) { |
| 121 | __free_page(page); | 122 | __free_page(page); |
| 122 | page = radix_tree_lookup(&brd->brd_pages, idx); | 123 | page = radix_tree_lookup(&brd->brd_pages, idx); |
| 123 | BUG_ON(!page); | 124 | BUG_ON(!page); |
| 124 | BUG_ON(page->index != idx); | 125 | BUG_ON(page->index != idx); |
| 125 | } else | 126 | } |
| 126 | page->index = idx; | ||
| 127 | spin_unlock(&brd->brd_lock); | 127 | spin_unlock(&brd->brd_lock); |
| 128 | 128 | ||
| 129 | radix_tree_preload_end(); | 129 | radix_tree_preload_end(); |
diff --git a/drivers/block/xsysace.c b/drivers/block/xsysace.c index f8ef15f37c5e..3fd130fdfbc1 100644 --- a/drivers/block/xsysace.c +++ b/drivers/block/xsysace.c | |||
| @@ -1160,8 +1160,7 @@ static int ace_probe(struct platform_device *dev) | |||
| 1160 | dev_dbg(&dev->dev, "ace_probe(%p)\n", dev); | 1160 | dev_dbg(&dev->dev, "ace_probe(%p)\n", dev); |
| 1161 | 1161 | ||
| 1162 | /* device id and bus width */ | 1162 | /* device id and bus width */ |
| 1163 | of_property_read_u32(dev->dev.of_node, "port-number", &id); | 1163 | if (of_property_read_u32(dev->dev.of_node, "port-number", &id)) |
| 1164 | if (id < 0) | ||
| 1165 | id = 0; | 1164 | id = 0; |
| 1166 | if (of_find_property(dev->dev.of_node, "8-bit", NULL)) | 1165 | if (of_find_property(dev->dev.of_node, "8-bit", NULL)) |
| 1167 | bus_width = ACE_BUS_WIDTH_8; | 1166 | bus_width = ACE_BUS_WIDTH_8; |
diff --git a/drivers/char/lp.c b/drivers/char/lp.c index dafd9ac6428f..0913d79424d3 100644 --- a/drivers/char/lp.c +++ b/drivers/char/lp.c | |||
| @@ -622,9 +622,12 @@ static int lp_do_ioctl(unsigned int minor, unsigned int cmd, | |||
| 622 | return -EFAULT; | 622 | return -EFAULT; |
| 623 | break; | 623 | break; |
| 624 | case LPGETSTATUS: | 624 | case LPGETSTATUS: |
| 625 | if (mutex_lock_interruptible(&lp_table[minor].port_mutex)) | ||
| 626 | return -EINTR; | ||
| 625 | lp_claim_parport_or_block (&lp_table[minor]); | 627 | lp_claim_parport_or_block (&lp_table[minor]); |
| 626 | status = r_str(minor); | 628 | status = r_str(minor); |
| 627 | lp_release_parport (&lp_table[minor]); | 629 | lp_release_parport (&lp_table[minor]); |
| 630 | mutex_unlock(&lp_table[minor].port_mutex); | ||
| 628 | 631 | ||
| 629 | if (copy_to_user(argp, &status, sizeof(int))) | 632 | if (copy_to_user(argp, &status, sizeof(int))) |
| 630 | return -EFAULT; | 633 | return -EFAULT; |
diff --git a/drivers/char/random.c b/drivers/char/random.c index cd9a6211dcad..35487e8ded59 100644 --- a/drivers/char/random.c +++ b/drivers/char/random.c | |||
| @@ -865,16 +865,24 @@ static size_t account(struct entropy_store *r, size_t nbytes, int min, | |||
| 865 | if (r->entropy_count / 8 < min + reserved) { | 865 | if (r->entropy_count / 8 < min + reserved) { |
| 866 | nbytes = 0; | 866 | nbytes = 0; |
| 867 | } else { | 867 | } else { |
| 868 | int entropy_count, orig; | ||
| 869 | retry: | ||
| 870 | entropy_count = orig = ACCESS_ONCE(r->entropy_count); | ||
| 868 | /* If limited, never pull more than available */ | 871 | /* If limited, never pull more than available */ |
| 869 | if (r->limit && nbytes + reserved >= r->entropy_count / 8) | 872 | if (r->limit && nbytes + reserved >= entropy_count / 8) |
| 870 | nbytes = r->entropy_count/8 - reserved; | 873 | nbytes = entropy_count/8 - reserved; |
| 871 | 874 | ||
| 872 | if (r->entropy_count / 8 >= nbytes + reserved) | 875 | if (entropy_count / 8 >= nbytes + reserved) { |
| 873 | r->entropy_count -= nbytes*8; | 876 | entropy_count -= nbytes*8; |
| 874 | else | 877 | if (cmpxchg(&r->entropy_count, orig, entropy_count) != orig) |
| 875 | r->entropy_count = reserved; | 878 | goto retry; |
| 879 | } else { | ||
| 880 | entropy_count = reserved; | ||
| 881 | if (cmpxchg(&r->entropy_count, orig, entropy_count) != orig) | ||
| 882 | goto retry; | ||
| 883 | } | ||
| 876 | 884 | ||
| 877 | if (r->entropy_count < random_write_wakeup_thresh) | 885 | if (entropy_count < random_write_wakeup_thresh) |
| 878 | wakeup_write = 1; | 886 | wakeup_write = 1; |
| 879 | } | 887 | } |
| 880 | 888 | ||
| @@ -957,10 +965,23 @@ static ssize_t extract_entropy(struct entropy_store *r, void *buf, | |||
| 957 | { | 965 | { |
| 958 | ssize_t ret = 0, i; | 966 | ssize_t ret = 0, i; |
| 959 | __u8 tmp[EXTRACT_SIZE]; | 967 | __u8 tmp[EXTRACT_SIZE]; |
| 968 | unsigned long flags; | ||
| 960 | 969 | ||
| 961 | /* if last_data isn't primed, we need EXTRACT_SIZE extra bytes */ | 970 | /* if last_data isn't primed, we need EXTRACT_SIZE extra bytes */ |
| 962 | if (fips_enabled && !r->last_data_init) | 971 | if (fips_enabled) { |
| 963 | nbytes += EXTRACT_SIZE; | 972 | spin_lock_irqsave(&r->lock, flags); |
| 973 | if (!r->last_data_init) { | ||
| 974 | r->last_data_init = true; | ||
| 975 | spin_unlock_irqrestore(&r->lock, flags); | ||
| 976 | trace_extract_entropy(r->name, EXTRACT_SIZE, | ||
| 977 | r->entropy_count, _RET_IP_); | ||
| 978 | xfer_secondary_pool(r, EXTRACT_SIZE); | ||
| 979 | extract_buf(r, tmp); | ||
| 980 | spin_lock_irqsave(&r->lock, flags); | ||
| 981 | memcpy(r->last_data, tmp, EXTRACT_SIZE); | ||
| 982 | } | ||
| 983 | spin_unlock_irqrestore(&r->lock, flags); | ||
| 984 | } | ||
| 964 | 985 | ||
| 965 | trace_extract_entropy(r->name, nbytes, r->entropy_count, _RET_IP_); | 986 | trace_extract_entropy(r->name, nbytes, r->entropy_count, _RET_IP_); |
| 966 | xfer_secondary_pool(r, nbytes); | 987 | xfer_secondary_pool(r, nbytes); |
| @@ -970,19 +991,6 @@ static ssize_t extract_entropy(struct entropy_store *r, void *buf, | |||
| 970 | extract_buf(r, tmp); | 991 | extract_buf(r, tmp); |
| 971 | 992 | ||
| 972 | if (fips_enabled) { | 993 | if (fips_enabled) { |
| 973 | unsigned long flags; | ||
| 974 | |||
| 975 | |||
| 976 | /* prime last_data value if need be, per fips 140-2 */ | ||
| 977 | if (!r->last_data_init) { | ||
| 978 | spin_lock_irqsave(&r->lock, flags); | ||
| 979 | memcpy(r->last_data, tmp, EXTRACT_SIZE); | ||
| 980 | r->last_data_init = true; | ||
| 981 | nbytes -= EXTRACT_SIZE; | ||
| 982 | spin_unlock_irqrestore(&r->lock, flags); | ||
| 983 | extract_buf(r, tmp); | ||
| 984 | } | ||
| 985 | |||
| 986 | spin_lock_irqsave(&r->lock, flags); | 994 | spin_lock_irqsave(&r->lock, flags); |
| 987 | if (!memcmp(tmp, r->last_data, EXTRACT_SIZE)) | 995 | if (!memcmp(tmp, r->last_data, EXTRACT_SIZE)) |
| 988 | panic("Hardware RNG duplicated output!\n"); | 996 | panic("Hardware RNG duplicated output!\n"); |
diff --git a/drivers/char/ttyprintk.c b/drivers/char/ttyprintk.c index 4945bd3d18d0..d5d2e4a985aa 100644 --- a/drivers/char/ttyprintk.c +++ b/drivers/char/ttyprintk.c | |||
| @@ -179,7 +179,6 @@ static int __init ttyprintk_init(void) | |||
| 179 | { | 179 | { |
| 180 | int ret = -ENOMEM; | 180 | int ret = -ENOMEM; |
| 181 | 181 | ||
| 182 | tpk_port.port.ops = &null_ops; | ||
| 183 | mutex_init(&tpk_port.port_write_mutex); | 182 | mutex_init(&tpk_port.port_write_mutex); |
| 184 | 183 | ||
| 185 | ttyprintk_driver = tty_alloc_driver(1, | 184 | ttyprintk_driver = tty_alloc_driver(1, |
| @@ -190,6 +189,7 @@ static int __init ttyprintk_init(void) | |||
| 190 | return PTR_ERR(ttyprintk_driver); | 189 | return PTR_ERR(ttyprintk_driver); |
| 191 | 190 | ||
| 192 | tty_port_init(&tpk_port.port); | 191 | tty_port_init(&tpk_port.port); |
| 192 | tpk_port.port.ops = &null_ops; | ||
| 193 | 193 | ||
| 194 | ttyprintk_driver->driver_name = "ttyprintk"; | 194 | ttyprintk_driver->driver_name = "ttyprintk"; |
| 195 | ttyprintk_driver->name = "ttyprintk"; | 195 | ttyprintk_driver->name = "ttyprintk"; |
diff --git a/drivers/clk/tegra/clk-tegra20.c b/drivers/clk/tegra/clk-tegra20.c index 8292a00c3de9..075db0c99edb 100644 --- a/drivers/clk/tegra/clk-tegra20.c +++ b/drivers/clk/tegra/clk-tegra20.c | |||
| @@ -872,6 +872,14 @@ static void __init tegra20_periph_clk_init(void) | |||
| 872 | struct clk *clk; | 872 | struct clk *clk; |
| 873 | int i; | 873 | int i; |
| 874 | 874 | ||
| 875 | /* ac97 */ | ||
| 876 | clk = tegra_clk_register_periph_gate("ac97", "pll_a_out0", | ||
| 877 | TEGRA_PERIPH_ON_APB, | ||
| 878 | clk_base, 0, 3, &periph_l_regs, | ||
| 879 | periph_clk_enb_refcnt); | ||
| 880 | clk_register_clkdev(clk, NULL, "tegra20-ac97"); | ||
| 881 | clks[ac97] = clk; | ||
| 882 | |||
| 875 | /* apbdma */ | 883 | /* apbdma */ |
| 876 | clk = tegra_clk_register_periph_gate("apbdma", "pclk", 0, clk_base, | 884 | clk = tegra_clk_register_periph_gate("apbdma", "pclk", 0, clk_base, |
| 877 | 0, 34, &periph_h_regs, | 885 | 0, 34, &periph_h_regs, |
| @@ -1234,9 +1242,6 @@ static __initdata struct tegra_clk_init_table init_table[] = { | |||
| 1234 | {uartc, pll_p, 0, 0}, | 1242 | {uartc, pll_p, 0, 0}, |
| 1235 | {uartd, pll_p, 0, 0}, | 1243 | {uartd, pll_p, 0, 0}, |
| 1236 | {uarte, pll_p, 0, 0}, | 1244 | {uarte, pll_p, 0, 0}, |
| 1237 | {usbd, clk_max, 12000000, 0}, | ||
| 1238 | {usb2, clk_max, 12000000, 0}, | ||
| 1239 | {usb3, clk_max, 12000000, 0}, | ||
| 1240 | {pll_a, clk_max, 56448000, 1}, | 1245 | {pll_a, clk_max, 56448000, 1}, |
| 1241 | {pll_a_out0, clk_max, 11289600, 1}, | 1246 | {pll_a_out0, clk_max, 11289600, 1}, |
| 1242 | {cdev1, clk_max, 0, 1}, | 1247 | {cdev1, clk_max, 0, 1}, |
diff --git a/drivers/clk/x86/clk-lpt.c b/drivers/clk/x86/clk-lpt.c index 5cf4f4686406..4f45eee9e33b 100644 --- a/drivers/clk/x86/clk-lpt.c +++ b/drivers/clk/x86/clk-lpt.c | |||
| @@ -15,22 +15,29 @@ | |||
| 15 | #include <linux/clk-provider.h> | 15 | #include <linux/clk-provider.h> |
| 16 | #include <linux/err.h> | 16 | #include <linux/err.h> |
| 17 | #include <linux/module.h> | 17 | #include <linux/module.h> |
| 18 | #include <linux/platform_data/clk-lpss.h> | ||
| 18 | #include <linux/platform_device.h> | 19 | #include <linux/platform_device.h> |
| 19 | 20 | ||
| 20 | #define PRV_CLOCK_PARAMS 0x800 | 21 | #define PRV_CLOCK_PARAMS 0x800 |
| 21 | 22 | ||
| 22 | static int lpt_clk_probe(struct platform_device *pdev) | 23 | static int lpt_clk_probe(struct platform_device *pdev) |
| 23 | { | 24 | { |
| 25 | struct lpss_clk_data *drvdata; | ||
| 24 | struct clk *clk; | 26 | struct clk *clk; |
| 25 | 27 | ||
| 28 | drvdata = devm_kzalloc(&pdev->dev, sizeof(*drvdata), GFP_KERNEL); | ||
| 29 | if (!drvdata) | ||
| 30 | return -ENOMEM; | ||
| 31 | |||
| 26 | /* LPSS free running clock */ | 32 | /* LPSS free running clock */ |
| 27 | clk = clk_register_fixed_rate(&pdev->dev, "lpss_clk", NULL, CLK_IS_ROOT, | 33 | drvdata->name = "lpss_clk"; |
| 28 | 100000000); | 34 | clk = clk_register_fixed_rate(&pdev->dev, drvdata->name, NULL, |
| 35 | CLK_IS_ROOT, 100000000); | ||
| 29 | if (IS_ERR(clk)) | 36 | if (IS_ERR(clk)) |
| 30 | return PTR_ERR(clk); | 37 | return PTR_ERR(clk); |
| 31 | 38 | ||
| 32 | /* Shared DMA clock */ | 39 | drvdata->clk = clk; |
| 33 | clk_register_clkdev(clk, "hclk", "INTL9C60.0.auto"); | 40 | platform_set_drvdata(pdev, drvdata); |
| 34 | return 0; | 41 | return 0; |
| 35 | } | 42 | } |
| 36 | 43 | ||
diff --git a/drivers/cpufreq/Kconfig.x86 b/drivers/cpufreq/Kconfig.x86 index 2b8a8c374548..6bd63d63d356 100644 --- a/drivers/cpufreq/Kconfig.x86 +++ b/drivers/cpufreq/Kconfig.x86 | |||
| @@ -272,7 +272,7 @@ config X86_LONGHAUL | |||
| 272 | config X86_E_POWERSAVER | 272 | config X86_E_POWERSAVER |
| 273 | tristate "VIA C7 Enhanced PowerSaver (DANGEROUS)" | 273 | tristate "VIA C7 Enhanced PowerSaver (DANGEROUS)" |
| 274 | select CPU_FREQ_TABLE | 274 | select CPU_FREQ_TABLE |
| 275 | depends on X86_32 | 275 | depends on X86_32 && ACPI_PROCESSOR |
| 276 | help | 276 | help |
| 277 | This adds the CPUFreq driver for VIA C7 processors. However, this driver | 277 | This adds the CPUFreq driver for VIA C7 processors. However, this driver |
| 278 | does not have any safeguards to prevent operating the CPU out of spec | 278 | does not have any safeguards to prevent operating the CPU out of spec |
diff --git a/drivers/cpufreq/arm_big_little_dt.c b/drivers/cpufreq/arm_big_little_dt.c index 173ed059d95f..fd9e3ea6a480 100644 --- a/drivers/cpufreq/arm_big_little_dt.c +++ b/drivers/cpufreq/arm_big_little_dt.c | |||
| @@ -19,70 +19,75 @@ | |||
| 19 | 19 | ||
| 20 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt | 20 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 21 | 21 | ||
| 22 | #include <linux/cpu.h> | ||
| 22 | #include <linux/cpufreq.h> | 23 | #include <linux/cpufreq.h> |
| 23 | #include <linux/device.h> | 24 | #include <linux/device.h> |
| 24 | #include <linux/export.h> | 25 | #include <linux/export.h> |
| 25 | #include <linux/module.h> | 26 | #include <linux/module.h> |
| 26 | #include <linux/of.h> | 27 | #include <linux/of.h> |
| 27 | #include <linux/opp.h> | 28 | #include <linux/opp.h> |
| 29 | #include <linux/platform_device.h> | ||
| 28 | #include <linux/slab.h> | 30 | #include <linux/slab.h> |
| 29 | #include <linux/types.h> | 31 | #include <linux/types.h> |
| 30 | #include "arm_big_little.h" | 32 | #include "arm_big_little.h" |
| 31 | 33 | ||
| 32 | static int dt_init_opp_table(struct device *cpu_dev) | 34 | /* get cpu node with valid operating-points */ |
| 35 | static struct device_node *get_cpu_node_with_valid_op(int cpu) | ||
| 33 | { | 36 | { |
| 34 | struct device_node *np, *parent; | 37 | struct device_node *np = NULL, *parent; |
| 35 | int count = 0, ret; | 38 | int count = 0; |
| 36 | 39 | ||
| 37 | parent = of_find_node_by_path("/cpus"); | 40 | parent = of_find_node_by_path("/cpus"); |
| 38 | if (!parent) { | 41 | if (!parent) { |
| 39 | pr_err("failed to find OF /cpus\n"); | 42 | pr_err("failed to find OF /cpus\n"); |
| 40 | return -ENOENT; | 43 | return NULL; |
| 41 | } | 44 | } |
| 42 | 45 | ||
| 43 | for_each_child_of_node(parent, np) { | 46 | for_each_child_of_node(parent, np) { |
| 44 | if (count++ != cpu_dev->id) | 47 | if (count++ != cpu) |
| 45 | continue; | 48 | continue; |
| 46 | if (!of_get_property(np, "operating-points", NULL)) { | 49 | if (!of_get_property(np, "operating-points", NULL)) { |
| 47 | ret = -ENODATA; | 50 | of_node_put(np); |
| 48 | } else { | 51 | np = NULL; |
| 49 | cpu_dev->of_node = np; | ||
| 50 | ret = of_init_opp_table(cpu_dev); | ||
| 51 | } | 52 | } |
| 52 | of_node_put(np); | ||
| 53 | of_node_put(parent); | ||
| 54 | 53 | ||
| 55 | return ret; | 54 | break; |
| 56 | } | 55 | } |
| 57 | 56 | ||
| 58 | return -ENODEV; | 57 | of_node_put(parent); |
| 58 | return np; | ||
| 59 | } | ||
| 60 | |||
| 61 | static int dt_init_opp_table(struct device *cpu_dev) | ||
| 62 | { | ||
| 63 | struct device_node *np; | ||
| 64 | int ret; | ||
| 65 | |||
| 66 | np = get_cpu_node_with_valid_op(cpu_dev->id); | ||
| 67 | if (!np) | ||
| 68 | return -ENODATA; | ||
| 69 | |||
| 70 | cpu_dev->of_node = np; | ||
| 71 | ret = of_init_opp_table(cpu_dev); | ||
| 72 | of_node_put(np); | ||
| 73 | |||
| 74 | return ret; | ||
| 59 | } | 75 | } |
| 60 | 76 | ||
| 61 | static int dt_get_transition_latency(struct device *cpu_dev) | 77 | static int dt_get_transition_latency(struct device *cpu_dev) |
| 62 | { | 78 | { |
| 63 | struct device_node *np, *parent; | 79 | struct device_node *np; |
| 64 | u32 transition_latency = CPUFREQ_ETERNAL; | 80 | u32 transition_latency = CPUFREQ_ETERNAL; |
| 65 | int count = 0; | ||
| 66 | 81 | ||
| 67 | parent = of_find_node_by_path("/cpus"); | 82 | np = get_cpu_node_with_valid_op(cpu_dev->id); |
| 68 | if (!parent) { | 83 | if (!np) |
| 69 | pr_info("Failed to find OF /cpus. Use CPUFREQ_ETERNAL transition latency\n"); | ||
| 70 | return CPUFREQ_ETERNAL; | 84 | return CPUFREQ_ETERNAL; |
| 71 | } | ||
| 72 | |||
| 73 | for_each_child_of_node(parent, np) { | ||
| 74 | if (count++ != cpu_dev->id) | ||
| 75 | continue; | ||
| 76 | 85 | ||
| 77 | of_property_read_u32(np, "clock-latency", &transition_latency); | 86 | of_property_read_u32(np, "clock-latency", &transition_latency); |
| 78 | of_node_put(np); | 87 | of_node_put(np); |
| 79 | of_node_put(parent); | ||
| 80 | 88 | ||
| 81 | return transition_latency; | 89 | pr_debug("%s: clock-latency: %d\n", __func__, transition_latency); |
| 82 | } | 90 | return transition_latency; |
| 83 | |||
| 84 | pr_info("clock-latency isn't found, use CPUFREQ_ETERNAL transition latency\n"); | ||
| 85 | return CPUFREQ_ETERNAL; | ||
| 86 | } | 91 | } |
| 87 | 92 | ||
| 88 | static struct cpufreq_arm_bL_ops dt_bL_ops = { | 93 | static struct cpufreq_arm_bL_ops dt_bL_ops = { |
| @@ -91,17 +96,33 @@ static struct cpufreq_arm_bL_ops dt_bL_ops = { | |||
| 91 | .init_opp_table = dt_init_opp_table, | 96 | .init_opp_table = dt_init_opp_table, |
| 92 | }; | 97 | }; |
| 93 | 98 | ||
| 94 | static int generic_bL_init(void) | 99 | static int generic_bL_probe(struct platform_device *pdev) |
| 95 | { | 100 | { |
| 101 | struct device_node *np; | ||
| 102 | |||
| 103 | np = get_cpu_node_with_valid_op(0); | ||
| 104 | if (!np) | ||
| 105 | return -ENODEV; | ||
| 106 | |||
| 107 | of_node_put(np); | ||
| 96 | return bL_cpufreq_register(&dt_bL_ops); | 108 | return bL_cpufreq_register(&dt_bL_ops); |
| 97 | } | 109 | } |
| 98 | module_init(generic_bL_init); | ||
| 99 | 110 | ||
| 100 | static void generic_bL_exit(void) | 111 | static int generic_bL_remove(struct platform_device *pdev) |
| 101 | { | 112 | { |
| 102 | return bL_cpufreq_unregister(&dt_bL_ops); | 113 | bL_cpufreq_unregister(&dt_bL_ops); |
| 114 | return 0; | ||
| 103 | } | 115 | } |
| 104 | module_exit(generic_bL_exit); | 116 | |
| 117 | static struct platform_driver generic_bL_platdrv = { | ||
| 118 | .driver = { | ||
| 119 | .name = "arm-bL-cpufreq-dt", | ||
| 120 | .owner = THIS_MODULE, | ||
| 121 | }, | ||
| 122 | .probe = generic_bL_probe, | ||
| 123 | .remove = generic_bL_remove, | ||
| 124 | }; | ||
| 125 | module_platform_driver(generic_bL_platdrv); | ||
| 105 | 126 | ||
| 106 | MODULE_AUTHOR("Viresh Kumar <viresh.kumar@linaro.org>"); | 127 | MODULE_AUTHOR("Viresh Kumar <viresh.kumar@linaro.org>"); |
| 107 | MODULE_DESCRIPTION("Generic ARM big LITTLE cpufreq driver via DT"); | 128 | MODULE_DESCRIPTION("Generic ARM big LITTLE cpufreq driver via DT"); |
diff --git a/drivers/cpufreq/cpufreq.c b/drivers/cpufreq/cpufreq.c index 4b8c7f297d74..2d53f47d1747 100644 --- a/drivers/cpufreq/cpufreq.c +++ b/drivers/cpufreq/cpufreq.c | |||
| @@ -1729,18 +1729,23 @@ static int __cpufreq_set_policy(struct cpufreq_policy *data, | |||
| 1729 | /* end old governor */ | 1729 | /* end old governor */ |
| 1730 | if (data->governor) { | 1730 | if (data->governor) { |
| 1731 | __cpufreq_governor(data, CPUFREQ_GOV_STOP); | 1731 | __cpufreq_governor(data, CPUFREQ_GOV_STOP); |
| 1732 | unlock_policy_rwsem_write(policy->cpu); | ||
| 1732 | __cpufreq_governor(data, | 1733 | __cpufreq_governor(data, |
| 1733 | CPUFREQ_GOV_POLICY_EXIT); | 1734 | CPUFREQ_GOV_POLICY_EXIT); |
| 1735 | lock_policy_rwsem_write(policy->cpu); | ||
| 1734 | } | 1736 | } |
| 1735 | 1737 | ||
| 1736 | /* start new governor */ | 1738 | /* start new governor */ |
| 1737 | data->governor = policy->governor; | 1739 | data->governor = policy->governor; |
| 1738 | if (!__cpufreq_governor(data, CPUFREQ_GOV_POLICY_INIT)) { | 1740 | if (!__cpufreq_governor(data, CPUFREQ_GOV_POLICY_INIT)) { |
| 1739 | if (!__cpufreq_governor(data, CPUFREQ_GOV_START)) | 1741 | if (!__cpufreq_governor(data, CPUFREQ_GOV_START)) { |
| 1740 | failed = 0; | 1742 | failed = 0; |
| 1741 | else | 1743 | } else { |
| 1744 | unlock_policy_rwsem_write(policy->cpu); | ||
| 1742 | __cpufreq_governor(data, | 1745 | __cpufreq_governor(data, |
| 1743 | CPUFREQ_GOV_POLICY_EXIT); | 1746 | CPUFREQ_GOV_POLICY_EXIT); |
| 1747 | lock_policy_rwsem_write(policy->cpu); | ||
| 1748 | } | ||
| 1744 | } | 1749 | } |
| 1745 | 1750 | ||
| 1746 | if (failed) { | 1751 | if (failed) { |
diff --git a/drivers/cpufreq/intel_pstate.c b/drivers/cpufreq/intel_pstate.c index 9c36ace92a39..07f2840ad805 100644 --- a/drivers/cpufreq/intel_pstate.c +++ b/drivers/cpufreq/intel_pstate.c | |||
| @@ -521,6 +521,7 @@ static void intel_pstate_timer_func(unsigned long __data) | |||
| 521 | static const struct x86_cpu_id intel_pstate_cpu_ids[] = { | 521 | static const struct x86_cpu_id intel_pstate_cpu_ids[] = { |
| 522 | ICPU(0x2a, default_policy), | 522 | ICPU(0x2a, default_policy), |
| 523 | ICPU(0x2d, default_policy), | 523 | ICPU(0x2d, default_policy), |
| 524 | ICPU(0x3a, default_policy), | ||
| 524 | {} | 525 | {} |
| 525 | }; | 526 | }; |
| 526 | MODULE_DEVICE_TABLE(x86cpu, intel_pstate_cpu_ids); | 527 | MODULE_DEVICE_TABLE(x86cpu, intel_pstate_cpu_ids); |
diff --git a/drivers/cpufreq/loongson2_cpufreq.c b/drivers/cpufreq/loongson2_cpufreq.c index 84889573b566..d53912768946 100644 --- a/drivers/cpufreq/loongson2_cpufreq.c +++ b/drivers/cpufreq/loongson2_cpufreq.c | |||
| @@ -18,6 +18,7 @@ | |||
| 18 | #include <linux/platform_device.h> | 18 | #include <linux/platform_device.h> |
| 19 | 19 | ||
| 20 | #include <asm/clock.h> | 20 | #include <asm/clock.h> |
| 21 | #include <asm/idle.h> | ||
| 21 | 22 | ||
| 22 | #include <asm/mach-loongson/loongson.h> | 23 | #include <asm/mach-loongson/loongson.h> |
| 23 | 24 | ||
| @@ -200,6 +201,7 @@ static void loongson2_cpu_wait(void) | |||
| 200 | LOONGSON_CHIPCFG0 &= ~0x7; /* Put CPU into wait mode */ | 201 | LOONGSON_CHIPCFG0 &= ~0x7; /* Put CPU into wait mode */ |
| 201 | LOONGSON_CHIPCFG0 = cpu_freq; /* Restore CPU state */ | 202 | LOONGSON_CHIPCFG0 = cpu_freq; /* Restore CPU state */ |
| 202 | spin_unlock_irqrestore(&loongson2_wait_lock, flags); | 203 | spin_unlock_irqrestore(&loongson2_wait_lock, flags); |
| 204 | local_irq_enable(); | ||
| 203 | } | 205 | } |
| 204 | 206 | ||
| 205 | static int __init cpufreq_init(void) | 207 | static int __init cpufreq_init(void) |
diff --git a/drivers/crypto/nx/nx-aes-cbc.c b/drivers/crypto/nx/nx-aes-cbc.c index a76d4c4f29f5..35d483f8db66 100644 --- a/drivers/crypto/nx/nx-aes-cbc.c +++ b/drivers/crypto/nx/nx-aes-cbc.c | |||
| @@ -126,6 +126,7 @@ struct crypto_alg nx_cbc_aes_alg = { | |||
| 126 | .cra_blocksize = AES_BLOCK_SIZE, | 126 | .cra_blocksize = AES_BLOCK_SIZE, |
| 127 | .cra_ctxsize = sizeof(struct nx_crypto_ctx), | 127 | .cra_ctxsize = sizeof(struct nx_crypto_ctx), |
| 128 | .cra_type = &crypto_blkcipher_type, | 128 | .cra_type = &crypto_blkcipher_type, |
| 129 | .cra_alignmask = 0xf, | ||
| 129 | .cra_module = THIS_MODULE, | 130 | .cra_module = THIS_MODULE, |
| 130 | .cra_init = nx_crypto_ctx_aes_cbc_init, | 131 | .cra_init = nx_crypto_ctx_aes_cbc_init, |
| 131 | .cra_exit = nx_crypto_ctx_exit, | 132 | .cra_exit = nx_crypto_ctx_exit, |
diff --git a/drivers/crypto/nx/nx-aes-ecb.c b/drivers/crypto/nx/nx-aes-ecb.c index ba5f1611336f..7bbc9a81da21 100644 --- a/drivers/crypto/nx/nx-aes-ecb.c +++ b/drivers/crypto/nx/nx-aes-ecb.c | |||
| @@ -123,6 +123,7 @@ struct crypto_alg nx_ecb_aes_alg = { | |||
| 123 | .cra_priority = 300, | 123 | .cra_priority = 300, |
| 124 | .cra_flags = CRYPTO_ALG_TYPE_BLKCIPHER, | 124 | .cra_flags = CRYPTO_ALG_TYPE_BLKCIPHER, |
| 125 | .cra_blocksize = AES_BLOCK_SIZE, | 125 | .cra_blocksize = AES_BLOCK_SIZE, |
| 126 | .cra_alignmask = 0xf, | ||
| 126 | .cra_ctxsize = sizeof(struct nx_crypto_ctx), | 127 | .cra_ctxsize = sizeof(struct nx_crypto_ctx), |
| 127 | .cra_type = &crypto_blkcipher_type, | 128 | .cra_type = &crypto_blkcipher_type, |
| 128 | .cra_module = THIS_MODULE, | 129 | .cra_module = THIS_MODULE, |
diff --git a/drivers/crypto/nx/nx-aes-gcm.c b/drivers/crypto/nx/nx-aes-gcm.c index c8109edc5cfb..6cca6c392b00 100644 --- a/drivers/crypto/nx/nx-aes-gcm.c +++ b/drivers/crypto/nx/nx-aes-gcm.c | |||
| @@ -219,7 +219,7 @@ static int gcm_aes_nx_crypt(struct aead_request *req, int enc) | |||
| 219 | if (enc) | 219 | if (enc) |
| 220 | NX_CPB_FDM(csbcpb) |= NX_FDM_ENDE_ENCRYPT; | 220 | NX_CPB_FDM(csbcpb) |= NX_FDM_ENDE_ENCRYPT; |
| 221 | else | 221 | else |
| 222 | nbytes -= AES_BLOCK_SIZE; | 222 | nbytes -= crypto_aead_authsize(crypto_aead_reqtfm(req)); |
| 223 | 223 | ||
| 224 | csbcpb->cpb.aes_gcm.bit_length_data = nbytes * 8; | 224 | csbcpb->cpb.aes_gcm.bit_length_data = nbytes * 8; |
| 225 | 225 | ||
diff --git a/drivers/crypto/nx/nx-sha256.c b/drivers/crypto/nx/nx-sha256.c index 9767315f8c0b..67024f2f0b78 100644 --- a/drivers/crypto/nx/nx-sha256.c +++ b/drivers/crypto/nx/nx-sha256.c | |||
| @@ -69,7 +69,7 @@ static int nx_sha256_update(struct shash_desc *desc, const u8 *data, | |||
| 69 | * 1: <= SHA256_BLOCK_SIZE: copy into state, return 0 | 69 | * 1: <= SHA256_BLOCK_SIZE: copy into state, return 0 |
| 70 | * 2: > SHA256_BLOCK_SIZE: process X blocks, copy in leftover | 70 | * 2: > SHA256_BLOCK_SIZE: process X blocks, copy in leftover |
| 71 | */ | 71 | */ |
| 72 | if (len + sctx->count <= SHA256_BLOCK_SIZE) { | 72 | if (len + sctx->count < SHA256_BLOCK_SIZE) { |
| 73 | memcpy(sctx->buf + sctx->count, data, len); | 73 | memcpy(sctx->buf + sctx->count, data, len); |
| 74 | sctx->count += len; | 74 | sctx->count += len; |
| 75 | goto out; | 75 | goto out; |
| @@ -110,7 +110,8 @@ static int nx_sha256_update(struct shash_desc *desc, const u8 *data, | |||
| 110 | atomic_inc(&(nx_ctx->stats->sha256_ops)); | 110 | atomic_inc(&(nx_ctx->stats->sha256_ops)); |
| 111 | 111 | ||
| 112 | /* copy the leftover back into the state struct */ | 112 | /* copy the leftover back into the state struct */ |
| 113 | memcpy(sctx->buf, data + len - leftover, leftover); | 113 | if (leftover) |
| 114 | memcpy(sctx->buf, data + len - leftover, leftover); | ||
| 114 | sctx->count = leftover; | 115 | sctx->count = leftover; |
| 115 | 116 | ||
| 116 | csbcpb->cpb.sha256.message_bit_length += (u64) | 117 | csbcpb->cpb.sha256.message_bit_length += (u64) |
| @@ -130,6 +131,7 @@ static int nx_sha256_final(struct shash_desc *desc, u8 *out) | |||
| 130 | struct nx_sg *in_sg, *out_sg; | 131 | struct nx_sg *in_sg, *out_sg; |
| 131 | int rc; | 132 | int rc; |
| 132 | 133 | ||
| 134 | |||
| 133 | if (NX_CPB_FDM(csbcpb) & NX_FDM_CONTINUATION) { | 135 | if (NX_CPB_FDM(csbcpb) & NX_FDM_CONTINUATION) { |
| 134 | /* we've hit the nx chip previously, now we're finalizing, | 136 | /* we've hit the nx chip previously, now we're finalizing, |
| 135 | * so copy over the partial digest */ | 137 | * so copy over the partial digest */ |
| @@ -162,7 +164,7 @@ static int nx_sha256_final(struct shash_desc *desc, u8 *out) | |||
| 162 | 164 | ||
| 163 | atomic_inc(&(nx_ctx->stats->sha256_ops)); | 165 | atomic_inc(&(nx_ctx->stats->sha256_ops)); |
| 164 | 166 | ||
| 165 | atomic64_add(csbcpb->cpb.sha256.message_bit_length, | 167 | atomic64_add(csbcpb->cpb.sha256.message_bit_length / 8, |
| 166 | &(nx_ctx->stats->sha256_bytes)); | 168 | &(nx_ctx->stats->sha256_bytes)); |
| 167 | memcpy(out, csbcpb->cpb.sha256.message_digest, SHA256_DIGEST_SIZE); | 169 | memcpy(out, csbcpb->cpb.sha256.message_digest, SHA256_DIGEST_SIZE); |
| 168 | out: | 170 | out: |
diff --git a/drivers/crypto/nx/nx-sha512.c b/drivers/crypto/nx/nx-sha512.c index 3177b8c3d5f1..08eee1122349 100644 --- a/drivers/crypto/nx/nx-sha512.c +++ b/drivers/crypto/nx/nx-sha512.c | |||
| @@ -69,7 +69,7 @@ static int nx_sha512_update(struct shash_desc *desc, const u8 *data, | |||
| 69 | * 1: <= SHA512_BLOCK_SIZE: copy into state, return 0 | 69 | * 1: <= SHA512_BLOCK_SIZE: copy into state, return 0 |
| 70 | * 2: > SHA512_BLOCK_SIZE: process X blocks, copy in leftover | 70 | * 2: > SHA512_BLOCK_SIZE: process X blocks, copy in leftover |
| 71 | */ | 71 | */ |
| 72 | if ((u64)len + sctx->count[0] <= SHA512_BLOCK_SIZE) { | 72 | if ((u64)len + sctx->count[0] < SHA512_BLOCK_SIZE) { |
| 73 | memcpy(sctx->buf + sctx->count[0], data, len); | 73 | memcpy(sctx->buf + sctx->count[0], data, len); |
| 74 | sctx->count[0] += len; | 74 | sctx->count[0] += len; |
| 75 | goto out; | 75 | goto out; |
| @@ -110,7 +110,8 @@ static int nx_sha512_update(struct shash_desc *desc, const u8 *data, | |||
| 110 | atomic_inc(&(nx_ctx->stats->sha512_ops)); | 110 | atomic_inc(&(nx_ctx->stats->sha512_ops)); |
| 111 | 111 | ||
| 112 | /* copy the leftover back into the state struct */ | 112 | /* copy the leftover back into the state struct */ |
| 113 | memcpy(sctx->buf, data + len - leftover, leftover); | 113 | if (leftover) |
| 114 | memcpy(sctx->buf, data + len - leftover, leftover); | ||
| 114 | sctx->count[0] = leftover; | 115 | sctx->count[0] = leftover; |
| 115 | 116 | ||
| 116 | spbc_bits = csbcpb->cpb.sha512.spbc * 8; | 117 | spbc_bits = csbcpb->cpb.sha512.spbc * 8; |
| @@ -168,7 +169,7 @@ static int nx_sha512_final(struct shash_desc *desc, u8 *out) | |||
| 168 | goto out; | 169 | goto out; |
| 169 | 170 | ||
| 170 | atomic_inc(&(nx_ctx->stats->sha512_ops)); | 171 | atomic_inc(&(nx_ctx->stats->sha512_ops)); |
| 171 | atomic64_add(csbcpb->cpb.sha512.message_bit_length_lo, | 172 | atomic64_add(csbcpb->cpb.sha512.message_bit_length_lo / 8, |
| 172 | &(nx_ctx->stats->sha512_bytes)); | 173 | &(nx_ctx->stats->sha512_bytes)); |
| 173 | 174 | ||
| 174 | memcpy(out, csbcpb->cpb.sha512.message_digest, SHA512_DIGEST_SIZE); | 175 | memcpy(out, csbcpb->cpb.sha512.message_digest, SHA512_DIGEST_SIZE); |
diff --git a/drivers/crypto/nx/nx.c b/drivers/crypto/nx/nx.c index c767f232e693..bbdab6e5ccf0 100644 --- a/drivers/crypto/nx/nx.c +++ b/drivers/crypto/nx/nx.c | |||
| @@ -211,44 +211,20 @@ int nx_build_sg_lists(struct nx_crypto_ctx *nx_ctx, | |||
| 211 | { | 211 | { |
| 212 | struct nx_sg *nx_insg = nx_ctx->in_sg; | 212 | struct nx_sg *nx_insg = nx_ctx->in_sg; |
| 213 | struct nx_sg *nx_outsg = nx_ctx->out_sg; | 213 | struct nx_sg *nx_outsg = nx_ctx->out_sg; |
| 214 | struct blkcipher_walk walk; | ||
| 215 | int rc; | ||
| 216 | |||
| 217 | blkcipher_walk_init(&walk, dst, src, nbytes); | ||
| 218 | rc = blkcipher_walk_virt_block(desc, &walk, AES_BLOCK_SIZE); | ||
| 219 | if (rc) | ||
| 220 | goto out; | ||
| 221 | 214 | ||
| 222 | if (iv) | 215 | if (iv) |
| 223 | memcpy(iv, walk.iv, AES_BLOCK_SIZE); | 216 | memcpy(iv, desc->info, AES_BLOCK_SIZE); |
| 224 | 217 | ||
| 225 | while (walk.nbytes) { | 218 | nx_insg = nx_walk_and_build(nx_insg, nx_ctx->ap->sglen, src, 0, nbytes); |
| 226 | nx_insg = nx_build_sg_list(nx_insg, walk.src.virt.addr, | 219 | nx_outsg = nx_walk_and_build(nx_outsg, nx_ctx->ap->sglen, dst, 0, nbytes); |
| 227 | walk.nbytes, nx_ctx->ap->sglen); | ||
| 228 | nx_outsg = nx_build_sg_list(nx_outsg, walk.dst.virt.addr, | ||
| 229 | walk.nbytes, nx_ctx->ap->sglen); | ||
| 230 | |||
| 231 | rc = blkcipher_walk_done(desc, &walk, 0); | ||
| 232 | if (rc) | ||
| 233 | break; | ||
| 234 | } | ||
| 235 | |||
| 236 | if (walk.nbytes) { | ||
| 237 | nx_insg = nx_build_sg_list(nx_insg, walk.src.virt.addr, | ||
| 238 | walk.nbytes, nx_ctx->ap->sglen); | ||
| 239 | nx_outsg = nx_build_sg_list(nx_outsg, walk.dst.virt.addr, | ||
| 240 | walk.nbytes, nx_ctx->ap->sglen); | ||
| 241 | |||
| 242 | rc = 0; | ||
| 243 | } | ||
| 244 | 220 | ||
| 245 | /* these lengths should be negative, which will indicate to phyp that | 221 | /* these lengths should be negative, which will indicate to phyp that |
| 246 | * the input and output parameters are scatterlists, not linear | 222 | * the input and output parameters are scatterlists, not linear |
| 247 | * buffers */ | 223 | * buffers */ |
| 248 | nx_ctx->op.inlen = (nx_ctx->in_sg - nx_insg) * sizeof(struct nx_sg); | 224 | nx_ctx->op.inlen = (nx_ctx->in_sg - nx_insg) * sizeof(struct nx_sg); |
| 249 | nx_ctx->op.outlen = (nx_ctx->out_sg - nx_outsg) * sizeof(struct nx_sg); | 225 | nx_ctx->op.outlen = (nx_ctx->out_sg - nx_outsg) * sizeof(struct nx_sg); |
| 250 | out: | 226 | |
| 251 | return rc; | 227 | return 0; |
| 252 | } | 228 | } |
| 253 | 229 | ||
| 254 | /** | 230 | /** |
| @@ -454,6 +430,8 @@ static int nx_register_algs(void) | |||
| 454 | if (rc) | 430 | if (rc) |
| 455 | goto out; | 431 | goto out; |
| 456 | 432 | ||
| 433 | nx_driver.of.status = NX_OKAY; | ||
| 434 | |||
| 457 | rc = crypto_register_alg(&nx_ecb_aes_alg); | 435 | rc = crypto_register_alg(&nx_ecb_aes_alg); |
| 458 | if (rc) | 436 | if (rc) |
| 459 | goto out; | 437 | goto out; |
| @@ -498,8 +476,6 @@ static int nx_register_algs(void) | |||
| 498 | if (rc) | 476 | if (rc) |
| 499 | goto out_unreg_s512; | 477 | goto out_unreg_s512; |
| 500 | 478 | ||
| 501 | nx_driver.of.status = NX_OKAY; | ||
| 502 | |||
| 503 | goto out; | 479 | goto out; |
| 504 | 480 | ||
| 505 | out_unreg_s512: | 481 | out_unreg_s512: |
diff --git a/drivers/dma/acpi-dma.c b/drivers/dma/acpi-dma.c index ba6fc62e9651..5a18f82f732a 100644 --- a/drivers/dma/acpi-dma.c +++ b/drivers/dma/acpi-dma.c | |||
| @@ -4,7 +4,8 @@ | |||
| 4 | * Based on of-dma.c | 4 | * Based on of-dma.c |
| 5 | * | 5 | * |
| 6 | * Copyright (C) 2013, Intel Corporation | 6 | * Copyright (C) 2013, Intel Corporation |
| 7 | * Author: Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 7 | * Authors: Andy Shevchenko <andriy.shevchenko@linux.intel.com> |
| 8 | * Mika Westerberg <mika.westerberg@linux.intel.com> | ||
| 8 | * | 9 | * |
| 9 | * This program is free software; you can redistribute it and/or modify | 10 | * This program is free software; you can redistribute it and/or modify |
| 10 | * it under the terms of the GNU General Public License version 2 as | 11 | * it under the terms of the GNU General Public License version 2 as |
| @@ -16,6 +17,7 @@ | |||
| 16 | #include <linux/list.h> | 17 | #include <linux/list.h> |
| 17 | #include <linux/mutex.h> | 18 | #include <linux/mutex.h> |
| 18 | #include <linux/slab.h> | 19 | #include <linux/slab.h> |
| 20 | #include <linux/ioport.h> | ||
| 19 | #include <linux/acpi.h> | 21 | #include <linux/acpi.h> |
| 20 | #include <linux/acpi_dma.h> | 22 | #include <linux/acpi_dma.h> |
| 21 | 23 | ||
| @@ -23,6 +25,117 @@ static LIST_HEAD(acpi_dma_list); | |||
| 23 | static DEFINE_MUTEX(acpi_dma_lock); | 25 | static DEFINE_MUTEX(acpi_dma_lock); |
| 24 | 26 | ||
| 25 | /** | 27 | /** |
| 28 | * acpi_dma_parse_resource_group - match device and parse resource group | ||
| 29 | * @grp: CSRT resource group | ||
| 30 | * @adev: ACPI device to match with | ||
| 31 | * @adma: struct acpi_dma of the given DMA controller | ||
| 32 | * | ||
| 33 | * Returns 1 on success, 0 when no information is available, or appropriate | ||
| 34 | * errno value on error. | ||
| 35 | * | ||
| 36 | * In order to match a device from DSDT table to the corresponding CSRT device | ||
| 37 | * we use MMIO address and IRQ. | ||
| 38 | */ | ||
| 39 | static int acpi_dma_parse_resource_group(const struct acpi_csrt_group *grp, | ||
| 40 | struct acpi_device *adev, struct acpi_dma *adma) | ||
| 41 | { | ||
| 42 | const struct acpi_csrt_shared_info *si; | ||
| 43 | struct list_head resource_list; | ||
| 44 | struct resource_list_entry *rentry; | ||
| 45 | resource_size_t mem = 0, irq = 0; | ||
| 46 | u32 vendor_id; | ||
| 47 | int ret; | ||
| 48 | |||
| 49 | if (grp->shared_info_length != sizeof(struct acpi_csrt_shared_info)) | ||
| 50 | return -ENODEV; | ||
| 51 | |||
| 52 | INIT_LIST_HEAD(&resource_list); | ||
| 53 | ret = acpi_dev_get_resources(adev, &resource_list, NULL, NULL); | ||
| 54 | if (ret <= 0) | ||
| 55 | return 0; | ||
| 56 | |||
| 57 | list_for_each_entry(rentry, &resource_list, node) { | ||
| 58 | if (resource_type(&rentry->res) == IORESOURCE_MEM) | ||
| 59 | mem = rentry->res.start; | ||
| 60 | else if (resource_type(&rentry->res) == IORESOURCE_IRQ) | ||
| 61 | irq = rentry->res.start; | ||
| 62 | } | ||
| 63 | |||
| 64 | acpi_dev_free_resource_list(&resource_list); | ||
| 65 | |||
| 66 | /* Consider initial zero values as resource not found */ | ||
| 67 | if (mem == 0 && irq == 0) | ||
| 68 | return 0; | ||
| 69 | |||
| 70 | si = (const struct acpi_csrt_shared_info *)&grp[1]; | ||
| 71 | |||
| 72 | /* Match device by MMIO and IRQ */ | ||
| 73 | if (si->mmio_base_low != mem || si->gsi_interrupt != irq) | ||
| 74 | return 0; | ||
| 75 | |||
| 76 | vendor_id = le32_to_cpu(grp->vendor_id); | ||
| 77 | dev_dbg(&adev->dev, "matches with %.4s%04X (rev %u)\n", | ||
| 78 | (char *)&vendor_id, grp->device_id, grp->revision); | ||
| 79 | |||
| 80 | /* Check if the request line range is available */ | ||
| 81 | if (si->base_request_line == 0 && si->num_handshake_signals == 0) | ||
| 82 | return 0; | ||
| 83 | |||
| 84 | adma->base_request_line = si->base_request_line; | ||
| 85 | adma->end_request_line = si->base_request_line + | ||
| 86 | si->num_handshake_signals - 1; | ||
| 87 | |||
| 88 | dev_dbg(&adev->dev, "request line base: 0x%04x end: 0x%04x\n", | ||
| 89 | adma->base_request_line, adma->end_request_line); | ||
| 90 | |||
| 91 | return 1; | ||
| 92 | } | ||
| 93 | |||
| 94 | /** | ||
| 95 | * acpi_dma_parse_csrt - parse CSRT to exctract additional DMA resources | ||
| 96 | * @adev: ACPI device to match with | ||
| 97 | * @adma: struct acpi_dma of the given DMA controller | ||
| 98 | * | ||
| 99 | * CSRT or Core System Resources Table is a proprietary ACPI table | ||
| 100 | * introduced by Microsoft. This table can contain devices that are not in | ||
| 101 | * the system DSDT table. In particular DMA controllers might be described | ||
| 102 | * here. | ||
| 103 | * | ||
| 104 | * We are using this table to get the request line range of the specific DMA | ||
| 105 | * controller to be used later. | ||
| 106 | * | ||
| 107 | */ | ||
| 108 | static void acpi_dma_parse_csrt(struct acpi_device *adev, struct acpi_dma *adma) | ||
| 109 | { | ||
| 110 | struct acpi_csrt_group *grp, *end; | ||
| 111 | struct acpi_table_csrt *csrt; | ||
| 112 | acpi_status status; | ||
| 113 | int ret; | ||
| 114 | |||
| 115 | status = acpi_get_table(ACPI_SIG_CSRT, 0, | ||
| 116 | (struct acpi_table_header **)&csrt); | ||
| 117 | if (ACPI_FAILURE(status)) { | ||
| 118 | if (status != AE_NOT_FOUND) | ||
| 119 | dev_warn(&adev->dev, "failed to get the CSRT table\n"); | ||
| 120 | return; | ||
| 121 | } | ||
| 122 | |||
| 123 | grp = (struct acpi_csrt_group *)(csrt + 1); | ||
| 124 | end = (struct acpi_csrt_group *)((void *)csrt + csrt->header.length); | ||
| 125 | |||
| 126 | while (grp < end) { | ||
| 127 | ret = acpi_dma_parse_resource_group(grp, adev, adma); | ||
| 128 | if (ret < 0) { | ||
| 129 | dev_warn(&adev->dev, | ||
| 130 | "error in parsing resource group\n"); | ||
| 131 | return; | ||
| 132 | } | ||
| 133 | |||
| 134 | grp = (struct acpi_csrt_group *)((void *)grp + grp->length); | ||
| 135 | } | ||
| 136 | } | ||
| 137 | |||
| 138 | /** | ||
| 26 | * acpi_dma_controller_register - Register a DMA controller to ACPI DMA helpers | 139 | * acpi_dma_controller_register - Register a DMA controller to ACPI DMA helpers |
| 27 | * @dev: struct device of DMA controller | 140 | * @dev: struct device of DMA controller |
| 28 | * @acpi_dma_xlate: translation function which converts a dma specifier | 141 | * @acpi_dma_xlate: translation function which converts a dma specifier |
| @@ -61,6 +174,8 @@ int acpi_dma_controller_register(struct device *dev, | |||
| 61 | adma->acpi_dma_xlate = acpi_dma_xlate; | 174 | adma->acpi_dma_xlate = acpi_dma_xlate; |
| 62 | adma->data = data; | 175 | adma->data = data; |
| 63 | 176 | ||
| 177 | acpi_dma_parse_csrt(adev, adma); | ||
| 178 | |||
| 64 | /* Now queue acpi_dma controller structure in list */ | 179 | /* Now queue acpi_dma controller structure in list */ |
| 65 | mutex_lock(&acpi_dma_lock); | 180 | mutex_lock(&acpi_dma_lock); |
| 66 | list_add_tail(&adma->dma_controllers, &acpi_dma_list); | 181 | list_add_tail(&adma->dma_controllers, &acpi_dma_list); |
| @@ -149,6 +264,45 @@ void devm_acpi_dma_controller_free(struct device *dev) | |||
| 149 | } | 264 | } |
| 150 | EXPORT_SYMBOL_GPL(devm_acpi_dma_controller_free); | 265 | EXPORT_SYMBOL_GPL(devm_acpi_dma_controller_free); |
| 151 | 266 | ||
| 267 | /** | ||
| 268 | * acpi_dma_update_dma_spec - prepare dma specifier to pass to translation function | ||
| 269 | * @adma: struct acpi_dma of DMA controller | ||
| 270 | * @dma_spec: dma specifier to update | ||
| 271 | * | ||
| 272 | * Returns 0, if no information is avaiable, -1 on mismatch, and 1 otherwise. | ||
| 273 | * | ||
| 274 | * Accordingly to ACPI 5.0 Specification Table 6-170 "Fixed DMA Resource | ||
| 275 | * Descriptor": | ||
| 276 | * DMA Request Line bits is a platform-relative number uniquely | ||
| 277 | * identifying the request line assigned. Request line-to-Controller | ||
| 278 | * mapping is done in a controller-specific OS driver. | ||
| 279 | * That's why we can safely adjust slave_id when the appropriate controller is | ||
| 280 | * found. | ||
| 281 | */ | ||
| 282 | static int acpi_dma_update_dma_spec(struct acpi_dma *adma, | ||
| 283 | struct acpi_dma_spec *dma_spec) | ||
| 284 | { | ||
| 285 | /* Set link to the DMA controller device */ | ||
| 286 | dma_spec->dev = adma->dev; | ||
| 287 | |||
| 288 | /* Check if the request line range is available */ | ||
| 289 | if (adma->base_request_line == 0 && adma->end_request_line == 0) | ||
| 290 | return 0; | ||
| 291 | |||
| 292 | /* Check if slave_id falls to the range */ | ||
| 293 | if (dma_spec->slave_id < adma->base_request_line || | ||
| 294 | dma_spec->slave_id > adma->end_request_line) | ||
| 295 | return -1; | ||
| 296 | |||
| 297 | /* | ||
| 298 | * Here we adjust slave_id. It should be a relative number to the base | ||
| 299 | * request line. | ||
| 300 | */ | ||
| 301 | dma_spec->slave_id -= adma->base_request_line; | ||
| 302 | |||
| 303 | return 1; | ||
| 304 | } | ||
| 305 | |||
| 152 | struct acpi_dma_parser_data { | 306 | struct acpi_dma_parser_data { |
| 153 | struct acpi_dma_spec dma_spec; | 307 | struct acpi_dma_spec dma_spec; |
| 154 | size_t index; | 308 | size_t index; |
| @@ -193,6 +347,7 @@ struct dma_chan *acpi_dma_request_slave_chan_by_index(struct device *dev, | |||
| 193 | struct acpi_device *adev; | 347 | struct acpi_device *adev; |
| 194 | struct acpi_dma *adma; | 348 | struct acpi_dma *adma; |
| 195 | struct dma_chan *chan = NULL; | 349 | struct dma_chan *chan = NULL; |
| 350 | int found; | ||
| 196 | 351 | ||
| 197 | /* Check if the device was enumerated by ACPI */ | 352 | /* Check if the device was enumerated by ACPI */ |
| 198 | if (!dev || !ACPI_HANDLE(dev)) | 353 | if (!dev || !ACPI_HANDLE(dev)) |
| @@ -219,9 +374,20 @@ struct dma_chan *acpi_dma_request_slave_chan_by_index(struct device *dev, | |||
| 219 | mutex_lock(&acpi_dma_lock); | 374 | mutex_lock(&acpi_dma_lock); |
| 220 | 375 | ||
| 221 | list_for_each_entry(adma, &acpi_dma_list, dma_controllers) { | 376 | list_for_each_entry(adma, &acpi_dma_list, dma_controllers) { |
| 222 | dma_spec->dev = adma->dev; | 377 | /* |
| 378 | * We are not going to call translation function if slave_id | ||
| 379 | * doesn't fall to the request range. | ||
| 380 | */ | ||
| 381 | found = acpi_dma_update_dma_spec(adma, dma_spec); | ||
| 382 | if (found < 0) | ||
| 383 | continue; | ||
| 223 | chan = adma->acpi_dma_xlate(dma_spec, adma); | 384 | chan = adma->acpi_dma_xlate(dma_spec, adma); |
| 224 | if (chan) | 385 | /* |
| 386 | * Try to get a channel only from the DMA controller that | ||
| 387 | * matches the slave_id. See acpi_dma_update_dma_spec() | ||
| 388 | * description for the details. | ||
| 389 | */ | ||
| 390 | if (found > 0 || chan) | ||
| 225 | break; | 391 | break; |
| 226 | } | 392 | } |
| 227 | 393 | ||
diff --git a/drivers/edac/amd64_edac_inj.c b/drivers/edac/amd64_edac_inj.c index 8c171fa1cb9b..845f04786c2d 100644 --- a/drivers/edac/amd64_edac_inj.c +++ b/drivers/edac/amd64_edac_inj.c | |||
| @@ -202,9 +202,9 @@ static DEVICE_ATTR(inject_word, S_IRUGO | S_IWUSR, | |||
| 202 | amd64_inject_word_show, amd64_inject_word_store); | 202 | amd64_inject_word_show, amd64_inject_word_store); |
| 203 | static DEVICE_ATTR(inject_ecc_vector, S_IRUGO | S_IWUSR, | 203 | static DEVICE_ATTR(inject_ecc_vector, S_IRUGO | S_IWUSR, |
| 204 | amd64_inject_ecc_vector_show, amd64_inject_ecc_vector_store); | 204 | amd64_inject_ecc_vector_show, amd64_inject_ecc_vector_store); |
| 205 | static DEVICE_ATTR(inject_write, S_IRUGO | S_IWUSR, | 205 | static DEVICE_ATTR(inject_write, S_IWUSR, |
| 206 | NULL, amd64_inject_write_store); | 206 | NULL, amd64_inject_write_store); |
| 207 | static DEVICE_ATTR(inject_read, S_IRUGO | S_IWUSR, | 207 | static DEVICE_ATTR(inject_read, S_IWUSR, |
| 208 | NULL, amd64_inject_read_store); | 208 | NULL, amd64_inject_read_store); |
| 209 | 209 | ||
| 210 | 210 | ||
diff --git a/drivers/gpio/Kconfig b/drivers/gpio/Kconfig index 87d567089f13..573c449c49b9 100644 --- a/drivers/gpio/Kconfig +++ b/drivers/gpio/Kconfig | |||
| @@ -636,7 +636,7 @@ config GPIO_MAX7301 | |||
| 636 | 636 | ||
| 637 | config GPIO_MCP23S08 | 637 | config GPIO_MCP23S08 |
| 638 | tristate "Microchip MCP23xxx I/O expander" | 638 | tristate "Microchip MCP23xxx I/O expander" |
| 639 | depends on SPI_MASTER || I2C | 639 | depends on (SPI_MASTER && !I2C) || I2C |
| 640 | help | 640 | help |
| 641 | SPI/I2C driver for Microchip MCP23S08/MCP23S17/MCP23008/MCP23017 | 641 | SPI/I2C driver for Microchip MCP23S08/MCP23S17/MCP23008/MCP23017 |
| 642 | I/O expanders. | 642 | I/O expanders. |
diff --git a/drivers/gpio/gpio-langwell.c b/drivers/gpio/gpio-langwell.c index 634c3d37f7b5..62ef10a641c4 100644 --- a/drivers/gpio/gpio-langwell.c +++ b/drivers/gpio/gpio-langwell.c | |||
| @@ -324,6 +324,7 @@ static int lnw_gpio_probe(struct pci_dev *pdev, | |||
| 324 | resource_size_t start, len; | 324 | resource_size_t start, len; |
| 325 | struct lnw_gpio *lnw; | 325 | struct lnw_gpio *lnw; |
| 326 | u32 gpio_base; | 326 | u32 gpio_base; |
| 327 | u32 irq_base; | ||
| 327 | int retval; | 328 | int retval; |
| 328 | int ngpio = id->driver_data; | 329 | int ngpio = id->driver_data; |
| 329 | 330 | ||
| @@ -345,6 +346,7 @@ static int lnw_gpio_probe(struct pci_dev *pdev, | |||
| 345 | retval = -EFAULT; | 346 | retval = -EFAULT; |
| 346 | goto err_ioremap; | 347 | goto err_ioremap; |
| 347 | } | 348 | } |
| 349 | irq_base = *(u32 *)base; | ||
| 348 | gpio_base = *((u32 *)base + 1); | 350 | gpio_base = *((u32 *)base + 1); |
| 349 | /* release the IO mapping, since we already get the info from bar1 */ | 351 | /* release the IO mapping, since we already get the info from bar1 */ |
| 350 | iounmap(base); | 352 | iounmap(base); |
| @@ -365,13 +367,6 @@ static int lnw_gpio_probe(struct pci_dev *pdev, | |||
| 365 | goto err_ioremap; | 367 | goto err_ioremap; |
| 366 | } | 368 | } |
| 367 | 369 | ||
| 368 | lnw->domain = irq_domain_add_linear(pdev->dev.of_node, ngpio, | ||
| 369 | &lnw_gpio_irq_ops, lnw); | ||
| 370 | if (!lnw->domain) { | ||
| 371 | retval = -ENOMEM; | ||
| 372 | goto err_ioremap; | ||
| 373 | } | ||
| 374 | |||
| 375 | lnw->reg_base = base; | 370 | lnw->reg_base = base; |
| 376 | lnw->chip.label = dev_name(&pdev->dev); | 371 | lnw->chip.label = dev_name(&pdev->dev); |
| 377 | lnw->chip.request = lnw_gpio_request; | 372 | lnw->chip.request = lnw_gpio_request; |
| @@ -384,6 +379,14 @@ static int lnw_gpio_probe(struct pci_dev *pdev, | |||
| 384 | lnw->chip.ngpio = ngpio; | 379 | lnw->chip.ngpio = ngpio; |
| 385 | lnw->chip.can_sleep = 0; | 380 | lnw->chip.can_sleep = 0; |
| 386 | lnw->pdev = pdev; | 381 | lnw->pdev = pdev; |
| 382 | |||
| 383 | lnw->domain = irq_domain_add_simple(pdev->dev.of_node, ngpio, irq_base, | ||
| 384 | &lnw_gpio_irq_ops, lnw); | ||
| 385 | if (!lnw->domain) { | ||
| 386 | retval = -ENOMEM; | ||
| 387 | goto err_ioremap; | ||
| 388 | } | ||
| 389 | |||
| 387 | pci_set_drvdata(pdev, lnw); | 390 | pci_set_drvdata(pdev, lnw); |
| 388 | retval = gpiochip_add(&lnw->chip); | 391 | retval = gpiochip_add(&lnw->chip); |
| 389 | if (retval) { | 392 | if (retval) { |
diff --git a/drivers/gpio/gpio-ml-ioh.c b/drivers/gpio/gpio-ml-ioh.c index b73366523fae..0966f2637ad2 100644 --- a/drivers/gpio/gpio-ml-ioh.c +++ b/drivers/gpio/gpio-ml-ioh.c | |||
| @@ -496,8 +496,7 @@ err_irq_alloc_descs: | |||
| 496 | err_gpiochip_add: | 496 | err_gpiochip_add: |
| 497 | while (--i >= 0) { | 497 | while (--i >= 0) { |
| 498 | chip--; | 498 | chip--; |
| 499 | ret = gpiochip_remove(&chip->gpio); | 499 | if (gpiochip_remove(&chip->gpio)) |
| 500 | if (ret) | ||
| 501 | dev_err(&pdev->dev, "Failed gpiochip_remove(%d)\n", i); | 500 | dev_err(&pdev->dev, "Failed gpiochip_remove(%d)\n", i); |
| 502 | } | 501 | } |
| 503 | kfree(chip_save); | 502 | kfree(chip_save); |
diff --git a/drivers/gpio/gpio-mxs.c b/drivers/gpio/gpio-mxs.c index 25000b0f8453..f8e6af20dfbf 100644 --- a/drivers/gpio/gpio-mxs.c +++ b/drivers/gpio/gpio-mxs.c | |||
| @@ -326,7 +326,8 @@ static int mxs_gpio_probe(struct platform_device *pdev) | |||
| 326 | 326 | ||
| 327 | err = bgpio_init(&port->bgc, &pdev->dev, 4, | 327 | err = bgpio_init(&port->bgc, &pdev->dev, 4, |
| 328 | port->base + PINCTRL_DIN(port), | 328 | port->base + PINCTRL_DIN(port), |
| 329 | port->base + PINCTRL_DOUT(port), NULL, | 329 | port->base + PINCTRL_DOUT(port) + MXS_SET, |
| 330 | port->base + PINCTRL_DOUT(port) + MXS_CLR, | ||
| 330 | port->base + PINCTRL_DOE(port), NULL, 0); | 331 | port->base + PINCTRL_DOE(port), NULL, 0); |
| 331 | if (err) | 332 | if (err) |
| 332 | goto out_irqdesc_free; | 333 | goto out_irqdesc_free; |
diff --git a/drivers/gpio/gpio-omap.c b/drivers/gpio/gpio-omap.c index 2050891d9c65..d3f7d2db870f 100644 --- a/drivers/gpio/gpio-omap.c +++ b/drivers/gpio/gpio-omap.c | |||
| @@ -69,6 +69,7 @@ struct gpio_bank { | |||
| 69 | bool is_mpuio; | 69 | bool is_mpuio; |
| 70 | bool dbck_flag; | 70 | bool dbck_flag; |
| 71 | bool loses_context; | 71 | bool loses_context; |
| 72 | bool context_valid; | ||
| 72 | int stride; | 73 | int stride; |
| 73 | u32 width; | 74 | u32 width; |
| 74 | int context_loss_count; | 75 | int context_loss_count; |
| @@ -1128,6 +1129,10 @@ static int omap_gpio_probe(struct platform_device *pdev) | |||
| 1128 | bank->loses_context = true; | 1129 | bank->loses_context = true; |
| 1129 | } else { | 1130 | } else { |
| 1130 | bank->loses_context = pdata->loses_context; | 1131 | bank->loses_context = pdata->loses_context; |
| 1132 | |||
| 1133 | if (bank->loses_context) | ||
| 1134 | bank->get_context_loss_count = | ||
| 1135 | pdata->get_context_loss_count; | ||
| 1131 | } | 1136 | } |
| 1132 | 1137 | ||
| 1133 | 1138 | ||
| @@ -1178,9 +1183,6 @@ static int omap_gpio_probe(struct platform_device *pdev) | |||
| 1178 | omap_gpio_chip_init(bank); | 1183 | omap_gpio_chip_init(bank); |
| 1179 | omap_gpio_show_rev(bank); | 1184 | omap_gpio_show_rev(bank); |
| 1180 | 1185 | ||
| 1181 | if (bank->loses_context) | ||
| 1182 | bank->get_context_loss_count = pdata->get_context_loss_count; | ||
| 1183 | |||
| 1184 | pm_runtime_put(bank->dev); | 1186 | pm_runtime_put(bank->dev); |
| 1185 | 1187 | ||
| 1186 | list_add_tail(&bank->node, &omap_gpio_list); | 1188 | list_add_tail(&bank->node, &omap_gpio_list); |
| @@ -1259,6 +1261,8 @@ update_gpio_context_count: | |||
| 1259 | return 0; | 1261 | return 0; |
| 1260 | } | 1262 | } |
| 1261 | 1263 | ||
| 1264 | static void omap_gpio_init_context(struct gpio_bank *p); | ||
| 1265 | |||
| 1262 | static int omap_gpio_runtime_resume(struct device *dev) | 1266 | static int omap_gpio_runtime_resume(struct device *dev) |
| 1263 | { | 1267 | { |
| 1264 | struct platform_device *pdev = to_platform_device(dev); | 1268 | struct platform_device *pdev = to_platform_device(dev); |
| @@ -1268,6 +1272,20 @@ static int omap_gpio_runtime_resume(struct device *dev) | |||
| 1268 | int c; | 1272 | int c; |
| 1269 | 1273 | ||
| 1270 | spin_lock_irqsave(&bank->lock, flags); | 1274 | spin_lock_irqsave(&bank->lock, flags); |
| 1275 | |||
| 1276 | /* | ||
| 1277 | * On the first resume during the probe, the context has not | ||
| 1278 | * been initialised and so initialise it now. Also initialise | ||
| 1279 | * the context loss count. | ||
| 1280 | */ | ||
| 1281 | if (bank->loses_context && !bank->context_valid) { | ||
| 1282 | omap_gpio_init_context(bank); | ||
| 1283 | |||
| 1284 | if (bank->get_context_loss_count) | ||
| 1285 | bank->context_loss_count = | ||
| 1286 | bank->get_context_loss_count(bank->dev); | ||
| 1287 | } | ||
| 1288 | |||
| 1271 | _gpio_dbck_enable(bank); | 1289 | _gpio_dbck_enable(bank); |
| 1272 | 1290 | ||
| 1273 | /* | 1291 | /* |
| @@ -1384,6 +1402,29 @@ void omap2_gpio_resume_after_idle(void) | |||
| 1384 | } | 1402 | } |
| 1385 | 1403 | ||
| 1386 | #if defined(CONFIG_PM_RUNTIME) | 1404 | #if defined(CONFIG_PM_RUNTIME) |
| 1405 | static void omap_gpio_init_context(struct gpio_bank *p) | ||
| 1406 | { | ||
| 1407 | struct omap_gpio_reg_offs *regs = p->regs; | ||
| 1408 | void __iomem *base = p->base; | ||
| 1409 | |||
| 1410 | p->context.ctrl = __raw_readl(base + regs->ctrl); | ||
| 1411 | p->context.oe = __raw_readl(base + regs->direction); | ||
| 1412 | p->context.wake_en = __raw_readl(base + regs->wkup_en); | ||
| 1413 | p->context.leveldetect0 = __raw_readl(base + regs->leveldetect0); | ||
| 1414 | p->context.leveldetect1 = __raw_readl(base + regs->leveldetect1); | ||
| 1415 | p->context.risingdetect = __raw_readl(base + regs->risingdetect); | ||
| 1416 | p->context.fallingdetect = __raw_readl(base + regs->fallingdetect); | ||
| 1417 | p->context.irqenable1 = __raw_readl(base + regs->irqenable); | ||
| 1418 | p->context.irqenable2 = __raw_readl(base + regs->irqenable2); | ||
| 1419 | |||
| 1420 | if (regs->set_dataout && p->regs->clr_dataout) | ||
| 1421 | p->context.dataout = __raw_readl(base + regs->set_dataout); | ||
| 1422 | else | ||
| 1423 | p->context.dataout = __raw_readl(base + regs->dataout); | ||
| 1424 | |||
| 1425 | p->context_valid = true; | ||
| 1426 | } | ||
| 1427 | |||
| 1387 | static void omap_gpio_restore_context(struct gpio_bank *bank) | 1428 | static void omap_gpio_restore_context(struct gpio_bank *bank) |
| 1388 | { | 1429 | { |
| 1389 | __raw_writel(bank->context.wake_en, | 1430 | __raw_writel(bank->context.wake_en, |
| @@ -1421,6 +1462,7 @@ static void omap_gpio_restore_context(struct gpio_bank *bank) | |||
| 1421 | #else | 1462 | #else |
| 1422 | #define omap_gpio_runtime_suspend NULL | 1463 | #define omap_gpio_runtime_suspend NULL |
| 1423 | #define omap_gpio_runtime_resume NULL | 1464 | #define omap_gpio_runtime_resume NULL |
| 1465 | static void omap_gpio_init_context(struct gpio_bank *p) {} | ||
| 1424 | #endif | 1466 | #endif |
| 1425 | 1467 | ||
| 1426 | static const struct dev_pm_ops gpio_pm_ops = { | 1468 | static const struct dev_pm_ops gpio_pm_ops = { |
diff --git a/drivers/gpio/gpio-pch.c b/drivers/gpio/gpio-pch.c index cdf599687cf7..0fec097e838d 100644 --- a/drivers/gpio/gpio-pch.c +++ b/drivers/gpio/gpio-pch.c | |||
| @@ -424,8 +424,7 @@ end: | |||
| 424 | err_request_irq: | 424 | err_request_irq: |
| 425 | irq_free_descs(irq_base, gpio_pins[chip->ioh]); | 425 | irq_free_descs(irq_base, gpio_pins[chip->ioh]); |
| 426 | 426 | ||
| 427 | ret = gpiochip_remove(&chip->gpio); | 427 | if (gpiochip_remove(&chip->gpio)) |
| 428 | if (ret) | ||
| 429 | dev_err(&pdev->dev, "%s gpiochip_remove failed\n", __func__); | 428 | dev_err(&pdev->dev, "%s gpiochip_remove failed\n", __func__); |
| 430 | 429 | ||
| 431 | err_gpiochip_add: | 430 | err_gpiochip_add: |
diff --git a/drivers/gpio/gpio-sch.c b/drivers/gpio/gpio-sch.c index 1e4de16ceb41..5af65719b95d 100644 --- a/drivers/gpio/gpio-sch.c +++ b/drivers/gpio/gpio-sch.c | |||
| @@ -272,10 +272,8 @@ static int sch_gpio_probe(struct platform_device *pdev) | |||
| 272 | return 0; | 272 | return 0; |
| 273 | 273 | ||
| 274 | err_sch_gpio_resume: | 274 | err_sch_gpio_resume: |
| 275 | err = gpiochip_remove(&sch_gpio_core); | 275 | if (gpiochip_remove(&sch_gpio_core)) |
| 276 | if (err) | 276 | dev_err(&pdev->dev, "%s gpiochip_remove failed\n", __func__); |
| 277 | dev_err(&pdev->dev, "%s failed, %d\n", | ||
| 278 | "gpiochip_remove()", err); | ||
| 279 | 277 | ||
| 280 | err_sch_gpio_core: | 278 | err_sch_gpio_core: |
| 281 | release_region(res->start, resource_size(res)); | 279 | release_region(res->start, resource_size(res)); |
diff --git a/drivers/gpio/gpio-viperboard.c b/drivers/gpio/gpio-viperboard.c index 095ab14cea4d..5ac2919197fe 100644 --- a/drivers/gpio/gpio-viperboard.c +++ b/drivers/gpio/gpio-viperboard.c | |||
| @@ -446,7 +446,8 @@ static int vprbrd_gpio_probe(struct platform_device *pdev) | |||
| 446 | return ret; | 446 | return ret; |
| 447 | 447 | ||
| 448 | err_gpiob: | 448 | err_gpiob: |
| 449 | ret = gpiochip_remove(&vb_gpio->gpioa); | 449 | if (gpiochip_remove(&vb_gpio->gpioa)) |
| 450 | dev_err(&pdev->dev, "%s gpiochip_remove failed\n", __func__); | ||
| 450 | 451 | ||
| 451 | err_gpioa: | 452 | err_gpioa: |
| 452 | return ret; | 453 | return ret; |
diff --git a/drivers/gpu/drm/nouveau/core/engine/device/nvc0.c b/drivers/gpu/drm/nouveau/core/engine/device/nvc0.c index 955af122c3a6..a36e64e98ef3 100644 --- a/drivers/gpu/drm/nouveau/core/engine/device/nvc0.c +++ b/drivers/gpu/drm/nouveau/core/engine/device/nvc0.c | |||
| @@ -138,7 +138,6 @@ nvc0_identify(struct nouveau_device *device) | |||
| 138 | device->oclass[NVDEV_ENGINE_BSP ] = &nvc0_bsp_oclass; | 138 | device->oclass[NVDEV_ENGINE_BSP ] = &nvc0_bsp_oclass; |
| 139 | device->oclass[NVDEV_ENGINE_PPP ] = &nvc0_ppp_oclass; | 139 | device->oclass[NVDEV_ENGINE_PPP ] = &nvc0_ppp_oclass; |
| 140 | device->oclass[NVDEV_ENGINE_COPY0 ] = &nvc0_copy0_oclass; | 140 | device->oclass[NVDEV_ENGINE_COPY0 ] = &nvc0_copy0_oclass; |
| 141 | device->oclass[NVDEV_ENGINE_COPY1 ] = &nvc0_copy1_oclass; | ||
| 142 | device->oclass[NVDEV_ENGINE_DISP ] = &nva3_disp_oclass; | 141 | device->oclass[NVDEV_ENGINE_DISP ] = &nva3_disp_oclass; |
| 143 | break; | 142 | break; |
| 144 | case 0xce: | 143 | case 0xce: |
| @@ -225,7 +224,6 @@ nvc0_identify(struct nouveau_device *device) | |||
| 225 | device->oclass[NVDEV_ENGINE_BSP ] = &nvc0_bsp_oclass; | 224 | device->oclass[NVDEV_ENGINE_BSP ] = &nvc0_bsp_oclass; |
| 226 | device->oclass[NVDEV_ENGINE_PPP ] = &nvc0_ppp_oclass; | 225 | device->oclass[NVDEV_ENGINE_PPP ] = &nvc0_ppp_oclass; |
| 227 | device->oclass[NVDEV_ENGINE_COPY0 ] = &nvc0_copy0_oclass; | 226 | device->oclass[NVDEV_ENGINE_COPY0 ] = &nvc0_copy0_oclass; |
| 228 | device->oclass[NVDEV_ENGINE_COPY1 ] = &nvc0_copy1_oclass; | ||
| 229 | device->oclass[NVDEV_ENGINE_DISP ] = &nva3_disp_oclass; | 227 | device->oclass[NVDEV_ENGINE_DISP ] = &nva3_disp_oclass; |
| 230 | break; | 228 | break; |
| 231 | case 0xc8: | 229 | case 0xc8: |
diff --git a/drivers/gpu/drm/nouveau/core/engine/fifo/nv50.c b/drivers/gpu/drm/nouveau/core/engine/fifo/nv50.c index ddaeb5572903..89bf459d584b 100644 --- a/drivers/gpu/drm/nouveau/core/engine/fifo/nv50.c +++ b/drivers/gpu/drm/nouveau/core/engine/fifo/nv50.c | |||
| @@ -47,6 +47,7 @@ nv50_fifo_playlist_update(struct nv50_fifo_priv *priv) | |||
| 47 | struct nouveau_gpuobj *cur; | 47 | struct nouveau_gpuobj *cur; |
| 48 | int i, p; | 48 | int i, p; |
| 49 | 49 | ||
| 50 | mutex_lock(&nv_subdev(priv)->mutex); | ||
| 50 | cur = priv->playlist[priv->cur_playlist]; | 51 | cur = priv->playlist[priv->cur_playlist]; |
| 51 | priv->cur_playlist = !priv->cur_playlist; | 52 | priv->cur_playlist = !priv->cur_playlist; |
| 52 | 53 | ||
| @@ -60,6 +61,7 @@ nv50_fifo_playlist_update(struct nv50_fifo_priv *priv) | |||
| 60 | nv_wr32(priv, 0x0032f4, cur->addr >> 12); | 61 | nv_wr32(priv, 0x0032f4, cur->addr >> 12); |
| 61 | nv_wr32(priv, 0x0032ec, p); | 62 | nv_wr32(priv, 0x0032ec, p); |
| 62 | nv_wr32(priv, 0x002500, 0x00000101); | 63 | nv_wr32(priv, 0x002500, 0x00000101); |
| 64 | mutex_unlock(&nv_subdev(priv)->mutex); | ||
| 63 | } | 65 | } |
| 64 | 66 | ||
| 65 | static int | 67 | static int |
diff --git a/drivers/gpu/drm/nouveau/core/engine/fifo/nvc0.c b/drivers/gpu/drm/nouveau/core/engine/fifo/nvc0.c index 4d4a6b905370..46dfa68c47bb 100644 --- a/drivers/gpu/drm/nouveau/core/engine/fifo/nvc0.c +++ b/drivers/gpu/drm/nouveau/core/engine/fifo/nvc0.c | |||
| @@ -71,6 +71,7 @@ nvc0_fifo_playlist_update(struct nvc0_fifo_priv *priv) | |||
| 71 | struct nouveau_gpuobj *cur; | 71 | struct nouveau_gpuobj *cur; |
| 72 | int i, p; | 72 | int i, p; |
| 73 | 73 | ||
| 74 | mutex_lock(&nv_subdev(priv)->mutex); | ||
| 74 | cur = priv->playlist[priv->cur_playlist]; | 75 | cur = priv->playlist[priv->cur_playlist]; |
| 75 | priv->cur_playlist = !priv->cur_playlist; | 76 | priv->cur_playlist = !priv->cur_playlist; |
| 76 | 77 | ||
| @@ -87,6 +88,7 @@ nvc0_fifo_playlist_update(struct nvc0_fifo_priv *priv) | |||
| 87 | nv_wr32(priv, 0x002274, 0x01f00000 | (p >> 3)); | 88 | nv_wr32(priv, 0x002274, 0x01f00000 | (p >> 3)); |
| 88 | if (!nv_wait(priv, 0x00227c, 0x00100000, 0x00000000)) | 89 | if (!nv_wait(priv, 0x00227c, 0x00100000, 0x00000000)) |
| 89 | nv_error(priv, "playlist update failed\n"); | 90 | nv_error(priv, "playlist update failed\n"); |
| 91 | mutex_unlock(&nv_subdev(priv)->mutex); | ||
| 90 | } | 92 | } |
| 91 | 93 | ||
| 92 | static int | 94 | static int |
| @@ -248,9 +250,17 @@ nvc0_fifo_chan_fini(struct nouveau_object *object, bool suspend) | |||
| 248 | struct nvc0_fifo_priv *priv = (void *)object->engine; | 250 | struct nvc0_fifo_priv *priv = (void *)object->engine; |
| 249 | struct nvc0_fifo_chan *chan = (void *)object; | 251 | struct nvc0_fifo_chan *chan = (void *)object; |
| 250 | u32 chid = chan->base.chid; | 252 | u32 chid = chan->base.chid; |
| 253 | u32 mask, engine; | ||
| 251 | 254 | ||
| 252 | nv_mask(priv, 0x003004 + (chid * 8), 0x00000001, 0x00000000); | 255 | nv_mask(priv, 0x003004 + (chid * 8), 0x00000001, 0x00000000); |
| 253 | nvc0_fifo_playlist_update(priv); | 256 | nvc0_fifo_playlist_update(priv); |
| 257 | mask = nv_rd32(priv, 0x0025a4); | ||
| 258 | for (engine = 0; mask && engine < 16; engine++) { | ||
| 259 | if (!(mask & (1 << engine))) | ||
| 260 | continue; | ||
| 261 | nv_mask(priv, 0x0025a8 + (engine * 4), 0x00000000, 0x00000000); | ||
| 262 | mask &= ~(1 << engine); | ||
| 263 | } | ||
| 254 | nv_wr32(priv, 0x003000 + (chid * 8), 0x00000000); | 264 | nv_wr32(priv, 0x003000 + (chid * 8), 0x00000000); |
| 255 | 265 | ||
| 256 | return nouveau_fifo_channel_fini(&chan->base, suspend); | 266 | return nouveau_fifo_channel_fini(&chan->base, suspend); |
diff --git a/drivers/gpu/drm/nouveau/core/engine/fifo/nve0.c b/drivers/gpu/drm/nouveau/core/engine/fifo/nve0.c index 9151919fb831..56192a7242ae 100644 --- a/drivers/gpu/drm/nouveau/core/engine/fifo/nve0.c +++ b/drivers/gpu/drm/nouveau/core/engine/fifo/nve0.c | |||
| @@ -94,11 +94,13 @@ nve0_fifo_playlist_update(struct nve0_fifo_priv *priv, u32 engine) | |||
| 94 | u32 match = (engine << 16) | 0x00000001; | 94 | u32 match = (engine << 16) | 0x00000001; |
| 95 | int i, p; | 95 | int i, p; |
| 96 | 96 | ||
| 97 | mutex_lock(&nv_subdev(priv)->mutex); | ||
| 97 | cur = engn->playlist[engn->cur_playlist]; | 98 | cur = engn->playlist[engn->cur_playlist]; |
| 98 | if (unlikely(cur == NULL)) { | 99 | if (unlikely(cur == NULL)) { |
| 99 | int ret = nouveau_gpuobj_new(nv_object(priv), NULL, | 100 | int ret = nouveau_gpuobj_new(nv_object(priv), NULL, |
| 100 | 0x8000, 0x1000, 0, &cur); | 101 | 0x8000, 0x1000, 0, &cur); |
| 101 | if (ret) { | 102 | if (ret) { |
| 103 | mutex_unlock(&nv_subdev(priv)->mutex); | ||
| 102 | nv_error(priv, "playlist alloc failed\n"); | 104 | nv_error(priv, "playlist alloc failed\n"); |
| 103 | return; | 105 | return; |
| 104 | } | 106 | } |
| @@ -122,6 +124,7 @@ nve0_fifo_playlist_update(struct nve0_fifo_priv *priv, u32 engine) | |||
| 122 | nv_wr32(priv, 0x002274, (engine << 20) | (p >> 3)); | 124 | nv_wr32(priv, 0x002274, (engine << 20) | (p >> 3)); |
| 123 | if (!nv_wait(priv, 0x002284 + (engine * 4), 0x00100000, 0x00000000)) | 125 | if (!nv_wait(priv, 0x002284 + (engine * 4), 0x00100000, 0x00000000)) |
| 124 | nv_error(priv, "playlist %d update timeout\n", engine); | 126 | nv_error(priv, "playlist %d update timeout\n", engine); |
| 127 | mutex_unlock(&nv_subdev(priv)->mutex); | ||
| 125 | } | 128 | } |
| 126 | 129 | ||
| 127 | static int | 130 | static int |
diff --git a/drivers/gpu/drm/nouveau/core/subdev/bios/init.c b/drivers/gpu/drm/nouveau/core/subdev/bios/init.c index c300b5e7b670..c434d398d16f 100644 --- a/drivers/gpu/drm/nouveau/core/subdev/bios/init.c +++ b/drivers/gpu/drm/nouveau/core/subdev/bios/init.c | |||
| @@ -1940,8 +1940,8 @@ init_zm_mask_add(struct nvbios_init *init) | |||
| 1940 | trace("ZM_MASK_ADD\tR[0x%06x] &= 0x%08x += 0x%08x\n", addr, mask, add); | 1940 | trace("ZM_MASK_ADD\tR[0x%06x] &= 0x%08x += 0x%08x\n", addr, mask, add); |
| 1941 | init->offset += 13; | 1941 | init->offset += 13; |
| 1942 | 1942 | ||
| 1943 | data = init_rd32(init, addr) & mask; | 1943 | data = init_rd32(init, addr); |
| 1944 | data |= ((data + add) & ~mask); | 1944 | data = (data & mask) | ((data + add) & ~mask); |
| 1945 | init_wr32(init, addr, data); | 1945 | init_wr32(init, addr, data); |
| 1946 | } | 1946 | } |
| 1947 | 1947 | ||
diff --git a/drivers/gpu/drm/nouveau/core/subdev/ltcg/nvc0.c b/drivers/gpu/drm/nouveau/core/subdev/ltcg/nvc0.c index e4940fb166e8..fb794e997fbc 100644 --- a/drivers/gpu/drm/nouveau/core/subdev/ltcg/nvc0.c +++ b/drivers/gpu/drm/nouveau/core/subdev/ltcg/nvc0.c | |||
| @@ -29,7 +29,6 @@ | |||
| 29 | struct nvc0_ltcg_priv { | 29 | struct nvc0_ltcg_priv { |
| 30 | struct nouveau_ltcg base; | 30 | struct nouveau_ltcg base; |
| 31 | u32 part_nr; | 31 | u32 part_nr; |
| 32 | u32 part_mask; | ||
| 33 | u32 subp_nr; | 32 | u32 subp_nr; |
| 34 | struct nouveau_mm tags; | 33 | struct nouveau_mm tags; |
| 35 | u32 num_tags; | 34 | u32 num_tags; |
| @@ -105,8 +104,6 @@ nvc0_ltcg_tags_clear(struct nouveau_ltcg *ltcg, u32 first, u32 count) | |||
| 105 | 104 | ||
| 106 | /* wait until it's finished with clearing */ | 105 | /* wait until it's finished with clearing */ |
| 107 | for (p = 0; p < priv->part_nr; ++p) { | 106 | for (p = 0; p < priv->part_nr; ++p) { |
| 108 | if (!(priv->part_mask & (1 << p))) | ||
| 109 | continue; | ||
| 110 | for (i = 0; i < priv->subp_nr; ++i) | 107 | for (i = 0; i < priv->subp_nr; ++i) |
| 111 | nv_wait(priv, 0x1410c8 + p * 0x2000 + i * 0x400, ~0, 0); | 108 | nv_wait(priv, 0x1410c8 + p * 0x2000 + i * 0x400, ~0, 0); |
| 112 | } | 109 | } |
| @@ -121,6 +118,8 @@ nvc0_ltcg_init_tag_ram(struct nouveau_fb *pfb, struct nvc0_ltcg_priv *priv) | |||
| 121 | int ret; | 118 | int ret; |
| 122 | 119 | ||
| 123 | nv_wr32(priv, 0x17e8d8, priv->part_nr); | 120 | nv_wr32(priv, 0x17e8d8, priv->part_nr); |
| 121 | if (nv_device(pfb)->card_type >= NV_E0) | ||
| 122 | nv_wr32(priv, 0x17e000, priv->part_nr); | ||
| 124 | 123 | ||
| 125 | /* tags for 1/4 of VRAM should be enough (8192/4 per GiB of VRAM) */ | 124 | /* tags for 1/4 of VRAM should be enough (8192/4 per GiB of VRAM) */ |
| 126 | priv->num_tags = (pfb->ram.size >> 17) / 4; | 125 | priv->num_tags = (pfb->ram.size >> 17) / 4; |
| @@ -167,16 +166,20 @@ nvc0_ltcg_ctor(struct nouveau_object *parent, struct nouveau_object *engine, | |||
| 167 | { | 166 | { |
| 168 | struct nvc0_ltcg_priv *priv; | 167 | struct nvc0_ltcg_priv *priv; |
| 169 | struct nouveau_fb *pfb = nouveau_fb(parent); | 168 | struct nouveau_fb *pfb = nouveau_fb(parent); |
| 170 | int ret; | 169 | u32 parts, mask; |
| 170 | int ret, i; | ||
| 171 | 171 | ||
| 172 | ret = nouveau_ltcg_create(parent, engine, oclass, &priv); | 172 | ret = nouveau_ltcg_create(parent, engine, oclass, &priv); |
| 173 | *pobject = nv_object(priv); | 173 | *pobject = nv_object(priv); |
| 174 | if (ret) | 174 | if (ret) |
| 175 | return ret; | 175 | return ret; |
| 176 | 176 | ||
| 177 | priv->part_nr = nv_rd32(priv, 0x022438); | 177 | parts = nv_rd32(priv, 0x022438); |
| 178 | priv->part_mask = nv_rd32(priv, 0x022554); | 178 | mask = nv_rd32(priv, 0x022554); |
| 179 | 179 | for (i = 0; i < parts; i++) { | |
| 180 | if (!(mask & (1 << i))) | ||
| 181 | priv->part_nr++; | ||
| 182 | } | ||
| 180 | priv->subp_nr = nv_rd32(priv, 0x17e8dc) >> 28; | 183 | priv->subp_nr = nv_rd32(priv, 0x17e8dc) >> 28; |
| 181 | 184 | ||
| 182 | nv_mask(priv, 0x17e820, 0x00100000, 0x00000000); /* INTR_EN &= ~0x10 */ | 185 | nv_mask(priv, 0x17e820, 0x00100000, 0x00000000); /* INTR_EN &= ~0x10 */ |
diff --git a/drivers/gpu/drm/nouveau/nouveau_drm.c b/drivers/gpu/drm/nouveau/nouveau_drm.c index 46c152ff0a80..383f4e6ea9d1 100644 --- a/drivers/gpu/drm/nouveau/nouveau_drm.c +++ b/drivers/gpu/drm/nouveau/nouveau_drm.c | |||
| @@ -453,18 +453,32 @@ nouveau_do_suspend(struct drm_device *dev) | |||
| 453 | NV_INFO(drm, "evicting buffers...\n"); | 453 | NV_INFO(drm, "evicting buffers...\n"); |
| 454 | ttm_bo_evict_mm(&drm->ttm.bdev, TTM_PL_VRAM); | 454 | ttm_bo_evict_mm(&drm->ttm.bdev, TTM_PL_VRAM); |
| 455 | 455 | ||
| 456 | NV_INFO(drm, "waiting for kernel channels to go idle...\n"); | ||
| 457 | if (drm->cechan) { | ||
| 458 | ret = nouveau_channel_idle(drm->cechan); | ||
| 459 | if (ret) | ||
| 460 | return ret; | ||
| 461 | } | ||
| 462 | |||
| 463 | if (drm->channel) { | ||
| 464 | ret = nouveau_channel_idle(drm->channel); | ||
| 465 | if (ret) | ||
| 466 | return ret; | ||
| 467 | } | ||
| 468 | |||
| 469 | NV_INFO(drm, "suspending client object trees...\n"); | ||
| 456 | if (drm->fence && nouveau_fence(drm)->suspend) { | 470 | if (drm->fence && nouveau_fence(drm)->suspend) { |
| 457 | if (!nouveau_fence(drm)->suspend(drm)) | 471 | if (!nouveau_fence(drm)->suspend(drm)) |
| 458 | return -ENOMEM; | 472 | return -ENOMEM; |
| 459 | } | 473 | } |
| 460 | 474 | ||
| 461 | NV_INFO(drm, "suspending client object trees...\n"); | ||
| 462 | list_for_each_entry(cli, &drm->clients, head) { | 475 | list_for_each_entry(cli, &drm->clients, head) { |
| 463 | ret = nouveau_client_fini(&cli->base, true); | 476 | ret = nouveau_client_fini(&cli->base, true); |
| 464 | if (ret) | 477 | if (ret) |
| 465 | goto fail_client; | 478 | goto fail_client; |
| 466 | } | 479 | } |
| 467 | 480 | ||
| 481 | NV_INFO(drm, "suspending kernel object tree...\n"); | ||
| 468 | ret = nouveau_client_fini(&drm->client.base, true); | 482 | ret = nouveau_client_fini(&drm->client.base, true); |
| 469 | if (ret) | 483 | if (ret) |
| 470 | goto fail_client; | 484 | goto fail_client; |
| @@ -514,17 +528,18 @@ nouveau_do_resume(struct drm_device *dev) | |||
| 514 | 528 | ||
| 515 | nouveau_agp_reset(drm); | 529 | nouveau_agp_reset(drm); |
| 516 | 530 | ||
| 517 | NV_INFO(drm, "resuming client object trees...\n"); | 531 | NV_INFO(drm, "resuming kernel object tree...\n"); |
| 518 | nouveau_client_init(&drm->client.base); | 532 | nouveau_client_init(&drm->client.base); |
| 519 | nouveau_agp_init(drm); | 533 | nouveau_agp_init(drm); |
| 520 | 534 | ||
| 535 | NV_INFO(drm, "resuming client object trees...\n"); | ||
| 536 | if (drm->fence && nouveau_fence(drm)->resume) | ||
| 537 | nouveau_fence(drm)->resume(drm); | ||
| 538 | |||
| 521 | list_for_each_entry(cli, &drm->clients, head) { | 539 | list_for_each_entry(cli, &drm->clients, head) { |
| 522 | nouveau_client_init(&cli->base); | 540 | nouveau_client_init(&cli->base); |
| 523 | } | 541 | } |
| 524 | 542 | ||
| 525 | if (drm->fence && nouveau_fence(drm)->resume) | ||
| 526 | nouveau_fence(drm)->resume(drm); | ||
| 527 | |||
| 528 | nouveau_run_vbios_init(dev); | 543 | nouveau_run_vbios_init(dev); |
| 529 | nouveau_pm_resume(dev); | 544 | nouveau_pm_resume(dev); |
| 530 | 545 | ||
diff --git a/drivers/gpu/drm/radeon/atombios_crtc.c b/drivers/gpu/drm/radeon/atombios_crtc.c index 6d6fdb3ba0d0..d5df8fd10217 100644 --- a/drivers/gpu/drm/radeon/atombios_crtc.c +++ b/drivers/gpu/drm/radeon/atombios_crtc.c | |||
| @@ -1811,12 +1811,9 @@ static bool atombios_crtc_mode_fixup(struct drm_crtc *crtc, | |||
| 1811 | 1811 | ||
| 1812 | static void atombios_crtc_prepare(struct drm_crtc *crtc) | 1812 | static void atombios_crtc_prepare(struct drm_crtc *crtc) |
| 1813 | { | 1813 | { |
| 1814 | struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc); | ||
| 1815 | struct drm_device *dev = crtc->dev; | 1814 | struct drm_device *dev = crtc->dev; |
| 1816 | struct radeon_device *rdev = dev->dev_private; | 1815 | struct radeon_device *rdev = dev->dev_private; |
| 1817 | 1816 | ||
| 1818 | radeon_crtc->in_mode_set = true; | ||
| 1819 | |||
| 1820 | /* disable crtc pair power gating before programming */ | 1817 | /* disable crtc pair power gating before programming */ |
| 1821 | if (ASIC_IS_DCE6(rdev)) | 1818 | if (ASIC_IS_DCE6(rdev)) |
| 1822 | atombios_powergate_crtc(crtc, ATOM_DISABLE); | 1819 | atombios_powergate_crtc(crtc, ATOM_DISABLE); |
| @@ -1827,11 +1824,8 @@ static void atombios_crtc_prepare(struct drm_crtc *crtc) | |||
| 1827 | 1824 | ||
| 1828 | static void atombios_crtc_commit(struct drm_crtc *crtc) | 1825 | static void atombios_crtc_commit(struct drm_crtc *crtc) |
| 1829 | { | 1826 | { |
| 1830 | struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc); | ||
| 1831 | |||
| 1832 | atombios_crtc_dpms(crtc, DRM_MODE_DPMS_ON); | 1827 | atombios_crtc_dpms(crtc, DRM_MODE_DPMS_ON); |
| 1833 | atombios_lock_crtc(crtc, ATOM_DISABLE); | 1828 | atombios_lock_crtc(crtc, ATOM_DISABLE); |
| 1834 | radeon_crtc->in_mode_set = false; | ||
| 1835 | } | 1829 | } |
| 1836 | 1830 | ||
| 1837 | static void atombios_crtc_disable(struct drm_crtc *crtc) | 1831 | static void atombios_crtc_disable(struct drm_crtc *crtc) |
diff --git a/drivers/gpu/drm/radeon/evergreen.c b/drivers/gpu/drm/radeon/evergreen.c index 105bafb6c29d..8f9e2d31b255 100644 --- a/drivers/gpu/drm/radeon/evergreen.c +++ b/drivers/gpu/drm/radeon/evergreen.c | |||
| @@ -2343,11 +2343,13 @@ void evergreen_mc_stop(struct radeon_device *rdev, struct evergreen_mc_save *sav | |||
| 2343 | u32 crtc_enabled, tmp, frame_count, blackout; | 2343 | u32 crtc_enabled, tmp, frame_count, blackout; |
| 2344 | int i, j; | 2344 | int i, j; |
| 2345 | 2345 | ||
| 2346 | save->vga_render_control = RREG32(VGA_RENDER_CONTROL); | 2346 | if (!ASIC_IS_NODCE(rdev)) { |
| 2347 | save->vga_hdp_control = RREG32(VGA_HDP_CONTROL); | 2347 | save->vga_render_control = RREG32(VGA_RENDER_CONTROL); |
| 2348 | save->vga_hdp_control = RREG32(VGA_HDP_CONTROL); | ||
| 2348 | 2349 | ||
| 2349 | /* disable VGA render */ | 2350 | /* disable VGA render */ |
| 2350 | WREG32(VGA_RENDER_CONTROL, 0); | 2351 | WREG32(VGA_RENDER_CONTROL, 0); |
| 2352 | } | ||
| 2351 | /* blank the display controllers */ | 2353 | /* blank the display controllers */ |
| 2352 | for (i = 0; i < rdev->num_crtc; i++) { | 2354 | for (i = 0; i < rdev->num_crtc; i++) { |
| 2353 | crtc_enabled = RREG32(EVERGREEN_CRTC_CONTROL + crtc_offsets[i]) & EVERGREEN_CRTC_MASTER_EN; | 2355 | crtc_enabled = RREG32(EVERGREEN_CRTC_CONTROL + crtc_offsets[i]) & EVERGREEN_CRTC_MASTER_EN; |
| @@ -2438,8 +2440,11 @@ void evergreen_mc_resume(struct radeon_device *rdev, struct evergreen_mc_save *s | |||
| 2438 | WREG32(EVERGREEN_GRPH_SECONDARY_SURFACE_ADDRESS + crtc_offsets[i], | 2440 | WREG32(EVERGREEN_GRPH_SECONDARY_SURFACE_ADDRESS + crtc_offsets[i], |
| 2439 | (u32)rdev->mc.vram_start); | 2441 | (u32)rdev->mc.vram_start); |
| 2440 | } | 2442 | } |
| 2441 | WREG32(EVERGREEN_VGA_MEMORY_BASE_ADDRESS_HIGH, upper_32_bits(rdev->mc.vram_start)); | 2443 | |
| 2442 | WREG32(EVERGREEN_VGA_MEMORY_BASE_ADDRESS, (u32)rdev->mc.vram_start); | 2444 | if (!ASIC_IS_NODCE(rdev)) { |
| 2445 | WREG32(EVERGREEN_VGA_MEMORY_BASE_ADDRESS_HIGH, upper_32_bits(rdev->mc.vram_start)); | ||
| 2446 | WREG32(EVERGREEN_VGA_MEMORY_BASE_ADDRESS, (u32)rdev->mc.vram_start); | ||
| 2447 | } | ||
| 2443 | 2448 | ||
| 2444 | /* unlock regs and wait for update */ | 2449 | /* unlock regs and wait for update */ |
| 2445 | for (i = 0; i < rdev->num_crtc; i++) { | 2450 | for (i = 0; i < rdev->num_crtc; i++) { |
| @@ -2499,10 +2504,12 @@ void evergreen_mc_resume(struct radeon_device *rdev, struct evergreen_mc_save *s | |||
| 2499 | } | 2504 | } |
| 2500 | } | 2505 | } |
| 2501 | } | 2506 | } |
| 2502 | /* Unlock vga access */ | 2507 | if (!ASIC_IS_NODCE(rdev)) { |
| 2503 | WREG32(VGA_HDP_CONTROL, save->vga_hdp_control); | 2508 | /* Unlock vga access */ |
| 2504 | mdelay(1); | 2509 | WREG32(VGA_HDP_CONTROL, save->vga_hdp_control); |
| 2505 | WREG32(VGA_RENDER_CONTROL, save->vga_render_control); | 2510 | mdelay(1); |
| 2511 | WREG32(VGA_RENDER_CONTROL, save->vga_render_control); | ||
| 2512 | } | ||
| 2506 | } | 2513 | } |
| 2507 | 2514 | ||
| 2508 | void evergreen_mc_program(struct radeon_device *rdev) | 2515 | void evergreen_mc_program(struct radeon_device *rdev) |
| @@ -3405,8 +3412,8 @@ int evergreen_mc_init(struct radeon_device *rdev) | |||
| 3405 | rdev->mc.real_vram_size = RREG32(CONFIG_MEMSIZE); | 3412 | rdev->mc.real_vram_size = RREG32(CONFIG_MEMSIZE); |
| 3406 | } else { | 3413 | } else { |
| 3407 | /* size in MB on evergreen/cayman/tn */ | 3414 | /* size in MB on evergreen/cayman/tn */ |
| 3408 | rdev->mc.mc_vram_size = RREG32(CONFIG_MEMSIZE) * 1024 * 1024; | 3415 | rdev->mc.mc_vram_size = RREG32(CONFIG_MEMSIZE) * 1024ULL * 1024ULL; |
| 3409 | rdev->mc.real_vram_size = RREG32(CONFIG_MEMSIZE) * 1024 * 1024; | 3416 | rdev->mc.real_vram_size = RREG32(CONFIG_MEMSIZE) * 1024ULL * 1024ULL; |
| 3410 | } | 3417 | } |
| 3411 | rdev->mc.visible_vram_size = rdev->mc.aper_size; | 3418 | rdev->mc.visible_vram_size = rdev->mc.aper_size; |
| 3412 | r700_vram_gtt_location(rdev, &rdev->mc); | 3419 | r700_vram_gtt_location(rdev, &rdev->mc); |
diff --git a/drivers/gpu/drm/radeon/evergreen_hdmi.c b/drivers/gpu/drm/radeon/evergreen_hdmi.c index b4ab8ceb1654..ed7c8a768092 100644 --- a/drivers/gpu/drm/radeon/evergreen_hdmi.c +++ b/drivers/gpu/drm/radeon/evergreen_hdmi.c | |||
| @@ -154,19 +154,18 @@ static void evergreen_audio_set_dto(struct drm_encoder *encoder, u32 clock) | |||
| 154 | struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder); | 154 | struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder); |
| 155 | struct radeon_encoder_atom_dig *dig = radeon_encoder->enc_priv; | 155 | struct radeon_encoder_atom_dig *dig = radeon_encoder->enc_priv; |
| 156 | struct radeon_crtc *radeon_crtc = to_radeon_crtc(encoder->crtc); | 156 | struct radeon_crtc *radeon_crtc = to_radeon_crtc(encoder->crtc); |
| 157 | u32 base_rate = 48000; | 157 | u32 base_rate = 24000; |
| 158 | 158 | ||
| 159 | if (!dig || !dig->afmt) | 159 | if (!dig || !dig->afmt) |
| 160 | return; | 160 | return; |
| 161 | 161 | ||
| 162 | /* XXX: properly calculate this */ | ||
| 163 | /* XXX two dtos; generally use dto0 for hdmi */ | 162 | /* XXX two dtos; generally use dto0 for hdmi */ |
| 164 | /* Express [24MHz / target pixel clock] as an exact rational | 163 | /* Express [24MHz / target pixel clock] as an exact rational |
| 165 | * number (coefficient of two integer numbers. DCCG_AUDIO_DTOx_PHASE | 164 | * number (coefficient of two integer numbers. DCCG_AUDIO_DTOx_PHASE |
| 166 | * is the numerator, DCCG_AUDIO_DTOx_MODULE is the denominator | 165 | * is the numerator, DCCG_AUDIO_DTOx_MODULE is the denominator |
| 167 | */ | 166 | */ |
| 168 | WREG32(DCCG_AUDIO_DTO0_PHASE, (base_rate*50) & 0xffffff); | 167 | WREG32(DCCG_AUDIO_DTO0_PHASE, base_rate * 100); |
| 169 | WREG32(DCCG_AUDIO_DTO0_MODULE, (clock*100) & 0xffffff); | 168 | WREG32(DCCG_AUDIO_DTO0_MODULE, clock * 100); |
| 170 | WREG32(DCCG_AUDIO_DTO_SOURCE, DCCG_AUDIO_DTO0_SOURCE_SEL(radeon_crtc->crtc_id)); | 169 | WREG32(DCCG_AUDIO_DTO_SOURCE, DCCG_AUDIO_DTO0_SOURCE_SEL(radeon_crtc->crtc_id)); |
| 171 | } | 170 | } |
| 172 | 171 | ||
diff --git a/drivers/gpu/drm/radeon/r600_hdmi.c b/drivers/gpu/drm/radeon/r600_hdmi.c index 47f180a79352..456750a0daa5 100644 --- a/drivers/gpu/drm/radeon/r600_hdmi.c +++ b/drivers/gpu/drm/radeon/r600_hdmi.c | |||
| @@ -232,7 +232,7 @@ void r600_audio_set_dto(struct drm_encoder *encoder, u32 clock) | |||
| 232 | struct radeon_device *rdev = dev->dev_private; | 232 | struct radeon_device *rdev = dev->dev_private; |
| 233 | struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder); | 233 | struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder); |
| 234 | struct radeon_encoder_atom_dig *dig = radeon_encoder->enc_priv; | 234 | struct radeon_encoder_atom_dig *dig = radeon_encoder->enc_priv; |
| 235 | u32 base_rate = 48000; | 235 | u32 base_rate = 24000; |
| 236 | 236 | ||
| 237 | if (!dig || !dig->afmt) | 237 | if (!dig || !dig->afmt) |
| 238 | return; | 238 | return; |
| @@ -240,7 +240,6 @@ void r600_audio_set_dto(struct drm_encoder *encoder, u32 clock) | |||
| 240 | /* there are two DTOs selected by DCCG_AUDIO_DTO_SELECT. | 240 | /* there are two DTOs selected by DCCG_AUDIO_DTO_SELECT. |
| 241 | * doesn't matter which one you use. Just use the first one. | 241 | * doesn't matter which one you use. Just use the first one. |
| 242 | */ | 242 | */ |
| 243 | /* XXX: properly calculate this */ | ||
| 244 | /* XXX two dtos; generally use dto0 for hdmi */ | 243 | /* XXX two dtos; generally use dto0 for hdmi */ |
| 245 | /* Express [24MHz / target pixel clock] as an exact rational | 244 | /* Express [24MHz / target pixel clock] as an exact rational |
| 246 | * number (coefficient of two integer numbers. DCCG_AUDIO_DTOx_PHASE | 245 | * number (coefficient of two integer numbers. DCCG_AUDIO_DTOx_PHASE |
| @@ -250,13 +249,13 @@ void r600_audio_set_dto(struct drm_encoder *encoder, u32 clock) | |||
| 250 | /* according to the reg specs, this should DCE3.2 only, but in | 249 | /* according to the reg specs, this should DCE3.2 only, but in |
| 251 | * practice it seems to cover DCE3.0 as well. | 250 | * practice it seems to cover DCE3.0 as well. |
| 252 | */ | 251 | */ |
| 253 | WREG32(DCCG_AUDIO_DTO0_PHASE, base_rate * 50); | 252 | WREG32(DCCG_AUDIO_DTO0_PHASE, base_rate * 100); |
| 254 | WREG32(DCCG_AUDIO_DTO0_MODULE, clock * 100); | 253 | WREG32(DCCG_AUDIO_DTO0_MODULE, clock * 100); |
| 255 | WREG32(DCCG_AUDIO_DTO_SELECT, 0); /* select DTO0 */ | 254 | WREG32(DCCG_AUDIO_DTO_SELECT, 0); /* select DTO0 */ |
| 256 | } else { | 255 | } else { |
| 257 | /* according to the reg specs, this should be DCE2.0 and DCE3.0 */ | 256 | /* according to the reg specs, this should be DCE2.0 and DCE3.0 */ |
| 258 | WREG32(AUDIO_DTO, AUDIO_DTO_PHASE(base_rate * 50) | | 257 | WREG32(AUDIO_DTO, AUDIO_DTO_PHASE(base_rate / 10) | |
| 259 | AUDIO_DTO_MODULE(clock * 100)); | 258 | AUDIO_DTO_MODULE(clock / 10)); |
| 260 | } | 259 | } |
| 261 | } | 260 | } |
| 262 | 261 | ||
diff --git a/drivers/gpu/drm/radeon/radeon.h b/drivers/gpu/drm/radeon/radeon.h index 1442ce765d48..142ce6cc69f5 100644 --- a/drivers/gpu/drm/radeon/radeon.h +++ b/drivers/gpu/drm/radeon/radeon.h | |||
| @@ -1694,6 +1694,7 @@ struct radeon_device { | |||
| 1694 | int num_crtc; /* number of crtcs */ | 1694 | int num_crtc; /* number of crtcs */ |
| 1695 | struct mutex dc_hw_i2c_mutex; /* display controller hw i2c mutex */ | 1695 | struct mutex dc_hw_i2c_mutex; /* display controller hw i2c mutex */ |
| 1696 | bool audio_enabled; | 1696 | bool audio_enabled; |
| 1697 | bool has_uvd; | ||
| 1697 | struct r600_audio audio_status; /* audio stuff */ | 1698 | struct r600_audio audio_status; /* audio stuff */ |
| 1698 | struct notifier_block acpi_nb; | 1699 | struct notifier_block acpi_nb; |
| 1699 | /* only one userspace can use Hyperz features or CMASK at a time */ | 1700 | /* only one userspace can use Hyperz features or CMASK at a time */ |
| @@ -1838,6 +1839,7 @@ void r100_pll_errata_after_index(struct radeon_device *rdev); | |||
| 1838 | #define ASIC_IS_DCE61(rdev) ((rdev->family >= CHIP_ARUBA) && \ | 1839 | #define ASIC_IS_DCE61(rdev) ((rdev->family >= CHIP_ARUBA) && \ |
| 1839 | (rdev->flags & RADEON_IS_IGP)) | 1840 | (rdev->flags & RADEON_IS_IGP)) |
| 1840 | #define ASIC_IS_DCE64(rdev) ((rdev->family == CHIP_OLAND)) | 1841 | #define ASIC_IS_DCE64(rdev) ((rdev->family == CHIP_OLAND)) |
| 1842 | #define ASIC_IS_NODCE(rdev) ((rdev->family == CHIP_HAINAN)) | ||
| 1841 | 1843 | ||
| 1842 | /* | 1844 | /* |
| 1843 | * BIOS helpers. | 1845 | * BIOS helpers. |
diff --git a/drivers/gpu/drm/radeon/radeon_asic.c b/drivers/gpu/drm/radeon/radeon_asic.c index 6417132c50cf..06b8c19ab19e 100644 --- a/drivers/gpu/drm/radeon/radeon_asic.c +++ b/drivers/gpu/drm/radeon/radeon_asic.c | |||
| @@ -1935,6 +1935,8 @@ int radeon_asic_init(struct radeon_device *rdev) | |||
| 1935 | else | 1935 | else |
| 1936 | rdev->num_crtc = 2; | 1936 | rdev->num_crtc = 2; |
| 1937 | 1937 | ||
| 1938 | rdev->has_uvd = false; | ||
| 1939 | |||
| 1938 | switch (rdev->family) { | 1940 | switch (rdev->family) { |
| 1939 | case CHIP_R100: | 1941 | case CHIP_R100: |
| 1940 | case CHIP_RV100: | 1942 | case CHIP_RV100: |
| @@ -1999,16 +2001,22 @@ int radeon_asic_init(struct radeon_device *rdev) | |||
| 1999 | case CHIP_RV635: | 2001 | case CHIP_RV635: |
| 2000 | case CHIP_RV670: | 2002 | case CHIP_RV670: |
| 2001 | rdev->asic = &r600_asic; | 2003 | rdev->asic = &r600_asic; |
| 2004 | if (rdev->family == CHIP_R600) | ||
| 2005 | rdev->has_uvd = false; | ||
| 2006 | else | ||
| 2007 | rdev->has_uvd = true; | ||
| 2002 | break; | 2008 | break; |
| 2003 | case CHIP_RS780: | 2009 | case CHIP_RS780: |
| 2004 | case CHIP_RS880: | 2010 | case CHIP_RS880: |
| 2005 | rdev->asic = &rs780_asic; | 2011 | rdev->asic = &rs780_asic; |
| 2012 | rdev->has_uvd = true; | ||
| 2006 | break; | 2013 | break; |
| 2007 | case CHIP_RV770: | 2014 | case CHIP_RV770: |
| 2008 | case CHIP_RV730: | 2015 | case CHIP_RV730: |
| 2009 | case CHIP_RV710: | 2016 | case CHIP_RV710: |
| 2010 | case CHIP_RV740: | 2017 | case CHIP_RV740: |
| 2011 | rdev->asic = &rv770_asic; | 2018 | rdev->asic = &rv770_asic; |
| 2019 | rdev->has_uvd = true; | ||
| 2012 | break; | 2020 | break; |
| 2013 | case CHIP_CEDAR: | 2021 | case CHIP_CEDAR: |
| 2014 | case CHIP_REDWOOD: | 2022 | case CHIP_REDWOOD: |
| @@ -2021,11 +2029,13 @@ int radeon_asic_init(struct radeon_device *rdev) | |||
| 2021 | else | 2029 | else |
| 2022 | rdev->num_crtc = 6; | 2030 | rdev->num_crtc = 6; |
| 2023 | rdev->asic = &evergreen_asic; | 2031 | rdev->asic = &evergreen_asic; |
| 2032 | rdev->has_uvd = true; | ||
| 2024 | break; | 2033 | break; |
| 2025 | case CHIP_PALM: | 2034 | case CHIP_PALM: |
| 2026 | case CHIP_SUMO: | 2035 | case CHIP_SUMO: |
| 2027 | case CHIP_SUMO2: | 2036 | case CHIP_SUMO2: |
| 2028 | rdev->asic = &sumo_asic; | 2037 | rdev->asic = &sumo_asic; |
| 2038 | rdev->has_uvd = true; | ||
| 2029 | break; | 2039 | break; |
| 2030 | case CHIP_BARTS: | 2040 | case CHIP_BARTS: |
| 2031 | case CHIP_TURKS: | 2041 | case CHIP_TURKS: |
| @@ -2036,27 +2046,37 @@ int radeon_asic_init(struct radeon_device *rdev) | |||
| 2036 | else | 2046 | else |
| 2037 | rdev->num_crtc = 6; | 2047 | rdev->num_crtc = 6; |
| 2038 | rdev->asic = &btc_asic; | 2048 | rdev->asic = &btc_asic; |
| 2049 | rdev->has_uvd = true; | ||
| 2039 | break; | 2050 | break; |
| 2040 | case CHIP_CAYMAN: | 2051 | case CHIP_CAYMAN: |
| 2041 | rdev->asic = &cayman_asic; | 2052 | rdev->asic = &cayman_asic; |
| 2042 | /* set num crtcs */ | 2053 | /* set num crtcs */ |
| 2043 | rdev->num_crtc = 6; | 2054 | rdev->num_crtc = 6; |
| 2055 | rdev->has_uvd = true; | ||
| 2044 | break; | 2056 | break; |
| 2045 | case CHIP_ARUBA: | 2057 | case CHIP_ARUBA: |
| 2046 | rdev->asic = &trinity_asic; | 2058 | rdev->asic = &trinity_asic; |
| 2047 | /* set num crtcs */ | 2059 | /* set num crtcs */ |
| 2048 | rdev->num_crtc = 4; | 2060 | rdev->num_crtc = 4; |
| 2061 | rdev->has_uvd = true; | ||
| 2049 | break; | 2062 | break; |
| 2050 | case CHIP_TAHITI: | 2063 | case CHIP_TAHITI: |
| 2051 | case CHIP_PITCAIRN: | 2064 | case CHIP_PITCAIRN: |
| 2052 | case CHIP_VERDE: | 2065 | case CHIP_VERDE: |
| 2053 | case CHIP_OLAND: | 2066 | case CHIP_OLAND: |
| 2067 | case CHIP_HAINAN: | ||
| 2054 | rdev->asic = &si_asic; | 2068 | rdev->asic = &si_asic; |
| 2055 | /* set num crtcs */ | 2069 | /* set num crtcs */ |
| 2056 | if (rdev->family == CHIP_OLAND) | 2070 | if (rdev->family == CHIP_HAINAN) |
| 2071 | rdev->num_crtc = 0; | ||
| 2072 | else if (rdev->family == CHIP_OLAND) | ||
| 2057 | rdev->num_crtc = 2; | 2073 | rdev->num_crtc = 2; |
| 2058 | else | 2074 | else |
| 2059 | rdev->num_crtc = 6; | 2075 | rdev->num_crtc = 6; |
| 2076 | if (rdev->family == CHIP_HAINAN) | ||
| 2077 | rdev->has_uvd = false; | ||
| 2078 | else | ||
| 2079 | rdev->has_uvd = true; | ||
| 2060 | break; | 2080 | break; |
| 2061 | default: | 2081 | default: |
| 2062 | /* FIXME: not supported yet */ | 2082 | /* FIXME: not supported yet */ |
diff --git a/drivers/gpu/drm/radeon/radeon_bios.c b/drivers/gpu/drm/radeon/radeon_bios.c index fa3c56fba294..061b227dae0c 100644 --- a/drivers/gpu/drm/radeon/radeon_bios.c +++ b/drivers/gpu/drm/radeon/radeon_bios.c | |||
| @@ -244,24 +244,28 @@ static bool ni_read_disabled_bios(struct radeon_device *rdev) | |||
| 244 | 244 | ||
| 245 | /* enable the rom */ | 245 | /* enable the rom */ |
| 246 | WREG32(R600_BUS_CNTL, (bus_cntl & ~R600_BIOS_ROM_DIS)); | 246 | WREG32(R600_BUS_CNTL, (bus_cntl & ~R600_BIOS_ROM_DIS)); |
| 247 | /* Disable VGA mode */ | 247 | if (!ASIC_IS_NODCE(rdev)) { |
| 248 | WREG32(AVIVO_D1VGA_CONTROL, | 248 | /* Disable VGA mode */ |
| 249 | (d1vga_control & ~(AVIVO_DVGA_CONTROL_MODE_ENABLE | | 249 | WREG32(AVIVO_D1VGA_CONTROL, |
| 250 | AVIVO_DVGA_CONTROL_TIMING_SELECT))); | 250 | (d1vga_control & ~(AVIVO_DVGA_CONTROL_MODE_ENABLE | |
| 251 | WREG32(AVIVO_D2VGA_CONTROL, | 251 | AVIVO_DVGA_CONTROL_TIMING_SELECT))); |
| 252 | (d2vga_control & ~(AVIVO_DVGA_CONTROL_MODE_ENABLE | | 252 | WREG32(AVIVO_D2VGA_CONTROL, |
| 253 | AVIVO_DVGA_CONTROL_TIMING_SELECT))); | 253 | (d2vga_control & ~(AVIVO_DVGA_CONTROL_MODE_ENABLE | |
| 254 | WREG32(AVIVO_VGA_RENDER_CONTROL, | 254 | AVIVO_DVGA_CONTROL_TIMING_SELECT))); |
| 255 | (vga_render_control & ~AVIVO_VGA_VSTATUS_CNTL_MASK)); | 255 | WREG32(AVIVO_VGA_RENDER_CONTROL, |
| 256 | (vga_render_control & ~AVIVO_VGA_VSTATUS_CNTL_MASK)); | ||
| 257 | } | ||
| 256 | WREG32(R600_ROM_CNTL, rom_cntl | R600_SCK_OVERWRITE); | 258 | WREG32(R600_ROM_CNTL, rom_cntl | R600_SCK_OVERWRITE); |
| 257 | 259 | ||
| 258 | r = radeon_read_bios(rdev); | 260 | r = radeon_read_bios(rdev); |
| 259 | 261 | ||
| 260 | /* restore regs */ | 262 | /* restore regs */ |
| 261 | WREG32(R600_BUS_CNTL, bus_cntl); | 263 | WREG32(R600_BUS_CNTL, bus_cntl); |
| 262 | WREG32(AVIVO_D1VGA_CONTROL, d1vga_control); | 264 | if (!ASIC_IS_NODCE(rdev)) { |
| 263 | WREG32(AVIVO_D2VGA_CONTROL, d2vga_control); | 265 | WREG32(AVIVO_D1VGA_CONTROL, d1vga_control); |
| 264 | WREG32(AVIVO_VGA_RENDER_CONTROL, vga_render_control); | 266 | WREG32(AVIVO_D2VGA_CONTROL, d2vga_control); |
| 267 | WREG32(AVIVO_VGA_RENDER_CONTROL, vga_render_control); | ||
| 268 | } | ||
| 265 | WREG32(R600_ROM_CNTL, rom_cntl); | 269 | WREG32(R600_ROM_CNTL, rom_cntl); |
| 266 | return r; | 270 | return r; |
| 267 | } | 271 | } |
diff --git a/drivers/gpu/drm/radeon/radeon_device.c b/drivers/gpu/drm/radeon/radeon_device.c index a8f608903989..c2c59fb1ea01 100644 --- a/drivers/gpu/drm/radeon/radeon_device.c +++ b/drivers/gpu/drm/radeon/radeon_device.c | |||
| @@ -94,6 +94,7 @@ static const char radeon_family_name[][16] = { | |||
| 94 | "PITCAIRN", | 94 | "PITCAIRN", |
| 95 | "VERDE", | 95 | "VERDE", |
| 96 | "OLAND", | 96 | "OLAND", |
| 97 | "HAINAN", | ||
| 97 | "LAST", | 98 | "LAST", |
| 98 | }; | 99 | }; |
| 99 | 100 | ||
diff --git a/drivers/gpu/drm/radeon/radeon_family.h b/drivers/gpu/drm/radeon/radeon_family.h index 2d91123f2759..36e9803b077d 100644 --- a/drivers/gpu/drm/radeon/radeon_family.h +++ b/drivers/gpu/drm/radeon/radeon_family.h | |||
| @@ -92,6 +92,7 @@ enum radeon_family { | |||
| 92 | CHIP_PITCAIRN, | 92 | CHIP_PITCAIRN, |
| 93 | CHIP_VERDE, | 93 | CHIP_VERDE, |
| 94 | CHIP_OLAND, | 94 | CHIP_OLAND, |
| 95 | CHIP_HAINAN, | ||
| 95 | CHIP_LAST, | 96 | CHIP_LAST, |
| 96 | }; | 97 | }; |
| 97 | 98 | ||
diff --git a/drivers/gpu/drm/radeon/radeon_legacy_crtc.c b/drivers/gpu/drm/radeon/radeon_legacy_crtc.c index 6857cb4efb76..7cb178a34a0f 100644 --- a/drivers/gpu/drm/radeon/radeon_legacy_crtc.c +++ b/drivers/gpu/drm/radeon/radeon_legacy_crtc.c | |||
| @@ -1031,11 +1031,9 @@ static int radeon_crtc_mode_set(struct drm_crtc *crtc, | |||
| 1031 | 1031 | ||
| 1032 | static void radeon_crtc_prepare(struct drm_crtc *crtc) | 1032 | static void radeon_crtc_prepare(struct drm_crtc *crtc) |
| 1033 | { | 1033 | { |
| 1034 | struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc); | ||
| 1035 | struct drm_device *dev = crtc->dev; | 1034 | struct drm_device *dev = crtc->dev; |
| 1036 | struct drm_crtc *crtci; | 1035 | struct drm_crtc *crtci; |
| 1037 | 1036 | ||
| 1038 | radeon_crtc->in_mode_set = true; | ||
| 1039 | /* | 1037 | /* |
| 1040 | * The hardware wedges sometimes if you reconfigure one CRTC | 1038 | * The hardware wedges sometimes if you reconfigure one CRTC |
| 1041 | * whilst another is running (see fdo bug #24611). | 1039 | * whilst another is running (see fdo bug #24611). |
| @@ -1046,7 +1044,6 @@ static void radeon_crtc_prepare(struct drm_crtc *crtc) | |||
| 1046 | 1044 | ||
| 1047 | static void radeon_crtc_commit(struct drm_crtc *crtc) | 1045 | static void radeon_crtc_commit(struct drm_crtc *crtc) |
| 1048 | { | 1046 | { |
| 1049 | struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc); | ||
| 1050 | struct drm_device *dev = crtc->dev; | 1047 | struct drm_device *dev = crtc->dev; |
| 1051 | struct drm_crtc *crtci; | 1048 | struct drm_crtc *crtci; |
| 1052 | 1049 | ||
| @@ -1057,7 +1054,6 @@ static void radeon_crtc_commit(struct drm_crtc *crtc) | |||
| 1057 | if (crtci->enabled) | 1054 | if (crtci->enabled) |
| 1058 | radeon_crtc_dpms(crtci, DRM_MODE_DPMS_ON); | 1055 | radeon_crtc_dpms(crtci, DRM_MODE_DPMS_ON); |
| 1059 | } | 1056 | } |
| 1060 | radeon_crtc->in_mode_set = false; | ||
| 1061 | } | 1057 | } |
| 1062 | 1058 | ||
| 1063 | static const struct drm_crtc_helper_funcs legacy_helper_funcs = { | 1059 | static const struct drm_crtc_helper_funcs legacy_helper_funcs = { |
diff --git a/drivers/gpu/drm/radeon/radeon_mode.h b/drivers/gpu/drm/radeon/radeon_mode.h index 44e579e75fd0..69ad4fe224c1 100644 --- a/drivers/gpu/drm/radeon/radeon_mode.h +++ b/drivers/gpu/drm/radeon/radeon_mode.h | |||
| @@ -302,7 +302,6 @@ struct radeon_crtc { | |||
| 302 | u16 lut_r[256], lut_g[256], lut_b[256]; | 302 | u16 lut_r[256], lut_g[256], lut_b[256]; |
| 303 | bool enabled; | 303 | bool enabled; |
| 304 | bool can_tile; | 304 | bool can_tile; |
| 305 | bool in_mode_set; | ||
| 306 | uint32_t crtc_offset; | 305 | uint32_t crtc_offset; |
| 307 | struct drm_gem_object *cursor_bo; | 306 | struct drm_gem_object *cursor_bo; |
| 308 | uint64_t cursor_addr; | 307 | uint64_t cursor_addr; |
diff --git a/drivers/gpu/drm/radeon/radeon_ttm.c b/drivers/gpu/drm/radeon/radeon_ttm.c index 93f760e27a92..6c0ce8915fac 100644 --- a/drivers/gpu/drm/radeon/radeon_ttm.c +++ b/drivers/gpu/drm/radeon/radeon_ttm.c | |||
| @@ -726,7 +726,7 @@ int radeon_ttm_init(struct radeon_device *rdev) | |||
| 726 | return r; | 726 | return r; |
| 727 | } | 727 | } |
| 728 | DRM_INFO("radeon: %uM of VRAM memory ready\n", | 728 | DRM_INFO("radeon: %uM of VRAM memory ready\n", |
| 729 | (unsigned)rdev->mc.real_vram_size / (1024 * 1024)); | 729 | (unsigned) (rdev->mc.real_vram_size / (1024 * 1024))); |
| 730 | r = ttm_bo_init_mm(&rdev->mman.bdev, TTM_PL_TT, | 730 | r = ttm_bo_init_mm(&rdev->mman.bdev, TTM_PL_TT, |
| 731 | rdev->mc.gtt_size >> PAGE_SHIFT); | 731 | rdev->mc.gtt_size >> PAGE_SHIFT); |
| 732 | if (r) { | 732 | if (r) { |
diff --git a/drivers/gpu/drm/radeon/si.c b/drivers/gpu/drm/radeon/si.c index f0b6c2f87c4d..5ffade69af25 100644 --- a/drivers/gpu/drm/radeon/si.c +++ b/drivers/gpu/drm/radeon/si.c | |||
| @@ -60,6 +60,11 @@ MODULE_FIRMWARE("radeon/OLAND_me.bin"); | |||
| 60 | MODULE_FIRMWARE("radeon/OLAND_ce.bin"); | 60 | MODULE_FIRMWARE("radeon/OLAND_ce.bin"); |
| 61 | MODULE_FIRMWARE("radeon/OLAND_mc.bin"); | 61 | MODULE_FIRMWARE("radeon/OLAND_mc.bin"); |
| 62 | MODULE_FIRMWARE("radeon/OLAND_rlc.bin"); | 62 | MODULE_FIRMWARE("radeon/OLAND_rlc.bin"); |
| 63 | MODULE_FIRMWARE("radeon/HAINAN_pfp.bin"); | ||
| 64 | MODULE_FIRMWARE("radeon/HAINAN_me.bin"); | ||
| 65 | MODULE_FIRMWARE("radeon/HAINAN_ce.bin"); | ||
| 66 | MODULE_FIRMWARE("radeon/HAINAN_mc.bin"); | ||
| 67 | MODULE_FIRMWARE("radeon/HAINAN_rlc.bin"); | ||
| 63 | 68 | ||
| 64 | extern int r600_ih_ring_alloc(struct radeon_device *rdev); | 69 | extern int r600_ih_ring_alloc(struct radeon_device *rdev); |
| 65 | extern void r600_ih_ring_fini(struct radeon_device *rdev); | 70 | extern void r600_ih_ring_fini(struct radeon_device *rdev); |
| @@ -265,6 +270,40 @@ static const u32 oland_golden_registers[] = | |||
| 265 | 0x15c0, 0x000c0fc0, 0x000c0400 | 270 | 0x15c0, 0x000c0fc0, 0x000c0400 |
| 266 | }; | 271 | }; |
| 267 | 272 | ||
| 273 | static const u32 hainan_golden_registers[] = | ||
| 274 | { | ||
| 275 | 0x9a10, 0x00010000, 0x00018208, | ||
| 276 | 0x9830, 0xffffffff, 0x00000000, | ||
| 277 | 0x9834, 0xf00fffff, 0x00000400, | ||
| 278 | 0x9838, 0x0002021c, 0x00020200, | ||
| 279 | 0xd0c0, 0xff000fff, 0x00000100, | ||
| 280 | 0xd030, 0x000300c0, 0x00800040, | ||
| 281 | 0xd8c0, 0xff000fff, 0x00000100, | ||
| 282 | 0xd830, 0x000300c0, 0x00800040, | ||
| 283 | 0x2ae4, 0x00073ffe, 0x000022a2, | ||
| 284 | 0x240c, 0x000007ff, 0x00000000, | ||
| 285 | 0x8a14, 0xf000001f, 0x00000007, | ||
| 286 | 0x8b24, 0xffffffff, 0x00ffffff, | ||
| 287 | 0x8b10, 0x0000ff0f, 0x00000000, | ||
| 288 | 0x28a4c, 0x07ffffff, 0x4e000000, | ||
| 289 | 0x28350, 0x3f3f3fff, 0x00000000, | ||
| 290 | 0x30, 0x000000ff, 0x0040, | ||
| 291 | 0x34, 0x00000040, 0x00004040, | ||
| 292 | 0x9100, 0x03e00000, 0x03600000, | ||
| 293 | 0x9060, 0x0000007f, 0x00000020, | ||
| 294 | 0x9508, 0x00010000, 0x00010000, | ||
| 295 | 0xac14, 0x000003ff, 0x000000f1, | ||
| 296 | 0xac10, 0xffffffff, 0x00000000, | ||
| 297 | 0xac0c, 0xffffffff, 0x00003210, | ||
| 298 | 0x88d4, 0x0000001f, 0x00000010, | ||
| 299 | 0x15c0, 0x000c0fc0, 0x000c0400 | ||
| 300 | }; | ||
| 301 | |||
| 302 | static const u32 hainan_golden_registers2[] = | ||
| 303 | { | ||
| 304 | 0x98f8, 0xffffffff, 0x02010001 | ||
| 305 | }; | ||
| 306 | |||
| 268 | static const u32 tahiti_mgcg_cgcg_init[] = | 307 | static const u32 tahiti_mgcg_cgcg_init[] = |
| 269 | { | 308 | { |
| 270 | 0xc400, 0xffffffff, 0xfffffffc, | 309 | 0xc400, 0xffffffff, 0xfffffffc, |
| @@ -673,6 +712,83 @@ static const u32 oland_mgcg_cgcg_init[] = | |||
| 673 | 0xd8c0, 0xfffffff0, 0x00000100 | 712 | 0xd8c0, 0xfffffff0, 0x00000100 |
| 674 | }; | 713 | }; |
| 675 | 714 | ||
| 715 | static const u32 hainan_mgcg_cgcg_init[] = | ||
| 716 | { | ||
| 717 | 0xc400, 0xffffffff, 0xfffffffc, | ||
| 718 | 0x802c, 0xffffffff, 0xe0000000, | ||
| 719 | 0x9a60, 0xffffffff, 0x00000100, | ||
| 720 | 0x92a4, 0xffffffff, 0x00000100, | ||
| 721 | 0xc164, 0xffffffff, 0x00000100, | ||
| 722 | 0x9774, 0xffffffff, 0x00000100, | ||
| 723 | 0x8984, 0xffffffff, 0x06000100, | ||
| 724 | 0x8a18, 0xffffffff, 0x00000100, | ||
| 725 | 0x92a0, 0xffffffff, 0x00000100, | ||
| 726 | 0xc380, 0xffffffff, 0x00000100, | ||
| 727 | 0x8b28, 0xffffffff, 0x00000100, | ||
| 728 | 0x9144, 0xffffffff, 0x00000100, | ||
| 729 | 0x8d88, 0xffffffff, 0x00000100, | ||
| 730 | 0x8d8c, 0xffffffff, 0x00000100, | ||
| 731 | 0x9030, 0xffffffff, 0x00000100, | ||
| 732 | 0x9034, 0xffffffff, 0x00000100, | ||
| 733 | 0x9038, 0xffffffff, 0x00000100, | ||
| 734 | 0x903c, 0xffffffff, 0x00000100, | ||
| 735 | 0xad80, 0xffffffff, 0x00000100, | ||
| 736 | 0xac54, 0xffffffff, 0x00000100, | ||
| 737 | 0x897c, 0xffffffff, 0x06000100, | ||
| 738 | 0x9868, 0xffffffff, 0x00000100, | ||
| 739 | 0x9510, 0xffffffff, 0x00000100, | ||
| 740 | 0xaf04, 0xffffffff, 0x00000100, | ||
| 741 | 0xae04, 0xffffffff, 0x00000100, | ||
| 742 | 0x949c, 0xffffffff, 0x00000100, | ||
| 743 | 0x802c, 0xffffffff, 0xe0000000, | ||
| 744 | 0x9160, 0xffffffff, 0x00010000, | ||
| 745 | 0x9164, 0xffffffff, 0x00030002, | ||
| 746 | 0x9168, 0xffffffff, 0x00040007, | ||
| 747 | 0x916c, 0xffffffff, 0x00060005, | ||
| 748 | 0x9170, 0xffffffff, 0x00090008, | ||
| 749 | 0x9174, 0xffffffff, 0x00020001, | ||
| 750 | 0x9178, 0xffffffff, 0x00040003, | ||
| 751 | 0x917c, 0xffffffff, 0x00000007, | ||
| 752 | 0x9180, 0xffffffff, 0x00060005, | ||
| 753 | 0x9184, 0xffffffff, 0x00090008, | ||
| 754 | 0x9188, 0xffffffff, 0x00030002, | ||
| 755 | 0x918c, 0xffffffff, 0x00050004, | ||
| 756 | 0x9190, 0xffffffff, 0x00000008, | ||
| 757 | 0x9194, 0xffffffff, 0x00070006, | ||
| 758 | 0x9198, 0xffffffff, 0x000a0009, | ||
| 759 | 0x919c, 0xffffffff, 0x00040003, | ||
| 760 | 0x91a0, 0xffffffff, 0x00060005, | ||
| 761 | 0x91a4, 0xffffffff, 0x00000009, | ||
| 762 | 0x91a8, 0xffffffff, 0x00080007, | ||
| 763 | 0x91ac, 0xffffffff, 0x000b000a, | ||
| 764 | 0x91b0, 0xffffffff, 0x00050004, | ||
| 765 | 0x91b4, 0xffffffff, 0x00070006, | ||
| 766 | 0x91b8, 0xffffffff, 0x0008000b, | ||
| 767 | 0x91bc, 0xffffffff, 0x000a0009, | ||
| 768 | 0x91c0, 0xffffffff, 0x000d000c, | ||
| 769 | 0x91c4, 0xffffffff, 0x00060005, | ||
| 770 | 0x91c8, 0xffffffff, 0x00080007, | ||
| 771 | 0x91cc, 0xffffffff, 0x0000000b, | ||
| 772 | 0x91d0, 0xffffffff, 0x000a0009, | ||
| 773 | 0x91d4, 0xffffffff, 0x000d000c, | ||
| 774 | 0x9150, 0xffffffff, 0x96940200, | ||
| 775 | 0x8708, 0xffffffff, 0x00900100, | ||
| 776 | 0xc478, 0xffffffff, 0x00000080, | ||
| 777 | 0xc404, 0xffffffff, 0x0020003f, | ||
| 778 | 0x30, 0xffffffff, 0x0000001c, | ||
| 779 | 0x34, 0x000f0000, 0x000f0000, | ||
| 780 | 0x160c, 0xffffffff, 0x00000100, | ||
| 781 | 0x1024, 0xffffffff, 0x00000100, | ||
| 782 | 0x20a8, 0xffffffff, 0x00000104, | ||
| 783 | 0x264c, 0x000c0000, 0x000c0000, | ||
| 784 | 0x2648, 0x000c0000, 0x000c0000, | ||
| 785 | 0x2f50, 0x00000001, 0x00000001, | ||
| 786 | 0x30cc, 0xc0000fff, 0x00000104, | ||
| 787 | 0xc1e4, 0x00000001, 0x00000001, | ||
| 788 | 0xd0c0, 0xfffffff0, 0x00000100, | ||
| 789 | 0xd8c0, 0xfffffff0, 0x00000100 | ||
| 790 | }; | ||
| 791 | |||
| 676 | static u32 verde_pg_init[] = | 792 | static u32 verde_pg_init[] = |
| 677 | { | 793 | { |
| 678 | 0x353c, 0xffffffff, 0x40000, | 794 | 0x353c, 0xffffffff, 0x40000, |
| @@ -853,6 +969,17 @@ static void si_init_golden_registers(struct radeon_device *rdev) | |||
| 853 | oland_mgcg_cgcg_init, | 969 | oland_mgcg_cgcg_init, |
| 854 | (const u32)ARRAY_SIZE(oland_mgcg_cgcg_init)); | 970 | (const u32)ARRAY_SIZE(oland_mgcg_cgcg_init)); |
| 855 | break; | 971 | break; |
| 972 | case CHIP_HAINAN: | ||
| 973 | radeon_program_register_sequence(rdev, | ||
| 974 | hainan_golden_registers, | ||
| 975 | (const u32)ARRAY_SIZE(hainan_golden_registers)); | ||
| 976 | radeon_program_register_sequence(rdev, | ||
| 977 | hainan_golden_registers2, | ||
| 978 | (const u32)ARRAY_SIZE(hainan_golden_registers2)); | ||
| 979 | radeon_program_register_sequence(rdev, | ||
| 980 | hainan_mgcg_cgcg_init, | ||
| 981 | (const u32)ARRAY_SIZE(hainan_mgcg_cgcg_init)); | ||
| 982 | break; | ||
| 856 | default: | 983 | default: |
| 857 | break; | 984 | break; |
| 858 | } | 985 | } |
| @@ -1062,6 +1189,45 @@ static const u32 oland_io_mc_regs[TAHITI_IO_MC_REGS_SIZE][2] = { | |||
| 1062 | {0x0000009f, 0x00a17730} | 1189 | {0x0000009f, 0x00a17730} |
| 1063 | }; | 1190 | }; |
| 1064 | 1191 | ||
| 1192 | static const u32 hainan_io_mc_regs[TAHITI_IO_MC_REGS_SIZE][2] = { | ||
| 1193 | {0x0000006f, 0x03044000}, | ||
| 1194 | {0x00000070, 0x0480c018}, | ||
| 1195 | {0x00000071, 0x00000040}, | ||
| 1196 | {0x00000072, 0x01000000}, | ||
| 1197 | {0x00000074, 0x000000ff}, | ||
| 1198 | {0x00000075, 0x00143400}, | ||
| 1199 | {0x00000076, 0x08ec0800}, | ||
| 1200 | {0x00000077, 0x040000cc}, | ||
| 1201 | {0x00000079, 0x00000000}, | ||
| 1202 | {0x0000007a, 0x21000409}, | ||
| 1203 | {0x0000007c, 0x00000000}, | ||
| 1204 | {0x0000007d, 0xe8000000}, | ||
| 1205 | {0x0000007e, 0x044408a8}, | ||
| 1206 | {0x0000007f, 0x00000003}, | ||
| 1207 | {0x00000080, 0x00000000}, | ||
| 1208 | {0x00000081, 0x01000000}, | ||
| 1209 | {0x00000082, 0x02000000}, | ||
| 1210 | {0x00000083, 0x00000000}, | ||
| 1211 | {0x00000084, 0xe3f3e4f4}, | ||
| 1212 | {0x00000085, 0x00052024}, | ||
| 1213 | {0x00000087, 0x00000000}, | ||
| 1214 | {0x00000088, 0x66036603}, | ||
| 1215 | {0x00000089, 0x01000000}, | ||
| 1216 | {0x0000008b, 0x1c0a0000}, | ||
| 1217 | {0x0000008c, 0xff010000}, | ||
| 1218 | {0x0000008e, 0xffffefff}, | ||
| 1219 | {0x0000008f, 0xfff3efff}, | ||
| 1220 | {0x00000090, 0xfff3efbf}, | ||
| 1221 | {0x00000094, 0x00101101}, | ||
| 1222 | {0x00000095, 0x00000fff}, | ||
| 1223 | {0x00000096, 0x00116fff}, | ||
| 1224 | {0x00000097, 0x60010000}, | ||
| 1225 | {0x00000098, 0x10010000}, | ||
| 1226 | {0x00000099, 0x00006000}, | ||
| 1227 | {0x0000009a, 0x00001000}, | ||
| 1228 | {0x0000009f, 0x00a07730} | ||
| 1229 | }; | ||
| 1230 | |||
| 1065 | /* ucode loading */ | 1231 | /* ucode loading */ |
| 1066 | static int si_mc_load_microcode(struct radeon_device *rdev) | 1232 | static int si_mc_load_microcode(struct radeon_device *rdev) |
| 1067 | { | 1233 | { |
| @@ -1095,6 +1261,11 @@ static int si_mc_load_microcode(struct radeon_device *rdev) | |||
| 1095 | ucode_size = OLAND_MC_UCODE_SIZE; | 1261 | ucode_size = OLAND_MC_UCODE_SIZE; |
| 1096 | regs_size = TAHITI_IO_MC_REGS_SIZE; | 1262 | regs_size = TAHITI_IO_MC_REGS_SIZE; |
| 1097 | break; | 1263 | break; |
| 1264 | case CHIP_HAINAN: | ||
| 1265 | io_mc_regs = (u32 *)&hainan_io_mc_regs; | ||
| 1266 | ucode_size = OLAND_MC_UCODE_SIZE; | ||
| 1267 | regs_size = TAHITI_IO_MC_REGS_SIZE; | ||
| 1268 | break; | ||
| 1098 | } | 1269 | } |
| 1099 | 1270 | ||
| 1100 | running = RREG32(MC_SEQ_SUP_CNTL) & RUN_MASK; | 1271 | running = RREG32(MC_SEQ_SUP_CNTL) & RUN_MASK; |
| @@ -1198,6 +1369,15 @@ static int si_init_microcode(struct radeon_device *rdev) | |||
| 1198 | rlc_req_size = SI_RLC_UCODE_SIZE * 4; | 1369 | rlc_req_size = SI_RLC_UCODE_SIZE * 4; |
| 1199 | mc_req_size = OLAND_MC_UCODE_SIZE * 4; | 1370 | mc_req_size = OLAND_MC_UCODE_SIZE * 4; |
| 1200 | break; | 1371 | break; |
| 1372 | case CHIP_HAINAN: | ||
| 1373 | chip_name = "HAINAN"; | ||
| 1374 | rlc_chip_name = "HAINAN"; | ||
| 1375 | pfp_req_size = SI_PFP_UCODE_SIZE * 4; | ||
| 1376 | me_req_size = SI_PM4_UCODE_SIZE * 4; | ||
| 1377 | ce_req_size = SI_CE_UCODE_SIZE * 4; | ||
| 1378 | rlc_req_size = SI_RLC_UCODE_SIZE * 4; | ||
| 1379 | mc_req_size = OLAND_MC_UCODE_SIZE * 4; | ||
| 1380 | break; | ||
| 1201 | default: BUG(); | 1381 | default: BUG(); |
| 1202 | } | 1382 | } |
| 1203 | 1383 | ||
| @@ -2003,7 +2183,8 @@ static void si_tiling_mode_table_init(struct radeon_device *rdev) | |||
| 2003 | WREG32(GB_TILE_MODE0 + (reg_offset * 4), gb_tile_moden); | 2183 | WREG32(GB_TILE_MODE0 + (reg_offset * 4), gb_tile_moden); |
| 2004 | } | 2184 | } |
| 2005 | } else if ((rdev->family == CHIP_VERDE) || | 2185 | } else if ((rdev->family == CHIP_VERDE) || |
| 2006 | (rdev->family == CHIP_OLAND)) { | 2186 | (rdev->family == CHIP_OLAND) || |
| 2187 | (rdev->family == CHIP_HAINAN)) { | ||
| 2007 | for (reg_offset = 0; reg_offset < num_tile_mode_states; reg_offset++) { | 2188 | for (reg_offset = 0; reg_offset < num_tile_mode_states; reg_offset++) { |
| 2008 | switch (reg_offset) { | 2189 | switch (reg_offset) { |
| 2009 | case 0: /* non-AA compressed depth or any compressed stencil */ | 2190 | case 0: /* non-AA compressed depth or any compressed stencil */ |
| @@ -2466,6 +2647,23 @@ static void si_gpu_init(struct radeon_device *rdev) | |||
| 2466 | rdev->config.si.sc_earlyz_tile_fifo_size = 0x130; | 2647 | rdev->config.si.sc_earlyz_tile_fifo_size = 0x130; |
| 2467 | gb_addr_config = VERDE_GB_ADDR_CONFIG_GOLDEN; | 2648 | gb_addr_config = VERDE_GB_ADDR_CONFIG_GOLDEN; |
| 2468 | break; | 2649 | break; |
| 2650 | case CHIP_HAINAN: | ||
| 2651 | rdev->config.si.max_shader_engines = 1; | ||
| 2652 | rdev->config.si.max_tile_pipes = 4; | ||
| 2653 | rdev->config.si.max_cu_per_sh = 5; | ||
| 2654 | rdev->config.si.max_sh_per_se = 1; | ||
| 2655 | rdev->config.si.max_backends_per_se = 1; | ||
| 2656 | rdev->config.si.max_texture_channel_caches = 2; | ||
| 2657 | rdev->config.si.max_gprs = 256; | ||
| 2658 | rdev->config.si.max_gs_threads = 16; | ||
| 2659 | rdev->config.si.max_hw_contexts = 8; | ||
| 2660 | |||
| 2661 | rdev->config.si.sc_prim_fifo_size_frontend = 0x20; | ||
| 2662 | rdev->config.si.sc_prim_fifo_size_backend = 0x40; | ||
| 2663 | rdev->config.si.sc_hiz_tile_fifo_size = 0x30; | ||
| 2664 | rdev->config.si.sc_earlyz_tile_fifo_size = 0x130; | ||
| 2665 | gb_addr_config = HAINAN_GB_ADDR_CONFIG_GOLDEN; | ||
| 2666 | break; | ||
| 2469 | } | 2667 | } |
| 2470 | 2668 | ||
| 2471 | /* Initialize HDP */ | 2669 | /* Initialize HDP */ |
| @@ -2559,9 +2757,11 @@ static void si_gpu_init(struct radeon_device *rdev) | |||
| 2559 | WREG32(HDP_ADDR_CONFIG, gb_addr_config); | 2757 | WREG32(HDP_ADDR_CONFIG, gb_addr_config); |
| 2560 | WREG32(DMA_TILING_CONFIG + DMA0_REGISTER_OFFSET, gb_addr_config); | 2758 | WREG32(DMA_TILING_CONFIG + DMA0_REGISTER_OFFSET, gb_addr_config); |
| 2561 | WREG32(DMA_TILING_CONFIG + DMA1_REGISTER_OFFSET, gb_addr_config); | 2759 | WREG32(DMA_TILING_CONFIG + DMA1_REGISTER_OFFSET, gb_addr_config); |
| 2562 | WREG32(UVD_UDEC_ADDR_CONFIG, gb_addr_config); | 2760 | if (rdev->has_uvd) { |
| 2563 | WREG32(UVD_UDEC_DB_ADDR_CONFIG, gb_addr_config); | 2761 | WREG32(UVD_UDEC_ADDR_CONFIG, gb_addr_config); |
| 2564 | WREG32(UVD_UDEC_DBW_ADDR_CONFIG, gb_addr_config); | 2762 | WREG32(UVD_UDEC_DB_ADDR_CONFIG, gb_addr_config); |
| 2763 | WREG32(UVD_UDEC_DBW_ADDR_CONFIG, gb_addr_config); | ||
| 2764 | } | ||
| 2565 | 2765 | ||
| 2566 | si_tiling_mode_table_init(rdev); | 2766 | si_tiling_mode_table_init(rdev); |
| 2567 | 2767 | ||
| @@ -3304,8 +3504,9 @@ static void si_mc_program(struct radeon_device *rdev) | |||
| 3304 | if (radeon_mc_wait_for_idle(rdev)) { | 3504 | if (radeon_mc_wait_for_idle(rdev)) { |
| 3305 | dev_warn(rdev->dev, "Wait for MC idle timedout !\n"); | 3505 | dev_warn(rdev->dev, "Wait for MC idle timedout !\n"); |
| 3306 | } | 3506 | } |
| 3307 | /* Lockout access through VGA aperture*/ | 3507 | if (!ASIC_IS_NODCE(rdev)) |
| 3308 | WREG32(VGA_HDP_CONTROL, VGA_MEMORY_DISABLE); | 3508 | /* Lockout access through VGA aperture*/ |
| 3509 | WREG32(VGA_HDP_CONTROL, VGA_MEMORY_DISABLE); | ||
| 3309 | /* Update configuration */ | 3510 | /* Update configuration */ |
| 3310 | WREG32(MC_VM_SYSTEM_APERTURE_LOW_ADDR, | 3511 | WREG32(MC_VM_SYSTEM_APERTURE_LOW_ADDR, |
| 3311 | rdev->mc.vram_start >> 12); | 3512 | rdev->mc.vram_start >> 12); |
| @@ -3327,9 +3528,11 @@ static void si_mc_program(struct radeon_device *rdev) | |||
| 3327 | dev_warn(rdev->dev, "Wait for MC idle timedout !\n"); | 3528 | dev_warn(rdev->dev, "Wait for MC idle timedout !\n"); |
| 3328 | } | 3529 | } |
| 3329 | evergreen_mc_resume(rdev, &save); | 3530 | evergreen_mc_resume(rdev, &save); |
| 3330 | /* we need to own VRAM, so turn off the VGA renderer here | 3531 | if (!ASIC_IS_NODCE(rdev)) { |
| 3331 | * to stop it overwriting our objects */ | 3532 | /* we need to own VRAM, so turn off the VGA renderer here |
| 3332 | rv515_vga_render_disable(rdev); | 3533 | * to stop it overwriting our objects */ |
| 3534 | rv515_vga_render_disable(rdev); | ||
| 3535 | } | ||
| 3333 | } | 3536 | } |
| 3334 | 3537 | ||
| 3335 | static void si_vram_gtt_location(struct radeon_device *rdev, | 3538 | static void si_vram_gtt_location(struct radeon_device *rdev, |
| @@ -3397,8 +3600,8 @@ static int si_mc_init(struct radeon_device *rdev) | |||
| 3397 | rdev->mc.aper_base = pci_resource_start(rdev->pdev, 0); | 3600 | rdev->mc.aper_base = pci_resource_start(rdev->pdev, 0); |
| 3398 | rdev->mc.aper_size = pci_resource_len(rdev->pdev, 0); | 3601 | rdev->mc.aper_size = pci_resource_len(rdev->pdev, 0); |
| 3399 | /* size in MB on si */ | 3602 | /* size in MB on si */ |
| 3400 | rdev->mc.mc_vram_size = RREG32(CONFIG_MEMSIZE) * 1024 * 1024; | 3603 | rdev->mc.mc_vram_size = RREG32(CONFIG_MEMSIZE) * 1024ULL * 1024ULL; |
| 3401 | rdev->mc.real_vram_size = RREG32(CONFIG_MEMSIZE) * 1024 * 1024; | 3604 | rdev->mc.real_vram_size = RREG32(CONFIG_MEMSIZE) * 1024ULL * 1024ULL; |
| 3402 | rdev->mc.visible_vram_size = rdev->mc.aper_size; | 3605 | rdev->mc.visible_vram_size = rdev->mc.aper_size; |
| 3403 | si_vram_gtt_location(rdev, &rdev->mc); | 3606 | si_vram_gtt_location(rdev, &rdev->mc); |
| 3404 | radeon_update_bandwidth_info(rdev); | 3607 | radeon_update_bandwidth_info(rdev); |
| @@ -4251,8 +4454,10 @@ static void si_disable_interrupt_state(struct radeon_device *rdev) | |||
| 4251 | tmp = RREG32(DMA_CNTL + DMA1_REGISTER_OFFSET) & ~TRAP_ENABLE; | 4454 | tmp = RREG32(DMA_CNTL + DMA1_REGISTER_OFFSET) & ~TRAP_ENABLE; |
| 4252 | WREG32(DMA_CNTL + DMA1_REGISTER_OFFSET, tmp); | 4455 | WREG32(DMA_CNTL + DMA1_REGISTER_OFFSET, tmp); |
| 4253 | WREG32(GRBM_INT_CNTL, 0); | 4456 | WREG32(GRBM_INT_CNTL, 0); |
| 4254 | WREG32(INT_MASK + EVERGREEN_CRTC0_REGISTER_OFFSET, 0); | 4457 | if (rdev->num_crtc >= 2) { |
| 4255 | WREG32(INT_MASK + EVERGREEN_CRTC1_REGISTER_OFFSET, 0); | 4458 | WREG32(INT_MASK + EVERGREEN_CRTC0_REGISTER_OFFSET, 0); |
| 4459 | WREG32(INT_MASK + EVERGREEN_CRTC1_REGISTER_OFFSET, 0); | ||
| 4460 | } | ||
| 4256 | if (rdev->num_crtc >= 4) { | 4461 | if (rdev->num_crtc >= 4) { |
| 4257 | WREG32(INT_MASK + EVERGREEN_CRTC2_REGISTER_OFFSET, 0); | 4462 | WREG32(INT_MASK + EVERGREEN_CRTC2_REGISTER_OFFSET, 0); |
| 4258 | WREG32(INT_MASK + EVERGREEN_CRTC3_REGISTER_OFFSET, 0); | 4463 | WREG32(INT_MASK + EVERGREEN_CRTC3_REGISTER_OFFSET, 0); |
| @@ -4262,8 +4467,10 @@ static void si_disable_interrupt_state(struct radeon_device *rdev) | |||
| 4262 | WREG32(INT_MASK + EVERGREEN_CRTC5_REGISTER_OFFSET, 0); | 4467 | WREG32(INT_MASK + EVERGREEN_CRTC5_REGISTER_OFFSET, 0); |
| 4263 | } | 4468 | } |
| 4264 | 4469 | ||
| 4265 | WREG32(GRPH_INT_CONTROL + EVERGREEN_CRTC0_REGISTER_OFFSET, 0); | 4470 | if (rdev->num_crtc >= 2) { |
| 4266 | WREG32(GRPH_INT_CONTROL + EVERGREEN_CRTC1_REGISTER_OFFSET, 0); | 4471 | WREG32(GRPH_INT_CONTROL + EVERGREEN_CRTC0_REGISTER_OFFSET, 0); |
| 4472 | WREG32(GRPH_INT_CONTROL + EVERGREEN_CRTC1_REGISTER_OFFSET, 0); | ||
| 4473 | } | ||
| 4267 | if (rdev->num_crtc >= 4) { | 4474 | if (rdev->num_crtc >= 4) { |
| 4268 | WREG32(GRPH_INT_CONTROL + EVERGREEN_CRTC2_REGISTER_OFFSET, 0); | 4475 | WREG32(GRPH_INT_CONTROL + EVERGREEN_CRTC2_REGISTER_OFFSET, 0); |
| 4269 | WREG32(GRPH_INT_CONTROL + EVERGREEN_CRTC3_REGISTER_OFFSET, 0); | 4476 | WREG32(GRPH_INT_CONTROL + EVERGREEN_CRTC3_REGISTER_OFFSET, 0); |
| @@ -4273,21 +4480,22 @@ static void si_disable_interrupt_state(struct radeon_device *rdev) | |||
| 4273 | WREG32(GRPH_INT_CONTROL + EVERGREEN_CRTC5_REGISTER_OFFSET, 0); | 4480 | WREG32(GRPH_INT_CONTROL + EVERGREEN_CRTC5_REGISTER_OFFSET, 0); |
| 4274 | } | 4481 | } |
| 4275 | 4482 | ||
| 4276 | WREG32(DACA_AUTODETECT_INT_CONTROL, 0); | 4483 | if (!ASIC_IS_NODCE(rdev)) { |
| 4277 | 4484 | WREG32(DACA_AUTODETECT_INT_CONTROL, 0); | |
| 4278 | tmp = RREG32(DC_HPD1_INT_CONTROL) & DC_HPDx_INT_POLARITY; | ||
| 4279 | WREG32(DC_HPD1_INT_CONTROL, tmp); | ||
| 4280 | tmp = RREG32(DC_HPD2_INT_CONTROL) & DC_HPDx_INT_POLARITY; | ||
| 4281 | WREG32(DC_HPD2_INT_CONTROL, tmp); | ||
| 4282 | tmp = RREG32(DC_HPD3_INT_CONTROL) & DC_HPDx_INT_POLARITY; | ||
| 4283 | WREG32(DC_HPD3_INT_CONTROL, tmp); | ||
| 4284 | tmp = RREG32(DC_HPD4_INT_CONTROL) & DC_HPDx_INT_POLARITY; | ||
| 4285 | WREG32(DC_HPD4_INT_CONTROL, tmp); | ||
| 4286 | tmp = RREG32(DC_HPD5_INT_CONTROL) & DC_HPDx_INT_POLARITY; | ||
| 4287 | WREG32(DC_HPD5_INT_CONTROL, tmp); | ||
| 4288 | tmp = RREG32(DC_HPD6_INT_CONTROL) & DC_HPDx_INT_POLARITY; | ||
| 4289 | WREG32(DC_HPD6_INT_CONTROL, tmp); | ||
| 4290 | 4485 | ||
| 4486 | tmp = RREG32(DC_HPD1_INT_CONTROL) & DC_HPDx_INT_POLARITY; | ||
| 4487 | WREG32(DC_HPD1_INT_CONTROL, tmp); | ||
| 4488 | tmp = RREG32(DC_HPD2_INT_CONTROL) & DC_HPDx_INT_POLARITY; | ||
| 4489 | WREG32(DC_HPD2_INT_CONTROL, tmp); | ||
| 4490 | tmp = RREG32(DC_HPD3_INT_CONTROL) & DC_HPDx_INT_POLARITY; | ||
| 4491 | WREG32(DC_HPD3_INT_CONTROL, tmp); | ||
| 4492 | tmp = RREG32(DC_HPD4_INT_CONTROL) & DC_HPDx_INT_POLARITY; | ||
| 4493 | WREG32(DC_HPD4_INT_CONTROL, tmp); | ||
| 4494 | tmp = RREG32(DC_HPD5_INT_CONTROL) & DC_HPDx_INT_POLARITY; | ||
| 4495 | WREG32(DC_HPD5_INT_CONTROL, tmp); | ||
| 4496 | tmp = RREG32(DC_HPD6_INT_CONTROL) & DC_HPDx_INT_POLARITY; | ||
| 4497 | WREG32(DC_HPD6_INT_CONTROL, tmp); | ||
| 4498 | } | ||
| 4291 | } | 4499 | } |
| 4292 | 4500 | ||
| 4293 | static int si_irq_init(struct radeon_device *rdev) | 4501 | static int si_irq_init(struct radeon_device *rdev) |
| @@ -4366,7 +4574,7 @@ int si_irq_set(struct radeon_device *rdev) | |||
| 4366 | u32 cp_int_cntl = CNTX_BUSY_INT_ENABLE | CNTX_EMPTY_INT_ENABLE; | 4574 | u32 cp_int_cntl = CNTX_BUSY_INT_ENABLE | CNTX_EMPTY_INT_ENABLE; |
| 4367 | u32 cp_int_cntl1 = 0, cp_int_cntl2 = 0; | 4575 | u32 cp_int_cntl1 = 0, cp_int_cntl2 = 0; |
| 4368 | u32 crtc1 = 0, crtc2 = 0, crtc3 = 0, crtc4 = 0, crtc5 = 0, crtc6 = 0; | 4576 | u32 crtc1 = 0, crtc2 = 0, crtc3 = 0, crtc4 = 0, crtc5 = 0, crtc6 = 0; |
| 4369 | u32 hpd1, hpd2, hpd3, hpd4, hpd5, hpd6; | 4577 | u32 hpd1 = 0, hpd2 = 0, hpd3 = 0, hpd4 = 0, hpd5 = 0, hpd6 = 0; |
| 4370 | u32 grbm_int_cntl = 0; | 4578 | u32 grbm_int_cntl = 0; |
| 4371 | u32 grph1 = 0, grph2 = 0, grph3 = 0, grph4 = 0, grph5 = 0, grph6 = 0; | 4579 | u32 grph1 = 0, grph2 = 0, grph3 = 0, grph4 = 0, grph5 = 0, grph6 = 0; |
| 4372 | u32 dma_cntl, dma_cntl1; | 4580 | u32 dma_cntl, dma_cntl1; |
| @@ -4383,12 +4591,14 @@ int si_irq_set(struct radeon_device *rdev) | |||
| 4383 | return 0; | 4591 | return 0; |
| 4384 | } | 4592 | } |
| 4385 | 4593 | ||
| 4386 | hpd1 = RREG32(DC_HPD1_INT_CONTROL) & ~DC_HPDx_INT_EN; | 4594 | if (!ASIC_IS_NODCE(rdev)) { |
| 4387 | hpd2 = RREG32(DC_HPD2_INT_CONTROL) & ~DC_HPDx_INT_EN; | 4595 | hpd1 = RREG32(DC_HPD1_INT_CONTROL) & ~DC_HPDx_INT_EN; |
| 4388 | hpd3 = RREG32(DC_HPD3_INT_CONTROL) & ~DC_HPDx_INT_EN; | 4596 | hpd2 = RREG32(DC_HPD2_INT_CONTROL) & ~DC_HPDx_INT_EN; |
| 4389 | hpd4 = RREG32(DC_HPD4_INT_CONTROL) & ~DC_HPDx_INT_EN; | 4597 | hpd3 = RREG32(DC_HPD3_INT_CONTROL) & ~DC_HPDx_INT_EN; |
| 4390 | hpd5 = RREG32(DC_HPD5_INT_CONTROL) & ~DC_HPDx_INT_EN; | 4598 | hpd4 = RREG32(DC_HPD4_INT_CONTROL) & ~DC_HPDx_INT_EN; |
| 4391 | hpd6 = RREG32(DC_HPD6_INT_CONTROL) & ~DC_HPDx_INT_EN; | 4599 | hpd5 = RREG32(DC_HPD5_INT_CONTROL) & ~DC_HPDx_INT_EN; |
| 4600 | hpd6 = RREG32(DC_HPD6_INT_CONTROL) & ~DC_HPDx_INT_EN; | ||
| 4601 | } | ||
| 4392 | 4602 | ||
| 4393 | dma_cntl = RREG32(DMA_CNTL + DMA0_REGISTER_OFFSET) & ~TRAP_ENABLE; | 4603 | dma_cntl = RREG32(DMA_CNTL + DMA0_REGISTER_OFFSET) & ~TRAP_ENABLE; |
| 4394 | dma_cntl1 = RREG32(DMA_CNTL + DMA1_REGISTER_OFFSET) & ~TRAP_ENABLE; | 4604 | dma_cntl1 = RREG32(DMA_CNTL + DMA1_REGISTER_OFFSET) & ~TRAP_ENABLE; |
| @@ -4479,8 +4689,10 @@ int si_irq_set(struct radeon_device *rdev) | |||
| 4479 | 4689 | ||
| 4480 | WREG32(GRBM_INT_CNTL, grbm_int_cntl); | 4690 | WREG32(GRBM_INT_CNTL, grbm_int_cntl); |
| 4481 | 4691 | ||
| 4482 | WREG32(INT_MASK + EVERGREEN_CRTC0_REGISTER_OFFSET, crtc1); | 4692 | if (rdev->num_crtc >= 2) { |
| 4483 | WREG32(INT_MASK + EVERGREEN_CRTC1_REGISTER_OFFSET, crtc2); | 4693 | WREG32(INT_MASK + EVERGREEN_CRTC0_REGISTER_OFFSET, crtc1); |
| 4694 | WREG32(INT_MASK + EVERGREEN_CRTC1_REGISTER_OFFSET, crtc2); | ||
| 4695 | } | ||
| 4484 | if (rdev->num_crtc >= 4) { | 4696 | if (rdev->num_crtc >= 4) { |
| 4485 | WREG32(INT_MASK + EVERGREEN_CRTC2_REGISTER_OFFSET, crtc3); | 4697 | WREG32(INT_MASK + EVERGREEN_CRTC2_REGISTER_OFFSET, crtc3); |
| 4486 | WREG32(INT_MASK + EVERGREEN_CRTC3_REGISTER_OFFSET, crtc4); | 4698 | WREG32(INT_MASK + EVERGREEN_CRTC3_REGISTER_OFFSET, crtc4); |
| @@ -4490,8 +4702,10 @@ int si_irq_set(struct radeon_device *rdev) | |||
| 4490 | WREG32(INT_MASK + EVERGREEN_CRTC5_REGISTER_OFFSET, crtc6); | 4702 | WREG32(INT_MASK + EVERGREEN_CRTC5_REGISTER_OFFSET, crtc6); |
| 4491 | } | 4703 | } |
| 4492 | 4704 | ||
| 4493 | WREG32(GRPH_INT_CONTROL + EVERGREEN_CRTC0_REGISTER_OFFSET, grph1); | 4705 | if (rdev->num_crtc >= 2) { |
| 4494 | WREG32(GRPH_INT_CONTROL + EVERGREEN_CRTC1_REGISTER_OFFSET, grph2); | 4706 | WREG32(GRPH_INT_CONTROL + EVERGREEN_CRTC0_REGISTER_OFFSET, grph1); |
| 4707 | WREG32(GRPH_INT_CONTROL + EVERGREEN_CRTC1_REGISTER_OFFSET, grph2); | ||
| 4708 | } | ||
| 4495 | if (rdev->num_crtc >= 4) { | 4709 | if (rdev->num_crtc >= 4) { |
| 4496 | WREG32(GRPH_INT_CONTROL + EVERGREEN_CRTC2_REGISTER_OFFSET, grph3); | 4710 | WREG32(GRPH_INT_CONTROL + EVERGREEN_CRTC2_REGISTER_OFFSET, grph3); |
| 4497 | WREG32(GRPH_INT_CONTROL + EVERGREEN_CRTC3_REGISTER_OFFSET, grph4); | 4711 | WREG32(GRPH_INT_CONTROL + EVERGREEN_CRTC3_REGISTER_OFFSET, grph4); |
| @@ -4501,12 +4715,14 @@ int si_irq_set(struct radeon_device *rdev) | |||
| 4501 | WREG32(GRPH_INT_CONTROL + EVERGREEN_CRTC5_REGISTER_OFFSET, grph6); | 4715 | WREG32(GRPH_INT_CONTROL + EVERGREEN_CRTC5_REGISTER_OFFSET, grph6); |
| 4502 | } | 4716 | } |
| 4503 | 4717 | ||
| 4504 | WREG32(DC_HPD1_INT_CONTROL, hpd1); | 4718 | if (!ASIC_IS_NODCE(rdev)) { |
| 4505 | WREG32(DC_HPD2_INT_CONTROL, hpd2); | 4719 | WREG32(DC_HPD1_INT_CONTROL, hpd1); |
| 4506 | WREG32(DC_HPD3_INT_CONTROL, hpd3); | 4720 | WREG32(DC_HPD2_INT_CONTROL, hpd2); |
| 4507 | WREG32(DC_HPD4_INT_CONTROL, hpd4); | 4721 | WREG32(DC_HPD3_INT_CONTROL, hpd3); |
| 4508 | WREG32(DC_HPD5_INT_CONTROL, hpd5); | 4722 | WREG32(DC_HPD4_INT_CONTROL, hpd4); |
| 4509 | WREG32(DC_HPD6_INT_CONTROL, hpd6); | 4723 | WREG32(DC_HPD5_INT_CONTROL, hpd5); |
| 4724 | WREG32(DC_HPD6_INT_CONTROL, hpd6); | ||
| 4725 | } | ||
| 4510 | 4726 | ||
| 4511 | return 0; | 4727 | return 0; |
| 4512 | } | 4728 | } |
| @@ -4515,6 +4731,9 @@ static inline void si_irq_ack(struct radeon_device *rdev) | |||
| 4515 | { | 4731 | { |
| 4516 | u32 tmp; | 4732 | u32 tmp; |
| 4517 | 4733 | ||
| 4734 | if (ASIC_IS_NODCE(rdev)) | ||
| 4735 | return; | ||
| 4736 | |||
| 4518 | rdev->irq.stat_regs.evergreen.disp_int = RREG32(DISP_INTERRUPT_STATUS); | 4737 | rdev->irq.stat_regs.evergreen.disp_int = RREG32(DISP_INTERRUPT_STATUS); |
| 4519 | rdev->irq.stat_regs.evergreen.disp_int_cont = RREG32(DISP_INTERRUPT_STATUS_CONTINUE); | 4738 | rdev->irq.stat_regs.evergreen.disp_int_cont = RREG32(DISP_INTERRUPT_STATUS_CONTINUE); |
| 4520 | rdev->irq.stat_regs.evergreen.disp_int_cont2 = RREG32(DISP_INTERRUPT_STATUS_CONTINUE2); | 4739 | rdev->irq.stat_regs.evergreen.disp_int_cont2 = RREG32(DISP_INTERRUPT_STATUS_CONTINUE2); |
| @@ -5118,15 +5337,17 @@ static int si_startup(struct radeon_device *rdev) | |||
| 5118 | return r; | 5337 | return r; |
| 5119 | } | 5338 | } |
| 5120 | 5339 | ||
| 5121 | r = rv770_uvd_resume(rdev); | 5340 | if (rdev->has_uvd) { |
| 5122 | if (!r) { | 5341 | r = rv770_uvd_resume(rdev); |
| 5123 | r = radeon_fence_driver_start_ring(rdev, | 5342 | if (!r) { |
| 5124 | R600_RING_TYPE_UVD_INDEX); | 5343 | r = radeon_fence_driver_start_ring(rdev, |
| 5344 | R600_RING_TYPE_UVD_INDEX); | ||
| 5345 | if (r) | ||
| 5346 | dev_err(rdev->dev, "UVD fences init error (%d).\n", r); | ||
| 5347 | } | ||
| 5125 | if (r) | 5348 | if (r) |
| 5126 | dev_err(rdev->dev, "UVD fences init error (%d).\n", r); | 5349 | rdev->ring[R600_RING_TYPE_UVD_INDEX].ring_size = 0; |
| 5127 | } | 5350 | } |
| 5128 | if (r) | ||
| 5129 | rdev->ring[R600_RING_TYPE_UVD_INDEX].ring_size = 0; | ||
| 5130 | 5351 | ||
| 5131 | /* Enable IRQ */ | 5352 | /* Enable IRQ */ |
| 5132 | r = si_irq_init(rdev); | 5353 | r = si_irq_init(rdev); |
| @@ -5185,16 +5406,18 @@ static int si_startup(struct radeon_device *rdev) | |||
| 5185 | if (r) | 5406 | if (r) |
| 5186 | return r; | 5407 | return r; |
| 5187 | 5408 | ||
| 5188 | ring = &rdev->ring[R600_RING_TYPE_UVD_INDEX]; | 5409 | if (rdev->has_uvd) { |
| 5189 | if (ring->ring_size) { | 5410 | ring = &rdev->ring[R600_RING_TYPE_UVD_INDEX]; |
| 5190 | r = radeon_ring_init(rdev, ring, ring->ring_size, | 5411 | if (ring->ring_size) { |
| 5191 | R600_WB_UVD_RPTR_OFFSET, | 5412 | r = radeon_ring_init(rdev, ring, ring->ring_size, |
| 5192 | UVD_RBC_RB_RPTR, UVD_RBC_RB_WPTR, | 5413 | R600_WB_UVD_RPTR_OFFSET, |
| 5193 | 0, 0xfffff, RADEON_CP_PACKET2); | 5414 | UVD_RBC_RB_RPTR, UVD_RBC_RB_WPTR, |
| 5194 | if (!r) | 5415 | 0, 0xfffff, RADEON_CP_PACKET2); |
| 5195 | r = r600_uvd_init(rdev); | 5416 | if (!r) |
| 5196 | if (r) | 5417 | r = r600_uvd_init(rdev); |
| 5197 | DRM_ERROR("radeon: failed initializing UVD (%d).\n", r); | 5418 | if (r) |
| 5419 | DRM_ERROR("radeon: failed initializing UVD (%d).\n", r); | ||
| 5420 | } | ||
| 5198 | } | 5421 | } |
| 5199 | 5422 | ||
| 5200 | r = radeon_ib_pool_init(rdev); | 5423 | r = radeon_ib_pool_init(rdev); |
| @@ -5243,8 +5466,10 @@ int si_suspend(struct radeon_device *rdev) | |||
| 5243 | radeon_vm_manager_fini(rdev); | 5466 | radeon_vm_manager_fini(rdev); |
| 5244 | si_cp_enable(rdev, false); | 5467 | si_cp_enable(rdev, false); |
| 5245 | cayman_dma_stop(rdev); | 5468 | cayman_dma_stop(rdev); |
| 5246 | r600_uvd_rbc_stop(rdev); | 5469 | if (rdev->has_uvd) { |
| 5247 | radeon_uvd_suspend(rdev); | 5470 | r600_uvd_rbc_stop(rdev); |
| 5471 | radeon_uvd_suspend(rdev); | ||
| 5472 | } | ||
| 5248 | si_irq_suspend(rdev); | 5473 | si_irq_suspend(rdev); |
| 5249 | radeon_wb_disable(rdev); | 5474 | radeon_wb_disable(rdev); |
| 5250 | si_pcie_gart_disable(rdev); | 5475 | si_pcie_gart_disable(rdev); |
| @@ -5332,11 +5557,13 @@ int si_init(struct radeon_device *rdev) | |||
| 5332 | ring->ring_obj = NULL; | 5557 | ring->ring_obj = NULL; |
| 5333 | r600_ring_init(rdev, ring, 64 * 1024); | 5558 | r600_ring_init(rdev, ring, 64 * 1024); |
| 5334 | 5559 | ||
| 5335 | r = radeon_uvd_init(rdev); | 5560 | if (rdev->has_uvd) { |
| 5336 | if (!r) { | 5561 | r = radeon_uvd_init(rdev); |
| 5337 | ring = &rdev->ring[R600_RING_TYPE_UVD_INDEX]; | 5562 | if (!r) { |
| 5338 | ring->ring_obj = NULL; | 5563 | ring = &rdev->ring[R600_RING_TYPE_UVD_INDEX]; |
| 5339 | r600_ring_init(rdev, ring, 4096); | 5564 | ring->ring_obj = NULL; |
| 5565 | r600_ring_init(rdev, ring, 4096); | ||
| 5566 | } | ||
| 5340 | } | 5567 | } |
| 5341 | 5568 | ||
| 5342 | rdev->ih.ring_obj = NULL; | 5569 | rdev->ih.ring_obj = NULL; |
| @@ -5384,7 +5611,8 @@ void si_fini(struct radeon_device *rdev) | |||
| 5384 | radeon_vm_manager_fini(rdev); | 5611 | radeon_vm_manager_fini(rdev); |
| 5385 | radeon_ib_pool_fini(rdev); | 5612 | radeon_ib_pool_fini(rdev); |
| 5386 | radeon_irq_kms_fini(rdev); | 5613 | radeon_irq_kms_fini(rdev); |
| 5387 | radeon_uvd_fini(rdev); | 5614 | if (rdev->has_uvd) |
| 5615 | radeon_uvd_fini(rdev); | ||
| 5388 | si_pcie_gart_fini(rdev); | 5616 | si_pcie_gart_fini(rdev); |
| 5389 | r600_vram_scratch_fini(rdev); | 5617 | r600_vram_scratch_fini(rdev); |
| 5390 | radeon_gem_fini(rdev); | 5618 | radeon_gem_fini(rdev); |
diff --git a/drivers/gpu/drm/radeon/sid.h b/drivers/gpu/drm/radeon/sid.h index 222877ba6cf5..8f2d7d4f9b28 100644 --- a/drivers/gpu/drm/radeon/sid.h +++ b/drivers/gpu/drm/radeon/sid.h | |||
| @@ -28,6 +28,7 @@ | |||
| 28 | 28 | ||
| 29 | #define TAHITI_GB_ADDR_CONFIG_GOLDEN 0x12011003 | 29 | #define TAHITI_GB_ADDR_CONFIG_GOLDEN 0x12011003 |
| 30 | #define VERDE_GB_ADDR_CONFIG_GOLDEN 0x12010002 | 30 | #define VERDE_GB_ADDR_CONFIG_GOLDEN 0x12010002 |
| 31 | #define HAINAN_GB_ADDR_CONFIG_GOLDEN 0x02010001 | ||
| 31 | 32 | ||
| 32 | /* discrete uvd clocks */ | 33 | /* discrete uvd clocks */ |
| 33 | #define CG_UPLL_FUNC_CNTL 0x634 | 34 | #define CG_UPLL_FUNC_CNTL 0x634 |
diff --git a/drivers/hv/channel_mgmt.c b/drivers/hv/channel_mgmt.c index bad8128b283a..21ef68934a20 100644 --- a/drivers/hv/channel_mgmt.c +++ b/drivers/hv/channel_mgmt.c | |||
| @@ -329,7 +329,7 @@ static u32 get_vp_index(uuid_le *type_guid) | |||
| 329 | return 0; | 329 | return 0; |
| 330 | } | 330 | } |
| 331 | cur_cpu = (++next_vp % max_cpus); | 331 | cur_cpu = (++next_vp % max_cpus); |
| 332 | return cur_cpu; | 332 | return hv_context.vp_index[cur_cpu]; |
| 333 | } | 333 | } |
| 334 | 334 | ||
| 335 | /* | 335 | /* |
diff --git a/drivers/i2c/busses/i2c-designware-core.c b/drivers/i2c/busses/i2c-designware-core.c index 21fbb340ad66..c41ca6354fc5 100644 --- a/drivers/i2c/busses/i2c-designware-core.c +++ b/drivers/i2c/busses/i2c-designware-core.c | |||
| @@ -383,7 +383,8 @@ static void i2c_dw_xfer_init(struct dw_i2c_dev *dev) | |||
| 383 | /* Enable the adapter */ | 383 | /* Enable the adapter */ |
| 384 | __i2c_dw_enable(dev, true); | 384 | __i2c_dw_enable(dev, true); |
| 385 | 385 | ||
| 386 | /* Enable interrupts */ | 386 | /* Clear and enable interrupts */ |
| 387 | i2c_dw_clear_int(dev); | ||
| 387 | dw_writel(dev, DW_IC_INTR_DEFAULT_MASK, DW_IC_INTR_MASK); | 388 | dw_writel(dev, DW_IC_INTR_DEFAULT_MASK, DW_IC_INTR_MASK); |
| 388 | } | 389 | } |
| 389 | 390 | ||
| @@ -448,8 +449,14 @@ i2c_dw_xfer_msg(struct dw_i2c_dev *dev) | |||
| 448 | cmd |= BIT(9); | 449 | cmd |= BIT(9); |
| 449 | 450 | ||
| 450 | if (msgs[dev->msg_write_idx].flags & I2C_M_RD) { | 451 | if (msgs[dev->msg_write_idx].flags & I2C_M_RD) { |
| 452 | |||
| 453 | /* avoid rx buffer overrun */ | ||
| 454 | if (rx_limit - dev->rx_outstanding <= 0) | ||
| 455 | break; | ||
| 456 | |||
| 451 | dw_writel(dev, cmd | 0x100, DW_IC_DATA_CMD); | 457 | dw_writel(dev, cmd | 0x100, DW_IC_DATA_CMD); |
| 452 | rx_limit--; | 458 | rx_limit--; |
| 459 | dev->rx_outstanding++; | ||
| 453 | } else | 460 | } else |
| 454 | dw_writel(dev, cmd | *buf++, DW_IC_DATA_CMD); | 461 | dw_writel(dev, cmd | *buf++, DW_IC_DATA_CMD); |
| 455 | tx_limit--; buf_len--; | 462 | tx_limit--; buf_len--; |
| @@ -502,8 +509,10 @@ i2c_dw_read(struct dw_i2c_dev *dev) | |||
| 502 | 509 | ||
| 503 | rx_valid = dw_readl(dev, DW_IC_RXFLR); | 510 | rx_valid = dw_readl(dev, DW_IC_RXFLR); |
| 504 | 511 | ||
| 505 | for (; len > 0 && rx_valid > 0; len--, rx_valid--) | 512 | for (; len > 0 && rx_valid > 0; len--, rx_valid--) { |
| 506 | *buf++ = dw_readl(dev, DW_IC_DATA_CMD); | 513 | *buf++ = dw_readl(dev, DW_IC_DATA_CMD); |
| 514 | dev->rx_outstanding--; | ||
| 515 | } | ||
| 507 | 516 | ||
| 508 | if (len > 0) { | 517 | if (len > 0) { |
| 509 | dev->status |= STATUS_READ_IN_PROGRESS; | 518 | dev->status |= STATUS_READ_IN_PROGRESS; |
| @@ -561,6 +570,7 @@ i2c_dw_xfer(struct i2c_adapter *adap, struct i2c_msg msgs[], int num) | |||
| 561 | dev->msg_err = 0; | 570 | dev->msg_err = 0; |
| 562 | dev->status = STATUS_IDLE; | 571 | dev->status = STATUS_IDLE; |
| 563 | dev->abort_source = 0; | 572 | dev->abort_source = 0; |
| 573 | dev->rx_outstanding = 0; | ||
| 564 | 574 | ||
| 565 | ret = i2c_dw_wait_bus_not_busy(dev); | 575 | ret = i2c_dw_wait_bus_not_busy(dev); |
| 566 | if (ret < 0) | 576 | if (ret < 0) |
diff --git a/drivers/i2c/busses/i2c-designware-core.h b/drivers/i2c/busses/i2c-designware-core.h index 9c1840ee09c7..e761ad18dd61 100644 --- a/drivers/i2c/busses/i2c-designware-core.h +++ b/drivers/i2c/busses/i2c-designware-core.h | |||
| @@ -60,6 +60,7 @@ | |||
| 60 | * @adapter: i2c subsystem adapter node | 60 | * @adapter: i2c subsystem adapter node |
| 61 | * @tx_fifo_depth: depth of the hardware tx fifo | 61 | * @tx_fifo_depth: depth of the hardware tx fifo |
| 62 | * @rx_fifo_depth: depth of the hardware rx fifo | 62 | * @rx_fifo_depth: depth of the hardware rx fifo |
| 63 | * @rx_outstanding: current master-rx elements in tx fifo | ||
| 63 | */ | 64 | */ |
| 64 | struct dw_i2c_dev { | 65 | struct dw_i2c_dev { |
| 65 | struct device *dev; | 66 | struct device *dev; |
| @@ -88,6 +89,7 @@ struct dw_i2c_dev { | |||
| 88 | u32 master_cfg; | 89 | u32 master_cfg; |
| 89 | unsigned int tx_fifo_depth; | 90 | unsigned int tx_fifo_depth; |
| 90 | unsigned int rx_fifo_depth; | 91 | unsigned int rx_fifo_depth; |
| 92 | int rx_outstanding; | ||
| 91 | }; | 93 | }; |
| 92 | 94 | ||
| 93 | #define ACCESS_SWAP 0x00000001 | 95 | #define ACCESS_SWAP 0x00000001 |
diff --git a/drivers/i2c/busses/i2c-designware-platdrv.c b/drivers/i2c/busses/i2c-designware-platdrv.c index 8ec91335d95a..35b70a1edf57 100644 --- a/drivers/i2c/busses/i2c-designware-platdrv.c +++ b/drivers/i2c/busses/i2c-designware-platdrv.c | |||
| @@ -69,6 +69,7 @@ static int dw_i2c_acpi_configure(struct platform_device *pdev) | |||
| 69 | static const struct acpi_device_id dw_i2c_acpi_match[] = { | 69 | static const struct acpi_device_id dw_i2c_acpi_match[] = { |
| 70 | { "INT33C2", 0 }, | 70 | { "INT33C2", 0 }, |
| 71 | { "INT33C3", 0 }, | 71 | { "INT33C3", 0 }, |
| 72 | { "80860F41", 0 }, | ||
| 72 | { } | 73 | { } |
| 73 | }; | 74 | }; |
| 74 | MODULE_DEVICE_TABLE(acpi, dw_i2c_acpi_match); | 75 | MODULE_DEVICE_TABLE(acpi, dw_i2c_acpi_match); |
diff --git a/drivers/i2c/busses/i2c-i801.c b/drivers/i2c/busses/i2c-i801.c index e1cf2e0e1f23..3a6903f63913 100644 --- a/drivers/i2c/busses/i2c-i801.c +++ b/drivers/i2c/busses/i2c-i801.c | |||
| @@ -231,7 +231,11 @@ static const char *i801_feature_names[] = { | |||
| 231 | 231 | ||
| 232 | static unsigned int disable_features; | 232 | static unsigned int disable_features; |
| 233 | module_param(disable_features, uint, S_IRUGO | S_IWUSR); | 233 | module_param(disable_features, uint, S_IRUGO | S_IWUSR); |
| 234 | MODULE_PARM_DESC(disable_features, "Disable selected driver features"); | 234 | MODULE_PARM_DESC(disable_features, "Disable selected driver features:\n" |
| 235 | "\t\t 0x01 disable SMBus PEC\n" | ||
| 236 | "\t\t 0x02 disable the block buffer\n" | ||
| 237 | "\t\t 0x08 disable the I2C block read functionality\n" | ||
| 238 | "\t\t 0x10 don't use interrupts "); | ||
| 235 | 239 | ||
| 236 | /* Make sure the SMBus host is ready to start transmitting. | 240 | /* Make sure the SMBus host is ready to start transmitting. |
| 237 | Return 0 if it is, -EBUSY if it is not. */ | 241 | Return 0 if it is, -EBUSY if it is not. */ |
diff --git a/drivers/i2c/busses/i2c-mv64xxx.c b/drivers/i2c/busses/i2c-mv64xxx.c index 3bbd65d35a5e..1a3abd6a0bfc 100644 --- a/drivers/i2c/busses/i2c-mv64xxx.c +++ b/drivers/i2c/busses/i2c-mv64xxx.c | |||
| @@ -252,7 +252,7 @@ mv64xxx_i2c_do_action(struct mv64xxx_i2c_data *drv_data) | |||
| 252 | writel(drv_data->cntl_bits, | 252 | writel(drv_data->cntl_bits, |
| 253 | drv_data->reg_base + MV64XXX_I2C_REG_CONTROL); | 253 | drv_data->reg_base + MV64XXX_I2C_REG_CONTROL); |
| 254 | drv_data->block = 0; | 254 | drv_data->block = 0; |
| 255 | wake_up_interruptible(&drv_data->waitq); | 255 | wake_up(&drv_data->waitq); |
| 256 | break; | 256 | break; |
| 257 | 257 | ||
| 258 | case MV64XXX_I2C_ACTION_CONTINUE: | 258 | case MV64XXX_I2C_ACTION_CONTINUE: |
| @@ -300,7 +300,7 @@ mv64xxx_i2c_do_action(struct mv64xxx_i2c_data *drv_data) | |||
| 300 | writel(drv_data->cntl_bits | MV64XXX_I2C_REG_CONTROL_STOP, | 300 | writel(drv_data->cntl_bits | MV64XXX_I2C_REG_CONTROL_STOP, |
| 301 | drv_data->reg_base + MV64XXX_I2C_REG_CONTROL); | 301 | drv_data->reg_base + MV64XXX_I2C_REG_CONTROL); |
| 302 | drv_data->block = 0; | 302 | drv_data->block = 0; |
| 303 | wake_up_interruptible(&drv_data->waitq); | 303 | wake_up(&drv_data->waitq); |
| 304 | break; | 304 | break; |
| 305 | 305 | ||
| 306 | case MV64XXX_I2C_ACTION_INVALID: | 306 | case MV64XXX_I2C_ACTION_INVALID: |
| @@ -315,7 +315,7 @@ mv64xxx_i2c_do_action(struct mv64xxx_i2c_data *drv_data) | |||
| 315 | writel(drv_data->cntl_bits | MV64XXX_I2C_REG_CONTROL_STOP, | 315 | writel(drv_data->cntl_bits | MV64XXX_I2C_REG_CONTROL_STOP, |
| 316 | drv_data->reg_base + MV64XXX_I2C_REG_CONTROL); | 316 | drv_data->reg_base + MV64XXX_I2C_REG_CONTROL); |
| 317 | drv_data->block = 0; | 317 | drv_data->block = 0; |
| 318 | wake_up_interruptible(&drv_data->waitq); | 318 | wake_up(&drv_data->waitq); |
| 319 | break; | 319 | break; |
| 320 | } | 320 | } |
| 321 | } | 321 | } |
| @@ -381,7 +381,7 @@ mv64xxx_i2c_wait_for_completion(struct mv64xxx_i2c_data *drv_data) | |||
| 381 | unsigned long flags; | 381 | unsigned long flags; |
| 382 | char abort = 0; | 382 | char abort = 0; |
| 383 | 383 | ||
| 384 | time_left = wait_event_interruptible_timeout(drv_data->waitq, | 384 | time_left = wait_event_timeout(drv_data->waitq, |
| 385 | !drv_data->block, drv_data->adapter.timeout); | 385 | !drv_data->block, drv_data->adapter.timeout); |
| 386 | 386 | ||
| 387 | spin_lock_irqsave(&drv_data->lock, flags); | 387 | spin_lock_irqsave(&drv_data->lock, flags); |
diff --git a/drivers/i2c/i2c-core.c b/drivers/i2c/i2c-core.c index 6b63cc7eb71e..48e31ed69dbf 100644 --- a/drivers/i2c/i2c-core.c +++ b/drivers/i2c/i2c-core.c | |||
| @@ -892,7 +892,8 @@ i2c_sysfs_delete_device(struct device *dev, struct device_attribute *attr, | |||
| 892 | } | 892 | } |
| 893 | 893 | ||
| 894 | static DEVICE_ATTR(new_device, S_IWUSR, NULL, i2c_sysfs_new_device); | 894 | static DEVICE_ATTR(new_device, S_IWUSR, NULL, i2c_sysfs_new_device); |
| 895 | static DEVICE_ATTR(delete_device, S_IWUSR, NULL, i2c_sysfs_delete_device); | 895 | static DEVICE_ATTR_IGNORE_LOCKDEP(delete_device, S_IWUSR, NULL, |
| 896 | i2c_sysfs_delete_device); | ||
| 896 | 897 | ||
| 897 | static struct attribute *i2c_adapter_attrs[] = { | 898 | static struct attribute *i2c_adapter_attrs[] = { |
| 898 | &dev_attr_name.attr, | 899 | &dev_attr_name.attr, |
diff --git a/drivers/iio/adc/exynos_adc.c b/drivers/iio/adc/exynos_adc.c index 9f3a8ef1fb3e..b3d03d335948 100644 --- a/drivers/iio/adc/exynos_adc.c +++ b/drivers/iio/adc/exynos_adc.c | |||
| @@ -390,8 +390,8 @@ static int exynos_adc_remove(struct platform_device *pdev) | |||
| 390 | #ifdef CONFIG_PM_SLEEP | 390 | #ifdef CONFIG_PM_SLEEP |
| 391 | static int exynos_adc_suspend(struct device *dev) | 391 | static int exynos_adc_suspend(struct device *dev) |
| 392 | { | 392 | { |
| 393 | struct platform_device *pdev = to_platform_device(dev); | 393 | struct iio_dev *indio_dev = dev_get_drvdata(dev); |
| 394 | struct exynos_adc *info = platform_get_drvdata(pdev); | 394 | struct exynos_adc *info = iio_priv(indio_dev); |
| 395 | u32 con; | 395 | u32 con; |
| 396 | 396 | ||
| 397 | if (info->version == ADC_V2) { | 397 | if (info->version == ADC_V2) { |
| @@ -413,8 +413,8 @@ static int exynos_adc_suspend(struct device *dev) | |||
| 413 | 413 | ||
| 414 | static int exynos_adc_resume(struct device *dev) | 414 | static int exynos_adc_resume(struct device *dev) |
| 415 | { | 415 | { |
| 416 | struct platform_device *pdev = to_platform_device(dev); | 416 | struct iio_dev *indio_dev = dev_get_drvdata(dev); |
| 417 | struct exynos_adc *info = platform_get_drvdata(pdev); | 417 | struct exynos_adc *info = iio_priv(indio_dev); |
| 418 | int ret; | 418 | int ret; |
| 419 | 419 | ||
| 420 | ret = regulator_enable(info->vdd); | 420 | ret = regulator_enable(info->vdd); |
diff --git a/drivers/iio/common/st_sensors/st_sensors_core.c b/drivers/iio/common/st_sensors/st_sensors_core.c index bd33473f8e38..ed9bc8ae9330 100644 --- a/drivers/iio/common/st_sensors/st_sensors_core.c +++ b/drivers/iio/common/st_sensors/st_sensors_core.c | |||
| @@ -312,6 +312,8 @@ int st_sensors_read_info_raw(struct iio_dev *indio_dev, | |||
| 312 | goto read_error; | 312 | goto read_error; |
| 313 | 313 | ||
| 314 | *val = *val >> ch->scan_type.shift; | 314 | *val = *val >> ch->scan_type.shift; |
| 315 | |||
| 316 | err = st_sensors_set_enable(indio_dev, false); | ||
| 315 | } | 317 | } |
| 316 | mutex_unlock(&indio_dev->mlock); | 318 | mutex_unlock(&indio_dev->mlock); |
| 317 | 319 | ||
diff --git a/drivers/iio/dac/Kconfig b/drivers/iio/dac/Kconfig index f4a6f0838327..b61160bd935e 100644 --- a/drivers/iio/dac/Kconfig +++ b/drivers/iio/dac/Kconfig | |||
| @@ -5,7 +5,7 @@ menu "Digital to analog converters" | |||
| 5 | 5 | ||
| 6 | config AD5064 | 6 | config AD5064 |
| 7 | tristate "Analog Devices AD5064 and similar multi-channel DAC driver" | 7 | tristate "Analog Devices AD5064 and similar multi-channel DAC driver" |
| 8 | depends on (SPI_MASTER || I2C) | 8 | depends on (SPI_MASTER && I2C!=m) || I2C |
| 9 | help | 9 | help |
| 10 | Say yes here to build support for Analog Devices AD5024, AD5025, AD5044, | 10 | Say yes here to build support for Analog Devices AD5024, AD5025, AD5044, |
| 11 | AD5045, AD5064, AD5064-1, AD5065, AD5628, AD5629R, AD5648, AD5666, AD5668, | 11 | AD5045, AD5064, AD5064-1, AD5065, AD5628, AD5629R, AD5648, AD5666, AD5668, |
| @@ -27,7 +27,7 @@ config AD5360 | |||
| 27 | 27 | ||
| 28 | config AD5380 | 28 | config AD5380 |
| 29 | tristate "Analog Devices AD5380/81/82/83/84/90/91/92 DAC driver" | 29 | tristate "Analog Devices AD5380/81/82/83/84/90/91/92 DAC driver" |
| 30 | depends on (SPI_MASTER || I2C) | 30 | depends on (SPI_MASTER && I2C!=m) || I2C |
| 31 | select REGMAP_I2C if I2C | 31 | select REGMAP_I2C if I2C |
| 32 | select REGMAP_SPI if SPI_MASTER | 32 | select REGMAP_SPI if SPI_MASTER |
| 33 | help | 33 | help |
| @@ -57,7 +57,7 @@ config AD5624R_SPI | |||
| 57 | 57 | ||
| 58 | config AD5446 | 58 | config AD5446 |
| 59 | tristate "Analog Devices AD5446 and similar single channel DACs driver" | 59 | tristate "Analog Devices AD5446 and similar single channel DACs driver" |
| 60 | depends on (SPI_MASTER || I2C) | 60 | depends on (SPI_MASTER && I2C!=m) || I2C |
| 61 | help | 61 | help |
| 62 | Say yes here to build support for Analog Devices AD5300, AD5301, AD5310, | 62 | Say yes here to build support for Analog Devices AD5300, AD5301, AD5310, |
| 63 | AD5311, AD5320, AD5321, AD5444, AD5446, AD5450, AD5451, AD5452, AD5453, | 63 | AD5311, AD5320, AD5321, AD5444, AD5446, AD5450, AD5451, AD5452, AD5453, |
diff --git a/drivers/input/tablet/wacom_wac.c b/drivers/input/tablet/wacom_wac.c index 0bfd8cf25200..5c68e4486845 100644 --- a/drivers/input/tablet/wacom_wac.c +++ b/drivers/input/tablet/wacom_wac.c | |||
| @@ -342,10 +342,10 @@ static int wacom_intuos_inout(struct wacom_wac *wacom) | |||
| 342 | wacom->id[idx] = (data[2] << 4) | (data[3] >> 4) | | 342 | wacom->id[idx] = (data[2] << 4) | (data[3] >> 4) | |
| 343 | ((data[7] & 0x0f) << 20) | ((data[8] & 0xf0) << 12); | 343 | ((data[7] & 0x0f) << 20) | ((data[8] & 0xf0) << 12); |
| 344 | 344 | ||
| 345 | switch (wacom->id[idx] & 0xfffff) { | 345 | switch (wacom->id[idx]) { |
| 346 | case 0x812: /* Inking pen */ | 346 | case 0x812: /* Inking pen */ |
| 347 | case 0x801: /* Intuos3 Inking pen */ | 347 | case 0x801: /* Intuos3 Inking pen */ |
| 348 | case 0x20802: /* Intuos4 Inking Pen */ | 348 | case 0x120802: /* Intuos4/5 Inking Pen */ |
| 349 | case 0x012: | 349 | case 0x012: |
| 350 | wacom->tool[idx] = BTN_TOOL_PENCIL; | 350 | wacom->tool[idx] = BTN_TOOL_PENCIL; |
| 351 | break; | 351 | break; |
| @@ -356,11 +356,13 @@ static int wacom_intuos_inout(struct wacom_wac *wacom) | |||
| 356 | case 0x823: /* Intuos3 Grip Pen */ | 356 | case 0x823: /* Intuos3 Grip Pen */ |
| 357 | case 0x813: /* Intuos3 Classic Pen */ | 357 | case 0x813: /* Intuos3 Classic Pen */ |
| 358 | case 0x885: /* Intuos3 Marker Pen */ | 358 | case 0x885: /* Intuos3 Marker Pen */ |
| 359 | case 0x802: /* Intuos4 General Pen */ | 359 | case 0x802: /* Intuos4/5 13HD/24HD General Pen */ |
| 360 | case 0x804: /* Intuos4 Marker Pen */ | 360 | case 0x804: /* Intuos4/5 13HD/24HD Marker Pen */ |
| 361 | case 0x40802: /* Intuos4 Classic Pen */ | ||
| 362 | case 0x18802: /* DTH2242 Grip Pen */ | ||
| 363 | case 0x022: | 361 | case 0x022: |
| 362 | case 0x100804: /* Intuos4/5 13HD/24HD Art Pen */ | ||
| 363 | case 0x140802: /* Intuos4/5 13HD/24HD Classic Pen */ | ||
| 364 | case 0x160802: /* Cintiq 13HD Pro Pen */ | ||
| 365 | case 0x180802: /* DTH2242 Pen */ | ||
| 364 | wacom->tool[idx] = BTN_TOOL_PEN; | 366 | wacom->tool[idx] = BTN_TOOL_PEN; |
| 365 | break; | 367 | break; |
| 366 | 368 | ||
| @@ -391,10 +393,14 @@ static int wacom_intuos_inout(struct wacom_wac *wacom) | |||
| 391 | case 0x82b: /* Intuos3 Grip Pen Eraser */ | 393 | case 0x82b: /* Intuos3 Grip Pen Eraser */ |
| 392 | case 0x81b: /* Intuos3 Classic Pen Eraser */ | 394 | case 0x81b: /* Intuos3 Classic Pen Eraser */ |
| 393 | case 0x91b: /* Intuos3 Airbrush Eraser */ | 395 | case 0x91b: /* Intuos3 Airbrush Eraser */ |
| 394 | case 0x80c: /* Intuos4 Marker Pen Eraser */ | 396 | case 0x80c: /* Intuos4/5 13HD/24HD Marker Pen Eraser */ |
| 395 | case 0x80a: /* Intuos4 General Pen Eraser */ | 397 | case 0x80a: /* Intuos4/5 13HD/24HD General Pen Eraser */ |
| 396 | case 0x4080a: /* Intuos4 Classic Pen Eraser */ | 398 | case 0x90a: /* Intuos4/5 13HD/24HD Airbrush Eraser */ |
| 397 | case 0x90a: /* Intuos4 Airbrush Eraser */ | 399 | case 0x14080a: /* Intuos4/5 13HD/24HD Classic Pen Eraser */ |
| 400 | case 0x10090a: /* Intuos4/5 13HD/24HD Airbrush Eraser */ | ||
| 401 | case 0x10080c: /* Intuos4/5 13HD/24HD Art Pen Eraser */ | ||
| 402 | case 0x16080a: /* Cintiq 13HD Pro Pen Eraser */ | ||
| 403 | case 0x18080a: /* DTH2242 Eraser */ | ||
| 398 | wacom->tool[idx] = BTN_TOOL_RUBBER; | 404 | wacom->tool[idx] = BTN_TOOL_RUBBER; |
| 399 | break; | 405 | break; |
| 400 | 406 | ||
| @@ -402,7 +408,8 @@ static int wacom_intuos_inout(struct wacom_wac *wacom) | |||
| 402 | case 0x912: | 408 | case 0x912: |
| 403 | case 0x112: | 409 | case 0x112: |
| 404 | case 0x913: /* Intuos3 Airbrush */ | 410 | case 0x913: /* Intuos3 Airbrush */ |
| 405 | case 0x902: /* Intuos4 Airbrush */ | 411 | case 0x902: /* Intuos4/5 13HD/24HD Airbrush */ |
| 412 | case 0x100902: /* Intuos4/5 13HD/24HD Airbrush */ | ||
| 406 | wacom->tool[idx] = BTN_TOOL_AIRBRUSH; | 413 | wacom->tool[idx] = BTN_TOOL_AIRBRUSH; |
| 407 | break; | 414 | break; |
| 408 | 415 | ||
| @@ -533,10 +540,8 @@ static int wacom_intuos_irq(struct wacom_wac *wacom) | |||
| 533 | input_report_key(input, BTN_8, (data[3] & 0x80)); | 540 | input_report_key(input, BTN_8, (data[3] & 0x80)); |
| 534 | } | 541 | } |
| 535 | if (data[1] | (data[2] & 0x01) | data[3]) { | 542 | if (data[1] | (data[2] & 0x01) | data[3]) { |
| 536 | input_report_key(input, wacom->tool[1], 1); | ||
| 537 | input_report_abs(input, ABS_MISC, PAD_DEVICE_ID); | 543 | input_report_abs(input, ABS_MISC, PAD_DEVICE_ID); |
| 538 | } else { | 544 | } else { |
| 539 | input_report_key(input, wacom->tool[1], 0); | ||
| 540 | input_report_abs(input, ABS_MISC, 0); | 545 | input_report_abs(input, ABS_MISC, 0); |
| 541 | } | 546 | } |
| 542 | } else if (features->type == DTK) { | 547 | } else if (features->type == DTK) { |
| @@ -546,6 +551,26 @@ static int wacom_intuos_irq(struct wacom_wac *wacom) | |||
| 546 | input_report_key(input, BTN_3, (data[6] & 0x08)); | 551 | input_report_key(input, BTN_3, (data[6] & 0x08)); |
| 547 | input_report_key(input, BTN_4, (data[6] & 0x10)); | 552 | input_report_key(input, BTN_4, (data[6] & 0x10)); |
| 548 | input_report_key(input, BTN_5, (data[6] & 0x20)); | 553 | input_report_key(input, BTN_5, (data[6] & 0x20)); |
| 554 | if (data[6] & 0x3f) { | ||
| 555 | input_report_abs(input, ABS_MISC, PAD_DEVICE_ID); | ||
| 556 | } else { | ||
| 557 | input_report_abs(input, ABS_MISC, 0); | ||
| 558 | } | ||
| 559 | } else if (features->type == WACOM_13HD) { | ||
| 560 | input_report_key(input, BTN_0, (data[3] & 0x01)); | ||
| 561 | input_report_key(input, BTN_1, (data[4] & 0x01)); | ||
| 562 | input_report_key(input, BTN_2, (data[4] & 0x02)); | ||
| 563 | input_report_key(input, BTN_3, (data[4] & 0x04)); | ||
| 564 | input_report_key(input, BTN_4, (data[4] & 0x08)); | ||
| 565 | input_report_key(input, BTN_5, (data[4] & 0x10)); | ||
| 566 | input_report_key(input, BTN_6, (data[4] & 0x20)); | ||
| 567 | input_report_key(input, BTN_7, (data[4] & 0x40)); | ||
| 568 | input_report_key(input, BTN_8, (data[4] & 0x80)); | ||
| 569 | if ((data[3] & 0x01) | data[4]) { | ||
| 570 | input_report_abs(input, ABS_MISC, PAD_DEVICE_ID); | ||
| 571 | } else { | ||
| 572 | input_report_abs(input, ABS_MISC, 0); | ||
| 573 | } | ||
| 549 | } else if (features->type == WACOM_24HD) { | 574 | } else if (features->type == WACOM_24HD) { |
| 550 | input_report_key(input, BTN_0, (data[6] & 0x01)); | 575 | input_report_key(input, BTN_0, (data[6] & 0x01)); |
| 551 | input_report_key(input, BTN_1, (data[6] & 0x02)); | 576 | input_report_key(input, BTN_1, (data[6] & 0x02)); |
| @@ -590,10 +615,8 @@ static int wacom_intuos_irq(struct wacom_wac *wacom) | |||
| 590 | } | 615 | } |
| 591 | 616 | ||
| 592 | if (data[1] | data[2] | (data[3] & 0x1f) | data[4] | data[6] | data[8]) { | 617 | if (data[1] | data[2] | (data[3] & 0x1f) | data[4] | data[6] | data[8]) { |
| 593 | input_report_key(input, wacom->tool[1], 1); | ||
| 594 | input_report_abs(input, ABS_MISC, PAD_DEVICE_ID); | 618 | input_report_abs(input, ABS_MISC, PAD_DEVICE_ID); |
| 595 | } else { | 619 | } else { |
| 596 | input_report_key(input, wacom->tool[1], 0); | ||
| 597 | input_report_abs(input, ABS_MISC, 0); | 620 | input_report_abs(input, ABS_MISC, 0); |
| 598 | } | 621 | } |
| 599 | } else if (features->type >= INTUOS5S && features->type <= INTUOS5L) { | 622 | } else if (features->type >= INTUOS5S && features->type <= INTUOS5L) { |
| @@ -618,10 +641,8 @@ static int wacom_intuos_irq(struct wacom_wac *wacom) | |||
| 618 | } | 641 | } |
| 619 | 642 | ||
| 620 | if (data[2] | (data[3] & 0x01) | data[4] | data[5]) { | 643 | if (data[2] | (data[3] & 0x01) | data[4] | data[5]) { |
| 621 | input_report_key(input, wacom->tool[1], 1); | ||
| 622 | input_report_abs(input, ABS_MISC, PAD_DEVICE_ID); | 644 | input_report_abs(input, ABS_MISC, PAD_DEVICE_ID); |
| 623 | } else { | 645 | } else { |
| 624 | input_report_key(input, wacom->tool[1], 0); | ||
| 625 | input_report_abs(input, ABS_MISC, 0); | 646 | input_report_abs(input, ABS_MISC, 0); |
| 626 | } | 647 | } |
| 627 | } else { | 648 | } else { |
| @@ -668,10 +689,8 @@ static int wacom_intuos_irq(struct wacom_wac *wacom) | |||
| 668 | if ((data[5] & 0x1f) | data[6] | (data[1] & 0x1f) | | 689 | if ((data[5] & 0x1f) | data[6] | (data[1] & 0x1f) | |
| 669 | data[2] | (data[3] & 0x1f) | data[4] | data[8] | | 690 | data[2] | (data[3] & 0x1f) | data[4] | data[8] | |
| 670 | (data[7] & 0x01)) { | 691 | (data[7] & 0x01)) { |
| 671 | input_report_key(input, wacom->tool[1], 1); | ||
| 672 | input_report_abs(input, ABS_MISC, PAD_DEVICE_ID); | 692 | input_report_abs(input, ABS_MISC, PAD_DEVICE_ID); |
| 673 | } else { | 693 | } else { |
| 674 | input_report_key(input, wacom->tool[1], 0); | ||
| 675 | input_report_abs(input, ABS_MISC, 0); | 694 | input_report_abs(input, ABS_MISC, 0); |
| 676 | } | 695 | } |
| 677 | } | 696 | } |
| @@ -1301,6 +1320,7 @@ void wacom_wac_irq(struct wacom_wac *wacom_wac, size_t len) | |||
| 1301 | case INTUOS4L: | 1320 | case INTUOS4L: |
| 1302 | case CINTIQ: | 1321 | case CINTIQ: |
| 1303 | case WACOM_BEE: | 1322 | case WACOM_BEE: |
| 1323 | case WACOM_13HD: | ||
| 1304 | case WACOM_21UX2: | 1324 | case WACOM_21UX2: |
| 1305 | case WACOM_22HD: | 1325 | case WACOM_22HD: |
| 1306 | case WACOM_24HD: | 1326 | case WACOM_24HD: |
| @@ -1530,15 +1550,15 @@ int wacom_setup_input_capabilities(struct input_dev *input_dev, | |||
| 1530 | __set_bit(KEY_PROG1, input_dev->keybit); | 1550 | __set_bit(KEY_PROG1, input_dev->keybit); |
| 1531 | __set_bit(KEY_PROG2, input_dev->keybit); | 1551 | __set_bit(KEY_PROG2, input_dev->keybit); |
| 1532 | __set_bit(KEY_PROG3, input_dev->keybit); | 1552 | __set_bit(KEY_PROG3, input_dev->keybit); |
| 1553 | |||
| 1554 | input_set_abs_params(input_dev, ABS_Z, -900, 899, 0, 0); | ||
| 1555 | input_set_abs_params(input_dev, ABS_THROTTLE, 0, 71, 0, 0); | ||
| 1533 | /* fall through */ | 1556 | /* fall through */ |
| 1534 | 1557 | ||
| 1535 | case DTK: | 1558 | case DTK: |
| 1536 | for (i = 0; i < 6; i++) | 1559 | for (i = 0; i < 6; i++) |
| 1537 | __set_bit(BTN_0 + i, input_dev->keybit); | 1560 | __set_bit(BTN_0 + i, input_dev->keybit); |
| 1538 | 1561 | ||
| 1539 | input_set_abs_params(input_dev, ABS_Z, -900, 899, 0, 0); | ||
| 1540 | input_set_abs_params(input_dev, ABS_THROTTLE, 0, 71, 0, 0); | ||
| 1541 | |||
| 1542 | __set_bit(INPUT_PROP_DIRECT, input_dev->propbit); | 1562 | __set_bit(INPUT_PROP_DIRECT, input_dev->propbit); |
| 1543 | 1563 | ||
| 1544 | wacom_setup_cintiq(wacom_wac); | 1564 | wacom_setup_cintiq(wacom_wac); |
| @@ -1579,6 +1599,15 @@ int wacom_setup_input_capabilities(struct input_dev *input_dev, | |||
| 1579 | wacom_setup_cintiq(wacom_wac); | 1599 | wacom_setup_cintiq(wacom_wac); |
| 1580 | break; | 1600 | break; |
| 1581 | 1601 | ||
| 1602 | case WACOM_13HD: | ||
| 1603 | for (i = 0; i < 9; i++) | ||
| 1604 | __set_bit(BTN_0 + i, input_dev->keybit); | ||
| 1605 | |||
| 1606 | input_set_abs_params(input_dev, ABS_Z, -900, 899, 0, 0); | ||
| 1607 | __set_bit(INPUT_PROP_DIRECT, input_dev->propbit); | ||
| 1608 | wacom_setup_cintiq(wacom_wac); | ||
| 1609 | break; | ||
| 1610 | |||
| 1582 | case INTUOS3: | 1611 | case INTUOS3: |
| 1583 | case INTUOS3L: | 1612 | case INTUOS3L: |
| 1584 | __set_bit(BTN_4, input_dev->keybit); | 1613 | __set_bit(BTN_4, input_dev->keybit); |
| @@ -1950,6 +1979,9 @@ static const struct wacom_features wacom_features_0xC5 = | |||
| 1950 | static const struct wacom_features wacom_features_0xC6 = | 1979 | static const struct wacom_features wacom_features_0xC6 = |
| 1951 | { "Wacom Cintiq 12WX", WACOM_PKGLEN_INTUOS, 53020, 33440, 1023, | 1980 | { "Wacom Cintiq 12WX", WACOM_PKGLEN_INTUOS, 53020, 33440, 1023, |
| 1952 | 63, WACOM_BEE, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES }; | 1981 | 63, WACOM_BEE, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES }; |
| 1982 | static const struct wacom_features wacom_features_0x304 = | ||
| 1983 | { "Wacom Cintiq 13HD", WACOM_PKGLEN_INTUOS, 59552, 33848, 1023, | ||
| 1984 | 63, WACOM_13HD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES }; | ||
| 1953 | static const struct wacom_features wacom_features_0xC7 = | 1985 | static const struct wacom_features wacom_features_0xC7 = |
| 1954 | { "Wacom DTU1931", WACOM_PKGLEN_GRAPHIRE, 37832, 30305, 511, | 1986 | { "Wacom DTU1931", WACOM_PKGLEN_GRAPHIRE, 37832, 30305, 511, |
| 1955 | 0, PL, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; | 1987 | 0, PL, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
| @@ -1959,6 +1991,9 @@ static const struct wacom_features wacom_features_0xCE = | |||
| 1959 | static const struct wacom_features wacom_features_0xF0 = | 1991 | static const struct wacom_features wacom_features_0xF0 = |
| 1960 | { "Wacom DTU1631", WACOM_PKGLEN_GRAPHIRE, 34623, 19553, 511, | 1992 | { "Wacom DTU1631", WACOM_PKGLEN_GRAPHIRE, 34623, 19553, 511, |
| 1961 | 0, DTU, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; | 1993 | 0, DTU, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
| 1994 | static const struct wacom_features wacom_features_0x57 = | ||
| 1995 | { "Wacom DTK2241", WACOM_PKGLEN_INTUOS, 95840, 54260, 2047, | ||
| 1996 | 63, DTK, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES}; | ||
| 1962 | static const struct wacom_features wacom_features_0x59 = /* Pen */ | 1997 | static const struct wacom_features wacom_features_0x59 = /* Pen */ |
| 1963 | { "Wacom DTH2242", WACOM_PKGLEN_INTUOS, 95840, 54260, 2047, | 1998 | { "Wacom DTH2242", WACOM_PKGLEN_INTUOS, 95840, 54260, 2047, |
| 1964 | 63, DTK, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, | 1999 | 63, DTK, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, |
| @@ -1972,6 +2007,12 @@ static const struct wacom_features wacom_features_0xCC = | |||
| 1972 | static const struct wacom_features wacom_features_0xFA = | 2007 | static const struct wacom_features wacom_features_0xFA = |
| 1973 | { "Wacom Cintiq 22HD", WACOM_PKGLEN_INTUOS, 95840, 54260, 2047, | 2008 | { "Wacom Cintiq 22HD", WACOM_PKGLEN_INTUOS, 95840, 54260, 2047, |
| 1974 | 63, WACOM_22HD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES }; | 2009 | 63, WACOM_22HD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES }; |
| 2010 | static const struct wacom_features wacom_features_0x5B = | ||
| 2011 | { "Wacom Cintiq 22HDT", WACOM_PKGLEN_INTUOS, 95840, 54260, 2047, | ||
| 2012 | 63, WACOM_24HD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x5e }; | ||
| 2013 | static const struct wacom_features wacom_features_0x5E = | ||
| 2014 | { "Wacom Cintiq 22HDT", .type = WACOM_24HDT, | ||
| 2015 | .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x5b, .touch_max = 10 }; | ||
| 1975 | static const struct wacom_features wacom_features_0x90 = | 2016 | static const struct wacom_features wacom_features_0x90 = |
| 1976 | { "Wacom ISDv4 90", WACOM_PKGLEN_GRAPHIRE, 26202, 16325, 255, | 2017 | { "Wacom ISDv4 90", WACOM_PKGLEN_GRAPHIRE, 26202, 16325, 255, |
| 1977 | 0, TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; | 2018 | 0, TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; |
| @@ -2143,8 +2184,11 @@ const struct usb_device_id wacom_ids[] = { | |||
| 2143 | { USB_DEVICE_WACOM(0x43) }, | 2184 | { USB_DEVICE_WACOM(0x43) }, |
| 2144 | { USB_DEVICE_WACOM(0x44) }, | 2185 | { USB_DEVICE_WACOM(0x44) }, |
| 2145 | { USB_DEVICE_WACOM(0x45) }, | 2186 | { USB_DEVICE_WACOM(0x45) }, |
| 2187 | { USB_DEVICE_WACOM(0x57) }, | ||
| 2146 | { USB_DEVICE_WACOM(0x59) }, | 2188 | { USB_DEVICE_WACOM(0x59) }, |
| 2147 | { USB_DEVICE_DETAILED(0x5D, USB_CLASS_HID, 0, 0) }, | 2189 | { USB_DEVICE_DETAILED(0x5D, USB_CLASS_HID, 0, 0) }, |
| 2190 | { USB_DEVICE_WACOM(0x5B) }, | ||
| 2191 | { USB_DEVICE_DETAILED(0x5E, USB_CLASS_HID, 0, 0) }, | ||
| 2148 | { USB_DEVICE_WACOM(0xB0) }, | 2192 | { USB_DEVICE_WACOM(0xB0) }, |
| 2149 | { USB_DEVICE_WACOM(0xB1) }, | 2193 | { USB_DEVICE_WACOM(0xB1) }, |
| 2150 | { USB_DEVICE_WACOM(0xB2) }, | 2194 | { USB_DEVICE_WACOM(0xB2) }, |
| @@ -2205,6 +2249,7 @@ const struct usb_device_id wacom_ids[] = { | |||
| 2205 | { USB_DEVICE_WACOM(0x100) }, | 2249 | { USB_DEVICE_WACOM(0x100) }, |
| 2206 | { USB_DEVICE_WACOM(0x101) }, | 2250 | { USB_DEVICE_WACOM(0x101) }, |
| 2207 | { USB_DEVICE_WACOM(0x10D) }, | 2251 | { USB_DEVICE_WACOM(0x10D) }, |
| 2252 | { USB_DEVICE_WACOM(0x304) }, | ||
| 2208 | { USB_DEVICE_WACOM(0x4001) }, | 2253 | { USB_DEVICE_WACOM(0x4001) }, |
| 2209 | { USB_DEVICE_WACOM(0x47) }, | 2254 | { USB_DEVICE_WACOM(0x47) }, |
| 2210 | { USB_DEVICE_WACOM(0xF4) }, | 2255 | { USB_DEVICE_WACOM(0xF4) }, |
diff --git a/drivers/input/tablet/wacom_wac.h b/drivers/input/tablet/wacom_wac.h index 5f9a7721e16c..dfc9e08e7f70 100644 --- a/drivers/input/tablet/wacom_wac.h +++ b/drivers/input/tablet/wacom_wac.h | |||
| @@ -82,6 +82,7 @@ enum { | |||
| 82 | WACOM_24HD, | 82 | WACOM_24HD, |
| 83 | CINTIQ, | 83 | CINTIQ, |
| 84 | WACOM_BEE, | 84 | WACOM_BEE, |
| 85 | WACOM_13HD, | ||
| 85 | WACOM_MO, | 86 | WACOM_MO, |
| 86 | WIRELESS, | 87 | WIRELESS, |
| 87 | BAMBOO_PT, | 88 | BAMBOO_PT, |
diff --git a/drivers/input/touchscreen/egalax_ts.c b/drivers/input/touchscreen/egalax_ts.c index 17c9097f3b5d..39f3df8670c3 100644 --- a/drivers/input/touchscreen/egalax_ts.c +++ b/drivers/input/touchscreen/egalax_ts.c | |||
| @@ -216,7 +216,7 @@ static int egalax_ts_probe(struct i2c_client *client, | |||
| 216 | input_set_abs_params(input_dev, | 216 | input_set_abs_params(input_dev, |
| 217 | ABS_MT_POSITION_X, 0, EGALAX_MAX_X, 0, 0); | 217 | ABS_MT_POSITION_X, 0, EGALAX_MAX_X, 0, 0); |
| 218 | input_set_abs_params(input_dev, | 218 | input_set_abs_params(input_dev, |
| 219 | ABS_MT_POSITION_X, 0, EGALAX_MAX_Y, 0, 0); | 219 | ABS_MT_POSITION_Y, 0, EGALAX_MAX_Y, 0, 0); |
| 220 | input_mt_init_slots(input_dev, MAX_SUPPORT_POINTS, 0); | 220 | input_mt_init_slots(input_dev, MAX_SUPPORT_POINTS, 0); |
| 221 | 221 | ||
| 222 | input_set_drvdata(input_dev, ts); | 222 | input_set_drvdata(input_dev, ts); |
diff --git a/drivers/isdn/capi/kcapi.c b/drivers/isdn/capi/kcapi.c index 9b1b274c7d25..c123709acf82 100644 --- a/drivers/isdn/capi/kcapi.c +++ b/drivers/isdn/capi/kcapi.c | |||
| @@ -93,7 +93,7 @@ capi_ctr_put(struct capi_ctr *ctr) | |||
| 93 | 93 | ||
| 94 | static inline struct capi_ctr *get_capi_ctr_by_nr(u16 contr) | 94 | static inline struct capi_ctr *get_capi_ctr_by_nr(u16 contr) |
| 95 | { | 95 | { |
| 96 | if (contr - 1 >= CAPI_MAXCONTR) | 96 | if (contr < 1 || contr - 1 >= CAPI_MAXCONTR) |
| 97 | return NULL; | 97 | return NULL; |
| 98 | 98 | ||
| 99 | return capi_controller[contr - 1]; | 99 | return capi_controller[contr - 1]; |
| @@ -103,7 +103,7 @@ static inline struct capi20_appl *__get_capi_appl_by_nr(u16 applid) | |||
| 103 | { | 103 | { |
| 104 | lockdep_assert_held(&capi_controller_lock); | 104 | lockdep_assert_held(&capi_controller_lock); |
| 105 | 105 | ||
| 106 | if (applid - 1 >= CAPI_MAXAPPL) | 106 | if (applid < 1 || applid - 1 >= CAPI_MAXAPPL) |
| 107 | return NULL; | 107 | return NULL; |
| 108 | 108 | ||
| 109 | return capi_applications[applid - 1]; | 109 | return capi_applications[applid - 1]; |
| @@ -111,7 +111,7 @@ static inline struct capi20_appl *__get_capi_appl_by_nr(u16 applid) | |||
| 111 | 111 | ||
| 112 | static inline struct capi20_appl *get_capi_appl_by_nr(u16 applid) | 112 | static inline struct capi20_appl *get_capi_appl_by_nr(u16 applid) |
| 113 | { | 113 | { |
| 114 | if (applid - 1 >= CAPI_MAXAPPL) | 114 | if (applid < 1 || applid - 1 >= CAPI_MAXAPPL) |
| 115 | return NULL; | 115 | return NULL; |
| 116 | 116 | ||
| 117 | return rcu_dereference(capi_applications[applid - 1]); | 117 | return rcu_dereference(capi_applications[applid - 1]); |
diff --git a/drivers/leds/leds-gpio.c b/drivers/leds/leds-gpio.c index a0d931bcb37c..b02b679abf31 100644 --- a/drivers/leds/leds-gpio.c +++ b/drivers/leds/leds-gpio.c | |||
| @@ -107,6 +107,10 @@ static int create_gpio_led(const struct gpio_led *template, | |||
| 107 | return 0; | 107 | return 0; |
| 108 | } | 108 | } |
| 109 | 109 | ||
| 110 | ret = devm_gpio_request(parent, template->gpio, template->name); | ||
| 111 | if (ret < 0) | ||
| 112 | return ret; | ||
| 113 | |||
| 110 | led_dat->cdev.name = template->name; | 114 | led_dat->cdev.name = template->name; |
| 111 | led_dat->cdev.default_trigger = template->default_trigger; | 115 | led_dat->cdev.default_trigger = template->default_trigger; |
| 112 | led_dat->gpio = template->gpio; | 116 | led_dat->gpio = template->gpio; |
| @@ -126,10 +130,7 @@ static int create_gpio_led(const struct gpio_led *template, | |||
| 126 | if (!template->retain_state_suspended) | 130 | if (!template->retain_state_suspended) |
| 127 | led_dat->cdev.flags |= LED_CORE_SUSPENDRESUME; | 131 | led_dat->cdev.flags |= LED_CORE_SUSPENDRESUME; |
| 128 | 132 | ||
| 129 | ret = devm_gpio_request_one(parent, template->gpio, | 133 | ret = gpio_direction_output(led_dat->gpio, led_dat->active_low ^ state); |
| 130 | (led_dat->active_low ^ state) ? | ||
| 131 | GPIOF_OUT_INIT_HIGH : GPIOF_OUT_INIT_LOW, | ||
| 132 | template->name); | ||
| 133 | if (ret < 0) | 134 | if (ret < 0) |
| 134 | return ret; | 135 | return ret; |
| 135 | 136 | ||
diff --git a/drivers/leds/leds-ot200.c b/drivers/leds/leds-ot200.c index ee14662ed5ce..98cae529373f 100644 --- a/drivers/leds/leds-ot200.c +++ b/drivers/leds/leds-ot200.c | |||
| @@ -47,37 +47,37 @@ static struct ot200_led leds[] = { | |||
| 47 | { | 47 | { |
| 48 | .name = "led_1", | 48 | .name = "led_1", |
| 49 | .port = 0x49, | 49 | .port = 0x49, |
| 50 | .mask = BIT(7), | 50 | .mask = BIT(6), |
| 51 | }, | 51 | }, |
| 52 | { | 52 | { |
| 53 | .name = "led_2", | 53 | .name = "led_2", |
| 54 | .port = 0x49, | 54 | .port = 0x49, |
| 55 | .mask = BIT(6), | 55 | .mask = BIT(5), |
| 56 | }, | 56 | }, |
| 57 | { | 57 | { |
| 58 | .name = "led_3", | 58 | .name = "led_3", |
| 59 | .port = 0x49, | 59 | .port = 0x49, |
| 60 | .mask = BIT(5), | 60 | .mask = BIT(4), |
| 61 | }, | 61 | }, |
| 62 | { | 62 | { |
| 63 | .name = "led_4", | 63 | .name = "led_4", |
| 64 | .port = 0x49, | 64 | .port = 0x49, |
| 65 | .mask = BIT(4), | 65 | .mask = BIT(3), |
| 66 | }, | 66 | }, |
| 67 | { | 67 | { |
| 68 | .name = "led_5", | 68 | .name = "led_5", |
| 69 | .port = 0x49, | 69 | .port = 0x49, |
| 70 | .mask = BIT(3), | 70 | .mask = BIT(2), |
| 71 | }, | 71 | }, |
| 72 | { | 72 | { |
| 73 | .name = "led_6", | 73 | .name = "led_6", |
| 74 | .port = 0x49, | 74 | .port = 0x49, |
| 75 | .mask = BIT(2), | 75 | .mask = BIT(1), |
| 76 | }, | 76 | }, |
| 77 | { | 77 | { |
| 78 | .name = "led_7", | 78 | .name = "led_7", |
| 79 | .port = 0x49, | 79 | .port = 0x49, |
| 80 | .mask = BIT(1), | 80 | .mask = BIT(0), |
| 81 | } | 81 | } |
| 82 | }; | 82 | }; |
| 83 | 83 | ||
diff --git a/drivers/mfd/Kconfig b/drivers/mfd/Kconfig index d9aed1593e5d..d54e985748b7 100644 --- a/drivers/mfd/Kconfig +++ b/drivers/mfd/Kconfig | |||
| @@ -579,7 +579,7 @@ config AB8500_CORE | |||
| 579 | 579 | ||
| 580 | config AB8500_DEBUG | 580 | config AB8500_DEBUG |
| 581 | bool "Enable debug info via debugfs" | 581 | bool "Enable debug info via debugfs" |
| 582 | depends on AB8500_CORE && DEBUG_FS | 582 | depends on AB8500_GPADC && DEBUG_FS |
| 583 | default y if DEBUG_FS | 583 | default y if DEBUG_FS |
| 584 | help | 584 | help |
| 585 | Select this option if you want debug information using the debug | 585 | Select this option if you want debug information using the debug |
| @@ -818,6 +818,7 @@ config MFD_TPS65910 | |||
| 818 | config MFD_TPS65912 | 818 | config MFD_TPS65912 |
| 819 | bool "TI TPS65912 Power Management chip" | 819 | bool "TI TPS65912 Power Management chip" |
| 820 | depends on GPIOLIB | 820 | depends on GPIOLIB |
| 821 | select MFD_CORE | ||
| 821 | help | 822 | help |
| 822 | If you say yes here you get support for the TPS65912 series of | 823 | If you say yes here you get support for the TPS65912 series of |
| 823 | PM chips. | 824 | PM chips. |
diff --git a/drivers/mfd/ab8500-core.c b/drivers/mfd/ab8500-core.c index 8e8a016effe9..258b367e3989 100644 --- a/drivers/mfd/ab8500-core.c +++ b/drivers/mfd/ab8500-core.c | |||
| @@ -868,6 +868,15 @@ static struct resource ab8500_chargalg_resources[] = {}; | |||
| 868 | #ifdef CONFIG_DEBUG_FS | 868 | #ifdef CONFIG_DEBUG_FS |
| 869 | static struct resource ab8500_debug_resources[] = { | 869 | static struct resource ab8500_debug_resources[] = { |
| 870 | { | 870 | { |
| 871 | .name = "IRQ_AB8500", | ||
| 872 | /* | ||
| 873 | * Number will be filled in. NOTE: this is deliberately | ||
| 874 | * not flagged as an IRQ in ordet to avoid remapping using | ||
| 875 | * the irqdomain in the MFD core, so that this IRQ passes | ||
| 876 | * unremapped to the debug code. | ||
| 877 | */ | ||
| 878 | }, | ||
| 879 | { | ||
| 871 | .name = "IRQ_FIRST", | 880 | .name = "IRQ_FIRST", |
| 872 | .start = AB8500_INT_MAIN_EXT_CH_NOT_OK, | 881 | .start = AB8500_INT_MAIN_EXT_CH_NOT_OK, |
| 873 | .end = AB8500_INT_MAIN_EXT_CH_NOT_OK, | 882 | .end = AB8500_INT_MAIN_EXT_CH_NOT_OK, |
| @@ -1051,6 +1060,7 @@ static struct mfd_cell ab8500_devs[] = { | |||
| 1051 | }, | 1060 | }, |
| 1052 | { | 1061 | { |
| 1053 | .name = "ab8500-gpadc", | 1062 | .name = "ab8500-gpadc", |
| 1063 | .of_compatible = "stericsson,ab8500-gpadc", | ||
| 1054 | .num_resources = ARRAY_SIZE(ab8500_gpadc_resources), | 1064 | .num_resources = ARRAY_SIZE(ab8500_gpadc_resources), |
| 1055 | .resources = ab8500_gpadc_resources, | 1065 | .resources = ab8500_gpadc_resources, |
| 1056 | }, | 1066 | }, |
| @@ -1097,7 +1107,7 @@ static struct mfd_cell ab8500_devs[] = { | |||
| 1097 | .of_compatible = "stericsson,ab8500-denc", | 1107 | .of_compatible = "stericsson,ab8500-denc", |
| 1098 | }, | 1108 | }, |
| 1099 | { | 1109 | { |
| 1100 | .name = "ab8500-gpio", | 1110 | .name = "pinctrl-ab8500", |
| 1101 | .of_compatible = "stericsson,ab8500-gpio", | 1111 | .of_compatible = "stericsson,ab8500-gpio", |
| 1102 | }, | 1112 | }, |
| 1103 | { | 1113 | { |
| @@ -1208,6 +1218,7 @@ static struct mfd_cell ab8505_devs[] = { | |||
| 1208 | }, | 1218 | }, |
| 1209 | { | 1219 | { |
| 1210 | .name = "ab8500-gpadc", | 1220 | .name = "ab8500-gpadc", |
| 1221 | .of_compatible = "stericsson,ab8500-gpadc", | ||
| 1211 | .num_resources = ARRAY_SIZE(ab8505_gpadc_resources), | 1222 | .num_resources = ARRAY_SIZE(ab8505_gpadc_resources), |
| 1212 | .resources = ab8505_gpadc_resources, | 1223 | .resources = ab8505_gpadc_resources, |
| 1213 | }, | 1224 | }, |
| @@ -1234,7 +1245,7 @@ static struct mfd_cell ab8505_devs[] = { | |||
| 1234 | .name = "ab8500-leds", | 1245 | .name = "ab8500-leds", |
| 1235 | }, | 1246 | }, |
| 1236 | { | 1247 | { |
| 1237 | .name = "ab8500-gpio", | 1248 | .name = "pinctrl-ab8505", |
| 1238 | }, | 1249 | }, |
| 1239 | { | 1250 | { |
| 1240 | .name = "ab8500-usb", | 1251 | .name = "ab8500-usb", |
| @@ -1271,6 +1282,7 @@ static struct mfd_cell ab8540_devs[] = { | |||
| 1271 | }, | 1282 | }, |
| 1272 | { | 1283 | { |
| 1273 | .name = "ab8500-gpadc", | 1284 | .name = "ab8500-gpadc", |
| 1285 | .of_compatible = "stericsson,ab8500-gpadc", | ||
| 1274 | .num_resources = ARRAY_SIZE(ab8505_gpadc_resources), | 1286 | .num_resources = ARRAY_SIZE(ab8505_gpadc_resources), |
| 1275 | .resources = ab8505_gpadc_resources, | 1287 | .resources = ab8505_gpadc_resources, |
| 1276 | }, | 1288 | }, |
| @@ -1302,7 +1314,7 @@ static struct mfd_cell ab8540_devs[] = { | |||
| 1302 | .resources = ab8500_temp_resources, | 1314 | .resources = ab8500_temp_resources, |
| 1303 | }, | 1315 | }, |
| 1304 | { | 1316 | { |
| 1305 | .name = "ab8500-gpio", | 1317 | .name = "pinctrl-ab8540", |
| 1306 | }, | 1318 | }, |
| 1307 | { | 1319 | { |
| 1308 | .name = "ab8540-usb", | 1320 | .name = "ab8540-usb", |
| @@ -1712,6 +1724,12 @@ static int ab8500_probe(struct platform_device *pdev) | |||
| 1712 | if (ret) | 1724 | if (ret) |
| 1713 | return ret; | 1725 | return ret; |
| 1714 | 1726 | ||
| 1727 | #if CONFIG_DEBUG_FS | ||
| 1728 | /* Pass to debugfs */ | ||
| 1729 | ab8500_debug_resources[0].start = ab8500->irq; | ||
| 1730 | ab8500_debug_resources[0].end = ab8500->irq; | ||
| 1731 | #endif | ||
| 1732 | |||
| 1715 | if (is_ab9540(ab8500)) | 1733 | if (is_ab9540(ab8500)) |
| 1716 | ret = mfd_add_devices(ab8500->dev, 0, ab9540_devs, | 1734 | ret = mfd_add_devices(ab8500->dev, 0, ab9540_devs, |
| 1717 | ARRAY_SIZE(ab9540_devs), NULL, | 1735 | ARRAY_SIZE(ab9540_devs), NULL, |
diff --git a/drivers/mfd/ab8500-debugfs.c b/drivers/mfd/ab8500-debugfs.c index b88bbbc15f1e..37b7ce4c7c3b 100644 --- a/drivers/mfd/ab8500-debugfs.c +++ b/drivers/mfd/ab8500-debugfs.c | |||
| @@ -91,12 +91,10 @@ | |||
| 91 | #include <linux/ctype.h> | 91 | #include <linux/ctype.h> |
| 92 | #endif | 92 | #endif |
| 93 | 93 | ||
| 94 | /* TODO: this file should not reference IRQ_DB8500_AB8500! */ | ||
| 95 | #include <mach/irqs.h> | ||
| 96 | |||
| 97 | static u32 debug_bank; | 94 | static u32 debug_bank; |
| 98 | static u32 debug_address; | 95 | static u32 debug_address; |
| 99 | 96 | ||
| 97 | static int irq_ab8500; | ||
| 100 | static int irq_first; | 98 | static int irq_first; |
| 101 | static int irq_last; | 99 | static int irq_last; |
| 102 | static u32 *irq_count; | 100 | static u32 *irq_count; |
| @@ -1589,7 +1587,7 @@ void ab8500_debug_register_interrupt(int line) | |||
| 1589 | { | 1587 | { |
| 1590 | if (line < num_interrupt_lines) { | 1588 | if (line < num_interrupt_lines) { |
| 1591 | num_interrupts[line]++; | 1589 | num_interrupts[line]++; |
| 1592 | if (suspend_test_wake_cause_interrupt_is_mine(IRQ_DB8500_AB8500)) | 1590 | if (suspend_test_wake_cause_interrupt_is_mine(irq_ab8500)) |
| 1593 | num_wake_interrupts[line]++; | 1591 | num_wake_interrupts[line]++; |
| 1594 | } | 1592 | } |
| 1595 | } | 1593 | } |
| @@ -2941,6 +2939,7 @@ static int ab8500_debug_probe(struct platform_device *plf) | |||
| 2941 | struct dentry *file; | 2939 | struct dentry *file; |
| 2942 | int ret = -ENOMEM; | 2940 | int ret = -ENOMEM; |
| 2943 | struct ab8500 *ab8500; | 2941 | struct ab8500 *ab8500; |
| 2942 | struct resource *res; | ||
| 2944 | debug_bank = AB8500_MISC; | 2943 | debug_bank = AB8500_MISC; |
| 2945 | debug_address = AB8500_REV_REG & 0x00FF; | 2944 | debug_address = AB8500_REV_REG & 0x00FF; |
| 2946 | 2945 | ||
| @@ -2959,6 +2958,15 @@ static int ab8500_debug_probe(struct platform_device *plf) | |||
| 2959 | if (!event_name) | 2958 | if (!event_name) |
| 2960 | goto out_freedev_attr; | 2959 | goto out_freedev_attr; |
| 2961 | 2960 | ||
| 2961 | res = platform_get_resource_byname(plf, 0, "IRQ_AB8500"); | ||
| 2962 | if (!res) { | ||
| 2963 | dev_err(&plf->dev, "AB8500 irq not found, err %d\n", | ||
| 2964 | irq_first); | ||
| 2965 | ret = -ENXIO; | ||
| 2966 | goto out_freeevent_name; | ||
| 2967 | } | ||
| 2968 | irq_ab8500 = res->start; | ||
| 2969 | |||
| 2962 | irq_first = platform_get_irq_byname(plf, "IRQ_FIRST"); | 2970 | irq_first = platform_get_irq_byname(plf, "IRQ_FIRST"); |
| 2963 | if (irq_first < 0) { | 2971 | if (irq_first < 0) { |
| 2964 | dev_err(&plf->dev, "First irq not found, err %d\n", | 2972 | dev_err(&plf->dev, "First irq not found, err %d\n", |
diff --git a/drivers/mfd/ab8500-gpadc.c b/drivers/mfd/ab8500-gpadc.c index 5e65b28a5d09..13f7866de46e 100644 --- a/drivers/mfd/ab8500-gpadc.c +++ b/drivers/mfd/ab8500-gpadc.c | |||
| @@ -907,14 +907,17 @@ static int ab8500_gpadc_suspend(struct device *dev) | |||
| 907 | static int ab8500_gpadc_resume(struct device *dev) | 907 | static int ab8500_gpadc_resume(struct device *dev) |
| 908 | { | 908 | { |
| 909 | struct ab8500_gpadc *gpadc = dev_get_drvdata(dev); | 909 | struct ab8500_gpadc *gpadc = dev_get_drvdata(dev); |
| 910 | int ret; | ||
| 910 | 911 | ||
| 911 | regulator_enable(gpadc->regu); | 912 | ret = regulator_enable(gpadc->regu); |
| 913 | if (ret) | ||
| 914 | dev_err(dev, "Failed to enable vtvout LDO: %d\n", ret); | ||
| 912 | 915 | ||
| 913 | pm_runtime_mark_last_busy(gpadc->dev); | 916 | pm_runtime_mark_last_busy(gpadc->dev); |
| 914 | pm_runtime_put_autosuspend(gpadc->dev); | 917 | pm_runtime_put_autosuspend(gpadc->dev); |
| 915 | 918 | ||
| 916 | mutex_unlock(&gpadc->ab8500_gpadc_lock); | 919 | mutex_unlock(&gpadc->ab8500_gpadc_lock); |
| 917 | return 0; | 920 | return ret; |
| 918 | } | 921 | } |
| 919 | 922 | ||
| 920 | static int ab8500_gpadc_probe(struct platform_device *pdev) | 923 | static int ab8500_gpadc_probe(struct platform_device *pdev) |
diff --git a/drivers/mfd/ab8500-sysctrl.c b/drivers/mfd/ab8500-sysctrl.c index fbca1ced49fa..8e0dae59844d 100644 --- a/drivers/mfd/ab8500-sysctrl.c +++ b/drivers/mfd/ab8500-sysctrl.c | |||
| @@ -23,7 +23,7 @@ | |||
| 23 | 23 | ||
| 24 | static struct device *sysctrl_dev; | 24 | static struct device *sysctrl_dev; |
| 25 | 25 | ||
| 26 | void ab8500_power_off(void) | 26 | static void ab8500_power_off(void) |
| 27 | { | 27 | { |
| 28 | sigset_t old; | 28 | sigset_t old; |
| 29 | sigset_t all; | 29 | sigset_t all; |
| @@ -104,7 +104,7 @@ void ab8500_restart(char mode, const char *cmd) | |||
| 104 | 104 | ||
| 105 | plat = dev_get_platdata(sysctrl_dev->parent); | 105 | plat = dev_get_platdata(sysctrl_dev->parent); |
| 106 | pdata = plat->sysctrl; | 106 | pdata = plat->sysctrl; |
| 107 | if (pdata->reboot_reason_code) | 107 | if (pdata && pdata->reboot_reason_code) |
| 108 | reason = pdata->reboot_reason_code(cmd); | 108 | reason = pdata->reboot_reason_code(cmd); |
| 109 | else | 109 | else |
| 110 | pr_warn("[%s] No reboot reason set. Default reason %d\n", | 110 | pr_warn("[%s] No reboot reason set. Default reason %d\n", |
| @@ -188,14 +188,15 @@ static int ab8500_sysctrl_probe(struct platform_device *pdev) | |||
| 188 | 188 | ||
| 189 | plat = dev_get_platdata(pdev->dev.parent); | 189 | plat = dev_get_platdata(pdev->dev.parent); |
| 190 | 190 | ||
| 191 | if (!(plat && plat->sysctrl)) | 191 | if (!plat) |
| 192 | return -EINVAL; | 192 | return -EINVAL; |
| 193 | 193 | ||
| 194 | if (plat->pm_power_off) | 194 | sysctrl_dev = &pdev->dev; |
| 195 | |||
| 196 | if (!pm_power_off) | ||
| 195 | pm_power_off = ab8500_power_off; | 197 | pm_power_off = ab8500_power_off; |
| 196 | 198 | ||
| 197 | pdata = plat->sysctrl; | 199 | pdata = plat->sysctrl; |
| 198 | |||
| 199 | if (pdata) { | 200 | if (pdata) { |
| 200 | int last, ret, i, j; | 201 | int last, ret, i, j; |
| 201 | 202 | ||
| @@ -226,6 +227,10 @@ static int ab8500_sysctrl_probe(struct platform_device *pdev) | |||
| 226 | static int ab8500_sysctrl_remove(struct platform_device *pdev) | 227 | static int ab8500_sysctrl_remove(struct platform_device *pdev) |
| 227 | { | 228 | { |
| 228 | sysctrl_dev = NULL; | 229 | sysctrl_dev = NULL; |
| 230 | |||
| 231 | if (pm_power_off == ab8500_power_off) | ||
| 232 | pm_power_off = NULL; | ||
| 233 | |||
| 229 | return 0; | 234 | return 0; |
| 230 | } | 235 | } |
| 231 | 236 | ||
diff --git a/drivers/mfd/abx500-core.c b/drivers/mfd/abx500-core.c index 9818afba2515..3714acb61458 100644 --- a/drivers/mfd/abx500-core.c +++ b/drivers/mfd/abx500-core.c | |||
| @@ -156,7 +156,7 @@ EXPORT_SYMBOL(abx500_startup_irq_enabled); | |||
| 156 | void abx500_dump_all_banks(void) | 156 | void abx500_dump_all_banks(void) |
| 157 | { | 157 | { |
| 158 | struct abx500_ops *ops; | 158 | struct abx500_ops *ops; |
| 159 | struct device dummy_child = {0}; | 159 | struct device dummy_child = {NULL}; |
| 160 | struct abx500_device_entry *dev_entry; | 160 | struct abx500_device_entry *dev_entry; |
| 161 | 161 | ||
| 162 | list_for_each_entry(dev_entry, &abx500_list, list) { | 162 | list_for_each_entry(dev_entry, &abx500_list, list) { |
diff --git a/drivers/mfd/cros_ec_spi.c b/drivers/mfd/cros_ec_spi.c index 19193cf1e7a1..367ccb58ecb1 100644 --- a/drivers/mfd/cros_ec_spi.c +++ b/drivers/mfd/cros_ec_spi.c | |||
| @@ -120,7 +120,7 @@ static int cros_ec_spi_receive_response(struct cros_ec_device *ec_dev, | |||
| 120 | 120 | ||
| 121 | for (end = ptr + EC_MSG_PREAMBLE_COUNT; ptr != end; ptr++) { | 121 | for (end = ptr + EC_MSG_PREAMBLE_COUNT; ptr != end; ptr++) { |
| 122 | if (*ptr == EC_MSG_HEADER) { | 122 | if (*ptr == EC_MSG_HEADER) { |
| 123 | dev_dbg(ec_dev->dev, "msg found at %ld\n", | 123 | dev_dbg(ec_dev->dev, "msg found at %zd\n", |
| 124 | ptr - ec_dev->din); | 124 | ptr - ec_dev->din); |
| 125 | break; | 125 | break; |
| 126 | } | 126 | } |
| @@ -154,7 +154,7 @@ static int cros_ec_spi_receive_response(struct cros_ec_device *ec_dev, | |||
| 154 | * maximum-supported transfer size. | 154 | * maximum-supported transfer size. |
| 155 | */ | 155 | */ |
| 156 | todo = min(need_len, 256); | 156 | todo = min(need_len, 256); |
| 157 | dev_dbg(ec_dev->dev, "loop, todo=%d, need_len=%d, ptr=%ld\n", | 157 | dev_dbg(ec_dev->dev, "loop, todo=%d, need_len=%d, ptr=%zd\n", |
| 158 | todo, need_len, ptr - ec_dev->din); | 158 | todo, need_len, ptr - ec_dev->din); |
| 159 | 159 | ||
| 160 | memset(&trans, '\0', sizeof(trans)); | 160 | memset(&trans, '\0', sizeof(trans)); |
| @@ -178,7 +178,7 @@ static int cros_ec_spi_receive_response(struct cros_ec_device *ec_dev, | |||
| 178 | need_len -= todo; | 178 | need_len -= todo; |
| 179 | } | 179 | } |
| 180 | 180 | ||
| 181 | dev_dbg(ec_dev->dev, "loop done, ptr=%ld\n", ptr - ec_dev->din); | 181 | dev_dbg(ec_dev->dev, "loop done, ptr=%zd\n", ptr - ec_dev->din); |
| 182 | 182 | ||
| 183 | return 0; | 183 | return 0; |
| 184 | } | 184 | } |
diff --git a/drivers/mfd/db8500-prcmu.c b/drivers/mfd/db8500-prcmu.c index 319b8abe742b..66f80973596b 100644 --- a/drivers/mfd/db8500-prcmu.c +++ b/drivers/mfd/db8500-prcmu.c | |||
| @@ -1613,6 +1613,8 @@ static unsigned long dsiclk_rate(u8 n) | |||
| 1613 | 1613 | ||
| 1614 | if (divsel == PRCM_DSI_PLLOUT_SEL_OFF) | 1614 | if (divsel == PRCM_DSI_PLLOUT_SEL_OFF) |
| 1615 | divsel = dsiclk[n].divsel; | 1615 | divsel = dsiclk[n].divsel; |
| 1616 | else | ||
| 1617 | dsiclk[n].divsel = divsel; | ||
| 1616 | 1618 | ||
| 1617 | switch (divsel) { | 1619 | switch (divsel) { |
| 1618 | case PRCM_DSI_PLLOUT_SEL_PHI_4: | 1620 | case PRCM_DSI_PLLOUT_SEL_PHI_4: |
| @@ -3095,6 +3097,7 @@ static struct mfd_cell db8500_prcmu_devs[] = { | |||
| 3095 | .num_resources = ARRAY_SIZE(db8500_thsens_resources), | 3097 | .num_resources = ARRAY_SIZE(db8500_thsens_resources), |
| 3096 | .resources = db8500_thsens_resources, | 3098 | .resources = db8500_thsens_resources, |
| 3097 | .platform_data = &db8500_thsens_data, | 3099 | .platform_data = &db8500_thsens_data, |
| 3100 | .pdata_size = sizeof(db8500_thsens_data), | ||
| 3098 | }, | 3101 | }, |
| 3099 | }; | 3102 | }; |
| 3100 | 3103 | ||
diff --git a/drivers/mfd/si476x-cmd.c b/drivers/mfd/si476x-cmd.c index de48b4e88450..6f1ef63086c9 100644 --- a/drivers/mfd/si476x-cmd.c +++ b/drivers/mfd/si476x-cmd.c | |||
| @@ -29,6 +29,8 @@ | |||
| 29 | 29 | ||
| 30 | #include <linux/mfd/si476x-core.h> | 30 | #include <linux/mfd/si476x-core.h> |
| 31 | 31 | ||
| 32 | #include <asm/unaligned.h> | ||
| 33 | |||
| 32 | #define msb(x) ((u8)((u16) x >> 8)) | 34 | #define msb(x) ((u8)((u16) x >> 8)) |
| 33 | #define lsb(x) ((u8)((u16) x & 0x00FF)) | 35 | #define lsb(x) ((u8)((u16) x & 0x00FF)) |
| 34 | 36 | ||
| @@ -150,7 +152,7 @@ enum si476x_acf_status_report_bits { | |||
| 150 | SI476X_ACF_SOFTMUTE_INT = (1 << 0), | 152 | SI476X_ACF_SOFTMUTE_INT = (1 << 0), |
| 151 | 153 | ||
| 152 | SI476X_ACF_SMUTE = (1 << 0), | 154 | SI476X_ACF_SMUTE = (1 << 0), |
| 153 | SI476X_ACF_SMATTN = 0b11111, | 155 | SI476X_ACF_SMATTN = 0x1f, |
| 154 | SI476X_ACF_PILOT = (1 << 7), | 156 | SI476X_ACF_PILOT = (1 << 7), |
| 155 | SI476X_ACF_STBLEND = ~SI476X_ACF_PILOT, | 157 | SI476X_ACF_STBLEND = ~SI476X_ACF_PILOT, |
| 156 | }; | 158 | }; |
| @@ -483,7 +485,7 @@ int si476x_core_cmd_get_property(struct si476x_core *core, u16 property) | |||
| 483 | if (err < 0) | 485 | if (err < 0) |
| 484 | return err; | 486 | return err; |
| 485 | else | 487 | else |
| 486 | return be16_to_cpup((__be16 *)(resp + 2)); | 488 | return get_unaligned_be16(resp + 2); |
| 487 | } | 489 | } |
| 488 | EXPORT_SYMBOL_GPL(si476x_core_cmd_get_property); | 490 | EXPORT_SYMBOL_GPL(si476x_core_cmd_get_property); |
| 489 | 491 | ||
| @@ -772,18 +774,18 @@ int si476x_core_cmd_am_rsq_status(struct si476x_core *core, | |||
| 772 | if (!report) | 774 | if (!report) |
| 773 | return err; | 775 | return err; |
| 774 | 776 | ||
| 775 | report->snrhint = 0b00001000 & resp[1]; | 777 | report->snrhint = 0x08 & resp[1]; |
| 776 | report->snrlint = 0b00000100 & resp[1]; | 778 | report->snrlint = 0x04 & resp[1]; |
| 777 | report->rssihint = 0b00000010 & resp[1]; | 779 | report->rssihint = 0x02 & resp[1]; |
| 778 | report->rssilint = 0b00000001 & resp[1]; | 780 | report->rssilint = 0x01 & resp[1]; |
| 779 | 781 | ||
| 780 | report->bltf = 0b10000000 & resp[2]; | 782 | report->bltf = 0x80 & resp[2]; |
| 781 | report->snr_ready = 0b00100000 & resp[2]; | 783 | report->snr_ready = 0x20 & resp[2]; |
| 782 | report->rssiready = 0b00001000 & resp[2]; | 784 | report->rssiready = 0x08 & resp[2]; |
| 783 | report->afcrl = 0b00000010 & resp[2]; | 785 | report->afcrl = 0x02 & resp[2]; |
| 784 | report->valid = 0b00000001 & resp[2]; | 786 | report->valid = 0x01 & resp[2]; |
| 785 | 787 | ||
| 786 | report->readfreq = be16_to_cpup((__be16 *)(resp + 3)); | 788 | report->readfreq = get_unaligned_be16(resp + 3); |
| 787 | report->freqoff = resp[5]; | 789 | report->freqoff = resp[5]; |
| 788 | report->rssi = resp[6]; | 790 | report->rssi = resp[6]; |
| 789 | report->snr = resp[7]; | 791 | report->snr = resp[7]; |
| @@ -931,26 +933,26 @@ int si476x_core_cmd_fm_rds_status(struct si476x_core *core, | |||
| 931 | if (err < 0 || report == NULL) | 933 | if (err < 0 || report == NULL) |
| 932 | return err; | 934 | return err; |
| 933 | 935 | ||
| 934 | report->rdstpptyint = 0b00010000 & resp[1]; | 936 | report->rdstpptyint = 0x10 & resp[1]; |
| 935 | report->rdspiint = 0b00001000 & resp[1]; | 937 | report->rdspiint = 0x08 & resp[1]; |
| 936 | report->rdssyncint = 0b00000010 & resp[1]; | 938 | report->rdssyncint = 0x02 & resp[1]; |
| 937 | report->rdsfifoint = 0b00000001 & resp[1]; | 939 | report->rdsfifoint = 0x01 & resp[1]; |
| 938 | 940 | ||
| 939 | report->tpptyvalid = 0b00010000 & resp[2]; | 941 | report->tpptyvalid = 0x10 & resp[2]; |
| 940 | report->pivalid = 0b00001000 & resp[2]; | 942 | report->pivalid = 0x08 & resp[2]; |
| 941 | report->rdssync = 0b00000010 & resp[2]; | 943 | report->rdssync = 0x02 & resp[2]; |
| 942 | report->rdsfifolost = 0b00000001 & resp[2]; | 944 | report->rdsfifolost = 0x01 & resp[2]; |
| 943 | 945 | ||
| 944 | report->tp = 0b00100000 & resp[3]; | 946 | report->tp = 0x20 & resp[3]; |
| 945 | report->pty = 0b00011111 & resp[3]; | 947 | report->pty = 0x1f & resp[3]; |
| 946 | 948 | ||
| 947 | report->pi = be16_to_cpup((__be16 *)(resp + 4)); | 949 | report->pi = get_unaligned_be16(resp + 4); |
| 948 | report->rdsfifoused = resp[6]; | 950 | report->rdsfifoused = resp[6]; |
| 949 | 951 | ||
| 950 | report->ble[V4L2_RDS_BLOCK_A] = 0b11000000 & resp[7]; | 952 | report->ble[V4L2_RDS_BLOCK_A] = 0xc0 & resp[7]; |
| 951 | report->ble[V4L2_RDS_BLOCK_B] = 0b00110000 & resp[7]; | 953 | report->ble[V4L2_RDS_BLOCK_B] = 0x30 & resp[7]; |
| 952 | report->ble[V4L2_RDS_BLOCK_C] = 0b00001100 & resp[7]; | 954 | report->ble[V4L2_RDS_BLOCK_C] = 0x0c & resp[7]; |
| 953 | report->ble[V4L2_RDS_BLOCK_D] = 0b00000011 & resp[7]; | 955 | report->ble[V4L2_RDS_BLOCK_D] = 0x03 & resp[7]; |
| 954 | 956 | ||
| 955 | report->rds[V4L2_RDS_BLOCK_A].block = V4L2_RDS_BLOCK_A; | 957 | report->rds[V4L2_RDS_BLOCK_A].block = V4L2_RDS_BLOCK_A; |
| 956 | report->rds[V4L2_RDS_BLOCK_A].msb = resp[8]; | 958 | report->rds[V4L2_RDS_BLOCK_A].msb = resp[8]; |
| @@ -991,9 +993,9 @@ int si476x_core_cmd_fm_rds_blockcount(struct si476x_core *core, | |||
| 991 | SI476X_DEFAULT_TIMEOUT); | 993 | SI476X_DEFAULT_TIMEOUT); |
| 992 | 994 | ||
| 993 | if (!err) { | 995 | if (!err) { |
| 994 | report->expected = be16_to_cpup((__be16 *)(resp + 2)); | 996 | report->expected = get_unaligned_be16(resp + 2); |
| 995 | report->received = be16_to_cpup((__be16 *)(resp + 4)); | 997 | report->received = get_unaligned_be16(resp + 4); |
| 996 | report->uncorrectable = be16_to_cpup((__be16 *)(resp + 6)); | 998 | report->uncorrectable = get_unaligned_be16(resp + 6); |
| 997 | } | 999 | } |
| 998 | 1000 | ||
| 999 | return err; | 1001 | return err; |
| @@ -1005,7 +1007,7 @@ int si476x_core_cmd_fm_phase_diversity(struct si476x_core *core, | |||
| 1005 | { | 1007 | { |
| 1006 | u8 resp[CMD_FM_PHASE_DIVERSITY_NRESP]; | 1008 | u8 resp[CMD_FM_PHASE_DIVERSITY_NRESP]; |
| 1007 | const u8 args[CMD_FM_PHASE_DIVERSITY_NARGS] = { | 1009 | const u8 args[CMD_FM_PHASE_DIVERSITY_NARGS] = { |
| 1008 | mode & 0b111, | 1010 | mode & 0x07, |
| 1009 | }; | 1011 | }; |
| 1010 | 1012 | ||
| 1011 | return si476x_core_send_command(core, CMD_FM_PHASE_DIVERSITY, | 1013 | return si476x_core_send_command(core, CMD_FM_PHASE_DIVERSITY, |
| @@ -1162,7 +1164,7 @@ static int si476x_core_cmd_am_tune_freq_a20(struct si476x_core *core, | |||
| 1162 | const int am_freq = tuneargs->freq; | 1164 | const int am_freq = tuneargs->freq; |
| 1163 | u8 resp[CMD_AM_TUNE_FREQ_NRESP]; | 1165 | u8 resp[CMD_AM_TUNE_FREQ_NRESP]; |
| 1164 | const u8 args[CMD_AM_TUNE_FREQ_NARGS] = { | 1166 | const u8 args[CMD_AM_TUNE_FREQ_NARGS] = { |
| 1165 | (tuneargs->zifsr << 6) | (tuneargs->injside & 0b11), | 1167 | (tuneargs->zifsr << 6) | (tuneargs->injside & 0x03), |
| 1166 | msb(am_freq), | 1168 | msb(am_freq), |
| 1167 | lsb(am_freq), | 1169 | lsb(am_freq), |
| 1168 | }; | 1170 | }; |
| @@ -1197,20 +1199,20 @@ static int si476x_core_cmd_fm_rsq_status_a10(struct si476x_core *core, | |||
| 1197 | if (err < 0 || report == NULL) | 1199 | if (err < 0 || report == NULL) |
| 1198 | return err; | 1200 | return err; |
| 1199 | 1201 | ||
| 1200 | report->multhint = 0b10000000 & resp[1]; | 1202 | report->multhint = 0x80 & resp[1]; |
| 1201 | report->multlint = 0b01000000 & resp[1]; | 1203 | report->multlint = 0x40 & resp[1]; |
| 1202 | report->snrhint = 0b00001000 & resp[1]; | 1204 | report->snrhint = 0x08 & resp[1]; |
| 1203 | report->snrlint = 0b00000100 & resp[1]; | 1205 | report->snrlint = 0x04 & resp[1]; |
| 1204 | report->rssihint = 0b00000010 & resp[1]; | 1206 | report->rssihint = 0x02 & resp[1]; |
| 1205 | report->rssilint = 0b00000001 & resp[1]; | 1207 | report->rssilint = 0x01 & resp[1]; |
| 1206 | 1208 | ||
| 1207 | report->bltf = 0b10000000 & resp[2]; | 1209 | report->bltf = 0x80 & resp[2]; |
| 1208 | report->snr_ready = 0b00100000 & resp[2]; | 1210 | report->snr_ready = 0x20 & resp[2]; |
| 1209 | report->rssiready = 0b00001000 & resp[2]; | 1211 | report->rssiready = 0x08 & resp[2]; |
| 1210 | report->afcrl = 0b00000010 & resp[2]; | 1212 | report->afcrl = 0x02 & resp[2]; |
| 1211 | report->valid = 0b00000001 & resp[2]; | 1213 | report->valid = 0x01 & resp[2]; |
| 1212 | 1214 | ||
| 1213 | report->readfreq = be16_to_cpup((__be16 *)(resp + 3)); | 1215 | report->readfreq = get_unaligned_be16(resp + 3); |
| 1214 | report->freqoff = resp[5]; | 1216 | report->freqoff = resp[5]; |
| 1215 | report->rssi = resp[6]; | 1217 | report->rssi = resp[6]; |
| 1216 | report->snr = resp[7]; | 1218 | report->snr = resp[7]; |
| @@ -1218,7 +1220,7 @@ static int si476x_core_cmd_fm_rsq_status_a10(struct si476x_core *core, | |||
| 1218 | report->hassi = resp[10]; | 1220 | report->hassi = resp[10]; |
| 1219 | report->mult = resp[11]; | 1221 | report->mult = resp[11]; |
| 1220 | report->dev = resp[12]; | 1222 | report->dev = resp[12]; |
| 1221 | report->readantcap = be16_to_cpup((__be16 *)(resp + 13)); | 1223 | report->readantcap = get_unaligned_be16(resp + 13); |
| 1222 | report->assi = resp[15]; | 1224 | report->assi = resp[15]; |
| 1223 | report->usn = resp[16]; | 1225 | report->usn = resp[16]; |
| 1224 | 1226 | ||
| @@ -1251,20 +1253,20 @@ static int si476x_core_cmd_fm_rsq_status_a20(struct si476x_core *core, | |||
| 1251 | if (err < 0 || report == NULL) | 1253 | if (err < 0 || report == NULL) |
| 1252 | return err; | 1254 | return err; |
| 1253 | 1255 | ||
| 1254 | report->multhint = 0b10000000 & resp[1]; | 1256 | report->multhint = 0x80 & resp[1]; |
| 1255 | report->multlint = 0b01000000 & resp[1]; | 1257 | report->multlint = 0x40 & resp[1]; |
| 1256 | report->snrhint = 0b00001000 & resp[1]; | 1258 | report->snrhint = 0x08 & resp[1]; |
| 1257 | report->snrlint = 0b00000100 & resp[1]; | 1259 | report->snrlint = 0x04 & resp[1]; |
| 1258 | report->rssihint = 0b00000010 & resp[1]; | 1260 | report->rssihint = 0x02 & resp[1]; |
| 1259 | report->rssilint = 0b00000001 & resp[1]; | 1261 | report->rssilint = 0x01 & resp[1]; |
| 1260 | 1262 | ||
| 1261 | report->bltf = 0b10000000 & resp[2]; | 1263 | report->bltf = 0x80 & resp[2]; |
| 1262 | report->snr_ready = 0b00100000 & resp[2]; | 1264 | report->snr_ready = 0x20 & resp[2]; |
| 1263 | report->rssiready = 0b00001000 & resp[2]; | 1265 | report->rssiready = 0x08 & resp[2]; |
| 1264 | report->afcrl = 0b00000010 & resp[2]; | 1266 | report->afcrl = 0x02 & resp[2]; |
| 1265 | report->valid = 0b00000001 & resp[2]; | 1267 | report->valid = 0x01 & resp[2]; |
| 1266 | 1268 | ||
| 1267 | report->readfreq = be16_to_cpup((__be16 *)(resp + 3)); | 1269 | report->readfreq = get_unaligned_be16(resp + 3); |
| 1268 | report->freqoff = resp[5]; | 1270 | report->freqoff = resp[5]; |
| 1269 | report->rssi = resp[6]; | 1271 | report->rssi = resp[6]; |
| 1270 | report->snr = resp[7]; | 1272 | report->snr = resp[7]; |
| @@ -1272,7 +1274,7 @@ static int si476x_core_cmd_fm_rsq_status_a20(struct si476x_core *core, | |||
| 1272 | report->hassi = resp[10]; | 1274 | report->hassi = resp[10]; |
| 1273 | report->mult = resp[11]; | 1275 | report->mult = resp[11]; |
| 1274 | report->dev = resp[12]; | 1276 | report->dev = resp[12]; |
| 1275 | report->readantcap = be16_to_cpup((__be16 *)(resp + 13)); | 1277 | report->readantcap = get_unaligned_be16(resp + 13); |
| 1276 | report->assi = resp[15]; | 1278 | report->assi = resp[15]; |
| 1277 | report->usn = resp[16]; | 1279 | report->usn = resp[16]; |
| 1278 | 1280 | ||
| @@ -1306,21 +1308,21 @@ static int si476x_core_cmd_fm_rsq_status_a30(struct si476x_core *core, | |||
| 1306 | if (err < 0 || report == NULL) | 1308 | if (err < 0 || report == NULL) |
| 1307 | return err; | 1309 | return err; |
| 1308 | 1310 | ||
| 1309 | report->multhint = 0b10000000 & resp[1]; | 1311 | report->multhint = 0x80 & resp[1]; |
| 1310 | report->multlint = 0b01000000 & resp[1]; | 1312 | report->multlint = 0x40 & resp[1]; |
| 1311 | report->snrhint = 0b00001000 & resp[1]; | 1313 | report->snrhint = 0x08 & resp[1]; |
| 1312 | report->snrlint = 0b00000100 & resp[1]; | 1314 | report->snrlint = 0x04 & resp[1]; |
| 1313 | report->rssihint = 0b00000010 & resp[1]; | 1315 | report->rssihint = 0x02 & resp[1]; |
| 1314 | report->rssilint = 0b00000001 & resp[1]; | 1316 | report->rssilint = 0x01 & resp[1]; |
| 1315 | 1317 | ||
| 1316 | report->bltf = 0b10000000 & resp[2]; | 1318 | report->bltf = 0x80 & resp[2]; |
| 1317 | report->snr_ready = 0b00100000 & resp[2]; | 1319 | report->snr_ready = 0x20 & resp[2]; |
| 1318 | report->rssiready = 0b00001000 & resp[2]; | 1320 | report->rssiready = 0x08 & resp[2]; |
| 1319 | report->injside = 0b00000100 & resp[2]; | 1321 | report->injside = 0x04 & resp[2]; |
| 1320 | report->afcrl = 0b00000010 & resp[2]; | 1322 | report->afcrl = 0x02 & resp[2]; |
| 1321 | report->valid = 0b00000001 & resp[2]; | 1323 | report->valid = 0x01 & resp[2]; |
| 1322 | 1324 | ||
| 1323 | report->readfreq = be16_to_cpup((__be16 *)(resp + 3)); | 1325 | report->readfreq = get_unaligned_be16(resp + 3); |
| 1324 | report->freqoff = resp[5]; | 1326 | report->freqoff = resp[5]; |
| 1325 | report->rssi = resp[6]; | 1327 | report->rssi = resp[6]; |
| 1326 | report->snr = resp[7]; | 1328 | report->snr = resp[7]; |
| @@ -1329,7 +1331,7 @@ static int si476x_core_cmd_fm_rsq_status_a30(struct si476x_core *core, | |||
| 1329 | report->hassi = resp[10]; | 1331 | report->hassi = resp[10]; |
| 1330 | report->mult = resp[11]; | 1332 | report->mult = resp[11]; |
| 1331 | report->dev = resp[12]; | 1333 | report->dev = resp[12]; |
| 1332 | report->readantcap = be16_to_cpup((__be16 *)(resp + 13)); | 1334 | report->readantcap = get_unaligned_be16(resp + 13); |
| 1333 | report->assi = resp[15]; | 1335 | report->assi = resp[15]; |
| 1334 | report->usn = resp[16]; | 1336 | report->usn = resp[16]; |
| 1335 | 1337 | ||
| @@ -1337,7 +1339,7 @@ static int si476x_core_cmd_fm_rsq_status_a30(struct si476x_core *core, | |||
| 1337 | report->rdsdev = resp[18]; | 1339 | report->rdsdev = resp[18]; |
| 1338 | report->assidev = resp[19]; | 1340 | report->assidev = resp[19]; |
| 1339 | report->strongdev = resp[20]; | 1341 | report->strongdev = resp[20]; |
| 1340 | report->rdspi = be16_to_cpup((__be16 *)(resp + 21)); | 1342 | report->rdspi = get_unaligned_be16(resp + 21); |
| 1341 | 1343 | ||
| 1342 | return err; | 1344 | return err; |
| 1343 | } | 1345 | } |
diff --git a/drivers/misc/dummy-irq.c b/drivers/misc/dummy-irq.c index 7014167e2c61..c37eeedfe215 100644 --- a/drivers/misc/dummy-irq.c +++ b/drivers/misc/dummy-irq.c | |||
| @@ -19,7 +19,7 @@ | |||
| 19 | #include <linux/irq.h> | 19 | #include <linux/irq.h> |
| 20 | #include <linux/interrupt.h> | 20 | #include <linux/interrupt.h> |
| 21 | 21 | ||
| 22 | static int irq; | 22 | static int irq = -1; |
| 23 | 23 | ||
| 24 | static irqreturn_t dummy_interrupt(int irq, void *dev_id) | 24 | static irqreturn_t dummy_interrupt(int irq, void *dev_id) |
| 25 | { | 25 | { |
| @@ -36,6 +36,10 @@ static irqreturn_t dummy_interrupt(int irq, void *dev_id) | |||
| 36 | 36 | ||
| 37 | static int __init dummy_irq_init(void) | 37 | static int __init dummy_irq_init(void) |
| 38 | { | 38 | { |
| 39 | if (irq < 0) { | ||
| 40 | printk(KERN_ERR "dummy-irq: no IRQ given. Use irq=N\n"); | ||
| 41 | return -EIO; | ||
| 42 | } | ||
| 39 | if (request_irq(irq, &dummy_interrupt, IRQF_SHARED, "dummy_irq", &irq)) { | 43 | if (request_irq(irq, &dummy_interrupt, IRQF_SHARED, "dummy_irq", &irq)) { |
| 40 | printk(KERN_ERR "dummy-irq: cannot register IRQ %d\n", irq); | 44 | printk(KERN_ERR "dummy-irq: cannot register IRQ %d\n", irq); |
| 41 | return -EIO; | 45 | return -EIO; |
diff --git a/drivers/misc/mei/bus.c b/drivers/misc/mei/bus.c index 1e935eacaa7f..9ecd49a7be1b 100644 --- a/drivers/misc/mei/bus.c +++ b/drivers/misc/mei/bus.c | |||
| @@ -496,6 +496,8 @@ int mei_cl_disable_device(struct mei_cl_device *device) | |||
| 496 | } | 496 | } |
| 497 | } | 497 | } |
| 498 | 498 | ||
| 499 | device->event_cb = NULL; | ||
| 500 | |||
| 499 | mutex_unlock(&dev->device_lock); | 501 | mutex_unlock(&dev->device_lock); |
| 500 | 502 | ||
| 501 | if (!device->ops || !device->ops->disable) | 503 | if (!device->ops || !device->ops->disable) |
diff --git a/drivers/misc/mei/main.c b/drivers/misc/mei/main.c index 7c44c8dbae42..053139f61086 100644 --- a/drivers/misc/mei/main.c +++ b/drivers/misc/mei/main.c | |||
| @@ -489,11 +489,16 @@ static int mei_ioctl_connect_client(struct file *file, | |||
| 489 | 489 | ||
| 490 | /* find ME client we're trying to connect to */ | 490 | /* find ME client we're trying to connect to */ |
| 491 | i = mei_me_cl_by_uuid(dev, &data->in_client_uuid); | 491 | i = mei_me_cl_by_uuid(dev, &data->in_client_uuid); |
| 492 | if (i >= 0 && !dev->me_clients[i].props.fixed_address) { | 492 | if (i < 0 || dev->me_clients[i].props.fixed_address) { |
| 493 | cl->me_client_id = dev->me_clients[i].client_id; | 493 | dev_dbg(&dev->pdev->dev, "Cannot connect to FW Client UUID = %pUl\n", |
| 494 | cl->state = MEI_FILE_CONNECTING; | 494 | &data->in_client_uuid); |
| 495 | rets = -ENODEV; | ||
| 496 | goto end; | ||
| 495 | } | 497 | } |
| 496 | 498 | ||
| 499 | cl->me_client_id = dev->me_clients[i].client_id; | ||
| 500 | cl->state = MEI_FILE_CONNECTING; | ||
| 501 | |||
| 497 | dev_dbg(&dev->pdev->dev, "Connect to FW Client ID = %d\n", | 502 | dev_dbg(&dev->pdev->dev, "Connect to FW Client ID = %d\n", |
| 498 | cl->me_client_id); | 503 | cl->me_client_id); |
| 499 | dev_dbg(&dev->pdev->dev, "FW Client - Protocol Version = %d\n", | 504 | dev_dbg(&dev->pdev->dev, "FW Client - Protocol Version = %d\n", |
| @@ -527,11 +532,6 @@ static int mei_ioctl_connect_client(struct file *file, | |||
| 527 | goto end; | 532 | goto end; |
| 528 | } | 533 | } |
| 529 | 534 | ||
| 530 | if (cl->state != MEI_FILE_CONNECTING) { | ||
| 531 | rets = -ENODEV; | ||
| 532 | goto end; | ||
| 533 | } | ||
| 534 | |||
| 535 | 535 | ||
| 536 | /* prepare the output buffer */ | 536 | /* prepare the output buffer */ |
| 537 | client = &data->out_client_properties; | 537 | client = &data->out_client_properties; |
| @@ -543,7 +543,6 @@ static int mei_ioctl_connect_client(struct file *file, | |||
| 543 | rets = mei_cl_connect(cl, file); | 543 | rets = mei_cl_connect(cl, file); |
| 544 | 544 | ||
| 545 | end: | 545 | end: |
| 546 | dev_dbg(&dev->pdev->dev, "free connect cb memory."); | ||
| 547 | return rets; | 546 | return rets; |
| 548 | } | 547 | } |
| 549 | 548 | ||
diff --git a/drivers/misc/vmw_vmci/Kconfig b/drivers/misc/vmw_vmci/Kconfig index ea98f7e9ccd1..39c2ecadb273 100644 --- a/drivers/misc/vmw_vmci/Kconfig +++ b/drivers/misc/vmw_vmci/Kconfig | |||
| @@ -4,7 +4,7 @@ | |||
| 4 | 4 | ||
| 5 | config VMWARE_VMCI | 5 | config VMWARE_VMCI |
| 6 | tristate "VMware VMCI Driver" | 6 | tristate "VMware VMCI Driver" |
| 7 | depends on X86 && PCI && NET | 7 | depends on X86 && PCI |
| 8 | help | 8 | help |
| 9 | This is VMware's Virtual Machine Communication Interface. It enables | 9 | This is VMware's Virtual Machine Communication Interface. It enables |
| 10 | high-speed communication between host and guest in a virtual | 10 | high-speed communication between host and guest in a virtual |
diff --git a/drivers/misc/vmw_vmci/vmci_queue_pair.c b/drivers/misc/vmw_vmci/vmci_queue_pair.c index d94245dbd765..8ff2e5ee8fb8 100644 --- a/drivers/misc/vmw_vmci/vmci_queue_pair.c +++ b/drivers/misc/vmw_vmci/vmci_queue_pair.c | |||
| @@ -23,7 +23,7 @@ | |||
| 23 | #include <linux/pagemap.h> | 23 | #include <linux/pagemap.h> |
| 24 | #include <linux/sched.h> | 24 | #include <linux/sched.h> |
| 25 | #include <linux/slab.h> | 25 | #include <linux/slab.h> |
| 26 | #include <linux/socket.h> | 26 | #include <linux/uio.h> |
| 27 | #include <linux/wait.h> | 27 | #include <linux/wait.h> |
| 28 | #include <linux/vmalloc.h> | 28 | #include <linux/vmalloc.h> |
| 29 | 29 | ||
diff --git a/drivers/net/bonding/bond_3ad.c b/drivers/net/bonding/bond_3ad.c index fc58d118d844..390061d09693 100644 --- a/drivers/net/bonding/bond_3ad.c +++ b/drivers/net/bonding/bond_3ad.c | |||
| @@ -2360,14 +2360,15 @@ int bond_3ad_set_carrier(struct bonding *bond) | |||
| 2360 | } | 2360 | } |
| 2361 | 2361 | ||
| 2362 | /** | 2362 | /** |
| 2363 | * bond_3ad_get_active_agg_info - get information of the active aggregator | 2363 | * __bond_3ad_get_active_agg_info - get information of the active aggregator |
| 2364 | * @bond: bonding struct to work on | 2364 | * @bond: bonding struct to work on |
| 2365 | * @ad_info: ad_info struct to fill with the bond's info | 2365 | * @ad_info: ad_info struct to fill with the bond's info |
| 2366 | * | 2366 | * |
| 2367 | * Returns: 0 on success | 2367 | * Returns: 0 on success |
| 2368 | * < 0 on error | 2368 | * < 0 on error |
| 2369 | */ | 2369 | */ |
| 2370 | int bond_3ad_get_active_agg_info(struct bonding *bond, struct ad_info *ad_info) | 2370 | int __bond_3ad_get_active_agg_info(struct bonding *bond, |
| 2371 | struct ad_info *ad_info) | ||
| 2371 | { | 2372 | { |
| 2372 | struct aggregator *aggregator = NULL; | 2373 | struct aggregator *aggregator = NULL; |
| 2373 | struct port *port; | 2374 | struct port *port; |
| @@ -2391,6 +2392,18 @@ int bond_3ad_get_active_agg_info(struct bonding *bond, struct ad_info *ad_info) | |||
| 2391 | return -1; | 2392 | return -1; |
| 2392 | } | 2393 | } |
| 2393 | 2394 | ||
| 2395 | /* Wrapper used to hold bond->lock so no slave manipulation can occur */ | ||
| 2396 | int bond_3ad_get_active_agg_info(struct bonding *bond, struct ad_info *ad_info) | ||
| 2397 | { | ||
| 2398 | int ret; | ||
| 2399 | |||
| 2400 | read_lock(&bond->lock); | ||
| 2401 | ret = __bond_3ad_get_active_agg_info(bond, ad_info); | ||
| 2402 | read_unlock(&bond->lock); | ||
| 2403 | |||
| 2404 | return ret; | ||
| 2405 | } | ||
| 2406 | |||
| 2394 | int bond_3ad_xmit_xor(struct sk_buff *skb, struct net_device *dev) | 2407 | int bond_3ad_xmit_xor(struct sk_buff *skb, struct net_device *dev) |
| 2395 | { | 2408 | { |
| 2396 | struct slave *slave, *start_at; | 2409 | struct slave *slave, *start_at; |
| @@ -2402,8 +2415,8 @@ int bond_3ad_xmit_xor(struct sk_buff *skb, struct net_device *dev) | |||
| 2402 | struct ad_info ad_info; | 2415 | struct ad_info ad_info; |
| 2403 | int res = 1; | 2416 | int res = 1; |
| 2404 | 2417 | ||
| 2405 | if (bond_3ad_get_active_agg_info(bond, &ad_info)) { | 2418 | if (__bond_3ad_get_active_agg_info(bond, &ad_info)) { |
| 2406 | pr_debug("%s: Error: bond_3ad_get_active_agg_info failed\n", | 2419 | pr_debug("%s: Error: __bond_3ad_get_active_agg_info failed\n", |
| 2407 | dev->name); | 2420 | dev->name); |
| 2408 | goto out; | 2421 | goto out; |
| 2409 | } | 2422 | } |
diff --git a/drivers/net/bonding/bond_3ad.h b/drivers/net/bonding/bond_3ad.h index 0cfaa4afdece..5d91ad0cc041 100644 --- a/drivers/net/bonding/bond_3ad.h +++ b/drivers/net/bonding/bond_3ad.h | |||
| @@ -273,6 +273,8 @@ void bond_3ad_adapter_speed_changed(struct slave *slave); | |||
| 273 | void bond_3ad_adapter_duplex_changed(struct slave *slave); | 273 | void bond_3ad_adapter_duplex_changed(struct slave *slave); |
| 274 | void bond_3ad_handle_link_change(struct slave *slave, char link); | 274 | void bond_3ad_handle_link_change(struct slave *slave, char link); |
| 275 | int bond_3ad_get_active_agg_info(struct bonding *bond, struct ad_info *ad_info); | 275 | int bond_3ad_get_active_agg_info(struct bonding *bond, struct ad_info *ad_info); |
| 276 | int __bond_3ad_get_active_agg_info(struct bonding *bond, | ||
| 277 | struct ad_info *ad_info); | ||
| 276 | int bond_3ad_xmit_xor(struct sk_buff *skb, struct net_device *dev); | 278 | int bond_3ad_xmit_xor(struct sk_buff *skb, struct net_device *dev); |
| 277 | int bond_3ad_lacpdu_recv(const struct sk_buff *skb, struct bonding *bond, | 279 | int bond_3ad_lacpdu_recv(const struct sk_buff *skb, struct bonding *bond, |
| 278 | struct slave *slave); | 280 | struct slave *slave); |
diff --git a/drivers/net/bonding/bond_main.c b/drivers/net/bonding/bond_main.c index d0aade04e49a..29b846cbfb48 100644 --- a/drivers/net/bonding/bond_main.c +++ b/drivers/net/bonding/bond_main.c | |||
| @@ -1362,6 +1362,7 @@ static netdev_features_t bond_fix_features(struct net_device *dev, | |||
| 1362 | slave->dev->features, | 1362 | slave->dev->features, |
| 1363 | mask); | 1363 | mask); |
| 1364 | } | 1364 | } |
| 1365 | features = netdev_add_tso_features(features, mask); | ||
| 1365 | 1366 | ||
| 1366 | out: | 1367 | out: |
| 1367 | read_unlock(&bond->lock); | 1368 | read_unlock(&bond->lock); |
| @@ -2555,8 +2556,8 @@ static void bond_arp_send(struct net_device *slave_dev, int arp_op, __be32 dest_ | |||
| 2555 | { | 2556 | { |
| 2556 | struct sk_buff *skb; | 2557 | struct sk_buff *skb; |
| 2557 | 2558 | ||
| 2558 | pr_debug("arp %d on slave %s: dst %x src %x vid %d\n", arp_op, | 2559 | pr_debug("arp %d on slave %s: dst %pI4 src %pI4 vid %d\n", arp_op, |
| 2559 | slave_dev->name, dest_ip, src_ip, vlan_id); | 2560 | slave_dev->name, &dest_ip, &src_ip, vlan_id); |
| 2560 | 2561 | ||
| 2561 | skb = arp_create(arp_op, ETH_P_ARP, dest_ip, slave_dev, src_ip, | 2562 | skb = arp_create(arp_op, ETH_P_ARP, dest_ip, slave_dev, src_ip, |
| 2562 | NULL, slave_dev->dev_addr, NULL); | 2563 | NULL, slave_dev->dev_addr, NULL); |
| @@ -2588,7 +2589,7 @@ static void bond_arp_send_all(struct bonding *bond, struct slave *slave) | |||
| 2588 | __be32 addr; | 2589 | __be32 addr; |
| 2589 | if (!targets[i]) | 2590 | if (!targets[i]) |
| 2590 | break; | 2591 | break; |
| 2591 | pr_debug("basa: target %x\n", targets[i]); | 2592 | pr_debug("basa: target %pI4\n", &targets[i]); |
| 2592 | if (!bond_vlan_used(bond)) { | 2593 | if (!bond_vlan_used(bond)) { |
| 2593 | pr_debug("basa: empty vlan: arp_send\n"); | 2594 | pr_debug("basa: empty vlan: arp_send\n"); |
| 2594 | addr = bond_confirm_addr(bond->dev, targets[i], 0); | 2595 | addr = bond_confirm_addr(bond->dev, targets[i], 0); |
| @@ -4470,7 +4471,7 @@ int bond_parse_parm(const char *buf, const struct bond_parm_tbl *tbl) | |||
| 4470 | 4471 | ||
| 4471 | static int bond_check_params(struct bond_params *params) | 4472 | static int bond_check_params(struct bond_params *params) |
| 4472 | { | 4473 | { |
| 4473 | int arp_validate_value, fail_over_mac_value, primary_reselect_value; | 4474 | int arp_validate_value, fail_over_mac_value, primary_reselect_value, i; |
| 4474 | 4475 | ||
| 4475 | /* | 4476 | /* |
| 4476 | * Convert string parameters. | 4477 | * Convert string parameters. |
| @@ -4650,19 +4651,18 @@ static int bond_check_params(struct bond_params *params) | |||
| 4650 | arp_interval = BOND_LINK_ARP_INTERV; | 4651 | arp_interval = BOND_LINK_ARP_INTERV; |
| 4651 | } | 4652 | } |
| 4652 | 4653 | ||
| 4653 | for (arp_ip_count = 0; | 4654 | for (arp_ip_count = 0, i = 0; |
| 4654 | (arp_ip_count < BOND_MAX_ARP_TARGETS) && arp_ip_target[arp_ip_count]; | 4655 | (arp_ip_count < BOND_MAX_ARP_TARGETS) && arp_ip_target[i]; i++) { |
| 4655 | arp_ip_count++) { | ||
| 4656 | /* not complete check, but should be good enough to | 4656 | /* not complete check, but should be good enough to |
| 4657 | catch mistakes */ | 4657 | catch mistakes */ |
| 4658 | __be32 ip = in_aton(arp_ip_target[arp_ip_count]); | 4658 | __be32 ip = in_aton(arp_ip_target[i]); |
| 4659 | if (!isdigit(arp_ip_target[arp_ip_count][0]) || | 4659 | if (!isdigit(arp_ip_target[i][0]) || ip == 0 || |
| 4660 | ip == 0 || ip == htonl(INADDR_BROADCAST)) { | 4660 | ip == htonl(INADDR_BROADCAST)) { |
| 4661 | pr_warning("Warning: bad arp_ip_target module parameter (%s), ARP monitoring will not be performed\n", | 4661 | pr_warning("Warning: bad arp_ip_target module parameter (%s), ARP monitoring will not be performed\n", |
| 4662 | arp_ip_target[arp_ip_count]); | 4662 | arp_ip_target[i]); |
| 4663 | arp_interval = 0; | 4663 | arp_interval = 0; |
| 4664 | } else { | 4664 | } else { |
| 4665 | arp_target[arp_ip_count] = ip; | 4665 | arp_target[arp_ip_count++] = ip; |
| 4666 | } | 4666 | } |
| 4667 | } | 4667 | } |
| 4668 | 4668 | ||
| @@ -4696,8 +4696,6 @@ static int bond_check_params(struct bond_params *params) | |||
| 4696 | if (miimon) { | 4696 | if (miimon) { |
| 4697 | pr_info("MII link monitoring set to %d ms\n", miimon); | 4697 | pr_info("MII link monitoring set to %d ms\n", miimon); |
| 4698 | } else if (arp_interval) { | 4698 | } else if (arp_interval) { |
| 4699 | int i; | ||
| 4700 | |||
| 4701 | pr_info("ARP monitoring set to %d ms, validate %s, with %d target(s):", | 4699 | pr_info("ARP monitoring set to %d ms, validate %s, with %d target(s):", |
| 4702 | arp_interval, | 4700 | arp_interval, |
| 4703 | arp_validate_tbl[arp_validate_value].modename, | 4701 | arp_validate_tbl[arp_validate_value].modename, |
diff --git a/drivers/net/bonding/bond_procfs.c b/drivers/net/bonding/bond_procfs.c index 94d06f1307b8..4060d41f0ee7 100644 --- a/drivers/net/bonding/bond_procfs.c +++ b/drivers/net/bonding/bond_procfs.c | |||
| @@ -130,7 +130,7 @@ static void bond_info_show_master(struct seq_file *seq) | |||
| 130 | seq_printf(seq, "Aggregator selection policy (ad_select): %s\n", | 130 | seq_printf(seq, "Aggregator selection policy (ad_select): %s\n", |
| 131 | ad_select_tbl[bond->params.ad_select].modename); | 131 | ad_select_tbl[bond->params.ad_select].modename); |
| 132 | 132 | ||
| 133 | if (bond_3ad_get_active_agg_info(bond, &ad_info)) { | 133 | if (__bond_3ad_get_active_agg_info(bond, &ad_info)) { |
| 134 | seq_printf(seq, "bond %s has no active aggregator\n", | 134 | seq_printf(seq, "bond %s has no active aggregator\n", |
| 135 | bond->dev->name); | 135 | bond->dev->name); |
| 136 | } else { | 136 | } else { |
diff --git a/drivers/net/bonding/bond_sysfs.c b/drivers/net/bonding/bond_sysfs.c index ea7a388f4843..d7434e0a610e 100644 --- a/drivers/net/bonding/bond_sysfs.c +++ b/drivers/net/bonding/bond_sysfs.c | |||
| @@ -316,6 +316,9 @@ static ssize_t bonding_store_mode(struct device *d, | |||
| 316 | int new_value, ret = count; | 316 | int new_value, ret = count; |
| 317 | struct bonding *bond = to_bond(d); | 317 | struct bonding *bond = to_bond(d); |
| 318 | 318 | ||
| 319 | if (!rtnl_trylock()) | ||
| 320 | return restart_syscall(); | ||
| 321 | |||
| 319 | if (bond->dev->flags & IFF_UP) { | 322 | if (bond->dev->flags & IFF_UP) { |
| 320 | pr_err("unable to update mode of %s because interface is up.\n", | 323 | pr_err("unable to update mode of %s because interface is up.\n", |
| 321 | bond->dev->name); | 324 | bond->dev->name); |
| @@ -352,6 +355,7 @@ static ssize_t bonding_store_mode(struct device *d, | |||
| 352 | bond->dev->name, bond_mode_tbl[new_value].modename, | 355 | bond->dev->name, bond_mode_tbl[new_value].modename, |
| 353 | new_value); | 356 | new_value); |
| 354 | out: | 357 | out: |
| 358 | rtnl_unlock(); | ||
| 355 | return ret; | 359 | return ret; |
| 356 | } | 360 | } |
| 357 | static DEVICE_ATTR(mode, S_IRUGO | S_IWUSR, | 361 | static DEVICE_ATTR(mode, S_IRUGO | S_IWUSR, |
| @@ -1315,7 +1319,6 @@ static ssize_t bonding_show_mii_status(struct device *d, | |||
| 1315 | } | 1319 | } |
| 1316 | static DEVICE_ATTR(mii_status, S_IRUGO, bonding_show_mii_status, NULL); | 1320 | static DEVICE_ATTR(mii_status, S_IRUGO, bonding_show_mii_status, NULL); |
| 1317 | 1321 | ||
| 1318 | |||
| 1319 | /* | 1322 | /* |
| 1320 | * Show current 802.3ad aggregator ID. | 1323 | * Show current 802.3ad aggregator ID. |
| 1321 | */ | 1324 | */ |
| @@ -1329,7 +1332,7 @@ static ssize_t bonding_show_ad_aggregator(struct device *d, | |||
| 1329 | if (bond->params.mode == BOND_MODE_8023AD) { | 1332 | if (bond->params.mode == BOND_MODE_8023AD) { |
| 1330 | struct ad_info ad_info; | 1333 | struct ad_info ad_info; |
| 1331 | count = sprintf(buf, "%d\n", | 1334 | count = sprintf(buf, "%d\n", |
| 1332 | (bond_3ad_get_active_agg_info(bond, &ad_info)) | 1335 | bond_3ad_get_active_agg_info(bond, &ad_info) |
| 1333 | ? 0 : ad_info.aggregator_id); | 1336 | ? 0 : ad_info.aggregator_id); |
| 1334 | } | 1337 | } |
| 1335 | 1338 | ||
| @@ -1351,7 +1354,7 @@ static ssize_t bonding_show_ad_num_ports(struct device *d, | |||
| 1351 | if (bond->params.mode == BOND_MODE_8023AD) { | 1354 | if (bond->params.mode == BOND_MODE_8023AD) { |
| 1352 | struct ad_info ad_info; | 1355 | struct ad_info ad_info; |
| 1353 | count = sprintf(buf, "%d\n", | 1356 | count = sprintf(buf, "%d\n", |
| 1354 | (bond_3ad_get_active_agg_info(bond, &ad_info)) | 1357 | bond_3ad_get_active_agg_info(bond, &ad_info) |
| 1355 | ? 0 : ad_info.ports); | 1358 | ? 0 : ad_info.ports); |
| 1356 | } | 1359 | } |
| 1357 | 1360 | ||
| @@ -1373,7 +1376,7 @@ static ssize_t bonding_show_ad_actor_key(struct device *d, | |||
| 1373 | if (bond->params.mode == BOND_MODE_8023AD) { | 1376 | if (bond->params.mode == BOND_MODE_8023AD) { |
| 1374 | struct ad_info ad_info; | 1377 | struct ad_info ad_info; |
| 1375 | count = sprintf(buf, "%d\n", | 1378 | count = sprintf(buf, "%d\n", |
| 1376 | (bond_3ad_get_active_agg_info(bond, &ad_info)) | 1379 | bond_3ad_get_active_agg_info(bond, &ad_info) |
| 1377 | ? 0 : ad_info.actor_key); | 1380 | ? 0 : ad_info.actor_key); |
| 1378 | } | 1381 | } |
| 1379 | 1382 | ||
| @@ -1395,7 +1398,7 @@ static ssize_t bonding_show_ad_partner_key(struct device *d, | |||
| 1395 | if (bond->params.mode == BOND_MODE_8023AD) { | 1398 | if (bond->params.mode == BOND_MODE_8023AD) { |
| 1396 | struct ad_info ad_info; | 1399 | struct ad_info ad_info; |
| 1397 | count = sprintf(buf, "%d\n", | 1400 | count = sprintf(buf, "%d\n", |
| 1398 | (bond_3ad_get_active_agg_info(bond, &ad_info)) | 1401 | bond_3ad_get_active_agg_info(bond, &ad_info) |
| 1399 | ? 0 : ad_info.partner_key); | 1402 | ? 0 : ad_info.partner_key); |
| 1400 | } | 1403 | } |
| 1401 | 1404 | ||
diff --git a/drivers/net/ethernet/broadcom/bnx2x/bnx2x_cmn.c b/drivers/net/ethernet/broadcom/bnx2x/bnx2x_cmn.c index b8fbe266ab68..be59ec4b2c30 100644 --- a/drivers/net/ethernet/broadcom/bnx2x/bnx2x_cmn.c +++ b/drivers/net/ethernet/broadcom/bnx2x/bnx2x_cmn.c | |||
| @@ -3313,6 +3313,7 @@ static void bnx2x_set_pbd_gso_e2(struct sk_buff *skb, u32 *parsing_data, | |||
| 3313 | */ | 3313 | */ |
| 3314 | static void bnx2x_set_pbd_gso(struct sk_buff *skb, | 3314 | static void bnx2x_set_pbd_gso(struct sk_buff *skb, |
| 3315 | struct eth_tx_parse_bd_e1x *pbd, | 3315 | struct eth_tx_parse_bd_e1x *pbd, |
| 3316 | struct eth_tx_start_bd *tx_start_bd, | ||
| 3316 | u32 xmit_type) | 3317 | u32 xmit_type) |
| 3317 | { | 3318 | { |
| 3318 | pbd->lso_mss = cpu_to_le16(skb_shinfo(skb)->gso_size); | 3319 | pbd->lso_mss = cpu_to_le16(skb_shinfo(skb)->gso_size); |
| @@ -3326,11 +3327,14 @@ static void bnx2x_set_pbd_gso(struct sk_buff *skb, | |||
| 3326 | ip_hdr(skb)->daddr, | 3327 | ip_hdr(skb)->daddr, |
| 3327 | 0, IPPROTO_TCP, 0)); | 3328 | 0, IPPROTO_TCP, 0)); |
| 3328 | 3329 | ||
| 3329 | } else | 3330 | /* GSO on 57710/57711 needs FW to calculate IP checksum */ |
| 3331 | tx_start_bd->bd_flags.as_bitfield |= ETH_TX_BD_FLAGS_IP_CSUM; | ||
| 3332 | } else { | ||
| 3330 | pbd->tcp_pseudo_csum = | 3333 | pbd->tcp_pseudo_csum = |
| 3331 | bswab16(~csum_ipv6_magic(&ipv6_hdr(skb)->saddr, | 3334 | bswab16(~csum_ipv6_magic(&ipv6_hdr(skb)->saddr, |
| 3332 | &ipv6_hdr(skb)->daddr, | 3335 | &ipv6_hdr(skb)->daddr, |
| 3333 | 0, IPPROTO_TCP, 0)); | 3336 | 0, IPPROTO_TCP, 0)); |
| 3337 | } | ||
| 3334 | 3338 | ||
| 3335 | pbd->global_data |= | 3339 | pbd->global_data |= |
| 3336 | cpu_to_le16(ETH_TX_PARSE_BD_E1X_PSEUDO_CS_WITHOUT_LEN); | 3340 | cpu_to_le16(ETH_TX_PARSE_BD_E1X_PSEUDO_CS_WITHOUT_LEN); |
| @@ -3814,7 +3818,8 @@ netdev_tx_t bnx2x_start_xmit(struct sk_buff *skb, struct net_device *dev) | |||
| 3814 | bnx2x_set_pbd_gso_e2(skb, &pbd_e2_parsing_data, | 3818 | bnx2x_set_pbd_gso_e2(skb, &pbd_e2_parsing_data, |
| 3815 | xmit_type); | 3819 | xmit_type); |
| 3816 | else | 3820 | else |
| 3817 | bnx2x_set_pbd_gso(skb, pbd_e1x, xmit_type); | 3821 | bnx2x_set_pbd_gso(skb, pbd_e1x, tx_start_bd, |
| 3822 | xmit_type); | ||
| 3818 | } | 3823 | } |
| 3819 | 3824 | ||
| 3820 | /* Set the PBD's parsing_data field if not zero | 3825 | /* Set the PBD's parsing_data field if not zero |
diff --git a/drivers/net/ethernet/broadcom/tg3.c b/drivers/net/ethernet/broadcom/tg3.c index 728d42ab2a76..1f2dd928888a 100644 --- a/drivers/net/ethernet/broadcom/tg3.c +++ b/drivers/net/ethernet/broadcom/tg3.c | |||
| @@ -94,10 +94,10 @@ static inline void _tg3_flag_clear(enum TG3_FLAGS flag, unsigned long *bits) | |||
| 94 | 94 | ||
| 95 | #define DRV_MODULE_NAME "tg3" | 95 | #define DRV_MODULE_NAME "tg3" |
| 96 | #define TG3_MAJ_NUM 3 | 96 | #define TG3_MAJ_NUM 3 |
| 97 | #define TG3_MIN_NUM 131 | 97 | #define TG3_MIN_NUM 132 |
| 98 | #define DRV_MODULE_VERSION \ | 98 | #define DRV_MODULE_VERSION \ |
| 99 | __stringify(TG3_MAJ_NUM) "." __stringify(TG3_MIN_NUM) | 99 | __stringify(TG3_MAJ_NUM) "." __stringify(TG3_MIN_NUM) |
| 100 | #define DRV_MODULE_RELDATE "April 09, 2013" | 100 | #define DRV_MODULE_RELDATE "May 21, 2013" |
| 101 | 101 | ||
| 102 | #define RESET_KIND_SHUTDOWN 0 | 102 | #define RESET_KIND_SHUTDOWN 0 |
| 103 | #define RESET_KIND_INIT 1 | 103 | #define RESET_KIND_INIT 1 |
| @@ -2957,6 +2957,31 @@ static int tg3_5700_link_polarity(struct tg3 *tp, u32 speed) | |||
| 2957 | return 0; | 2957 | return 0; |
| 2958 | } | 2958 | } |
| 2959 | 2959 | ||
| 2960 | static bool tg3_phy_power_bug(struct tg3 *tp) | ||
| 2961 | { | ||
| 2962 | switch (tg3_asic_rev(tp)) { | ||
| 2963 | case ASIC_REV_5700: | ||
| 2964 | case ASIC_REV_5704: | ||
| 2965 | return true; | ||
| 2966 | case ASIC_REV_5780: | ||
| 2967 | if (tp->phy_flags & TG3_PHYFLG_MII_SERDES) | ||
| 2968 | return true; | ||
| 2969 | return false; | ||
| 2970 | case ASIC_REV_5717: | ||
| 2971 | if (!tp->pci_fn) | ||
| 2972 | return true; | ||
| 2973 | return false; | ||
| 2974 | case ASIC_REV_5719: | ||
| 2975 | case ASIC_REV_5720: | ||
| 2976 | if ((tp->phy_flags & TG3_PHYFLG_PHY_SERDES) && | ||
| 2977 | !tp->pci_fn) | ||
| 2978 | return true; | ||
| 2979 | return false; | ||
| 2980 | } | ||
| 2981 | |||
| 2982 | return false; | ||
| 2983 | } | ||
| 2984 | |||
| 2960 | static void tg3_power_down_phy(struct tg3 *tp, bool do_low_power) | 2985 | static void tg3_power_down_phy(struct tg3 *tp, bool do_low_power) |
| 2961 | { | 2986 | { |
| 2962 | u32 val; | 2987 | u32 val; |
| @@ -3016,12 +3041,7 @@ static void tg3_power_down_phy(struct tg3 *tp, bool do_low_power) | |||
| 3016 | /* The PHY should not be powered down on some chips because | 3041 | /* The PHY should not be powered down on some chips because |
| 3017 | * of bugs. | 3042 | * of bugs. |
| 3018 | */ | 3043 | */ |
| 3019 | if (tg3_asic_rev(tp) == ASIC_REV_5700 || | 3044 | if (tg3_phy_power_bug(tp)) |
| 3020 | tg3_asic_rev(tp) == ASIC_REV_5704 || | ||
| 3021 | (tg3_asic_rev(tp) == ASIC_REV_5780 && | ||
| 3022 | (tp->phy_flags & TG3_PHYFLG_MII_SERDES)) || | ||
| 3023 | (tg3_asic_rev(tp) == ASIC_REV_5717 && | ||
| 3024 | !tp->pci_fn)) | ||
| 3025 | return; | 3045 | return; |
| 3026 | 3046 | ||
| 3027 | if (tg3_chip_rev(tp) == CHIPREV_5784_AX || | 3047 | if (tg3_chip_rev(tp) == CHIPREV_5784_AX || |
| @@ -7428,6 +7448,20 @@ static inline int tg3_4g_overflow_test(dma_addr_t mapping, int len) | |||
| 7428 | return (base > 0xffffdcc0) && (base + len + 8 < base); | 7448 | return (base > 0xffffdcc0) && (base + len + 8 < base); |
| 7429 | } | 7449 | } |
| 7430 | 7450 | ||
| 7451 | /* Test for TSO DMA buffers that cross into regions which are within MSS bytes | ||
| 7452 | * of any 4GB boundaries: 4G, 8G, etc | ||
| 7453 | */ | ||
| 7454 | static inline int tg3_4g_tso_overflow_test(struct tg3 *tp, dma_addr_t mapping, | ||
| 7455 | u32 len, u32 mss) | ||
| 7456 | { | ||
| 7457 | if (tg3_asic_rev(tp) == ASIC_REV_5762 && mss) { | ||
| 7458 | u32 base = (u32) mapping & 0xffffffff; | ||
| 7459 | |||
| 7460 | return ((base + len + (mss & 0x3fff)) < base); | ||
| 7461 | } | ||
| 7462 | return 0; | ||
| 7463 | } | ||
| 7464 | |||
| 7431 | /* Test for DMA addresses > 40-bit */ | 7465 | /* Test for DMA addresses > 40-bit */ |
| 7432 | static inline int tg3_40bit_overflow_test(struct tg3 *tp, dma_addr_t mapping, | 7466 | static inline int tg3_40bit_overflow_test(struct tg3 *tp, dma_addr_t mapping, |
| 7433 | int len) | 7467 | int len) |
| @@ -7464,6 +7498,9 @@ static bool tg3_tx_frag_set(struct tg3_napi *tnapi, u32 *entry, u32 *budget, | |||
| 7464 | if (tg3_4g_overflow_test(map, len)) | 7498 | if (tg3_4g_overflow_test(map, len)) |
| 7465 | hwbug = true; | 7499 | hwbug = true; |
| 7466 | 7500 | ||
| 7501 | if (tg3_4g_tso_overflow_test(tp, map, len, mss)) | ||
| 7502 | hwbug = true; | ||
| 7503 | |||
| 7467 | if (tg3_40bit_overflow_test(tp, map, len)) | 7504 | if (tg3_40bit_overflow_test(tp, map, len)) |
| 7468 | hwbug = true; | 7505 | hwbug = true; |
| 7469 | 7506 | ||
| @@ -8874,6 +8911,10 @@ static int tg3_chip_reset(struct tg3 *tp) | |||
| 8874 | tg3_halt_cpu(tp, RX_CPU_BASE); | 8911 | tg3_halt_cpu(tp, RX_CPU_BASE); |
| 8875 | } | 8912 | } |
| 8876 | 8913 | ||
| 8914 | err = tg3_poll_fw(tp); | ||
| 8915 | if (err) | ||
| 8916 | return err; | ||
| 8917 | |||
| 8877 | tw32(GRC_MODE, tp->grc_mode); | 8918 | tw32(GRC_MODE, tp->grc_mode); |
| 8878 | 8919 | ||
| 8879 | if (tg3_chip_rev_id(tp) == CHIPREV_ID_5705_A0) { | 8920 | if (tg3_chip_rev_id(tp) == CHIPREV_ID_5705_A0) { |
| @@ -8904,10 +8945,6 @@ static int tg3_chip_reset(struct tg3 *tp) | |||
| 8904 | 8945 | ||
| 8905 | tg3_ape_unlock(tp, TG3_APE_LOCK_GRC); | 8946 | tg3_ape_unlock(tp, TG3_APE_LOCK_GRC); |
| 8906 | 8947 | ||
| 8907 | err = tg3_poll_fw(tp); | ||
| 8908 | if (err) | ||
| 8909 | return err; | ||
| 8910 | |||
| 8911 | tg3_mdio_start(tp); | 8948 | tg3_mdio_start(tp); |
| 8912 | 8949 | ||
| 8913 | if (tg3_flag(tp, PCI_EXPRESS) && | 8950 | if (tg3_flag(tp, PCI_EXPRESS) && |
diff --git a/drivers/net/ethernet/cadence/macb.c b/drivers/net/ethernet/cadence/macb.c index 6be513deb17f..c89aa41dd448 100644 --- a/drivers/net/ethernet/cadence/macb.c +++ b/drivers/net/ethernet/cadence/macb.c | |||
| @@ -485,7 +485,8 @@ static void macb_tx_interrupt(struct macb *bp) | |||
| 485 | status = macb_readl(bp, TSR); | 485 | status = macb_readl(bp, TSR); |
| 486 | macb_writel(bp, TSR, status); | 486 | macb_writel(bp, TSR, status); |
| 487 | 487 | ||
| 488 | macb_writel(bp, ISR, MACB_BIT(TCOMP)); | 488 | if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE) |
| 489 | macb_writel(bp, ISR, MACB_BIT(TCOMP)); | ||
| 489 | 490 | ||
| 490 | netdev_vdbg(bp->dev, "macb_tx_interrupt status = 0x%03lx\n", | 491 | netdev_vdbg(bp->dev, "macb_tx_interrupt status = 0x%03lx\n", |
| 491 | (unsigned long)status); | 492 | (unsigned long)status); |
| @@ -738,7 +739,8 @@ static irqreturn_t macb_interrupt(int irq, void *dev_id) | |||
| 738 | * now. | 739 | * now. |
| 739 | */ | 740 | */ |
| 740 | macb_writel(bp, IDR, MACB_RX_INT_FLAGS); | 741 | macb_writel(bp, IDR, MACB_RX_INT_FLAGS); |
| 741 | macb_writel(bp, ISR, MACB_BIT(RCOMP)); | 742 | if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE) |
| 743 | macb_writel(bp, ISR, MACB_BIT(RCOMP)); | ||
| 742 | 744 | ||
| 743 | if (napi_schedule_prep(&bp->napi)) { | 745 | if (napi_schedule_prep(&bp->napi)) { |
| 744 | netdev_vdbg(bp->dev, "scheduling RX softirq\n"); | 746 | netdev_vdbg(bp->dev, "scheduling RX softirq\n"); |
| @@ -1062,6 +1064,17 @@ static void macb_configure_dma(struct macb *bp) | |||
| 1062 | } | 1064 | } |
| 1063 | } | 1065 | } |
| 1064 | 1066 | ||
| 1067 | /* | ||
| 1068 | * Configure peripheral capacities according to integration options used | ||
| 1069 | */ | ||
| 1070 | static void macb_configure_caps(struct macb *bp) | ||
| 1071 | { | ||
| 1072 | if (macb_is_gem(bp)) { | ||
| 1073 | if (GEM_BF(IRQCOR, gem_readl(bp, DCFG1)) == 0) | ||
| 1074 | bp->caps |= MACB_CAPS_ISR_CLEAR_ON_WRITE; | ||
| 1075 | } | ||
| 1076 | } | ||
| 1077 | |||
| 1065 | static void macb_init_hw(struct macb *bp) | 1078 | static void macb_init_hw(struct macb *bp) |
| 1066 | { | 1079 | { |
| 1067 | u32 config; | 1080 | u32 config; |
| @@ -1084,6 +1097,7 @@ static void macb_init_hw(struct macb *bp) | |||
| 1084 | bp->duplex = DUPLEX_HALF; | 1097 | bp->duplex = DUPLEX_HALF; |
| 1085 | 1098 | ||
| 1086 | macb_configure_dma(bp); | 1099 | macb_configure_dma(bp); |
| 1100 | macb_configure_caps(bp); | ||
| 1087 | 1101 | ||
| 1088 | /* Initialize TX and RX buffers */ | 1102 | /* Initialize TX and RX buffers */ |
| 1089 | macb_writel(bp, RBQP, bp->rx_ring_dma); | 1103 | macb_writel(bp, RBQP, bp->rx_ring_dma); |
diff --git a/drivers/net/ethernet/cadence/macb.h b/drivers/net/ethernet/cadence/macb.h index 993d70380688..548c0ecae869 100644 --- a/drivers/net/ethernet/cadence/macb.h +++ b/drivers/net/ethernet/cadence/macb.h | |||
| @@ -300,6 +300,8 @@ | |||
| 300 | #define MACB_REV_SIZE 16 | 300 | #define MACB_REV_SIZE 16 |
| 301 | 301 | ||
| 302 | /* Bitfields in DCFG1. */ | 302 | /* Bitfields in DCFG1. */ |
| 303 | #define GEM_IRQCOR_OFFSET 23 | ||
| 304 | #define GEM_IRQCOR_SIZE 1 | ||
| 303 | #define GEM_DBWDEF_OFFSET 25 | 305 | #define GEM_DBWDEF_OFFSET 25 |
| 304 | #define GEM_DBWDEF_SIZE 3 | 306 | #define GEM_DBWDEF_SIZE 3 |
| 305 | 307 | ||
| @@ -323,6 +325,9 @@ | |||
| 323 | #define MACB_MAN_READ 2 | 325 | #define MACB_MAN_READ 2 |
| 324 | #define MACB_MAN_CODE 2 | 326 | #define MACB_MAN_CODE 2 |
| 325 | 327 | ||
| 328 | /* Capability mask bits */ | ||
| 329 | #define MACB_CAPS_ISR_CLEAR_ON_WRITE 0x1 | ||
| 330 | |||
| 326 | /* Bit manipulation macros */ | 331 | /* Bit manipulation macros */ |
| 327 | #define MACB_BIT(name) \ | 332 | #define MACB_BIT(name) \ |
| 328 | (1 << MACB_##name##_OFFSET) | 333 | (1 << MACB_##name##_OFFSET) |
| @@ -574,6 +579,8 @@ struct macb { | |||
| 574 | unsigned int speed; | 579 | unsigned int speed; |
| 575 | unsigned int duplex; | 580 | unsigned int duplex; |
| 576 | 581 | ||
| 582 | u32 caps; | ||
| 583 | |||
| 577 | phy_interface_t phy_interface; | 584 | phy_interface_t phy_interface; |
| 578 | 585 | ||
| 579 | /* AT91RM9200 transmit */ | 586 | /* AT91RM9200 transmit */ |
diff --git a/drivers/net/ethernet/emulex/benet/be_cmds.c b/drivers/net/ethernet/emulex/benet/be_cmds.c index fd7b547698ab..a236ecd27cf3 100644 --- a/drivers/net/ethernet/emulex/benet/be_cmds.c +++ b/drivers/net/ethernet/emulex/benet/be_cmds.c | |||
| @@ -2976,22 +2976,17 @@ static struct be_nic_resource_desc *be_get_nic_desc(u8 *buf, u32 desc_count, | |||
| 2976 | for (i = 0; i < desc_count; i++) { | 2976 | for (i = 0; i < desc_count; i++) { |
| 2977 | desc->desc_len = desc->desc_len ? : RESOURCE_DESC_SIZE; | 2977 | desc->desc_len = desc->desc_len ? : RESOURCE_DESC_SIZE; |
| 2978 | if (((void *)desc + desc->desc_len) > | 2978 | if (((void *)desc + desc->desc_len) > |
| 2979 | (void *)(buf + max_buf_size)) { | 2979 | (void *)(buf + max_buf_size)) |
| 2980 | desc = NULL; | 2980 | return NULL; |
| 2981 | break; | ||
| 2982 | } | ||
| 2983 | 2981 | ||
| 2984 | if (desc->desc_type == NIC_RESOURCE_DESC_TYPE_V0 || | 2982 | if (desc->desc_type == NIC_RESOURCE_DESC_TYPE_V0 || |
| 2985 | desc->desc_type == NIC_RESOURCE_DESC_TYPE_V1) | 2983 | desc->desc_type == NIC_RESOURCE_DESC_TYPE_V1) |
| 2986 | break; | 2984 | return desc; |
| 2987 | 2985 | ||
| 2988 | desc = (void *)desc + desc->desc_len; | 2986 | desc = (void *)desc + desc->desc_len; |
| 2989 | } | 2987 | } |
| 2990 | 2988 | ||
| 2991 | if (!desc || i == MAX_RESOURCE_DESC) | 2989 | return NULL; |
| 2992 | return NULL; | ||
| 2993 | |||
| 2994 | return desc; | ||
| 2995 | } | 2990 | } |
| 2996 | 2991 | ||
| 2997 | /* Uses Mbox */ | 2992 | /* Uses Mbox */ |
diff --git a/drivers/net/ethernet/emulex/benet/be_main.c b/drivers/net/ethernet/emulex/benet/be_main.c index a444110b060f..ca2967b0f18b 100644 --- a/drivers/net/ethernet/emulex/benet/be_main.c +++ b/drivers/net/ethernet/emulex/benet/be_main.c | |||
| @@ -780,26 +780,18 @@ static struct sk_buff *be_insert_vlan_in_pkt(struct be_adapter *adapter, | |||
| 780 | if (unlikely(!skb)) | 780 | if (unlikely(!skb)) |
| 781 | return skb; | 781 | return skb; |
| 782 | 782 | ||
| 783 | if (vlan_tx_tag_present(skb)) { | 783 | if (vlan_tx_tag_present(skb)) |
| 784 | vlan_tag = be_get_tx_vlan_tag(adapter, skb); | 784 | vlan_tag = be_get_tx_vlan_tag(adapter, skb); |
| 785 | skb = __vlan_put_tag(skb, htons(ETH_P_8021Q), vlan_tag); | 785 | else if (qnq_async_evt_rcvd(adapter) && adapter->pvid) |
| 786 | if (skb) | 786 | vlan_tag = adapter->pvid; |
| 787 | skb->vlan_tci = 0; | ||
| 788 | } | ||
| 789 | |||
| 790 | if (qnq_async_evt_rcvd(adapter) && adapter->pvid) { | ||
| 791 | if (!vlan_tag) | ||
| 792 | vlan_tag = adapter->pvid; | ||
| 793 | if (skip_hw_vlan) | ||
| 794 | *skip_hw_vlan = true; | ||
| 795 | } | ||
| 796 | 787 | ||
| 797 | if (vlan_tag) { | 788 | if (vlan_tag) { |
| 798 | skb = __vlan_put_tag(skb, htons(ETH_P_8021Q), vlan_tag); | 789 | skb = __vlan_put_tag(skb, htons(ETH_P_8021Q), vlan_tag); |
| 799 | if (unlikely(!skb)) | 790 | if (unlikely(!skb)) |
| 800 | return skb; | 791 | return skb; |
| 801 | |||
| 802 | skb->vlan_tci = 0; | 792 | skb->vlan_tci = 0; |
| 793 | if (skip_hw_vlan) | ||
| 794 | *skip_hw_vlan = true; | ||
| 803 | } | 795 | } |
| 804 | 796 | ||
| 805 | /* Insert the outer VLAN, if any */ | 797 | /* Insert the outer VLAN, if any */ |
diff --git a/drivers/net/ethernet/freescale/fec_main.c b/drivers/net/ethernet/freescale/fec_main.c index ca9825ca88c9..85a06037b242 100644 --- a/drivers/net/ethernet/freescale/fec_main.c +++ b/drivers/net/ethernet/freescale/fec_main.c | |||
| @@ -109,7 +109,7 @@ static struct platform_device_id fec_devtype[] = { | |||
| 109 | .driver_data = FEC_QUIRK_ENET_MAC | FEC_QUIRK_HAS_GBIT | | 109 | .driver_data = FEC_QUIRK_ENET_MAC | FEC_QUIRK_HAS_GBIT | |
| 110 | FEC_QUIRK_HAS_BUFDESC_EX | FEC_QUIRK_HAS_CSUM, | 110 | FEC_QUIRK_HAS_BUFDESC_EX | FEC_QUIRK_HAS_CSUM, |
| 111 | }, { | 111 | }, { |
| 112 | .name = "mvf-fec", | 112 | .name = "mvf600-fec", |
| 113 | .driver_data = FEC_QUIRK_ENET_MAC, | 113 | .driver_data = FEC_QUIRK_ENET_MAC, |
| 114 | }, { | 114 | }, { |
| 115 | /* sentinel */ | 115 | /* sentinel */ |
| @@ -122,7 +122,7 @@ enum imx_fec_type { | |||
| 122 | IMX27_FEC, /* runs on i.mx27/35/51 */ | 122 | IMX27_FEC, /* runs on i.mx27/35/51 */ |
| 123 | IMX28_FEC, | 123 | IMX28_FEC, |
| 124 | IMX6Q_FEC, | 124 | IMX6Q_FEC, |
| 125 | MVF_FEC, | 125 | MVF600_FEC, |
| 126 | }; | 126 | }; |
| 127 | 127 | ||
| 128 | static const struct of_device_id fec_dt_ids[] = { | 128 | static const struct of_device_id fec_dt_ids[] = { |
| @@ -130,7 +130,7 @@ static const struct of_device_id fec_dt_ids[] = { | |||
| 130 | { .compatible = "fsl,imx27-fec", .data = &fec_devtype[IMX27_FEC], }, | 130 | { .compatible = "fsl,imx27-fec", .data = &fec_devtype[IMX27_FEC], }, |
| 131 | { .compatible = "fsl,imx28-fec", .data = &fec_devtype[IMX28_FEC], }, | 131 | { .compatible = "fsl,imx28-fec", .data = &fec_devtype[IMX28_FEC], }, |
| 132 | { .compatible = "fsl,imx6q-fec", .data = &fec_devtype[IMX6Q_FEC], }, | 132 | { .compatible = "fsl,imx6q-fec", .data = &fec_devtype[IMX6Q_FEC], }, |
| 133 | { .compatible = "fsl,mvf-fec", .data = &fec_devtype[MVF_FEC], }, | 133 | { .compatible = "fsl,mvf600-fec", .data = &fec_devtype[MVF600_FEC], }, |
| 134 | { /* sentinel */ } | 134 | { /* sentinel */ } |
| 135 | }; | 135 | }; |
| 136 | MODULE_DEVICE_TABLE(of, fec_dt_ids); | 136 | MODULE_DEVICE_TABLE(of, fec_dt_ids); |
| @@ -451,7 +451,7 @@ fec_restart(struct net_device *ndev, int duplex) | |||
| 451 | netif_device_detach(ndev); | 451 | netif_device_detach(ndev); |
| 452 | napi_disable(&fep->napi); | 452 | napi_disable(&fep->napi); |
| 453 | netif_stop_queue(ndev); | 453 | netif_stop_queue(ndev); |
| 454 | netif_tx_lock(ndev); | 454 | netif_tx_lock_bh(ndev); |
| 455 | } | 455 | } |
| 456 | 456 | ||
| 457 | /* Whack a reset. We should wait for this. */ | 457 | /* Whack a reset. We should wait for this. */ |
| @@ -616,10 +616,10 @@ fec_restart(struct net_device *ndev, int duplex) | |||
| 616 | writel(FEC_DEFAULT_IMASK, fep->hwp + FEC_IMASK); | 616 | writel(FEC_DEFAULT_IMASK, fep->hwp + FEC_IMASK); |
| 617 | 617 | ||
| 618 | if (netif_running(ndev)) { | 618 | if (netif_running(ndev)) { |
| 619 | netif_device_attach(ndev); | 619 | netif_tx_unlock_bh(ndev); |
| 620 | napi_enable(&fep->napi); | ||
| 621 | netif_wake_queue(ndev); | 620 | netif_wake_queue(ndev); |
| 622 | netif_tx_unlock(ndev); | 621 | napi_enable(&fep->napi); |
| 622 | netif_device_attach(ndev); | ||
| 623 | } | 623 | } |
| 624 | } | 624 | } |
| 625 | 625 | ||
diff --git a/drivers/net/ethernet/freescale/gianfar_ptp.c b/drivers/net/ethernet/freescale/gianfar_ptp.c index 576e4b858fce..083ea2b4d20a 100644 --- a/drivers/net/ethernet/freescale/gianfar_ptp.c +++ b/drivers/net/ethernet/freescale/gianfar_ptp.c | |||
| @@ -524,6 +524,7 @@ static int gianfar_ptp_probe(struct platform_device *dev) | |||
| 524 | return 0; | 524 | return 0; |
| 525 | 525 | ||
| 526 | no_clock: | 526 | no_clock: |
| 527 | iounmap(etsects->regs); | ||
| 527 | no_ioremap: | 528 | no_ioremap: |
| 528 | release_resource(etsects->rsrc); | 529 | release_resource(etsects->rsrc); |
| 529 | no_resource: | 530 | no_resource: |
diff --git a/drivers/net/ethernet/icplus/ipg.h b/drivers/net/ethernet/icplus/ipg.h index 6ce027355fcf..abb300a31912 100644 --- a/drivers/net/ethernet/icplus/ipg.h +++ b/drivers/net/ethernet/icplus/ipg.h | |||
| @@ -195,57 +195,57 @@ enum ipg_regs { | |||
| 195 | /* TFD data structure masks. */ | 195 | /* TFD data structure masks. */ |
| 196 | 196 | ||
| 197 | /* TFDList, TFC */ | 197 | /* TFDList, TFC */ |
| 198 | #define IPG_TFC_RSVD_MASK 0x0000FFFF9FFFFFFF | 198 | #define IPG_TFC_RSVD_MASK 0x0000FFFF9FFFFFFFULL |
| 199 | #define IPG_TFC_FRAMEID 0x000000000000FFFF | 199 | #define IPG_TFC_FRAMEID 0x000000000000FFFFULL |
| 200 | #define IPG_TFC_WORDALIGN 0x0000000000030000 | 200 | #define IPG_TFC_WORDALIGN 0x0000000000030000ULL |
| 201 | #define IPG_TFC_WORDALIGNTODWORD 0x0000000000000000 | 201 | #define IPG_TFC_WORDALIGNTODWORD 0x0000000000000000ULL |
| 202 | #define IPG_TFC_WORDALIGNTOWORD 0x0000000000020000 | 202 | #define IPG_TFC_WORDALIGNTOWORD 0x0000000000020000ULL |
| 203 | #define IPG_TFC_WORDALIGNDISABLED 0x0000000000030000 | 203 | #define IPG_TFC_WORDALIGNDISABLED 0x0000000000030000ULL |
| 204 | #define IPG_TFC_TCPCHECKSUMENABLE 0x0000000000040000 | 204 | #define IPG_TFC_TCPCHECKSUMENABLE 0x0000000000040000ULL |
| 205 | #define IPG_TFC_UDPCHECKSUMENABLE 0x0000000000080000 | 205 | #define IPG_TFC_UDPCHECKSUMENABLE 0x0000000000080000ULL |
| 206 | #define IPG_TFC_IPCHECKSUMENABLE 0x0000000000100000 | 206 | #define IPG_TFC_IPCHECKSUMENABLE 0x0000000000100000ULL |
| 207 | #define IPG_TFC_FCSAPPENDDISABLE 0x0000000000200000 | 207 | #define IPG_TFC_FCSAPPENDDISABLE 0x0000000000200000ULL |
| 208 | #define IPG_TFC_TXINDICATE 0x0000000000400000 | 208 | #define IPG_TFC_TXINDICATE 0x0000000000400000ULL |
| 209 | #define IPG_TFC_TXDMAINDICATE 0x0000000000800000 | 209 | #define IPG_TFC_TXDMAINDICATE 0x0000000000800000ULL |
| 210 | #define IPG_TFC_FRAGCOUNT 0x000000000F000000 | 210 | #define IPG_TFC_FRAGCOUNT 0x000000000F000000ULL |
| 211 | #define IPG_TFC_VLANTAGINSERT 0x0000000010000000 | 211 | #define IPG_TFC_VLANTAGINSERT 0x0000000010000000ULL |
| 212 | #define IPG_TFC_TFDDONE 0x0000000080000000 | 212 | #define IPG_TFC_TFDDONE 0x0000000080000000ULL |
| 213 | #define IPG_TFC_VID 0x00000FFF00000000 | 213 | #define IPG_TFC_VID 0x00000FFF00000000ULL |
| 214 | #define IPG_TFC_CFI 0x0000100000000000 | 214 | #define IPG_TFC_CFI 0x0000100000000000ULL |
| 215 | #define IPG_TFC_USERPRIORITY 0x0000E00000000000 | 215 | #define IPG_TFC_USERPRIORITY 0x0000E00000000000ULL |
| 216 | 216 | ||
| 217 | /* TFDList, FragInfo */ | 217 | /* TFDList, FragInfo */ |
| 218 | #define IPG_TFI_RSVD_MASK 0xFFFF00FFFFFFFFFF | 218 | #define IPG_TFI_RSVD_MASK 0xFFFF00FFFFFFFFFFULL |
| 219 | #define IPG_TFI_FRAGADDR 0x000000FFFFFFFFFF | 219 | #define IPG_TFI_FRAGADDR 0x000000FFFFFFFFFFULL |
| 220 | #define IPG_TFI_FRAGLEN 0xFFFF000000000000LL | 220 | #define IPG_TFI_FRAGLEN 0xFFFF000000000000ULL |
| 221 | 221 | ||
| 222 | /* RFD data structure masks. */ | 222 | /* RFD data structure masks. */ |
| 223 | 223 | ||
| 224 | /* RFDList, RFS */ | 224 | /* RFDList, RFS */ |
| 225 | #define IPG_RFS_RSVD_MASK 0x0000FFFFFFFFFFFF | 225 | #define IPG_RFS_RSVD_MASK 0x0000FFFFFFFFFFFFULL |
| 226 | #define IPG_RFS_RXFRAMELEN 0x000000000000FFFF | 226 | #define IPG_RFS_RXFRAMELEN 0x000000000000FFFFULL |
| 227 | #define IPG_RFS_RXFIFOOVERRUN 0x0000000000010000 | 227 | #define IPG_RFS_RXFIFOOVERRUN 0x0000000000010000ULL |
| 228 | #define IPG_RFS_RXRUNTFRAME 0x0000000000020000 | 228 | #define IPG_RFS_RXRUNTFRAME 0x0000000000020000ULL |
| 229 | #define IPG_RFS_RXALIGNMENTERROR 0x0000000000040000 | 229 | #define IPG_RFS_RXALIGNMENTERROR 0x0000000000040000ULL |
| 230 | #define IPG_RFS_RXFCSERROR 0x0000000000080000 | 230 | #define IPG_RFS_RXFCSERROR 0x0000000000080000ULL |
| 231 | #define IPG_RFS_RXOVERSIZEDFRAME 0x0000000000100000 | 231 | #define IPG_RFS_RXOVERSIZEDFRAME 0x0000000000100000ULL |
| 232 | #define IPG_RFS_RXLENGTHERROR 0x0000000000200000 | 232 | #define IPG_RFS_RXLENGTHERROR 0x0000000000200000ULL |
| 233 | #define IPG_RFS_VLANDETECTED 0x0000000000400000 | 233 | #define IPG_RFS_VLANDETECTED 0x0000000000400000ULL |
| 234 | #define IPG_RFS_TCPDETECTED 0x0000000000800000 | 234 | #define IPG_RFS_TCPDETECTED 0x0000000000800000ULL |
| 235 | #define IPG_RFS_TCPERROR 0x0000000001000000 | 235 | #define IPG_RFS_TCPERROR 0x0000000001000000ULL |
| 236 | #define IPG_RFS_UDPDETECTED 0x0000000002000000 | 236 | #define IPG_RFS_UDPDETECTED 0x0000000002000000ULL |
| 237 | #define IPG_RFS_UDPERROR 0x0000000004000000 | 237 | #define IPG_RFS_UDPERROR 0x0000000004000000ULL |
| 238 | #define IPG_RFS_IPDETECTED 0x0000000008000000 | 238 | #define IPG_RFS_IPDETECTED 0x0000000008000000ULL |
| 239 | #define IPG_RFS_IPERROR 0x0000000010000000 | 239 | #define IPG_RFS_IPERROR 0x0000000010000000ULL |
| 240 | #define IPG_RFS_FRAMESTART 0x0000000020000000 | 240 | #define IPG_RFS_FRAMESTART 0x0000000020000000ULL |
| 241 | #define IPG_RFS_FRAMEEND 0x0000000040000000 | 241 | #define IPG_RFS_FRAMEEND 0x0000000040000000ULL |
| 242 | #define IPG_RFS_RFDDONE 0x0000000080000000 | 242 | #define IPG_RFS_RFDDONE 0x0000000080000000ULL |
| 243 | #define IPG_RFS_TCI 0x0000FFFF00000000 | 243 | #define IPG_RFS_TCI 0x0000FFFF00000000ULL |
| 244 | 244 | ||
| 245 | /* RFDList, FragInfo */ | 245 | /* RFDList, FragInfo */ |
| 246 | #define IPG_RFI_RSVD_MASK 0xFFFF00FFFFFFFFFF | 246 | #define IPG_RFI_RSVD_MASK 0xFFFF00FFFFFFFFFFULL |
| 247 | #define IPG_RFI_FRAGADDR 0x000000FFFFFFFFFF | 247 | #define IPG_RFI_FRAGADDR 0x000000FFFFFFFFFFULL |
| 248 | #define IPG_RFI_FRAGLEN 0xFFFF000000000000LL | 248 | #define IPG_RFI_FRAGLEN 0xFFFF000000000000ULL |
| 249 | 249 | ||
| 250 | /* I/O Register masks. */ | 250 | /* I/O Register masks. */ |
| 251 | 251 | ||
diff --git a/drivers/net/ethernet/marvell/mv643xx_eth.c b/drivers/net/ethernet/marvell/mv643xx_eth.c index d0afeea181fb..2ad1494efbb3 100644 --- a/drivers/net/ethernet/marvell/mv643xx_eth.c +++ b/drivers/net/ethernet/marvell/mv643xx_eth.c | |||
| @@ -867,7 +867,7 @@ static int txq_reclaim(struct tx_queue *txq, int budget, int force) | |||
| 867 | struct netdev_queue *nq = netdev_get_tx_queue(mp->dev, txq->index); | 867 | struct netdev_queue *nq = netdev_get_tx_queue(mp->dev, txq->index); |
| 868 | int reclaimed; | 868 | int reclaimed; |
| 869 | 869 | ||
| 870 | __netif_tx_lock(nq, smp_processor_id()); | 870 | __netif_tx_lock_bh(nq); |
| 871 | 871 | ||
| 872 | reclaimed = 0; | 872 | reclaimed = 0; |
| 873 | while (reclaimed < budget && txq->tx_desc_count > 0) { | 873 | while (reclaimed < budget && txq->tx_desc_count > 0) { |
| @@ -913,7 +913,7 @@ static int txq_reclaim(struct tx_queue *txq, int budget, int force) | |||
| 913 | dev_kfree_skb(skb); | 913 | dev_kfree_skb(skb); |
| 914 | } | 914 | } |
| 915 | 915 | ||
| 916 | __netif_tx_unlock(nq); | 916 | __netif_tx_unlock_bh(nq); |
| 917 | 917 | ||
| 918 | if (reclaimed < budget) | 918 | if (reclaimed < budget) |
| 919 | mp->work_tx &= ~(1 << txq->index); | 919 | mp->work_tx &= ~(1 << txq->index); |
| @@ -2745,7 +2745,7 @@ static int mv643xx_eth_probe(struct platform_device *pdev) | |||
| 2745 | 2745 | ||
| 2746 | INIT_WORK(&mp->tx_timeout_task, tx_timeout_task); | 2746 | INIT_WORK(&mp->tx_timeout_task, tx_timeout_task); |
| 2747 | 2747 | ||
| 2748 | netif_napi_add(dev, &mp->napi, mv643xx_eth_poll, 128); | 2748 | netif_napi_add(dev, &mp->napi, mv643xx_eth_poll, NAPI_POLL_WEIGHT); |
| 2749 | 2749 | ||
| 2750 | init_timer(&mp->rx_oom); | 2750 | init_timer(&mp->rx_oom); |
| 2751 | mp->rx_oom.data = (unsigned long)mp; | 2751 | mp->rx_oom.data = (unsigned long)mp; |
diff --git a/drivers/net/ethernet/qlogic/qlcnic/qlcnic.h b/drivers/net/ethernet/qlogic/qlcnic/qlcnic.h index 019c5f78732e..c1b693cb3df3 100644 --- a/drivers/net/ethernet/qlogic/qlcnic/qlcnic.h +++ b/drivers/net/ethernet/qlogic/qlcnic/qlcnic.h | |||
| @@ -907,8 +907,11 @@ struct qlcnic_ipaddr { | |||
| 907 | #define QLCNIC_FW_HANG 0x4000 | 907 | #define QLCNIC_FW_HANG 0x4000 |
| 908 | #define QLCNIC_FW_LRO_MSS_CAP 0x8000 | 908 | #define QLCNIC_FW_LRO_MSS_CAP 0x8000 |
| 909 | #define QLCNIC_TX_INTR_SHARED 0x10000 | 909 | #define QLCNIC_TX_INTR_SHARED 0x10000 |
| 910 | #define QLCNIC_APP_CHANGED_FLAGS 0x20000 | ||
| 910 | #define QLCNIC_IS_MSI_FAMILY(adapter) \ | 911 | #define QLCNIC_IS_MSI_FAMILY(adapter) \ |
| 911 | ((adapter)->flags & (QLCNIC_MSI_ENABLED | QLCNIC_MSIX_ENABLED)) | 912 | ((adapter)->flags & (QLCNIC_MSI_ENABLED | QLCNIC_MSIX_ENABLED)) |
| 913 | #define QLCNIC_IS_TSO_CAPABLE(adapter) \ | ||
| 914 | ((adapter)->ahw->capabilities & QLCNIC_FW_CAPABILITY_TSO) | ||
| 912 | 915 | ||
| 913 | #define QLCNIC_DEF_NUM_STS_DESC_RINGS 4 | 916 | #define QLCNIC_DEF_NUM_STS_DESC_RINGS 4 |
| 914 | #define QLCNIC_MSIX_TBL_SPACE 8192 | 917 | #define QLCNIC_MSIX_TBL_SPACE 8192 |
| @@ -1034,6 +1037,7 @@ struct qlcnic_adapter { | |||
| 1034 | spinlock_t rx_mac_learn_lock; | 1037 | spinlock_t rx_mac_learn_lock; |
| 1035 | u32 file_prd_off; /*File fw product offset*/ | 1038 | u32 file_prd_off; /*File fw product offset*/ |
| 1036 | u32 fw_version; | 1039 | u32 fw_version; |
| 1040 | u32 offload_flags; | ||
| 1037 | const struct firmware *fw; | 1041 | const struct firmware *fw; |
| 1038 | }; | 1042 | }; |
| 1039 | 1043 | ||
| @@ -1542,6 +1546,8 @@ void qlcnic_add_lb_filter(struct qlcnic_adapter *, struct sk_buff *, int, u16); | |||
| 1542 | int qlcnic_83xx_configure_opmode(struct qlcnic_adapter *adapter); | 1546 | int qlcnic_83xx_configure_opmode(struct qlcnic_adapter *adapter); |
| 1543 | int qlcnic_read_mac_addr(struct qlcnic_adapter *); | 1547 | int qlcnic_read_mac_addr(struct qlcnic_adapter *); |
| 1544 | int qlcnic_setup_netdev(struct qlcnic_adapter *, struct net_device *, int); | 1548 | int qlcnic_setup_netdev(struct qlcnic_adapter *, struct net_device *, int); |
| 1549 | void qlcnic_set_netdev_features(struct qlcnic_adapter *, | ||
| 1550 | struct qlcnic_esw_func_cfg *); | ||
| 1545 | void qlcnic_sriov_vf_schedule_multi(struct net_device *); | 1551 | void qlcnic_sriov_vf_schedule_multi(struct net_device *); |
| 1546 | void qlcnic_vf_add_mc_list(struct net_device *, u16); | 1552 | void qlcnic_vf_add_mc_list(struct net_device *, u16); |
| 1547 | 1553 | ||
diff --git a/drivers/net/ethernet/qlogic/qlcnic/qlcnic_83xx_init.c b/drivers/net/ethernet/qlogic/qlcnic/qlcnic_83xx_init.c index c67d1eb35e8f..5e7fb1dfb97b 100644 --- a/drivers/net/ethernet/qlogic/qlcnic/qlcnic_83xx_init.c +++ b/drivers/net/ethernet/qlogic/qlcnic/qlcnic_83xx_init.c | |||
| @@ -382,8 +382,6 @@ static int qlcnic_83xx_idc_tx_soft_reset(struct qlcnic_adapter *adapter) | |||
| 382 | clear_bit(__QLCNIC_RESETTING, &adapter->state); | 382 | clear_bit(__QLCNIC_RESETTING, &adapter->state); |
| 383 | dev_err(&adapter->pdev->dev, "%s:\n", __func__); | 383 | dev_err(&adapter->pdev->dev, "%s:\n", __func__); |
| 384 | 384 | ||
| 385 | adapter->netdev->trans_start = jiffies; | ||
| 386 | |||
| 387 | return 0; | 385 | return 0; |
| 388 | } | 386 | } |
| 389 | 387 | ||
diff --git a/drivers/net/ethernet/qlogic/qlcnic/qlcnic_hw.c b/drivers/net/ethernet/qlogic/qlcnic/qlcnic_hw.c index 6a6512ba9f38..106a12f2a02f 100644 --- a/drivers/net/ethernet/qlogic/qlcnic/qlcnic_hw.c +++ b/drivers/net/ethernet/qlogic/qlcnic/qlcnic_hw.c | |||
| @@ -973,16 +973,57 @@ int qlcnic_change_mtu(struct net_device *netdev, int mtu) | |||
| 973 | return rc; | 973 | return rc; |
| 974 | } | 974 | } |
| 975 | 975 | ||
| 976 | static netdev_features_t qlcnic_process_flags(struct qlcnic_adapter *adapter, | ||
| 977 | netdev_features_t features) | ||
| 978 | { | ||
| 979 | u32 offload_flags = adapter->offload_flags; | ||
| 980 | |||
| 981 | if (offload_flags & BIT_0) { | ||
| 982 | features |= NETIF_F_RXCSUM | NETIF_F_IP_CSUM | | ||
| 983 | NETIF_F_IPV6_CSUM; | ||
| 984 | adapter->rx_csum = 1; | ||
| 985 | if (QLCNIC_IS_TSO_CAPABLE(adapter)) { | ||
| 986 | if (!(offload_flags & BIT_1)) | ||
| 987 | features &= ~NETIF_F_TSO; | ||
| 988 | else | ||
| 989 | features |= NETIF_F_TSO; | ||
| 990 | |||
| 991 | if (!(offload_flags & BIT_2)) | ||
| 992 | features &= ~NETIF_F_TSO6; | ||
| 993 | else | ||
| 994 | features |= NETIF_F_TSO6; | ||
| 995 | } | ||
| 996 | } else { | ||
| 997 | features &= ~(NETIF_F_RXCSUM | | ||
| 998 | NETIF_F_IP_CSUM | | ||
| 999 | NETIF_F_IPV6_CSUM); | ||
| 1000 | |||
| 1001 | if (QLCNIC_IS_TSO_CAPABLE(adapter)) | ||
| 1002 | features &= ~(NETIF_F_TSO | NETIF_F_TSO6); | ||
| 1003 | adapter->rx_csum = 0; | ||
| 1004 | } | ||
| 1005 | |||
| 1006 | return features; | ||
| 1007 | } | ||
| 976 | 1008 | ||
| 977 | netdev_features_t qlcnic_fix_features(struct net_device *netdev, | 1009 | netdev_features_t qlcnic_fix_features(struct net_device *netdev, |
| 978 | netdev_features_t features) | 1010 | netdev_features_t features) |
| 979 | { | 1011 | { |
| 980 | struct qlcnic_adapter *adapter = netdev_priv(netdev); | 1012 | struct qlcnic_adapter *adapter = netdev_priv(netdev); |
| 1013 | netdev_features_t changed; | ||
| 981 | 1014 | ||
| 982 | if ((adapter->flags & QLCNIC_ESWITCH_ENABLED) && | 1015 | if (qlcnic_82xx_check(adapter) && |
| 983 | qlcnic_82xx_check(adapter)) { | 1016 | (adapter->flags & QLCNIC_ESWITCH_ENABLED)) { |
| 984 | netdev_features_t changed = features ^ netdev->features; | 1017 | if (adapter->flags & QLCNIC_APP_CHANGED_FLAGS) { |
| 985 | features ^= changed & (NETIF_F_ALL_CSUM | NETIF_F_RXCSUM); | 1018 | features = qlcnic_process_flags(adapter, features); |
| 1019 | } else { | ||
| 1020 | changed = features ^ netdev->features; | ||
| 1021 | features ^= changed & (NETIF_F_RXCSUM | | ||
| 1022 | NETIF_F_IP_CSUM | | ||
| 1023 | NETIF_F_IPV6_CSUM | | ||
| 1024 | NETIF_F_TSO | | ||
| 1025 | NETIF_F_TSO6); | ||
| 1026 | } | ||
| 986 | } | 1027 | } |
| 987 | 1028 | ||
| 988 | if (!(features & NETIF_F_RXCSUM)) | 1029 | if (!(features & NETIF_F_RXCSUM)) |
diff --git a/drivers/net/ethernet/qlogic/qlcnic/qlcnic_main.c b/drivers/net/ethernet/qlogic/qlcnic/qlcnic_main.c index 8fb836d4129f..aeb26a850679 100644 --- a/drivers/net/ethernet/qlogic/qlcnic/qlcnic_main.c +++ b/drivers/net/ethernet/qlogic/qlcnic/qlcnic_main.c | |||
| @@ -84,14 +84,9 @@ static int qlcnic_start_firmware(struct qlcnic_adapter *); | |||
| 84 | static void qlcnic_free_lb_filters_mem(struct qlcnic_adapter *adapter); | 84 | static void qlcnic_free_lb_filters_mem(struct qlcnic_adapter *adapter); |
| 85 | static void qlcnic_dev_set_npar_ready(struct qlcnic_adapter *); | 85 | static void qlcnic_dev_set_npar_ready(struct qlcnic_adapter *); |
| 86 | static int qlcnicvf_start_firmware(struct qlcnic_adapter *); | 86 | static int qlcnicvf_start_firmware(struct qlcnic_adapter *); |
| 87 | static void qlcnic_set_netdev_features(struct qlcnic_adapter *, | ||
| 88 | struct qlcnic_esw_func_cfg *); | ||
| 89 | static int qlcnic_vlan_rx_add(struct net_device *, __be16, u16); | 87 | static int qlcnic_vlan_rx_add(struct net_device *, __be16, u16); |
| 90 | static int qlcnic_vlan_rx_del(struct net_device *, __be16, u16); | 88 | static int qlcnic_vlan_rx_del(struct net_device *, __be16, u16); |
| 91 | 89 | ||
| 92 | #define QLCNIC_IS_TSO_CAPABLE(adapter) \ | ||
| 93 | ((adapter)->ahw->capabilities & QLCNIC_FW_CAPABILITY_TSO) | ||
| 94 | |||
| 95 | static u32 qlcnic_vlan_tx_check(struct qlcnic_adapter *adapter) | 90 | static u32 qlcnic_vlan_tx_check(struct qlcnic_adapter *adapter) |
| 96 | { | 91 | { |
| 97 | struct qlcnic_hardware_context *ahw = adapter->ahw; | 92 | struct qlcnic_hardware_context *ahw = adapter->ahw; |
| @@ -1074,8 +1069,6 @@ void qlcnic_set_eswitch_port_features(struct qlcnic_adapter *adapter, | |||
| 1074 | 1069 | ||
| 1075 | if (!esw_cfg->promisc_mode) | 1070 | if (!esw_cfg->promisc_mode) |
| 1076 | adapter->flags |= QLCNIC_PROMISC_DISABLED; | 1071 | adapter->flags |= QLCNIC_PROMISC_DISABLED; |
| 1077 | |||
| 1078 | qlcnic_set_netdev_features(adapter, esw_cfg); | ||
| 1079 | } | 1072 | } |
| 1080 | 1073 | ||
| 1081 | int qlcnic_set_eswitch_port_config(struct qlcnic_adapter *adapter) | 1074 | int qlcnic_set_eswitch_port_config(struct qlcnic_adapter *adapter) |
| @@ -1090,51 +1083,23 @@ int qlcnic_set_eswitch_port_config(struct qlcnic_adapter *adapter) | |||
| 1090 | return -EIO; | 1083 | return -EIO; |
| 1091 | qlcnic_set_vlan_config(adapter, &esw_cfg); | 1084 | qlcnic_set_vlan_config(adapter, &esw_cfg); |
| 1092 | qlcnic_set_eswitch_port_features(adapter, &esw_cfg); | 1085 | qlcnic_set_eswitch_port_features(adapter, &esw_cfg); |
| 1086 | qlcnic_set_netdev_features(adapter, &esw_cfg); | ||
| 1093 | 1087 | ||
| 1094 | return 0; | 1088 | return 0; |
| 1095 | } | 1089 | } |
| 1096 | 1090 | ||
| 1097 | static void | 1091 | void qlcnic_set_netdev_features(struct qlcnic_adapter *adapter, |
| 1098 | qlcnic_set_netdev_features(struct qlcnic_adapter *adapter, | 1092 | struct qlcnic_esw_func_cfg *esw_cfg) |
| 1099 | struct qlcnic_esw_func_cfg *esw_cfg) | ||
| 1100 | { | 1093 | { |
| 1101 | struct net_device *netdev = adapter->netdev; | 1094 | struct net_device *netdev = adapter->netdev; |
| 1102 | unsigned long features, vlan_features; | ||
| 1103 | 1095 | ||
| 1104 | if (qlcnic_83xx_check(adapter)) | 1096 | if (qlcnic_83xx_check(adapter)) |
| 1105 | return; | 1097 | return; |
| 1106 | 1098 | ||
| 1107 | features = (NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_RXCSUM | | 1099 | adapter->offload_flags = esw_cfg->offload_flags; |
| 1108 | NETIF_F_IPV6_CSUM | NETIF_F_GRO); | 1100 | adapter->flags |= QLCNIC_APP_CHANGED_FLAGS; |
| 1109 | vlan_features = (NETIF_F_SG | NETIF_F_IP_CSUM | | 1101 | netdev_update_features(netdev); |
| 1110 | NETIF_F_IPV6_CSUM); | 1102 | adapter->flags &= ~QLCNIC_APP_CHANGED_FLAGS; |
| 1111 | |||
| 1112 | if (QLCNIC_IS_TSO_CAPABLE(adapter)) { | ||
| 1113 | features |= (NETIF_F_TSO | NETIF_F_TSO6); | ||
| 1114 | vlan_features |= (NETIF_F_TSO | NETIF_F_TSO6); | ||
| 1115 | } | ||
| 1116 | |||
| 1117 | if (netdev->features & NETIF_F_LRO) | ||
| 1118 | features |= NETIF_F_LRO; | ||
| 1119 | |||
| 1120 | if (esw_cfg->offload_flags & BIT_0) { | ||
| 1121 | netdev->features |= features; | ||
| 1122 | adapter->rx_csum = 1; | ||
| 1123 | if (!(esw_cfg->offload_flags & BIT_1)) { | ||
| 1124 | netdev->features &= ~NETIF_F_TSO; | ||
| 1125 | features &= ~NETIF_F_TSO; | ||
| 1126 | } | ||
| 1127 | if (!(esw_cfg->offload_flags & BIT_2)) { | ||
| 1128 | netdev->features &= ~NETIF_F_TSO6; | ||
| 1129 | features &= ~NETIF_F_TSO6; | ||
| 1130 | } | ||
| 1131 | } else { | ||
| 1132 | netdev->features &= ~features; | ||
| 1133 | features &= ~features; | ||
| 1134 | adapter->rx_csum = 0; | ||
| 1135 | } | ||
| 1136 | |||
| 1137 | netdev->vlan_features = (features & vlan_features); | ||
| 1138 | } | 1103 | } |
| 1139 | 1104 | ||
| 1140 | static int | 1105 | static int |
| @@ -2016,8 +1981,10 @@ qlcnic_probe(struct pci_dev *pdev, const struct pci_device_id *ent) | |||
| 2016 | pci_enable_pcie_error_reporting(pdev); | 1981 | pci_enable_pcie_error_reporting(pdev); |
| 2017 | 1982 | ||
| 2018 | ahw = kzalloc(sizeof(struct qlcnic_hardware_context), GFP_KERNEL); | 1983 | ahw = kzalloc(sizeof(struct qlcnic_hardware_context), GFP_KERNEL); |
| 2019 | if (!ahw) | 1984 | if (!ahw) { |
| 1985 | err = -ENOMEM; | ||
| 2020 | goto err_out_free_res; | 1986 | goto err_out_free_res; |
| 1987 | } | ||
| 2021 | 1988 | ||
| 2022 | switch (ent->device) { | 1989 | switch (ent->device) { |
| 2023 | case PCI_DEVICE_ID_QLOGIC_QLE824X: | 1990 | case PCI_DEVICE_ID_QLOGIC_QLE824X: |
| @@ -2053,6 +2020,7 @@ qlcnic_probe(struct pci_dev *pdev, const struct pci_device_id *ent) | |||
| 2053 | 2020 | ||
| 2054 | adapter->qlcnic_wq = create_singlethread_workqueue("qlcnic"); | 2021 | adapter->qlcnic_wq = create_singlethread_workqueue("qlcnic"); |
| 2055 | if (adapter->qlcnic_wq == NULL) { | 2022 | if (adapter->qlcnic_wq == NULL) { |
| 2023 | err = -ENOMEM; | ||
| 2056 | dev_err(&pdev->dev, "Failed to create workqueue\n"); | 2024 | dev_err(&pdev->dev, "Failed to create workqueue\n"); |
| 2057 | goto err_out_free_netdev; | 2025 | goto err_out_free_netdev; |
| 2058 | } | 2026 | } |
| @@ -2133,6 +2101,10 @@ qlcnic_probe(struct pci_dev *pdev, const struct pci_device_id *ent) | |||
| 2133 | goto err_out_disable_msi; | 2101 | goto err_out_disable_msi; |
| 2134 | } | 2102 | } |
| 2135 | 2103 | ||
| 2104 | err = qlcnic_get_act_pci_func(adapter); | ||
| 2105 | if (err) | ||
| 2106 | goto err_out_disable_mbx_intr; | ||
| 2107 | |||
| 2136 | err = qlcnic_setup_netdev(adapter, netdev, pci_using_dac); | 2108 | err = qlcnic_setup_netdev(adapter, netdev, pci_using_dac); |
| 2137 | if (err) | 2109 | if (err) |
| 2138 | goto err_out_disable_mbx_intr; | 2110 | goto err_out_disable_mbx_intr; |
| @@ -2162,9 +2134,6 @@ qlcnic_probe(struct pci_dev *pdev, const struct pci_device_id *ent) | |||
| 2162 | break; | 2134 | break; |
| 2163 | } | 2135 | } |
| 2164 | 2136 | ||
| 2165 | if (qlcnic_get_act_pci_func(adapter)) | ||
| 2166 | goto err_out_disable_mbx_intr; | ||
| 2167 | |||
| 2168 | if (adapter->drv_mac_learn) | 2137 | if (adapter->drv_mac_learn) |
| 2169 | qlcnic_alloc_lb_filters_mem(adapter); | 2138 | qlcnic_alloc_lb_filters_mem(adapter); |
| 2170 | 2139 | ||
| @@ -3149,10 +3118,8 @@ qlcnic_check_health(struct qlcnic_adapter *adapter) | |||
| 3149 | if (adapter->need_fw_reset) | 3118 | if (adapter->need_fw_reset) |
| 3150 | goto detach; | 3119 | goto detach; |
| 3151 | 3120 | ||
| 3152 | if (adapter->ahw->reset_context && qlcnic_auto_fw_reset) { | 3121 | if (adapter->ahw->reset_context && qlcnic_auto_fw_reset) |
| 3153 | qlcnic_reset_hw_context(adapter); | 3122 | qlcnic_reset_hw_context(adapter); |
| 3154 | adapter->netdev->trans_start = jiffies; | ||
| 3155 | } | ||
| 3156 | 3123 | ||
| 3157 | return 0; | 3124 | return 0; |
| 3158 | } | 3125 | } |
diff --git a/drivers/net/ethernet/qlogic/qlcnic/qlcnic_sriov_common.c b/drivers/net/ethernet/qlogic/qlcnic/qlcnic_sriov_common.c index 3869c3864deb..196b2d100407 100644 --- a/drivers/net/ethernet/qlogic/qlcnic/qlcnic_sriov_common.c +++ b/drivers/net/ethernet/qlogic/qlcnic/qlcnic_sriov_common.c | |||
| @@ -1734,7 +1734,6 @@ static int qlcnic_sriov_vf_handle_context_reset(struct qlcnic_adapter *adapter) | |||
| 1734 | 1734 | ||
| 1735 | if (!qlcnic_sriov_vf_reinit_driver(adapter)) { | 1735 | if (!qlcnic_sriov_vf_reinit_driver(adapter)) { |
| 1736 | qlcnic_sriov_vf_attach(adapter); | 1736 | qlcnic_sriov_vf_attach(adapter); |
| 1737 | adapter->netdev->trans_start = jiffies; | ||
| 1738 | adapter->tx_timeo_cnt = 0; | 1737 | adapter->tx_timeo_cnt = 0; |
| 1739 | adapter->reset_ctx_cnt = 0; | 1738 | adapter->reset_ctx_cnt = 0; |
| 1740 | adapter->fw_fail_cnt = 0; | 1739 | adapter->fw_fail_cnt = 0; |
diff --git a/drivers/net/ethernet/qlogic/qlcnic/qlcnic_sysfs.c b/drivers/net/ethernet/qlogic/qlcnic/qlcnic_sysfs.c index 4e22e794a186..e7a2fe21b649 100644 --- a/drivers/net/ethernet/qlogic/qlcnic/qlcnic_sysfs.c +++ b/drivers/net/ethernet/qlogic/qlcnic/qlcnic_sysfs.c | |||
| @@ -544,6 +544,9 @@ static ssize_t qlcnic_sysfs_write_esw_config(struct file *file, | |||
| 544 | switch (esw_cfg[i].op_mode) { | 544 | switch (esw_cfg[i].op_mode) { |
| 545 | case QLCNIC_PORT_DEFAULTS: | 545 | case QLCNIC_PORT_DEFAULTS: |
| 546 | qlcnic_set_eswitch_port_features(adapter, &esw_cfg[i]); | 546 | qlcnic_set_eswitch_port_features(adapter, &esw_cfg[i]); |
| 547 | rtnl_lock(); | ||
| 548 | qlcnic_set_netdev_features(adapter, &esw_cfg[i]); | ||
| 549 | rtnl_unlock(); | ||
| 547 | break; | 550 | break; |
| 548 | case QLCNIC_ADD_VLAN: | 551 | case QLCNIC_ADD_VLAN: |
| 549 | qlcnic_set_vlan_config(adapter, &esw_cfg[i]); | 552 | qlcnic_set_vlan_config(adapter, &esw_cfg[i]); |
diff --git a/drivers/net/ethernet/realtek/8139cp.c b/drivers/net/ethernet/realtek/8139cp.c index 7d1fb9ad1296..03523459c406 100644 --- a/drivers/net/ethernet/realtek/8139cp.c +++ b/drivers/net/ethernet/realtek/8139cp.c | |||
| @@ -1136,6 +1136,7 @@ static void cp_clean_rings (struct cp_private *cp) | |||
| 1136 | cp->dev->stats.tx_dropped++; | 1136 | cp->dev->stats.tx_dropped++; |
| 1137 | } | 1137 | } |
| 1138 | } | 1138 | } |
| 1139 | netdev_reset_queue(cp->dev); | ||
| 1139 | 1140 | ||
| 1140 | memset(cp->rx_ring, 0, sizeof(struct cp_desc) * CP_RX_RING_SIZE); | 1141 | memset(cp->rx_ring, 0, sizeof(struct cp_desc) * CP_RX_RING_SIZE); |
| 1141 | memset(cp->tx_ring, 0, sizeof(struct cp_desc) * CP_TX_RING_SIZE); | 1142 | memset(cp->tx_ring, 0, sizeof(struct cp_desc) * CP_TX_RING_SIZE); |
diff --git a/drivers/net/ethernet/realtek/r8169.c b/drivers/net/ethernet/realtek/r8169.c index 79c520b64fdd..393f961a013c 100644 --- a/drivers/net/ethernet/realtek/r8169.c +++ b/drivers/net/ethernet/realtek/r8169.c | |||
| @@ -5856,7 +5856,20 @@ err_out: | |||
| 5856 | return -EIO; | 5856 | return -EIO; |
| 5857 | } | 5857 | } |
| 5858 | 5858 | ||
| 5859 | static inline void rtl8169_tso_csum(struct rtl8169_private *tp, | 5859 | static bool rtl_skb_pad(struct sk_buff *skb) |
| 5860 | { | ||
| 5861 | if (skb_padto(skb, ETH_ZLEN)) | ||
| 5862 | return false; | ||
| 5863 | skb_put(skb, ETH_ZLEN - skb->len); | ||
| 5864 | return true; | ||
| 5865 | } | ||
| 5866 | |||
| 5867 | static bool rtl_test_hw_pad_bug(struct rtl8169_private *tp, struct sk_buff *skb) | ||
| 5868 | { | ||
| 5869 | return skb->len < ETH_ZLEN && tp->mac_version == RTL_GIGA_MAC_VER_34; | ||
| 5870 | } | ||
| 5871 | |||
| 5872 | static inline bool rtl8169_tso_csum(struct rtl8169_private *tp, | ||
| 5860 | struct sk_buff *skb, u32 *opts) | 5873 | struct sk_buff *skb, u32 *opts) |
| 5861 | { | 5874 | { |
| 5862 | const struct rtl_tx_desc_info *info = tx_desc_info + tp->txd_version; | 5875 | const struct rtl_tx_desc_info *info = tx_desc_info + tp->txd_version; |
| @@ -5869,13 +5882,20 @@ static inline void rtl8169_tso_csum(struct rtl8169_private *tp, | |||
| 5869 | } else if (skb->ip_summed == CHECKSUM_PARTIAL) { | 5882 | } else if (skb->ip_summed == CHECKSUM_PARTIAL) { |
| 5870 | const struct iphdr *ip = ip_hdr(skb); | 5883 | const struct iphdr *ip = ip_hdr(skb); |
| 5871 | 5884 | ||
| 5885 | if (unlikely(rtl_test_hw_pad_bug(tp, skb))) | ||
| 5886 | return skb_checksum_help(skb) == 0 && rtl_skb_pad(skb); | ||
| 5887 | |||
| 5872 | if (ip->protocol == IPPROTO_TCP) | 5888 | if (ip->protocol == IPPROTO_TCP) |
| 5873 | opts[offset] |= info->checksum.tcp; | 5889 | opts[offset] |= info->checksum.tcp; |
| 5874 | else if (ip->protocol == IPPROTO_UDP) | 5890 | else if (ip->protocol == IPPROTO_UDP) |
| 5875 | opts[offset] |= info->checksum.udp; | 5891 | opts[offset] |= info->checksum.udp; |
| 5876 | else | 5892 | else |
| 5877 | WARN_ON_ONCE(1); | 5893 | WARN_ON_ONCE(1); |
| 5894 | } else { | ||
| 5895 | if (unlikely(rtl_test_hw_pad_bug(tp, skb))) | ||
| 5896 | return rtl_skb_pad(skb); | ||
| 5878 | } | 5897 | } |
| 5898 | return true; | ||
| 5879 | } | 5899 | } |
| 5880 | 5900 | ||
| 5881 | static netdev_tx_t rtl8169_start_xmit(struct sk_buff *skb, | 5901 | static netdev_tx_t rtl8169_start_xmit(struct sk_buff *skb, |
| @@ -5896,17 +5916,15 @@ static netdev_tx_t rtl8169_start_xmit(struct sk_buff *skb, | |||
| 5896 | goto err_stop_0; | 5916 | goto err_stop_0; |
| 5897 | } | 5917 | } |
| 5898 | 5918 | ||
| 5899 | /* 8168evl does not automatically pad to minimum length. */ | ||
| 5900 | if (unlikely(tp->mac_version == RTL_GIGA_MAC_VER_34 && | ||
| 5901 | skb->len < ETH_ZLEN)) { | ||
| 5902 | if (skb_padto(skb, ETH_ZLEN)) | ||
| 5903 | goto err_update_stats; | ||
| 5904 | skb_put(skb, ETH_ZLEN - skb->len); | ||
| 5905 | } | ||
| 5906 | |||
| 5907 | if (unlikely(le32_to_cpu(txd->opts1) & DescOwn)) | 5919 | if (unlikely(le32_to_cpu(txd->opts1) & DescOwn)) |
| 5908 | goto err_stop_0; | 5920 | goto err_stop_0; |
| 5909 | 5921 | ||
| 5922 | opts[1] = cpu_to_le32(rtl8169_tx_vlan_tag(skb)); | ||
| 5923 | opts[0] = DescOwn; | ||
| 5924 | |||
| 5925 | if (!rtl8169_tso_csum(tp, skb, opts)) | ||
| 5926 | goto err_update_stats; | ||
| 5927 | |||
| 5910 | len = skb_headlen(skb); | 5928 | len = skb_headlen(skb); |
| 5911 | mapping = dma_map_single(d, skb->data, len, DMA_TO_DEVICE); | 5929 | mapping = dma_map_single(d, skb->data, len, DMA_TO_DEVICE); |
| 5912 | if (unlikely(dma_mapping_error(d, mapping))) { | 5930 | if (unlikely(dma_mapping_error(d, mapping))) { |
| @@ -5918,11 +5936,6 @@ static netdev_tx_t rtl8169_start_xmit(struct sk_buff *skb, | |||
| 5918 | tp->tx_skb[entry].len = len; | 5936 | tp->tx_skb[entry].len = len; |
| 5919 | txd->addr = cpu_to_le64(mapping); | 5937 | txd->addr = cpu_to_le64(mapping); |
| 5920 | 5938 | ||
| 5921 | opts[1] = cpu_to_le32(rtl8169_tx_vlan_tag(skb)); | ||
| 5922 | opts[0] = DescOwn; | ||
| 5923 | |||
| 5924 | rtl8169_tso_csum(tp, skb, opts); | ||
| 5925 | |||
| 5926 | frags = rtl8169_xmit_frags(tp, skb, opts); | 5939 | frags = rtl8169_xmit_frags(tp, skb, opts); |
| 5927 | if (frags < 0) | 5940 | if (frags < 0) |
| 5928 | goto err_dma_1; | 5941 | goto err_dma_1; |
diff --git a/drivers/net/ethernet/sfc/efx.c b/drivers/net/ethernet/sfc/efx.c index 01b99206139a..39e4cb39de29 100644 --- a/drivers/net/ethernet/sfc/efx.c +++ b/drivers/net/ethernet/sfc/efx.c | |||
| @@ -638,14 +638,16 @@ static void efx_start_datapath(struct efx_nic *efx) | |||
| 638 | EFX_MAX_FRAME_LEN(efx->net_dev->mtu) + | 638 | EFX_MAX_FRAME_LEN(efx->net_dev->mtu) + |
| 639 | efx->type->rx_buffer_padding); | 639 | efx->type->rx_buffer_padding); |
| 640 | rx_buf_len = (sizeof(struct efx_rx_page_state) + | 640 | rx_buf_len = (sizeof(struct efx_rx_page_state) + |
| 641 | EFX_PAGE_IP_ALIGN + efx->rx_dma_len); | 641 | NET_IP_ALIGN + efx->rx_dma_len); |
| 642 | if (rx_buf_len <= PAGE_SIZE) { | 642 | if (rx_buf_len <= PAGE_SIZE) { |
| 643 | efx->rx_scatter = false; | 643 | efx->rx_scatter = false; |
| 644 | efx->rx_buffer_order = 0; | 644 | efx->rx_buffer_order = 0; |
| 645 | } else if (efx->type->can_rx_scatter) { | 645 | } else if (efx->type->can_rx_scatter) { |
| 646 | BUILD_BUG_ON(EFX_RX_USR_BUF_SIZE % L1_CACHE_BYTES); | ||
| 646 | BUILD_BUG_ON(sizeof(struct efx_rx_page_state) + | 647 | BUILD_BUG_ON(sizeof(struct efx_rx_page_state) + |
| 647 | EFX_PAGE_IP_ALIGN + EFX_RX_USR_BUF_SIZE > | 648 | 2 * ALIGN(NET_IP_ALIGN + EFX_RX_USR_BUF_SIZE, |
| 648 | PAGE_SIZE / 2); | 649 | EFX_RX_BUF_ALIGNMENT) > |
| 650 | PAGE_SIZE); | ||
| 649 | efx->rx_scatter = true; | 651 | efx->rx_scatter = true; |
| 650 | efx->rx_dma_len = EFX_RX_USR_BUF_SIZE; | 652 | efx->rx_dma_len = EFX_RX_USR_BUF_SIZE; |
| 651 | efx->rx_buffer_order = 0; | 653 | efx->rx_buffer_order = 0; |
diff --git a/drivers/net/ethernet/sfc/net_driver.h b/drivers/net/ethernet/sfc/net_driver.h index 9bd433a095c5..39d6bd77f015 100644 --- a/drivers/net/ethernet/sfc/net_driver.h +++ b/drivers/net/ethernet/sfc/net_driver.h | |||
| @@ -72,8 +72,20 @@ | |||
| 72 | /* Maximum possible MTU the driver supports */ | 72 | /* Maximum possible MTU the driver supports */ |
| 73 | #define EFX_MAX_MTU (9 * 1024) | 73 | #define EFX_MAX_MTU (9 * 1024) |
| 74 | 74 | ||
| 75 | /* Size of an RX scatter buffer. Small enough to pack 2 into a 4K page. */ | 75 | /* Size of an RX scatter buffer. Small enough to pack 2 into a 4K page, |
| 76 | #define EFX_RX_USR_BUF_SIZE 1824 | 76 | * and should be a multiple of the cache line size. |
| 77 | */ | ||
| 78 | #define EFX_RX_USR_BUF_SIZE (2048 - 256) | ||
| 79 | |||
| 80 | /* If possible, we should ensure cache line alignment at start and end | ||
| 81 | * of every buffer. Otherwise, we just need to ensure 4-byte | ||
| 82 | * alignment of the network header. | ||
| 83 | */ | ||
| 84 | #if NET_IP_ALIGN == 0 | ||
| 85 | #define EFX_RX_BUF_ALIGNMENT L1_CACHE_BYTES | ||
| 86 | #else | ||
| 87 | #define EFX_RX_BUF_ALIGNMENT 4 | ||
| 88 | #endif | ||
| 77 | 89 | ||
| 78 | /* Forward declare Precision Time Protocol (PTP) support structure. */ | 90 | /* Forward declare Precision Time Protocol (PTP) support structure. */ |
| 79 | struct efx_ptp_data; | 91 | struct efx_ptp_data; |
| @@ -468,24 +480,11 @@ enum nic_state { | |||
| 468 | }; | 480 | }; |
| 469 | 481 | ||
| 470 | /* | 482 | /* |
| 471 | * Alignment of page-allocated RX buffers | ||
| 472 | * | ||
| 473 | * Controls the number of bytes inserted at the start of an RX buffer. | ||
| 474 | * This is the equivalent of NET_IP_ALIGN [which controls the alignment | ||
| 475 | * of the skb->head for hardware DMA]. | ||
| 476 | */ | ||
| 477 | #ifdef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS | ||
| 478 | #define EFX_PAGE_IP_ALIGN 0 | ||
| 479 | #else | ||
| 480 | #define EFX_PAGE_IP_ALIGN NET_IP_ALIGN | ||
| 481 | #endif | ||
| 482 | |||
| 483 | /* | ||
| 484 | * Alignment of the skb->head which wraps a page-allocated RX buffer | 483 | * Alignment of the skb->head which wraps a page-allocated RX buffer |
| 485 | * | 484 | * |
| 486 | * The skb allocated to wrap an rx_buffer can have this alignment. Since | 485 | * The skb allocated to wrap an rx_buffer can have this alignment. Since |
| 487 | * the data is memcpy'd from the rx_buf, it does not need to be equal to | 486 | * the data is memcpy'd from the rx_buf, it does not need to be equal to |
| 488 | * EFX_PAGE_IP_ALIGN. | 487 | * NET_IP_ALIGN. |
| 489 | */ | 488 | */ |
| 490 | #define EFX_PAGE_SKB_ALIGN 2 | 489 | #define EFX_PAGE_SKB_ALIGN 2 |
| 491 | 490 | ||
diff --git a/drivers/net/ethernet/sfc/rx.c b/drivers/net/ethernet/sfc/rx.c index e73e30bac10e..a7dfe36cabf4 100644 --- a/drivers/net/ethernet/sfc/rx.c +++ b/drivers/net/ethernet/sfc/rx.c | |||
| @@ -93,8 +93,8 @@ static inline void efx_sync_rx_buffer(struct efx_nic *efx, | |||
| 93 | 93 | ||
| 94 | void efx_rx_config_page_split(struct efx_nic *efx) | 94 | void efx_rx_config_page_split(struct efx_nic *efx) |
| 95 | { | 95 | { |
| 96 | efx->rx_page_buf_step = ALIGN(efx->rx_dma_len + EFX_PAGE_IP_ALIGN, | 96 | efx->rx_page_buf_step = ALIGN(efx->rx_dma_len + NET_IP_ALIGN, |
| 97 | L1_CACHE_BYTES); | 97 | EFX_RX_BUF_ALIGNMENT); |
| 98 | efx->rx_bufs_per_page = efx->rx_buffer_order ? 1 : | 98 | efx->rx_bufs_per_page = efx->rx_buffer_order ? 1 : |
| 99 | ((PAGE_SIZE - sizeof(struct efx_rx_page_state)) / | 99 | ((PAGE_SIZE - sizeof(struct efx_rx_page_state)) / |
| 100 | efx->rx_page_buf_step); | 100 | efx->rx_page_buf_step); |
| @@ -188,9 +188,9 @@ static int efx_init_rx_buffers(struct efx_rx_queue *rx_queue) | |||
| 188 | do { | 188 | do { |
| 189 | index = rx_queue->added_count & rx_queue->ptr_mask; | 189 | index = rx_queue->added_count & rx_queue->ptr_mask; |
| 190 | rx_buf = efx_rx_buffer(rx_queue, index); | 190 | rx_buf = efx_rx_buffer(rx_queue, index); |
| 191 | rx_buf->dma_addr = dma_addr + EFX_PAGE_IP_ALIGN; | 191 | rx_buf->dma_addr = dma_addr + NET_IP_ALIGN; |
| 192 | rx_buf->page = page; | 192 | rx_buf->page = page; |
| 193 | rx_buf->page_offset = page_offset + EFX_PAGE_IP_ALIGN; | 193 | rx_buf->page_offset = page_offset + NET_IP_ALIGN; |
| 194 | rx_buf->len = efx->rx_dma_len; | 194 | rx_buf->len = efx->rx_dma_len; |
| 195 | rx_buf->flags = 0; | 195 | rx_buf->flags = 0; |
| 196 | ++rx_queue->added_count; | 196 | ++rx_queue->added_count; |
diff --git a/drivers/net/usb/qmi_wwan.c b/drivers/net/usb/qmi_wwan.c index cf887c2384e9..86adfa0a912e 100644 --- a/drivers/net/usb/qmi_wwan.c +++ b/drivers/net/usb/qmi_wwan.c | |||
| @@ -582,6 +582,7 @@ static const struct usb_device_id products[] = { | |||
| 582 | {QMI_FIXED_INTF(0x1bbb, 0x011e, 4)}, /* Telekom Speedstick LTE II (Alcatel One Touch L100V LTE) */ | 582 | {QMI_FIXED_INTF(0x1bbb, 0x011e, 4)}, /* Telekom Speedstick LTE II (Alcatel One Touch L100V LTE) */ |
| 583 | {QMI_FIXED_INTF(0x2357, 0x0201, 4)}, /* TP-LINK HSUPA Modem MA180 */ | 583 | {QMI_FIXED_INTF(0x2357, 0x0201, 4)}, /* TP-LINK HSUPA Modem MA180 */ |
| 584 | {QMI_FIXED_INTF(0x1bc7, 0x1200, 5)}, /* Telit LE920 */ | 584 | {QMI_FIXED_INTF(0x1bc7, 0x1200, 5)}, /* Telit LE920 */ |
| 585 | {QMI_FIXED_INTF(0x1e2d, 0x12d1, 4)}, /* Cinterion PLxx */ | ||
| 585 | 586 | ||
| 586 | /* 4. Gobi 1000 devices */ | 587 | /* 4. Gobi 1000 devices */ |
| 587 | {QMI_GOBI1K_DEVICE(0x05c6, 0x9212)}, /* Acer Gobi Modem Device */ | 588 | {QMI_GOBI1K_DEVICE(0x05c6, 0x9212)}, /* Acer Gobi Modem Device */ |
diff --git a/drivers/net/usb/rtl8150.c b/drivers/net/usb/rtl8150.c index a491d3a95393..6cbdac67f3a0 100644 --- a/drivers/net/usb/rtl8150.c +++ b/drivers/net/usb/rtl8150.c | |||
| @@ -130,19 +130,23 @@ struct rtl8150 { | |||
| 130 | struct usb_device *udev; | 130 | struct usb_device *udev; |
| 131 | struct tasklet_struct tl; | 131 | struct tasklet_struct tl; |
| 132 | struct net_device *netdev; | 132 | struct net_device *netdev; |
| 133 | struct urb *rx_urb, *tx_urb, *intr_urb, *ctrl_urb; | 133 | struct urb *rx_urb, *tx_urb, *intr_urb; |
| 134 | struct sk_buff *tx_skb, *rx_skb; | 134 | struct sk_buff *tx_skb, *rx_skb; |
| 135 | struct sk_buff *rx_skb_pool[RX_SKB_POOL_SIZE]; | 135 | struct sk_buff *rx_skb_pool[RX_SKB_POOL_SIZE]; |
| 136 | spinlock_t rx_pool_lock; | 136 | spinlock_t rx_pool_lock; |
| 137 | struct usb_ctrlrequest dr; | 137 | struct usb_ctrlrequest dr; |
| 138 | int intr_interval; | 138 | int intr_interval; |
| 139 | __le16 rx_creg; | ||
| 140 | u8 *intr_buff; | 139 | u8 *intr_buff; |
| 141 | u8 phy; | 140 | u8 phy; |
| 142 | }; | 141 | }; |
| 143 | 142 | ||
| 144 | typedef struct rtl8150 rtl8150_t; | 143 | typedef struct rtl8150 rtl8150_t; |
| 145 | 144 | ||
| 145 | struct async_req { | ||
| 146 | struct usb_ctrlrequest dr; | ||
| 147 | u16 rx_creg; | ||
| 148 | }; | ||
| 149 | |||
| 146 | static const char driver_name [] = "rtl8150"; | 150 | static const char driver_name [] = "rtl8150"; |
| 147 | 151 | ||
| 148 | /* | 152 | /* |
| @@ -164,51 +168,47 @@ static int set_registers(rtl8150_t * dev, u16 indx, u16 size, void *data) | |||
| 164 | indx, 0, data, size, 500); | 168 | indx, 0, data, size, 500); |
| 165 | } | 169 | } |
| 166 | 170 | ||
| 167 | static void ctrl_callback(struct urb *urb) | 171 | static void async_set_reg_cb(struct urb *urb) |
| 168 | { | 172 | { |
| 169 | rtl8150_t *dev; | 173 | struct async_req *req = (struct async_req *)urb->context; |
| 170 | int status = urb->status; | 174 | int status = urb->status; |
| 171 | 175 | ||
| 172 | switch (status) { | 176 | if (status < 0) |
| 173 | case 0: | 177 | dev_dbg(&urb->dev->dev, "%s failed with %d", __func__, status); |
| 174 | break; | 178 | kfree(req); |
| 175 | case -EINPROGRESS: | 179 | usb_free_urb(urb); |
| 176 | break; | ||
| 177 | case -ENOENT: | ||
| 178 | break; | ||
| 179 | default: | ||
| 180 | if (printk_ratelimit()) | ||
| 181 | dev_warn(&urb->dev->dev, "ctrl urb status %d\n", status); | ||
| 182 | } | ||
| 183 | dev = urb->context; | ||
| 184 | clear_bit(RX_REG_SET, &dev->flags); | ||
| 185 | } | 180 | } |
| 186 | 181 | ||
| 187 | static int async_set_registers(rtl8150_t * dev, u16 indx, u16 size) | 182 | static int async_set_registers(rtl8150_t *dev, u16 indx, u16 size, u16 reg) |
| 188 | { | 183 | { |
| 189 | int ret; | 184 | int res = -ENOMEM; |
| 190 | 185 | struct urb *async_urb; | |
| 191 | if (test_bit(RX_REG_SET, &dev->flags)) | 186 | struct async_req *req; |
| 192 | return -EAGAIN; | ||
| 193 | 187 | ||
| 194 | dev->dr.bRequestType = RTL8150_REQT_WRITE; | 188 | req = kmalloc(sizeof(struct async_req), GFP_ATOMIC); |
| 195 | dev->dr.bRequest = RTL8150_REQ_SET_REGS; | 189 | if (req == NULL) |
| 196 | dev->dr.wValue = cpu_to_le16(indx); | 190 | return res; |
| 197 | dev->dr.wIndex = 0; | 191 | async_urb = usb_alloc_urb(0, GFP_ATOMIC); |
| 198 | dev->dr.wLength = cpu_to_le16(size); | 192 | if (async_urb == NULL) { |
| 199 | dev->ctrl_urb->transfer_buffer_length = size; | 193 | kfree(req); |
| 200 | usb_fill_control_urb(dev->ctrl_urb, dev->udev, | 194 | return res; |
| 201 | usb_sndctrlpipe(dev->udev, 0), (char *) &dev->dr, | 195 | } |
| 202 | &dev->rx_creg, size, ctrl_callback, dev); | 196 | req->rx_creg = cpu_to_le16(reg); |
| 203 | if ((ret = usb_submit_urb(dev->ctrl_urb, GFP_ATOMIC))) { | 197 | req->dr.bRequestType = RTL8150_REQT_WRITE; |
| 204 | if (ret == -ENODEV) | 198 | req->dr.bRequest = RTL8150_REQ_SET_REGS; |
| 199 | req->dr.wIndex = 0; | ||
| 200 | req->dr.wValue = cpu_to_le16(indx); | ||
| 201 | req->dr.wLength = cpu_to_le16(size); | ||
| 202 | usb_fill_control_urb(async_urb, dev->udev, | ||
| 203 | usb_sndctrlpipe(dev->udev, 0), (void *)&req->dr, | ||
| 204 | &req->rx_creg, size, async_set_reg_cb, req); | ||
| 205 | res = usb_submit_urb(async_urb, GFP_ATOMIC); | ||
| 206 | if (res) { | ||
| 207 | if (res == -ENODEV) | ||
| 205 | netif_device_detach(dev->netdev); | 208 | netif_device_detach(dev->netdev); |
| 206 | dev_err(&dev->udev->dev, | 209 | dev_err(&dev->udev->dev, "%s failed with %d\n", __func__, res); |
| 207 | "control request submission failed: %d\n", ret); | 210 | } |
| 208 | } else | 211 | return res; |
| 209 | set_bit(RX_REG_SET, &dev->flags); | ||
| 210 | |||
| 211 | return ret; | ||
| 212 | } | 212 | } |
| 213 | 213 | ||
| 214 | static int read_mii_word(rtl8150_t * dev, u8 phy, __u8 indx, u16 * reg) | 214 | static int read_mii_word(rtl8150_t * dev, u8 phy, __u8 indx, u16 * reg) |
| @@ -330,13 +330,6 @@ static int alloc_all_urbs(rtl8150_t * dev) | |||
| 330 | usb_free_urb(dev->tx_urb); | 330 | usb_free_urb(dev->tx_urb); |
| 331 | return 0; | 331 | return 0; |
| 332 | } | 332 | } |
| 333 | dev->ctrl_urb = usb_alloc_urb(0, GFP_KERNEL); | ||
| 334 | if (!dev->ctrl_urb) { | ||
| 335 | usb_free_urb(dev->rx_urb); | ||
| 336 | usb_free_urb(dev->tx_urb); | ||
| 337 | usb_free_urb(dev->intr_urb); | ||
| 338 | return 0; | ||
| 339 | } | ||
| 340 | 333 | ||
| 341 | return 1; | 334 | return 1; |
| 342 | } | 335 | } |
| @@ -346,7 +339,6 @@ static void free_all_urbs(rtl8150_t * dev) | |||
| 346 | usb_free_urb(dev->rx_urb); | 339 | usb_free_urb(dev->rx_urb); |
| 347 | usb_free_urb(dev->tx_urb); | 340 | usb_free_urb(dev->tx_urb); |
| 348 | usb_free_urb(dev->intr_urb); | 341 | usb_free_urb(dev->intr_urb); |
| 349 | usb_free_urb(dev->ctrl_urb); | ||
| 350 | } | 342 | } |
| 351 | 343 | ||
| 352 | static void unlink_all_urbs(rtl8150_t * dev) | 344 | static void unlink_all_urbs(rtl8150_t * dev) |
| @@ -354,7 +346,6 @@ static void unlink_all_urbs(rtl8150_t * dev) | |||
| 354 | usb_kill_urb(dev->rx_urb); | 346 | usb_kill_urb(dev->rx_urb); |
| 355 | usb_kill_urb(dev->tx_urb); | 347 | usb_kill_urb(dev->tx_urb); |
| 356 | usb_kill_urb(dev->intr_urb); | 348 | usb_kill_urb(dev->intr_urb); |
| 357 | usb_kill_urb(dev->ctrl_urb); | ||
| 358 | } | 349 | } |
| 359 | 350 | ||
| 360 | static inline struct sk_buff *pull_skb(rtl8150_t *dev) | 351 | static inline struct sk_buff *pull_skb(rtl8150_t *dev) |
| @@ -629,7 +620,6 @@ static int enable_net_traffic(rtl8150_t * dev) | |||
| 629 | } | 620 | } |
| 630 | /* RCR bit7=1 attach Rx info at the end; =0 HW CRC (which is broken) */ | 621 | /* RCR bit7=1 attach Rx info at the end; =0 HW CRC (which is broken) */ |
| 631 | rcr = 0x9e; | 622 | rcr = 0x9e; |
| 632 | dev->rx_creg = cpu_to_le16(rcr); | ||
| 633 | tcr = 0xd8; | 623 | tcr = 0xd8; |
| 634 | cr = 0x0c; | 624 | cr = 0x0c; |
| 635 | if (!(rcr & 0x80)) | 625 | if (!(rcr & 0x80)) |
| @@ -662,20 +652,22 @@ static void rtl8150_tx_timeout(struct net_device *netdev) | |||
| 662 | static void rtl8150_set_multicast(struct net_device *netdev) | 652 | static void rtl8150_set_multicast(struct net_device *netdev) |
| 663 | { | 653 | { |
| 664 | rtl8150_t *dev = netdev_priv(netdev); | 654 | rtl8150_t *dev = netdev_priv(netdev); |
| 655 | u16 rx_creg = 0x9e; | ||
| 656 | |||
| 665 | netif_stop_queue(netdev); | 657 | netif_stop_queue(netdev); |
| 666 | if (netdev->flags & IFF_PROMISC) { | 658 | if (netdev->flags & IFF_PROMISC) { |
| 667 | dev->rx_creg |= cpu_to_le16(0x0001); | 659 | rx_creg |= 0x0001; |
| 668 | dev_info(&netdev->dev, "%s: promiscuous mode\n", netdev->name); | 660 | dev_info(&netdev->dev, "%s: promiscuous mode\n", netdev->name); |
| 669 | } else if (!netdev_mc_empty(netdev) || | 661 | } else if (!netdev_mc_empty(netdev) || |
| 670 | (netdev->flags & IFF_ALLMULTI)) { | 662 | (netdev->flags & IFF_ALLMULTI)) { |
| 671 | dev->rx_creg &= cpu_to_le16(0xfffe); | 663 | rx_creg &= 0xfffe; |
| 672 | dev->rx_creg |= cpu_to_le16(0x0002); | 664 | rx_creg |= 0x0002; |
| 673 | dev_info(&netdev->dev, "%s: allmulti set\n", netdev->name); | 665 | dev_info(&netdev->dev, "%s: allmulti set\n", netdev->name); |
| 674 | } else { | 666 | } else { |
| 675 | /* ~RX_MULTICAST, ~RX_PROMISCUOUS */ | 667 | /* ~RX_MULTICAST, ~RX_PROMISCUOUS */ |
| 676 | dev->rx_creg &= cpu_to_le16(0x00fc); | 668 | rx_creg &= 0x00fc; |
| 677 | } | 669 | } |
| 678 | async_set_registers(dev, RCR, 2); | 670 | async_set_registers(dev, RCR, sizeof(rx_creg), rx_creg); |
| 679 | netif_wake_queue(netdev); | 671 | netif_wake_queue(netdev); |
| 680 | } | 672 | } |
| 681 | 673 | ||
diff --git a/drivers/net/usb/usbnet.c b/drivers/net/usb/usbnet.c index f95cb032394b..06ee82f557d4 100644 --- a/drivers/net/usb/usbnet.c +++ b/drivers/net/usb/usbnet.c | |||
| @@ -1477,7 +1477,7 @@ usbnet_probe (struct usb_interface *udev, const struct usb_device_id *prod) | |||
| 1477 | 1477 | ||
| 1478 | /* usbnet already took usb runtime pm, so have to enable the feature | 1478 | /* usbnet already took usb runtime pm, so have to enable the feature |
| 1479 | * for usb interface, otherwise usb_autopm_get_interface may return | 1479 | * for usb interface, otherwise usb_autopm_get_interface may return |
| 1480 | * failure if USB_SUSPEND(RUNTIME_PM) is enabled. | 1480 | * failure if RUNTIME_PM is enabled. |
| 1481 | */ | 1481 | */ |
| 1482 | if (!driver->supports_autosuspend) { | 1482 | if (!driver->supports_autosuspend) { |
| 1483 | driver->supports_autosuspend = 1; | 1483 | driver->supports_autosuspend = 1; |
diff --git a/drivers/net/virtio_net.c b/drivers/net/virtio_net.c index 655bb25eed2b..c9e00387d999 100644 --- a/drivers/net/virtio_net.c +++ b/drivers/net/virtio_net.c | |||
| @@ -636,10 +636,11 @@ static int virtnet_open(struct net_device *dev) | |||
| 636 | struct virtnet_info *vi = netdev_priv(dev); | 636 | struct virtnet_info *vi = netdev_priv(dev); |
| 637 | int i; | 637 | int i; |
| 638 | 638 | ||
| 639 | for (i = 0; i < vi->curr_queue_pairs; i++) { | 639 | for (i = 0; i < vi->max_queue_pairs; i++) { |
| 640 | /* Make sure we have some buffers: if oom use wq. */ | 640 | if (i < vi->curr_queue_pairs) |
| 641 | if (!try_fill_recv(&vi->rq[i], GFP_KERNEL)) | 641 | /* Make sure we have some buffers: if oom use wq. */ |
| 642 | schedule_delayed_work(&vi->refill, 0); | 642 | if (!try_fill_recv(&vi->rq[i], GFP_KERNEL)) |
| 643 | schedule_delayed_work(&vi->refill, 0); | ||
| 643 | virtnet_napi_enable(&vi->rq[i]); | 644 | virtnet_napi_enable(&vi->rq[i]); |
| 644 | } | 645 | } |
| 645 | 646 | ||
diff --git a/drivers/net/vxlan.c b/drivers/net/vxlan.c index ba81f3c39a83..3b1d2ee7156b 100644 --- a/drivers/net/vxlan.c +++ b/drivers/net/vxlan.c | |||
| @@ -301,7 +301,7 @@ static inline struct hlist_head *vxlan_fdb_head(struct vxlan_dev *vxlan, | |||
| 301 | } | 301 | } |
| 302 | 302 | ||
| 303 | /* Look up Ethernet address in forwarding table */ | 303 | /* Look up Ethernet address in forwarding table */ |
| 304 | static struct vxlan_fdb *vxlan_find_mac(struct vxlan_dev *vxlan, | 304 | static struct vxlan_fdb *__vxlan_find_mac(struct vxlan_dev *vxlan, |
| 305 | const u8 *mac) | 305 | const u8 *mac) |
| 306 | 306 | ||
| 307 | { | 307 | { |
| @@ -316,6 +316,18 @@ static struct vxlan_fdb *vxlan_find_mac(struct vxlan_dev *vxlan, | |||
| 316 | return NULL; | 316 | return NULL; |
| 317 | } | 317 | } |
| 318 | 318 | ||
| 319 | static struct vxlan_fdb *vxlan_find_mac(struct vxlan_dev *vxlan, | ||
| 320 | const u8 *mac) | ||
| 321 | { | ||
| 322 | struct vxlan_fdb *f; | ||
| 323 | |||
| 324 | f = __vxlan_find_mac(vxlan, mac); | ||
| 325 | if (f) | ||
| 326 | f->used = jiffies; | ||
| 327 | |||
| 328 | return f; | ||
| 329 | } | ||
| 330 | |||
| 319 | /* Add/update destinations for multicast */ | 331 | /* Add/update destinations for multicast */ |
| 320 | static int vxlan_fdb_append(struct vxlan_fdb *f, | 332 | static int vxlan_fdb_append(struct vxlan_fdb *f, |
| 321 | __be32 ip, __be16 port, __u32 vni, __u32 ifindex) | 333 | __be32 ip, __be16 port, __u32 vni, __u32 ifindex) |
| @@ -353,7 +365,7 @@ static int vxlan_fdb_create(struct vxlan_dev *vxlan, | |||
| 353 | struct vxlan_fdb *f; | 365 | struct vxlan_fdb *f; |
| 354 | int notify = 0; | 366 | int notify = 0; |
| 355 | 367 | ||
| 356 | f = vxlan_find_mac(vxlan, mac); | 368 | f = __vxlan_find_mac(vxlan, mac); |
| 357 | if (f) { | 369 | if (f) { |
| 358 | if (flags & NLM_F_EXCL) { | 370 | if (flags & NLM_F_EXCL) { |
| 359 | netdev_dbg(vxlan->dev, | 371 | netdev_dbg(vxlan->dev, |
| @@ -563,7 +575,6 @@ static void vxlan_snoop(struct net_device *dev, | |||
| 563 | 575 | ||
| 564 | f = vxlan_find_mac(vxlan, src_mac); | 576 | f = vxlan_find_mac(vxlan, src_mac); |
| 565 | if (likely(f)) { | 577 | if (likely(f)) { |
| 566 | f->used = jiffies; | ||
| 567 | if (likely(f->remote.remote_ip == src_ip)) | 578 | if (likely(f->remote.remote_ip == src_ip)) |
| 568 | return; | 579 | return; |
| 569 | 580 | ||
diff --git a/drivers/net/wireless/ath/ath9k/ar9003_calib.c b/drivers/net/wireless/ath/ath9k/ar9003_calib.c index 639ba7d18ea4..6988e1d081f2 100644 --- a/drivers/net/wireless/ath/ath9k/ar9003_calib.c +++ b/drivers/net/wireless/ath/ath9k/ar9003_calib.c | |||
| @@ -965,7 +965,7 @@ static void ar9003_hw_do_manual_peak_cal(struct ath_hw *ah, | |||
| 965 | { | 965 | { |
| 966 | int i; | 966 | int i; |
| 967 | 967 | ||
| 968 | if (!AR_SREV_9462(ah) && !AR_SREV_9565(ah)) | 968 | if (!AR_SREV_9462(ah) && !AR_SREV_9565(ah) && !AR_SREV_9485(ah)) |
| 969 | return; | 969 | return; |
| 970 | 970 | ||
| 971 | for (i = 0; i < AR9300_MAX_CHAINS; i++) { | 971 | for (i = 0; i < AR9300_MAX_CHAINS; i++) { |
diff --git a/drivers/net/wireless/ath/ath9k/ar9485_initvals.h b/drivers/net/wireless/ath/ath9k/ar9485_initvals.h index 712f415b8c08..88ff1d7b53ab 100644 --- a/drivers/net/wireless/ath/ath9k/ar9485_initvals.h +++ b/drivers/net/wireless/ath/ath9k/ar9485_initvals.h | |||
| @@ -1020,7 +1020,7 @@ static const u32 ar9485_1_1_baseband_postamble[][5] = { | |||
| 1020 | {0x0000a284, 0x00000000, 0x00000000, 0x000002a0, 0x000002a0}, | 1020 | {0x0000a284, 0x00000000, 0x00000000, 0x000002a0, 0x000002a0}, |
| 1021 | {0x0000a288, 0x00000000, 0x00000000, 0x00000000, 0x00000000}, | 1021 | {0x0000a288, 0x00000000, 0x00000000, 0x00000000, 0x00000000}, |
| 1022 | {0x0000a28c, 0x00000000, 0x00000000, 0x00000000, 0x00000000}, | 1022 | {0x0000a28c, 0x00000000, 0x00000000, 0x00000000, 0x00000000}, |
| 1023 | {0x0000a2c4, 0x00158d18, 0x00158d18, 0x00158d18, 0x00158d18}, | 1023 | {0x0000a2c4, 0x00158d18, 0x00158d18, 0x00058d18, 0x00058d18}, |
| 1024 | {0x0000a2d0, 0x00071981, 0x00071981, 0x00071982, 0x00071982}, | 1024 | {0x0000a2d0, 0x00071981, 0x00071981, 0x00071982, 0x00071982}, |
| 1025 | {0x0000a2d8, 0xf999a83a, 0xf999a83a, 0xf999a83a, 0xf999a83a}, | 1025 | {0x0000a2d8, 0xf999a83a, 0xf999a83a, 0xf999a83a, 0xf999a83a}, |
| 1026 | {0x0000a358, 0x00000000, 0x00000000, 0x00000000, 0x00000000}, | 1026 | {0x0000a358, 0x00000000, 0x00000000, 0x00000000, 0x00000000}, |
diff --git a/drivers/net/wireless/ath/ath9k/ath9k.h b/drivers/net/wireless/ath/ath9k/ath9k.h index 8a1888d02070..366002f266f8 100644 --- a/drivers/net/wireless/ath/ath9k/ath9k.h +++ b/drivers/net/wireless/ath/ath9k/ath9k.h | |||
| @@ -254,6 +254,7 @@ struct ath_atx_tid { | |||
| 254 | int sched; | 254 | int sched; |
| 255 | int paused; | 255 | int paused; |
| 256 | u8 state; | 256 | u8 state; |
| 257 | bool stop_cb; | ||
| 257 | }; | 258 | }; |
| 258 | 259 | ||
| 259 | struct ath_node { | 260 | struct ath_node { |
| @@ -351,7 +352,8 @@ void ath_tx_tasklet(struct ath_softc *sc); | |||
| 351 | void ath_tx_edma_tasklet(struct ath_softc *sc); | 352 | void ath_tx_edma_tasklet(struct ath_softc *sc); |
| 352 | int ath_tx_aggr_start(struct ath_softc *sc, struct ieee80211_sta *sta, | 353 | int ath_tx_aggr_start(struct ath_softc *sc, struct ieee80211_sta *sta, |
| 353 | u16 tid, u16 *ssn); | 354 | u16 tid, u16 *ssn); |
| 354 | void ath_tx_aggr_stop(struct ath_softc *sc, struct ieee80211_sta *sta, u16 tid); | 355 | bool ath_tx_aggr_stop(struct ath_softc *sc, struct ieee80211_sta *sta, u16 tid, |
| 356 | bool flush); | ||
| 355 | void ath_tx_aggr_resume(struct ath_softc *sc, struct ieee80211_sta *sta, u16 tid); | 357 | void ath_tx_aggr_resume(struct ath_softc *sc, struct ieee80211_sta *sta, u16 tid); |
| 356 | 358 | ||
| 357 | void ath_tx_aggr_wakeup(struct ath_softc *sc, struct ath_node *an); | 359 | void ath_tx_aggr_wakeup(struct ath_softc *sc, struct ath_node *an); |
diff --git a/drivers/net/wireless/ath/ath9k/debug.c b/drivers/net/wireless/ath/ath9k/debug.c index e6307b86363a..b37eb8d38811 100644 --- a/drivers/net/wireless/ath/ath9k/debug.c +++ b/drivers/net/wireless/ath/ath9k/debug.c | |||
| @@ -2008,6 +2008,14 @@ void ath9k_get_et_stats(struct ieee80211_hw *hw, | |||
| 2008 | WARN_ON(i != ATH9K_SSTATS_LEN); | 2008 | WARN_ON(i != ATH9K_SSTATS_LEN); |
| 2009 | } | 2009 | } |
| 2010 | 2010 | ||
| 2011 | void ath9k_deinit_debug(struct ath_softc *sc) | ||
| 2012 | { | ||
| 2013 | if (config_enabled(CONFIG_ATH9K_DEBUGFS) && sc->rfs_chan_spec_scan) { | ||
| 2014 | relay_close(sc->rfs_chan_spec_scan); | ||
| 2015 | sc->rfs_chan_spec_scan = NULL; | ||
| 2016 | } | ||
| 2017 | } | ||
| 2018 | |||
| 2011 | int ath9k_init_debug(struct ath_hw *ah) | 2019 | int ath9k_init_debug(struct ath_hw *ah) |
| 2012 | { | 2020 | { |
| 2013 | struct ath_common *common = ath9k_hw_common(ah); | 2021 | struct ath_common *common = ath9k_hw_common(ah); |
diff --git a/drivers/net/wireless/ath/ath9k/debug.h b/drivers/net/wireless/ath/ath9k/debug.h index 794a7ec83a24..9d49aab8b989 100644 --- a/drivers/net/wireless/ath/ath9k/debug.h +++ b/drivers/net/wireless/ath/ath9k/debug.h | |||
| @@ -304,6 +304,7 @@ struct ath9k_debug { | |||
| 304 | }; | 304 | }; |
| 305 | 305 | ||
| 306 | int ath9k_init_debug(struct ath_hw *ah); | 306 | int ath9k_init_debug(struct ath_hw *ah); |
| 307 | void ath9k_deinit_debug(struct ath_softc *sc); | ||
| 307 | 308 | ||
| 308 | void ath_debug_stat_interrupt(struct ath_softc *sc, enum ath9k_int status); | 309 | void ath_debug_stat_interrupt(struct ath_softc *sc, enum ath9k_int status); |
| 309 | void ath_debug_stat_tx(struct ath_softc *sc, struct ath_buf *bf, | 310 | void ath_debug_stat_tx(struct ath_softc *sc, struct ath_buf *bf, |
| @@ -339,6 +340,10 @@ static inline int ath9k_init_debug(struct ath_hw *ah) | |||
| 339 | return 0; | 340 | return 0; |
| 340 | } | 341 | } |
| 341 | 342 | ||
| 343 | static inline void ath9k_deinit_debug(struct ath_softc *sc) | ||
| 344 | { | ||
| 345 | } | ||
| 346 | |||
| 342 | static inline void ath_debug_stat_interrupt(struct ath_softc *sc, | 347 | static inline void ath_debug_stat_interrupt(struct ath_softc *sc, |
| 343 | enum ath9k_int status) | 348 | enum ath9k_int status) |
| 344 | { | 349 | { |
diff --git a/drivers/net/wireless/ath/ath9k/init.c b/drivers/net/wireless/ath/ath9k/init.c index 0237b2868961..aba415103f94 100644 --- a/drivers/net/wireless/ath/ath9k/init.c +++ b/drivers/net/wireless/ath/ath9k/init.c | |||
| @@ -906,7 +906,7 @@ int ath9k_init_device(u16 devid, struct ath_softc *sc, | |||
| 906 | if (!ath_is_world_regd(reg)) { | 906 | if (!ath_is_world_regd(reg)) { |
| 907 | error = regulatory_hint(hw->wiphy, reg->alpha2); | 907 | error = regulatory_hint(hw->wiphy, reg->alpha2); |
| 908 | if (error) | 908 | if (error) |
| 909 | goto unregister; | 909 | goto debug_cleanup; |
| 910 | } | 910 | } |
| 911 | 911 | ||
| 912 | ath_init_leds(sc); | 912 | ath_init_leds(sc); |
| @@ -914,6 +914,8 @@ int ath9k_init_device(u16 devid, struct ath_softc *sc, | |||
| 914 | 914 | ||
| 915 | return 0; | 915 | return 0; |
| 916 | 916 | ||
| 917 | debug_cleanup: | ||
| 918 | ath9k_deinit_debug(sc); | ||
| 917 | unregister: | 919 | unregister: |
| 918 | ieee80211_unregister_hw(hw); | 920 | ieee80211_unregister_hw(hw); |
| 919 | rx_cleanup: | 921 | rx_cleanup: |
| @@ -942,11 +944,6 @@ static void ath9k_deinit_softc(struct ath_softc *sc) | |||
| 942 | sc->dfs_detector->exit(sc->dfs_detector); | 944 | sc->dfs_detector->exit(sc->dfs_detector); |
| 943 | 945 | ||
| 944 | ath9k_eeprom_release(sc); | 946 | ath9k_eeprom_release(sc); |
| 945 | |||
| 946 | if (config_enabled(CONFIG_ATH9K_DEBUGFS) && sc->rfs_chan_spec_scan) { | ||
| 947 | relay_close(sc->rfs_chan_spec_scan); | ||
| 948 | sc->rfs_chan_spec_scan = NULL; | ||
| 949 | } | ||
| 950 | } | 947 | } |
| 951 | 948 | ||
| 952 | void ath9k_deinit_device(struct ath_softc *sc) | 949 | void ath9k_deinit_device(struct ath_softc *sc) |
| @@ -960,6 +957,7 @@ void ath9k_deinit_device(struct ath_softc *sc) | |||
| 960 | 957 | ||
| 961 | ath9k_ps_restore(sc); | 958 | ath9k_ps_restore(sc); |
| 962 | 959 | ||
| 960 | ath9k_deinit_debug(sc); | ||
| 963 | ieee80211_unregister_hw(hw); | 961 | ieee80211_unregister_hw(hw); |
| 964 | ath_rx_cleanup(sc); | 962 | ath_rx_cleanup(sc); |
| 965 | ath9k_deinit_softc(sc); | 963 | ath9k_deinit_softc(sc); |
diff --git a/drivers/net/wireless/ath/ath9k/main.c b/drivers/net/wireless/ath/ath9k/main.c index a18414b5948b..2382d1262e7f 100644 --- a/drivers/net/wireless/ath/ath9k/main.c +++ b/drivers/net/wireless/ath/ath9k/main.c | |||
| @@ -1687,6 +1687,7 @@ static int ath9k_ampdu_action(struct ieee80211_hw *hw, | |||
| 1687 | u16 tid, u16 *ssn, u8 buf_size) | 1687 | u16 tid, u16 *ssn, u8 buf_size) |
| 1688 | { | 1688 | { |
| 1689 | struct ath_softc *sc = hw->priv; | 1689 | struct ath_softc *sc = hw->priv; |
| 1690 | bool flush = false; | ||
| 1690 | int ret = 0; | 1691 | int ret = 0; |
| 1691 | 1692 | ||
| 1692 | local_bh_disable(); | 1693 | local_bh_disable(); |
| @@ -1703,12 +1704,13 @@ static int ath9k_ampdu_action(struct ieee80211_hw *hw, | |||
| 1703 | ieee80211_start_tx_ba_cb_irqsafe(vif, sta->addr, tid); | 1704 | ieee80211_start_tx_ba_cb_irqsafe(vif, sta->addr, tid); |
| 1704 | ath9k_ps_restore(sc); | 1705 | ath9k_ps_restore(sc); |
| 1705 | break; | 1706 | break; |
| 1706 | case IEEE80211_AMPDU_TX_STOP_CONT: | ||
| 1707 | case IEEE80211_AMPDU_TX_STOP_FLUSH: | 1707 | case IEEE80211_AMPDU_TX_STOP_FLUSH: |
| 1708 | case IEEE80211_AMPDU_TX_STOP_FLUSH_CONT: | 1708 | case IEEE80211_AMPDU_TX_STOP_FLUSH_CONT: |
| 1709 | flush = true; | ||
| 1710 | case IEEE80211_AMPDU_TX_STOP_CONT: | ||
| 1709 | ath9k_ps_wakeup(sc); | 1711 | ath9k_ps_wakeup(sc); |
| 1710 | ath_tx_aggr_stop(sc, sta, tid); | 1712 | if (ath_tx_aggr_stop(sc, sta, tid, flush)) |
| 1711 | ieee80211_stop_tx_ba_cb_irqsafe(vif, sta->addr, tid); | 1713 | ieee80211_stop_tx_ba_cb_irqsafe(vif, sta->addr, tid); |
| 1712 | ath9k_ps_restore(sc); | 1714 | ath9k_ps_restore(sc); |
| 1713 | break; | 1715 | break; |
| 1714 | case IEEE80211_AMPDU_TX_OPERATIONAL: | 1716 | case IEEE80211_AMPDU_TX_OPERATIONAL: |
diff --git a/drivers/net/wireless/ath/ath9k/xmit.c b/drivers/net/wireless/ath/ath9k/xmit.c index eab0fcb7ded6..14bb3354ea64 100644 --- a/drivers/net/wireless/ath/ath9k/xmit.c +++ b/drivers/net/wireless/ath/ath9k/xmit.c | |||
| @@ -164,7 +164,20 @@ static void ath_set_rates(struct ieee80211_vif *vif, struct ieee80211_sta *sta, | |||
| 164 | ARRAY_SIZE(bf->rates)); | 164 | ARRAY_SIZE(bf->rates)); |
| 165 | } | 165 | } |
| 166 | 166 | ||
| 167 | static void ath_tx_flush_tid(struct ath_softc *sc, struct ath_atx_tid *tid) | 167 | static void ath_tx_clear_tid(struct ath_softc *sc, struct ath_atx_tid *tid) |
| 168 | { | ||
| 169 | tid->state &= ~AGGR_ADDBA_COMPLETE; | ||
| 170 | tid->state &= ~AGGR_CLEANUP; | ||
| 171 | if (!tid->stop_cb) | ||
| 172 | return; | ||
| 173 | |||
| 174 | ieee80211_start_tx_ba_cb_irqsafe(tid->an->vif, tid->an->sta->addr, | ||
| 175 | tid->tidno); | ||
| 176 | tid->stop_cb = false; | ||
| 177 | } | ||
| 178 | |||
| 179 | static void ath_tx_flush_tid(struct ath_softc *sc, struct ath_atx_tid *tid, | ||
| 180 | bool flush_packets) | ||
| 168 | { | 181 | { |
| 169 | struct ath_txq *txq = tid->ac->txq; | 182 | struct ath_txq *txq = tid->ac->txq; |
| 170 | struct sk_buff *skb; | 183 | struct sk_buff *skb; |
| @@ -181,16 +194,15 @@ static void ath_tx_flush_tid(struct ath_softc *sc, struct ath_atx_tid *tid) | |||
| 181 | while ((skb = __skb_dequeue(&tid->buf_q))) { | 194 | while ((skb = __skb_dequeue(&tid->buf_q))) { |
| 182 | fi = get_frame_info(skb); | 195 | fi = get_frame_info(skb); |
| 183 | bf = fi->bf; | 196 | bf = fi->bf; |
| 197 | if (!bf && !flush_packets) | ||
| 198 | bf = ath_tx_setup_buffer(sc, txq, tid, skb); | ||
| 184 | 199 | ||
| 185 | if (!bf) { | 200 | if (!bf) { |
| 186 | bf = ath_tx_setup_buffer(sc, txq, tid, skb); | 201 | ieee80211_free_txskb(sc->hw, skb); |
| 187 | if (!bf) { | 202 | continue; |
| 188 | ieee80211_free_txskb(sc->hw, skb); | ||
| 189 | continue; | ||
| 190 | } | ||
| 191 | } | 203 | } |
| 192 | 204 | ||
| 193 | if (fi->retries) { | 205 | if (fi->retries || flush_packets) { |
| 194 | list_add_tail(&bf->list, &bf_head); | 206 | list_add_tail(&bf->list, &bf_head); |
| 195 | ath_tx_update_baw(sc, tid, bf->bf_state.seqno); | 207 | ath_tx_update_baw(sc, tid, bf->bf_state.seqno); |
| 196 | ath_tx_complete_buf(sc, bf, txq, &bf_head, &ts, 0); | 208 | ath_tx_complete_buf(sc, bf, txq, &bf_head, &ts, 0); |
| @@ -201,12 +213,10 @@ static void ath_tx_flush_tid(struct ath_softc *sc, struct ath_atx_tid *tid) | |||
| 201 | } | 213 | } |
| 202 | } | 214 | } |
| 203 | 215 | ||
| 204 | if (tid->baw_head == tid->baw_tail) { | 216 | if (tid->baw_head == tid->baw_tail) |
| 205 | tid->state &= ~AGGR_ADDBA_COMPLETE; | 217 | ath_tx_clear_tid(sc, tid); |
| 206 | tid->state &= ~AGGR_CLEANUP; | ||
| 207 | } | ||
| 208 | 218 | ||
| 209 | if (sendbar) { | 219 | if (sendbar && !flush_packets) { |
| 210 | ath_txq_unlock(sc, txq); | 220 | ath_txq_unlock(sc, txq); |
| 211 | ath_send_bar(tid, tid->seq_start); | 221 | ath_send_bar(tid, tid->seq_start); |
| 212 | ath_txq_lock(sc, txq); | 222 | ath_txq_lock(sc, txq); |
| @@ -277,9 +287,7 @@ static void ath_tid_drain(struct ath_softc *sc, struct ath_txq *txq, | |||
| 277 | 287 | ||
| 278 | list_add_tail(&bf->list, &bf_head); | 288 | list_add_tail(&bf->list, &bf_head); |
| 279 | 289 | ||
| 280 | if (fi->retries) | 290 | ath_tx_update_baw(sc, tid, bf->bf_state.seqno); |
| 281 | ath_tx_update_baw(sc, tid, bf->bf_state.seqno); | ||
| 282 | |||
| 283 | ath_tx_complete_buf(sc, bf, txq, &bf_head, &ts, 0); | 291 | ath_tx_complete_buf(sc, bf, txq, &bf_head, &ts, 0); |
| 284 | } | 292 | } |
| 285 | 293 | ||
| @@ -602,7 +610,7 @@ static void ath_tx_complete_aggr(struct ath_softc *sc, struct ath_txq *txq, | |||
| 602 | } | 610 | } |
| 603 | 611 | ||
| 604 | if (tid->state & AGGR_CLEANUP) | 612 | if (tid->state & AGGR_CLEANUP) |
| 605 | ath_tx_flush_tid(sc, tid); | 613 | ath_tx_flush_tid(sc, tid, false); |
| 606 | 614 | ||
| 607 | rcu_read_unlock(); | 615 | rcu_read_unlock(); |
| 608 | 616 | ||
| @@ -620,6 +628,7 @@ static void ath_tx_process_buffer(struct ath_softc *sc, struct ath_txq *txq, | |||
| 620 | struct ath_tx_status *ts, struct ath_buf *bf, | 628 | struct ath_tx_status *ts, struct ath_buf *bf, |
| 621 | struct list_head *bf_head) | 629 | struct list_head *bf_head) |
| 622 | { | 630 | { |
| 631 | struct ieee80211_tx_info *info; | ||
| 623 | bool txok, flush; | 632 | bool txok, flush; |
| 624 | 633 | ||
| 625 | txok = !(ts->ts_status & ATH9K_TXERR_MASK); | 634 | txok = !(ts->ts_status & ATH9K_TXERR_MASK); |
| @@ -631,8 +640,12 @@ static void ath_tx_process_buffer(struct ath_softc *sc, struct ath_txq *txq, | |||
| 631 | txq->axq_ampdu_depth--; | 640 | txq->axq_ampdu_depth--; |
| 632 | 641 | ||
| 633 | if (!bf_isampdu(bf)) { | 642 | if (!bf_isampdu(bf)) { |
| 634 | if (!flush) | 643 | if (!flush) { |
| 644 | info = IEEE80211_SKB_CB(bf->bf_mpdu); | ||
| 645 | memcpy(info->control.rates, bf->rates, | ||
| 646 | sizeof(info->control.rates)); | ||
| 635 | ath_tx_rc_status(sc, bf, ts, 1, txok ? 0 : 1, txok); | 647 | ath_tx_rc_status(sc, bf, ts, 1, txok ? 0 : 1, txok); |
| 648 | } | ||
| 636 | ath_tx_complete_buf(sc, bf, txq, bf_head, ts, txok); | 649 | ath_tx_complete_buf(sc, bf, txq, bf_head, ts, txok); |
| 637 | } else | 650 | } else |
| 638 | ath_tx_complete_aggr(sc, txq, bf, bf_head, ts, txok); | 651 | ath_tx_complete_aggr(sc, txq, bf, bf_head, ts, txok); |
| @@ -676,7 +689,7 @@ static u32 ath_lookup_rate(struct ath_softc *sc, struct ath_buf *bf, | |||
| 676 | 689 | ||
| 677 | skb = bf->bf_mpdu; | 690 | skb = bf->bf_mpdu; |
| 678 | tx_info = IEEE80211_SKB_CB(skb); | 691 | tx_info = IEEE80211_SKB_CB(skb); |
| 679 | rates = tx_info->control.rates; | 692 | rates = bf->rates; |
| 680 | 693 | ||
| 681 | /* | 694 | /* |
| 682 | * Find the lowest frame length among the rate series that will have a | 695 | * Find the lowest frame length among the rate series that will have a |
| @@ -1256,18 +1269,23 @@ int ath_tx_aggr_start(struct ath_softc *sc, struct ieee80211_sta *sta, | |||
| 1256 | return 0; | 1269 | return 0; |
| 1257 | } | 1270 | } |
| 1258 | 1271 | ||
| 1259 | void ath_tx_aggr_stop(struct ath_softc *sc, struct ieee80211_sta *sta, u16 tid) | 1272 | bool ath_tx_aggr_stop(struct ath_softc *sc, struct ieee80211_sta *sta, u16 tid, |
| 1273 | bool flush) | ||
| 1260 | { | 1274 | { |
| 1261 | struct ath_node *an = (struct ath_node *)sta->drv_priv; | 1275 | struct ath_node *an = (struct ath_node *)sta->drv_priv; |
| 1262 | struct ath_atx_tid *txtid = ATH_AN_2_TID(an, tid); | 1276 | struct ath_atx_tid *txtid = ATH_AN_2_TID(an, tid); |
| 1263 | struct ath_txq *txq = txtid->ac->txq; | 1277 | struct ath_txq *txq = txtid->ac->txq; |
| 1278 | bool ret = !flush; | ||
| 1279 | |||
| 1280 | if (flush) | ||
| 1281 | txtid->stop_cb = false; | ||
| 1264 | 1282 | ||
| 1265 | if (txtid->state & AGGR_CLEANUP) | 1283 | if (txtid->state & AGGR_CLEANUP) |
| 1266 | return; | 1284 | return false; |
| 1267 | 1285 | ||
| 1268 | if (!(txtid->state & AGGR_ADDBA_COMPLETE)) { | 1286 | if (!(txtid->state & AGGR_ADDBA_COMPLETE)) { |
| 1269 | txtid->state &= ~AGGR_ADDBA_PROGRESS; | 1287 | txtid->state &= ~AGGR_ADDBA_PROGRESS; |
| 1270 | return; | 1288 | return ret; |
| 1271 | } | 1289 | } |
| 1272 | 1290 | ||
| 1273 | ath_txq_lock(sc, txq); | 1291 | ath_txq_lock(sc, txq); |
| @@ -1279,13 +1297,17 @@ void ath_tx_aggr_stop(struct ath_softc *sc, struct ieee80211_sta *sta, u16 tid) | |||
| 1279 | * TID can only be reused after all in-progress subframes have been | 1297 | * TID can only be reused after all in-progress subframes have been |
| 1280 | * completed. | 1298 | * completed. |
| 1281 | */ | 1299 | */ |
| 1282 | if (txtid->baw_head != txtid->baw_tail) | 1300 | if (txtid->baw_head != txtid->baw_tail) { |
| 1283 | txtid->state |= AGGR_CLEANUP; | 1301 | txtid->state |= AGGR_CLEANUP; |
| 1284 | else | 1302 | ret = false; |
| 1303 | txtid->stop_cb = !flush; | ||
| 1304 | } else { | ||
| 1285 | txtid->state &= ~AGGR_ADDBA_COMPLETE; | 1305 | txtid->state &= ~AGGR_ADDBA_COMPLETE; |
| 1306 | } | ||
| 1286 | 1307 | ||
| 1287 | ath_tx_flush_tid(sc, txtid); | 1308 | ath_tx_flush_tid(sc, txtid, flush); |
| 1288 | ath_txq_unlock_complete(sc, txq); | 1309 | ath_txq_unlock_complete(sc, txq); |
| 1310 | return ret; | ||
| 1289 | } | 1311 | } |
| 1290 | 1312 | ||
| 1291 | void ath_tx_aggr_sleep(struct ieee80211_sta *sta, struct ath_softc *sc, | 1313 | void ath_tx_aggr_sleep(struct ieee80211_sta *sta, struct ath_softc *sc, |
| @@ -2415,6 +2437,7 @@ void ath_tx_node_init(struct ath_softc *sc, struct ath_node *an) | |||
| 2415 | tid->ac = &an->ac[acno]; | 2437 | tid->ac = &an->ac[acno]; |
| 2416 | tid->state &= ~AGGR_ADDBA_COMPLETE; | 2438 | tid->state &= ~AGGR_ADDBA_COMPLETE; |
| 2417 | tid->state &= ~AGGR_ADDBA_PROGRESS; | 2439 | tid->state &= ~AGGR_ADDBA_PROGRESS; |
| 2440 | tid->stop_cb = false; | ||
| 2418 | } | 2441 | } |
| 2419 | 2442 | ||
| 2420 | for (acno = 0, ac = &an->ac[acno]; | 2443 | for (acno = 0, ac = &an->ac[acno]; |
| @@ -2451,8 +2474,7 @@ void ath_tx_node_cleanup(struct ath_softc *sc, struct ath_node *an) | |||
| 2451 | } | 2474 | } |
| 2452 | 2475 | ||
| 2453 | ath_tid_drain(sc, txq, tid); | 2476 | ath_tid_drain(sc, txq, tid); |
| 2454 | tid->state &= ~AGGR_ADDBA_COMPLETE; | 2477 | ath_tx_clear_tid(sc, tid); |
| 2455 | tid->state &= ~AGGR_CLEANUP; | ||
| 2456 | 2478 | ||
| 2457 | ath_txq_unlock(sc, txq); | 2479 | ath_txq_unlock(sc, txq); |
| 2458 | } | 2480 | } |
diff --git a/drivers/net/wireless/brcm80211/brcmfmac/wl_cfg80211.c b/drivers/net/wireless/brcm80211/brcmfmac/wl_cfg80211.c index 6d758f285352..761f501959a9 100644 --- a/drivers/net/wireless/brcm80211/brcmfmac/wl_cfg80211.c +++ b/drivers/net/wireless/brcm80211/brcmfmac/wl_cfg80211.c | |||
| @@ -4140,6 +4140,10 @@ static const struct ieee80211_iface_limit brcmf_iface_limits[] = { | |||
| 4140 | .types = BIT(NL80211_IFTYPE_P2P_CLIENT) | | 4140 | .types = BIT(NL80211_IFTYPE_P2P_CLIENT) | |
| 4141 | BIT(NL80211_IFTYPE_P2P_GO) | 4141 | BIT(NL80211_IFTYPE_P2P_GO) |
| 4142 | }, | 4142 | }, |
| 4143 | { | ||
| 4144 | .max = 1, | ||
| 4145 | .types = BIT(NL80211_IFTYPE_P2P_DEVICE) | ||
| 4146 | } | ||
| 4143 | }; | 4147 | }; |
| 4144 | static const struct ieee80211_iface_combination brcmf_iface_combos[] = { | 4148 | static const struct ieee80211_iface_combination brcmf_iface_combos[] = { |
| 4145 | { | 4149 | { |
| @@ -4197,7 +4201,8 @@ static struct wiphy *brcmf_setup_wiphy(struct device *phydev) | |||
| 4197 | BIT(NL80211_IFTYPE_ADHOC) | | 4201 | BIT(NL80211_IFTYPE_ADHOC) | |
| 4198 | BIT(NL80211_IFTYPE_AP) | | 4202 | BIT(NL80211_IFTYPE_AP) | |
| 4199 | BIT(NL80211_IFTYPE_P2P_CLIENT) | | 4203 | BIT(NL80211_IFTYPE_P2P_CLIENT) | |
| 4200 | BIT(NL80211_IFTYPE_P2P_GO); | 4204 | BIT(NL80211_IFTYPE_P2P_GO) | |
| 4205 | BIT(NL80211_IFTYPE_P2P_DEVICE); | ||
| 4201 | wiphy->iface_combinations = brcmf_iface_combos; | 4206 | wiphy->iface_combinations = brcmf_iface_combos; |
| 4202 | wiphy->n_iface_combinations = ARRAY_SIZE(brcmf_iface_combos); | 4207 | wiphy->n_iface_combinations = ARRAY_SIZE(brcmf_iface_combos); |
| 4203 | wiphy->bands[IEEE80211_BAND_2GHZ] = &__wl_band_2ghz; | 4208 | wiphy->bands[IEEE80211_BAND_2GHZ] = &__wl_band_2ghz; |
diff --git a/drivers/net/wireless/iwlegacy/common.c b/drivers/net/wireless/iwlegacy/common.c index 592d0aa634a8..e9a3cbc409ae 100644 --- a/drivers/net/wireless/iwlegacy/common.c +++ b/drivers/net/wireless/iwlegacy/common.c | |||
| @@ -1423,7 +1423,7 @@ il_setup_rx_scan_handlers(struct il_priv *il) | |||
| 1423 | } | 1423 | } |
| 1424 | EXPORT_SYMBOL(il_setup_rx_scan_handlers); | 1424 | EXPORT_SYMBOL(il_setup_rx_scan_handlers); |
| 1425 | 1425 | ||
| 1426 | inline u16 | 1426 | u16 |
| 1427 | il_get_active_dwell_time(struct il_priv *il, enum ieee80211_band band, | 1427 | il_get_active_dwell_time(struct il_priv *il, enum ieee80211_band band, |
| 1428 | u8 n_probes) | 1428 | u8 n_probes) |
| 1429 | { | 1429 | { |
diff --git a/drivers/net/wireless/iwlwifi/mvm/fw-api.h b/drivers/net/wireless/iwlwifi/mvm/fw-api.h index 191dcae8ba47..c6384555aab4 100644 --- a/drivers/net/wireless/iwlwifi/mvm/fw-api.h +++ b/drivers/net/wireless/iwlwifi/mvm/fw-api.h | |||
| @@ -173,6 +173,8 @@ enum { | |||
| 173 | REPLY_DEBUG_CMD = 0xf0, | 173 | REPLY_DEBUG_CMD = 0xf0, |
| 174 | DEBUG_LOG_MSG = 0xf7, | 174 | DEBUG_LOG_MSG = 0xf7, |
| 175 | 175 | ||
| 176 | MCAST_FILTER_CMD = 0xd0, | ||
| 177 | |||
| 176 | /* D3 commands/notifications */ | 178 | /* D3 commands/notifications */ |
| 177 | D3_CONFIG_CMD = 0xd3, | 179 | D3_CONFIG_CMD = 0xd3, |
| 178 | PROT_OFFLOAD_CONFIG_CMD = 0xd4, | 180 | PROT_OFFLOAD_CONFIG_CMD = 0xd4, |
| @@ -948,4 +950,29 @@ struct iwl_set_calib_default_cmd { | |||
| 948 | u8 data[0]; | 950 | u8 data[0]; |
| 949 | } __packed; /* PHY_CALIB_OVERRIDE_VALUES_S */ | 951 | } __packed; /* PHY_CALIB_OVERRIDE_VALUES_S */ |
| 950 | 952 | ||
| 953 | #define MAX_PORT_ID_NUM 2 | ||
| 954 | |||
| 955 | /** | ||
| 956 | * struct iwl_mcast_filter_cmd - configure multicast filter. | ||
| 957 | * @filter_own: Set 1 to filter out multicast packets sent by station itself | ||
| 958 | * @port_id: Multicast MAC addresses array specifier. This is a strange way | ||
| 959 | * to identify network interface adopted in host-device IF. | ||
| 960 | * It is used by FW as index in array of addresses. This array has | ||
| 961 | * MAX_PORT_ID_NUM members. | ||
| 962 | * @count: Number of MAC addresses in the array | ||
| 963 | * @pass_all: Set 1 to pass all multicast packets. | ||
| 964 | * @bssid: current association BSSID. | ||
| 965 | * @addr_list: Place holder for array of MAC addresses. | ||
| 966 | * IMPORTANT: add padding if necessary to ensure DWORD alignment. | ||
| 967 | */ | ||
| 968 | struct iwl_mcast_filter_cmd { | ||
| 969 | u8 filter_own; | ||
| 970 | u8 port_id; | ||
| 971 | u8 count; | ||
| 972 | u8 pass_all; | ||
| 973 | u8 bssid[6]; | ||
| 974 | u8 reserved[2]; | ||
| 975 | u8 addr_list[0]; | ||
| 976 | } __packed; /* MCAST_FILTERING_CMD_API_S_VER_1 */ | ||
| 977 | |||
| 951 | #endif /* __fw_api_h__ */ | 978 | #endif /* __fw_api_h__ */ |
diff --git a/drivers/net/wireless/iwlwifi/mvm/mac-ctxt.c b/drivers/net/wireless/iwlwifi/mvm/mac-ctxt.c index e6eca4d66f6c..b2cc3d98e0f7 100644 --- a/drivers/net/wireless/iwlwifi/mvm/mac-ctxt.c +++ b/drivers/net/wireless/iwlwifi/mvm/mac-ctxt.c | |||
| @@ -586,10 +586,12 @@ static int iwl_mvm_mac_ctxt_send_cmd(struct iwl_mvm *mvm, | |||
| 586 | */ | 586 | */ |
| 587 | static void iwl_mvm_mac_ctxt_cmd_fill_sta(struct iwl_mvm *mvm, | 587 | static void iwl_mvm_mac_ctxt_cmd_fill_sta(struct iwl_mvm *mvm, |
| 588 | struct ieee80211_vif *vif, | 588 | struct ieee80211_vif *vif, |
| 589 | struct iwl_mac_data_sta *ctxt_sta) | 589 | struct iwl_mac_data_sta *ctxt_sta, |
| 590 | bool force_assoc_off) | ||
| 590 | { | 591 | { |
| 591 | /* We need the dtim_period to set the MAC as associated */ | 592 | /* We need the dtim_period to set the MAC as associated */ |
| 592 | if (vif->bss_conf.assoc && vif->bss_conf.dtim_period) { | 593 | if (vif->bss_conf.assoc && vif->bss_conf.dtim_period && |
| 594 | !force_assoc_off) { | ||
| 593 | u32 dtim_offs; | 595 | u32 dtim_offs; |
| 594 | 596 | ||
| 595 | /* | 597 | /* |
| @@ -659,7 +661,8 @@ static int iwl_mvm_mac_ctxt_cmd_station(struct iwl_mvm *mvm, | |||
| 659 | cmd.filter_flags &= ~cpu_to_le32(MAC_FILTER_IN_BEACON); | 661 | cmd.filter_flags &= ~cpu_to_le32(MAC_FILTER_IN_BEACON); |
| 660 | 662 | ||
| 661 | /* Fill the data specific for station mode */ | 663 | /* Fill the data specific for station mode */ |
| 662 | iwl_mvm_mac_ctxt_cmd_fill_sta(mvm, vif, &cmd.sta); | 664 | iwl_mvm_mac_ctxt_cmd_fill_sta(mvm, vif, &cmd.sta, |
| 665 | action == FW_CTXT_ACTION_ADD); | ||
| 663 | 666 | ||
| 664 | return iwl_mvm_mac_ctxt_send_cmd(mvm, &cmd); | 667 | return iwl_mvm_mac_ctxt_send_cmd(mvm, &cmd); |
| 665 | } | 668 | } |
| @@ -677,7 +680,8 @@ static int iwl_mvm_mac_ctxt_cmd_p2p_client(struct iwl_mvm *mvm, | |||
| 677 | iwl_mvm_mac_ctxt_cmd_common(mvm, vif, &cmd, action); | 680 | iwl_mvm_mac_ctxt_cmd_common(mvm, vif, &cmd, action); |
| 678 | 681 | ||
| 679 | /* Fill the data specific for station mode */ | 682 | /* Fill the data specific for station mode */ |
| 680 | iwl_mvm_mac_ctxt_cmd_fill_sta(mvm, vif, &cmd.p2p_sta.sta); | 683 | iwl_mvm_mac_ctxt_cmd_fill_sta(mvm, vif, &cmd.p2p_sta.sta, |
| 684 | action == FW_CTXT_ACTION_ADD); | ||
| 681 | 685 | ||
| 682 | cmd.p2p_sta.ctwin = cpu_to_le32(noa->oppps_ctwindow & | 686 | cmd.p2p_sta.ctwin = cpu_to_le32(noa->oppps_ctwindow & |
| 683 | IEEE80211_P2P_OPPPS_CTWINDOW_MASK); | 687 | IEEE80211_P2P_OPPPS_CTWINDOW_MASK); |
diff --git a/drivers/net/wireless/iwlwifi/mvm/mac80211.c b/drivers/net/wireless/iwlwifi/mvm/mac80211.c index dd158ec571fb..a5eb8c82f16a 100644 --- a/drivers/net/wireless/iwlwifi/mvm/mac80211.c +++ b/drivers/net/wireless/iwlwifi/mvm/mac80211.c | |||
| @@ -701,6 +701,20 @@ static void iwl_mvm_configure_filter(struct ieee80211_hw *hw, | |||
| 701 | *total_flags = 0; | 701 | *total_flags = 0; |
| 702 | } | 702 | } |
| 703 | 703 | ||
| 704 | static int iwl_mvm_configure_mcast_filter(struct iwl_mvm *mvm, | ||
| 705 | struct ieee80211_vif *vif) | ||
| 706 | { | ||
| 707 | struct iwl_mcast_filter_cmd mcast_filter_cmd = { | ||
| 708 | .pass_all = 1, | ||
| 709 | }; | ||
| 710 | |||
| 711 | memcpy(mcast_filter_cmd.bssid, vif->bss_conf.bssid, ETH_ALEN); | ||
| 712 | |||
| 713 | return iwl_mvm_send_cmd_pdu(mvm, MCAST_FILTER_CMD, CMD_SYNC, | ||
| 714 | sizeof(mcast_filter_cmd), | ||
| 715 | &mcast_filter_cmd); | ||
| 716 | } | ||
| 717 | |||
| 704 | static void iwl_mvm_bss_info_changed_station(struct iwl_mvm *mvm, | 718 | static void iwl_mvm_bss_info_changed_station(struct iwl_mvm *mvm, |
| 705 | struct ieee80211_vif *vif, | 719 | struct ieee80211_vif *vif, |
| 706 | struct ieee80211_bss_conf *bss_conf, | 720 | struct ieee80211_bss_conf *bss_conf, |
| @@ -722,6 +736,7 @@ static void iwl_mvm_bss_info_changed_station(struct iwl_mvm *mvm, | |||
| 722 | return; | 736 | return; |
| 723 | } | 737 | } |
| 724 | iwl_mvm_bt_coex_vif_assoc(mvm, vif); | 738 | iwl_mvm_bt_coex_vif_assoc(mvm, vif); |
| 739 | iwl_mvm_configure_mcast_filter(mvm, vif); | ||
| 725 | } else if (mvmvif->ap_sta_id != IWL_MVM_STATION_COUNT) { | 740 | } else if (mvmvif->ap_sta_id != IWL_MVM_STATION_COUNT) { |
| 726 | /* remove AP station now that the MAC is unassoc */ | 741 | /* remove AP station now that the MAC is unassoc */ |
| 727 | ret = iwl_mvm_rm_sta_id(mvm, vif, mvmvif->ap_sta_id); | 742 | ret = iwl_mvm_rm_sta_id(mvm, vif, mvmvif->ap_sta_id); |
| @@ -931,7 +946,7 @@ static void iwl_mvm_mac_sta_notify(struct ieee80211_hw *hw, | |||
| 931 | 946 | ||
| 932 | switch (cmd) { | 947 | switch (cmd) { |
| 933 | case STA_NOTIFY_SLEEP: | 948 | case STA_NOTIFY_SLEEP: |
| 934 | if (atomic_read(&mvmsta->pending_frames) > 0) | 949 | if (atomic_read(&mvm->pending_frames[mvmsta->sta_id]) > 0) |
| 935 | ieee80211_sta_block_awake(hw, sta, true); | 950 | ieee80211_sta_block_awake(hw, sta, true); |
| 936 | /* | 951 | /* |
| 937 | * The fw updates the STA to be asleep. Tx packets on the Tx | 952 | * The fw updates the STA to be asleep. Tx packets on the Tx |
diff --git a/drivers/net/wireless/iwlwifi/mvm/mvm.h b/drivers/net/wireless/iwlwifi/mvm/mvm.h index 8269bc562951..9f46b23801bc 100644 --- a/drivers/net/wireless/iwlwifi/mvm/mvm.h +++ b/drivers/net/wireless/iwlwifi/mvm/mvm.h | |||
| @@ -292,6 +292,7 @@ struct iwl_mvm { | |||
| 292 | struct ieee80211_sta __rcu *fw_id_to_mac_id[IWL_MVM_STATION_COUNT]; | 292 | struct ieee80211_sta __rcu *fw_id_to_mac_id[IWL_MVM_STATION_COUNT]; |
| 293 | struct work_struct sta_drained_wk; | 293 | struct work_struct sta_drained_wk; |
| 294 | unsigned long sta_drained[BITS_TO_LONGS(IWL_MVM_STATION_COUNT)]; | 294 | unsigned long sta_drained[BITS_TO_LONGS(IWL_MVM_STATION_COUNT)]; |
| 295 | atomic_t pending_frames[IWL_MVM_STATION_COUNT]; | ||
| 295 | 296 | ||
| 296 | /* configured by mac80211 */ | 297 | /* configured by mac80211 */ |
| 297 | u32 rts_threshold; | 298 | u32 rts_threshold; |
diff --git a/drivers/net/wireless/iwlwifi/mvm/ops.c b/drivers/net/wireless/iwlwifi/mvm/ops.c index fe031d304d1e..b29c31a41594 100644 --- a/drivers/net/wireless/iwlwifi/mvm/ops.c +++ b/drivers/net/wireless/iwlwifi/mvm/ops.c | |||
| @@ -292,6 +292,7 @@ static const char *iwl_mvm_cmd_strings[REPLY_MAX] = { | |||
| 292 | CMD(BT_COEX_PROT_ENV), | 292 | CMD(BT_COEX_PROT_ENV), |
| 293 | CMD(BT_PROFILE_NOTIFICATION), | 293 | CMD(BT_PROFILE_NOTIFICATION), |
| 294 | CMD(BT_CONFIG), | 294 | CMD(BT_CONFIG), |
| 295 | CMD(MCAST_FILTER_CMD), | ||
| 295 | }; | 296 | }; |
| 296 | #undef CMD | 297 | #undef CMD |
| 297 | 298 | ||
diff --git a/drivers/net/wireless/iwlwifi/mvm/scan.c b/drivers/net/wireless/iwlwifi/mvm/scan.c index 2157b0f8ced5..2476e43799d5 100644 --- a/drivers/net/wireless/iwlwifi/mvm/scan.c +++ b/drivers/net/wireless/iwlwifi/mvm/scan.c | |||
| @@ -298,6 +298,12 @@ int iwl_mvm_scan_request(struct iwl_mvm *mvm, | |||
| 298 | else | 298 | else |
| 299 | cmd->type = cpu_to_le32(SCAN_TYPE_FORCED); | 299 | cmd->type = cpu_to_le32(SCAN_TYPE_FORCED); |
| 300 | 300 | ||
| 301 | /* | ||
| 302 | * TODO: This is a WA due to a bug in the FW AUX framework that does not | ||
| 303 | * properly handle time events that fail to be scheduled | ||
| 304 | */ | ||
| 305 | cmd->type = cpu_to_le32(SCAN_TYPE_FORCED); | ||
| 306 | |||
| 301 | cmd->repeats = cpu_to_le32(1); | 307 | cmd->repeats = cpu_to_le32(1); |
| 302 | 308 | ||
| 303 | /* | 309 | /* |
diff --git a/drivers/net/wireless/iwlwifi/mvm/sta.c b/drivers/net/wireless/iwlwifi/mvm/sta.c index 0fd96e4da461..5c664ed54400 100644 --- a/drivers/net/wireless/iwlwifi/mvm/sta.c +++ b/drivers/net/wireless/iwlwifi/mvm/sta.c | |||
| @@ -219,7 +219,7 @@ int iwl_mvm_add_sta(struct iwl_mvm *mvm, | |||
| 219 | mvm_sta->max_agg_bufsize = LINK_QUAL_AGG_FRAME_LIMIT_DEF; | 219 | mvm_sta->max_agg_bufsize = LINK_QUAL_AGG_FRAME_LIMIT_DEF; |
| 220 | 220 | ||
| 221 | /* HW restart, don't assume the memory has been zeroed */ | 221 | /* HW restart, don't assume the memory has been zeroed */ |
| 222 | atomic_set(&mvm_sta->pending_frames, 0); | 222 | atomic_set(&mvm->pending_frames[sta_id], 0); |
| 223 | mvm_sta->tid_disable_agg = 0; | 223 | mvm_sta->tid_disable_agg = 0; |
| 224 | mvm_sta->tfd_queue_msk = 0; | 224 | mvm_sta->tfd_queue_msk = 0; |
| 225 | for (i = 0; i < IEEE80211_NUM_ACS; i++) | 225 | for (i = 0; i < IEEE80211_NUM_ACS; i++) |
| @@ -407,14 +407,21 @@ int iwl_mvm_rm_sta(struct iwl_mvm *mvm, | |||
| 407 | } | 407 | } |
| 408 | 408 | ||
| 409 | /* | 409 | /* |
| 410 | * Make sure that the tx response code sees the station as -EBUSY and | ||
| 411 | * calls the drain worker. | ||
| 412 | */ | ||
| 413 | spin_lock_bh(&mvm_sta->lock); | ||
| 414 | /* | ||
| 410 | * There are frames pending on the AC queues for this station. | 415 | * There are frames pending on the AC queues for this station. |
| 411 | * We need to wait until all the frames are drained... | 416 | * We need to wait until all the frames are drained... |
| 412 | */ | 417 | */ |
| 413 | if (atomic_read(&mvm_sta->pending_frames)) { | 418 | if (atomic_read(&mvm->pending_frames[mvm_sta->sta_id])) { |
| 414 | ret = iwl_mvm_drain_sta(mvm, mvm_sta, true); | ||
| 415 | rcu_assign_pointer(mvm->fw_id_to_mac_id[mvm_sta->sta_id], | 419 | rcu_assign_pointer(mvm->fw_id_to_mac_id[mvm_sta->sta_id], |
| 416 | ERR_PTR(-EBUSY)); | 420 | ERR_PTR(-EBUSY)); |
| 421 | spin_unlock_bh(&mvm_sta->lock); | ||
| 422 | ret = iwl_mvm_drain_sta(mvm, mvm_sta, true); | ||
| 417 | } else { | 423 | } else { |
| 424 | spin_unlock_bh(&mvm_sta->lock); | ||
| 418 | ret = iwl_mvm_rm_sta_common(mvm, mvm_sta->sta_id); | 425 | ret = iwl_mvm_rm_sta_common(mvm, mvm_sta->sta_id); |
| 419 | rcu_assign_pointer(mvm->fw_id_to_mac_id[mvm_sta->sta_id], NULL); | 426 | rcu_assign_pointer(mvm->fw_id_to_mac_id[mvm_sta->sta_id], NULL); |
| 420 | } | 427 | } |
diff --git a/drivers/net/wireless/iwlwifi/mvm/sta.h b/drivers/net/wireless/iwlwifi/mvm/sta.h index 12abd2d71835..a4ddce77aaae 100644 --- a/drivers/net/wireless/iwlwifi/mvm/sta.h +++ b/drivers/net/wireless/iwlwifi/mvm/sta.h | |||
| @@ -274,7 +274,6 @@ struct iwl_mvm_tid_data { | |||
| 274 | * @bt_reduced_txpower: is reduced tx power enabled for this station | 274 | * @bt_reduced_txpower: is reduced tx power enabled for this station |
| 275 | * @lock: lock to protect the whole struct. Since %tid_data is access from Tx | 275 | * @lock: lock to protect the whole struct. Since %tid_data is access from Tx |
| 276 | * and from Tx response flow, it needs a spinlock. | 276 | * and from Tx response flow, it needs a spinlock. |
| 277 | * @pending_frames: number of frames for this STA on the shared Tx queues. | ||
| 278 | * @tid_data: per tid data. Look at %iwl_mvm_tid_data. | 277 | * @tid_data: per tid data. Look at %iwl_mvm_tid_data. |
| 279 | * | 278 | * |
| 280 | * When mac80211 creates a station it reserves some space (hw->sta_data_size) | 279 | * When mac80211 creates a station it reserves some space (hw->sta_data_size) |
| @@ -290,7 +289,6 @@ struct iwl_mvm_sta { | |||
| 290 | u8 max_agg_bufsize; | 289 | u8 max_agg_bufsize; |
| 291 | bool bt_reduced_txpower; | 290 | bool bt_reduced_txpower; |
| 292 | spinlock_t lock; | 291 | spinlock_t lock; |
| 293 | atomic_t pending_frames; | ||
| 294 | struct iwl_mvm_tid_data tid_data[IWL_MAX_TID_COUNT]; | 292 | struct iwl_mvm_tid_data tid_data[IWL_MAX_TID_COUNT]; |
| 295 | struct iwl_lq_sta lq_sta; | 293 | struct iwl_lq_sta lq_sta; |
| 296 | struct ieee80211_vif *vif; | 294 | struct ieee80211_vif *vif; |
diff --git a/drivers/net/wireless/iwlwifi/mvm/tx.c b/drivers/net/wireless/iwlwifi/mvm/tx.c index 479074303bd7..f212f16502ff 100644 --- a/drivers/net/wireless/iwlwifi/mvm/tx.c +++ b/drivers/net/wireless/iwlwifi/mvm/tx.c | |||
| @@ -416,9 +416,8 @@ int iwl_mvm_tx_skb(struct iwl_mvm *mvm, struct sk_buff *skb, | |||
| 416 | 416 | ||
| 417 | spin_unlock(&mvmsta->lock); | 417 | spin_unlock(&mvmsta->lock); |
| 418 | 418 | ||
| 419 | if (mvmsta->vif->type == NL80211_IFTYPE_AP && | 419 | if (txq_id < IWL_MVM_FIRST_AGG_QUEUE) |
| 420 | txq_id < IWL_MVM_FIRST_AGG_QUEUE) | 420 | atomic_inc(&mvm->pending_frames[mvmsta->sta_id]); |
| 421 | atomic_inc(&mvmsta->pending_frames); | ||
| 422 | 421 | ||
| 423 | return 0; | 422 | return 0; |
| 424 | 423 | ||
| @@ -680,16 +679,41 @@ static void iwl_mvm_rx_tx_cmd_single(struct iwl_mvm *mvm, | |||
| 680 | /* | 679 | /* |
| 681 | * If the txq is not an AMPDU queue, there is no chance we freed | 680 | * If the txq is not an AMPDU queue, there is no chance we freed |
| 682 | * several skbs. Check that out... | 681 | * several skbs. Check that out... |
| 683 | * If there are no pending frames for this STA, notify mac80211 that | ||
| 684 | * this station can go to sleep in its STA table. | ||
| 685 | */ | 682 | */ |
| 686 | if (txq_id < IWL_MVM_FIRST_AGG_QUEUE && mvmsta && | 683 | if (txq_id < IWL_MVM_FIRST_AGG_QUEUE && !WARN_ON(skb_freed > 1) && |
| 687 | !WARN_ON(skb_freed > 1) && | 684 | atomic_sub_and_test(skb_freed, &mvm->pending_frames[sta_id])) { |
| 688 | mvmsta->vif->type == NL80211_IFTYPE_AP && | 685 | if (mvmsta) { |
| 689 | atomic_sub_and_test(skb_freed, &mvmsta->pending_frames)) { | 686 | /* |
| 690 | ieee80211_sta_block_awake(mvm->hw, sta, false); | 687 | * If there are no pending frames for this STA, notify |
| 691 | set_bit(sta_id, mvm->sta_drained); | 688 | * mac80211 that this station can go to sleep in its |
| 692 | schedule_work(&mvm->sta_drained_wk); | 689 | * STA table. |
| 690 | */ | ||
| 691 | if (mvmsta->vif->type == NL80211_IFTYPE_AP) | ||
| 692 | ieee80211_sta_block_awake(mvm->hw, sta, false); | ||
| 693 | /* | ||
| 694 | * We might very well have taken mvmsta pointer while | ||
| 695 | * the station was being removed. The remove flow might | ||
| 696 | * have seen a pending_frame (because we didn't take | ||
| 697 | * the lock) even if now the queues are drained. So make | ||
| 698 | * really sure now that this the station is not being | ||
| 699 | * removed. If it is, run the drain worker to remove it. | ||
| 700 | */ | ||
| 701 | spin_lock_bh(&mvmsta->lock); | ||
| 702 | sta = rcu_dereference(mvm->fw_id_to_mac_id[sta_id]); | ||
| 703 | if (IS_ERR_OR_NULL(sta)) { | ||
| 704 | /* | ||
| 705 | * Station disappeared in the meantime: | ||
| 706 | * so we are draining. | ||
| 707 | */ | ||
| 708 | set_bit(sta_id, mvm->sta_drained); | ||
| 709 | schedule_work(&mvm->sta_drained_wk); | ||
| 710 | } | ||
| 711 | spin_unlock_bh(&mvmsta->lock); | ||
| 712 | } else if (!mvmsta) { | ||
| 713 | /* Tx response without STA, so we are draining */ | ||
| 714 | set_bit(sta_id, mvm->sta_drained); | ||
| 715 | schedule_work(&mvm->sta_drained_wk); | ||
| 716 | } | ||
| 693 | } | 717 | } |
| 694 | 718 | ||
| 695 | rcu_read_unlock(); | 719 | rcu_read_unlock(); |
diff --git a/drivers/net/wireless/mac80211_hwsim.c b/drivers/net/wireless/mac80211_hwsim.c index b878a32e7a98..cb34c7895f2a 100644 --- a/drivers/net/wireless/mac80211_hwsim.c +++ b/drivers/net/wireless/mac80211_hwsim.c | |||
| @@ -1723,11 +1723,11 @@ static void mac80211_hwsim_free(void) | |||
| 1723 | class_destroy(hwsim_class); | 1723 | class_destroy(hwsim_class); |
| 1724 | } | 1724 | } |
| 1725 | 1725 | ||
| 1726 | 1726 | static struct platform_driver mac80211_hwsim_driver = { | |
| 1727 | static struct device_driver mac80211_hwsim_driver = { | 1727 | .driver = { |
| 1728 | .name = "mac80211_hwsim", | 1728 | .name = "mac80211_hwsim", |
| 1729 | .bus = &platform_bus_type, | 1729 | .owner = THIS_MODULE, |
| 1730 | .owner = THIS_MODULE, | 1730 | }, |
| 1731 | }; | 1731 | }; |
| 1732 | 1732 | ||
| 1733 | static const struct net_device_ops hwsim_netdev_ops = { | 1733 | static const struct net_device_ops hwsim_netdev_ops = { |
| @@ -2219,7 +2219,7 @@ static int __init init_mac80211_hwsim(void) | |||
| 2219 | spin_lock_init(&hwsim_radio_lock); | 2219 | spin_lock_init(&hwsim_radio_lock); |
| 2220 | INIT_LIST_HEAD(&hwsim_radios); | 2220 | INIT_LIST_HEAD(&hwsim_radios); |
| 2221 | 2221 | ||
| 2222 | err = driver_register(&mac80211_hwsim_driver); | 2222 | err = platform_driver_register(&mac80211_hwsim_driver); |
| 2223 | if (err) | 2223 | if (err) |
| 2224 | return err; | 2224 | return err; |
| 2225 | 2225 | ||
| @@ -2254,7 +2254,7 @@ static int __init init_mac80211_hwsim(void) | |||
| 2254 | err = -ENOMEM; | 2254 | err = -ENOMEM; |
| 2255 | goto failed_drvdata; | 2255 | goto failed_drvdata; |
| 2256 | } | 2256 | } |
| 2257 | data->dev->driver = &mac80211_hwsim_driver; | 2257 | data->dev->driver = &mac80211_hwsim_driver.driver; |
| 2258 | err = device_bind_driver(data->dev); | 2258 | err = device_bind_driver(data->dev); |
| 2259 | if (err != 0) { | 2259 | if (err != 0) { |
| 2260 | printk(KERN_DEBUG | 2260 | printk(KERN_DEBUG |
| @@ -2564,7 +2564,7 @@ failed_drvdata: | |||
| 2564 | failed: | 2564 | failed: |
| 2565 | mac80211_hwsim_free(); | 2565 | mac80211_hwsim_free(); |
| 2566 | failed_unregister_driver: | 2566 | failed_unregister_driver: |
| 2567 | driver_unregister(&mac80211_hwsim_driver); | 2567 | platform_driver_unregister(&mac80211_hwsim_driver); |
| 2568 | return err; | 2568 | return err; |
| 2569 | } | 2569 | } |
| 2570 | module_init(init_mac80211_hwsim); | 2570 | module_init(init_mac80211_hwsim); |
| @@ -2577,6 +2577,6 @@ static void __exit exit_mac80211_hwsim(void) | |||
| 2577 | 2577 | ||
| 2578 | mac80211_hwsim_free(); | 2578 | mac80211_hwsim_free(); |
| 2579 | unregister_netdev(hwsim_mon); | 2579 | unregister_netdev(hwsim_mon); |
| 2580 | driver_unregister(&mac80211_hwsim_driver); | 2580 | platform_driver_unregister(&mac80211_hwsim_driver); |
| 2581 | } | 2581 | } |
| 2582 | module_exit(exit_mac80211_hwsim); | 2582 | module_exit(exit_mac80211_hwsim); |
diff --git a/drivers/net/wireless/rtlwifi/rtl8188ee/trx.h b/drivers/net/wireless/rtlwifi/rtl8188ee/trx.h index d3a02e73f53a..21ca33a7c770 100644 --- a/drivers/net/wireless/rtlwifi/rtl8188ee/trx.h +++ b/drivers/net/wireless/rtlwifi/rtl8188ee/trx.h | |||
| @@ -550,7 +550,7 @@ do { \ | |||
| 550 | rxmcs == DESC92C_RATE11M) | 550 | rxmcs == DESC92C_RATE11M) |
| 551 | 551 | ||
| 552 | struct phy_rx_agc_info_t { | 552 | struct phy_rx_agc_info_t { |
| 553 | #if __LITTLE_ENDIAN | 553 | #ifdef __LITTLE_ENDIAN |
| 554 | u8 gain:7, trsw:1; | 554 | u8 gain:7, trsw:1; |
| 555 | #else | 555 | #else |
| 556 | u8 trsw:1, gain:7; | 556 | u8 trsw:1, gain:7; |
| @@ -574,7 +574,7 @@ struct phy_status_rpt { | |||
| 574 | u8 stream_target_csi[2]; | 574 | u8 stream_target_csi[2]; |
| 575 | u8 sig_evm; | 575 | u8 sig_evm; |
| 576 | u8 rsvd_3; | 576 | u8 rsvd_3; |
| 577 | #if __LITTLE_ENDIAN | 577 | #ifdef __LITTLE_ENDIAN |
| 578 | u8 antsel_rx_keep_2:1; /*ex_intf_flg:1;*/ | 578 | u8 antsel_rx_keep_2:1; /*ex_intf_flg:1;*/ |
| 579 | u8 sgi_en:1; | 579 | u8 sgi_en:1; |
| 580 | u8 rxsc:2; | 580 | u8 rxsc:2; |
diff --git a/drivers/net/wireless/rtlwifi/rtl8192cu/sw.c b/drivers/net/wireless/rtlwifi/rtl8192cu/sw.c index 23d640a4debd..938b1e670b93 100644 --- a/drivers/net/wireless/rtlwifi/rtl8192cu/sw.c +++ b/drivers/net/wireless/rtlwifi/rtl8192cu/sw.c | |||
| @@ -349,6 +349,7 @@ static struct usb_device_id rtl8192c_usb_ids[] = { | |||
| 349 | {RTL_USB_DEVICE(0x07aa, 0x0056, rtl92cu_hal_cfg)}, /*ATKK-Gemtek*/ | 349 | {RTL_USB_DEVICE(0x07aa, 0x0056, rtl92cu_hal_cfg)}, /*ATKK-Gemtek*/ |
| 350 | {RTL_USB_DEVICE(0x07b8, 0x8178, rtl92cu_hal_cfg)}, /*Funai -Abocom*/ | 350 | {RTL_USB_DEVICE(0x07b8, 0x8178, rtl92cu_hal_cfg)}, /*Funai -Abocom*/ |
| 351 | {RTL_USB_DEVICE(0x0846, 0x9021, rtl92cu_hal_cfg)}, /*Netgear-Sercomm*/ | 351 | {RTL_USB_DEVICE(0x0846, 0x9021, rtl92cu_hal_cfg)}, /*Netgear-Sercomm*/ |
| 352 | {RTL_USB_DEVICE(0x0846, 0xf001, rtl92cu_hal_cfg)}, /*On Netwrks N300MA*/ | ||
| 352 | {RTL_USB_DEVICE(0x0b05, 0x17ab, rtl92cu_hal_cfg)}, /*ASUS-Edimax*/ | 353 | {RTL_USB_DEVICE(0x0b05, 0x17ab, rtl92cu_hal_cfg)}, /*ASUS-Edimax*/ |
| 353 | {RTL_USB_DEVICE(0x0bda, 0x8186, rtl92cu_hal_cfg)}, /*Realtek 92CE-VAU*/ | 354 | {RTL_USB_DEVICE(0x0bda, 0x8186, rtl92cu_hal_cfg)}, /*Realtek 92CE-VAU*/ |
| 354 | {RTL_USB_DEVICE(0x0df6, 0x0061, rtl92cu_hal_cfg)}, /*Sitecom-Edimax*/ | 355 | {RTL_USB_DEVICE(0x0df6, 0x0061, rtl92cu_hal_cfg)}, /*Sitecom-Edimax*/ |
diff --git a/drivers/parisc/superio.c b/drivers/parisc/superio.c index ac6e8e7a02df..a042d065a0c7 100644 --- a/drivers/parisc/superio.c +++ b/drivers/parisc/superio.c | |||
| @@ -494,15 +494,4 @@ static struct pci_driver superio_driver = { | |||
| 494 | .probe = superio_probe, | 494 | .probe = superio_probe, |
| 495 | }; | 495 | }; |
| 496 | 496 | ||
| 497 | static int __init superio_modinit(void) | 497 | module_pci_driver(superio_driver); |
| 498 | { | ||
| 499 | return pci_register_driver(&superio_driver); | ||
| 500 | } | ||
| 501 | |||
| 502 | static void __exit superio_exit(void) | ||
| 503 | { | ||
| 504 | pci_unregister_driver(&superio_driver); | ||
| 505 | } | ||
| 506 | |||
| 507 | module_init(superio_modinit); | ||
| 508 | module_exit(superio_exit); | ||
diff --git a/drivers/pci/hotplug/acpiphp_glue.c b/drivers/pci/hotplug/acpiphp_glue.c index 96fed19c6d90..716aa93fff76 100644 --- a/drivers/pci/hotplug/acpiphp_glue.c +++ b/drivers/pci/hotplug/acpiphp_glue.c | |||
| @@ -950,6 +950,20 @@ check_sub_bridges(acpi_handle handle, u32 lvl, void *context, void **rv) | |||
| 950 | return AE_OK ; | 950 | return AE_OK ; |
| 951 | } | 951 | } |
| 952 | 952 | ||
| 953 | void acpiphp_check_host_bridge(acpi_handle handle) | ||
| 954 | { | ||
| 955 | struct acpiphp_bridge *bridge; | ||
| 956 | |||
| 957 | bridge = acpiphp_handle_to_bridge(handle); | ||
| 958 | if (bridge) { | ||
| 959 | acpiphp_check_bridge(bridge); | ||
| 960 | put_bridge(bridge); | ||
| 961 | } | ||
| 962 | |||
| 963 | acpi_walk_namespace(ACPI_TYPE_DEVICE, handle, | ||
| 964 | ACPI_UINT32_MAX, check_sub_bridges, NULL, NULL, NULL); | ||
| 965 | } | ||
| 966 | |||
| 953 | static void _handle_hotplug_event_bridge(struct work_struct *work) | 967 | static void _handle_hotplug_event_bridge(struct work_struct *work) |
| 954 | { | 968 | { |
| 955 | struct acpiphp_bridge *bridge; | 969 | struct acpiphp_bridge *bridge; |
diff --git a/drivers/power/Kconfig b/drivers/power/Kconfig index 0d0b5d7d19d0..7b8979c63f48 100644 --- a/drivers/power/Kconfig +++ b/drivers/power/Kconfig | |||
| @@ -152,6 +152,7 @@ config BATTERY_SBS | |||
| 152 | 152 | ||
| 153 | config BATTERY_BQ27x00 | 153 | config BATTERY_BQ27x00 |
| 154 | tristate "BQ27x00 battery driver" | 154 | tristate "BQ27x00 battery driver" |
| 155 | depends on I2C || I2C=n | ||
| 155 | help | 156 | help |
| 156 | Say Y here to enable support for batteries with BQ27x00 (I2C/HDQ) chips. | 157 | Say Y here to enable support for batteries with BQ27x00 (I2C/HDQ) chips. |
| 157 | 158 | ||
| @@ -284,6 +285,7 @@ config CHARGER_LP8788 | |||
| 284 | tristate "TI LP8788 charger driver" | 285 | tristate "TI LP8788 charger driver" |
| 285 | depends on MFD_LP8788 | 286 | depends on MFD_LP8788 |
| 286 | depends on LP8788_ADC | 287 | depends on LP8788_ADC |
| 288 | depends on IIO | ||
| 287 | help | 289 | help |
| 288 | Say Y to enable support for the LP8788 linear charger. | 290 | Say Y to enable support for the LP8788 linear charger. |
| 289 | 291 | ||
diff --git a/drivers/power/pm2301_charger.c b/drivers/power/pm2301_charger.c index a44175139bbf..fef56e2041b3 100644 --- a/drivers/power/pm2301_charger.c +++ b/drivers/power/pm2301_charger.c | |||
| @@ -1269,5 +1269,5 @@ module_exit(pm2xxx_charger_exit); | |||
| 1269 | 1269 | ||
| 1270 | MODULE_LICENSE("GPL v2"); | 1270 | MODULE_LICENSE("GPL v2"); |
| 1271 | MODULE_AUTHOR("Rajkumar kasirajan, Olivier Launay"); | 1271 | MODULE_AUTHOR("Rajkumar kasirajan, Olivier Launay"); |
| 1272 | MODULE_ALIAS("platform:pm2xxx-charger"); | 1272 | MODULE_ALIAS("i2c:pm2xxx-charger"); |
| 1273 | MODULE_DESCRIPTION("PM2xxx charger management driver"); | 1273 | MODULE_DESCRIPTION("PM2xxx charger management driver"); |
diff --git a/drivers/power/wm831x_backup.c b/drivers/power/wm831x_backup.c index 58cbb009b74f..56fb509f4be0 100644 --- a/drivers/power/wm831x_backup.c +++ b/drivers/power/wm831x_backup.c | |||
| @@ -207,7 +207,6 @@ static int wm831x_backup_remove(struct platform_device *pdev) | |||
| 207 | struct wm831x_backup *devdata = platform_get_drvdata(pdev); | 207 | struct wm831x_backup *devdata = platform_get_drvdata(pdev); |
| 208 | 208 | ||
| 209 | power_supply_unregister(&devdata->backup); | 209 | power_supply_unregister(&devdata->backup); |
| 210 | kfree(devdata->backup.name); | ||
| 211 | 210 | ||
| 212 | return 0; | 211 | return 0; |
| 213 | } | 212 | } |
diff --git a/drivers/rapidio/Kconfig b/drivers/rapidio/Kconfig index 6194d35ebb97..5ab056494bbe 100644 --- a/drivers/rapidio/Kconfig +++ b/drivers/rapidio/Kconfig | |||
| @@ -47,4 +47,24 @@ config RAPIDIO_DEBUG | |||
| 47 | 47 | ||
| 48 | If you are unsure about this, say N here. | 48 | If you are unsure about this, say N here. |
| 49 | 49 | ||
| 50 | choice | ||
| 51 | prompt "Enumeration method" | ||
| 52 | depends on RAPIDIO | ||
| 53 | default RAPIDIO_ENUM_BASIC | ||
| 54 | help | ||
| 55 | There are different enumeration and discovery mechanisms offered | ||
| 56 | for RapidIO subsystem. You may select single built-in method or | ||
| 57 | or any number of methods to be built as modules. | ||
| 58 | Selecting a built-in method disables use of loadable methods. | ||
| 59 | |||
| 60 | If unsure, select Basic built-in. | ||
| 61 | |||
| 62 | config RAPIDIO_ENUM_BASIC | ||
| 63 | tristate "Basic" | ||
| 64 | help | ||
| 65 | This option includes basic RapidIO fabric enumeration and discovery | ||
| 66 | mechanism similar to one described in RapidIO specification Annex 1. | ||
| 67 | |||
| 68 | endchoice | ||
| 69 | |||
| 50 | source "drivers/rapidio/switches/Kconfig" | 70 | source "drivers/rapidio/switches/Kconfig" |
diff --git a/drivers/rapidio/Makefile b/drivers/rapidio/Makefile index ec3fb8121004..3036702ffe8b 100644 --- a/drivers/rapidio/Makefile +++ b/drivers/rapidio/Makefile | |||
| @@ -1,7 +1,8 @@ | |||
| 1 | # | 1 | # |
| 2 | # Makefile for RapidIO interconnect services | 2 | # Makefile for RapidIO interconnect services |
| 3 | # | 3 | # |
| 4 | obj-y += rio.o rio-access.o rio-driver.o rio-scan.o rio-sysfs.o | 4 | obj-y += rio.o rio-access.o rio-driver.o rio-sysfs.o |
| 5 | obj-$(CONFIG_RAPIDIO_ENUM_BASIC) += rio-scan.o | ||
| 5 | 6 | ||
| 6 | obj-$(CONFIG_RAPIDIO) += switches/ | 7 | obj-$(CONFIG_RAPIDIO) += switches/ |
| 7 | obj-$(CONFIG_RAPIDIO) += devices/ | 8 | obj-$(CONFIG_RAPIDIO) += devices/ |
diff --git a/drivers/rapidio/devices/tsi721.c b/drivers/rapidio/devices/tsi721.c index 6faba406b6e9..a8b2c23a7ef4 100644 --- a/drivers/rapidio/devices/tsi721.c +++ b/drivers/rapidio/devices/tsi721.c | |||
| @@ -471,6 +471,10 @@ static irqreturn_t tsi721_irqhandler(int irq, void *ptr) | |||
| 471 | u32 intval; | 471 | u32 intval; |
| 472 | u32 ch_inte; | 472 | u32 ch_inte; |
| 473 | 473 | ||
| 474 | /* For MSI mode disable all device-level interrupts */ | ||
| 475 | if (priv->flags & TSI721_USING_MSI) | ||
| 476 | iowrite32(0, priv->regs + TSI721_DEV_INTE); | ||
| 477 | |||
| 474 | dev_int = ioread32(priv->regs + TSI721_DEV_INT); | 478 | dev_int = ioread32(priv->regs + TSI721_DEV_INT); |
| 475 | if (!dev_int) | 479 | if (!dev_int) |
| 476 | return IRQ_NONE; | 480 | return IRQ_NONE; |
| @@ -560,6 +564,14 @@ static irqreturn_t tsi721_irqhandler(int irq, void *ptr) | |||
| 560 | } | 564 | } |
| 561 | } | 565 | } |
| 562 | #endif | 566 | #endif |
| 567 | |||
| 568 | /* For MSI mode re-enable device-level interrupts */ | ||
| 569 | if (priv->flags & TSI721_USING_MSI) { | ||
| 570 | dev_int = TSI721_DEV_INT_SR2PC_CH | TSI721_DEV_INT_SRIO | | ||
| 571 | TSI721_DEV_INT_SMSG_CH | TSI721_DEV_INT_BDMA_CH; | ||
| 572 | iowrite32(dev_int, priv->regs + TSI721_DEV_INTE); | ||
| 573 | } | ||
| 574 | |||
| 563 | return IRQ_HANDLED; | 575 | return IRQ_HANDLED; |
| 564 | } | 576 | } |
| 565 | 577 | ||
diff --git a/drivers/rapidio/rio-driver.c b/drivers/rapidio/rio-driver.c index 0f4a53bdaa3c..a0c875563d76 100644 --- a/drivers/rapidio/rio-driver.c +++ b/drivers/rapidio/rio-driver.c | |||
| @@ -164,6 +164,13 @@ void rio_unregister_driver(struct rio_driver *rdrv) | |||
| 164 | driver_unregister(&rdrv->driver); | 164 | driver_unregister(&rdrv->driver); |
| 165 | } | 165 | } |
| 166 | 166 | ||
| 167 | void rio_attach_device(struct rio_dev *rdev) | ||
| 168 | { | ||
| 169 | rdev->dev.bus = &rio_bus_type; | ||
| 170 | rdev->dev.parent = &rio_bus; | ||
| 171 | } | ||
| 172 | EXPORT_SYMBOL_GPL(rio_attach_device); | ||
| 173 | |||
| 167 | /** | 174 | /** |
| 168 | * rio_match_bus - Tell if a RIO device structure has a matching RIO driver device id structure | 175 | * rio_match_bus - Tell if a RIO device structure has a matching RIO driver device id structure |
| 169 | * @dev: the standard device structure to match against | 176 | * @dev: the standard device structure to match against |
| @@ -200,6 +207,7 @@ struct bus_type rio_bus_type = { | |||
| 200 | .name = "rapidio", | 207 | .name = "rapidio", |
| 201 | .match = rio_match_bus, | 208 | .match = rio_match_bus, |
| 202 | .dev_attrs = rio_dev_attrs, | 209 | .dev_attrs = rio_dev_attrs, |
| 210 | .bus_attrs = rio_bus_attrs, | ||
| 203 | .probe = rio_device_probe, | 211 | .probe = rio_device_probe, |
| 204 | .remove = rio_device_remove, | 212 | .remove = rio_device_remove, |
| 205 | }; | 213 | }; |
diff --git a/drivers/rapidio/rio-scan.c b/drivers/rapidio/rio-scan.c index a965acd3c0e4..4c15dbf81087 100644 --- a/drivers/rapidio/rio-scan.c +++ b/drivers/rapidio/rio-scan.c | |||
| @@ -37,12 +37,8 @@ | |||
| 37 | 37 | ||
| 38 | #include "rio.h" | 38 | #include "rio.h" |
| 39 | 39 | ||
| 40 | LIST_HEAD(rio_devices); | ||
| 41 | |||
| 42 | static void rio_init_em(struct rio_dev *rdev); | 40 | static void rio_init_em(struct rio_dev *rdev); |
| 43 | 41 | ||
| 44 | DEFINE_SPINLOCK(rio_global_list_lock); | ||
| 45 | |||
| 46 | static int next_destid = 0; | 42 | static int next_destid = 0; |
| 47 | static int next_comptag = 1; | 43 | static int next_comptag = 1; |
| 48 | 44 | ||
| @@ -327,127 +323,6 @@ static int rio_is_switch(struct rio_dev *rdev) | |||
| 327 | } | 323 | } |
| 328 | 324 | ||
| 329 | /** | 325 | /** |
| 330 | * rio_switch_init - Sets switch operations for a particular vendor switch | ||
| 331 | * @rdev: RIO device | ||
| 332 | * @do_enum: Enumeration/Discovery mode flag | ||
| 333 | * | ||
| 334 | * Searches the RIO switch ops table for known switch types. If the vid | ||
| 335 | * and did match a switch table entry, then call switch initialization | ||
| 336 | * routine to setup switch-specific routines. | ||
| 337 | */ | ||
| 338 | static void rio_switch_init(struct rio_dev *rdev, int do_enum) | ||
| 339 | { | ||
| 340 | struct rio_switch_ops *cur = __start_rio_switch_ops; | ||
| 341 | struct rio_switch_ops *end = __end_rio_switch_ops; | ||
| 342 | |||
| 343 | while (cur < end) { | ||
| 344 | if ((cur->vid == rdev->vid) && (cur->did == rdev->did)) { | ||
| 345 | pr_debug("RIO: calling init routine for %s\n", | ||
| 346 | rio_name(rdev)); | ||
| 347 | cur->init_hook(rdev, do_enum); | ||
| 348 | break; | ||
| 349 | } | ||
| 350 | cur++; | ||
| 351 | } | ||
| 352 | |||
| 353 | if ((cur >= end) && (rdev->pef & RIO_PEF_STD_RT)) { | ||
| 354 | pr_debug("RIO: adding STD routing ops for %s\n", | ||
| 355 | rio_name(rdev)); | ||
| 356 | rdev->rswitch->add_entry = rio_std_route_add_entry; | ||
| 357 | rdev->rswitch->get_entry = rio_std_route_get_entry; | ||
| 358 | rdev->rswitch->clr_table = rio_std_route_clr_table; | ||
| 359 | } | ||
| 360 | |||
| 361 | if (!rdev->rswitch->add_entry || !rdev->rswitch->get_entry) | ||
| 362 | printk(KERN_ERR "RIO: missing routing ops for %s\n", | ||
| 363 | rio_name(rdev)); | ||
| 364 | } | ||
| 365 | |||
| 366 | /** | ||
| 367 | * rio_add_device- Adds a RIO device to the device model | ||
| 368 | * @rdev: RIO device | ||
| 369 | * | ||
| 370 | * Adds the RIO device to the global device list and adds the RIO | ||
| 371 | * device to the RIO device list. Creates the generic sysfs nodes | ||
| 372 | * for an RIO device. | ||
| 373 | */ | ||
| 374 | static int rio_add_device(struct rio_dev *rdev) | ||
| 375 | { | ||
| 376 | int err; | ||
| 377 | |||
| 378 | err = device_add(&rdev->dev); | ||
| 379 | if (err) | ||
| 380 | return err; | ||
| 381 | |||
| 382 | spin_lock(&rio_global_list_lock); | ||
| 383 | list_add_tail(&rdev->global_list, &rio_devices); | ||
| 384 | spin_unlock(&rio_global_list_lock); | ||
| 385 | |||
| 386 | rio_create_sysfs_dev_files(rdev); | ||
| 387 | |||
| 388 | return 0; | ||
| 389 | } | ||
| 390 | |||
| 391 | /** | ||
| 392 | * rio_enable_rx_tx_port - enable input receiver and output transmitter of | ||
| 393 | * given port | ||
| 394 | * @port: Master port associated with the RIO network | ||
| 395 | * @local: local=1 select local port otherwise a far device is reached | ||
| 396 | * @destid: Destination ID of the device to check host bit | ||
| 397 | * @hopcount: Number of hops to reach the target | ||
| 398 | * @port_num: Port (-number on switch) to enable on a far end device | ||
| 399 | * | ||
| 400 | * Returns 0 or 1 from on General Control Command and Status Register | ||
| 401 | * (EXT_PTR+0x3C) | ||
| 402 | */ | ||
| 403 | inline int rio_enable_rx_tx_port(struct rio_mport *port, | ||
| 404 | int local, u16 destid, | ||
| 405 | u8 hopcount, u8 port_num) { | ||
| 406 | #ifdef CONFIG_RAPIDIO_ENABLE_RX_TX_PORTS | ||
| 407 | u32 regval; | ||
| 408 | u32 ext_ftr_ptr; | ||
| 409 | |||
| 410 | /* | ||
| 411 | * enable rx input tx output port | ||
| 412 | */ | ||
| 413 | pr_debug("rio_enable_rx_tx_port(local = %d, destid = %d, hopcount = " | ||
| 414 | "%d, port_num = %d)\n", local, destid, hopcount, port_num); | ||
| 415 | |||
| 416 | ext_ftr_ptr = rio_mport_get_physefb(port, local, destid, hopcount); | ||
| 417 | |||
| 418 | if (local) { | ||
| 419 | rio_local_read_config_32(port, ext_ftr_ptr + | ||
| 420 | RIO_PORT_N_CTL_CSR(0), | ||
| 421 | ®val); | ||
| 422 | } else { | ||
| 423 | if (rio_mport_read_config_32(port, destid, hopcount, | ||
| 424 | ext_ftr_ptr + RIO_PORT_N_CTL_CSR(port_num), ®val) < 0) | ||
| 425 | return -EIO; | ||
| 426 | } | ||
| 427 | |||
| 428 | if (regval & RIO_PORT_N_CTL_P_TYP_SER) { | ||
| 429 | /* serial */ | ||
| 430 | regval = regval | RIO_PORT_N_CTL_EN_RX_SER | ||
| 431 | | RIO_PORT_N_CTL_EN_TX_SER; | ||
| 432 | } else { | ||
| 433 | /* parallel */ | ||
| 434 | regval = regval | RIO_PORT_N_CTL_EN_RX_PAR | ||
| 435 | | RIO_PORT_N_CTL_EN_TX_PAR; | ||
| 436 | } | ||
| 437 | |||
| 438 | if (local) { | ||
| 439 | rio_local_write_config_32(port, ext_ftr_ptr + | ||
| 440 | RIO_PORT_N_CTL_CSR(0), regval); | ||
| 441 | } else { | ||
| 442 | if (rio_mport_write_config_32(port, destid, hopcount, | ||
| 443 | ext_ftr_ptr + RIO_PORT_N_CTL_CSR(port_num), regval) < 0) | ||
| 444 | return -EIO; | ||
| 445 | } | ||
| 446 | #endif | ||
| 447 | return 0; | ||
| 448 | } | ||
| 449 | |||
| 450 | /** | ||
| 451 | * rio_setup_device- Allocates and sets up a RIO device | 326 | * rio_setup_device- Allocates and sets up a RIO device |
| 452 | * @net: RIO network | 327 | * @net: RIO network |
| 453 | * @port: Master port to send transactions | 328 | * @port: Master port to send transactions |
| @@ -587,8 +462,7 @@ static struct rio_dev *rio_setup_device(struct rio_net *net, | |||
| 587 | rdev->destid); | 462 | rdev->destid); |
| 588 | } | 463 | } |
| 589 | 464 | ||
| 590 | rdev->dev.bus = &rio_bus_type; | 465 | rio_attach_device(rdev); |
| 591 | rdev->dev.parent = &rio_bus; | ||
| 592 | 466 | ||
| 593 | device_initialize(&rdev->dev); | 467 | device_initialize(&rdev->dev); |
| 594 | rdev->dev.release = rio_release_dev; | 468 | rdev->dev.release = rio_release_dev; |
| @@ -1260,19 +1134,30 @@ static void rio_pw_enable(struct rio_mport *port, int enable) | |||
| 1260 | /** | 1134 | /** |
| 1261 | * rio_enum_mport- Start enumeration through a master port | 1135 | * rio_enum_mport- Start enumeration through a master port |
| 1262 | * @mport: Master port to send transactions | 1136 | * @mport: Master port to send transactions |
| 1137 | * @flags: Enumeration control flags | ||
| 1263 | * | 1138 | * |
| 1264 | * Starts the enumeration process. If somebody has enumerated our | 1139 | * Starts the enumeration process. If somebody has enumerated our |
| 1265 | * master port device, then give up. If not and we have an active | 1140 | * master port device, then give up. If not and we have an active |
| 1266 | * link, then start recursive peer enumeration. Returns %0 if | 1141 | * link, then start recursive peer enumeration. Returns %0 if |
| 1267 | * enumeration succeeds or %-EBUSY if enumeration fails. | 1142 | * enumeration succeeds or %-EBUSY if enumeration fails. |
| 1268 | */ | 1143 | */ |
| 1269 | int rio_enum_mport(struct rio_mport *mport) | 1144 | int rio_enum_mport(struct rio_mport *mport, u32 flags) |
| 1270 | { | 1145 | { |
| 1271 | struct rio_net *net = NULL; | 1146 | struct rio_net *net = NULL; |
| 1272 | int rc = 0; | 1147 | int rc = 0; |
| 1273 | 1148 | ||
| 1274 | printk(KERN_INFO "RIO: enumerate master port %d, %s\n", mport->id, | 1149 | printk(KERN_INFO "RIO: enumerate master port %d, %s\n", mport->id, |
| 1275 | mport->name); | 1150 | mport->name); |
| 1151 | |||
| 1152 | /* | ||
| 1153 | * To avoid multiple start requests (repeat enumeration is not supported | ||
| 1154 | * by this method) check if enumeration/discovery was performed for this | ||
| 1155 | * mport: if mport was added into the list of mports for a net exit | ||
| 1156 | * with error. | ||
| 1157 | */ | ||
| 1158 | if (mport->nnode.next || mport->nnode.prev) | ||
| 1159 | return -EBUSY; | ||
| 1160 | |||
| 1276 | /* If somebody else enumerated our master port device, bail. */ | 1161 | /* If somebody else enumerated our master port device, bail. */ |
| 1277 | if (rio_enum_host(mport) < 0) { | 1162 | if (rio_enum_host(mport) < 0) { |
| 1278 | printk(KERN_INFO | 1163 | printk(KERN_INFO |
| @@ -1362,14 +1247,16 @@ static void rio_build_route_tables(struct rio_net *net) | |||
| 1362 | /** | 1247 | /** |
| 1363 | * rio_disc_mport- Start discovery through a master port | 1248 | * rio_disc_mport- Start discovery through a master port |
| 1364 | * @mport: Master port to send transactions | 1249 | * @mport: Master port to send transactions |
| 1250 | * @flags: discovery control flags | ||
| 1365 | * | 1251 | * |
| 1366 | * Starts the discovery process. If we have an active link, | 1252 | * Starts the discovery process. If we have an active link, |
| 1367 | * then wait for the signal that enumeration is complete. | 1253 | * then wait for the signal that enumeration is complete (if wait |
| 1254 | * is allowed). | ||
| 1368 | * When enumeration completion is signaled, start recursive | 1255 | * When enumeration completion is signaled, start recursive |
| 1369 | * peer discovery. Returns %0 if discovery succeeds or %-EBUSY | 1256 | * peer discovery. Returns %0 if discovery succeeds or %-EBUSY |
| 1370 | * on failure. | 1257 | * on failure. |
| 1371 | */ | 1258 | */ |
| 1372 | int rio_disc_mport(struct rio_mport *mport) | 1259 | int rio_disc_mport(struct rio_mport *mport, u32 flags) |
| 1373 | { | 1260 | { |
| 1374 | struct rio_net *net = NULL; | 1261 | struct rio_net *net = NULL; |
| 1375 | unsigned long to_end; | 1262 | unsigned long to_end; |
| @@ -1379,6 +1266,11 @@ int rio_disc_mport(struct rio_mport *mport) | |||
| 1379 | 1266 | ||
| 1380 | /* If master port has an active link, allocate net and discover peers */ | 1267 | /* If master port has an active link, allocate net and discover peers */ |
| 1381 | if (rio_mport_is_active(mport)) { | 1268 | if (rio_mport_is_active(mport)) { |
| 1269 | if (rio_enum_complete(mport)) | ||
| 1270 | goto enum_done; | ||
| 1271 | else if (flags & RIO_SCAN_ENUM_NO_WAIT) | ||
| 1272 | return -EAGAIN; | ||
| 1273 | |||
| 1382 | pr_debug("RIO: wait for enumeration to complete...\n"); | 1274 | pr_debug("RIO: wait for enumeration to complete...\n"); |
| 1383 | 1275 | ||
| 1384 | to_end = jiffies + CONFIG_RAPIDIO_DISC_TIMEOUT * HZ; | 1276 | to_end = jiffies + CONFIG_RAPIDIO_DISC_TIMEOUT * HZ; |
| @@ -1421,3 +1313,41 @@ enum_done: | |||
| 1421 | bail: | 1313 | bail: |
| 1422 | return -EBUSY; | 1314 | return -EBUSY; |
| 1423 | } | 1315 | } |
| 1316 | |||
| 1317 | static struct rio_scan rio_scan_ops = { | ||
| 1318 | .enumerate = rio_enum_mport, | ||
| 1319 | .discover = rio_disc_mport, | ||
| 1320 | }; | ||
| 1321 | |||
| 1322 | static bool scan; | ||
| 1323 | module_param(scan, bool, 0); | ||
| 1324 | MODULE_PARM_DESC(scan, "Start RapidIO network enumeration/discovery " | ||
| 1325 | "(default = 0)"); | ||
| 1326 | |||
| 1327 | /** | ||
| 1328 | * rio_basic_attach: | ||
| 1329 | * | ||
| 1330 | * When this enumeration/discovery method is loaded as a module this function | ||
| 1331 | * registers its specific enumeration and discover routines for all available | ||
| 1332 | * RapidIO mport devices. The "scan" command line parameter controls ability of | ||
| 1333 | * the module to start RapidIO enumeration/discovery automatically. | ||
| 1334 | * | ||
| 1335 | * Returns 0 for success or -EIO if unable to register itself. | ||
| 1336 | * | ||
| 1337 | * This enumeration/discovery method cannot be unloaded and therefore does not | ||
| 1338 | * provide a matching cleanup_module routine. | ||
| 1339 | */ | ||
| 1340 | |||
| 1341 | static int __init rio_basic_attach(void) | ||
| 1342 | { | ||
| 1343 | if (rio_register_scan(RIO_MPORT_ANY, &rio_scan_ops)) | ||
| 1344 | return -EIO; | ||
| 1345 | if (scan) | ||
| 1346 | rio_init_mports(); | ||
| 1347 | return 0; | ||
| 1348 | } | ||
| 1349 | |||
| 1350 | late_initcall(rio_basic_attach); | ||
| 1351 | |||
| 1352 | MODULE_DESCRIPTION("Basic RapidIO enumeration/discovery"); | ||
| 1353 | MODULE_LICENSE("GPL"); | ||
diff --git a/drivers/rapidio/rio-sysfs.c b/drivers/rapidio/rio-sysfs.c index 4dbe360989be..66d4acd5e18f 100644 --- a/drivers/rapidio/rio-sysfs.c +++ b/drivers/rapidio/rio-sysfs.c | |||
| @@ -285,3 +285,48 @@ void rio_remove_sysfs_dev_files(struct rio_dev *rdev) | |||
| 285 | rdev->rswitch->sw_sysfs(rdev, RIO_SW_SYSFS_REMOVE); | 285 | rdev->rswitch->sw_sysfs(rdev, RIO_SW_SYSFS_REMOVE); |
| 286 | } | 286 | } |
| 287 | } | 287 | } |
| 288 | |||
| 289 | static ssize_t bus_scan_store(struct bus_type *bus, const char *buf, | ||
| 290 | size_t count) | ||
| 291 | { | ||
| 292 | long val; | ||
| 293 | struct rio_mport *port = NULL; | ||
| 294 | int rc; | ||
| 295 | |||
| 296 | if (kstrtol(buf, 0, &val) < 0) | ||
| 297 | return -EINVAL; | ||
| 298 | |||
| 299 | if (val == RIO_MPORT_ANY) { | ||
| 300 | rc = rio_init_mports(); | ||
| 301 | goto exit; | ||
| 302 | } | ||
| 303 | |||
| 304 | if (val < 0 || val >= RIO_MAX_MPORTS) | ||
| 305 | return -EINVAL; | ||
| 306 | |||
| 307 | port = rio_find_mport((int)val); | ||
| 308 | |||
| 309 | if (!port) { | ||
| 310 | pr_debug("RIO: %s: mport_%d not available\n", | ||
| 311 | __func__, (int)val); | ||
| 312 | return -EINVAL; | ||
| 313 | } | ||
| 314 | |||
| 315 | if (!port->nscan) | ||
| 316 | return -EINVAL; | ||
| 317 | |||
| 318 | if (port->host_deviceid >= 0) | ||
| 319 | rc = port->nscan->enumerate(port, 0); | ||
| 320 | else | ||
| 321 | rc = port->nscan->discover(port, RIO_SCAN_ENUM_NO_WAIT); | ||
| 322 | exit: | ||
| 323 | if (!rc) | ||
| 324 | rc = count; | ||
| 325 | |||
| 326 | return rc; | ||
| 327 | } | ||
| 328 | |||
| 329 | struct bus_attribute rio_bus_attrs[] = { | ||
| 330 | __ATTR(scan, (S_IWUSR|S_IWGRP), NULL, bus_scan_store), | ||
| 331 | __ATTR_NULL | ||
| 332 | }; | ||
diff --git a/drivers/rapidio/rio.c b/drivers/rapidio/rio.c index d553b5d13722..cb1c08996fbb 100644 --- a/drivers/rapidio/rio.c +++ b/drivers/rapidio/rio.c | |||
| @@ -31,7 +31,11 @@ | |||
| 31 | 31 | ||
| 32 | #include "rio.h" | 32 | #include "rio.h" |
| 33 | 33 | ||
| 34 | static LIST_HEAD(rio_devices); | ||
| 35 | static DEFINE_SPINLOCK(rio_global_list_lock); | ||
| 36 | |||
| 34 | static LIST_HEAD(rio_mports); | 37 | static LIST_HEAD(rio_mports); |
| 38 | static DEFINE_MUTEX(rio_mport_list_lock); | ||
| 35 | static unsigned char next_portid; | 39 | static unsigned char next_portid; |
| 36 | static DEFINE_SPINLOCK(rio_mmap_lock); | 40 | static DEFINE_SPINLOCK(rio_mmap_lock); |
| 37 | 41 | ||
| @@ -53,6 +57,32 @@ u16 rio_local_get_device_id(struct rio_mport *port) | |||
| 53 | } | 57 | } |
| 54 | 58 | ||
| 55 | /** | 59 | /** |
| 60 | * rio_add_device- Adds a RIO device to the device model | ||
| 61 | * @rdev: RIO device | ||
| 62 | * | ||
| 63 | * Adds the RIO device to the global device list and adds the RIO | ||
| 64 | * device to the RIO device list. Creates the generic sysfs nodes | ||
| 65 | * for an RIO device. | ||
| 66 | */ | ||
| 67 | int rio_add_device(struct rio_dev *rdev) | ||
| 68 | { | ||
| 69 | int err; | ||
| 70 | |||
| 71 | err = device_add(&rdev->dev); | ||
| 72 | if (err) | ||
| 73 | return err; | ||
| 74 | |||
| 75 | spin_lock(&rio_global_list_lock); | ||
| 76 | list_add_tail(&rdev->global_list, &rio_devices); | ||
| 77 | spin_unlock(&rio_global_list_lock); | ||
| 78 | |||
| 79 | rio_create_sysfs_dev_files(rdev); | ||
| 80 | |||
| 81 | return 0; | ||
| 82 | } | ||
| 83 | EXPORT_SYMBOL_GPL(rio_add_device); | ||
| 84 | |||
| 85 | /** | ||
| 56 | * rio_request_inb_mbox - request inbound mailbox service | 86 | * rio_request_inb_mbox - request inbound mailbox service |
| 57 | * @mport: RIO master port from which to allocate the mailbox resource | 87 | * @mport: RIO master port from which to allocate the mailbox resource |
| 58 | * @dev_id: Device specific pointer to pass on event | 88 | * @dev_id: Device specific pointer to pass on event |
| @@ -489,6 +519,7 @@ rio_mport_get_physefb(struct rio_mport *port, int local, | |||
| 489 | 519 | ||
| 490 | return ext_ftr_ptr; | 520 | return ext_ftr_ptr; |
| 491 | } | 521 | } |
| 522 | EXPORT_SYMBOL_GPL(rio_mport_get_physefb); | ||
| 492 | 523 | ||
| 493 | /** | 524 | /** |
| 494 | * rio_get_comptag - Begin or continue searching for a RIO device by component tag | 525 | * rio_get_comptag - Begin or continue searching for a RIO device by component tag |
| @@ -521,6 +552,7 @@ exit: | |||
| 521 | spin_unlock(&rio_global_list_lock); | 552 | spin_unlock(&rio_global_list_lock); |
| 522 | return rdev; | 553 | return rdev; |
| 523 | } | 554 | } |
| 555 | EXPORT_SYMBOL_GPL(rio_get_comptag); | ||
| 524 | 556 | ||
| 525 | /** | 557 | /** |
| 526 | * rio_set_port_lockout - Sets/clears LOCKOUT bit (RIO EM 1.3) for a switch port. | 558 | * rio_set_port_lockout - Sets/clears LOCKOUT bit (RIO EM 1.3) for a switch port. |
| @@ -545,6 +577,107 @@ int rio_set_port_lockout(struct rio_dev *rdev, u32 pnum, int lock) | |||
| 545 | regval); | 577 | regval); |
| 546 | return 0; | 578 | return 0; |
| 547 | } | 579 | } |
| 580 | EXPORT_SYMBOL_GPL(rio_set_port_lockout); | ||
| 581 | |||
| 582 | /** | ||
| 583 | * rio_switch_init - Sets switch operations for a particular vendor switch | ||
| 584 | * @rdev: RIO device | ||
| 585 | * @do_enum: Enumeration/Discovery mode flag | ||
| 586 | * | ||
| 587 | * Searches the RIO switch ops table for known switch types. If the vid | ||
| 588 | * and did match a switch table entry, then call switch initialization | ||
| 589 | * routine to setup switch-specific routines. | ||
| 590 | */ | ||
| 591 | void rio_switch_init(struct rio_dev *rdev, int do_enum) | ||
| 592 | { | ||
| 593 | struct rio_switch_ops *cur = __start_rio_switch_ops; | ||
| 594 | struct rio_switch_ops *end = __end_rio_switch_ops; | ||
| 595 | |||
| 596 | while (cur < end) { | ||
| 597 | if ((cur->vid == rdev->vid) && (cur->did == rdev->did)) { | ||
| 598 | pr_debug("RIO: calling init routine for %s\n", | ||
| 599 | rio_name(rdev)); | ||
| 600 | cur->init_hook(rdev, do_enum); | ||
| 601 | break; | ||
| 602 | } | ||
| 603 | cur++; | ||
| 604 | } | ||
| 605 | |||
| 606 | if ((cur >= end) && (rdev->pef & RIO_PEF_STD_RT)) { | ||
| 607 | pr_debug("RIO: adding STD routing ops for %s\n", | ||
| 608 | rio_name(rdev)); | ||
| 609 | rdev->rswitch->add_entry = rio_std_route_add_entry; | ||
| 610 | rdev->rswitch->get_entry = rio_std_route_get_entry; | ||
| 611 | rdev->rswitch->clr_table = rio_std_route_clr_table; | ||
| 612 | } | ||
| 613 | |||
| 614 | if (!rdev->rswitch->add_entry || !rdev->rswitch->get_entry) | ||
| 615 | printk(KERN_ERR "RIO: missing routing ops for %s\n", | ||
| 616 | rio_name(rdev)); | ||
| 617 | } | ||
| 618 | EXPORT_SYMBOL_GPL(rio_switch_init); | ||
| 619 | |||
| 620 | /** | ||
| 621 | * rio_enable_rx_tx_port - enable input receiver and output transmitter of | ||
| 622 | * given port | ||
| 623 | * @port: Master port associated with the RIO network | ||
| 624 | * @local: local=1 select local port otherwise a far device is reached | ||
| 625 | * @destid: Destination ID of the device to check host bit | ||
| 626 | * @hopcount: Number of hops to reach the target | ||
| 627 | * @port_num: Port (-number on switch) to enable on a far end device | ||
| 628 | * | ||
| 629 | * Returns 0 or 1 from on General Control Command and Status Register | ||
| 630 | * (EXT_PTR+0x3C) | ||
| 631 | */ | ||
| 632 | int rio_enable_rx_tx_port(struct rio_mport *port, | ||
| 633 | int local, u16 destid, | ||
| 634 | u8 hopcount, u8 port_num) | ||
| 635 | { | ||
| 636 | #ifdef CONFIG_RAPIDIO_ENABLE_RX_TX_PORTS | ||
| 637 | u32 regval; | ||
| 638 | u32 ext_ftr_ptr; | ||
| 639 | |||
| 640 | /* | ||
| 641 | * enable rx input tx output port | ||
| 642 | */ | ||
| 643 | pr_debug("rio_enable_rx_tx_port(local = %d, destid = %d, hopcount = " | ||
| 644 | "%d, port_num = %d)\n", local, destid, hopcount, port_num); | ||
| 645 | |||
| 646 | ext_ftr_ptr = rio_mport_get_physefb(port, local, destid, hopcount); | ||
| 647 | |||
| 648 | if (local) { | ||
| 649 | rio_local_read_config_32(port, ext_ftr_ptr + | ||
| 650 | RIO_PORT_N_CTL_CSR(0), | ||
| 651 | ®val); | ||
| 652 | } else { | ||
| 653 | if (rio_mport_read_config_32(port, destid, hopcount, | ||
| 654 | ext_ftr_ptr + RIO_PORT_N_CTL_CSR(port_num), ®val) < 0) | ||
| 655 | return -EIO; | ||
| 656 | } | ||
| 657 | |||
| 658 | if (regval & RIO_PORT_N_CTL_P_TYP_SER) { | ||
| 659 | /* serial */ | ||
| 660 | regval = regval | RIO_PORT_N_CTL_EN_RX_SER | ||
| 661 | | RIO_PORT_N_CTL_EN_TX_SER; | ||
| 662 | } else { | ||
| 663 | /* parallel */ | ||
| 664 | regval = regval | RIO_PORT_N_CTL_EN_RX_PAR | ||
| 665 | | RIO_PORT_N_CTL_EN_TX_PAR; | ||
| 666 | } | ||
| 667 | |||
| 668 | if (local) { | ||
| 669 | rio_local_write_config_32(port, ext_ftr_ptr + | ||
| 670 | RIO_PORT_N_CTL_CSR(0), regval); | ||
| 671 | } else { | ||
| 672 | if (rio_mport_write_config_32(port, destid, hopcount, | ||
| 673 | ext_ftr_ptr + RIO_PORT_N_CTL_CSR(port_num), regval) < 0) | ||
| 674 | return -EIO; | ||
| 675 | } | ||
| 676 | #endif | ||
| 677 | return 0; | ||
| 678 | } | ||
| 679 | EXPORT_SYMBOL_GPL(rio_enable_rx_tx_port); | ||
| 680 | |||
| 548 | 681 | ||
| 549 | /** | 682 | /** |
| 550 | * rio_chk_dev_route - Validate route to the specified device. | 683 | * rio_chk_dev_route - Validate route to the specified device. |
| @@ -610,6 +743,7 @@ rio_mport_chk_dev_access(struct rio_mport *mport, u16 destid, u8 hopcount) | |||
| 610 | 743 | ||
| 611 | return 0; | 744 | return 0; |
| 612 | } | 745 | } |
| 746 | EXPORT_SYMBOL_GPL(rio_mport_chk_dev_access); | ||
| 613 | 747 | ||
| 614 | /** | 748 | /** |
| 615 | * rio_chk_dev_access - Validate access to the specified device. | 749 | * rio_chk_dev_access - Validate access to the specified device. |
| @@ -941,6 +1075,7 @@ rio_mport_get_efb(struct rio_mport *port, int local, u16 destid, | |||
| 941 | return RIO_GET_BLOCK_ID(reg_val); | 1075 | return RIO_GET_BLOCK_ID(reg_val); |
| 942 | } | 1076 | } |
| 943 | } | 1077 | } |
| 1078 | EXPORT_SYMBOL_GPL(rio_mport_get_efb); | ||
| 944 | 1079 | ||
| 945 | /** | 1080 | /** |
| 946 | * rio_mport_get_feature - query for devices' extended features | 1081 | * rio_mport_get_feature - query for devices' extended features |
| @@ -997,6 +1132,7 @@ rio_mport_get_feature(struct rio_mport * port, int local, u16 destid, | |||
| 997 | 1132 | ||
| 998 | return 0; | 1133 | return 0; |
| 999 | } | 1134 | } |
| 1135 | EXPORT_SYMBOL_GPL(rio_mport_get_feature); | ||
| 1000 | 1136 | ||
| 1001 | /** | 1137 | /** |
| 1002 | * rio_get_asm - Begin or continue searching for a RIO device by vid/did/asm_vid/asm_did | 1138 | * rio_get_asm - Begin or continue searching for a RIO device by vid/did/asm_vid/asm_did |
| @@ -1246,6 +1382,95 @@ EXPORT_SYMBOL_GPL(rio_dma_prep_slave_sg); | |||
| 1246 | 1382 | ||
| 1247 | #endif /* CONFIG_RAPIDIO_DMA_ENGINE */ | 1383 | #endif /* CONFIG_RAPIDIO_DMA_ENGINE */ |
| 1248 | 1384 | ||
| 1385 | /** | ||
| 1386 | * rio_find_mport - find RIO mport by its ID | ||
| 1387 | * @mport_id: number (ID) of mport device | ||
| 1388 | * | ||
| 1389 | * Given a RIO mport number, the desired mport is located | ||
| 1390 | * in the global list of mports. If the mport is found, a pointer to its | ||
| 1391 | * data structure is returned. If no mport is found, %NULL is returned. | ||
| 1392 | */ | ||
| 1393 | struct rio_mport *rio_find_mport(int mport_id) | ||
| 1394 | { | ||
| 1395 | struct rio_mport *port; | ||
| 1396 | |||
| 1397 | mutex_lock(&rio_mport_list_lock); | ||
| 1398 | list_for_each_entry(port, &rio_mports, node) { | ||
| 1399 | if (port->id == mport_id) | ||
| 1400 | goto found; | ||
| 1401 | } | ||
| 1402 | port = NULL; | ||
| 1403 | found: | ||
| 1404 | mutex_unlock(&rio_mport_list_lock); | ||
| 1405 | |||
| 1406 | return port; | ||
| 1407 | } | ||
| 1408 | |||
| 1409 | /** | ||
| 1410 | * rio_register_scan - enumeration/discovery method registration interface | ||
| 1411 | * @mport_id: mport device ID for which fabric scan routine has to be set | ||
| 1412 | * (RIO_MPORT_ANY = set for all available mports) | ||
| 1413 | * @scan_ops: enumeration/discovery control structure | ||
| 1414 | * | ||
| 1415 | * Assigns enumeration or discovery method to the specified mport device (or all | ||
| 1416 | * available mports if RIO_MPORT_ANY is specified). | ||
| 1417 | * Returns error if the mport already has an enumerator attached to it. | ||
| 1418 | * In case of RIO_MPORT_ANY ignores ports with valid scan routines and returns | ||
| 1419 | * an error if was unable to find at least one available mport. | ||
| 1420 | */ | ||
| 1421 | int rio_register_scan(int mport_id, struct rio_scan *scan_ops) | ||
| 1422 | { | ||
| 1423 | struct rio_mport *port; | ||
| 1424 | int rc = -EBUSY; | ||
| 1425 | |||
| 1426 | mutex_lock(&rio_mport_list_lock); | ||
| 1427 | list_for_each_entry(port, &rio_mports, node) { | ||
| 1428 | if (port->id == mport_id || mport_id == RIO_MPORT_ANY) { | ||
| 1429 | if (port->nscan && mport_id == RIO_MPORT_ANY) | ||
| 1430 | continue; | ||
| 1431 | else if (port->nscan) | ||
| 1432 | break; | ||
| 1433 | |||
| 1434 | port->nscan = scan_ops; | ||
| 1435 | rc = 0; | ||
| 1436 | |||
| 1437 | if (mport_id != RIO_MPORT_ANY) | ||
| 1438 | break; | ||
| 1439 | } | ||
| 1440 | } | ||
| 1441 | mutex_unlock(&rio_mport_list_lock); | ||
| 1442 | |||
| 1443 | return rc; | ||
| 1444 | } | ||
| 1445 | EXPORT_SYMBOL_GPL(rio_register_scan); | ||
| 1446 | |||
| 1447 | /** | ||
| 1448 | * rio_unregister_scan - removes enumeration/discovery method from mport | ||
| 1449 | * @mport_id: mport device ID for which fabric scan routine has to be | ||
| 1450 | * unregistered (RIO_MPORT_ANY = set for all available mports) | ||
| 1451 | * | ||
| 1452 | * Removes enumeration or discovery method assigned to the specified mport | ||
| 1453 | * device (or all available mports if RIO_MPORT_ANY is specified). | ||
| 1454 | */ | ||
| 1455 | int rio_unregister_scan(int mport_id) | ||
| 1456 | { | ||
| 1457 | struct rio_mport *port; | ||
| 1458 | |||
| 1459 | mutex_lock(&rio_mport_list_lock); | ||
| 1460 | list_for_each_entry(port, &rio_mports, node) { | ||
| 1461 | if (port->id == mport_id || mport_id == RIO_MPORT_ANY) { | ||
| 1462 | if (port->nscan) | ||
| 1463 | port->nscan = NULL; | ||
| 1464 | if (mport_id != RIO_MPORT_ANY) | ||
| 1465 | break; | ||
| 1466 | } | ||
| 1467 | } | ||
| 1468 | mutex_unlock(&rio_mport_list_lock); | ||
| 1469 | |||
| 1470 | return 0; | ||
| 1471 | } | ||
| 1472 | EXPORT_SYMBOL_GPL(rio_unregister_scan); | ||
| 1473 | |||
| 1249 | static void rio_fixup_device(struct rio_dev *dev) | 1474 | static void rio_fixup_device(struct rio_dev *dev) |
| 1250 | { | 1475 | { |
| 1251 | } | 1476 | } |
| @@ -1274,7 +1499,7 @@ static void disc_work_handler(struct work_struct *_work) | |||
| 1274 | work = container_of(_work, struct rio_disc_work, work); | 1499 | work = container_of(_work, struct rio_disc_work, work); |
| 1275 | pr_debug("RIO: discovery work for mport %d %s\n", | 1500 | pr_debug("RIO: discovery work for mport %d %s\n", |
| 1276 | work->mport->id, work->mport->name); | 1501 | work->mport->id, work->mport->name); |
| 1277 | rio_disc_mport(work->mport); | 1502 | work->mport->nscan->discover(work->mport, 0); |
| 1278 | } | 1503 | } |
| 1279 | 1504 | ||
| 1280 | int rio_init_mports(void) | 1505 | int rio_init_mports(void) |
| @@ -1290,12 +1515,15 @@ int rio_init_mports(void) | |||
| 1290 | * First, run enumerations and check if we need to perform discovery | 1515 | * First, run enumerations and check if we need to perform discovery |
| 1291 | * on any of the registered mports. | 1516 | * on any of the registered mports. |
| 1292 | */ | 1517 | */ |
| 1518 | mutex_lock(&rio_mport_list_lock); | ||
| 1293 | list_for_each_entry(port, &rio_mports, node) { | 1519 | list_for_each_entry(port, &rio_mports, node) { |
| 1294 | if (port->host_deviceid >= 0) | 1520 | if (port->host_deviceid >= 0) { |
| 1295 | rio_enum_mport(port); | 1521 | if (port->nscan) |
| 1296 | else | 1522 | port->nscan->enumerate(port, 0); |
| 1523 | } else | ||
| 1297 | n++; | 1524 | n++; |
| 1298 | } | 1525 | } |
| 1526 | mutex_unlock(&rio_mport_list_lock); | ||
| 1299 | 1527 | ||
| 1300 | if (!n) | 1528 | if (!n) |
| 1301 | goto no_disc; | 1529 | goto no_disc; |
| @@ -1322,14 +1550,16 @@ int rio_init_mports(void) | |||
| 1322 | } | 1550 | } |
| 1323 | 1551 | ||
| 1324 | n = 0; | 1552 | n = 0; |
| 1553 | mutex_lock(&rio_mport_list_lock); | ||
| 1325 | list_for_each_entry(port, &rio_mports, node) { | 1554 | list_for_each_entry(port, &rio_mports, node) { |
| 1326 | if (port->host_deviceid < 0) { | 1555 | if (port->host_deviceid < 0 && port->nscan) { |
| 1327 | work[n].mport = port; | 1556 | work[n].mport = port; |
| 1328 | INIT_WORK(&work[n].work, disc_work_handler); | 1557 | INIT_WORK(&work[n].work, disc_work_handler); |
| 1329 | queue_work(rio_wq, &work[n].work); | 1558 | queue_work(rio_wq, &work[n].work); |
| 1330 | n++; | 1559 | n++; |
| 1331 | } | 1560 | } |
| 1332 | } | 1561 | } |
| 1562 | mutex_unlock(&rio_mport_list_lock); | ||
| 1333 | 1563 | ||
| 1334 | flush_workqueue(rio_wq); | 1564 | flush_workqueue(rio_wq); |
| 1335 | pr_debug("RIO: destroy discovery workqueue\n"); | 1565 | pr_debug("RIO: destroy discovery workqueue\n"); |
| @@ -1342,8 +1572,6 @@ no_disc: | |||
| 1342 | return 0; | 1572 | return 0; |
| 1343 | } | 1573 | } |
| 1344 | 1574 | ||
| 1345 | device_initcall_sync(rio_init_mports); | ||
| 1346 | |||
| 1347 | static int hdids[RIO_MAX_MPORTS + 1]; | 1575 | static int hdids[RIO_MAX_MPORTS + 1]; |
| 1348 | 1576 | ||
| 1349 | static int rio_get_hdid(int index) | 1577 | static int rio_get_hdid(int index) |
| @@ -1371,7 +1599,10 @@ int rio_register_mport(struct rio_mport *port) | |||
| 1371 | 1599 | ||
| 1372 | port->id = next_portid++; | 1600 | port->id = next_portid++; |
| 1373 | port->host_deviceid = rio_get_hdid(port->id); | 1601 | port->host_deviceid = rio_get_hdid(port->id); |
| 1602 | port->nscan = NULL; | ||
| 1603 | mutex_lock(&rio_mport_list_lock); | ||
| 1374 | list_add_tail(&port->node, &rio_mports); | 1604 | list_add_tail(&port->node, &rio_mports); |
| 1605 | mutex_unlock(&rio_mport_list_lock); | ||
| 1375 | return 0; | 1606 | return 0; |
| 1376 | } | 1607 | } |
| 1377 | 1608 | ||
| @@ -1386,3 +1617,4 @@ EXPORT_SYMBOL_GPL(rio_request_inb_mbox); | |||
| 1386 | EXPORT_SYMBOL_GPL(rio_release_inb_mbox); | 1617 | EXPORT_SYMBOL_GPL(rio_release_inb_mbox); |
| 1387 | EXPORT_SYMBOL_GPL(rio_request_outb_mbox); | 1618 | EXPORT_SYMBOL_GPL(rio_request_outb_mbox); |
| 1388 | EXPORT_SYMBOL_GPL(rio_release_outb_mbox); | 1619 | EXPORT_SYMBOL_GPL(rio_release_outb_mbox); |
| 1620 | EXPORT_SYMBOL_GPL(rio_init_mports); | ||
diff --git a/drivers/rapidio/rio.h b/drivers/rapidio/rio.h index b1af414f15e6..c14f864dea5c 100644 --- a/drivers/rapidio/rio.h +++ b/drivers/rapidio/rio.h | |||
| @@ -15,6 +15,7 @@ | |||
| 15 | #include <linux/rio.h> | 15 | #include <linux/rio.h> |
| 16 | 16 | ||
| 17 | #define RIO_MAX_CHK_RETRY 3 | 17 | #define RIO_MAX_CHK_RETRY 3 |
| 18 | #define RIO_MPORT_ANY (-1) | ||
| 18 | 19 | ||
| 19 | /* Functions internal to the RIO core code */ | 20 | /* Functions internal to the RIO core code */ |
| 20 | 21 | ||
| @@ -27,8 +28,6 @@ extern u32 rio_mport_get_efb(struct rio_mport *port, int local, u16 destid, | |||
| 27 | extern int rio_mport_chk_dev_access(struct rio_mport *mport, u16 destid, | 28 | extern int rio_mport_chk_dev_access(struct rio_mport *mport, u16 destid, |
| 28 | u8 hopcount); | 29 | u8 hopcount); |
| 29 | extern int rio_create_sysfs_dev_files(struct rio_dev *rdev); | 30 | extern int rio_create_sysfs_dev_files(struct rio_dev *rdev); |
| 30 | extern int rio_enum_mport(struct rio_mport *mport); | ||
| 31 | extern int rio_disc_mport(struct rio_mport *mport); | ||
| 32 | extern int rio_std_route_add_entry(struct rio_mport *mport, u16 destid, | 31 | extern int rio_std_route_add_entry(struct rio_mport *mport, u16 destid, |
| 33 | u8 hopcount, u16 table, u16 route_destid, | 32 | u8 hopcount, u16 table, u16 route_destid, |
| 34 | u8 route_port); | 33 | u8 route_port); |
| @@ -39,10 +38,18 @@ extern int rio_std_route_clr_table(struct rio_mport *mport, u16 destid, | |||
| 39 | u8 hopcount, u16 table); | 38 | u8 hopcount, u16 table); |
| 40 | extern int rio_set_port_lockout(struct rio_dev *rdev, u32 pnum, int lock); | 39 | extern int rio_set_port_lockout(struct rio_dev *rdev, u32 pnum, int lock); |
| 41 | extern struct rio_dev *rio_get_comptag(u32 comp_tag, struct rio_dev *from); | 40 | extern struct rio_dev *rio_get_comptag(u32 comp_tag, struct rio_dev *from); |
| 41 | extern int rio_add_device(struct rio_dev *rdev); | ||
| 42 | extern void rio_switch_init(struct rio_dev *rdev, int do_enum); | ||
| 43 | extern int rio_enable_rx_tx_port(struct rio_mport *port, int local, u16 destid, | ||
| 44 | u8 hopcount, u8 port_num); | ||
| 45 | extern int rio_register_scan(int mport_id, struct rio_scan *scan_ops); | ||
| 46 | extern int rio_unregister_scan(int mport_id); | ||
| 47 | extern void rio_attach_device(struct rio_dev *rdev); | ||
| 48 | extern struct rio_mport *rio_find_mport(int mport_id); | ||
| 42 | 49 | ||
| 43 | /* Structures internal to the RIO core code */ | 50 | /* Structures internal to the RIO core code */ |
| 44 | extern struct device_attribute rio_dev_attrs[]; | 51 | extern struct device_attribute rio_dev_attrs[]; |
| 45 | extern spinlock_t rio_global_list_lock; | 52 | extern struct bus_attribute rio_bus_attrs[]; |
| 46 | 53 | ||
| 47 | extern struct rio_switch_ops __start_rio_switch_ops[]; | 54 | extern struct rio_switch_ops __start_rio_switch_ops[]; |
| 48 | extern struct rio_switch_ops __end_rio_switch_ops[]; | 55 | extern struct rio_switch_ops __end_rio_switch_ops[]; |
diff --git a/drivers/rtc/rtc-max8998.c b/drivers/rtc/rtc-max8998.c index 48b6612fae7f..d5af7baa48b5 100644 --- a/drivers/rtc/rtc-max8998.c +++ b/drivers/rtc/rtc-max8998.c | |||
| @@ -285,7 +285,7 @@ static int max8998_rtc_probe(struct platform_device *pdev) | |||
| 285 | info->irq, ret); | 285 | info->irq, ret); |
| 286 | 286 | ||
| 287 | dev_info(&pdev->dev, "RTC CHIP NAME: %s\n", pdev->id_entry->name); | 287 | dev_info(&pdev->dev, "RTC CHIP NAME: %s\n", pdev->id_entry->name); |
| 288 | if (pdata->rtc_delay) { | 288 | if (pdata && pdata->rtc_delay) { |
| 289 | info->lp3974_bug_workaround = true; | 289 | info->lp3974_bug_workaround = true; |
| 290 | dev_warn(&pdev->dev, "LP3974 with RTC REGERR option." | 290 | dev_warn(&pdev->dev, "LP3974 with RTC REGERR option." |
| 291 | " RTC updates will be extremely slow.\n"); | 291 | " RTC updates will be extremely slow.\n"); |
diff --git a/drivers/rtc/rtc-pl031.c b/drivers/rtc/rtc-pl031.c index 8900ea784817..0f0609b1aa2c 100644 --- a/drivers/rtc/rtc-pl031.c +++ b/drivers/rtc/rtc-pl031.c | |||
| @@ -306,7 +306,7 @@ static int pl031_remove(struct amba_device *adev) | |||
| 306 | struct pl031_local *ldata = dev_get_drvdata(&adev->dev); | 306 | struct pl031_local *ldata = dev_get_drvdata(&adev->dev); |
| 307 | 307 | ||
| 308 | amba_set_drvdata(adev, NULL); | 308 | amba_set_drvdata(adev, NULL); |
| 309 | free_irq(adev->irq[0], ldata->rtc); | 309 | free_irq(adev->irq[0], ldata); |
| 310 | rtc_device_unregister(ldata->rtc); | 310 | rtc_device_unregister(ldata->rtc); |
| 311 | iounmap(ldata->base); | 311 | iounmap(ldata->base); |
| 312 | kfree(ldata); | 312 | kfree(ldata); |
diff --git a/drivers/s390/block/xpram.c b/drivers/s390/block/xpram.c index 690c3338a8ae..464dd29d06c0 100644 --- a/drivers/s390/block/xpram.c +++ b/drivers/s390/block/xpram.c | |||
| @@ -343,6 +343,7 @@ static int __init xpram_setup_blkdev(void) | |||
| 343 | put_disk(xpram_disks[i]); | 343 | put_disk(xpram_disks[i]); |
| 344 | goto out; | 344 | goto out; |
| 345 | } | 345 | } |
| 346 | queue_flag_set_unlocked(QUEUE_FLAG_NONROT, xpram_queues[i]); | ||
| 346 | blk_queue_make_request(xpram_queues[i], xpram_make_request); | 347 | blk_queue_make_request(xpram_queues[i], xpram_make_request); |
| 347 | blk_queue_logical_block_size(xpram_queues[i], 4096); | 348 | blk_queue_logical_block_size(xpram_queues[i], 4096); |
| 348 | } | 349 | } |
diff --git a/drivers/s390/cio/chp.c b/drivers/s390/cio/chp.c index 21fabc6d5a9c..6c440d4349d4 100644 --- a/drivers/s390/cio/chp.c +++ b/drivers/s390/cio/chp.c | |||
| @@ -352,12 +352,48 @@ static ssize_t chp_shared_show(struct device *dev, | |||
| 352 | 352 | ||
| 353 | static DEVICE_ATTR(shared, 0444, chp_shared_show, NULL); | 353 | static DEVICE_ATTR(shared, 0444, chp_shared_show, NULL); |
| 354 | 354 | ||
| 355 | static ssize_t chp_chid_show(struct device *dev, struct device_attribute *attr, | ||
| 356 | char *buf) | ||
| 357 | { | ||
| 358 | struct channel_path *chp = to_channelpath(dev); | ||
| 359 | ssize_t rc; | ||
| 360 | |||
| 361 | mutex_lock(&chp->lock); | ||
| 362 | if (chp->desc_fmt1.flags & 0x10) | ||
| 363 | rc = sprintf(buf, "%04x\n", chp->desc_fmt1.chid); | ||
| 364 | else | ||
| 365 | rc = 0; | ||
| 366 | mutex_unlock(&chp->lock); | ||
| 367 | |||
| 368 | return rc; | ||
| 369 | } | ||
| 370 | static DEVICE_ATTR(chid, 0444, chp_chid_show, NULL); | ||
| 371 | |||
| 372 | static ssize_t chp_chid_external_show(struct device *dev, | ||
| 373 | struct device_attribute *attr, char *buf) | ||
| 374 | { | ||
| 375 | struct channel_path *chp = to_channelpath(dev); | ||
| 376 | ssize_t rc; | ||
| 377 | |||
| 378 | mutex_lock(&chp->lock); | ||
| 379 | if (chp->desc_fmt1.flags & 0x10) | ||
| 380 | rc = sprintf(buf, "%x\n", chp->desc_fmt1.flags & 0x8 ? 1 : 0); | ||
| 381 | else | ||
| 382 | rc = 0; | ||
| 383 | mutex_unlock(&chp->lock); | ||
| 384 | |||
| 385 | return rc; | ||
| 386 | } | ||
| 387 | static DEVICE_ATTR(chid_external, 0444, chp_chid_external_show, NULL); | ||
| 388 | |||
| 355 | static struct attribute *chp_attrs[] = { | 389 | static struct attribute *chp_attrs[] = { |
| 356 | &dev_attr_status.attr, | 390 | &dev_attr_status.attr, |
| 357 | &dev_attr_configure.attr, | 391 | &dev_attr_configure.attr, |
| 358 | &dev_attr_type.attr, | 392 | &dev_attr_type.attr, |
| 359 | &dev_attr_cmg.attr, | 393 | &dev_attr_cmg.attr, |
| 360 | &dev_attr_shared.attr, | 394 | &dev_attr_shared.attr, |
| 395 | &dev_attr_chid.attr, | ||
| 396 | &dev_attr_chid_external.attr, | ||
| 361 | NULL, | 397 | NULL, |
| 362 | }; | 398 | }; |
| 363 | static struct attribute_group chp_attr_group = { | 399 | static struct attribute_group chp_attr_group = { |
diff --git a/drivers/s390/cio/chsc.h b/drivers/s390/cio/chsc.h index 349d5fc47196..e7ef2a683b8f 100644 --- a/drivers/s390/cio/chsc.h +++ b/drivers/s390/cio/chsc.h | |||
| @@ -43,7 +43,9 @@ struct channel_path_desc_fmt1 { | |||
| 43 | u8 chpid; | 43 | u8 chpid; |
| 44 | u32:24; | 44 | u32:24; |
| 45 | u8 chpp; | 45 | u8 chpp; |
| 46 | u32 unused[3]; | 46 | u32 unused[2]; |
| 47 | u16 chid; | ||
| 48 | u32:16; | ||
| 47 | u16 mdc; | 49 | u16 mdc; |
| 48 | u16:13; | 50 | u16:13; |
| 49 | u8 r:1; | 51 | u8 r:1; |
diff --git a/drivers/staging/Kconfig b/drivers/staging/Kconfig index 4e8a1794f50a..aefe820a8005 100644 --- a/drivers/staging/Kconfig +++ b/drivers/staging/Kconfig | |||
| @@ -72,10 +72,10 @@ source "drivers/staging/sep/Kconfig" | |||
| 72 | 72 | ||
| 73 | source "drivers/staging/iio/Kconfig" | 73 | source "drivers/staging/iio/Kconfig" |
| 74 | 74 | ||
| 75 | source "drivers/staging/zram/Kconfig" | ||
| 76 | |||
| 77 | source "drivers/staging/zsmalloc/Kconfig" | 75 | source "drivers/staging/zsmalloc/Kconfig" |
| 78 | 76 | ||
| 77 | source "drivers/staging/zram/Kconfig" | ||
| 78 | |||
| 79 | source "drivers/staging/wlags49_h2/Kconfig" | 79 | source "drivers/staging/wlags49_h2/Kconfig" |
| 80 | 80 | ||
| 81 | source "drivers/staging/wlags49_h25/Kconfig" | 81 | source "drivers/staging/wlags49_h25/Kconfig" |
diff --git a/drivers/staging/android/logger.c b/drivers/staging/android/logger.c index b040200a5a55..9bd874789ce5 100644 --- a/drivers/staging/android/logger.c +++ b/drivers/staging/android/logger.c | |||
| @@ -242,7 +242,7 @@ static ssize_t do_read_log_to_user(struct logger_log *log, | |||
| 242 | * 'log->buffer' which contains the first entry readable by 'euid' | 242 | * 'log->buffer' which contains the first entry readable by 'euid' |
| 243 | */ | 243 | */ |
| 244 | static size_t get_next_entry_by_uid(struct logger_log *log, | 244 | static size_t get_next_entry_by_uid(struct logger_log *log, |
| 245 | size_t off, uid_t euid) | 245 | size_t off, kuid_t euid) |
| 246 | { | 246 | { |
| 247 | while (off != log->w_off) { | 247 | while (off != log->w_off) { |
| 248 | struct logger_entry *entry; | 248 | struct logger_entry *entry; |
| @@ -251,7 +251,7 @@ static size_t get_next_entry_by_uid(struct logger_log *log, | |||
| 251 | 251 | ||
| 252 | entry = get_entry_header(log, off, &scratch); | 252 | entry = get_entry_header(log, off, &scratch); |
| 253 | 253 | ||
| 254 | if (entry->euid == euid) | 254 | if (uid_eq(entry->euid, euid)) |
| 255 | return off; | 255 | return off; |
| 256 | 256 | ||
| 257 | next_len = sizeof(struct logger_entry) + entry->len; | 257 | next_len = sizeof(struct logger_entry) + entry->len; |
diff --git a/drivers/staging/android/logger.h b/drivers/staging/android/logger.h index cc6bbd99c8e0..70af7d805dff 100644 --- a/drivers/staging/android/logger.h +++ b/drivers/staging/android/logger.h | |||
| @@ -66,7 +66,7 @@ struct logger_entry { | |||
| 66 | __s32 tid; | 66 | __s32 tid; |
| 67 | __s32 sec; | 67 | __s32 sec; |
| 68 | __s32 nsec; | 68 | __s32 nsec; |
| 69 | uid_t euid; | 69 | kuid_t euid; |
| 70 | char msg[0]; | 70 | char msg[0]; |
| 71 | }; | 71 | }; |
| 72 | 72 | ||
diff --git a/drivers/staging/comedi/Kconfig b/drivers/staging/comedi/Kconfig index 7871579bb83d..87e852a0ef49 100644 --- a/drivers/staging/comedi/Kconfig +++ b/drivers/staging/comedi/Kconfig | |||
| @@ -981,6 +981,7 @@ config COMEDI_ME_DAQ | |||
| 981 | 981 | ||
| 982 | config COMEDI_NI_6527 | 982 | config COMEDI_NI_6527 |
| 983 | tristate "NI 6527 support" | 983 | tristate "NI 6527 support" |
| 984 | depends on HAS_DMA | ||
| 984 | select COMEDI_MITE | 985 | select COMEDI_MITE |
| 985 | ---help--- | 986 | ---help--- |
| 986 | Enable support for the National Instruments 6527 PCI card | 987 | Enable support for the National Instruments 6527 PCI card |
| @@ -990,6 +991,7 @@ config COMEDI_NI_6527 | |||
| 990 | 991 | ||
| 991 | config COMEDI_NI_65XX | 992 | config COMEDI_NI_65XX |
| 992 | tristate "NI 65xx static dio PCI card support" | 993 | tristate "NI 65xx static dio PCI card support" |
| 994 | depends on HAS_DMA | ||
| 993 | select COMEDI_MITE | 995 | select COMEDI_MITE |
| 994 | ---help--- | 996 | ---help--- |
| 995 | Enable support for National Instruments 65xx static dio boards. | 997 | Enable support for National Instruments 65xx static dio boards. |
| @@ -1003,6 +1005,7 @@ config COMEDI_NI_65XX | |||
| 1003 | 1005 | ||
| 1004 | config COMEDI_NI_660X | 1006 | config COMEDI_NI_660X |
| 1005 | tristate "NI 660x counter/timer PCI card support" | 1007 | tristate "NI 660x counter/timer PCI card support" |
| 1008 | depends on HAS_DMA | ||
| 1006 | select COMEDI_NI_TIOCMD | 1009 | select COMEDI_NI_TIOCMD |
| 1007 | ---help--- | 1010 | ---help--- |
| 1008 | Enable support for National Instruments PCI-6601 (ni_660x), PCI-6602, | 1011 | Enable support for National Instruments PCI-6601 (ni_660x), PCI-6602, |
| @@ -1013,6 +1016,7 @@ config COMEDI_NI_660X | |||
| 1013 | 1016 | ||
| 1014 | config COMEDI_NI_670X | 1017 | config COMEDI_NI_670X |
| 1015 | tristate "NI 670x PCI card support" | 1018 | tristate "NI 670x PCI card support" |
| 1019 | depends on HAS_DMA | ||
| 1016 | select COMEDI_MITE | 1020 | select COMEDI_MITE |
| 1017 | ---help--- | 1021 | ---help--- |
| 1018 | Enable support for National Instruments PCI-6703 and PCI-6704 | 1022 | Enable support for National Instruments PCI-6703 and PCI-6704 |
| @@ -1022,6 +1026,7 @@ config COMEDI_NI_670X | |||
| 1022 | 1026 | ||
| 1023 | config COMEDI_NI_LABPC_PCI | 1027 | config COMEDI_NI_LABPC_PCI |
| 1024 | tristate "NI Lab-PC PCI-1200 support" | 1028 | tristate "NI Lab-PC PCI-1200 support" |
| 1029 | depends on HAS_DMA | ||
| 1025 | select COMEDI_NI_LABPC | 1030 | select COMEDI_NI_LABPC |
| 1026 | select COMEDI_MITE | 1031 | select COMEDI_MITE |
| 1027 | ---help--- | 1032 | ---help--- |
| @@ -1032,6 +1037,7 @@ config COMEDI_NI_LABPC_PCI | |||
| 1032 | 1037 | ||
| 1033 | config COMEDI_NI_PCIDIO | 1038 | config COMEDI_NI_PCIDIO |
| 1034 | tristate "NI PCI-DIO32HS, PCI-6533, PCI-6534 support" | 1039 | tristate "NI PCI-DIO32HS, PCI-6533, PCI-6534 support" |
| 1040 | depends on HAS_DMA | ||
| 1035 | select COMEDI_MITE | 1041 | select COMEDI_MITE |
| 1036 | select COMEDI_8255 | 1042 | select COMEDI_8255 |
| 1037 | ---help--- | 1043 | ---help--- |
| @@ -1043,6 +1049,7 @@ config COMEDI_NI_PCIDIO | |||
| 1043 | 1049 | ||
| 1044 | config COMEDI_NI_PCIMIO | 1050 | config COMEDI_NI_PCIMIO |
| 1045 | tristate "NI PCI-MIO-E series and M series support" | 1051 | tristate "NI PCI-MIO-E series and M series support" |
| 1052 | depends on HAS_DMA | ||
| 1046 | select COMEDI_NI_TIOCMD | 1053 | select COMEDI_NI_TIOCMD |
| 1047 | select COMEDI_8255 | 1054 | select COMEDI_8255 |
| 1048 | select COMEDI_FC | 1055 | select COMEDI_FC |
| @@ -1095,10 +1102,12 @@ config COMEDI_SSV_DNP | |||
| 1095 | called ssv_dnp. | 1102 | called ssv_dnp. |
| 1096 | 1103 | ||
| 1097 | config COMEDI_MITE | 1104 | config COMEDI_MITE |
| 1105 | depends on HAS_DMA | ||
| 1098 | tristate | 1106 | tristate |
| 1099 | 1107 | ||
| 1100 | config COMEDI_NI_TIOCMD | 1108 | config COMEDI_NI_TIOCMD |
| 1101 | tristate | 1109 | tristate |
| 1110 | depends on HAS_DMA | ||
| 1102 | select COMEDI_NI_TIO | 1111 | select COMEDI_NI_TIO |
| 1103 | select COMEDI_MITE | 1112 | select COMEDI_MITE |
| 1104 | 1113 | ||
diff --git a/drivers/staging/comedi/comedi_buf.c b/drivers/staging/comedi/comedi_buf.c index ca709901fb3e..d4be0e68509b 100644 --- a/drivers/staging/comedi/comedi_buf.c +++ b/drivers/staging/comedi/comedi_buf.c | |||
| @@ -51,10 +51,12 @@ static void __comedi_buf_free(struct comedi_device *dev, | |||
| 51 | clear_bit(PG_reserved, | 51 | clear_bit(PG_reserved, |
| 52 | &(virt_to_page(buf->virt_addr)->flags)); | 52 | &(virt_to_page(buf->virt_addr)->flags)); |
| 53 | if (s->async_dma_dir != DMA_NONE) { | 53 | if (s->async_dma_dir != DMA_NONE) { |
| 54 | #ifdef CONFIG_HAS_DMA | ||
| 54 | dma_free_coherent(dev->hw_dev, | 55 | dma_free_coherent(dev->hw_dev, |
| 55 | PAGE_SIZE, | 56 | PAGE_SIZE, |
| 56 | buf->virt_addr, | 57 | buf->virt_addr, |
| 57 | buf->dma_addr); | 58 | buf->dma_addr); |
| 59 | #endif | ||
| 58 | } else { | 60 | } else { |
| 59 | free_page((unsigned long)buf->virt_addr); | 61 | free_page((unsigned long)buf->virt_addr); |
| 60 | } | 62 | } |
| @@ -74,6 +76,12 @@ static void __comedi_buf_alloc(struct comedi_device *dev, | |||
| 74 | struct comedi_buf_page *buf; | 76 | struct comedi_buf_page *buf; |
| 75 | unsigned i; | 77 | unsigned i; |
| 76 | 78 | ||
| 79 | if (!IS_ENABLED(CONFIG_HAS_DMA) && s->async_dma_dir != DMA_NONE) { | ||
| 80 | dev_err(dev->class_dev, | ||
| 81 | "dma buffer allocation not supported\n"); | ||
| 82 | return; | ||
| 83 | } | ||
| 84 | |||
| 77 | async->buf_page_list = vzalloc(sizeof(*buf) * n_pages); | 85 | async->buf_page_list = vzalloc(sizeof(*buf) * n_pages); |
| 78 | if (async->buf_page_list) | 86 | if (async->buf_page_list) |
| 79 | pages = vmalloc(sizeof(struct page *) * n_pages); | 87 | pages = vmalloc(sizeof(struct page *) * n_pages); |
| @@ -84,11 +92,15 @@ static void __comedi_buf_alloc(struct comedi_device *dev, | |||
| 84 | for (i = 0; i < n_pages; i++) { | 92 | for (i = 0; i < n_pages; i++) { |
| 85 | buf = &async->buf_page_list[i]; | 93 | buf = &async->buf_page_list[i]; |
| 86 | if (s->async_dma_dir != DMA_NONE) | 94 | if (s->async_dma_dir != DMA_NONE) |
| 95 | #ifdef CONFIG_HAS_DMA | ||
| 87 | buf->virt_addr = dma_alloc_coherent(dev->hw_dev, | 96 | buf->virt_addr = dma_alloc_coherent(dev->hw_dev, |
| 88 | PAGE_SIZE, | 97 | PAGE_SIZE, |
| 89 | &buf->dma_addr, | 98 | &buf->dma_addr, |
| 90 | GFP_KERNEL | | 99 | GFP_KERNEL | |
| 91 | __GFP_COMP); | 100 | __GFP_COMP); |
| 101 | #else | ||
| 102 | break; | ||
| 103 | #endif | ||
| 92 | else | 104 | else |
| 93 | buf->virt_addr = (void *)get_zeroed_page(GFP_KERNEL); | 105 | buf->virt_addr = (void *)get_zeroed_page(GFP_KERNEL); |
| 94 | if (!buf->virt_addr) | 106 | if (!buf->virt_addr) |
diff --git a/drivers/staging/comedi/comedi_fops.c b/drivers/staging/comedi/comedi_fops.c index 00f2547024ec..924c54c9c31f 100644 --- a/drivers/staging/comedi/comedi_fops.c +++ b/drivers/staging/comedi/comedi_fops.c | |||
| @@ -246,9 +246,6 @@ static int resize_async_buffer(struct comedi_device *dev, | |||
| 246 | return -EBUSY; | 246 | return -EBUSY; |
| 247 | } | 247 | } |
| 248 | 248 | ||
| 249 | if (!async->prealloc_buf) | ||
| 250 | return -EINVAL; | ||
| 251 | |||
| 252 | /* make sure buffer is an integral number of pages | 249 | /* make sure buffer is an integral number of pages |
| 253 | * (we round up) */ | 250 | * (we round up) */ |
| 254 | new_size = (new_size + PAGE_SIZE - 1) & PAGE_MASK; | 251 | new_size = (new_size + PAGE_SIZE - 1) & PAGE_MASK; |
diff --git a/drivers/staging/comedi/drivers/ni_labpc.c b/drivers/staging/comedi/drivers/ni_labpc.c index 3d978f34d212..77a7bb632580 100644 --- a/drivers/staging/comedi/drivers/ni_labpc.c +++ b/drivers/staging/comedi/drivers/ni_labpc.c | |||
| @@ -976,8 +976,7 @@ static int labpc_ai_cmd(struct comedi_device *dev, struct comedi_subdevice *s) | |||
| 976 | /* clear flip-flop to make sure 2-byte registers for | 976 | /* clear flip-flop to make sure 2-byte registers for |
| 977 | * count and address get set correctly */ | 977 | * count and address get set correctly */ |
| 978 | clear_dma_ff(devpriv->dma_chan); | 978 | clear_dma_ff(devpriv->dma_chan); |
| 979 | set_dma_addr(devpriv->dma_chan, | 979 | set_dma_addr(devpriv->dma_chan, devpriv->dma_addr); |
| 980 | virt_to_bus(devpriv->dma_buffer)); | ||
| 981 | /* set appropriate size of transfer */ | 980 | /* set appropriate size of transfer */ |
| 982 | devpriv->dma_transfer_size = labpc_suggest_transfer_size(cmd); | 981 | devpriv->dma_transfer_size = labpc_suggest_transfer_size(cmd); |
| 983 | if (cmd->stop_src == TRIG_COUNT && | 982 | if (cmd->stop_src == TRIG_COUNT && |
| @@ -1089,7 +1088,7 @@ static void labpc_drain_dma(struct comedi_device *dev) | |||
| 1089 | devpriv->count -= num_points; | 1088 | devpriv->count -= num_points; |
| 1090 | 1089 | ||
| 1091 | /* set address and count for next transfer */ | 1090 | /* set address and count for next transfer */ |
| 1092 | set_dma_addr(devpriv->dma_chan, virt_to_bus(devpriv->dma_buffer)); | 1091 | set_dma_addr(devpriv->dma_chan, devpriv->dma_addr); |
| 1093 | set_dma_count(devpriv->dma_chan, leftover * sample_size); | 1092 | set_dma_count(devpriv->dma_chan, leftover * sample_size); |
| 1094 | release_dma_lock(flags); | 1093 | release_dma_lock(flags); |
| 1095 | 1094 | ||
| @@ -1741,6 +1740,9 @@ static int labpc_attach(struct comedi_device *dev, struct comedi_devconfig *it) | |||
| 1741 | unsigned long dma_flags; | 1740 | unsigned long dma_flags; |
| 1742 | 1741 | ||
| 1743 | devpriv->dma_chan = dma_chan; | 1742 | devpriv->dma_chan = dma_chan; |
| 1743 | devpriv->dma_addr = | ||
| 1744 | virt_to_bus(devpriv->dma_buffer); | ||
| 1745 | |||
| 1744 | dma_flags = claim_dma_lock(); | 1746 | dma_flags = claim_dma_lock(); |
| 1745 | disable_dma(devpriv->dma_chan); | 1747 | disable_dma(devpriv->dma_chan); |
| 1746 | set_dma_mode(devpriv->dma_chan, DMA_MODE_READ); | 1748 | set_dma_mode(devpriv->dma_chan, DMA_MODE_READ); |
diff --git a/drivers/staging/comedi/drivers/ni_labpc.h b/drivers/staging/comedi/drivers/ni_labpc.h index 615f16f271c0..4b691f5a9965 100644 --- a/drivers/staging/comedi/drivers/ni_labpc.h +++ b/drivers/staging/comedi/drivers/ni_labpc.h | |||
| @@ -82,6 +82,7 @@ struct labpc_private { | |||
| 82 | unsigned int divisor_b1; | 82 | unsigned int divisor_b1; |
| 83 | unsigned int dma_chan; /* dma channel to use */ | 83 | unsigned int dma_chan; /* dma channel to use */ |
| 84 | u16 *dma_buffer; /* buffer ai will dma into */ | 84 | u16 *dma_buffer; /* buffer ai will dma into */ |
| 85 | phys_addr_t dma_addr; | ||
| 85 | /* transfer size in bytes for current transfer */ | 86 | /* transfer size in bytes for current transfer */ |
| 86 | unsigned int dma_transfer_size; | 87 | unsigned int dma_transfer_size; |
| 87 | /* we are using dma/fifo-half-full/etc. */ | 88 | /* we are using dma/fifo-half-full/etc. */ |
diff --git a/drivers/staging/comedi/drivers/ni_mio_common.c b/drivers/staging/comedi/drivers/ni_mio_common.c index a46d579016d9..8c5dee9b3b05 100644 --- a/drivers/staging/comedi/drivers/ni_mio_common.c +++ b/drivers/staging/comedi/drivers/ni_mio_common.c | |||
| @@ -310,9 +310,11 @@ static int ni_gpct_insn_read(struct comedi_device *dev, | |||
| 310 | static int ni_gpct_insn_config(struct comedi_device *dev, | 310 | static int ni_gpct_insn_config(struct comedi_device *dev, |
| 311 | struct comedi_subdevice *s, | 311 | struct comedi_subdevice *s, |
| 312 | struct comedi_insn *insn, unsigned int *data); | 312 | struct comedi_insn *insn, unsigned int *data); |
| 313 | #ifdef PCIDMA | ||
| 313 | static int ni_gpct_cmd(struct comedi_device *dev, struct comedi_subdevice *s); | 314 | static int ni_gpct_cmd(struct comedi_device *dev, struct comedi_subdevice *s); |
| 314 | static int ni_gpct_cmdtest(struct comedi_device *dev, | 315 | static int ni_gpct_cmdtest(struct comedi_device *dev, |
| 315 | struct comedi_subdevice *s, struct comedi_cmd *cmd); | 316 | struct comedi_subdevice *s, struct comedi_cmd *cmd); |
| 317 | #endif | ||
| 316 | static int ni_gpct_cancel(struct comedi_device *dev, | 318 | static int ni_gpct_cancel(struct comedi_device *dev, |
| 317 | struct comedi_subdevice *s); | 319 | struct comedi_subdevice *s); |
| 318 | static void handle_gpct_interrupt(struct comedi_device *dev, | 320 | static void handle_gpct_interrupt(struct comedi_device *dev, |
| @@ -4617,9 +4619,7 @@ static int ni_E_init(struct comedi_device *dev) | |||
| 4617 | for (j = 0; j < NUM_GPCT; ++j) { | 4619 | for (j = 0; j < NUM_GPCT; ++j) { |
| 4618 | s = &dev->subdevices[NI_GPCT_SUBDEV(j)]; | 4620 | s = &dev->subdevices[NI_GPCT_SUBDEV(j)]; |
| 4619 | s->type = COMEDI_SUBD_COUNTER; | 4621 | s->type = COMEDI_SUBD_COUNTER; |
| 4620 | s->subdev_flags = | 4622 | s->subdev_flags = SDF_READABLE | SDF_WRITABLE | SDF_LSAMPL; |
| 4621 | SDF_READABLE | SDF_WRITABLE | SDF_LSAMPL | SDF_CMD_READ | ||
| 4622 | /* | SDF_CMD_WRITE */ ; | ||
| 4623 | s->n_chan = 3; | 4623 | s->n_chan = 3; |
| 4624 | if (board->reg_type & ni_reg_m_series_mask) | 4624 | if (board->reg_type & ni_reg_m_series_mask) |
| 4625 | s->maxdata = 0xffffffff; | 4625 | s->maxdata = 0xffffffff; |
| @@ -4628,11 +4628,14 @@ static int ni_E_init(struct comedi_device *dev) | |||
| 4628 | s->insn_read = &ni_gpct_insn_read; | 4628 | s->insn_read = &ni_gpct_insn_read; |
| 4629 | s->insn_write = &ni_gpct_insn_write; | 4629 | s->insn_write = &ni_gpct_insn_write; |
| 4630 | s->insn_config = &ni_gpct_insn_config; | 4630 | s->insn_config = &ni_gpct_insn_config; |
| 4631 | #ifdef PCIDMA | ||
| 4632 | s->subdev_flags |= SDF_CMD_READ /* | SDF_CMD_WRITE */; | ||
| 4631 | s->do_cmd = &ni_gpct_cmd; | 4633 | s->do_cmd = &ni_gpct_cmd; |
| 4632 | s->len_chanlist = 1; | 4634 | s->len_chanlist = 1; |
| 4633 | s->do_cmdtest = &ni_gpct_cmdtest; | 4635 | s->do_cmdtest = &ni_gpct_cmdtest; |
| 4634 | s->cancel = &ni_gpct_cancel; | 4636 | s->cancel = &ni_gpct_cancel; |
| 4635 | s->async_dma_dir = DMA_BIDIRECTIONAL; | 4637 | s->async_dma_dir = DMA_BIDIRECTIONAL; |
| 4638 | #endif | ||
| 4636 | s->private = &devpriv->counter_dev->counters[j]; | 4639 | s->private = &devpriv->counter_dev->counters[j]; |
| 4637 | 4640 | ||
| 4638 | devpriv->counter_dev->counters[j].chip_index = 0; | 4641 | devpriv->counter_dev->counters[j].chip_index = 0; |
| @@ -5216,10 +5219,10 @@ static int ni_gpct_insn_write(struct comedi_device *dev, | |||
| 5216 | return ni_tio_winsn(counter, insn, data); | 5219 | return ni_tio_winsn(counter, insn, data); |
| 5217 | } | 5220 | } |
| 5218 | 5221 | ||
| 5222 | #ifdef PCIDMA | ||
| 5219 | static int ni_gpct_cmd(struct comedi_device *dev, struct comedi_subdevice *s) | 5223 | static int ni_gpct_cmd(struct comedi_device *dev, struct comedi_subdevice *s) |
| 5220 | { | 5224 | { |
| 5221 | int retval; | 5225 | int retval; |
| 5222 | #ifdef PCIDMA | ||
| 5223 | struct ni_gpct *counter = s->private; | 5226 | struct ni_gpct *counter = s->private; |
| 5224 | /* const struct comedi_cmd *cmd = &s->async->cmd; */ | 5227 | /* const struct comedi_cmd *cmd = &s->async->cmd; */ |
| 5225 | 5228 | ||
| @@ -5233,23 +5236,20 @@ static int ni_gpct_cmd(struct comedi_device *dev, struct comedi_subdevice *s) | |||
| 5233 | ni_tio_acknowledge_and_confirm(counter, NULL, NULL, NULL, NULL); | 5236 | ni_tio_acknowledge_and_confirm(counter, NULL, NULL, NULL, NULL); |
| 5234 | ni_e_series_enable_second_irq(dev, counter->counter_index, 1); | 5237 | ni_e_series_enable_second_irq(dev, counter->counter_index, 1); |
| 5235 | retval = ni_tio_cmd(counter, s->async); | 5238 | retval = ni_tio_cmd(counter, s->async); |
| 5236 | #else | ||
| 5237 | retval = -ENOTSUPP; | ||
| 5238 | #endif | ||
| 5239 | return retval; | 5239 | return retval; |
| 5240 | } | 5240 | } |
| 5241 | #endif | ||
| 5241 | 5242 | ||
| 5243 | #ifdef PCIDMA | ||
| 5242 | static int ni_gpct_cmdtest(struct comedi_device *dev, | 5244 | static int ni_gpct_cmdtest(struct comedi_device *dev, |
| 5243 | struct comedi_subdevice *s, struct comedi_cmd *cmd) | 5245 | struct comedi_subdevice *s, struct comedi_cmd *cmd) |
| 5244 | { | 5246 | { |
| 5245 | #ifdef PCIDMA | ||
| 5246 | struct ni_gpct *counter = s->private; | 5247 | struct ni_gpct *counter = s->private; |
| 5247 | 5248 | ||
| 5248 | return ni_tio_cmdtest(counter, cmd); | 5249 | return ni_tio_cmdtest(counter, cmd); |
| 5249 | #else | ||
| 5250 | return -ENOTSUPP; | 5250 | return -ENOTSUPP; |
| 5251 | #endif | ||
| 5252 | } | 5251 | } |
| 5252 | #endif | ||
| 5253 | 5253 | ||
| 5254 | static int ni_gpct_cancel(struct comedi_device *dev, struct comedi_subdevice *s) | 5254 | static int ni_gpct_cancel(struct comedi_device *dev, struct comedi_subdevice *s) |
| 5255 | { | 5255 | { |
diff --git a/drivers/staging/dwc2/Kconfig b/drivers/staging/dwc2/Kconfig index f0b4739c65a1..d15d9d58e5ac 100644 --- a/drivers/staging/dwc2/Kconfig +++ b/drivers/staging/dwc2/Kconfig | |||
| @@ -2,7 +2,6 @@ config USB_DWC2 | |||
| 2 | tristate "DesignWare USB2 DRD Core Support" | 2 | tristate "DesignWare USB2 DRD Core Support" |
| 3 | depends on USB | 3 | depends on USB |
| 4 | depends on VIRT_TO_BUS | 4 | depends on VIRT_TO_BUS |
| 5 | select USB_OTG_UTILS | ||
| 6 | help | 5 | help |
| 7 | Say Y or M here if your system has a Dual Role HighSpeed | 6 | Say Y or M here if your system has a Dual Role HighSpeed |
| 8 | USB controller based on the DesignWare HSOTG IP Core. | 7 | USB controller based on the DesignWare HSOTG IP Core. |
| @@ -39,6 +38,7 @@ config USB_DWC2_TRACK_MISSED_SOFS | |||
| 39 | bool "Enable Missed SOF Tracking" | 38 | bool "Enable Missed SOF Tracking" |
| 40 | help | 39 | help |
| 41 | Say Y here to enable logging of missed SOF events to the dmesg log. | 40 | Say Y here to enable logging of missed SOF events to the dmesg log. |
| 41 | WARNING: This feature is still experimental. | ||
| 42 | If in doubt, say N. | 42 | If in doubt, say N. |
| 43 | 43 | ||
| 44 | config USB_DWC2_DEBUG_PERIODIC | 44 | config USB_DWC2_DEBUG_PERIODIC |
diff --git a/drivers/staging/dwc2/hcd_intr.c b/drivers/staging/dwc2/hcd_intr.c index 6e5dbed6ccec..e24062f0a49e 100644 --- a/drivers/staging/dwc2/hcd_intr.c +++ b/drivers/staging/dwc2/hcd_intr.c | |||
| @@ -56,8 +56,6 @@ | |||
| 56 | static void dwc2_track_missed_sofs(struct dwc2_hsotg *hsotg) | 56 | static void dwc2_track_missed_sofs(struct dwc2_hsotg *hsotg) |
| 57 | { | 57 | { |
| 58 | #ifdef CONFIG_USB_DWC2_TRACK_MISSED_SOFS | 58 | #ifdef CONFIG_USB_DWC2_TRACK_MISSED_SOFS |
| 59 | #warning Compiling code to track missed SOFs | ||
| 60 | |||
| 61 | u16 curr_frame_number = hsotg->frame_number; | 59 | u16 curr_frame_number = hsotg->frame_number; |
| 62 | 60 | ||
| 63 | if (hsotg->frame_num_idx < FRAME_NUM_ARRAY_SIZE) { | 61 | if (hsotg->frame_num_idx < FRAME_NUM_ARRAY_SIZE) { |
diff --git a/drivers/staging/dwc2/platform.c b/drivers/staging/dwc2/platform.c index b610960e93d3..44cce2fa6361 100644 --- a/drivers/staging/dwc2/platform.c +++ b/drivers/staging/dwc2/platform.c | |||
| @@ -95,6 +95,14 @@ static int dwc2_driver_probe(struct platform_device *dev) | |||
| 95 | 95 | ||
| 96 | hsotg->dev = &dev->dev; | 96 | hsotg->dev = &dev->dev; |
| 97 | 97 | ||
| 98 | /* | ||
| 99 | * Use reasonable defaults so platforms don't have to provide these. | ||
| 100 | */ | ||
| 101 | if (!dev->dev.dma_mask) | ||
| 102 | dev->dev.dma_mask = &dev->dev.coherent_dma_mask; | ||
| 103 | if (!dev->dev.coherent_dma_mask) | ||
| 104 | dev->dev.coherent_dma_mask = DMA_BIT_MASK(32); | ||
| 105 | |||
| 98 | irq = platform_get_irq(dev, 0); | 106 | irq = platform_get_irq(dev, 0); |
| 99 | if (irq < 0) { | 107 | if (irq < 0) { |
| 100 | dev_err(&dev->dev, "missing IRQ resource\n"); | 108 | dev_err(&dev->dev, "missing IRQ resource\n"); |
diff --git a/drivers/staging/gdm72xx/Kconfig b/drivers/staging/gdm72xx/Kconfig index 3c18efe31365..69059138de4a 100644 --- a/drivers/staging/gdm72xx/Kconfig +++ b/drivers/staging/gdm72xx/Kconfig | |||
| @@ -39,7 +39,7 @@ if WIMAX_GDM72XX_USB | |||
| 39 | 39 | ||
| 40 | config WIMAX_GDM72XX_USB_PM | 40 | config WIMAX_GDM72XX_USB_PM |
| 41 | bool "Enable power managerment support" | 41 | bool "Enable power managerment support" |
| 42 | depends on USB_SUSPEND | 42 | depends on PM_RUNTIME |
| 43 | 43 | ||
| 44 | endif # WIMAX_GDM72XX_USB | 44 | endif # WIMAX_GDM72XX_USB |
| 45 | 45 | ||
diff --git a/drivers/staging/iio/adc/mxs-lradc.c b/drivers/staging/iio/adc/mxs-lradc.c index 2856b8fd44ad..163c638e4095 100644 --- a/drivers/staging/iio/adc/mxs-lradc.c +++ b/drivers/staging/iio/adc/mxs-lradc.c | |||
| @@ -690,7 +690,6 @@ static void mxs_lradc_trigger_remove(struct iio_dev *iio) | |||
| 690 | static int mxs_lradc_buffer_preenable(struct iio_dev *iio) | 690 | static int mxs_lradc_buffer_preenable(struct iio_dev *iio) |
| 691 | { | 691 | { |
| 692 | struct mxs_lradc *lradc = iio_priv(iio); | 692 | struct mxs_lradc *lradc = iio_priv(iio); |
| 693 | struct iio_buffer *buffer = iio->buffer; | ||
| 694 | int ret = 0, chan, ofs = 0; | 693 | int ret = 0, chan, ofs = 0; |
| 695 | unsigned long enable = 0; | 694 | unsigned long enable = 0; |
| 696 | uint32_t ctrl4_set = 0; | 695 | uint32_t ctrl4_set = 0; |
| @@ -698,7 +697,7 @@ static int mxs_lradc_buffer_preenable(struct iio_dev *iio) | |||
| 698 | uint32_t ctrl1_irq = 0; | 697 | uint32_t ctrl1_irq = 0; |
| 699 | const uint32_t chan_value = LRADC_CH_ACCUMULATE | | 698 | const uint32_t chan_value = LRADC_CH_ACCUMULATE | |
| 700 | ((LRADC_DELAY_TIMER_LOOP - 1) << LRADC_CH_NUM_SAMPLES_OFFSET); | 699 | ((LRADC_DELAY_TIMER_LOOP - 1) << LRADC_CH_NUM_SAMPLES_OFFSET); |
| 701 | const int len = bitmap_weight(buffer->scan_mask, LRADC_MAX_TOTAL_CHANS); | 700 | const int len = bitmap_weight(iio->active_scan_mask, LRADC_MAX_TOTAL_CHANS); |
| 702 | 701 | ||
| 703 | if (!len) | 702 | if (!len) |
| 704 | return -EINVAL; | 703 | return -EINVAL; |
| @@ -725,7 +724,7 @@ static int mxs_lradc_buffer_preenable(struct iio_dev *iio) | |||
| 725 | lradc->base + LRADC_CTRL1 + STMP_OFFSET_REG_CLR); | 724 | lradc->base + LRADC_CTRL1 + STMP_OFFSET_REG_CLR); |
| 726 | writel(0xff, lradc->base + LRADC_CTRL0 + STMP_OFFSET_REG_CLR); | 725 | writel(0xff, lradc->base + LRADC_CTRL0 + STMP_OFFSET_REG_CLR); |
| 727 | 726 | ||
| 728 | for_each_set_bit(chan, buffer->scan_mask, LRADC_MAX_TOTAL_CHANS) { | 727 | for_each_set_bit(chan, iio->active_scan_mask, LRADC_MAX_TOTAL_CHANS) { |
| 729 | ctrl4_set |= chan << LRADC_CTRL4_LRADCSELECT_OFFSET(ofs); | 728 | ctrl4_set |= chan << LRADC_CTRL4_LRADCSELECT_OFFSET(ofs); |
| 730 | ctrl4_clr |= LRADC_CTRL4_LRADCSELECT_MASK(ofs); | 729 | ctrl4_clr |= LRADC_CTRL4_LRADCSELECT_MASK(ofs); |
| 731 | ctrl1_irq |= LRADC_CTRL1_LRADC_IRQ_EN(ofs); | 730 | ctrl1_irq |= LRADC_CTRL1_LRADC_IRQ_EN(ofs); |
diff --git a/drivers/staging/iio/light/tsl2x7x_core.c b/drivers/staging/iio/light/tsl2x7x_core.c index d060f2572512..c99f890cc6c6 100644 --- a/drivers/staging/iio/light/tsl2x7x_core.c +++ b/drivers/staging/iio/light/tsl2x7x_core.c | |||
| @@ -1869,6 +1869,7 @@ static int tsl2x7x_probe(struct i2c_client *clientp, | |||
| 1869 | dev_info(&chip->client->dev, | 1869 | dev_info(&chip->client->dev, |
| 1870 | "%s: i2c device found does not match expected id\n", | 1870 | "%s: i2c device found does not match expected id\n", |
| 1871 | __func__); | 1871 | __func__); |
| 1872 | ret = -EINVAL; | ||
| 1872 | goto fail1; | 1873 | goto fail1; |
| 1873 | } | 1874 | } |
| 1874 | 1875 | ||
| @@ -1907,7 +1908,7 @@ static int tsl2x7x_probe(struct i2c_client *clientp, | |||
| 1907 | if (ret) { | 1908 | if (ret) { |
| 1908 | dev_err(&clientp->dev, | 1909 | dev_err(&clientp->dev, |
| 1909 | "%s: irq request failed", __func__); | 1910 | "%s: irq request failed", __func__); |
| 1910 | goto fail2; | 1911 | goto fail1; |
| 1911 | } | 1912 | } |
| 1912 | } | 1913 | } |
| 1913 | 1914 | ||
| @@ -1920,17 +1921,17 @@ static int tsl2x7x_probe(struct i2c_client *clientp, | |||
| 1920 | if (ret) { | 1921 | if (ret) { |
| 1921 | dev_err(&clientp->dev, | 1922 | dev_err(&clientp->dev, |
| 1922 | "%s: iio registration failed\n", __func__); | 1923 | "%s: iio registration failed\n", __func__); |
| 1923 | goto fail1; | 1924 | goto fail2; |
| 1924 | } | 1925 | } |
| 1925 | 1926 | ||
| 1926 | dev_info(&clientp->dev, "%s Light sensor found.\n", id->name); | 1927 | dev_info(&clientp->dev, "%s Light sensor found.\n", id->name); |
| 1927 | 1928 | ||
| 1928 | return 0; | 1929 | return 0; |
| 1929 | 1930 | ||
| 1930 | fail1: | 1931 | fail2: |
| 1931 | if (clientp->irq) | 1932 | if (clientp->irq) |
| 1932 | free_irq(clientp->irq, indio_dev); | 1933 | free_irq(clientp->irq, indio_dev); |
| 1933 | fail2: | 1934 | fail1: |
| 1934 | iio_device_free(indio_dev); | 1935 | iio_device_free(indio_dev); |
| 1935 | 1936 | ||
| 1936 | return ret; | 1937 | return ret; |
diff --git a/drivers/staging/imx-drm/Kconfig b/drivers/staging/imx-drm/Kconfig index 8c9e40390f42..ef699f753186 100644 --- a/drivers/staging/imx-drm/Kconfig +++ b/drivers/staging/imx-drm/Kconfig | |||
| @@ -1,6 +1,7 @@ | |||
| 1 | config DRM_IMX | 1 | config DRM_IMX |
| 2 | tristate "DRM Support for Freescale i.MX" | 2 | tristate "DRM Support for Freescale i.MX" |
| 3 | select DRM_KMS_HELPER | 3 | select DRM_KMS_HELPER |
| 4 | select VIDEOMODE_HELPERS | ||
| 4 | select DRM_GEM_CMA_HELPER | 5 | select DRM_GEM_CMA_HELPER |
| 5 | select DRM_KMS_CMA_HELPER | 6 | select DRM_KMS_CMA_HELPER |
| 6 | depends on DRM && (ARCH_MXC || ARCH_MULTIPLATFORM) | 7 | depends on DRM && (ARCH_MXC || ARCH_MULTIPLATFORM) |
| @@ -19,10 +20,12 @@ config DRM_IMX_FB_HELPER | |||
| 19 | config DRM_IMX_PARALLEL_DISPLAY | 20 | config DRM_IMX_PARALLEL_DISPLAY |
| 20 | tristate "Support for parallel displays" | 21 | tristate "Support for parallel displays" |
| 21 | depends on DRM_IMX | 22 | depends on DRM_IMX |
| 23 | select VIDEOMODE_HELPERS | ||
| 22 | 24 | ||
| 23 | config DRM_IMX_TVE | 25 | config DRM_IMX_TVE |
| 24 | tristate "Support for TV and VGA displays" | 26 | tristate "Support for TV and VGA displays" |
| 25 | depends on DRM_IMX | 27 | depends on DRM_IMX |
| 28 | select REGMAP_MMIO | ||
| 26 | help | 29 | help |
| 27 | Choose this to enable the internal Television Encoder (TVe) | 30 | Choose this to enable the internal Television Encoder (TVe) |
| 28 | found on i.MX53 processors. | 31 | found on i.MX53 processors. |
| @@ -30,6 +33,7 @@ config DRM_IMX_TVE | |||
| 30 | config DRM_IMX_IPUV3_CORE | 33 | config DRM_IMX_IPUV3_CORE |
| 31 | tristate "IPUv3 core support" | 34 | tristate "IPUv3 core support" |
| 32 | depends on DRM_IMX | 35 | depends on DRM_IMX |
| 36 | depends on RESET_CONTROLLER | ||
| 33 | help | 37 | help |
| 34 | Choose this if you have a i.MX5/6 system and want | 38 | Choose this if you have a i.MX5/6 system and want |
| 35 | to use the IPU. This option only enables IPU base | 39 | to use the IPU. This option only enables IPU base |
| @@ -38,5 +42,6 @@ config DRM_IMX_IPUV3_CORE | |||
| 38 | config DRM_IMX_IPUV3 | 42 | config DRM_IMX_IPUV3 |
| 39 | tristate "DRM Support for i.MX IPUv3" | 43 | tristate "DRM Support for i.MX IPUv3" |
| 40 | depends on DRM_IMX | 44 | depends on DRM_IMX |
| 45 | depends on DRM_IMX_IPUV3_CORE | ||
| 41 | help | 46 | help |
| 42 | Choose this if you have a i.MX5 or i.MX6 processor. | 47 | Choose this if you have a i.MX5 or i.MX6 processor. |
diff --git a/drivers/staging/imx-drm/imx-tve.c b/drivers/staging/imx-drm/imx-tve.c index ac1634464407..03892de9bd7e 100644 --- a/drivers/staging/imx-drm/imx-tve.c +++ b/drivers/staging/imx-drm/imx-tve.c | |||
| @@ -670,7 +670,9 @@ static int imx_tve_probe(struct platform_device *pdev) | |||
| 670 | tve->dac_reg = devm_regulator_get(&pdev->dev, "dac"); | 670 | tve->dac_reg = devm_regulator_get(&pdev->dev, "dac"); |
| 671 | if (!IS_ERR(tve->dac_reg)) { | 671 | if (!IS_ERR(tve->dac_reg)) { |
| 672 | regulator_set_voltage(tve->dac_reg, 2750000, 2750000); | 672 | regulator_set_voltage(tve->dac_reg, 2750000, 2750000); |
| 673 | regulator_enable(tve->dac_reg); | 673 | ret = regulator_enable(tve->dac_reg); |
| 674 | if (ret) | ||
| 675 | return ret; | ||
| 674 | } | 676 | } |
| 675 | 677 | ||
| 676 | tve->clk = devm_clk_get(&pdev->dev, "tve"); | 678 | tve->clk = devm_clk_get(&pdev->dev, "tve"); |
diff --git a/drivers/staging/media/solo6x10/Kconfig b/drivers/staging/media/solo6x10/Kconfig index ec32776ff547..df6569b997b8 100644 --- a/drivers/staging/media/solo6x10/Kconfig +++ b/drivers/staging/media/solo6x10/Kconfig | |||
| @@ -1,6 +1,7 @@ | |||
| 1 | config SOLO6X10 | 1 | config SOLO6X10 |
| 2 | tristate "Softlogic 6x10 MPEG codec cards" | 2 | tristate "Softlogic 6x10 MPEG codec cards" |
| 3 | depends on PCI && VIDEO_DEV && SND && I2C | 3 | depends on PCI && VIDEO_DEV && SND && I2C |
| 4 | depends on FONTS | ||
| 4 | select VIDEOBUF2_DMA_SG | 5 | select VIDEOBUF2_DMA_SG |
| 5 | select VIDEOBUF2_DMA_CONTIG | 6 | select VIDEOBUF2_DMA_CONTIG |
| 6 | select SND_PCM | 7 | select SND_PCM |
diff --git a/drivers/staging/nvec/nvec.c b/drivers/staging/nvec/nvec.c index 863b22e51b45..197c393c4ca7 100644 --- a/drivers/staging/nvec/nvec.c +++ b/drivers/staging/nvec/nvec.c | |||
| @@ -124,6 +124,20 @@ int nvec_register_notifier(struct nvec_chip *nvec, struct notifier_block *nb, | |||
| 124 | EXPORT_SYMBOL_GPL(nvec_register_notifier); | 124 | EXPORT_SYMBOL_GPL(nvec_register_notifier); |
| 125 | 125 | ||
| 126 | /** | 126 | /** |
| 127 | * nvec_unregister_notifier - Unregister a notifier with nvec | ||
| 128 | * @nvec: A &struct nvec_chip | ||
| 129 | * @nb: The notifier block to unregister | ||
| 130 | * | ||
| 131 | * Unregisters a notifier with @nvec. The notifier will be removed from the | ||
| 132 | * atomic notifier chain. | ||
| 133 | */ | ||
| 134 | int nvec_unregister_notifier(struct nvec_chip *nvec, struct notifier_block *nb) | ||
| 135 | { | ||
| 136 | return atomic_notifier_chain_unregister(&nvec->notifier_list, nb); | ||
| 137 | } | ||
| 138 | EXPORT_SYMBOL_GPL(nvec_unregister_notifier); | ||
| 139 | |||
| 140 | /** | ||
| 127 | * nvec_status_notifier - The final notifier | 141 | * nvec_status_notifier - The final notifier |
| 128 | * | 142 | * |
| 129 | * Prints a message about control events not handled in the notifier | 143 | * Prints a message about control events not handled in the notifier |
| @@ -185,7 +199,7 @@ static struct nvec_msg *nvec_msg_alloc(struct nvec_chip *nvec, | |||
| 185 | * | 199 | * |
| 186 | * Free the given message | 200 | * Free the given message |
| 187 | */ | 201 | */ |
| 188 | inline void nvec_msg_free(struct nvec_chip *nvec, struct nvec_msg *msg) | 202 | void nvec_msg_free(struct nvec_chip *nvec, struct nvec_msg *msg) |
| 189 | { | 203 | { |
| 190 | if (msg != &nvec->tx_scratch) | 204 | if (msg != &nvec->tx_scratch) |
| 191 | dev_vdbg(nvec->dev, "INFO: Free %ti\n", msg - nvec->msg_pool); | 205 | dev_vdbg(nvec->dev, "INFO: Free %ti\n", msg - nvec->msg_pool); |
| @@ -810,7 +824,7 @@ static int tegra_nvec_probe(struct platform_device *pdev) | |||
| 810 | return -ENODEV; | 824 | return -ENODEV; |
| 811 | } | 825 | } |
| 812 | 826 | ||
| 813 | i2c_clk = clk_get(&pdev->dev, "div-clk"); | 827 | i2c_clk = devm_clk_get(&pdev->dev, "div-clk"); |
| 814 | if (IS_ERR(i2c_clk)) { | 828 | if (IS_ERR(i2c_clk)) { |
| 815 | dev_err(nvec->dev, "failed to get controller clock\n"); | 829 | dev_err(nvec->dev, "failed to get controller clock\n"); |
| 816 | return -ENODEV; | 830 | return -ENODEV; |
| @@ -897,8 +911,11 @@ static int tegra_nvec_remove(struct platform_device *pdev) | |||
| 897 | 911 | ||
| 898 | nvec_toggle_global_events(nvec, false); | 912 | nvec_toggle_global_events(nvec, false); |
| 899 | mfd_remove_devices(nvec->dev); | 913 | mfd_remove_devices(nvec->dev); |
| 914 | nvec_unregister_notifier(nvec, &nvec->nvec_status_notifier); | ||
| 900 | cancel_work_sync(&nvec->rx_work); | 915 | cancel_work_sync(&nvec->rx_work); |
| 901 | cancel_work_sync(&nvec->tx_work); | 916 | cancel_work_sync(&nvec->tx_work); |
| 917 | /* FIXME: needs check wether nvec is responsible for power off */ | ||
| 918 | pm_power_off = NULL; | ||
| 902 | 919 | ||
| 903 | return 0; | 920 | return 0; |
| 904 | } | 921 | } |
diff --git a/drivers/staging/nvec/nvec.h b/drivers/staging/nvec/nvec.h index b7a14bc0ab91..2b1316d87470 100644 --- a/drivers/staging/nvec/nvec.h +++ b/drivers/staging/nvec/nvec.h | |||
| @@ -197,9 +197,8 @@ extern int nvec_register_notifier(struct nvec_chip *nvec, | |||
| 197 | struct notifier_block *nb, | 197 | struct notifier_block *nb, |
| 198 | unsigned int events); | 198 | unsigned int events); |
| 199 | 199 | ||
| 200 | extern int nvec_unregister_notifier(struct device *dev, | 200 | extern int nvec_unregister_notifier(struct nvec_chip *dev, |
| 201 | struct notifier_block *nb, | 201 | struct notifier_block *nb); |
| 202 | unsigned int events); | ||
| 203 | 202 | ||
| 204 | extern void nvec_msg_free(struct nvec_chip *nvec, struct nvec_msg *msg); | 203 | extern void nvec_msg_free(struct nvec_chip *nvec, struct nvec_msg *msg); |
| 205 | 204 | ||
diff --git a/drivers/staging/nvec/nvec_kbd.c b/drivers/staging/nvec/nvec_kbd.c index 7445ce6422bb..a0ec52a4114f 100644 --- a/drivers/staging/nvec/nvec_kbd.c +++ b/drivers/staging/nvec/nvec_kbd.c | |||
| @@ -169,8 +169,15 @@ fail: | |||
| 169 | 169 | ||
| 170 | static int nvec_kbd_remove(struct platform_device *pdev) | 170 | static int nvec_kbd_remove(struct platform_device *pdev) |
| 171 | { | 171 | { |
| 172 | struct nvec_chip *nvec = dev_get_drvdata(pdev->dev.parent); | ||
| 173 | char disable_kbd[] = { NVEC_KBD, DISABLE_KBD }, | ||
| 174 | uncnfg_wake_key_reporting[] = { NVEC_KBD, CNFG_WAKE_KEY_REPORTING, | ||
| 175 | false }; | ||
| 176 | nvec_write_async(nvec, uncnfg_wake_key_reporting, 3); | ||
| 177 | nvec_write_async(nvec, disable_kbd, 2); | ||
| 178 | nvec_unregister_notifier(nvec, &keys_dev.notifier); | ||
| 179 | |||
| 172 | input_unregister_device(keys_dev.input); | 180 | input_unregister_device(keys_dev.input); |
| 173 | input_free_device(keys_dev.input); | ||
| 174 | 181 | ||
| 175 | return 0; | 182 | return 0; |
| 176 | } | 183 | } |
| @@ -188,4 +195,5 @@ module_platform_driver(nvec_kbd_driver); | |||
| 188 | 195 | ||
| 189 | MODULE_AUTHOR("Marc Dietrich <marvin24@gmx.de>"); | 196 | MODULE_AUTHOR("Marc Dietrich <marvin24@gmx.de>"); |
| 190 | MODULE_DESCRIPTION("NVEC keyboard driver"); | 197 | MODULE_DESCRIPTION("NVEC keyboard driver"); |
| 198 | MODULE_ALIAS("platform:nvec-kbd"); | ||
| 191 | MODULE_LICENSE("GPL"); | 199 | MODULE_LICENSE("GPL"); |
diff --git a/drivers/staging/nvec/nvec_power.c b/drivers/staging/nvec/nvec_power.c index 296f7b9a8c8c..aacfcd6954a3 100644 --- a/drivers/staging/nvec/nvec_power.c +++ b/drivers/staging/nvec/nvec_power.c | |||
| @@ -414,6 +414,7 @@ static int nvec_power_remove(struct platform_device *pdev) | |||
| 414 | struct nvec_power *power = platform_get_drvdata(pdev); | 414 | struct nvec_power *power = platform_get_drvdata(pdev); |
| 415 | 415 | ||
| 416 | cancel_delayed_work_sync(&power->poller); | 416 | cancel_delayed_work_sync(&power->poller); |
| 417 | nvec_unregister_notifier(power->nvec, &power->notifier); | ||
| 417 | switch (pdev->id) { | 418 | switch (pdev->id) { |
| 418 | case AC: | 419 | case AC: |
| 419 | power_supply_unregister(&nvec_psy); | 420 | power_supply_unregister(&nvec_psy); |
diff --git a/drivers/staging/nvec/nvec_ps2.c b/drivers/staging/nvec/nvec_ps2.c index aff6b9b9f9aa..06dbb02085a9 100644 --- a/drivers/staging/nvec/nvec_ps2.c +++ b/drivers/staging/nvec/nvec_ps2.c | |||
| @@ -106,7 +106,7 @@ static int nvec_mouse_probe(struct platform_device *pdev) | |||
| 106 | struct serio *ser_dev; | 106 | struct serio *ser_dev; |
| 107 | char mouse_reset[] = { NVEC_PS2, SEND_COMMAND, PSMOUSE_RST, 3 }; | 107 | char mouse_reset[] = { NVEC_PS2, SEND_COMMAND, PSMOUSE_RST, 3 }; |
| 108 | 108 | ||
| 109 | ser_dev = devm_kzalloc(&pdev->dev, sizeof(struct serio), GFP_KERNEL); | 109 | ser_dev = kzalloc(sizeof(struct serio), GFP_KERNEL); |
| 110 | if (ser_dev == NULL) | 110 | if (ser_dev == NULL) |
| 111 | return -ENOMEM; | 111 | return -ENOMEM; |
| 112 | 112 | ||
| @@ -133,6 +133,11 @@ static int nvec_mouse_probe(struct platform_device *pdev) | |||
| 133 | 133 | ||
| 134 | static int nvec_mouse_remove(struct platform_device *pdev) | 134 | static int nvec_mouse_remove(struct platform_device *pdev) |
| 135 | { | 135 | { |
| 136 | struct nvec_chip *nvec = dev_get_drvdata(pdev->dev.parent); | ||
| 137 | |||
| 138 | ps2_sendcommand(ps2_dev.ser_dev, DISABLE_MOUSE); | ||
| 139 | ps2_stopstreaming(ps2_dev.ser_dev); | ||
| 140 | nvec_unregister_notifier(nvec, &ps2_dev.notifier); | ||
| 136 | serio_unregister_port(ps2_dev.ser_dev); | 141 | serio_unregister_port(ps2_dev.ser_dev); |
| 137 | 142 | ||
| 138 | return 0; | 143 | return 0; |
| @@ -179,4 +184,5 @@ module_platform_driver(nvec_mouse_driver); | |||
| 179 | 184 | ||
| 180 | MODULE_DESCRIPTION("NVEC mouse driver"); | 185 | MODULE_DESCRIPTION("NVEC mouse driver"); |
| 181 | MODULE_AUTHOR("Marc Dietrich <marvin24@gmx.de>"); | 186 | MODULE_AUTHOR("Marc Dietrich <marvin24@gmx.de>"); |
| 187 | MODULE_ALIAS("platform:nvec-mouse"); | ||
| 182 | MODULE_LICENSE("GPL"); | 188 | MODULE_LICENSE("GPL"); |
diff --git a/drivers/staging/sep/Kconfig b/drivers/staging/sep/Kconfig index 185b676d858a..aab945a316ea 100644 --- a/drivers/staging/sep/Kconfig +++ b/drivers/staging/sep/Kconfig | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | config DX_SEP | 1 | config DX_SEP |
| 2 | tristate "Discretix SEP driver" | 2 | tristate "Discretix SEP driver" |
| 3 | depends on PCI | 3 | depends on PCI && CRYPTO |
| 4 | help | 4 | help |
| 5 | Discretix SEP driver; used for the security processor subsystem | 5 | Discretix SEP driver; used for the security processor subsystem |
| 6 | on board the Intel Mobile Internet Device and adds SEP availability | 6 | on board the Intel Mobile Internet Device and adds SEP availability |
diff --git a/drivers/staging/ste_rmi4/synaptics_i2c_rmi4.c b/drivers/staging/ste_rmi4/synaptics_i2c_rmi4.c index fe667dde43ce..386362c9964f 100644 --- a/drivers/staging/ste_rmi4/synaptics_i2c_rmi4.c +++ b/drivers/staging/ste_rmi4/synaptics_i2c_rmi4.c | |||
| @@ -1087,7 +1087,11 @@ static int synaptics_rmi4_resume(struct device *dev) | |||
| 1087 | unsigned char intr_status; | 1087 | unsigned char intr_status; |
| 1088 | struct synaptics_rmi4_data *rmi4_data = dev_get_drvdata(dev); | 1088 | struct synaptics_rmi4_data *rmi4_data = dev_get_drvdata(dev); |
| 1089 | 1089 | ||
| 1090 | regulator_enable(rmi4_data->regulator); | 1090 | retval = regulator_enable(rmi4_data->regulator); |
| 1091 | if (retval) { | ||
| 1092 | dev_err(dev, "Regulator enable failed (%d)\n", retval); | ||
| 1093 | return retval; | ||
| 1094 | } | ||
| 1091 | 1095 | ||
| 1092 | enable_irq(rmi4_data->i2c_client->irq); | 1096 | enable_irq(rmi4_data->i2c_client->irq); |
| 1093 | rmi4_data->touch_stopped = false; | 1097 | rmi4_data->touch_stopped = false; |
diff --git a/drivers/staging/vt6656/hostap.c b/drivers/staging/vt6656/hostap.c index f4f1bf7a30fd..c699a3058b39 100644 --- a/drivers/staging/vt6656/hostap.c +++ b/drivers/staging/vt6656/hostap.c | |||
| @@ -133,7 +133,7 @@ static int hostap_disable_hostapd(struct vnt_private *pDevice, int rtnl_locked) | |||
| 133 | DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO "%s: Netdevice %s unregistered\n", | 133 | DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO "%s: Netdevice %s unregistered\n", |
| 134 | pDevice->dev->name, pDevice->apdev->name); | 134 | pDevice->dev->name, pDevice->apdev->name); |
| 135 | } | 135 | } |
| 136 | kfree(pDevice->apdev); | 136 | free_netdev(pDevice->apdev); |
| 137 | pDevice->apdev = NULL; | 137 | pDevice->apdev = NULL; |
| 138 | pDevice->bEnable8021x = false; | 138 | pDevice->bEnable8021x = false; |
| 139 | pDevice->bEnableHostWEP = false; | 139 | pDevice->bEnableHostWEP = false; |
diff --git a/drivers/staging/vt6656/iwctl.c b/drivers/staging/vt6656/iwctl.c index c335808211ee..d0cf7d8a20e5 100644 --- a/drivers/staging/vt6656/iwctl.c +++ b/drivers/staging/vt6656/iwctl.c | |||
| @@ -1345,9 +1345,12 @@ int iwctl_siwpower(struct net_device *dev, struct iw_request_info *info, | |||
| 1345 | return rc; | 1345 | return rc; |
| 1346 | } | 1346 | } |
| 1347 | 1347 | ||
| 1348 | spin_lock_irq(&pDevice->lock); | ||
| 1349 | |||
| 1348 | if (wrq->disabled) { | 1350 | if (wrq->disabled) { |
| 1349 | pDevice->ePSMode = WMAC_POWER_CAM; | 1351 | pDevice->ePSMode = WMAC_POWER_CAM; |
| 1350 | PSvDisablePowerSaving(pDevice); | 1352 | PSvDisablePowerSaving(pDevice); |
| 1353 | spin_unlock_irq(&pDevice->lock); | ||
| 1351 | return rc; | 1354 | return rc; |
| 1352 | } | 1355 | } |
| 1353 | if ((wrq->flags & IW_POWER_TYPE) == IW_POWER_TIMEOUT) { | 1356 | if ((wrq->flags & IW_POWER_TYPE) == IW_POWER_TIMEOUT) { |
| @@ -1358,6 +1361,9 @@ int iwctl_siwpower(struct net_device *dev, struct iw_request_info *info, | |||
| 1358 | pDevice->ePSMode = WMAC_POWER_FAST; | 1361 | pDevice->ePSMode = WMAC_POWER_FAST; |
| 1359 | PSvEnablePowerSaving((void *)pDevice, pMgmt->wListenInterval); | 1362 | PSvEnablePowerSaving((void *)pDevice, pMgmt->wListenInterval); |
| 1360 | } | 1363 | } |
| 1364 | |||
| 1365 | spin_unlock_irq(&pDevice->lock); | ||
| 1366 | |||
| 1361 | switch (wrq->flags & IW_POWER_MODE) { | 1367 | switch (wrq->flags & IW_POWER_MODE) { |
| 1362 | case IW_POWER_UNICAST_R: | 1368 | case IW_POWER_UNICAST_R: |
| 1363 | DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO " SIOCSIWPOWER: IW_POWER_UNICAST_R \n"); | 1369 | DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO " SIOCSIWPOWER: IW_POWER_UNICAST_R \n"); |
diff --git a/drivers/staging/zcache/ramster/ramster-howto.txt b/drivers/staging/zcache/ramster/ramster-howto.txt new file mode 100644 index 000000000000..7b1ee3bbfdd5 --- /dev/null +++ b/drivers/staging/zcache/ramster/ramster-howto.txt | |||
| @@ -0,0 +1,366 @@ | |||
| 1 | RAMSTER HOW-TO | ||
| 2 | |||
| 3 | Author: Dan Magenheimer | ||
| 4 | Ramster maintainer: Konrad Wilk <konrad.wilk@oracle.com> | ||
| 5 | |||
| 6 | This is a HOWTO document for ramster which, as of this writing, is in | ||
| 7 | the kernel as a subdirectory of zcache in drivers/staging, called ramster. | ||
| 8 | (Zcache can be built with or without ramster functionality.) If enabled | ||
| 9 | and properly configured, ramster allows memory capacity load balancing | ||
| 10 | across multiple machines in a cluster. Further, the ramster code serves | ||
| 11 | as an example of asynchronous access for zcache (as well as cleancache and | ||
| 12 | frontswap) that may prove useful for future transcendent memory | ||
| 13 | implementations, such as KVM and NVRAM. While ramster works today on | ||
| 14 | any network connection that supports kernel sockets, its features may | ||
| 15 | become more interesting on future high-speed fabrics/interconnects. | ||
| 16 | |||
| 17 | Ramster requires both kernel and userland support. The userland support, | ||
| 18 | called ramster-tools, is known to work with EL6-based distros, but is a | ||
| 19 | set of poorly-hacked slightly-modified cluster tools based on ocfs2, which | ||
| 20 | includes an init file, a config file, and a userland binary that interfaces | ||
| 21 | to the kernel. This state of userland support reflects the abysmal userland | ||
| 22 | skills of this suitably-embarrassed author; any help/patches to turn | ||
| 23 | ramster-tools into more distributable rpms/debs useful for a wider range | ||
| 24 | of distros would be appreciated. The source RPM that can be used as a | ||
| 25 | starting point is available at: | ||
| 26 | http://oss.oracle.com/projects/tmem/files/RAMster/ | ||
| 27 | |||
| 28 | As a result of this author's ignorance, userland setup described in this | ||
| 29 | HOWTO assumes an EL6 distro and is described in EL6 syntax. Apologies | ||
| 30 | if this offends anyone! | ||
| 31 | |||
| 32 | Kernel support has only been tested on x86_64. Systems with an active | ||
| 33 | ocfs2 filesystem should work, but since ramster leverages a lot of | ||
| 34 | code from ocfs2, there may be latent issues. A kernel configuration that | ||
| 35 | includes CONFIG_OCFS2_FS should build OK, and should certainly run OK | ||
| 36 | if no ocfs2 filesystem is mounted. | ||
| 37 | |||
| 38 | This HOWTO demonstrates memory capacity load balancing for a two-node | ||
| 39 | cluster, where one node called the "local" node becomes overcommitted | ||
| 40 | and the other node called the "remote" node provides additional RAM | ||
| 41 | capacity for use by the local node. Ramster is capable of more complex | ||
| 42 | topologies; see the last section titled "ADVANCED RAMSTER TOPOLOGIES". | ||
| 43 | |||
| 44 | If you find any terms in this HOWTO unfamiliar or don't understand the | ||
| 45 | motivation for ramster, the following LWN reading is recommended: | ||
| 46 | -- Transcendent Memory in a Nutshell (lwn.net/Articles/454795) | ||
| 47 | -- The future calculus of memory management (lwn.net/Articles/475681) | ||
| 48 | And since ramster is built on top of zcache, this article may be helpful: | ||
| 49 | -- In-kernel memory compression (lwn.net/Articles/545244) | ||
| 50 | |||
| 51 | Now that you've memorized the contents of those articles, let's get started! | ||
| 52 | |||
| 53 | A. PRELIMINARY | ||
| 54 | |||
| 55 | 1) Install two x86_64 Linux systems that are known to work when | ||
| 56 | upgraded to a recent upstream Linux kernel version. | ||
| 57 | |||
| 58 | On each system: | ||
| 59 | |||
| 60 | 2) Configure, build and install, then boot Linux, just to ensure it | ||
| 61 | can be done with an unmodified upstream kernel. Confirm you booted | ||
| 62 | the upstream kernel with "uname -a". | ||
| 63 | |||
| 64 | 3) If you plan to do any performance testing or unless you plan to | ||
| 65 | test only swapping, the "WasActive" patch is also highly recommended. | ||
| 66 | (Search lkml.org for WasActive, apply the patch, rebuild your kernel.) | ||
| 67 | For a demo or simple testing, the patch can be ignored. | ||
| 68 | |||
| 69 | 4) Install ramster-tools as root. An x86_64 rpm for EL6-based systems | ||
| 70 | can be found at: | ||
| 71 | http://oss.oracle.com/projects/tmem/files/RAMster/ | ||
| 72 | (Sorry but for now, non-EL6 users must recreate ramster-tools on | ||
| 73 | their own from source. See above.) | ||
| 74 | |||
| 75 | 5) Ensure that debugfs is mounted at each boot. Examples below assume it | ||
| 76 | is mounted at /sys/kernel/debug. | ||
| 77 | |||
| 78 | B. BUILDING RAMSTER INTO THE KERNEL | ||
| 79 | |||
| 80 | Do the following on each system: | ||
| 81 | |||
| 82 | 1) Using the kernel configuration mechanism of your choice, change | ||
| 83 | your config to include: | ||
| 84 | |||
| 85 | CONFIG_CLEANCACHE=y | ||
| 86 | CONFIG_FRONTSWAP=y | ||
| 87 | CONFIG_STAGING=y | ||
| 88 | CONFIG_CONFIGFS_FS=y # NOTE: MUST BE y, not m | ||
| 89 | CONFIG_ZCACHE=y | ||
| 90 | CONFIG_RAMSTER=y | ||
| 91 | |||
| 92 | For a linux-3.10 or later kernel, you should also set: | ||
| 93 | |||
| 94 | CONFIG_ZCACHE_DEBUG=y | ||
| 95 | CONFIG_RAMSTER_DEBUG=y | ||
| 96 | |||
| 97 | Before building the kernel please doublecheck your kernel config | ||
| 98 | file to ensure all of the settings are correct. | ||
| 99 | |||
| 100 | 2) Build this kernel and change your boot file (e.g. /etc/grub.conf) | ||
| 101 | so that the new kernel will boot. | ||
| 102 | |||
| 103 | 3) Add "zcache" and "ramster" as kernel boot parameters for the new kernel. | ||
| 104 | |||
| 105 | 4) Reboot each system approximately simultaneously. | ||
| 106 | |||
| 107 | 5) Check dmesg to ensure there are some messages from ramster, prefixed | ||
| 108 | by "ramster:" | ||
| 109 | |||
| 110 | # dmesg | grep ramster | ||
| 111 | |||
| 112 | You should also see a lot of files in: | ||
| 113 | |||
| 114 | # ls /sys/kernel/debug/zcache | ||
| 115 | # ls /sys/kernel/debug/ramster | ||
| 116 | |||
| 117 | These are mostly counters for various zcache and ramster activities. | ||
| 118 | You should also see files in: | ||
| 119 | |||
| 120 | # ls /sys/kernel/mm/ramster | ||
| 121 | |||
| 122 | These are sysfs files that control ramster as we shall see. | ||
| 123 | |||
| 124 | Ramster now will act as a single-system zcache on each system | ||
| 125 | but doesn't yet know anything about the cluster so can't yet do | ||
| 126 | anything remotely. | ||
| 127 | |||
| 128 | C. CONFIGURING THE RAMSTER CLUSTER | ||
| 129 | |||
| 130 | This part can be error prone unless you are familiar with clustering | ||
| 131 | filesystems. We need to describe the cluster in a /etc/ramster.conf | ||
| 132 | file and the init scripts that parse it are extremely picky about | ||
| 133 | the syntax. | ||
| 134 | |||
| 135 | 1) Create a /etc/ramster.conf file and ensure it is identical on both | ||
| 136 | systems. This file mimics the ocfs2 format and there is a good amount | ||
| 137 | of documentation that can be searched for ocfs2.conf, but you can use: | ||
| 138 | |||
| 139 | cluster: | ||
| 140 | name = ramster | ||
| 141 | node_count = 2 | ||
| 142 | node: | ||
| 143 | name = system1 | ||
| 144 | cluster = ramster | ||
| 145 | number = 0 | ||
| 146 | ip_address = my.ip.ad.r1 | ||
| 147 | ip_port = 7777 | ||
| 148 | node: | ||
| 149 | name = system2 | ||
| 150 | cluster = ramster | ||
| 151 | number = 1 | ||
| 152 | ip_address = my.ip.ad.r2 | ||
| 153 | ip_port = 7777 | ||
| 154 | |||
| 155 | You must ensure that the "name" field in the file exactly matches | ||
| 156 | the output of "hostname" on each system; if "hostname" shows a | ||
| 157 | fully-qualified hostname, ensure the name is fully qualified in | ||
| 158 | /etc/ramster.conf. Obviously, substitute my.ip.ad.rx with proper | ||
| 159 | ip addresses. | ||
| 160 | |||
| 161 | 2) Enable the ramster service and configure it. If you used the | ||
| 162 | EL6 ramster-tools, this would be: | ||
| 163 | |||
| 164 | # chkconfig --add ramster | ||
| 165 | # service ramster configure | ||
| 166 | |||
| 167 | Set "load on boot" to "y", cluster to start is "ramster" (or whatever | ||
| 168 | name you chose in ramster.conf), heartbeat dead threshold as "500", | ||
| 169 | network idle timeout as "1000000". Leave the others as default. | ||
| 170 | |||
| 171 | 3) Reboot both systems. After reboot, try (assuming EL6 ramster-tools): | ||
| 172 | |||
| 173 | # service ramster status | ||
| 174 | |||
| 175 | You should see "Checking RAMSTER cluster "ramster": Online". If you do | ||
| 176 | not, something is wrong and ramster will not work. Note that you | ||
| 177 | should also see that the driver for "configfs" is loaded and mounted, | ||
| 178 | the driver for ocfs2_dlmfs is not loaded, and some numbers for network | ||
| 179 | parameters. You will also see "Checking RAMSTER heartbeat: Not active". | ||
| 180 | That's all OK. | ||
| 181 | |||
| 182 | 4) Now you need to start the cluster heartbeat; the cluster is not "up" | ||
| 183 | until all nodes detect a heartbeat. In a real cluster, heartbeat detection | ||
| 184 | is done via a cluster filesystem, but ramster doesn't require one. Some | ||
| 185 | hack-y kernel code in ramster can start the heartbeat for you though if | ||
| 186 | you tell it what nodes are "up". To enable the heartbeat, do: | ||
| 187 | |||
| 188 | # echo 0 > /sys/kernel/mm/ramster/manual_node_up | ||
| 189 | # echo 1 > /sys/kernel/mm/ramster/manual_node_up | ||
| 190 | |||
| 191 | This must be done on BOTH nodes and, to avoid timeouts, must be done | ||
| 192 | approximately concurrently on both nodes. On an EL6 system, it is | ||
| 193 | convenient to put these lines in /etc/rc.local. To confirm that the | ||
| 194 | cluster is now up, on both systems do: | ||
| 195 | |||
| 196 | # dmesg | grep ramster | ||
| 197 | |||
| 198 | You should see ramster "Accepted connection" messages in dmesg on both | ||
| 199 | nodes after this. Note that if you check userland status again with | ||
| 200 | |||
| 201 | # service ramster status | ||
| 202 | |||
| 203 | you will still see "Checking RAMSTER heartbeat: Not active". That's | ||
| 204 | still OK... the ramster kernel heartbeat hack doesn't communicate to | ||
| 205 | userland. | ||
| 206 | |||
| 207 | 5) You now must tell each node the node to which it should "remotify" pages. | ||
| 208 | On this two node cluster, we will assume the "local" node, node 0, has | ||
| 209 | memory overcommitted and will use ramster to utilize RAM capacity on | ||
| 210 | the "remote node", node 1. To configure this, on node 0, you do: | ||
| 211 | |||
| 212 | # echo 1 > /sys/kernel/mm/ramster/remote_target_nodenum | ||
| 213 | |||
| 214 | You should see "ramster: node 1 set as remotification target" in dmesg | ||
| 215 | on node 0. Again, on EL6, /etc/rc.local is a good place to put this | ||
| 216 | on node 0 so you don't forget to do it at each boot. | ||
| 217 | |||
| 218 | 6) One more step: By default, the ramster code does not "remotify" any | ||
| 219 | pages; this is primarily for testing purposes, but sometimes it is | ||
| 220 | useful. This may change in the future, but for now, on node 0, you do: | ||
| 221 | |||
| 222 | # echo 1 > /sys/kernel/mm/ramster/pers_remotify_enable | ||
| 223 | # echo 1 > /sys/kernel/mm/ramster/eph_remotify_enable | ||
| 224 | |||
| 225 | The first enables remotifying swap (persistent, aka frontswap) pages, | ||
| 226 | the second enables remotifying of page cache (ephemeral, cleancache) | ||
| 227 | pages. | ||
| 228 | |||
| 229 | On EL6, these lines can also be put in /etc/rc.local (AFTER the | ||
| 230 | node_up lines), or at the beginning of a script that runs a workload. | ||
| 231 | |||
| 232 | 7) Note that most testing has been done with both/all machines booted | ||
| 233 | roughly simultaneously to avoid cluster timeouts. Ideally, you should | ||
| 234 | do this too unless you are trying to break ramster rather than just | ||
| 235 | use it. ;-) | ||
| 236 | |||
| 237 | D. TESTING RAMSTER | ||
| 238 | |||
| 239 | 1) Note that ramster has no value unless pages get "remotified". For | ||
| 240 | swap/frontswap/persistent pages, this doesn't happen unless/until | ||
| 241 | the workload would cause swapping to occur, at which point pages | ||
| 242 | are put into frontswap/zcache, and the remotification thread starts | ||
| 243 | working. To get to the point where the system swaps, you either | ||
| 244 | need a workload for which the working set exceeds the RAM in the | ||
| 245 | system; or you need to somehow reduce the amount of RAM one of | ||
| 246 | the system sees. This latter is easy when testing in a VM, but | ||
| 247 | harder on physical systems. In some cases, "mem=xxxM" on the | ||
| 248 | kernel command line restricts memory, but for some values of xxx | ||
| 249 | the kernel may fail to boot. One may also try creating a fixed | ||
| 250 | RAMdisk, doing nothing with it, but ensuring that it eats up a fixed | ||
| 251 | amount of RAM. | ||
| 252 | |||
| 253 | 2) To see if ramster is working, on the "remote node", node 1, try: | ||
| 254 | |||
| 255 | # grep . /sys/kernel/debug/ramster/foreign_* | ||
| 256 | # # note, that is space-dot-space between grep and the pathname | ||
| 257 | |||
| 258 | to monitor the number (and max) ephemeral and persistent pages | ||
| 259 | that ramster has sent. If these stay at zero, ramster is not working | ||
| 260 | either because the workload on the local node (node 0) isn't creating | ||
| 261 | enough memory pressure or because "remotifying" isn't working. On the | ||
| 262 | local system, node 0, you can watch lots of useful information also. | ||
| 263 | Try: | ||
| 264 | |||
| 265 | grep . /sys/kernel/debug/zcache/*pageframes* \ | ||
| 266 | /sys/kernel/debug/zcache/*zbytes* \ | ||
| 267 | /sys/kernel/debug/zcache/*zpages* \ | ||
| 268 | /sys/kernel/debug/ramster/*remote* | ||
| 269 | |||
| 270 | Of particular note are the remote_*_pages_succ_get counters. These | ||
| 271 | show how many disk reads and/or disk writes have been avoided on the | ||
| 272 | overcommitted local system by storing pages remotely using ramster. | ||
| 273 | |||
| 274 | At the risk of information overload, you can also grep: | ||
| 275 | |||
| 276 | /sys/kernel/debug/cleancache/* and /sys/kernel/debug/frontswap/* | ||
| 277 | |||
| 278 | These show, for example, how many disk reads and/or disk writes have | ||
| 279 | been avoided by using zcache to optimize RAM on the local system. | ||
| 280 | |||
| 281 | |||
| 282 | AUTOMATIC SWAP REPATRIATION | ||
| 283 | |||
| 284 | You may notice that while the systems are idle, the foreign persistent | ||
| 285 | page count on the remote machine slowly decreases. This is because | ||
| 286 | ramster implements "frontswap selfshrinking": When possible, swap | ||
| 287 | pages that have been remotified are slowly repatriated to the local | ||
| 288 | machine. This is so that local RAM can be used when possible and | ||
| 289 | so that, in case of remote machine crash, the probability of loss | ||
| 290 | of data is reduced. | ||
| 291 | |||
| 292 | REBOOTING / POWEROFF | ||
| 293 | |||
| 294 | If a system is shut down while some of its swap pages still reside | ||
| 295 | on a remote system, the system may lock up during the shutdown | ||
| 296 | sequence. This will occur if the network is shut down before the | ||
| 297 | swap mechansim is shut down, which is the default ordering on many | ||
| 298 | distros. To avoid this annoying problem, simply shut off the swap | ||
| 299 | subsystem before starting the shutdown sequence, e.g.: | ||
| 300 | |||
| 301 | # swapoff -a | ||
| 302 | # reboot | ||
| 303 | |||
| 304 | Ideally, this swapoff-before-ifdown ordering should be enforced permanently | ||
| 305 | using shutdown scripts. | ||
| 306 | |||
| 307 | KNOWN PROBLEMS | ||
| 308 | |||
| 309 | 1) You may periodically see messages such as: | ||
| 310 | |||
| 311 | ramster_r2net, message length problem | ||
| 312 | |||
| 313 | This is harmless but indicates that a node is sending messages | ||
| 314 | containing compressed pages that exceed the maximum for zcache | ||
| 315 | (PAGE_SIZE*15/16). The sender side needs to be fixed. | ||
| 316 | |||
| 317 | 2) If you see a "No longer connected to node..." message or a "No connection | ||
| 318 | established with node X after N seconds", it is possible you may | ||
| 319 | be in an unrecoverable state. If you are certain all of the | ||
| 320 | appropriate cluster configuration steps described above have been | ||
| 321 | performed, try rebooting the two servers concurrently to see if | ||
| 322 | the cluster starts. | ||
| 323 | |||
| 324 | Note that "Connection to node... shutdown, state 7" is an intermediate | ||
| 325 | connection state. As long as you later see "Accepted connection", the | ||
| 326 | intermediate states are harmless. | ||
| 327 | |||
| 328 | 3) There are known issues in counting certain values. As a result | ||
| 329 | you may see periodic warnings from the kernel. Almost always you | ||
| 330 | will see "ramster: bad accounting for XXX". There are also "WARN_ONCE" | ||
| 331 | messages. If you see kernel warnings with a tombstone, please report | ||
| 332 | them. They are harmless but reflect bugs that need to be eventually fixed. | ||
| 333 | |||
| 334 | ADVANCED RAMSTER TOPOLOGIES | ||
| 335 | |||
| 336 | The kernel code for ramster can support up to eight nodes in a cluster, | ||
| 337 | but no testing has been done with more than three nodes. | ||
| 338 | |||
| 339 | In the example described above, the "remote" node serves as a RAM | ||
| 340 | overflow for the "local" node. This can be made symmetric by appropriate | ||
| 341 | settings of the sysfs remote_target_nodenum file. For example, by setting: | ||
| 342 | |||
| 343 | # echo 1 > /sys/kernel/mm/ramster/remote_target_nodenum | ||
| 344 | |||
| 345 | on node 0, and | ||
| 346 | |||
| 347 | # echo 0 > /sys/kernel/mm/ramster/remote_target_nodenum | ||
| 348 | |||
| 349 | on node 1, each node can serve as a RAM overflow for the other. | ||
| 350 | |||
| 351 | For more than two nodes, a "RAM server" can be configured. For a | ||
| 352 | three node system, set: | ||
| 353 | |||
| 354 | # echo 0 > /sys/kernel/mm/ramster/remote_target_nodenum | ||
| 355 | |||
| 356 | on node 1, and | ||
| 357 | |||
| 358 | # echo 0 > /sys/kernel/mm/ramster/remote_target_nodenum | ||
| 359 | |||
| 360 | on node 2. Then node 0 is a RAM server for node 1 and node 2. | ||
| 361 | |||
| 362 | In this implementation of ramster, any remote node is potentially a single | ||
| 363 | point of failure (SPOF). Though the probability of failure is reduced | ||
| 364 | by automatic swap repatriation (see above), a proposed future enhancement | ||
| 365 | to ramster improves high-availability for the cluster by sending a copy | ||
| 366 | of each page of date to two other nodes. Patches welcome! | ||
diff --git a/drivers/staging/zcache/zcache-main.c b/drivers/staging/zcache/zcache-main.c index 522cb8e55142..dcceed29d31a 100644 --- a/drivers/staging/zcache/zcache-main.c +++ b/drivers/staging/zcache/zcache-main.c | |||
| @@ -1922,15 +1922,15 @@ out: | |||
| 1922 | 1922 | ||
| 1923 | #ifdef CONFIG_ZCACHE_MODULE | 1923 | #ifdef CONFIG_ZCACHE_MODULE |
| 1924 | #ifdef CONFIG_RAMSTER | 1924 | #ifdef CONFIG_RAMSTER |
| 1925 | module_param(ramster_enabled, int, S_IRUGO); | 1925 | module_param(ramster_enabled, bool, S_IRUGO); |
| 1926 | module_param(disable_frontswap_selfshrink, int, S_IRUGO); | 1926 | module_param(disable_frontswap_selfshrink, int, S_IRUGO); |
| 1927 | #endif | 1927 | #endif |
| 1928 | module_param(disable_cleancache, int, S_IRUGO); | 1928 | module_param(disable_cleancache, bool, S_IRUGO); |
| 1929 | module_param(disable_frontswap, int, S_IRUGO); | 1929 | module_param(disable_frontswap, bool, S_IRUGO); |
| 1930 | #ifdef FRONTSWAP_HAS_EXCLUSIVE_GETS | 1930 | #ifdef FRONTSWAP_HAS_EXCLUSIVE_GETS |
| 1931 | module_param(frontswap_has_exclusive_gets, bool, S_IRUGO); | 1931 | module_param(frontswap_has_exclusive_gets, bool, S_IRUGO); |
| 1932 | #endif | 1932 | #endif |
| 1933 | module_param(disable_frontswap_ignore_nonactive, int, S_IRUGO); | 1933 | module_param(disable_frontswap_ignore_nonactive, bool, S_IRUGO); |
| 1934 | module_param(zcache_comp_name, charp, S_IRUGO); | 1934 | module_param(zcache_comp_name, charp, S_IRUGO); |
| 1935 | module_init(zcache_init); | 1935 | module_init(zcache_init); |
| 1936 | MODULE_LICENSE("GPL"); | 1936 | MODULE_LICENSE("GPL"); |
diff --git a/drivers/tty/ehv_bytechan.c b/drivers/tty/ehv_bytechan.c index 6d0c27cd03da..9bffcec5ad82 100644 --- a/drivers/tty/ehv_bytechan.c +++ b/drivers/tty/ehv_bytechan.c | |||
| @@ -859,6 +859,7 @@ error: | |||
| 859 | */ | 859 | */ |
| 860 | static void __exit ehv_bc_exit(void) | 860 | static void __exit ehv_bc_exit(void) |
| 861 | { | 861 | { |
| 862 | platform_driver_unregister(&ehv_bc_tty_driver); | ||
| 862 | tty_unregister_driver(ehv_bc_driver); | 863 | tty_unregister_driver(ehv_bc_driver); |
| 863 | put_tty_driver(ehv_bc_driver); | 864 | put_tty_driver(ehv_bc_driver); |
| 864 | kfree(bcs); | 865 | kfree(bcs); |
diff --git a/drivers/tty/mxser.c b/drivers/tty/mxser.c index 71d6eb2c93b1..4c4a23674569 100644 --- a/drivers/tty/mxser.c +++ b/drivers/tty/mxser.c | |||
| @@ -1618,8 +1618,12 @@ static int mxser_ioctl_special(unsigned int cmd, void __user *argp) | |||
| 1618 | if (ip->type == PORT_16550A) | 1618 | if (ip->type == PORT_16550A) |
| 1619 | me->fifo[p] = 1; | 1619 | me->fifo[p] = 1; |
| 1620 | 1620 | ||
| 1621 | opmode = inb(ip->opmode_ioaddr)>>((p % 4) * 2); | 1621 | if (ip->board->chip_flag == MOXA_MUST_MU860_HWID) { |
| 1622 | opmode &= OP_MODE_MASK; | 1622 | opmode = inb(ip->opmode_ioaddr)>>((p % 4) * 2); |
| 1623 | opmode &= OP_MODE_MASK; | ||
| 1624 | } else { | ||
| 1625 | opmode = RS232_MODE; | ||
| 1626 | } | ||
| 1623 | me->iftype[p] = opmode; | 1627 | me->iftype[p] = opmode; |
| 1624 | mutex_unlock(&port->mutex); | 1628 | mutex_unlock(&port->mutex); |
| 1625 | } | 1629 | } |
| @@ -1676,6 +1680,9 @@ static int mxser_ioctl(struct tty_struct *tty, | |||
| 1676 | int shiftbit; | 1680 | int shiftbit; |
| 1677 | unsigned char val, mask; | 1681 | unsigned char val, mask; |
| 1678 | 1682 | ||
| 1683 | if (info->board->chip_flag != MOXA_MUST_MU860_HWID) | ||
| 1684 | return -EFAULT; | ||
| 1685 | |||
| 1679 | p = tty->index % 4; | 1686 | p = tty->index % 4; |
| 1680 | if (cmd == MOXA_SET_OP_MODE) { | 1687 | if (cmd == MOXA_SET_OP_MODE) { |
| 1681 | if (get_user(opmode, (int __user *) argp)) | 1688 | if (get_user(opmode, (int __user *) argp)) |
diff --git a/drivers/tty/n_tty.c b/drivers/tty/n_tty.c index d655416087b7..6c7fe90ad72d 100644 --- a/drivers/tty/n_tty.c +++ b/drivers/tty/n_tty.c | |||
| @@ -1573,6 +1573,14 @@ static void n_tty_set_termios(struct tty_struct *tty, struct ktermios *old) | |||
| 1573 | ldata->real_raw = 0; | 1573 | ldata->real_raw = 0; |
| 1574 | } | 1574 | } |
| 1575 | n_tty_set_room(tty); | 1575 | n_tty_set_room(tty); |
| 1576 | /* | ||
| 1577 | * Fix tty hang when I_IXON(tty) is cleared, but the tty | ||
| 1578 | * been stopped by STOP_CHAR(tty) before it. | ||
| 1579 | */ | ||
| 1580 | if (!I_IXON(tty) && old && (old->c_iflag & IXON) && !tty->flow_stopped) { | ||
| 1581 | start_tty(tty); | ||
| 1582 | } | ||
| 1583 | |||
| 1576 | /* The termios change make the tty ready for I/O */ | 1584 | /* The termios change make the tty ready for I/O */ |
| 1577 | wake_up_interruptible(&tty->write_wait); | 1585 | wake_up_interruptible(&tty->write_wait); |
| 1578 | wake_up_interruptible(&tty->read_wait); | 1586 | wake_up_interruptible(&tty->read_wait); |
diff --git a/drivers/tty/rocket.c b/drivers/tty/rocket.c index 82d35c5a58fd..354564ea47c5 100644 --- a/drivers/tty/rocket.c +++ b/drivers/tty/rocket.c | |||
| @@ -150,12 +150,14 @@ static Word_t aiop_intr_bits[AIOP_CTL_SIZE] = { | |||
| 150 | AIOP_INTR_BIT_3 | 150 | AIOP_INTR_BIT_3 |
| 151 | }; | 151 | }; |
| 152 | 152 | ||
| 153 | #ifdef CONFIG_PCI | ||
| 153 | static Word_t upci_aiop_intr_bits[AIOP_CTL_SIZE] = { | 154 | static Word_t upci_aiop_intr_bits[AIOP_CTL_SIZE] = { |
| 154 | UPCI_AIOP_INTR_BIT_0, | 155 | UPCI_AIOP_INTR_BIT_0, |
| 155 | UPCI_AIOP_INTR_BIT_1, | 156 | UPCI_AIOP_INTR_BIT_1, |
| 156 | UPCI_AIOP_INTR_BIT_2, | 157 | UPCI_AIOP_INTR_BIT_2, |
| 157 | UPCI_AIOP_INTR_BIT_3 | 158 | UPCI_AIOP_INTR_BIT_3 |
| 158 | }; | 159 | }; |
| 160 | #endif | ||
| 159 | 161 | ||
| 160 | static Byte_t RData[RDATASIZE] = { | 162 | static Byte_t RData[RDATASIZE] = { |
| 161 | 0x00, 0x09, 0xf6, 0x82, | 163 | 0x00, 0x09, 0xf6, 0x82, |
| @@ -227,7 +229,6 @@ static unsigned long nextLineNumber; | |||
| 227 | static int __init init_ISA(int i); | 229 | static int __init init_ISA(int i); |
| 228 | static void rp_wait_until_sent(struct tty_struct *tty, int timeout); | 230 | static void rp_wait_until_sent(struct tty_struct *tty, int timeout); |
| 229 | static void rp_flush_buffer(struct tty_struct *tty); | 231 | static void rp_flush_buffer(struct tty_struct *tty); |
| 230 | static void rmSpeakerReset(CONTROLLER_T * CtlP, unsigned long model); | ||
| 231 | static unsigned char GetLineNumber(int ctrl, int aiop, int ch); | 232 | static unsigned char GetLineNumber(int ctrl, int aiop, int ch); |
| 232 | static unsigned char SetLineNumber(int ctrl, int aiop, int ch); | 233 | static unsigned char SetLineNumber(int ctrl, int aiop, int ch); |
| 233 | static void rp_start(struct tty_struct *tty); | 234 | static void rp_start(struct tty_struct *tty); |
| @@ -241,11 +242,6 @@ static void sDisInterrupts(CHANNEL_T * ChP, Word_t Flags); | |||
| 241 | static void sModemReset(CONTROLLER_T * CtlP, int chan, int on); | 242 | static void sModemReset(CONTROLLER_T * CtlP, int chan, int on); |
| 242 | static void sPCIModemReset(CONTROLLER_T * CtlP, int chan, int on); | 243 | static void sPCIModemReset(CONTROLLER_T * CtlP, int chan, int on); |
| 243 | static int sWriteTxPrioByte(CHANNEL_T * ChP, Byte_t Data); | 244 | static int sWriteTxPrioByte(CHANNEL_T * ChP, Byte_t Data); |
| 244 | static int sPCIInitController(CONTROLLER_T * CtlP, int CtlNum, | ||
| 245 | ByteIO_t * AiopIOList, int AiopIOListSize, | ||
| 246 | WordIO_t ConfigIO, int IRQNum, Byte_t Frequency, | ||
| 247 | int PeriodicOnly, int altChanRingIndicator, | ||
| 248 | int UPCIRingInd); | ||
| 249 | static int sInitController(CONTROLLER_T * CtlP, int CtlNum, ByteIO_t MudbacIO, | 245 | static int sInitController(CONTROLLER_T * CtlP, int CtlNum, ByteIO_t MudbacIO, |
| 250 | ByteIO_t * AiopIOList, int AiopIOListSize, | 246 | ByteIO_t * AiopIOList, int AiopIOListSize, |
| 251 | int IRQNum, Byte_t Frequency, int PeriodicOnly); | 247 | int IRQNum, Byte_t Frequency, int PeriodicOnly); |
| @@ -1775,6 +1771,145 @@ static DEFINE_PCI_DEVICE_TABLE(rocket_pci_ids) = { | |||
| 1775 | }; | 1771 | }; |
| 1776 | MODULE_DEVICE_TABLE(pci, rocket_pci_ids); | 1772 | MODULE_DEVICE_TABLE(pci, rocket_pci_ids); |
| 1777 | 1773 | ||
| 1774 | /* Resets the speaker controller on RocketModem II and III devices */ | ||
| 1775 | static void rmSpeakerReset(CONTROLLER_T * CtlP, unsigned long model) | ||
| 1776 | { | ||
| 1777 | ByteIO_t addr; | ||
| 1778 | |||
| 1779 | /* RocketModem II speaker control is at the 8th port location of offset 0x40 */ | ||
| 1780 | if ((model == MODEL_RP4M) || (model == MODEL_RP6M)) { | ||
| 1781 | addr = CtlP->AiopIO[0] + 0x4F; | ||
| 1782 | sOutB(addr, 0); | ||
| 1783 | } | ||
| 1784 | |||
| 1785 | /* RocketModem III speaker control is at the 1st port location of offset 0x80 */ | ||
| 1786 | if ((model == MODEL_UPCI_RM3_8PORT) | ||
| 1787 | || (model == MODEL_UPCI_RM3_4PORT)) { | ||
| 1788 | addr = CtlP->AiopIO[0] + 0x88; | ||
| 1789 | sOutB(addr, 0); | ||
| 1790 | } | ||
| 1791 | } | ||
| 1792 | |||
| 1793 | /*************************************************************************** | ||
| 1794 | Function: sPCIInitController | ||
| 1795 | Purpose: Initialization of controller global registers and controller | ||
| 1796 | structure. | ||
| 1797 | Call: sPCIInitController(CtlP,CtlNum,AiopIOList,AiopIOListSize, | ||
| 1798 | IRQNum,Frequency,PeriodicOnly) | ||
| 1799 | CONTROLLER_T *CtlP; Ptr to controller structure | ||
| 1800 | int CtlNum; Controller number | ||
| 1801 | ByteIO_t *AiopIOList; List of I/O addresses for each AIOP. | ||
| 1802 | This list must be in the order the AIOPs will be found on the | ||
| 1803 | controller. Once an AIOP in the list is not found, it is | ||
| 1804 | assumed that there are no more AIOPs on the controller. | ||
| 1805 | int AiopIOListSize; Number of addresses in AiopIOList | ||
| 1806 | int IRQNum; Interrupt Request number. Can be any of the following: | ||
| 1807 | 0: Disable global interrupts | ||
| 1808 | 3: IRQ 3 | ||
| 1809 | 4: IRQ 4 | ||
| 1810 | 5: IRQ 5 | ||
| 1811 | 9: IRQ 9 | ||
| 1812 | 10: IRQ 10 | ||
| 1813 | 11: IRQ 11 | ||
| 1814 | 12: IRQ 12 | ||
| 1815 | 15: IRQ 15 | ||
| 1816 | Byte_t Frequency: A flag identifying the frequency | ||
| 1817 | of the periodic interrupt, can be any one of the following: | ||
| 1818 | FREQ_DIS - periodic interrupt disabled | ||
| 1819 | FREQ_137HZ - 137 Hertz | ||
| 1820 | FREQ_69HZ - 69 Hertz | ||
| 1821 | FREQ_34HZ - 34 Hertz | ||
| 1822 | FREQ_17HZ - 17 Hertz | ||
| 1823 | FREQ_9HZ - 9 Hertz | ||
| 1824 | FREQ_4HZ - 4 Hertz | ||
| 1825 | If IRQNum is set to 0 the Frequency parameter is | ||
| 1826 | overidden, it is forced to a value of FREQ_DIS. | ||
| 1827 | int PeriodicOnly: 1 if all interrupts except the periodic | ||
| 1828 | interrupt are to be blocked. | ||
| 1829 | 0 is both the periodic interrupt and | ||
| 1830 | other channel interrupts are allowed. | ||
| 1831 | If IRQNum is set to 0 the PeriodicOnly parameter is | ||
| 1832 | overidden, it is forced to a value of 0. | ||
| 1833 | Return: int: Number of AIOPs on the controller, or CTLID_NULL if controller | ||
| 1834 | initialization failed. | ||
| 1835 | |||
| 1836 | Comments: | ||
| 1837 | If periodic interrupts are to be disabled but AIOP interrupts | ||
| 1838 | are allowed, set Frequency to FREQ_DIS and PeriodicOnly to 0. | ||
| 1839 | |||
| 1840 | If interrupts are to be completely disabled set IRQNum to 0. | ||
| 1841 | |||
| 1842 | Setting Frequency to FREQ_DIS and PeriodicOnly to 1 is an | ||
| 1843 | invalid combination. | ||
| 1844 | |||
| 1845 | This function performs initialization of global interrupt modes, | ||
| 1846 | but it does not actually enable global interrupts. To enable | ||
| 1847 | and disable global interrupts use functions sEnGlobalInt() and | ||
| 1848 | sDisGlobalInt(). Enabling of global interrupts is normally not | ||
| 1849 | done until all other initializations are complete. | ||
| 1850 | |||
| 1851 | Even if interrupts are globally enabled, they must also be | ||
| 1852 | individually enabled for each channel that is to generate | ||
| 1853 | interrupts. | ||
| 1854 | |||
| 1855 | Warnings: No range checking on any of the parameters is done. | ||
| 1856 | |||
| 1857 | No context switches are allowed while executing this function. | ||
| 1858 | |||
| 1859 | After this function all AIOPs on the controller are disabled, | ||
| 1860 | they can be enabled with sEnAiop(). | ||
| 1861 | */ | ||
| 1862 | static int sPCIInitController(CONTROLLER_T * CtlP, int CtlNum, | ||
| 1863 | ByteIO_t * AiopIOList, int AiopIOListSize, | ||
| 1864 | WordIO_t ConfigIO, int IRQNum, Byte_t Frequency, | ||
| 1865 | int PeriodicOnly, int altChanRingIndicator, | ||
| 1866 | int UPCIRingInd) | ||
| 1867 | { | ||
| 1868 | int i; | ||
| 1869 | ByteIO_t io; | ||
| 1870 | |||
| 1871 | CtlP->AltChanRingIndicator = altChanRingIndicator; | ||
| 1872 | CtlP->UPCIRingInd = UPCIRingInd; | ||
| 1873 | CtlP->CtlNum = CtlNum; | ||
| 1874 | CtlP->CtlID = CTLID_0001; /* controller release 1 */ | ||
| 1875 | CtlP->BusType = isPCI; /* controller release 1 */ | ||
| 1876 | |||
| 1877 | if (ConfigIO) { | ||
| 1878 | CtlP->isUPCI = 1; | ||
| 1879 | CtlP->PCIIO = ConfigIO + _PCI_9030_INT_CTRL; | ||
| 1880 | CtlP->PCIIO2 = ConfigIO + _PCI_9030_GPIO_CTRL; | ||
| 1881 | CtlP->AiopIntrBits = upci_aiop_intr_bits; | ||
| 1882 | } else { | ||
| 1883 | CtlP->isUPCI = 0; | ||
| 1884 | CtlP->PCIIO = | ||
| 1885 | (WordIO_t) ((ByteIO_t) AiopIOList[0] + _PCI_INT_FUNC); | ||
| 1886 | CtlP->AiopIntrBits = aiop_intr_bits; | ||
| 1887 | } | ||
| 1888 | |||
| 1889 | sPCIControllerEOI(CtlP); /* clear EOI if warm init */ | ||
| 1890 | /* Init AIOPs */ | ||
| 1891 | CtlP->NumAiop = 0; | ||
| 1892 | for (i = 0; i < AiopIOListSize; i++) { | ||
| 1893 | io = AiopIOList[i]; | ||
| 1894 | CtlP->AiopIO[i] = (WordIO_t) io; | ||
| 1895 | CtlP->AiopIntChanIO[i] = io + _INT_CHAN; | ||
| 1896 | |||
| 1897 | CtlP->AiopID[i] = sReadAiopID(io); /* read AIOP ID */ | ||
| 1898 | if (CtlP->AiopID[i] == AIOPID_NULL) /* if AIOP does not exist */ | ||
| 1899 | break; /* done looking for AIOPs */ | ||
| 1900 | |||
| 1901 | CtlP->AiopNumChan[i] = sReadAiopNumChan((WordIO_t) io); /* num channels in AIOP */ | ||
| 1902 | sOutW((WordIO_t) io + _INDX_ADDR, _CLK_PRE); /* clock prescaler */ | ||
| 1903 | sOutB(io + _INDX_DATA, sClockPrescale); | ||
| 1904 | CtlP->NumAiop++; /* bump count of AIOPs */ | ||
| 1905 | } | ||
| 1906 | |||
| 1907 | if (CtlP->NumAiop == 0) | ||
| 1908 | return (-1); | ||
| 1909 | else | ||
| 1910 | return (CtlP->NumAiop); | ||
| 1911 | } | ||
| 1912 | |||
| 1778 | /* | 1913 | /* |
| 1779 | * Called when a PCI card is found. Retrieves and stores model information, | 1914 | * Called when a PCI card is found. Retrieves and stores model information, |
| 1780 | * init's aiopic and serial port hardware. | 1915 | * init's aiopic and serial port hardware. |
| @@ -2519,147 +2654,6 @@ static int sInitController(CONTROLLER_T * CtlP, int CtlNum, ByteIO_t MudbacIO, | |||
| 2519 | return (CtlP->NumAiop); | 2654 | return (CtlP->NumAiop); |
| 2520 | } | 2655 | } |
| 2521 | 2656 | ||
| 2522 | #ifdef CONFIG_PCI | ||
| 2523 | /*************************************************************************** | ||
| 2524 | Function: sPCIInitController | ||
| 2525 | Purpose: Initialization of controller global registers and controller | ||
| 2526 | structure. | ||
| 2527 | Call: sPCIInitController(CtlP,CtlNum,AiopIOList,AiopIOListSize, | ||
| 2528 | IRQNum,Frequency,PeriodicOnly) | ||
| 2529 | CONTROLLER_T *CtlP; Ptr to controller structure | ||
| 2530 | int CtlNum; Controller number | ||
| 2531 | ByteIO_t *AiopIOList; List of I/O addresses for each AIOP. | ||
| 2532 | This list must be in the order the AIOPs will be found on the | ||
| 2533 | controller. Once an AIOP in the list is not found, it is | ||
| 2534 | assumed that there are no more AIOPs on the controller. | ||
| 2535 | int AiopIOListSize; Number of addresses in AiopIOList | ||
| 2536 | int IRQNum; Interrupt Request number. Can be any of the following: | ||
| 2537 | 0: Disable global interrupts | ||
| 2538 | 3: IRQ 3 | ||
| 2539 | 4: IRQ 4 | ||
| 2540 | 5: IRQ 5 | ||
| 2541 | 9: IRQ 9 | ||
| 2542 | 10: IRQ 10 | ||
| 2543 | 11: IRQ 11 | ||
| 2544 | 12: IRQ 12 | ||
| 2545 | 15: IRQ 15 | ||
| 2546 | Byte_t Frequency: A flag identifying the frequency | ||
| 2547 | of the periodic interrupt, can be any one of the following: | ||
| 2548 | FREQ_DIS - periodic interrupt disabled | ||
| 2549 | FREQ_137HZ - 137 Hertz | ||
| 2550 | FREQ_69HZ - 69 Hertz | ||
| 2551 | FREQ_34HZ - 34 Hertz | ||
| 2552 | FREQ_17HZ - 17 Hertz | ||
| 2553 | FREQ_9HZ - 9 Hertz | ||
| 2554 | FREQ_4HZ - 4 Hertz | ||
| 2555 | If IRQNum is set to 0 the Frequency parameter is | ||
| 2556 | overidden, it is forced to a value of FREQ_DIS. | ||
| 2557 | int PeriodicOnly: 1 if all interrupts except the periodic | ||
| 2558 | interrupt are to be blocked. | ||
| 2559 | 0 is both the periodic interrupt and | ||
| 2560 | other channel interrupts are allowed. | ||
| 2561 | If IRQNum is set to 0 the PeriodicOnly parameter is | ||
| 2562 | overidden, it is forced to a value of 0. | ||
| 2563 | Return: int: Number of AIOPs on the controller, or CTLID_NULL if controller | ||
| 2564 | initialization failed. | ||
| 2565 | |||
| 2566 | Comments: | ||
| 2567 | If periodic interrupts are to be disabled but AIOP interrupts | ||
| 2568 | are allowed, set Frequency to FREQ_DIS and PeriodicOnly to 0. | ||
| 2569 | |||
| 2570 | If interrupts are to be completely disabled set IRQNum to 0. | ||
| 2571 | |||
| 2572 | Setting Frequency to FREQ_DIS and PeriodicOnly to 1 is an | ||
| 2573 | invalid combination. | ||
| 2574 | |||
| 2575 | This function performs initialization of global interrupt modes, | ||
| 2576 | but it does not actually enable global interrupts. To enable | ||
| 2577 | and disable global interrupts use functions sEnGlobalInt() and | ||
| 2578 | sDisGlobalInt(). Enabling of global interrupts is normally not | ||
| 2579 | done until all other initializations are complete. | ||
| 2580 | |||
| 2581 | Even if interrupts are globally enabled, they must also be | ||
| 2582 | individually enabled for each channel that is to generate | ||
| 2583 | interrupts. | ||
| 2584 | |||
| 2585 | Warnings: No range checking on any of the parameters is done. | ||
| 2586 | |||
| 2587 | No context switches are allowed while executing this function. | ||
| 2588 | |||
| 2589 | After this function all AIOPs on the controller are disabled, | ||
| 2590 | they can be enabled with sEnAiop(). | ||
| 2591 | */ | ||
| 2592 | static int sPCIInitController(CONTROLLER_T * CtlP, int CtlNum, | ||
| 2593 | ByteIO_t * AiopIOList, int AiopIOListSize, | ||
| 2594 | WordIO_t ConfigIO, int IRQNum, Byte_t Frequency, | ||
| 2595 | int PeriodicOnly, int altChanRingIndicator, | ||
| 2596 | int UPCIRingInd) | ||
| 2597 | { | ||
| 2598 | int i; | ||
| 2599 | ByteIO_t io; | ||
| 2600 | |||
| 2601 | CtlP->AltChanRingIndicator = altChanRingIndicator; | ||
| 2602 | CtlP->UPCIRingInd = UPCIRingInd; | ||
| 2603 | CtlP->CtlNum = CtlNum; | ||
| 2604 | CtlP->CtlID = CTLID_0001; /* controller release 1 */ | ||
| 2605 | CtlP->BusType = isPCI; /* controller release 1 */ | ||
| 2606 | |||
| 2607 | if (ConfigIO) { | ||
| 2608 | CtlP->isUPCI = 1; | ||
| 2609 | CtlP->PCIIO = ConfigIO + _PCI_9030_INT_CTRL; | ||
| 2610 | CtlP->PCIIO2 = ConfigIO + _PCI_9030_GPIO_CTRL; | ||
| 2611 | CtlP->AiopIntrBits = upci_aiop_intr_bits; | ||
| 2612 | } else { | ||
| 2613 | CtlP->isUPCI = 0; | ||
| 2614 | CtlP->PCIIO = | ||
| 2615 | (WordIO_t) ((ByteIO_t) AiopIOList[0] + _PCI_INT_FUNC); | ||
| 2616 | CtlP->AiopIntrBits = aiop_intr_bits; | ||
| 2617 | } | ||
| 2618 | |||
| 2619 | sPCIControllerEOI(CtlP); /* clear EOI if warm init */ | ||
| 2620 | /* Init AIOPs */ | ||
| 2621 | CtlP->NumAiop = 0; | ||
| 2622 | for (i = 0; i < AiopIOListSize; i++) { | ||
| 2623 | io = AiopIOList[i]; | ||
| 2624 | CtlP->AiopIO[i] = (WordIO_t) io; | ||
| 2625 | CtlP->AiopIntChanIO[i] = io + _INT_CHAN; | ||
| 2626 | |||
| 2627 | CtlP->AiopID[i] = sReadAiopID(io); /* read AIOP ID */ | ||
| 2628 | if (CtlP->AiopID[i] == AIOPID_NULL) /* if AIOP does not exist */ | ||
| 2629 | break; /* done looking for AIOPs */ | ||
| 2630 | |||
| 2631 | CtlP->AiopNumChan[i] = sReadAiopNumChan((WordIO_t) io); /* num channels in AIOP */ | ||
| 2632 | sOutW((WordIO_t) io + _INDX_ADDR, _CLK_PRE); /* clock prescaler */ | ||
| 2633 | sOutB(io + _INDX_DATA, sClockPrescale); | ||
| 2634 | CtlP->NumAiop++; /* bump count of AIOPs */ | ||
| 2635 | } | ||
| 2636 | |||
| 2637 | if (CtlP->NumAiop == 0) | ||
| 2638 | return (-1); | ||
| 2639 | else | ||
| 2640 | return (CtlP->NumAiop); | ||
| 2641 | } | ||
| 2642 | |||
| 2643 | /* Resets the speaker controller on RocketModem II and III devices */ | ||
| 2644 | static void rmSpeakerReset(CONTROLLER_T * CtlP, unsigned long model) | ||
| 2645 | { | ||
| 2646 | ByteIO_t addr; | ||
| 2647 | |||
| 2648 | /* RocketModem II speaker control is at the 8th port location of offset 0x40 */ | ||
| 2649 | if ((model == MODEL_RP4M) || (model == MODEL_RP6M)) { | ||
| 2650 | addr = CtlP->AiopIO[0] + 0x4F; | ||
| 2651 | sOutB(addr, 0); | ||
| 2652 | } | ||
| 2653 | |||
| 2654 | /* RocketModem III speaker control is at the 1st port location of offset 0x80 */ | ||
| 2655 | if ((model == MODEL_UPCI_RM3_8PORT) | ||
| 2656 | || (model == MODEL_UPCI_RM3_4PORT)) { | ||
| 2657 | addr = CtlP->AiopIO[0] + 0x88; | ||
| 2658 | sOutB(addr, 0); | ||
| 2659 | } | ||
| 2660 | } | ||
| 2661 | #endif | ||
| 2662 | |||
| 2663 | /*************************************************************************** | 2657 | /*************************************************************************** |
| 2664 | Function: sReadAiopID | 2658 | Function: sReadAiopID |
| 2665 | Purpose: Read the AIOP idenfication number directly from an AIOP. | 2659 | Purpose: Read the AIOP idenfication number directly from an AIOP. |
diff --git a/drivers/tty/serial/8250/8250_dw.c b/drivers/tty/serial/8250/8250_dw.c index beaa283f5cc6..d07b6af3a937 100644 --- a/drivers/tty/serial/8250/8250_dw.c +++ b/drivers/tty/serial/8250/8250_dw.c | |||
| @@ -338,7 +338,8 @@ static int dw8250_runtime_suspend(struct device *dev) | |||
| 338 | { | 338 | { |
| 339 | struct dw8250_data *data = dev_get_drvdata(dev); | 339 | struct dw8250_data *data = dev_get_drvdata(dev); |
| 340 | 340 | ||
| 341 | clk_disable_unprepare(data->clk); | 341 | if (!IS_ERR(data->clk)) |
| 342 | clk_disable_unprepare(data->clk); | ||
| 342 | 343 | ||
| 343 | return 0; | 344 | return 0; |
| 344 | } | 345 | } |
| @@ -347,7 +348,8 @@ static int dw8250_runtime_resume(struct device *dev) | |||
| 347 | { | 348 | { |
| 348 | struct dw8250_data *data = dev_get_drvdata(dev); | 349 | struct dw8250_data *data = dev_get_drvdata(dev); |
| 349 | 350 | ||
| 350 | clk_prepare_enable(data->clk); | 351 | if (!IS_ERR(data->clk)) |
| 352 | clk_prepare_enable(data->clk); | ||
| 351 | 353 | ||
| 352 | return 0; | 354 | return 0; |
| 353 | } | 355 | } |
| @@ -367,6 +369,7 @@ MODULE_DEVICE_TABLE(of, dw8250_of_match); | |||
| 367 | static const struct acpi_device_id dw8250_acpi_match[] = { | 369 | static const struct acpi_device_id dw8250_acpi_match[] = { |
| 368 | { "INT33C4", 0 }, | 370 | { "INT33C4", 0 }, |
| 369 | { "INT33C5", 0 }, | 371 | { "INT33C5", 0 }, |
| 372 | { "80860F0A", 0 }, | ||
| 370 | { }, | 373 | { }, |
| 371 | }; | 374 | }; |
| 372 | MODULE_DEVICE_TABLE(acpi, dw8250_acpi_match); | 375 | MODULE_DEVICE_TABLE(acpi, dw8250_acpi_match); |
diff --git a/drivers/tty/serial/amba-pl011.c b/drivers/tty/serial/amba-pl011.c index 8ab70a620919..e2774f9ecd59 100644 --- a/drivers/tty/serial/amba-pl011.c +++ b/drivers/tty/serial/amba-pl011.c | |||
| @@ -332,7 +332,7 @@ static void pl011_dma_probe_initcall(struct device *dev, struct uart_amba_port * | |||
| 332 | dmaengine_slave_config(chan, &rx_conf); | 332 | dmaengine_slave_config(chan, &rx_conf); |
| 333 | uap->dmarx.chan = chan; | 333 | uap->dmarx.chan = chan; |
| 334 | 334 | ||
| 335 | if (plat->dma_rx_poll_enable) { | 335 | if (plat && plat->dma_rx_poll_enable) { |
| 336 | /* Set poll rate if specified. */ | 336 | /* Set poll rate if specified. */ |
| 337 | if (plat->dma_rx_poll_rate) { | 337 | if (plat->dma_rx_poll_rate) { |
| 338 | uap->dmarx.auto_poll_rate = false; | 338 | uap->dmarx.auto_poll_rate = false; |
diff --git a/drivers/tty/serial/mcf.c b/drivers/tty/serial/mcf.c index e956377a38fe..65be0c00c4bf 100644 --- a/drivers/tty/serial/mcf.c +++ b/drivers/tty/serial/mcf.c | |||
| @@ -707,8 +707,10 @@ static int __init mcf_init(void) | |||
| 707 | if (rc) | 707 | if (rc) |
| 708 | return rc; | 708 | return rc; |
| 709 | rc = platform_driver_register(&mcf_platform_driver); | 709 | rc = platform_driver_register(&mcf_platform_driver); |
| 710 | if (rc) | 710 | if (rc) { |
| 711 | uart_unregister_driver(&mcf_driver); | ||
| 711 | return rc; | 712 | return rc; |
| 713 | } | ||
| 712 | return 0; | 714 | return 0; |
| 713 | } | 715 | } |
| 714 | 716 | ||
diff --git a/drivers/tty/serial/mpc52xx_uart.c b/drivers/tty/serial/mpc52xx_uart.c index 018bad922554..f51b280f3bf2 100644 --- a/drivers/tty/serial/mpc52xx_uart.c +++ b/drivers/tty/serial/mpc52xx_uart.c | |||
| @@ -1497,18 +1497,23 @@ mpc52xx_uart_init(void) | |||
| 1497 | if (psc_ops && psc_ops->fifoc_init) { | 1497 | if (psc_ops && psc_ops->fifoc_init) { |
| 1498 | ret = psc_ops->fifoc_init(); | 1498 | ret = psc_ops->fifoc_init(); |
| 1499 | if (ret) | 1499 | if (ret) |
| 1500 | return ret; | 1500 | goto err_init; |
| 1501 | } | 1501 | } |
| 1502 | 1502 | ||
| 1503 | ret = platform_driver_register(&mpc52xx_uart_of_driver); | 1503 | ret = platform_driver_register(&mpc52xx_uart_of_driver); |
| 1504 | if (ret) { | 1504 | if (ret) { |
| 1505 | printk(KERN_ERR "%s: platform_driver_register failed (%i)\n", | 1505 | printk(KERN_ERR "%s: platform_driver_register failed (%i)\n", |
| 1506 | __FILE__, ret); | 1506 | __FILE__, ret); |
| 1507 | uart_unregister_driver(&mpc52xx_uart_driver); | 1507 | goto err_reg; |
| 1508 | return ret; | ||
| 1509 | } | 1508 | } |
| 1510 | 1509 | ||
| 1511 | return 0; | 1510 | return 0; |
| 1511 | err_reg: | ||
| 1512 | if (psc_ops && psc_ops->fifoc_uninit) | ||
| 1513 | psc_ops->fifoc_uninit(); | ||
| 1514 | err_init: | ||
| 1515 | uart_unregister_driver(&mpc52xx_uart_driver); | ||
| 1516 | return ret; | ||
| 1512 | } | 1517 | } |
| 1513 | 1518 | ||
| 1514 | static void __exit | 1519 | static void __exit |
diff --git a/drivers/tty/serial/nwpserial.c b/drivers/tty/serial/nwpserial.c index 77287c54f331..549c70a2a63e 100644 --- a/drivers/tty/serial/nwpserial.c +++ b/drivers/tty/serial/nwpserial.c | |||
| @@ -199,7 +199,7 @@ static void nwpserial_shutdown(struct uart_port *port) | |||
| 199 | dcr_write(up->dcr_host, UART_IER, up->ier); | 199 | dcr_write(up->dcr_host, UART_IER, up->ier); |
| 200 | 200 | ||
| 201 | /* free irq */ | 201 | /* free irq */ |
| 202 | free_irq(up->port.irq, port); | 202 | free_irq(up->port.irq, up); |
| 203 | } | 203 | } |
| 204 | 204 | ||
| 205 | static int nwpserial_verify_port(struct uart_port *port, | 205 | static int nwpserial_verify_port(struct uart_port *port, |
diff --git a/drivers/tty/serial/omap-serial.c b/drivers/tty/serial/omap-serial.c index 30d4f7a783cd..f0b9f6b52b32 100644 --- a/drivers/tty/serial/omap-serial.c +++ b/drivers/tty/serial/omap-serial.c | |||
| @@ -202,26 +202,6 @@ static int serial_omap_get_context_loss_count(struct uart_omap_port *up) | |||
| 202 | return pdata->get_context_loss_count(up->dev); | 202 | return pdata->get_context_loss_count(up->dev); |
| 203 | } | 203 | } |
| 204 | 204 | ||
| 205 | static void serial_omap_set_forceidle(struct uart_omap_port *up) | ||
| 206 | { | ||
| 207 | struct omap_uart_port_info *pdata = up->dev->platform_data; | ||
| 208 | |||
| 209 | if (!pdata || !pdata->set_forceidle) | ||
| 210 | return; | ||
| 211 | |||
| 212 | pdata->set_forceidle(up->dev); | ||
| 213 | } | ||
| 214 | |||
| 215 | static void serial_omap_set_noidle(struct uart_omap_port *up) | ||
| 216 | { | ||
| 217 | struct omap_uart_port_info *pdata = up->dev->platform_data; | ||
| 218 | |||
| 219 | if (!pdata || !pdata->set_noidle) | ||
| 220 | return; | ||
| 221 | |||
| 222 | pdata->set_noidle(up->dev); | ||
| 223 | } | ||
| 224 | |||
| 225 | static void serial_omap_enable_wakeup(struct uart_omap_port *up, bool enable) | 205 | static void serial_omap_enable_wakeup(struct uart_omap_port *up, bool enable) |
| 226 | { | 206 | { |
| 227 | struct omap_uart_port_info *pdata = up->dev->platform_data; | 207 | struct omap_uart_port_info *pdata = up->dev->platform_data; |
| @@ -298,8 +278,6 @@ static void serial_omap_stop_tx(struct uart_port *port) | |||
| 298 | serial_out(up, UART_IER, up->ier); | 278 | serial_out(up, UART_IER, up->ier); |
| 299 | } | 279 | } |
| 300 | 280 | ||
| 301 | serial_omap_set_forceidle(up); | ||
| 302 | |||
| 303 | pm_runtime_mark_last_busy(up->dev); | 281 | pm_runtime_mark_last_busy(up->dev); |
| 304 | pm_runtime_put_autosuspend(up->dev); | 282 | pm_runtime_put_autosuspend(up->dev); |
| 305 | } | 283 | } |
| @@ -364,7 +342,6 @@ static void serial_omap_start_tx(struct uart_port *port) | |||
| 364 | 342 | ||
| 365 | pm_runtime_get_sync(up->dev); | 343 | pm_runtime_get_sync(up->dev); |
| 366 | serial_omap_enable_ier_thri(up); | 344 | serial_omap_enable_ier_thri(up); |
| 367 | serial_omap_set_noidle(up); | ||
| 368 | pm_runtime_mark_last_busy(up->dev); | 345 | pm_runtime_mark_last_busy(up->dev); |
| 369 | pm_runtime_put_autosuspend(up->dev); | 346 | pm_runtime_put_autosuspend(up->dev); |
| 370 | } | 347 | } |
diff --git a/drivers/tty/serial/samsung.c b/drivers/tty/serial/samsung.c index 074b9194144f..89429410a245 100644 --- a/drivers/tty/serial/samsung.c +++ b/drivers/tty/serial/samsung.c | |||
| @@ -1803,6 +1803,7 @@ static int __init s3c24xx_serial_modinit(void) | |||
| 1803 | 1803 | ||
| 1804 | static void __exit s3c24xx_serial_modexit(void) | 1804 | static void __exit s3c24xx_serial_modexit(void) |
| 1805 | { | 1805 | { |
| 1806 | platform_driver_unregister(&samsung_serial_driver); | ||
| 1806 | uart_unregister_driver(&s3c24xx_uart_drv); | 1807 | uart_unregister_driver(&s3c24xx_uart_drv); |
| 1807 | } | 1808 | } |
| 1808 | 1809 | ||
diff --git a/drivers/tty/vt/vt.c b/drivers/tty/vt/vt.c index fbd447b390f7..740202d8a5c4 100644 --- a/drivers/tty/vt/vt.c +++ b/drivers/tty/vt/vt.c | |||
| @@ -779,7 +779,6 @@ int vc_allocate(unsigned int currcons) /* return 0 on success */ | |||
| 779 | con_set_default_unimap(vc); | 779 | con_set_default_unimap(vc); |
| 780 | vc->vc_screenbuf = kmalloc(vc->vc_screenbuf_size, GFP_KERNEL); | 780 | vc->vc_screenbuf = kmalloc(vc->vc_screenbuf_size, GFP_KERNEL); |
| 781 | if (!vc->vc_screenbuf) { | 781 | if (!vc->vc_screenbuf) { |
| 782 | tty_port_destroy(&vc->port); | ||
| 783 | kfree(vc); | 782 | kfree(vc); |
| 784 | vc_cons[currcons].d = NULL; | 783 | vc_cons[currcons].d = NULL; |
| 785 | return -ENOMEM; | 784 | return -ENOMEM; |
| @@ -986,26 +985,25 @@ static int vt_resize(struct tty_struct *tty, struct winsize *ws) | |||
| 986 | return ret; | 985 | return ret; |
| 987 | } | 986 | } |
| 988 | 987 | ||
| 989 | void vc_deallocate(unsigned int currcons) | 988 | struct vc_data *vc_deallocate(unsigned int currcons) |
| 990 | { | 989 | { |
| 990 | struct vc_data *vc = NULL; | ||
| 991 | |||
| 991 | WARN_CONSOLE_UNLOCKED(); | 992 | WARN_CONSOLE_UNLOCKED(); |
| 992 | 993 | ||
| 993 | if (vc_cons_allocated(currcons)) { | 994 | if (vc_cons_allocated(currcons)) { |
| 994 | struct vc_data *vc = vc_cons[currcons].d; | 995 | struct vt_notifier_param param; |
| 995 | struct vt_notifier_param param = { .vc = vc }; | ||
| 996 | 996 | ||
| 997 | param.vc = vc = vc_cons[currcons].d; | ||
| 997 | atomic_notifier_call_chain(&vt_notifier_list, VT_DEALLOCATE, ¶m); | 998 | atomic_notifier_call_chain(&vt_notifier_list, VT_DEALLOCATE, ¶m); |
| 998 | vcs_remove_sysfs(currcons); | 999 | vcs_remove_sysfs(currcons); |
| 999 | vc->vc_sw->con_deinit(vc); | 1000 | vc->vc_sw->con_deinit(vc); |
| 1000 | put_pid(vc->vt_pid); | 1001 | put_pid(vc->vt_pid); |
| 1001 | module_put(vc->vc_sw->owner); | 1002 | module_put(vc->vc_sw->owner); |
| 1002 | kfree(vc->vc_screenbuf); | 1003 | kfree(vc->vc_screenbuf); |
| 1003 | if (currcons >= MIN_NR_CONSOLES) { | ||
| 1004 | tty_port_destroy(&vc->port); | ||
| 1005 | kfree(vc); | ||
| 1006 | } | ||
| 1007 | vc_cons[currcons].d = NULL; | 1004 | vc_cons[currcons].d = NULL; |
| 1008 | } | 1005 | } |
| 1006 | return vc; | ||
| 1009 | } | 1007 | } |
| 1010 | 1008 | ||
| 1011 | /* | 1009 | /* |
diff --git a/drivers/tty/vt/vt_ioctl.c b/drivers/tty/vt/vt_ioctl.c index 98ff1735eafc..fc2c06c66e89 100644 --- a/drivers/tty/vt/vt_ioctl.c +++ b/drivers/tty/vt/vt_ioctl.c | |||
| @@ -283,6 +283,51 @@ do_unimap_ioctl(int cmd, struct unimapdesc __user *user_ud, int perm, struct vc_ | |||
| 283 | return 0; | 283 | return 0; |
| 284 | } | 284 | } |
| 285 | 285 | ||
| 286 | /* deallocate a single console, if possible (leave 0) */ | ||
| 287 | static int vt_disallocate(unsigned int vc_num) | ||
| 288 | { | ||
| 289 | struct vc_data *vc = NULL; | ||
| 290 | int ret = 0; | ||
| 291 | |||
| 292 | if (!vc_num) | ||
| 293 | return 0; | ||
| 294 | |||
| 295 | console_lock(); | ||
| 296 | if (VT_BUSY(vc_num)) | ||
| 297 | ret = -EBUSY; | ||
| 298 | else | ||
| 299 | vc = vc_deallocate(vc_num); | ||
| 300 | console_unlock(); | ||
| 301 | |||
| 302 | if (vc && vc_num >= MIN_NR_CONSOLES) { | ||
| 303 | tty_port_destroy(&vc->port); | ||
| 304 | kfree(vc); | ||
| 305 | } | ||
| 306 | |||
| 307 | return ret; | ||
| 308 | } | ||
| 309 | |||
| 310 | /* deallocate all unused consoles, but leave 0 */ | ||
| 311 | static void vt_disallocate_all(void) | ||
| 312 | { | ||
| 313 | struct vc_data *vc[MAX_NR_CONSOLES]; | ||
| 314 | int i; | ||
| 315 | |||
| 316 | console_lock(); | ||
| 317 | for (i = 1; i < MAX_NR_CONSOLES; i++) | ||
| 318 | if (!VT_BUSY(i)) | ||
| 319 | vc[i] = vc_deallocate(i); | ||
| 320 | else | ||
| 321 | vc[i] = NULL; | ||
| 322 | console_unlock(); | ||
| 323 | |||
| 324 | for (i = 1; i < MAX_NR_CONSOLES; i++) { | ||
| 325 | if (vc[i] && i >= MIN_NR_CONSOLES) { | ||
| 326 | tty_port_destroy(&vc[i]->port); | ||
| 327 | kfree(vc[i]); | ||
| 328 | } | ||
| 329 | } | ||
| 330 | } | ||
| 286 | 331 | ||
| 287 | 332 | ||
| 288 | /* | 333 | /* |
| @@ -769,24 +814,10 @@ int vt_ioctl(struct tty_struct *tty, | |||
| 769 | ret = -ENXIO; | 814 | ret = -ENXIO; |
| 770 | break; | 815 | break; |
| 771 | } | 816 | } |
| 772 | if (arg == 0) { | 817 | if (arg == 0) |
| 773 | /* deallocate all unused consoles, but leave 0 */ | 818 | vt_disallocate_all(); |
| 774 | console_lock(); | 819 | else |
| 775 | for (i=1; i<MAX_NR_CONSOLES; i++) | 820 | ret = vt_disallocate(--arg); |
| 776 | if (! VT_BUSY(i)) | ||
| 777 | vc_deallocate(i); | ||
| 778 | console_unlock(); | ||
| 779 | } else { | ||
| 780 | /* deallocate a single console, if possible */ | ||
| 781 | arg--; | ||
| 782 | if (VT_BUSY(arg)) | ||
| 783 | ret = -EBUSY; | ||
| 784 | else if (arg) { /* leave 0 */ | ||
| 785 | console_lock(); | ||
| 786 | vc_deallocate(arg); | ||
| 787 | console_unlock(); | ||
| 788 | } | ||
| 789 | } | ||
| 790 | break; | 821 | break; |
| 791 | 822 | ||
| 792 | case VT_RESIZE: | 823 | case VT_RESIZE: |
diff --git a/drivers/uio/Kconfig b/drivers/uio/Kconfig index e92eeaf251fe..5295be0342c1 100644 --- a/drivers/uio/Kconfig +++ b/drivers/uio/Kconfig | |||
| @@ -45,6 +45,7 @@ config UIO_PDRV_GENIRQ | |||
| 45 | 45 | ||
| 46 | config UIO_DMEM_GENIRQ | 46 | config UIO_DMEM_GENIRQ |
| 47 | tristate "Userspace platform driver with generic irq and dynamic memory" | 47 | tristate "Userspace platform driver with generic irq and dynamic memory" |
| 48 | depends on HAS_DMA | ||
| 48 | help | 49 | help |
| 49 | Platform driver for Userspace I/O devices, including generic | 50 | Platform driver for Userspace I/O devices, including generic |
| 50 | interrupt handling code. Shared interrupts are not supported. | 51 | interrupt handling code. Shared interrupts are not supported. |
diff --git a/drivers/usb/atm/cxacru.c b/drivers/usb/atm/cxacru.c index b7eb86ad6bf2..8a7eb77233b4 100644 --- a/drivers/usb/atm/cxacru.c +++ b/drivers/usb/atm/cxacru.c | |||
| @@ -686,7 +686,8 @@ static int cxacru_cm_get_array(struct cxacru_data *instance, enum cxacru_cm_requ | |||
| 686 | { | 686 | { |
| 687 | int ret, len; | 687 | int ret, len; |
| 688 | __le32 *buf; | 688 | __le32 *buf; |
| 689 | int offb, offd; | 689 | int offb; |
| 690 | unsigned int offd; | ||
| 690 | const int stride = CMD_PACKET_SIZE / (4 * 2) - 1; | 691 | const int stride = CMD_PACKET_SIZE / (4 * 2) - 1; |
| 691 | int buflen = ((size - 1) / stride + 1 + size * 2) * 4; | 692 | int buflen = ((size - 1) / stride + 1 + size * 2) * 4; |
| 692 | 693 | ||
diff --git a/drivers/usb/chipidea/Kconfig b/drivers/usb/chipidea/Kconfig index 608a2aeb400c..b2df442eb3e5 100644 --- a/drivers/usb/chipidea/Kconfig +++ b/drivers/usb/chipidea/Kconfig | |||
| @@ -20,7 +20,7 @@ config USB_CHIPIDEA_UDC | |||
| 20 | config USB_CHIPIDEA_HOST | 20 | config USB_CHIPIDEA_HOST |
| 21 | bool "ChipIdea host controller" | 21 | bool "ChipIdea host controller" |
| 22 | depends on USB=y || USB=USB_CHIPIDEA | 22 | depends on USB=y || USB=USB_CHIPIDEA |
| 23 | depends on USB_EHCI_HCD | 23 | depends on USB_EHCI_HCD=y |
| 24 | select USB_EHCI_ROOT_HUB_TT | 24 | select USB_EHCI_ROOT_HUB_TT |
| 25 | help | 25 | help |
| 26 | Say Y here to enable host controller functionality of the | 26 | Say Y here to enable host controller functionality of the |
diff --git a/drivers/usb/chipidea/ci13xxx_imx.c b/drivers/usb/chipidea/ci13xxx_imx.c index 8faec9dbbb84..73f9d5f15adb 100644 --- a/drivers/usb/chipidea/ci13xxx_imx.c +++ b/drivers/usb/chipidea/ci13xxx_imx.c | |||
| @@ -173,17 +173,10 @@ static int ci13xxx_imx_probe(struct platform_device *pdev) | |||
| 173 | 173 | ||
| 174 | ci13xxx_imx_platdata.phy = data->phy; | 174 | ci13xxx_imx_platdata.phy = data->phy; |
| 175 | 175 | ||
| 176 | if (!pdev->dev.dma_mask) { | 176 | if (!pdev->dev.dma_mask) |
| 177 | pdev->dev.dma_mask = devm_kzalloc(&pdev->dev, | 177 | pdev->dev.dma_mask = &pdev->dev.coherent_dma_mask; |
| 178 | sizeof(*pdev->dev.dma_mask), GFP_KERNEL); | 178 | if (!pdev->dev.coherent_dma_mask) |
| 179 | if (!pdev->dev.dma_mask) { | 179 | pdev->dev.coherent_dma_mask = DMA_BIT_MASK(32); |
| 180 | ret = -ENOMEM; | ||
| 181 | dev_err(&pdev->dev, "Failed to alloc dma_mask!\n"); | ||
| 182 | goto err; | ||
| 183 | } | ||
| 184 | *pdev->dev.dma_mask = DMA_BIT_MASK(32); | ||
| 185 | dma_set_coherent_mask(&pdev->dev, *pdev->dev.dma_mask); | ||
| 186 | } | ||
| 187 | 180 | ||
| 188 | if (usbmisc_ops && usbmisc_ops->init) { | 181 | if (usbmisc_ops && usbmisc_ops->init) { |
| 189 | ret = usbmisc_ops->init(&pdev->dev); | 182 | ret = usbmisc_ops->init(&pdev->dev); |
diff --git a/drivers/usb/core/Kconfig b/drivers/usb/core/Kconfig index 8772b3659296..db535b0aa172 100644 --- a/drivers/usb/core/Kconfig +++ b/drivers/usb/core/Kconfig | |||
| @@ -51,7 +51,7 @@ config USB_DYNAMIC_MINORS | |||
| 51 | 51 | ||
| 52 | config USB_OTG | 52 | config USB_OTG |
| 53 | bool "OTG support" | 53 | bool "OTG support" |
| 54 | depends on USB_SUSPEND | 54 | depends on PM_RUNTIME |
| 55 | default n | 55 | default n |
| 56 | help | 56 | help |
| 57 | The most notable feature of USB OTG is support for a | 57 | The most notable feature of USB OTG is support for a |
diff --git a/drivers/usb/core/quirks.c b/drivers/usb/core/quirks.c index ab5638d9c707..a63598895077 100644 --- a/drivers/usb/core/quirks.c +++ b/drivers/usb/core/quirks.c | |||
| @@ -88,6 +88,9 @@ static const struct usb_device_id usb_quirk_list[] = { | |||
| 88 | /* Edirol SD-20 */ | 88 | /* Edirol SD-20 */ |
| 89 | { USB_DEVICE(0x0582, 0x0027), .driver_info = USB_QUIRK_RESET_RESUME }, | 89 | { USB_DEVICE(0x0582, 0x0027), .driver_info = USB_QUIRK_RESET_RESUME }, |
| 90 | 90 | ||
| 91 | /* Alcor Micro Corp. Hub */ | ||
| 92 | { USB_DEVICE(0x058f, 0x9254), .driver_info = USB_QUIRK_RESET_RESUME }, | ||
| 93 | |||
| 91 | /* appletouch */ | 94 | /* appletouch */ |
| 92 | { USB_DEVICE(0x05ac, 0x021a), .driver_info = USB_QUIRK_RESET_RESUME }, | 95 | { USB_DEVICE(0x05ac, 0x021a), .driver_info = USB_QUIRK_RESET_RESUME }, |
| 93 | 96 | ||
diff --git a/drivers/usb/dwc3/Kconfig b/drivers/usb/dwc3/Kconfig index ea5ee9c21c35..757aa18027d0 100644 --- a/drivers/usb/dwc3/Kconfig +++ b/drivers/usb/dwc3/Kconfig | |||
| @@ -19,21 +19,21 @@ choice | |||
| 19 | 19 | ||
| 20 | config USB_DWC3_HOST | 20 | config USB_DWC3_HOST |
| 21 | bool "Host only mode" | 21 | bool "Host only mode" |
| 22 | depends on USB | 22 | depends on USB=y || USB=USB_DWC3 |
| 23 | help | 23 | help |
| 24 | Select this when you want to use DWC3 in host mode only, | 24 | Select this when you want to use DWC3 in host mode only, |
| 25 | thereby the gadget feature will be regressed. | 25 | thereby the gadget feature will be regressed. |
| 26 | 26 | ||
| 27 | config USB_DWC3_GADGET | 27 | config USB_DWC3_GADGET |
| 28 | bool "Gadget only mode" | 28 | bool "Gadget only mode" |
| 29 | depends on USB_GADGET | 29 | depends on USB_GADGET=y || USB_GADGET=USB_DWC3 |
| 30 | help | 30 | help |
| 31 | Select this when you want to use DWC3 in gadget mode only, | 31 | Select this when you want to use DWC3 in gadget mode only, |
| 32 | thereby the host feature will be regressed. | 32 | thereby the host feature will be regressed. |
| 33 | 33 | ||
| 34 | config USB_DWC3_DUAL_ROLE | 34 | config USB_DWC3_DUAL_ROLE |
| 35 | bool "Dual Role mode" | 35 | bool "Dual Role mode" |
| 36 | depends on (USB && USB_GADGET) | 36 | depends on ((USB=y || USB=USB_DWC3) && (USB_GADGET=y || USB_GADGET=USB_DWC3)) |
| 37 | help | 37 | help |
| 38 | This is the default mode of working of DWC3 controller where | 38 | This is the default mode of working of DWC3 controller where |
| 39 | both host and gadget features are enabled. | 39 | both host and gadget features are enabled. |
diff --git a/drivers/usb/dwc3/dwc3-exynos.c b/drivers/usb/dwc3/dwc3-exynos.c index a8afe6e26621..929e7dd6e58b 100644 --- a/drivers/usb/dwc3/dwc3-exynos.c +++ b/drivers/usb/dwc3/dwc3-exynos.c | |||
| @@ -95,8 +95,6 @@ static int dwc3_exynos_remove_child(struct device *dev, void *unused) | |||
| 95 | return 0; | 95 | return 0; |
| 96 | } | 96 | } |
| 97 | 97 | ||
| 98 | static u64 dwc3_exynos_dma_mask = DMA_BIT_MASK(32); | ||
| 99 | |||
| 100 | static int dwc3_exynos_probe(struct platform_device *pdev) | 98 | static int dwc3_exynos_probe(struct platform_device *pdev) |
| 101 | { | 99 | { |
| 102 | struct dwc3_exynos *exynos; | 100 | struct dwc3_exynos *exynos; |
| @@ -118,7 +116,9 @@ static int dwc3_exynos_probe(struct platform_device *pdev) | |||
| 118 | * Once we move to full device tree support this will vanish off. | 116 | * Once we move to full device tree support this will vanish off. |
| 119 | */ | 117 | */ |
| 120 | if (!dev->dma_mask) | 118 | if (!dev->dma_mask) |
| 121 | dev->dma_mask = &dwc3_exynos_dma_mask; | 119 | dev->dma_mask = &dev->coherent_dma_mask; |
| 120 | if (!dev->coherent_dma_mask) | ||
| 121 | dev->coherent_dma_mask = DMA_BIT_MASK(32); | ||
| 122 | 122 | ||
| 123 | platform_set_drvdata(pdev, exynos); | 123 | platform_set_drvdata(pdev, exynos); |
| 124 | 124 | ||
diff --git a/drivers/usb/gadget/Kconfig b/drivers/usb/gadget/Kconfig index 83300d94a893..f41aa0d0c414 100644 --- a/drivers/usb/gadget/Kconfig +++ b/drivers/usb/gadget/Kconfig | |||
| @@ -146,7 +146,6 @@ config USB_LPC32XX | |||
| 146 | depends on ARCH_LPC32XX | 146 | depends on ARCH_LPC32XX |
| 147 | depends on USB_PHY | 147 | depends on USB_PHY |
| 148 | select USB_ISP1301 | 148 | select USB_ISP1301 |
| 149 | select USB_OTG_UTILS | ||
| 150 | help | 149 | help |
| 151 | This option selects the USB device controller in the LPC32xx SoC. | 150 | This option selects the USB device controller in the LPC32xx SoC. |
| 152 | 151 | ||
diff --git a/drivers/usb/gadget/atmel_usba_udc.c b/drivers/usb/gadget/atmel_usba_udc.c index f2a970f75bfa..5a5128a226f7 100644 --- a/drivers/usb/gadget/atmel_usba_udc.c +++ b/drivers/usb/gadget/atmel_usba_udc.c | |||
| @@ -1992,8 +1992,6 @@ err_map_regs: | |||
| 1992 | err_get_hclk: | 1992 | err_get_hclk: |
| 1993 | clk_put(pclk); | 1993 | clk_put(pclk); |
| 1994 | 1994 | ||
| 1995 | platform_set_drvdata(pdev, NULL); | ||
| 1996 | |||
| 1997 | return ret; | 1995 | return ret; |
| 1998 | } | 1996 | } |
| 1999 | 1997 | ||
diff --git a/drivers/usb/gadget/bcm63xx_udc.c b/drivers/usb/gadget/bcm63xx_udc.c index 792297798147..fd24cb4540a4 100644 --- a/drivers/usb/gadget/bcm63xx_udc.c +++ b/drivers/usb/gadget/bcm63xx_udc.c | |||
| @@ -2410,7 +2410,6 @@ static int bcm63xx_udc_remove(struct platform_device *pdev) | |||
| 2410 | usb_del_gadget_udc(&udc->gadget); | 2410 | usb_del_gadget_udc(&udc->gadget); |
| 2411 | BUG_ON(udc->driver); | 2411 | BUG_ON(udc->driver); |
| 2412 | 2412 | ||
| 2413 | platform_set_drvdata(pdev, NULL); | ||
| 2414 | bcm63xx_uninit_udc_hw(udc); | 2413 | bcm63xx_uninit_udc_hw(udc); |
| 2415 | 2414 | ||
| 2416 | return 0; | 2415 | return 0; |
diff --git a/drivers/usb/gadget/configfs.c b/drivers/usb/gadget/configfs.c index 3d5cfc9c2c78..80e7f75a56c7 100644 --- a/drivers/usb/gadget/configfs.c +++ b/drivers/usb/gadget/configfs.c | |||
| @@ -821,8 +821,10 @@ static int configfs_composite_bind(struct usb_gadget *gadget, | |||
| 821 | gi->gstrings[i] = NULL; | 821 | gi->gstrings[i] = NULL; |
| 822 | s = usb_gstrings_attach(&gi->cdev, gi->gstrings, | 822 | s = usb_gstrings_attach(&gi->cdev, gi->gstrings, |
| 823 | USB_GADGET_FIRST_AVAIL_IDX); | 823 | USB_GADGET_FIRST_AVAIL_IDX); |
| 824 | if (IS_ERR(s)) | 824 | if (IS_ERR(s)) { |
| 825 | ret = PTR_ERR(s); | ||
| 825 | goto err_comp_cleanup; | 826 | goto err_comp_cleanup; |
| 827 | } | ||
| 826 | 828 | ||
| 827 | gi->cdev.desc.iManufacturer = s[USB_GADGET_MANUFACTURER_IDX].id; | 829 | gi->cdev.desc.iManufacturer = s[USB_GADGET_MANUFACTURER_IDX].id; |
| 828 | gi->cdev.desc.iProduct = s[USB_GADGET_PRODUCT_IDX].id; | 830 | gi->cdev.desc.iProduct = s[USB_GADGET_PRODUCT_IDX].id; |
| @@ -847,8 +849,10 @@ static int configfs_composite_bind(struct usb_gadget *gadget, | |||
| 847 | } | 849 | } |
| 848 | cfg->gstrings[i] = NULL; | 850 | cfg->gstrings[i] = NULL; |
| 849 | s = usb_gstrings_attach(&gi->cdev, cfg->gstrings, 1); | 851 | s = usb_gstrings_attach(&gi->cdev, cfg->gstrings, 1); |
| 850 | if (IS_ERR(s)) | 852 | if (IS_ERR(s)) { |
| 853 | ret = PTR_ERR(s); | ||
| 851 | goto err_comp_cleanup; | 854 | goto err_comp_cleanup; |
| 855 | } | ||
| 852 | c->iConfiguration = s[0].id; | 856 | c->iConfiguration = s[0].id; |
| 853 | } | 857 | } |
| 854 | 858 | ||
diff --git a/drivers/usb/gadget/dummy_hcd.c b/drivers/usb/gadget/dummy_hcd.c index a792e322f4f1..c588e8e486e5 100644 --- a/drivers/usb/gadget/dummy_hcd.c +++ b/drivers/usb/gadget/dummy_hcd.c | |||
| @@ -1001,7 +1001,6 @@ static int dummy_udc_remove(struct platform_device *pdev) | |||
| 1001 | struct dummy *dum = platform_get_drvdata(pdev); | 1001 | struct dummy *dum = platform_get_drvdata(pdev); |
| 1002 | 1002 | ||
| 1003 | usb_del_gadget_udc(&dum->gadget); | 1003 | usb_del_gadget_udc(&dum->gadget); |
| 1004 | platform_set_drvdata(pdev, NULL); | ||
| 1005 | device_remove_file(&dum->gadget.dev, &dev_attr_function); | 1004 | device_remove_file(&dum->gadget.dev, &dev_attr_function); |
| 1006 | return 0; | 1005 | return 0; |
| 1007 | } | 1006 | } |
| @@ -2661,8 +2660,10 @@ static int __init init(void) | |||
| 2661 | } | 2660 | } |
| 2662 | for (i = 0; i < mod_data.num; i++) { | 2661 | for (i = 0; i < mod_data.num; i++) { |
| 2663 | dum[i] = kzalloc(sizeof(struct dummy), GFP_KERNEL); | 2662 | dum[i] = kzalloc(sizeof(struct dummy), GFP_KERNEL); |
| 2664 | if (!dum[i]) | 2663 | if (!dum[i]) { |
| 2664 | retval = -ENOMEM; | ||
| 2665 | goto err_add_pdata; | 2665 | goto err_add_pdata; |
| 2666 | } | ||
| 2666 | retval = platform_device_add_data(the_hcd_pdev[i], &dum[i], | 2667 | retval = platform_device_add_data(the_hcd_pdev[i], &dum[i], |
| 2667 | sizeof(void *)); | 2668 | sizeof(void *)); |
| 2668 | if (retval) | 2669 | if (retval) |
diff --git a/drivers/usb/gadget/f_ecm.c b/drivers/usb/gadget/f_ecm.c index d893d6929079..abf8a31ae146 100644 --- a/drivers/usb/gadget/f_ecm.c +++ b/drivers/usb/gadget/f_ecm.c | |||
| @@ -816,6 +816,7 @@ ecm_unbind(struct usb_configuration *c, struct usb_function *f) | |||
| 816 | * @c: the configuration to support the network link | 816 | * @c: the configuration to support the network link |
| 817 | * @ethaddr: a buffer in which the ethernet address of the host side | 817 | * @ethaddr: a buffer in which the ethernet address of the host side |
| 818 | * side of the link was recorded | 818 | * side of the link was recorded |
| 819 | * @dev: eth_dev structure | ||
| 819 | * Context: single threaded during gadget setup | 820 | * Context: single threaded during gadget setup |
| 820 | * | 821 | * |
| 821 | * Returns zero on success, else negative errno. | 822 | * Returns zero on success, else negative errno. |
diff --git a/drivers/usb/gadget/f_subset.c b/drivers/usb/gadget/f_subset.c index 185d6f5e4e4d..7be04b342494 100644 --- a/drivers/usb/gadget/f_subset.c +++ b/drivers/usb/gadget/f_subset.c | |||
| @@ -373,6 +373,7 @@ geth_unbind(struct usb_configuration *c, struct usb_function *f) | |||
| 373 | * @c: the configuration to support the network link | 373 | * @c: the configuration to support the network link |
| 374 | * @ethaddr: a buffer in which the ethernet address of the host side | 374 | * @ethaddr: a buffer in which the ethernet address of the host side |
| 375 | * side of the link was recorded | 375 | * side of the link was recorded |
| 376 | * @dev: eth_dev structure | ||
| 376 | * Context: single threaded during gadget setup | 377 | * Context: single threaded during gadget setup |
| 377 | * | 378 | * |
| 378 | * Returns zero on success, else negative errno. | 379 | * Returns zero on success, else negative errno. |
diff --git a/drivers/usb/gadget/f_uac2.c b/drivers/usb/gadget/f_uac2.c index c7468b6c07b0..03c1fb686644 100644 --- a/drivers/usb/gadget/f_uac2.c +++ b/drivers/usb/gadget/f_uac2.c | |||
| @@ -456,8 +456,6 @@ static int snd_uac2_remove(struct platform_device *pdev) | |||
| 456 | { | 456 | { |
| 457 | struct snd_card *card = platform_get_drvdata(pdev); | 457 | struct snd_card *card = platform_get_drvdata(pdev); |
| 458 | 458 | ||
| 459 | platform_set_drvdata(pdev, NULL); | ||
| 460 | |||
| 461 | if (card) | 459 | if (card) |
| 462 | return snd_card_free(card); | 460 | return snd_card_free(card); |
| 463 | 461 | ||
diff --git a/drivers/usb/gadget/fusb300_udc.c b/drivers/usb/gadget/fusb300_udc.c index cec8871b77f9..b8632d40f8bf 100644 --- a/drivers/usb/gadget/fusb300_udc.c +++ b/drivers/usb/gadget/fusb300_udc.c | |||
| @@ -1461,8 +1461,10 @@ static int __init fusb300_probe(struct platform_device *pdev) | |||
| 1461 | 1461 | ||
| 1462 | fusb300->ep0_req = fusb300_alloc_request(&fusb300->ep[0]->ep, | 1462 | fusb300->ep0_req = fusb300_alloc_request(&fusb300->ep[0]->ep, |
| 1463 | GFP_KERNEL); | 1463 | GFP_KERNEL); |
| 1464 | if (fusb300->ep0_req == NULL) | 1464 | if (fusb300->ep0_req == NULL) { |
| 1465 | ret = -ENOMEM; | ||
| 1465 | goto clean_up3; | 1466 | goto clean_up3; |
| 1467 | } | ||
| 1466 | 1468 | ||
| 1467 | init_controller(fusb300); | 1469 | init_controller(fusb300); |
| 1468 | ret = usb_add_gadget_udc(&pdev->dev, &fusb300->gadget); | 1470 | ret = usb_add_gadget_udc(&pdev->dev, &fusb300->gadget); |
diff --git a/drivers/usb/gadget/imx_udc.c b/drivers/usb/gadget/imx_udc.c index b5cebd6b0d7a..9b2d24e4c95f 100644 --- a/drivers/usb/gadget/imx_udc.c +++ b/drivers/usb/gadget/imx_udc.c | |||
| @@ -1511,8 +1511,6 @@ static int __exit imx_udc_remove(struct platform_device *pdev) | |||
| 1511 | if (pdata->exit) | 1511 | if (pdata->exit) |
| 1512 | pdata->exit(&pdev->dev); | 1512 | pdata->exit(&pdev->dev); |
| 1513 | 1513 | ||
| 1514 | platform_set_drvdata(pdev, NULL); | ||
| 1515 | |||
| 1516 | return 0; | 1514 | return 0; |
| 1517 | } | 1515 | } |
| 1518 | 1516 | ||
diff --git a/drivers/usb/gadget/m66592-udc.c b/drivers/usb/gadget/m66592-udc.c index 866ef0999247..51cfe72da5bb 100644 --- a/drivers/usb/gadget/m66592-udc.c +++ b/drivers/usb/gadget/m66592-udc.c | |||
| @@ -1660,8 +1660,10 @@ static int __init m66592_probe(struct platform_device *pdev) | |||
| 1660 | m66592->epaddr2ep[0] = &m66592->ep[0]; | 1660 | m66592->epaddr2ep[0] = &m66592->ep[0]; |
| 1661 | 1661 | ||
| 1662 | m66592->ep0_req = m66592_alloc_request(&m66592->ep[0].ep, GFP_KERNEL); | 1662 | m66592->ep0_req = m66592_alloc_request(&m66592->ep[0].ep, GFP_KERNEL); |
| 1663 | if (m66592->ep0_req == NULL) | 1663 | if (m66592->ep0_req == NULL) { |
| 1664 | ret = -ENOMEM; | ||
| 1664 | goto clean_up3; | 1665 | goto clean_up3; |
| 1666 | } | ||
| 1665 | m66592->ep0_req->complete = nop_completion; | 1667 | m66592->ep0_req->complete = nop_completion; |
| 1666 | 1668 | ||
| 1667 | init_controller(m66592); | 1669 | init_controller(m66592); |
diff --git a/drivers/usb/gadget/pxa25x_udc.c b/drivers/usb/gadget/pxa25x_udc.c index ef47495dec8f..95c531d5aa4f 100644 --- a/drivers/usb/gadget/pxa25x_udc.c +++ b/drivers/usb/gadget/pxa25x_udc.c | |||
| @@ -2236,7 +2236,6 @@ static int __exit pxa25x_udc_remove(struct platform_device *pdev) | |||
| 2236 | dev->transceiver = NULL; | 2236 | dev->transceiver = NULL; |
| 2237 | } | 2237 | } |
| 2238 | 2238 | ||
| 2239 | platform_set_drvdata(pdev, NULL); | ||
| 2240 | the_controller = NULL; | 2239 | the_controller = NULL; |
| 2241 | return 0; | 2240 | return 0; |
| 2242 | } | 2241 | } |
diff --git a/drivers/usb/gadget/r8a66597-udc.c b/drivers/usb/gadget/r8a66597-udc.c index 0b742d171843..7ff7d9cf2061 100644 --- a/drivers/usb/gadget/r8a66597-udc.c +++ b/drivers/usb/gadget/r8a66597-udc.c | |||
| @@ -1977,8 +1977,10 @@ static int __init r8a66597_probe(struct platform_device *pdev) | |||
| 1977 | 1977 | ||
| 1978 | r8a66597->ep0_req = r8a66597_alloc_request(&r8a66597->ep[0].ep, | 1978 | r8a66597->ep0_req = r8a66597_alloc_request(&r8a66597->ep[0].ep, |
| 1979 | GFP_KERNEL); | 1979 | GFP_KERNEL); |
| 1980 | if (r8a66597->ep0_req == NULL) | 1980 | if (r8a66597->ep0_req == NULL) { |
| 1981 | ret = -ENOMEM; | ||
| 1981 | goto clean_up3; | 1982 | goto clean_up3; |
| 1983 | } | ||
| 1982 | r8a66597->ep0_req->complete = nop_completion; | 1984 | r8a66597->ep0_req->complete = nop_completion; |
| 1983 | 1985 | ||
| 1984 | ret = usb_add_gadget_udc(&pdev->dev, &r8a66597->gadget); | 1986 | ret = usb_add_gadget_udc(&pdev->dev, &r8a66597->gadget); |
diff --git a/drivers/usb/gadget/s3c-hsotg.c b/drivers/usb/gadget/s3c-hsotg.c index a3cdc32115d5..af22f24046b2 100644 --- a/drivers/usb/gadget/s3c-hsotg.c +++ b/drivers/usb/gadget/s3c-hsotg.c | |||
| @@ -437,7 +437,7 @@ static void s3c_hsotg_unmap_dma(struct s3c_hsotg *hsotg, | |||
| 437 | if (hs_req->req.length == 0) | 437 | if (hs_req->req.length == 0) |
| 438 | return; | 438 | return; |
| 439 | 439 | ||
| 440 | usb_gadget_unmap_request(&hsotg->gadget, hs_req, hs_ep->dir_in); | 440 | usb_gadget_unmap_request(&hsotg->gadget, req, hs_ep->dir_in); |
| 441 | } | 441 | } |
| 442 | 442 | ||
| 443 | /** | 443 | /** |
diff --git a/drivers/usb/gadget/s3c2410_udc.c b/drivers/usb/gadget/s3c2410_udc.c index d0e75e1b3ccb..09c4f70c93c4 100644 --- a/drivers/usb/gadget/s3c2410_udc.c +++ b/drivers/usb/gadget/s3c2410_udc.c | |||
| @@ -1851,6 +1851,7 @@ static int s3c2410_udc_probe(struct platform_device *pdev) | |||
| 1851 | irq = gpio_to_irq(udc_info->vbus_pin); | 1851 | irq = gpio_to_irq(udc_info->vbus_pin); |
| 1852 | if (irq < 0) { | 1852 | if (irq < 0) { |
| 1853 | dev_err(dev, "no irq for gpio vbus pin\n"); | 1853 | dev_err(dev, "no irq for gpio vbus pin\n"); |
| 1854 | retval = irq; | ||
| 1854 | goto err_gpio_claim; | 1855 | goto err_gpio_claim; |
| 1855 | } | 1856 | } |
| 1856 | 1857 | ||
| @@ -1948,8 +1949,6 @@ static int s3c2410_udc_remove(struct platform_device *pdev) | |||
| 1948 | iounmap(base_addr); | 1949 | iounmap(base_addr); |
| 1949 | release_mem_region(rsrc_start, rsrc_len); | 1950 | release_mem_region(rsrc_start, rsrc_len); |
| 1950 | 1951 | ||
| 1951 | platform_set_drvdata(pdev, NULL); | ||
| 1952 | |||
| 1953 | if (!IS_ERR(udc_clock) && udc_clock != NULL) { | 1952 | if (!IS_ERR(udc_clock) && udc_clock != NULL) { |
| 1954 | clk_disable(udc_clock); | 1953 | clk_disable(udc_clock); |
| 1955 | clk_put(udc_clock); | 1954 | clk_put(udc_clock); |
diff --git a/drivers/usb/gadget/zero.c b/drivers/usb/gadget/zero.c index 2cd6262e8b71..0deb9d6cde26 100644 --- a/drivers/usb/gadget/zero.c +++ b/drivers/usb/gadget/zero.c | |||
| @@ -284,12 +284,16 @@ static int __init zero_bind(struct usb_composite_dev *cdev) | |||
| 284 | ss_opts->bulk_buflen = gzero_options.bulk_buflen; | 284 | ss_opts->bulk_buflen = gzero_options.bulk_buflen; |
| 285 | 285 | ||
| 286 | func_ss = usb_get_function(func_inst_ss); | 286 | func_ss = usb_get_function(func_inst_ss); |
| 287 | if (IS_ERR(func_ss)) | 287 | if (IS_ERR(func_ss)) { |
| 288 | status = PTR_ERR(func_ss); | ||
| 288 | goto err_put_func_inst_ss; | 289 | goto err_put_func_inst_ss; |
| 290 | } | ||
| 289 | 291 | ||
| 290 | func_inst_lb = usb_get_function_instance("Loopback"); | 292 | func_inst_lb = usb_get_function_instance("Loopback"); |
| 291 | if (IS_ERR(func_inst_lb)) | 293 | if (IS_ERR(func_inst_lb)) { |
| 294 | status = PTR_ERR(func_inst_lb); | ||
| 292 | goto err_put_func_ss; | 295 | goto err_put_func_ss; |
| 296 | } | ||
| 293 | 297 | ||
| 294 | lb_opts = container_of(func_inst_lb, struct f_lb_opts, func_inst); | 298 | lb_opts = container_of(func_inst_lb, struct f_lb_opts, func_inst); |
| 295 | lb_opts->bulk_buflen = gzero_options.bulk_buflen; | 299 | lb_opts->bulk_buflen = gzero_options.bulk_buflen; |
diff --git a/drivers/usb/host/Kconfig b/drivers/usb/host/Kconfig index de94f2699063..344d5e2f87d7 100644 --- a/drivers/usb/host/Kconfig +++ b/drivers/usb/host/Kconfig | |||
| @@ -507,7 +507,7 @@ endif # USB_OHCI_HCD | |||
| 507 | 507 | ||
| 508 | config USB_UHCI_HCD | 508 | config USB_UHCI_HCD |
| 509 | tristate "UHCI HCD (most Intel and VIA) support" | 509 | tristate "UHCI HCD (most Intel and VIA) support" |
| 510 | depends on PCI || SPARC_LEON || ARCH_VT8500 | 510 | depends on PCI || USB_UHCI_SUPPORT_NON_PCI_HC |
| 511 | ---help--- | 511 | ---help--- |
| 512 | The Universal Host Controller Interface is a standard by Intel for | 512 | The Universal Host Controller Interface is a standard by Intel for |
| 513 | accessing the USB hardware in the PC (which is also called the USB | 513 | accessing the USB hardware in the PC (which is also called the USB |
| @@ -524,26 +524,19 @@ config USB_UHCI_HCD | |||
| 524 | 524 | ||
| 525 | config USB_UHCI_SUPPORT_NON_PCI_HC | 525 | config USB_UHCI_SUPPORT_NON_PCI_HC |
| 526 | bool | 526 | bool |
| 527 | depends on USB_UHCI_HCD | 527 | default y if (SPARC_LEON || USB_UHCI_PLATFORM) |
| 528 | default y if (SPARC_LEON || ARCH_VT8500) | ||
| 529 | 528 | ||
| 530 | config USB_UHCI_PLATFORM | 529 | config USB_UHCI_PLATFORM |
| 531 | bool "Generic UHCI Platform Driver support" | 530 | bool |
| 532 | depends on USB_UHCI_SUPPORT_NON_PCI_HC | ||
| 533 | default y if ARCH_VT8500 | 531 | default y if ARCH_VT8500 |
| 534 | ---help--- | ||
| 535 | Enable support for generic UHCI platform devices that require no | ||
| 536 | additional configuration. | ||
| 537 | 532 | ||
| 538 | config USB_UHCI_BIG_ENDIAN_MMIO | 533 | config USB_UHCI_BIG_ENDIAN_MMIO |
| 539 | bool | 534 | bool |
| 540 | depends on USB_UHCI_SUPPORT_NON_PCI_HC && SPARC_LEON | 535 | default y if SPARC_LEON |
| 541 | default y | ||
| 542 | 536 | ||
| 543 | config USB_UHCI_BIG_ENDIAN_DESC | 537 | config USB_UHCI_BIG_ENDIAN_DESC |
| 544 | bool | 538 | bool |
| 545 | depends on USB_UHCI_SUPPORT_NON_PCI_HC && SPARC_LEON | 539 | default y if SPARC_LEON |
| 546 | default y | ||
| 547 | 540 | ||
| 548 | config USB_FHCI_HCD | 541 | config USB_FHCI_HCD |
| 549 | tristate "Freescale QE USB Host Controller support" | 542 | tristate "Freescale QE USB Host Controller support" |
diff --git a/drivers/usb/host/ehci-atmel.c b/drivers/usb/host/ehci-atmel.c index 66420097c242..02f4611faa62 100644 --- a/drivers/usb/host/ehci-atmel.c +++ b/drivers/usb/host/ehci-atmel.c | |||
| @@ -63,8 +63,6 @@ static void atmel_stop_ehci(struct platform_device *pdev) | |||
| 63 | 63 | ||
| 64 | /*-------------------------------------------------------------------------*/ | 64 | /*-------------------------------------------------------------------------*/ |
| 65 | 65 | ||
| 66 | static u64 at91_ehci_dma_mask = DMA_BIT_MASK(32); | ||
| 67 | |||
| 68 | static int ehci_atmel_drv_probe(struct platform_device *pdev) | 66 | static int ehci_atmel_drv_probe(struct platform_device *pdev) |
| 69 | { | 67 | { |
| 70 | struct usb_hcd *hcd; | 68 | struct usb_hcd *hcd; |
| @@ -93,7 +91,9 @@ static int ehci_atmel_drv_probe(struct platform_device *pdev) | |||
| 93 | * Once we have dma capability bindings this can go away. | 91 | * Once we have dma capability bindings this can go away. |
| 94 | */ | 92 | */ |
| 95 | if (!pdev->dev.dma_mask) | 93 | if (!pdev->dev.dma_mask) |
| 96 | pdev->dev.dma_mask = &at91_ehci_dma_mask; | 94 | pdev->dev.dma_mask = &pdev->dev.coherent_dma_mask; |
| 95 | if (!pdev->dev.coherent_dma_mask) | ||
| 96 | pdev->dev.coherent_dma_mask = DMA_BIT_MASK(32); | ||
| 97 | 97 | ||
| 98 | hcd = usb_create_hcd(driver, &pdev->dev, dev_name(&pdev->dev)); | 98 | hcd = usb_create_hcd(driver, &pdev->dev, dev_name(&pdev->dev)); |
| 99 | if (!hcd) { | 99 | if (!hcd) { |
diff --git a/drivers/usb/host/ehci-hcd.c b/drivers/usb/host/ehci-hcd.c index 312fc10da3c7..246e124e6ac5 100644 --- a/drivers/usb/host/ehci-hcd.c +++ b/drivers/usb/host/ehci-hcd.c | |||
| @@ -1286,23 +1286,6 @@ MODULE_LICENSE ("GPL"); | |||
| 1286 | #define PLATFORM_DRIVER ehci_hcd_sead3_driver | 1286 | #define PLATFORM_DRIVER ehci_hcd_sead3_driver |
| 1287 | #endif | 1287 | #endif |
| 1288 | 1288 | ||
| 1289 | #if !IS_ENABLED(CONFIG_USB_EHCI_PCI) && \ | ||
| 1290 | !IS_ENABLED(CONFIG_USB_EHCI_HCD_PLATFORM) && \ | ||
| 1291 | !IS_ENABLED(CONFIG_USB_CHIPIDEA_HOST) && \ | ||
| 1292 | !IS_ENABLED(CONFIG_USB_EHCI_MXC) && \ | ||
| 1293 | !IS_ENABLED(CONFIG_USB_EHCI_HCD_OMAP) && \ | ||
| 1294 | !IS_ENABLED(CONFIG_USB_EHCI_HCD_ORION) && \ | ||
| 1295 | !IS_ENABLED(CONFIG_USB_EHCI_HCD_SPEAR) && \ | ||
| 1296 | !IS_ENABLED(CONFIG_USB_EHCI_S5P) && \ | ||
| 1297 | !IS_ENABLED(CONFIG_USB_EHCI_HCD_AT91) && \ | ||
| 1298 | !IS_ENABLED(CONFIG_USB_EHCI_MSM) && \ | ||
| 1299 | !defined(PLATFORM_DRIVER) && \ | ||
| 1300 | !defined(PS3_SYSTEM_BUS_DRIVER) && \ | ||
| 1301 | !defined(OF_PLATFORM_DRIVER) && \ | ||
| 1302 | !defined(XILINX_OF_PLATFORM_DRIVER) | ||
| 1303 | #error "missing bus glue for ehci-hcd" | ||
| 1304 | #endif | ||
| 1305 | |||
| 1306 | static int __init ehci_hcd_init(void) | 1289 | static int __init ehci_hcd_init(void) |
| 1307 | { | 1290 | { |
| 1308 | int retval = 0; | 1291 | int retval = 0; |
diff --git a/drivers/usb/host/ehci-omap.c b/drivers/usb/host/ehci-omap.c index 3d1491b5f360..16d7150e8557 100644 --- a/drivers/usb/host/ehci-omap.c +++ b/drivers/usb/host/ehci-omap.c | |||
| @@ -90,8 +90,6 @@ static const struct ehci_driver_overrides ehci_omap_overrides __initdata = { | |||
| 90 | .extra_priv_size = sizeof(struct omap_hcd), | 90 | .extra_priv_size = sizeof(struct omap_hcd), |
| 91 | }; | 91 | }; |
| 92 | 92 | ||
| 93 | static u64 omap_ehci_dma_mask = DMA_BIT_MASK(32); | ||
| 94 | |||
| 95 | /** | 93 | /** |
| 96 | * ehci_hcd_omap_probe - initialize TI-based HCDs | 94 | * ehci_hcd_omap_probe - initialize TI-based HCDs |
| 97 | * | 95 | * |
| @@ -146,8 +144,10 @@ static int ehci_hcd_omap_probe(struct platform_device *pdev) | |||
| 146 | * Since shared usb code relies on it, set it here for now. | 144 | * Since shared usb code relies on it, set it here for now. |
| 147 | * Once we have dma capability bindings this can go away. | 145 | * Once we have dma capability bindings this can go away. |
| 148 | */ | 146 | */ |
| 149 | if (!pdev->dev.dma_mask) | 147 | if (!dev->dma_mask) |
| 150 | pdev->dev.dma_mask = &omap_ehci_dma_mask; | 148 | dev->dma_mask = &dev->coherent_dma_mask; |
| 149 | if (!dev->coherent_dma_mask) | ||
| 150 | dev->coherent_dma_mask = DMA_BIT_MASK(32); | ||
| 151 | 151 | ||
| 152 | hcd = usb_create_hcd(&ehci_omap_hc_driver, dev, | 152 | hcd = usb_create_hcd(&ehci_omap_hc_driver, dev, |
| 153 | dev_name(dev)); | 153 | dev_name(dev)); |
diff --git a/drivers/usb/host/ehci-orion.c b/drivers/usb/host/ehci-orion.c index 54c579485150..efbc588b48c5 100644 --- a/drivers/usb/host/ehci-orion.c +++ b/drivers/usb/host/ehci-orion.c | |||
| @@ -137,8 +137,6 @@ ehci_orion_conf_mbus_windows(struct usb_hcd *hcd, | |||
| 137 | } | 137 | } |
| 138 | } | 138 | } |
| 139 | 139 | ||
| 140 | static u64 ehci_orion_dma_mask = DMA_BIT_MASK(32); | ||
| 141 | |||
| 142 | static int ehci_orion_drv_probe(struct platform_device *pdev) | 140 | static int ehci_orion_drv_probe(struct platform_device *pdev) |
| 143 | { | 141 | { |
| 144 | struct orion_ehci_data *pd = pdev->dev.platform_data; | 142 | struct orion_ehci_data *pd = pdev->dev.platform_data; |
| @@ -183,7 +181,9 @@ static int ehci_orion_drv_probe(struct platform_device *pdev) | |||
| 183 | * now. Once we have dma capability bindings this can go away. | 181 | * now. Once we have dma capability bindings this can go away. |
| 184 | */ | 182 | */ |
| 185 | if (!pdev->dev.dma_mask) | 183 | if (!pdev->dev.dma_mask) |
| 186 | pdev->dev.dma_mask = &ehci_orion_dma_mask; | 184 | pdev->dev.dma_mask = &pdev->dev.coherent_dma_mask; |
| 185 | if (!pdev->dev.coherent_dma_mask) | ||
| 186 | pdev->dev.coherent_dma_mask = DMA_BIT_MASK(32); | ||
| 187 | 187 | ||
| 188 | if (!request_mem_region(res->start, resource_size(res), | 188 | if (!request_mem_region(res->start, resource_size(res), |
| 189 | ehci_orion_hc_driver.description)) { | 189 | ehci_orion_hc_driver.description)) { |
diff --git a/drivers/usb/host/ehci-s5p.c b/drivers/usb/host/ehci-s5p.c index 635775278c7f..379037f51a2f 100644 --- a/drivers/usb/host/ehci-s5p.c +++ b/drivers/usb/host/ehci-s5p.c | |||
| @@ -71,8 +71,6 @@ static void s5p_setup_vbus_gpio(struct platform_device *pdev) | |||
| 71 | dev_err(dev, "can't request ehci vbus gpio %d", gpio); | 71 | dev_err(dev, "can't request ehci vbus gpio %d", gpio); |
| 72 | } | 72 | } |
| 73 | 73 | ||
| 74 | static u64 ehci_s5p_dma_mask = DMA_BIT_MASK(32); | ||
| 75 | |||
| 76 | static int s5p_ehci_probe(struct platform_device *pdev) | 74 | static int s5p_ehci_probe(struct platform_device *pdev) |
| 77 | { | 75 | { |
| 78 | struct s5p_ehci_platdata *pdata = pdev->dev.platform_data; | 76 | struct s5p_ehci_platdata *pdata = pdev->dev.platform_data; |
| @@ -90,7 +88,7 @@ static int s5p_ehci_probe(struct platform_device *pdev) | |||
| 90 | * Once we move to full device tree support this will vanish off. | 88 | * Once we move to full device tree support this will vanish off. |
| 91 | */ | 89 | */ |
| 92 | if (!pdev->dev.dma_mask) | 90 | if (!pdev->dev.dma_mask) |
| 93 | pdev->dev.dma_mask = &ehci_s5p_dma_mask; | 91 | pdev->dev.dma_mask = &pdev->dev.coherent_dma_mask; |
| 94 | if (!pdev->dev.coherent_dma_mask) | 92 | if (!pdev->dev.coherent_dma_mask) |
| 95 | pdev->dev.coherent_dma_mask = DMA_BIT_MASK(32); | 93 | pdev->dev.coherent_dma_mask = DMA_BIT_MASK(32); |
| 96 | 94 | ||
| @@ -107,6 +105,7 @@ static int s5p_ehci_probe(struct platform_device *pdev) | |||
| 107 | if (IS_ERR(phy)) { | 105 | if (IS_ERR(phy)) { |
| 108 | /* Fallback to pdata */ | 106 | /* Fallback to pdata */ |
| 109 | if (!pdata) { | 107 | if (!pdata) { |
| 108 | usb_put_hcd(hcd); | ||
| 110 | dev_warn(&pdev->dev, "no platform data or transceiver defined\n"); | 109 | dev_warn(&pdev->dev, "no platform data or transceiver defined\n"); |
| 111 | return -EPROBE_DEFER; | 110 | return -EPROBE_DEFER; |
| 112 | } else { | 111 | } else { |
diff --git a/drivers/usb/host/ehci-spear.c b/drivers/usb/host/ehci-spear.c index 61ecfb3d52f5..bd3e5cbc6240 100644 --- a/drivers/usb/host/ehci-spear.c +++ b/drivers/usb/host/ehci-spear.c | |||
| @@ -58,8 +58,6 @@ static int ehci_spear_drv_resume(struct device *dev) | |||
| 58 | static SIMPLE_DEV_PM_OPS(ehci_spear_pm_ops, ehci_spear_drv_suspend, | 58 | static SIMPLE_DEV_PM_OPS(ehci_spear_pm_ops, ehci_spear_drv_suspend, |
| 59 | ehci_spear_drv_resume); | 59 | ehci_spear_drv_resume); |
| 60 | 60 | ||
| 61 | static u64 spear_ehci_dma_mask = DMA_BIT_MASK(32); | ||
| 62 | |||
| 63 | static int spear_ehci_hcd_drv_probe(struct platform_device *pdev) | 61 | static int spear_ehci_hcd_drv_probe(struct platform_device *pdev) |
| 64 | { | 62 | { |
| 65 | struct usb_hcd *hcd ; | 63 | struct usb_hcd *hcd ; |
| @@ -84,7 +82,9 @@ static int spear_ehci_hcd_drv_probe(struct platform_device *pdev) | |||
| 84 | * Once we have dma capability bindings this can go away. | 82 | * Once we have dma capability bindings this can go away. |
| 85 | */ | 83 | */ |
| 86 | if (!pdev->dev.dma_mask) | 84 | if (!pdev->dev.dma_mask) |
| 87 | pdev->dev.dma_mask = &spear_ehci_dma_mask; | 85 | pdev->dev.dma_mask = &pdev->dev.coherent_dma_mask; |
| 86 | if (!pdev->dev.coherent_dma_mask) | ||
| 87 | pdev->dev.coherent_dma_mask = DMA_BIT_MASK(32); | ||
| 88 | 88 | ||
| 89 | usbh_clk = devm_clk_get(&pdev->dev, NULL); | 89 | usbh_clk = devm_clk_get(&pdev->dev, NULL); |
| 90 | if (IS_ERR(usbh_clk)) { | 90 | if (IS_ERR(usbh_clk)) { |
diff --git a/drivers/usb/host/ehci-tegra.c b/drivers/usb/host/ehci-tegra.c index e3eddc31ac83..59d111bf44a9 100644 --- a/drivers/usb/host/ehci-tegra.c +++ b/drivers/usb/host/ehci-tegra.c | |||
| @@ -637,8 +637,6 @@ static void tegra_ehci_set_phcd(struct usb_phy *x, bool enable) | |||
| 637 | writel(val, base + TEGRA_USB_PORTSC1); | 637 | writel(val, base + TEGRA_USB_PORTSC1); |
| 638 | } | 638 | } |
| 639 | 639 | ||
| 640 | static u64 tegra_ehci_dma_mask = DMA_BIT_MASK(32); | ||
| 641 | |||
| 642 | static int tegra_ehci_probe(struct platform_device *pdev) | 640 | static int tegra_ehci_probe(struct platform_device *pdev) |
| 643 | { | 641 | { |
| 644 | struct resource *res; | 642 | struct resource *res; |
| @@ -661,7 +659,9 @@ static int tegra_ehci_probe(struct platform_device *pdev) | |||
| 661 | * Once we have dma capability bindings this can go away. | 659 | * Once we have dma capability bindings this can go away. |
| 662 | */ | 660 | */ |
| 663 | if (!pdev->dev.dma_mask) | 661 | if (!pdev->dev.dma_mask) |
| 664 | pdev->dev.dma_mask = &tegra_ehci_dma_mask; | 662 | pdev->dev.dma_mask = &pdev->dev.coherent_dma_mask; |
| 663 | if (!pdev->dev.coherent_dma_mask) | ||
| 664 | pdev->dev.coherent_dma_mask = DMA_BIT_MASK(32); | ||
| 665 | 665 | ||
| 666 | setup_vbus_gpio(pdev, pdata); | 666 | setup_vbus_gpio(pdev, pdata); |
| 667 | 667 | ||
diff --git a/drivers/usb/host/isp1760-hcd.c b/drivers/usb/host/isp1760-hcd.c index 125e261f5bfc..2facee53eab1 100644 --- a/drivers/usb/host/isp1760-hcd.c +++ b/drivers/usb/host/isp1760-hcd.c | |||
| @@ -1739,7 +1739,7 @@ static int isp1760_hub_status_data(struct usb_hcd *hcd, char *buf) | |||
| 1739 | int retval = 1; | 1739 | int retval = 1; |
| 1740 | unsigned long flags; | 1740 | unsigned long flags; |
| 1741 | 1741 | ||
| 1742 | /* if !USB_SUSPEND, root hub timers won't get shut down ... */ | 1742 | /* if !PM_RUNTIME, root hub timers won't get shut down ... */ |
| 1743 | if (!HC_IS_RUNNING(hcd->state)) | 1743 | if (!HC_IS_RUNNING(hcd->state)) |
| 1744 | return 0; | 1744 | return 0; |
| 1745 | 1745 | ||
diff --git a/drivers/usb/host/isp1760-if.c b/drivers/usb/host/isp1760-if.c index bbb791bd7617..a13709ee4e5d 100644 --- a/drivers/usb/host/isp1760-if.c +++ b/drivers/usb/host/isp1760-if.c | |||
| @@ -373,8 +373,10 @@ static int isp1760_plat_probe(struct platform_device *pdev) | |||
| 373 | irq_res = platform_get_resource(pdev, IORESOURCE_IRQ, 0); | 373 | irq_res = platform_get_resource(pdev, IORESOURCE_IRQ, 0); |
| 374 | if (!irq_res) { | 374 | if (!irq_res) { |
| 375 | pr_warning("isp1760: IRQ resource not available\n"); | 375 | pr_warning("isp1760: IRQ resource not available\n"); |
| 376 | return -ENODEV; | 376 | ret = -ENODEV; |
| 377 | goto cleanup; | ||
| 377 | } | 378 | } |
| 379 | |||
| 378 | irqflags |= irq_res->flags & IRQF_TRIGGER_MASK; | 380 | irqflags |= irq_res->flags & IRQF_TRIGGER_MASK; |
| 379 | 381 | ||
| 380 | if (priv) { | 382 | if (priv) { |
diff --git a/drivers/usb/host/ohci-at91.c b/drivers/usb/host/ohci-at91.c index a0cb44f0e724..2ee1496dbc1d 100644 --- a/drivers/usb/host/ohci-at91.c +++ b/drivers/usb/host/ohci-at91.c | |||
| @@ -504,8 +504,6 @@ static const struct of_device_id at91_ohci_dt_ids[] = { | |||
| 504 | 504 | ||
| 505 | MODULE_DEVICE_TABLE(of, at91_ohci_dt_ids); | 505 | MODULE_DEVICE_TABLE(of, at91_ohci_dt_ids); |
| 506 | 506 | ||
| 507 | static u64 at91_ohci_dma_mask = DMA_BIT_MASK(32); | ||
| 508 | |||
| 509 | static int ohci_at91_of_init(struct platform_device *pdev) | 507 | static int ohci_at91_of_init(struct platform_device *pdev) |
| 510 | { | 508 | { |
| 511 | struct device_node *np = pdev->dev.of_node; | 509 | struct device_node *np = pdev->dev.of_node; |
| @@ -522,7 +520,9 @@ static int ohci_at91_of_init(struct platform_device *pdev) | |||
| 522 | * Once we have dma capability bindings this can go away. | 520 | * Once we have dma capability bindings this can go away. |
| 523 | */ | 521 | */ |
| 524 | if (!pdev->dev.dma_mask) | 522 | if (!pdev->dev.dma_mask) |
| 525 | pdev->dev.dma_mask = &at91_ohci_dma_mask; | 523 | pdev->dev.dma_mask = &pdev->dev.coherent_dma_mask; |
| 524 | if (!pdev->dev.coherent_dma_mask) | ||
| 525 | pdev->dev.coherent_dma_mask = DMA_BIT_MASK(32); | ||
| 526 | 526 | ||
| 527 | pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL); | 527 | pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL); |
| 528 | if (!pdata) | 528 | if (!pdata) |
diff --git a/drivers/usb/host/ohci-exynos.c b/drivers/usb/host/ohci-exynos.c index 07592c00af26..b0b542c14e31 100644 --- a/drivers/usb/host/ohci-exynos.c +++ b/drivers/usb/host/ohci-exynos.c | |||
| @@ -98,8 +98,6 @@ static const struct hc_driver exynos_ohci_hc_driver = { | |||
| 98 | .start_port_reset = ohci_start_port_reset, | 98 | .start_port_reset = ohci_start_port_reset, |
| 99 | }; | 99 | }; |
| 100 | 100 | ||
| 101 | static u64 ohci_exynos_dma_mask = DMA_BIT_MASK(32); | ||
| 102 | |||
| 103 | static int exynos_ohci_probe(struct platform_device *pdev) | 101 | static int exynos_ohci_probe(struct platform_device *pdev) |
| 104 | { | 102 | { |
| 105 | struct exynos4_ohci_platdata *pdata = pdev->dev.platform_data; | 103 | struct exynos4_ohci_platdata *pdata = pdev->dev.platform_data; |
| @@ -117,7 +115,7 @@ static int exynos_ohci_probe(struct platform_device *pdev) | |||
| 117 | * Once we move to full device tree support this will vanish off. | 115 | * Once we move to full device tree support this will vanish off. |
| 118 | */ | 116 | */ |
| 119 | if (!pdev->dev.dma_mask) | 117 | if (!pdev->dev.dma_mask) |
| 120 | pdev->dev.dma_mask = &ohci_exynos_dma_mask; | 118 | pdev->dev.dma_mask = &pdev->dev.coherent_dma_mask; |
| 121 | if (!pdev->dev.coherent_dma_mask) | 119 | if (!pdev->dev.coherent_dma_mask) |
| 122 | pdev->dev.coherent_dma_mask = DMA_BIT_MASK(32); | 120 | pdev->dev.coherent_dma_mask = DMA_BIT_MASK(32); |
| 123 | 121 | ||
diff --git a/drivers/usb/host/ohci-hcd.c b/drivers/usb/host/ohci-hcd.c index 9e6de9586ae4..fc627fd54116 100644 --- a/drivers/usb/host/ohci-hcd.c +++ b/drivers/usb/host/ohci-hcd.c | |||
| @@ -233,14 +233,14 @@ static int ohci_urb_enqueue ( | |||
| 233 | urb->start_frame = frame; | 233 | urb->start_frame = frame; |
| 234 | } | 234 | } |
| 235 | } else if (ed->type == PIPE_ISOCHRONOUS) { | 235 | } else if (ed->type == PIPE_ISOCHRONOUS) { |
| 236 | u16 next = ohci_frame_no(ohci) + 2; | 236 | u16 next = ohci_frame_no(ohci) + 1; |
| 237 | u16 frame = ed->last_iso + ed->interval; | 237 | u16 frame = ed->last_iso + ed->interval; |
| 238 | 238 | ||
| 239 | /* Behind the scheduling threshold? */ | 239 | /* Behind the scheduling threshold? */ |
| 240 | if (unlikely(tick_before(frame, next))) { | 240 | if (unlikely(tick_before(frame, next))) { |
| 241 | 241 | ||
| 242 | /* USB_ISO_ASAP: Round up to the first available slot */ | 242 | /* USB_ISO_ASAP: Round up to the first available slot */ |
| 243 | if (urb->transfer_flags & URB_ISO_ASAP) | 243 | if (urb->transfer_flags & URB_ISO_ASAP) { |
| 244 | frame += (next - frame + ed->interval - 1) & | 244 | frame += (next - frame + ed->interval - 1) & |
| 245 | -ed->interval; | 245 | -ed->interval; |
| 246 | 246 | ||
| @@ -248,21 +248,25 @@ static int ohci_urb_enqueue ( | |||
| 248 | * Not ASAP: Use the next slot in the stream. If | 248 | * Not ASAP: Use the next slot in the stream. If |
| 249 | * the entire URB falls before the threshold, fail. | 249 | * the entire URB falls before the threshold, fail. |
| 250 | */ | 250 | */ |
| 251 | else if (tick_before(frame + ed->interval * | 251 | } else { |
| 252 | if (tick_before(frame + ed->interval * | ||
| 252 | (urb->number_of_packets - 1), next)) { | 253 | (urb->number_of_packets - 1), next)) { |
| 253 | retval = -EXDEV; | 254 | retval = -EXDEV; |
| 254 | usb_hcd_unlink_urb_from_ep(hcd, urb); | 255 | usb_hcd_unlink_urb_from_ep(hcd, urb); |
| 255 | goto fail; | 256 | goto fail; |
| 256 | } | 257 | } |
| 257 | 258 | ||
| 258 | /* | 259 | /* |
| 259 | * Some OHCI hardware doesn't handle late TDs | 260 | * Some OHCI hardware doesn't handle late TDs |
| 260 | * correctly. After retiring them it proceeds to | 261 | * correctly. After retiring them it proceeds |
| 261 | * the next ED instead of the next TD. Therefore | 262 | * to the next ED instead of the next TD. |
| 262 | * we have to omit the late TDs entirely. | 263 | * Therefore we have to omit the late TDs |
| 263 | */ | 264 | * entirely. |
| 264 | urb_priv->td_cnt = DIV_ROUND_UP(next - frame, | 265 | */ |
| 265 | ed->interval); | 266 | urb_priv->td_cnt = DIV_ROUND_UP( |
| 267 | (u16) (next - frame), | ||
| 268 | ed->interval); | ||
| 269 | } | ||
| 266 | } | 270 | } |
| 267 | urb->start_frame = frame; | 271 | urb->start_frame = frame; |
| 268 | } | 272 | } |
diff --git a/drivers/usb/host/ohci-nxp.c b/drivers/usb/host/ohci-nxp.c index f303cb04c2dd..5d7eb72c5064 100644 --- a/drivers/usb/host/ohci-nxp.c +++ b/drivers/usb/host/ohci-nxp.c | |||
| @@ -223,8 +223,7 @@ static int usb_hcd_nxp_probe(struct platform_device *pdev) | |||
| 223 | 223 | ||
| 224 | isp1301_i2c_client = isp1301_get_client(isp1301_node); | 224 | isp1301_i2c_client = isp1301_get_client(isp1301_node); |
| 225 | if (!isp1301_i2c_client) { | 225 | if (!isp1301_i2c_client) { |
| 226 | ret = -EPROBE_DEFER; | 226 | return -EPROBE_DEFER; |
| 227 | goto out; | ||
| 228 | } | 227 | } |
| 229 | 228 | ||
| 230 | pdev->dev.coherent_dma_mask = DMA_BIT_MASK(32); | 229 | pdev->dev.coherent_dma_mask = DMA_BIT_MASK(32); |
| @@ -234,7 +233,7 @@ static int usb_hcd_nxp_probe(struct platform_device *pdev) | |||
| 234 | if (usb_disabled()) { | 233 | if (usb_disabled()) { |
| 235 | dev_err(&pdev->dev, "USB is disabled\n"); | 234 | dev_err(&pdev->dev, "USB is disabled\n"); |
| 236 | ret = -ENODEV; | 235 | ret = -ENODEV; |
| 237 | goto out; | 236 | goto fail_disable; |
| 238 | } | 237 | } |
| 239 | 238 | ||
| 240 | /* Enable AHB slave USB clock, needed for further USB clock control */ | 239 | /* Enable AHB slave USB clock, needed for further USB clock control */ |
| @@ -245,19 +244,19 @@ static int usb_hcd_nxp_probe(struct platform_device *pdev) | |||
| 245 | if (IS_ERR(usb_pll_clk)) { | 244 | if (IS_ERR(usb_pll_clk)) { |
| 246 | dev_err(&pdev->dev, "failed to acquire USB PLL\n"); | 245 | dev_err(&pdev->dev, "failed to acquire USB PLL\n"); |
| 247 | ret = PTR_ERR(usb_pll_clk); | 246 | ret = PTR_ERR(usb_pll_clk); |
| 248 | goto out1; | 247 | goto fail_pll; |
| 249 | } | 248 | } |
| 250 | 249 | ||
| 251 | ret = clk_enable(usb_pll_clk); | 250 | ret = clk_enable(usb_pll_clk); |
| 252 | if (ret < 0) { | 251 | if (ret < 0) { |
| 253 | dev_err(&pdev->dev, "failed to start USB PLL\n"); | 252 | dev_err(&pdev->dev, "failed to start USB PLL\n"); |
| 254 | goto out2; | 253 | goto fail_pllen; |
| 255 | } | 254 | } |
| 256 | 255 | ||
| 257 | ret = clk_set_rate(usb_pll_clk, 48000); | 256 | ret = clk_set_rate(usb_pll_clk, 48000); |
| 258 | if (ret < 0) { | 257 | if (ret < 0) { |
| 259 | dev_err(&pdev->dev, "failed to set USB clock rate\n"); | 258 | dev_err(&pdev->dev, "failed to set USB clock rate\n"); |
| 260 | goto out3; | 259 | goto fail_rate; |
| 261 | } | 260 | } |
| 262 | 261 | ||
| 263 | /* Enable USB device clock */ | 262 | /* Enable USB device clock */ |
| @@ -265,13 +264,13 @@ static int usb_hcd_nxp_probe(struct platform_device *pdev) | |||
| 265 | if (IS_ERR(usb_dev_clk)) { | 264 | if (IS_ERR(usb_dev_clk)) { |
| 266 | dev_err(&pdev->dev, "failed to acquire USB DEV Clock\n"); | 265 | dev_err(&pdev->dev, "failed to acquire USB DEV Clock\n"); |
| 267 | ret = PTR_ERR(usb_dev_clk); | 266 | ret = PTR_ERR(usb_dev_clk); |
| 268 | goto out4; | 267 | goto fail_dev; |
| 269 | } | 268 | } |
| 270 | 269 | ||
| 271 | ret = clk_enable(usb_dev_clk); | 270 | ret = clk_enable(usb_dev_clk); |
| 272 | if (ret < 0) { | 271 | if (ret < 0) { |
| 273 | dev_err(&pdev->dev, "failed to start USB DEV Clock\n"); | 272 | dev_err(&pdev->dev, "failed to start USB DEV Clock\n"); |
| 274 | goto out5; | 273 | goto fail_deven; |
| 275 | } | 274 | } |
| 276 | 275 | ||
| 277 | /* Enable USB otg clocks */ | 276 | /* Enable USB otg clocks */ |
| @@ -279,7 +278,7 @@ static int usb_hcd_nxp_probe(struct platform_device *pdev) | |||
| 279 | if (IS_ERR(usb_otg_clk)) { | 278 | if (IS_ERR(usb_otg_clk)) { |
| 280 | dev_err(&pdev->dev, "failed to acquire USB DEV Clock\n"); | 279 | dev_err(&pdev->dev, "failed to acquire USB DEV Clock\n"); |
| 281 | ret = PTR_ERR(usb_otg_clk); | 280 | ret = PTR_ERR(usb_otg_clk); |
| 282 | goto out6; | 281 | goto fail_otg; |
| 283 | } | 282 | } |
| 284 | 283 | ||
| 285 | __raw_writel(__raw_readl(USB_CTRL) | USB_HOST_NEED_CLK_EN, USB_CTRL); | 284 | __raw_writel(__raw_readl(USB_CTRL) | USB_HOST_NEED_CLK_EN, USB_CTRL); |
| @@ -287,7 +286,7 @@ static int usb_hcd_nxp_probe(struct platform_device *pdev) | |||
| 287 | ret = clk_enable(usb_otg_clk); | 286 | ret = clk_enable(usb_otg_clk); |
| 288 | if (ret < 0) { | 287 | if (ret < 0) { |
| 289 | dev_err(&pdev->dev, "failed to start USB DEV Clock\n"); | 288 | dev_err(&pdev->dev, "failed to start USB DEV Clock\n"); |
| 290 | goto out7; | 289 | goto fail_otgen; |
| 291 | } | 290 | } |
| 292 | 291 | ||
| 293 | isp1301_configure(); | 292 | isp1301_configure(); |
| @@ -296,14 +295,14 @@ static int usb_hcd_nxp_probe(struct platform_device *pdev) | |||
| 296 | if (!hcd) { | 295 | if (!hcd) { |
| 297 | dev_err(&pdev->dev, "Failed to allocate HC buffer\n"); | 296 | dev_err(&pdev->dev, "Failed to allocate HC buffer\n"); |
| 298 | ret = -ENOMEM; | 297 | ret = -ENOMEM; |
| 299 | goto out8; | 298 | goto fail_hcd; |
| 300 | } | 299 | } |
| 301 | 300 | ||
| 302 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); | 301 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
| 303 | hcd->regs = devm_ioremap_resource(&pdev->dev, res); | 302 | hcd->regs = devm_ioremap_resource(&pdev->dev, res); |
| 304 | if (IS_ERR(hcd->regs)) { | 303 | if (IS_ERR(hcd->regs)) { |
| 305 | ret = PTR_ERR(hcd->regs); | 304 | ret = PTR_ERR(hcd->regs); |
| 306 | goto out8; | 305 | goto fail_resource; |
| 307 | } | 306 | } |
| 308 | hcd->rsrc_start = res->start; | 307 | hcd->rsrc_start = res->start; |
| 309 | hcd->rsrc_len = resource_size(res); | 308 | hcd->rsrc_len = resource_size(res); |
| @@ -311,7 +310,7 @@ static int usb_hcd_nxp_probe(struct platform_device *pdev) | |||
| 311 | irq = platform_get_irq(pdev, 0); | 310 | irq = platform_get_irq(pdev, 0); |
| 312 | if (irq < 0) { | 311 | if (irq < 0) { |
| 313 | ret = -ENXIO; | 312 | ret = -ENXIO; |
| 314 | goto out8; | 313 | goto fail_resource; |
| 315 | } | 314 | } |
| 316 | 315 | ||
| 317 | nxp_start_hc(); | 316 | nxp_start_hc(); |
| @@ -325,23 +324,24 @@ static int usb_hcd_nxp_probe(struct platform_device *pdev) | |||
| 325 | return ret; | 324 | return ret; |
| 326 | 325 | ||
| 327 | nxp_stop_hc(); | 326 | nxp_stop_hc(); |
| 328 | out8: | 327 | fail_resource: |
| 329 | usb_put_hcd(hcd); | 328 | usb_put_hcd(hcd); |
| 330 | out7: | 329 | fail_hcd: |
| 331 | clk_disable(usb_otg_clk); | 330 | clk_disable(usb_otg_clk); |
| 332 | out6: | 331 | fail_otgen: |
| 333 | clk_put(usb_otg_clk); | 332 | clk_put(usb_otg_clk); |
| 334 | out5: | 333 | fail_otg: |
| 335 | clk_disable(usb_dev_clk); | 334 | clk_disable(usb_dev_clk); |
| 336 | out4: | 335 | fail_deven: |
| 337 | clk_put(usb_dev_clk); | 336 | clk_put(usb_dev_clk); |
| 338 | out3: | 337 | fail_dev: |
| 338 | fail_rate: | ||
| 339 | clk_disable(usb_pll_clk); | 339 | clk_disable(usb_pll_clk); |
| 340 | out2: | 340 | fail_pllen: |
| 341 | clk_put(usb_pll_clk); | 341 | clk_put(usb_pll_clk); |
| 342 | out1: | 342 | fail_pll: |
| 343 | fail_disable: | ||
| 343 | isp1301_i2c_client = NULL; | 344 | isp1301_i2c_client = NULL; |
| 344 | out: | ||
| 345 | return ret; | 345 | return ret; |
| 346 | } | 346 | } |
| 347 | 347 | ||
diff --git a/drivers/usb/host/ohci-omap3.c b/drivers/usb/host/ohci-omap3.c index ddfc31427bc0..8663851c8d8e 100644 --- a/drivers/usb/host/ohci-omap3.c +++ b/drivers/usb/host/ohci-omap3.c | |||
| @@ -114,8 +114,6 @@ static const struct hc_driver ohci_omap3_hc_driver = { | |||
| 114 | 114 | ||
| 115 | /*-------------------------------------------------------------------------*/ | 115 | /*-------------------------------------------------------------------------*/ |
| 116 | 116 | ||
| 117 | static u64 omap_ohci_dma_mask = DMA_BIT_MASK(32); | ||
| 118 | |||
| 119 | /* | 117 | /* |
| 120 | * configure so an HC device and id are always provided | 118 | * configure so an HC device and id are always provided |
| 121 | * always called with process context; sleeping is OK | 119 | * always called with process context; sleeping is OK |
| @@ -168,8 +166,10 @@ static int ohci_hcd_omap3_probe(struct platform_device *pdev) | |||
| 168 | * Since shared usb code relies on it, set it here for now. | 166 | * Since shared usb code relies on it, set it here for now. |
| 169 | * Once we have dma capability bindings this can go away. | 167 | * Once we have dma capability bindings this can go away. |
| 170 | */ | 168 | */ |
| 171 | if (!pdev->dev.dma_mask) | 169 | if (!dev->dma_mask) |
| 172 | pdev->dev.dma_mask = &omap_ohci_dma_mask; | 170 | dev->dma_mask = &dev->coherent_dma_mask; |
| 171 | if (!dev->coherent_dma_mask) | ||
| 172 | dev->coherent_dma_mask = DMA_BIT_MASK(32); | ||
| 173 | 173 | ||
| 174 | hcd = usb_create_hcd(&ohci_omap3_hc_driver, dev, | 174 | hcd = usb_create_hcd(&ohci_omap3_hc_driver, dev, |
| 175 | dev_name(dev)); | 175 | dev_name(dev)); |
diff --git a/drivers/usb/host/ohci-pxa27x.c b/drivers/usb/host/ohci-pxa27x.c index efe71f3ca477..279b2ef17411 100644 --- a/drivers/usb/host/ohci-pxa27x.c +++ b/drivers/usb/host/ohci-pxa27x.c | |||
| @@ -282,8 +282,6 @@ static const struct of_device_id pxa_ohci_dt_ids[] = { | |||
| 282 | 282 | ||
| 283 | MODULE_DEVICE_TABLE(of, pxa_ohci_dt_ids); | 283 | MODULE_DEVICE_TABLE(of, pxa_ohci_dt_ids); |
| 284 | 284 | ||
| 285 | static u64 pxa_ohci_dma_mask = DMA_BIT_MASK(32); | ||
| 286 | |||
| 287 | static int ohci_pxa_of_init(struct platform_device *pdev) | 285 | static int ohci_pxa_of_init(struct platform_device *pdev) |
| 288 | { | 286 | { |
| 289 | struct device_node *np = pdev->dev.of_node; | 287 | struct device_node *np = pdev->dev.of_node; |
| @@ -298,7 +296,9 @@ static int ohci_pxa_of_init(struct platform_device *pdev) | |||
| 298 | * Once we have dma capability bindings this can go away. | 296 | * Once we have dma capability bindings this can go away. |
| 299 | */ | 297 | */ |
| 300 | if (!pdev->dev.dma_mask) | 298 | if (!pdev->dev.dma_mask) |
| 301 | pdev->dev.dma_mask = &pxa_ohci_dma_mask; | 299 | pdev->dev.dma_mask = &pdev->dev.coherent_dma_mask; |
| 300 | if (!pdev->dev.coherent_dma_mask) | ||
| 301 | pdev->dev.coherent_dma_mask = DMA_BIT_MASK(32); | ||
| 302 | 302 | ||
| 303 | pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL); | 303 | pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL); |
| 304 | if (!pdata) | 304 | if (!pdata) |
diff --git a/drivers/usb/host/ohci-spear.c b/drivers/usb/host/ohci-spear.c index 9020bf0e2eca..3e19e0170d11 100644 --- a/drivers/usb/host/ohci-spear.c +++ b/drivers/usb/host/ohci-spear.c | |||
| @@ -91,8 +91,6 @@ static const struct hc_driver ohci_spear_hc_driver = { | |||
| 91 | .start_port_reset = ohci_start_port_reset, | 91 | .start_port_reset = ohci_start_port_reset, |
| 92 | }; | 92 | }; |
| 93 | 93 | ||
| 94 | static u64 spear_ohci_dma_mask = DMA_BIT_MASK(32); | ||
| 95 | |||
| 96 | static int spear_ohci_hcd_drv_probe(struct platform_device *pdev) | 94 | static int spear_ohci_hcd_drv_probe(struct platform_device *pdev) |
| 97 | { | 95 | { |
| 98 | const struct hc_driver *driver = &ohci_spear_hc_driver; | 96 | const struct hc_driver *driver = &ohci_spear_hc_driver; |
| @@ -114,7 +112,9 @@ static int spear_ohci_hcd_drv_probe(struct platform_device *pdev) | |||
| 114 | * Once we have dma capability bindings this can go away. | 112 | * Once we have dma capability bindings this can go away. |
| 115 | */ | 113 | */ |
| 116 | if (!pdev->dev.dma_mask) | 114 | if (!pdev->dev.dma_mask) |
| 117 | pdev->dev.dma_mask = &spear_ohci_dma_mask; | 115 | pdev->dev.dma_mask = &pdev->dev.coherent_dma_mask; |
| 116 | if (!pdev->dev.coherent_dma_mask) | ||
| 117 | pdev->dev.coherent_dma_mask = DMA_BIT_MASK(32); | ||
| 118 | 118 | ||
| 119 | usbh_clk = devm_clk_get(&pdev->dev, NULL); | 119 | usbh_clk = devm_clk_get(&pdev->dev, NULL); |
| 120 | if (IS_ERR(usbh_clk)) { | 120 | if (IS_ERR(usbh_clk)) { |
diff --git a/drivers/usb/host/oxu210hp-hcd.c b/drivers/usb/host/oxu210hp-hcd.c index 4f0f0339532f..0f401dbfaf07 100644 --- a/drivers/usb/host/oxu210hp-hcd.c +++ b/drivers/usb/host/oxu210hp-hcd.c | |||
| @@ -3084,7 +3084,7 @@ static int oxu_hub_status_data(struct usb_hcd *hcd, char *buf) | |||
| 3084 | int ports, i, retval = 1; | 3084 | int ports, i, retval = 1; |
| 3085 | unsigned long flags; | 3085 | unsigned long flags; |
| 3086 | 3086 | ||
| 3087 | /* if !USB_SUSPEND, root hub timers won't get shut down ... */ | 3087 | /* if !PM_RUNTIME, root hub timers won't get shut down ... */ |
| 3088 | if (!HC_IS_RUNNING(hcd->state)) | 3088 | if (!HC_IS_RUNNING(hcd->state)) |
| 3089 | return 0; | 3089 | return 0; |
| 3090 | 3090 | ||
diff --git a/drivers/usb/host/sl811-hcd.c b/drivers/usb/host/sl811-hcd.c index ad4483efb6d6..b2ec7fe758dd 100644 --- a/drivers/usb/host/sl811-hcd.c +++ b/drivers/usb/host/sl811-hcd.c | |||
| @@ -22,7 +22,7 @@ | |||
| 22 | * and usb-storage. | 22 | * and usb-storage. |
| 23 | * | 23 | * |
| 24 | * TODO: | 24 | * TODO: |
| 25 | * - usb suspend/resume triggered by sl811 (with USB_SUSPEND) | 25 | * - usb suspend/resume triggered by sl811 (with PM_RUNTIME) |
| 26 | * - various issues noted in the code | 26 | * - various issues noted in the code |
| 27 | * - performance work; use both register banks; ... | 27 | * - performance work; use both register banks; ... |
| 28 | * - use urb->iso_frame_desc[] with ISO transfers | 28 | * - use urb->iso_frame_desc[] with ISO transfers |
diff --git a/drivers/usb/host/uhci-hub.c b/drivers/usb/host/uhci-hub.c index f87bee6d2789..9189bc984c98 100644 --- a/drivers/usb/host/uhci-hub.c +++ b/drivers/usb/host/uhci-hub.c | |||
| @@ -225,7 +225,8 @@ static int uhci_hub_status_data(struct usb_hcd *hcd, char *buf) | |||
| 225 | /* auto-stop if nothing connected for 1 second */ | 225 | /* auto-stop if nothing connected for 1 second */ |
| 226 | if (any_ports_active(uhci)) | 226 | if (any_ports_active(uhci)) |
| 227 | uhci->rh_state = UHCI_RH_RUNNING; | 227 | uhci->rh_state = UHCI_RH_RUNNING; |
| 228 | else if (time_after_eq(jiffies, uhci->auto_stop_time)) | 228 | else if (time_after_eq(jiffies, uhci->auto_stop_time) && |
| 229 | !uhci->wait_for_hp) | ||
| 229 | suspend_rh(uhci, UHCI_RH_AUTO_STOPPED); | 230 | suspend_rh(uhci, UHCI_RH_AUTO_STOPPED); |
| 230 | break; | 231 | break; |
| 231 | 232 | ||
diff --git a/drivers/usb/host/uhci-platform.c b/drivers/usb/host/uhci-platform.c index 8c4dace4b14a..f1db61ada6a8 100644 --- a/drivers/usb/host/uhci-platform.c +++ b/drivers/usb/host/uhci-platform.c | |||
| @@ -60,8 +60,6 @@ static const struct hc_driver uhci_platform_hc_driver = { | |||
| 60 | .hub_control = uhci_hub_control, | 60 | .hub_control = uhci_hub_control, |
| 61 | }; | 61 | }; |
| 62 | 62 | ||
| 63 | static u64 platform_uhci_dma_mask = DMA_BIT_MASK(32); | ||
| 64 | |||
| 65 | static int uhci_hcd_platform_probe(struct platform_device *pdev) | 63 | static int uhci_hcd_platform_probe(struct platform_device *pdev) |
| 66 | { | 64 | { |
| 67 | struct usb_hcd *hcd; | 65 | struct usb_hcd *hcd; |
| @@ -78,7 +76,9 @@ static int uhci_hcd_platform_probe(struct platform_device *pdev) | |||
| 78 | * Once we have dma capability bindings this can go away. | 76 | * Once we have dma capability bindings this can go away. |
| 79 | */ | 77 | */ |
| 80 | if (!pdev->dev.dma_mask) | 78 | if (!pdev->dev.dma_mask) |
| 81 | pdev->dev.dma_mask = &platform_uhci_dma_mask; | 79 | pdev->dev.dma_mask = &pdev->dev.coherent_dma_mask; |
| 80 | if (!pdev->dev.coherent_dma_mask) | ||
| 81 | pdev->dev.coherent_dma_mask = DMA_BIT_MASK(32); | ||
| 82 | 82 | ||
| 83 | hcd = usb_create_hcd(&uhci_platform_hc_driver, &pdev->dev, | 83 | hcd = usb_create_hcd(&uhci_platform_hc_driver, &pdev->dev, |
| 84 | pdev->name); | 84 | pdev->name); |
diff --git a/drivers/usb/host/uhci-q.c b/drivers/usb/host/uhci-q.c index f0976d8190bc..041c6ddb695c 100644 --- a/drivers/usb/host/uhci-q.c +++ b/drivers/usb/host/uhci-q.c | |||
| @@ -1287,7 +1287,7 @@ static int uhci_submit_isochronous(struct uhci_hcd *uhci, struct urb *urb, | |||
| 1287 | return -EINVAL; /* Can't change the period */ | 1287 | return -EINVAL; /* Can't change the period */ |
| 1288 | 1288 | ||
| 1289 | } else { | 1289 | } else { |
| 1290 | next = uhci->frame_number + 2; | 1290 | next = uhci->frame_number + 1; |
| 1291 | 1291 | ||
| 1292 | /* Find the next unused frame */ | 1292 | /* Find the next unused frame */ |
| 1293 | if (list_empty(&qh->queue)) { | 1293 | if (list_empty(&qh->queue)) { |
diff --git a/drivers/usb/host/xhci-mem.c b/drivers/usb/host/xhci-mem.c index 965b539bc474..2cfc465925bd 100644 --- a/drivers/usb/host/xhci-mem.c +++ b/drivers/usb/host/xhci-mem.c | |||
| @@ -1423,15 +1423,17 @@ int xhci_endpoint_init(struct xhci_hcd *xhci, | |||
| 1423 | ep_ctx->ep_info2 |= cpu_to_le32(xhci_get_endpoint_type(udev, ep)); | 1423 | ep_ctx->ep_info2 |= cpu_to_le32(xhci_get_endpoint_type(udev, ep)); |
| 1424 | 1424 | ||
| 1425 | /* Set the max packet size and max burst */ | 1425 | /* Set the max packet size and max burst */ |
| 1426 | max_packet = GET_MAX_PACKET(usb_endpoint_maxp(&ep->desc)); | ||
| 1427 | max_burst = 0; | ||
| 1426 | switch (udev->speed) { | 1428 | switch (udev->speed) { |
| 1427 | case USB_SPEED_SUPER: | 1429 | case USB_SPEED_SUPER: |
| 1428 | max_packet = usb_endpoint_maxp(&ep->desc); | ||
| 1429 | ep_ctx->ep_info2 |= cpu_to_le32(MAX_PACKET(max_packet)); | ||
| 1430 | /* dig out max burst from ep companion desc */ | 1430 | /* dig out max burst from ep companion desc */ |
| 1431 | max_packet = ep->ss_ep_comp.bMaxBurst; | 1431 | max_burst = ep->ss_ep_comp.bMaxBurst; |
| 1432 | ep_ctx->ep_info2 |= cpu_to_le32(MAX_BURST(max_packet)); | ||
| 1433 | break; | 1432 | break; |
| 1434 | case USB_SPEED_HIGH: | 1433 | case USB_SPEED_HIGH: |
| 1434 | /* Some devices get this wrong */ | ||
| 1435 | if (usb_endpoint_xfer_bulk(&ep->desc)) | ||
| 1436 | max_packet = 512; | ||
| 1435 | /* bits 11:12 specify the number of additional transaction | 1437 | /* bits 11:12 specify the number of additional transaction |
| 1436 | * opportunities per microframe (USB 2.0, section 9.6.6) | 1438 | * opportunities per microframe (USB 2.0, section 9.6.6) |
| 1437 | */ | 1439 | */ |
| @@ -1439,17 +1441,16 @@ int xhci_endpoint_init(struct xhci_hcd *xhci, | |||
| 1439 | usb_endpoint_xfer_int(&ep->desc)) { | 1441 | usb_endpoint_xfer_int(&ep->desc)) { |
| 1440 | max_burst = (usb_endpoint_maxp(&ep->desc) | 1442 | max_burst = (usb_endpoint_maxp(&ep->desc) |
| 1441 | & 0x1800) >> 11; | 1443 | & 0x1800) >> 11; |
| 1442 | ep_ctx->ep_info2 |= cpu_to_le32(MAX_BURST(max_burst)); | ||
| 1443 | } | 1444 | } |
| 1444 | /* Fall through */ | 1445 | break; |
| 1445 | case USB_SPEED_FULL: | 1446 | case USB_SPEED_FULL: |
| 1446 | case USB_SPEED_LOW: | 1447 | case USB_SPEED_LOW: |
| 1447 | max_packet = GET_MAX_PACKET(usb_endpoint_maxp(&ep->desc)); | ||
| 1448 | ep_ctx->ep_info2 |= cpu_to_le32(MAX_PACKET(max_packet)); | ||
| 1449 | break; | 1448 | break; |
| 1450 | default: | 1449 | default: |
| 1451 | BUG(); | 1450 | BUG(); |
| 1452 | } | 1451 | } |
| 1452 | ep_ctx->ep_info2 |= cpu_to_le32(MAX_PACKET(max_packet) | | ||
| 1453 | MAX_BURST(max_burst)); | ||
| 1453 | max_esit_payload = xhci_get_max_esit_payload(xhci, udev, ep); | 1454 | max_esit_payload = xhci_get_max_esit_payload(xhci, udev, ep); |
| 1454 | ep_ctx->tx_info = cpu_to_le32(MAX_ESIT_PAYLOAD_FOR_EP(max_esit_payload)); | 1455 | ep_ctx->tx_info = cpu_to_le32(MAX_ESIT_PAYLOAD_FOR_EP(max_esit_payload)); |
| 1455 | 1456 | ||
diff --git a/drivers/usb/musb/musb_dsps.c b/drivers/usb/musb/musb_dsps.c index 3a18e44e9391..e1b661d04021 100644 --- a/drivers/usb/musb/musb_dsps.c +++ b/drivers/usb/musb/musb_dsps.c | |||
| @@ -560,6 +560,7 @@ static int dsps_create_musb_pdev(struct dsps_glue *glue, u8 id) | |||
| 560 | if (!config) { | 560 | if (!config) { |
| 561 | dev_err(&pdev->dev, | 561 | dev_err(&pdev->dev, |
| 562 | "failed to allocate musb hdrc config\n"); | 562 | "failed to allocate musb hdrc config\n"); |
| 563 | ret = -ENOMEM; | ||
| 563 | goto err2; | 564 | goto err2; |
| 564 | } | 565 | } |
| 565 | 566 | ||
diff --git a/drivers/usb/musb/omap2430.c b/drivers/usb/musb/omap2430.c index 3551f1a30c65..628b93fe5ccc 100644 --- a/drivers/usb/musb/omap2430.c +++ b/drivers/usb/musb/omap2430.c | |||
| @@ -549,7 +549,8 @@ static int omap2430_probe(struct platform_device *pdev) | |||
| 549 | glue->control_otghs = omap_get_control_dev(); | 549 | glue->control_otghs = omap_get_control_dev(); |
| 550 | if (IS_ERR(glue->control_otghs)) { | 550 | if (IS_ERR(glue->control_otghs)) { |
| 551 | dev_vdbg(&pdev->dev, "Failed to get control device\n"); | 551 | dev_vdbg(&pdev->dev, "Failed to get control device\n"); |
| 552 | return -ENODEV; | 552 | ret = PTR_ERR(glue->control_otghs); |
| 553 | goto err2; | ||
| 553 | } | 554 | } |
| 554 | } else { | 555 | } else { |
| 555 | glue->control_otghs = ERR_PTR(-ENODEV); | 556 | glue->control_otghs = ERR_PTR(-ENODEV); |
diff --git a/drivers/usb/phy/Kconfig b/drivers/usb/phy/Kconfig index 371d0e74e909..7ef3eb8617a6 100644 --- a/drivers/usb/phy/Kconfig +++ b/drivers/usb/phy/Kconfig | |||
| @@ -25,7 +25,7 @@ config AB8500_USB | |||
| 25 | 25 | ||
| 26 | config FSL_USB2_OTG | 26 | config FSL_USB2_OTG |
| 27 | bool "Freescale USB OTG Transceiver Driver" | 27 | bool "Freescale USB OTG Transceiver Driver" |
| 28 | depends on USB_EHCI_FSL && USB_FSL_USB2 && USB_SUSPEND | 28 | depends on USB_EHCI_FSL && USB_FSL_USB2 && PM_RUNTIME |
| 29 | select USB_OTG | 29 | select USB_OTG |
| 30 | help | 30 | help |
| 31 | Enable this to support Freescale USB OTG transceiver. | 31 | Enable this to support Freescale USB OTG transceiver. |
| @@ -139,7 +139,6 @@ config USB_ISP1301 | |||
| 139 | tristate "NXP ISP1301 USB transceiver support" | 139 | tristate "NXP ISP1301 USB transceiver support" |
| 140 | depends on USB || USB_GADGET | 140 | depends on USB || USB_GADGET |
| 141 | depends on I2C | 141 | depends on I2C |
| 142 | select USB_OTG_UTILS | ||
| 143 | help | 142 | help |
| 144 | Say Y here to add support for the NXP ISP1301 USB transceiver driver. | 143 | Say Y here to add support for the NXP ISP1301 USB transceiver driver. |
| 145 | This chip is typically used as USB transceiver for USB host, gadget | 144 | This chip is typically used as USB transceiver for USB host, gadget |
| @@ -162,7 +161,7 @@ config USB_MSM_OTG | |||
| 162 | 161 | ||
| 163 | config USB_MV_OTG | 162 | config USB_MV_OTG |
| 164 | tristate "Marvell USB OTG support" | 163 | tristate "Marvell USB OTG support" |
| 165 | depends on USB_EHCI_MV && USB_MV_UDC && USB_SUSPEND | 164 | depends on USB_EHCI_MV && USB_MV_UDC && PM_RUNTIME |
| 166 | select USB_OTG | 165 | select USB_OTG |
| 167 | help | 166 | help |
| 168 | Say Y here if you want to build Marvell USB OTG transciever | 167 | Say Y here if you want to build Marvell USB OTG transciever |
diff --git a/drivers/usb/phy/phy-ab8500-usb.c b/drivers/usb/phy/phy-ab8500-usb.c index 4acef26a2ef5..e5eb1b5a04eb 100644 --- a/drivers/usb/phy/phy-ab8500-usb.c +++ b/drivers/usb/phy/phy-ab8500-usb.c | |||
| @@ -892,8 +892,6 @@ static int ab8500_usb_remove(struct platform_device *pdev) | |||
| 892 | else if (ab->mode == USB_PERIPHERAL) | 892 | else if (ab->mode == USB_PERIPHERAL) |
| 893 | ab8500_usb_peri_phy_dis(ab); | 893 | ab8500_usb_peri_phy_dis(ab); |
| 894 | 894 | ||
| 895 | platform_set_drvdata(pdev, NULL); | ||
| 896 | |||
| 897 | return 0; | 895 | return 0; |
| 898 | } | 896 | } |
| 899 | 897 | ||
diff --git a/drivers/usb/phy/phy-fsl-usb.c b/drivers/usb/phy/phy-fsl-usb.c index 97b9308507c3..e771bafb9f1d 100644 --- a/drivers/usb/phy/phy-fsl-usb.c +++ b/drivers/usb/phy/phy-fsl-usb.c | |||
| @@ -799,6 +799,7 @@ static int fsl_otg_conf(struct platform_device *pdev) | |||
| 799 | 799 | ||
| 800 | /* initialize the otg structure */ | 800 | /* initialize the otg structure */ |
| 801 | fsl_otg_tc->phy.label = DRIVER_DESC; | 801 | fsl_otg_tc->phy.label = DRIVER_DESC; |
| 802 | fsl_otg_tc->phy.dev = &pdev->dev; | ||
| 802 | fsl_otg_tc->phy.set_power = fsl_otg_set_power; | 803 | fsl_otg_tc->phy.set_power = fsl_otg_set_power; |
| 803 | 804 | ||
| 804 | fsl_otg_tc->phy.otg->phy = &fsl_otg_tc->phy; | 805 | fsl_otg_tc->phy.otg->phy = &fsl_otg_tc->phy; |
diff --git a/drivers/usb/phy/phy-gpio-vbus-usb.c b/drivers/usb/phy/phy-gpio-vbus-usb.c index 4c76074e518d..8443335c2ea0 100644 --- a/drivers/usb/phy/phy-gpio-vbus-usb.c +++ b/drivers/usb/phy/phy-gpio-vbus-usb.c | |||
| @@ -266,6 +266,7 @@ static int __init gpio_vbus_probe(struct platform_device *pdev) | |||
| 266 | platform_set_drvdata(pdev, gpio_vbus); | 266 | platform_set_drvdata(pdev, gpio_vbus); |
| 267 | gpio_vbus->dev = &pdev->dev; | 267 | gpio_vbus->dev = &pdev->dev; |
| 268 | gpio_vbus->phy.label = "gpio-vbus"; | 268 | gpio_vbus->phy.label = "gpio-vbus"; |
| 269 | gpio_vbus->phy.dev = gpio_vbus->dev; | ||
| 269 | gpio_vbus->phy.set_power = gpio_vbus_set_power; | 270 | gpio_vbus->phy.set_power = gpio_vbus_set_power; |
| 270 | gpio_vbus->phy.set_suspend = gpio_vbus_set_suspend; | 271 | gpio_vbus->phy.set_suspend = gpio_vbus_set_suspend; |
| 271 | gpio_vbus->phy.state = OTG_STATE_UNDEFINED; | 272 | gpio_vbus->phy.state = OTG_STATE_UNDEFINED; |
| @@ -343,7 +344,6 @@ err_irq: | |||
| 343 | gpio_free(pdata->gpio_pullup); | 344 | gpio_free(pdata->gpio_pullup); |
| 344 | gpio_free(pdata->gpio_vbus); | 345 | gpio_free(pdata->gpio_vbus); |
| 345 | err_gpio: | 346 | err_gpio: |
| 346 | platform_set_drvdata(pdev, NULL); | ||
| 347 | kfree(gpio_vbus->phy.otg); | 347 | kfree(gpio_vbus->phy.otg); |
| 348 | kfree(gpio_vbus); | 348 | kfree(gpio_vbus); |
| 349 | return err; | 349 | return err; |
| @@ -365,7 +365,6 @@ static int __exit gpio_vbus_remove(struct platform_device *pdev) | |||
| 365 | if (gpio_is_valid(pdata->gpio_pullup)) | 365 | if (gpio_is_valid(pdata->gpio_pullup)) |
| 366 | gpio_free(pdata->gpio_pullup); | 366 | gpio_free(pdata->gpio_pullup); |
| 367 | gpio_free(gpio); | 367 | gpio_free(gpio); |
| 368 | platform_set_drvdata(pdev, NULL); | ||
| 369 | kfree(gpio_vbus->phy.otg); | 368 | kfree(gpio_vbus->phy.otg); |
| 370 | kfree(gpio_vbus); | 369 | kfree(gpio_vbus); |
| 371 | 370 | ||
diff --git a/drivers/usb/phy/phy-isp1301.c b/drivers/usb/phy/phy-isp1301.c index 225ae6c97eeb..8a55b37d1a02 100644 --- a/drivers/usb/phy/phy-isp1301.c +++ b/drivers/usb/phy/phy-isp1301.c | |||
| @@ -102,6 +102,7 @@ static int isp1301_probe(struct i2c_client *client, | |||
| 102 | mutex_init(&isp->mutex); | 102 | mutex_init(&isp->mutex); |
| 103 | 103 | ||
| 104 | phy = &isp->phy; | 104 | phy = &isp->phy; |
| 105 | phy->dev = &client->dev; | ||
| 105 | phy->label = DRV_NAME; | 106 | phy->label = DRV_NAME; |
| 106 | phy->init = isp1301_phy_init; | 107 | phy->init = isp1301_phy_init; |
| 107 | phy->set_vbus = isp1301_phy_set_vbus; | 108 | phy->set_vbus = isp1301_phy_set_vbus; |
diff --git a/drivers/usb/phy/phy-mv-usb.c b/drivers/usb/phy/phy-mv-usb.c index c987bbe27851..4a6b03c73876 100644 --- a/drivers/usb/phy/phy-mv-usb.c +++ b/drivers/usb/phy/phy-mv-usb.c | |||
| @@ -667,7 +667,6 @@ int mv_otg_remove(struct platform_device *pdev) | |||
| 667 | mv_otg_disable(mvotg); | 667 | mv_otg_disable(mvotg); |
| 668 | 668 | ||
| 669 | usb_remove_phy(&mvotg->phy); | 669 | usb_remove_phy(&mvotg->phy); |
| 670 | platform_set_drvdata(pdev, NULL); | ||
| 671 | 670 | ||
| 672 | return 0; | 671 | return 0; |
| 673 | } | 672 | } |
| @@ -850,8 +849,6 @@ err_destroy_workqueue: | |||
| 850 | flush_workqueue(mvotg->qwork); | 849 | flush_workqueue(mvotg->qwork); |
| 851 | destroy_workqueue(mvotg->qwork); | 850 | destroy_workqueue(mvotg->qwork); |
| 852 | 851 | ||
| 853 | platform_set_drvdata(pdev, NULL); | ||
| 854 | |||
| 855 | return retval; | 852 | return retval; |
| 856 | } | 853 | } |
| 857 | 854 | ||
diff --git a/drivers/usb/phy/phy-mxs-usb.c b/drivers/usb/phy/phy-mxs-usb.c index eb25dd2a1429..bd601c537c8d 100644 --- a/drivers/usb/phy/phy-mxs-usb.c +++ b/drivers/usb/phy/phy-mxs-usb.c | |||
| @@ -155,6 +155,7 @@ static int mxs_phy_probe(struct platform_device *pdev) | |||
| 155 | mxs_phy->phy.set_suspend = mxs_phy_suspend; | 155 | mxs_phy->phy.set_suspend = mxs_phy_suspend; |
| 156 | mxs_phy->phy.notify_connect = mxs_phy_on_connect; | 156 | mxs_phy->phy.notify_connect = mxs_phy_on_connect; |
| 157 | mxs_phy->phy.notify_disconnect = mxs_phy_on_disconnect; | 157 | mxs_phy->phy.notify_disconnect = mxs_phy_on_disconnect; |
| 158 | mxs_phy->phy.type = USB_PHY_TYPE_USB2; | ||
| 158 | 159 | ||
| 159 | ATOMIC_INIT_NOTIFIER_HEAD(&mxs_phy->phy.notifier); | 160 | ATOMIC_INIT_NOTIFIER_HEAD(&mxs_phy->phy.notifier); |
| 160 | 161 | ||
| @@ -175,8 +176,6 @@ static int mxs_phy_remove(struct platform_device *pdev) | |||
| 175 | 176 | ||
| 176 | usb_remove_phy(&mxs_phy->phy); | 177 | usb_remove_phy(&mxs_phy->phy); |
| 177 | 178 | ||
| 178 | platform_set_drvdata(pdev, NULL); | ||
| 179 | |||
| 180 | return 0; | 179 | return 0; |
| 181 | } | 180 | } |
| 182 | 181 | ||
diff --git a/drivers/usb/phy/phy-nop.c b/drivers/usb/phy/phy-nop.c index 2b10cc969bbb..638cc5dade35 100644 --- a/drivers/usb/phy/phy-nop.c +++ b/drivers/usb/phy/phy-nop.c | |||
| @@ -254,8 +254,6 @@ static int nop_usb_xceiv_remove(struct platform_device *pdev) | |||
| 254 | 254 | ||
| 255 | usb_remove_phy(&nop->phy); | 255 | usb_remove_phy(&nop->phy); |
| 256 | 256 | ||
| 257 | platform_set_drvdata(pdev, NULL); | ||
| 258 | |||
| 259 | return 0; | 257 | return 0; |
| 260 | } | 258 | } |
| 261 | 259 | ||
diff --git a/drivers/usb/serial/ftdi_sio.c b/drivers/usb/serial/ftdi_sio.c index 242b5776648a..7260ec660347 100644 --- a/drivers/usb/serial/ftdi_sio.c +++ b/drivers/usb/serial/ftdi_sio.c | |||
| @@ -189,6 +189,8 @@ static struct usb_device_id id_table_combined [] = { | |||
| 189 | { USB_DEVICE(FTDI_VID, FTDI_OPENDCC_GBM_PID) }, | 189 | { USB_DEVICE(FTDI_VID, FTDI_OPENDCC_GBM_PID) }, |
| 190 | { USB_DEVICE(FTDI_VID, FTDI_OPENDCC_GBM_BOOST_PID) }, | 190 | { USB_DEVICE(FTDI_VID, FTDI_OPENDCC_GBM_BOOST_PID) }, |
| 191 | { USB_DEVICE(NEWPORT_VID, NEWPORT_AGILIS_PID) }, | 191 | { USB_DEVICE(NEWPORT_VID, NEWPORT_AGILIS_PID) }, |
| 192 | { USB_DEVICE(NEWPORT_VID, NEWPORT_CONEX_CC_PID) }, | ||
| 193 | { USB_DEVICE(NEWPORT_VID, NEWPORT_CONEX_AGP_PID) }, | ||
| 192 | { USB_DEVICE(INTERBIOMETRICS_VID, INTERBIOMETRICS_IOBOARD_PID) }, | 194 | { USB_DEVICE(INTERBIOMETRICS_VID, INTERBIOMETRICS_IOBOARD_PID) }, |
| 193 | { USB_DEVICE(INTERBIOMETRICS_VID, INTERBIOMETRICS_MINI_IOBOARD_PID) }, | 195 | { USB_DEVICE(INTERBIOMETRICS_VID, INTERBIOMETRICS_MINI_IOBOARD_PID) }, |
| 194 | { USB_DEVICE(FTDI_VID, FTDI_SPROG_II) }, | 196 | { USB_DEVICE(FTDI_VID, FTDI_SPROG_II) }, |
| @@ -924,8 +926,8 @@ static int ftdi_tiocmset(struct tty_struct *tty, | |||
| 924 | static int ftdi_ioctl(struct tty_struct *tty, | 926 | static int ftdi_ioctl(struct tty_struct *tty, |
| 925 | unsigned int cmd, unsigned long arg); | 927 | unsigned int cmd, unsigned long arg); |
| 926 | static void ftdi_break_ctl(struct tty_struct *tty, int break_state); | 928 | static void ftdi_break_ctl(struct tty_struct *tty, int break_state); |
| 927 | static int ftdi_chars_in_buffer(struct tty_struct *tty); | 929 | static bool ftdi_tx_empty(struct usb_serial_port *port); |
| 928 | static int ftdi_get_modem_status(struct tty_struct *tty, | 930 | static int ftdi_get_modem_status(struct usb_serial_port *port, |
| 929 | unsigned char status[2]); | 931 | unsigned char status[2]); |
| 930 | 932 | ||
| 931 | static unsigned short int ftdi_232am_baud_base_to_divisor(int baud, int base); | 933 | static unsigned short int ftdi_232am_baud_base_to_divisor(int baud, int base); |
| @@ -961,7 +963,7 @@ static struct usb_serial_driver ftdi_sio_device = { | |||
| 961 | .ioctl = ftdi_ioctl, | 963 | .ioctl = ftdi_ioctl, |
| 962 | .set_termios = ftdi_set_termios, | 964 | .set_termios = ftdi_set_termios, |
| 963 | .break_ctl = ftdi_break_ctl, | 965 | .break_ctl = ftdi_break_ctl, |
| 964 | .chars_in_buffer = ftdi_chars_in_buffer, | 966 | .tx_empty = ftdi_tx_empty, |
| 965 | }; | 967 | }; |
| 966 | 968 | ||
| 967 | static struct usb_serial_driver * const serial_drivers[] = { | 969 | static struct usb_serial_driver * const serial_drivers[] = { |
| @@ -2056,27 +2058,18 @@ static void ftdi_break_ctl(struct tty_struct *tty, int break_state) | |||
| 2056 | 2058 | ||
| 2057 | } | 2059 | } |
| 2058 | 2060 | ||
| 2059 | static int ftdi_chars_in_buffer(struct tty_struct *tty) | 2061 | static bool ftdi_tx_empty(struct usb_serial_port *port) |
| 2060 | { | 2062 | { |
| 2061 | struct usb_serial_port *port = tty->driver_data; | ||
| 2062 | int chars; | ||
| 2063 | unsigned char buf[2]; | 2063 | unsigned char buf[2]; |
| 2064 | int ret; | 2064 | int ret; |
| 2065 | 2065 | ||
| 2066 | chars = usb_serial_generic_chars_in_buffer(tty); | 2066 | ret = ftdi_get_modem_status(port, buf); |
| 2067 | if (chars) | ||
| 2068 | goto out; | ||
| 2069 | |||
| 2070 | /* Check if hardware buffer is empty. */ | ||
| 2071 | ret = ftdi_get_modem_status(tty, buf); | ||
| 2072 | if (ret == 2) { | 2067 | if (ret == 2) { |
| 2073 | if (!(buf[1] & FTDI_RS_TEMT)) | 2068 | if (!(buf[1] & FTDI_RS_TEMT)) |
| 2074 | chars = 1; | 2069 | return false; |
| 2075 | } | 2070 | } |
| 2076 | out: | ||
| 2077 | dev_dbg(&port->dev, "%s - %d\n", __func__, chars); | ||
| 2078 | 2071 | ||
| 2079 | return chars; | 2072 | return true; |
| 2080 | } | 2073 | } |
| 2081 | 2074 | ||
| 2082 | /* old_termios contains the original termios settings and tty->termios contains | 2075 | /* old_termios contains the original termios settings and tty->termios contains |
| @@ -2268,10 +2261,9 @@ no_c_cflag_changes: | |||
| 2268 | * Returns the number of status bytes retrieved (device dependant), or | 2261 | * Returns the number of status bytes retrieved (device dependant), or |
| 2269 | * negative error code. | 2262 | * negative error code. |
| 2270 | */ | 2263 | */ |
| 2271 | static int ftdi_get_modem_status(struct tty_struct *tty, | 2264 | static int ftdi_get_modem_status(struct usb_serial_port *port, |
| 2272 | unsigned char status[2]) | 2265 | unsigned char status[2]) |
| 2273 | { | 2266 | { |
| 2274 | struct usb_serial_port *port = tty->driver_data; | ||
| 2275 | struct ftdi_private *priv = usb_get_serial_port_data(port); | 2267 | struct ftdi_private *priv = usb_get_serial_port_data(port); |
| 2276 | unsigned char *buf; | 2268 | unsigned char *buf; |
| 2277 | int len; | 2269 | int len; |
| @@ -2336,7 +2328,7 @@ static int ftdi_tiocmget(struct tty_struct *tty) | |||
| 2336 | unsigned char buf[2]; | 2328 | unsigned char buf[2]; |
| 2337 | int ret; | 2329 | int ret; |
| 2338 | 2330 | ||
| 2339 | ret = ftdi_get_modem_status(tty, buf); | 2331 | ret = ftdi_get_modem_status(port, buf); |
| 2340 | if (ret < 0) | 2332 | if (ret < 0) |
| 2341 | return ret; | 2333 | return ret; |
| 2342 | 2334 | ||
diff --git a/drivers/usb/serial/ftdi_sio_ids.h b/drivers/usb/serial/ftdi_sio_ids.h index 98528270c43c..6dd79253205d 100644 --- a/drivers/usb/serial/ftdi_sio_ids.h +++ b/drivers/usb/serial/ftdi_sio_ids.h | |||
| @@ -772,6 +772,8 @@ | |||
| 772 | */ | 772 | */ |
| 773 | #define NEWPORT_VID 0x104D | 773 | #define NEWPORT_VID 0x104D |
| 774 | #define NEWPORT_AGILIS_PID 0x3000 | 774 | #define NEWPORT_AGILIS_PID 0x3000 |
| 775 | #define NEWPORT_CONEX_CC_PID 0x3002 | ||
| 776 | #define NEWPORT_CONEX_AGP_PID 0x3006 | ||
| 775 | 777 | ||
| 776 | /* Interbiometrics USB I/O Board */ | 778 | /* Interbiometrics USB I/O Board */ |
| 777 | /* Developed for Interbiometrics by Rudolf Gugler */ | 779 | /* Developed for Interbiometrics by Rudolf Gugler */ |
diff --git a/drivers/usb/serial/generic.c b/drivers/usb/serial/generic.c index 297665fdd16d..ba45170c78e5 100644 --- a/drivers/usb/serial/generic.c +++ b/drivers/usb/serial/generic.c | |||
| @@ -253,6 +253,37 @@ int usb_serial_generic_chars_in_buffer(struct tty_struct *tty) | |||
| 253 | } | 253 | } |
| 254 | EXPORT_SYMBOL_GPL(usb_serial_generic_chars_in_buffer); | 254 | EXPORT_SYMBOL_GPL(usb_serial_generic_chars_in_buffer); |
| 255 | 255 | ||
| 256 | void usb_serial_generic_wait_until_sent(struct tty_struct *tty, long timeout) | ||
| 257 | { | ||
| 258 | struct usb_serial_port *port = tty->driver_data; | ||
| 259 | unsigned int bps; | ||
| 260 | unsigned long period; | ||
| 261 | unsigned long expire; | ||
| 262 | |||
| 263 | bps = tty_get_baud_rate(tty); | ||
| 264 | if (!bps) | ||
| 265 | bps = 9600; /* B0 */ | ||
| 266 | /* | ||
| 267 | * Use a poll-period of roughly the time it takes to send one | ||
| 268 | * character or at least one jiffy. | ||
| 269 | */ | ||
| 270 | period = max_t(unsigned long, (10 * HZ / bps), 1); | ||
| 271 | period = min_t(unsigned long, period, timeout); | ||
| 272 | |||
| 273 | dev_dbg(&port->dev, "%s - timeout = %u ms, period = %u ms\n", | ||
| 274 | __func__, jiffies_to_msecs(timeout), | ||
| 275 | jiffies_to_msecs(period)); | ||
| 276 | expire = jiffies + timeout; | ||
| 277 | while (!port->serial->type->tx_empty(port)) { | ||
| 278 | schedule_timeout_interruptible(period); | ||
| 279 | if (signal_pending(current)) | ||
| 280 | break; | ||
| 281 | if (time_after(jiffies, expire)) | ||
| 282 | break; | ||
| 283 | } | ||
| 284 | } | ||
| 285 | EXPORT_SYMBOL_GPL(usb_serial_generic_wait_until_sent); | ||
| 286 | |||
| 256 | static int usb_serial_generic_submit_read_urb(struct usb_serial_port *port, | 287 | static int usb_serial_generic_submit_read_urb(struct usb_serial_port *port, |
| 257 | int index, gfp_t mem_flags) | 288 | int index, gfp_t mem_flags) |
| 258 | { | 289 | { |
diff --git a/drivers/usb/serial/io_ti.c b/drivers/usb/serial/io_ti.c index 158bf4bc29cc..1be6ba7bee27 100644 --- a/drivers/usb/serial/io_ti.c +++ b/drivers/usb/serial/io_ti.c | |||
| @@ -2019,8 +2019,6 @@ static int edge_chars_in_buffer(struct tty_struct *tty) | |||
| 2019 | struct edgeport_port *edge_port = usb_get_serial_port_data(port); | 2019 | struct edgeport_port *edge_port = usb_get_serial_port_data(port); |
| 2020 | int chars = 0; | 2020 | int chars = 0; |
| 2021 | unsigned long flags; | 2021 | unsigned long flags; |
| 2022 | int ret; | ||
| 2023 | |||
| 2024 | if (edge_port == NULL) | 2022 | if (edge_port == NULL) |
| 2025 | return 0; | 2023 | return 0; |
| 2026 | 2024 | ||
| @@ -2028,16 +2026,22 @@ static int edge_chars_in_buffer(struct tty_struct *tty) | |||
| 2028 | chars = kfifo_len(&edge_port->write_fifo); | 2026 | chars = kfifo_len(&edge_port->write_fifo); |
| 2029 | spin_unlock_irqrestore(&edge_port->ep_lock, flags); | 2027 | spin_unlock_irqrestore(&edge_port->ep_lock, flags); |
| 2030 | 2028 | ||
| 2031 | if (!chars) { | ||
| 2032 | ret = tx_active(edge_port); | ||
| 2033 | if (ret > 0) | ||
| 2034 | chars = ret; | ||
| 2035 | } | ||
| 2036 | |||
| 2037 | dev_dbg(&port->dev, "%s - returns %d\n", __func__, chars); | 2029 | dev_dbg(&port->dev, "%s - returns %d\n", __func__, chars); |
| 2038 | return chars; | 2030 | return chars; |
| 2039 | } | 2031 | } |
| 2040 | 2032 | ||
| 2033 | static bool edge_tx_empty(struct usb_serial_port *port) | ||
| 2034 | { | ||
| 2035 | struct edgeport_port *edge_port = usb_get_serial_port_data(port); | ||
| 2036 | int ret; | ||
| 2037 | |||
| 2038 | ret = tx_active(edge_port); | ||
| 2039 | if (ret > 0) | ||
| 2040 | return false; | ||
| 2041 | |||
| 2042 | return true; | ||
| 2043 | } | ||
| 2044 | |||
| 2041 | static void edge_throttle(struct tty_struct *tty) | 2045 | static void edge_throttle(struct tty_struct *tty) |
| 2042 | { | 2046 | { |
| 2043 | struct usb_serial_port *port = tty->driver_data; | 2047 | struct usb_serial_port *port = tty->driver_data; |
| @@ -2557,6 +2561,7 @@ static struct usb_serial_driver edgeport_1port_device = { | |||
| 2557 | .write = edge_write, | 2561 | .write = edge_write, |
| 2558 | .write_room = edge_write_room, | 2562 | .write_room = edge_write_room, |
| 2559 | .chars_in_buffer = edge_chars_in_buffer, | 2563 | .chars_in_buffer = edge_chars_in_buffer, |
| 2564 | .tx_empty = edge_tx_empty, | ||
| 2560 | .break_ctl = edge_break, | 2565 | .break_ctl = edge_break, |
| 2561 | .read_int_callback = edge_interrupt_callback, | 2566 | .read_int_callback = edge_interrupt_callback, |
| 2562 | .read_bulk_callback = edge_bulk_in_callback, | 2567 | .read_bulk_callback = edge_bulk_in_callback, |
| @@ -2589,6 +2594,7 @@ static struct usb_serial_driver edgeport_2port_device = { | |||
| 2589 | .write = edge_write, | 2594 | .write = edge_write, |
| 2590 | .write_room = edge_write_room, | 2595 | .write_room = edge_write_room, |
| 2591 | .chars_in_buffer = edge_chars_in_buffer, | 2596 | .chars_in_buffer = edge_chars_in_buffer, |
| 2597 | .tx_empty = edge_tx_empty, | ||
| 2592 | .break_ctl = edge_break, | 2598 | .break_ctl = edge_break, |
| 2593 | .read_int_callback = edge_interrupt_callback, | 2599 | .read_int_callback = edge_interrupt_callback, |
| 2594 | .read_bulk_callback = edge_bulk_in_callback, | 2600 | .read_bulk_callback = edge_bulk_in_callback, |
diff --git a/drivers/usb/serial/option.c b/drivers/usb/serial/option.c index 734372846abb..93d02bc4eb52 100644 --- a/drivers/usb/serial/option.c +++ b/drivers/usb/serial/option.c | |||
| @@ -196,6 +196,7 @@ static void option_instat_callback(struct urb *urb); | |||
| 196 | 196 | ||
| 197 | #define DELL_PRODUCT_5800_MINICARD_VZW 0x8195 /* Novatel E362 */ | 197 | #define DELL_PRODUCT_5800_MINICARD_VZW 0x8195 /* Novatel E362 */ |
| 198 | #define DELL_PRODUCT_5800_V2_MINICARD_VZW 0x8196 /* Novatel E362 */ | 198 | #define DELL_PRODUCT_5800_V2_MINICARD_VZW 0x8196 /* Novatel E362 */ |
| 199 | #define DELL_PRODUCT_5804_MINICARD_ATT 0x819b /* Novatel E371 */ | ||
| 199 | 200 | ||
| 200 | #define KYOCERA_VENDOR_ID 0x0c88 | 201 | #define KYOCERA_VENDOR_ID 0x0c88 |
| 201 | #define KYOCERA_PRODUCT_KPC650 0x17da | 202 | #define KYOCERA_PRODUCT_KPC650 0x17da |
| @@ -341,8 +342,8 @@ static void option_instat_callback(struct urb *urb); | |||
| 341 | #define CINTERION_PRODUCT_EU3_E 0x0051 | 342 | #define CINTERION_PRODUCT_EU3_E 0x0051 |
| 342 | #define CINTERION_PRODUCT_EU3_P 0x0052 | 343 | #define CINTERION_PRODUCT_EU3_P 0x0052 |
| 343 | #define CINTERION_PRODUCT_PH8 0x0053 | 344 | #define CINTERION_PRODUCT_PH8 0x0053 |
| 344 | #define CINTERION_PRODUCT_AH6 0x0055 | 345 | #define CINTERION_PRODUCT_AHXX 0x0055 |
| 345 | #define CINTERION_PRODUCT_PLS8 0x0060 | 346 | #define CINTERION_PRODUCT_PLXX 0x0060 |
| 346 | 347 | ||
| 347 | /* Olivetti products */ | 348 | /* Olivetti products */ |
| 348 | #define OLIVETTI_VENDOR_ID 0x0b3c | 349 | #define OLIVETTI_VENDOR_ID 0x0b3c |
| @@ -771,6 +772,7 @@ static const struct usb_device_id option_ids[] = { | |||
| 771 | { USB_DEVICE(DELL_VENDOR_ID, DELL_PRODUCT_5730_MINICARD_VZW) }, /* Dell Wireless 5730 Mobile Broadband EVDO/HSPA Mini-Card */ | 772 | { USB_DEVICE(DELL_VENDOR_ID, DELL_PRODUCT_5730_MINICARD_VZW) }, /* Dell Wireless 5730 Mobile Broadband EVDO/HSPA Mini-Card */ |
| 772 | { USB_DEVICE_AND_INTERFACE_INFO(DELL_VENDOR_ID, DELL_PRODUCT_5800_MINICARD_VZW, 0xff, 0xff, 0xff) }, | 773 | { USB_DEVICE_AND_INTERFACE_INFO(DELL_VENDOR_ID, DELL_PRODUCT_5800_MINICARD_VZW, 0xff, 0xff, 0xff) }, |
| 773 | { USB_DEVICE_AND_INTERFACE_INFO(DELL_VENDOR_ID, DELL_PRODUCT_5800_V2_MINICARD_VZW, 0xff, 0xff, 0xff) }, | 774 | { USB_DEVICE_AND_INTERFACE_INFO(DELL_VENDOR_ID, DELL_PRODUCT_5800_V2_MINICARD_VZW, 0xff, 0xff, 0xff) }, |
| 775 | { USB_DEVICE_AND_INTERFACE_INFO(DELL_VENDOR_ID, DELL_PRODUCT_5804_MINICARD_ATT, 0xff, 0xff, 0xff) }, | ||
| 774 | { USB_DEVICE(ANYDATA_VENDOR_ID, ANYDATA_PRODUCT_ADU_E100A) }, /* ADU-E100, ADU-310 */ | 776 | { USB_DEVICE(ANYDATA_VENDOR_ID, ANYDATA_PRODUCT_ADU_E100A) }, /* ADU-E100, ADU-310 */ |
| 775 | { USB_DEVICE(ANYDATA_VENDOR_ID, ANYDATA_PRODUCT_ADU_500A) }, | 777 | { USB_DEVICE(ANYDATA_VENDOR_ID, ANYDATA_PRODUCT_ADU_500A) }, |
| 776 | { USB_DEVICE(ANYDATA_VENDOR_ID, ANYDATA_PRODUCT_ADU_620UW) }, | 778 | { USB_DEVICE(ANYDATA_VENDOR_ID, ANYDATA_PRODUCT_ADU_620UW) }, |
| @@ -966,6 +968,8 @@ static const struct usb_device_id option_ids[] = { | |||
| 966 | .driver_info = (kernel_ulong_t)&net_intf4_blacklist }, | 968 | .driver_info = (kernel_ulong_t)&net_intf4_blacklist }, |
| 967 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0330, 0xff, 0xff, 0xff) }, | 969 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0330, 0xff, 0xff, 0xff) }, |
| 968 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0395, 0xff, 0xff, 0xff) }, | 970 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0395, 0xff, 0xff, 0xff) }, |
| 971 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0412, 0xff, 0xff, 0xff), /* Telewell TW-LTE 4G */ | ||
| 972 | .driver_info = (kernel_ulong_t)&net_intf4_blacklist }, | ||
| 969 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0414, 0xff, 0xff, 0xff) }, | 973 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0414, 0xff, 0xff, 0xff) }, |
| 970 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0417, 0xff, 0xff, 0xff) }, | 974 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0417, 0xff, 0xff, 0xff) }, |
| 971 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x1008, 0xff, 0xff, 0xff), | 975 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x1008, 0xff, 0xff, 0xff), |
| @@ -1264,8 +1268,9 @@ static const struct usb_device_id option_ids[] = { | |||
| 1264 | { USB_DEVICE(CINTERION_VENDOR_ID, CINTERION_PRODUCT_EU3_E) }, | 1268 | { USB_DEVICE(CINTERION_VENDOR_ID, CINTERION_PRODUCT_EU3_E) }, |
| 1265 | { USB_DEVICE(CINTERION_VENDOR_ID, CINTERION_PRODUCT_EU3_P) }, | 1269 | { USB_DEVICE(CINTERION_VENDOR_ID, CINTERION_PRODUCT_EU3_P) }, |
| 1266 | { USB_DEVICE(CINTERION_VENDOR_ID, CINTERION_PRODUCT_PH8) }, | 1270 | { USB_DEVICE(CINTERION_VENDOR_ID, CINTERION_PRODUCT_PH8) }, |
| 1267 | { USB_DEVICE(CINTERION_VENDOR_ID, CINTERION_PRODUCT_AH6) }, | 1271 | { USB_DEVICE(CINTERION_VENDOR_ID, CINTERION_PRODUCT_AHXX) }, |
| 1268 | { USB_DEVICE(CINTERION_VENDOR_ID, CINTERION_PRODUCT_PLS8) }, | 1272 | { USB_DEVICE(CINTERION_VENDOR_ID, CINTERION_PRODUCT_PLXX), |
| 1273 | .driver_info = (kernel_ulong_t)&net_intf4_blacklist }, | ||
| 1269 | { USB_DEVICE(CINTERION_VENDOR_ID, CINTERION_PRODUCT_HC28_MDM) }, | 1274 | { USB_DEVICE(CINTERION_VENDOR_ID, CINTERION_PRODUCT_HC28_MDM) }, |
| 1270 | { USB_DEVICE(CINTERION_VENDOR_ID, CINTERION_PRODUCT_HC28_MDMNET) }, | 1275 | { USB_DEVICE(CINTERION_VENDOR_ID, CINTERION_PRODUCT_HC28_MDMNET) }, |
| 1271 | { USB_DEVICE(SIEMENS_VENDOR_ID, CINTERION_PRODUCT_HC25_MDM) }, | 1276 | { USB_DEVICE(SIEMENS_VENDOR_ID, CINTERION_PRODUCT_HC25_MDM) }, |
diff --git a/drivers/usb/serial/ti_usb_3410_5052.c b/drivers/usb/serial/ti_usb_3410_5052.c index cac47aef2918..c92c5ed4e580 100644 --- a/drivers/usb/serial/ti_usb_3410_5052.c +++ b/drivers/usb/serial/ti_usb_3410_5052.c | |||
| @@ -101,6 +101,7 @@ static int ti_write(struct tty_struct *tty, struct usb_serial_port *port, | |||
| 101 | const unsigned char *data, int count); | 101 | const unsigned char *data, int count); |
| 102 | static int ti_write_room(struct tty_struct *tty); | 102 | static int ti_write_room(struct tty_struct *tty); |
| 103 | static int ti_chars_in_buffer(struct tty_struct *tty); | 103 | static int ti_chars_in_buffer(struct tty_struct *tty); |
| 104 | static bool ti_tx_empty(struct usb_serial_port *port); | ||
| 104 | static void ti_throttle(struct tty_struct *tty); | 105 | static void ti_throttle(struct tty_struct *tty); |
| 105 | static void ti_unthrottle(struct tty_struct *tty); | 106 | static void ti_unthrottle(struct tty_struct *tty); |
| 106 | static int ti_ioctl(struct tty_struct *tty, | 107 | static int ti_ioctl(struct tty_struct *tty, |
| @@ -222,6 +223,7 @@ static struct usb_serial_driver ti_1port_device = { | |||
| 222 | .write = ti_write, | 223 | .write = ti_write, |
| 223 | .write_room = ti_write_room, | 224 | .write_room = ti_write_room, |
| 224 | .chars_in_buffer = ti_chars_in_buffer, | 225 | .chars_in_buffer = ti_chars_in_buffer, |
| 226 | .tx_empty = ti_tx_empty, | ||
| 225 | .throttle = ti_throttle, | 227 | .throttle = ti_throttle, |
| 226 | .unthrottle = ti_unthrottle, | 228 | .unthrottle = ti_unthrottle, |
| 227 | .ioctl = ti_ioctl, | 229 | .ioctl = ti_ioctl, |
| @@ -253,6 +255,7 @@ static struct usb_serial_driver ti_2port_device = { | |||
| 253 | .write = ti_write, | 255 | .write = ti_write, |
| 254 | .write_room = ti_write_room, | 256 | .write_room = ti_write_room, |
| 255 | .chars_in_buffer = ti_chars_in_buffer, | 257 | .chars_in_buffer = ti_chars_in_buffer, |
| 258 | .tx_empty = ti_tx_empty, | ||
| 256 | .throttle = ti_throttle, | 259 | .throttle = ti_throttle, |
| 257 | .unthrottle = ti_unthrottle, | 260 | .unthrottle = ti_unthrottle, |
| 258 | .ioctl = ti_ioctl, | 261 | .ioctl = ti_ioctl, |
| @@ -684,8 +687,6 @@ static int ti_chars_in_buffer(struct tty_struct *tty) | |||
| 684 | struct ti_port *tport = usb_get_serial_port_data(port); | 687 | struct ti_port *tport = usb_get_serial_port_data(port); |
| 685 | int chars = 0; | 688 | int chars = 0; |
| 686 | unsigned long flags; | 689 | unsigned long flags; |
| 687 | int ret; | ||
| 688 | u8 lsr; | ||
| 689 | 690 | ||
| 690 | if (tport == NULL) | 691 | if (tport == NULL) |
| 691 | return 0; | 692 | return 0; |
| @@ -694,16 +695,22 @@ static int ti_chars_in_buffer(struct tty_struct *tty) | |||
| 694 | chars = kfifo_len(&tport->write_fifo); | 695 | chars = kfifo_len(&tport->write_fifo); |
| 695 | spin_unlock_irqrestore(&tport->tp_lock, flags); | 696 | spin_unlock_irqrestore(&tport->tp_lock, flags); |
| 696 | 697 | ||
| 697 | if (!chars) { | ||
| 698 | ret = ti_get_lsr(tport, &lsr); | ||
| 699 | if (!ret && !(lsr & TI_LSR_TX_EMPTY)) | ||
| 700 | chars = 1; | ||
| 701 | } | ||
| 702 | |||
| 703 | dev_dbg(&port->dev, "%s - returns %d\n", __func__, chars); | 698 | dev_dbg(&port->dev, "%s - returns %d\n", __func__, chars); |
| 704 | return chars; | 699 | return chars; |
| 705 | } | 700 | } |
| 706 | 701 | ||
| 702 | static bool ti_tx_empty(struct usb_serial_port *port) | ||
| 703 | { | ||
| 704 | struct ti_port *tport = usb_get_serial_port_data(port); | ||
| 705 | int ret; | ||
| 706 | u8 lsr; | ||
| 707 | |||
| 708 | ret = ti_get_lsr(tport, &lsr); | ||
| 709 | if (!ret && !(lsr & TI_LSR_TX_EMPTY)) | ||
| 710 | return false; | ||
| 711 | |||
| 712 | return true; | ||
| 713 | } | ||
| 707 | 714 | ||
| 708 | static void ti_throttle(struct tty_struct *tty) | 715 | static void ti_throttle(struct tty_struct *tty) |
| 709 | { | 716 | { |
diff --git a/drivers/usb/serial/usb-serial.c b/drivers/usb/serial/usb-serial.c index cf75beb1251b..4753c005cfb6 100644 --- a/drivers/usb/serial/usb-serial.c +++ b/drivers/usb/serial/usb-serial.c | |||
| @@ -359,20 +359,29 @@ static int serial_chars_in_buffer(struct tty_struct *tty) | |||
| 359 | { | 359 | { |
| 360 | struct usb_serial_port *port = tty->driver_data; | 360 | struct usb_serial_port *port = tty->driver_data; |
| 361 | struct usb_serial *serial = port->serial; | 361 | struct usb_serial *serial = port->serial; |
| 362 | int count = 0; | ||
| 363 | 362 | ||
| 364 | dev_dbg(tty->dev, "%s\n", __func__); | 363 | dev_dbg(tty->dev, "%s\n", __func__); |
| 365 | 364 | ||
| 366 | mutex_lock(&serial->disc_mutex); | ||
| 367 | /* if the device was unplugged then any remaining characters | ||
| 368 | fell out of the connector ;) */ | ||
| 369 | if (serial->disconnected) | 365 | if (serial->disconnected) |
| 370 | count = 0; | 366 | return 0; |
| 371 | else | 367 | |
| 372 | count = serial->type->chars_in_buffer(tty); | 368 | return serial->type->chars_in_buffer(tty); |
| 373 | mutex_unlock(&serial->disc_mutex); | 369 | } |
| 370 | |||
| 371 | static void serial_wait_until_sent(struct tty_struct *tty, int timeout) | ||
| 372 | { | ||
| 373 | struct usb_serial_port *port = tty->driver_data; | ||
| 374 | struct usb_serial *serial = port->serial; | ||
| 375 | |||
| 376 | dev_dbg(tty->dev, "%s\n", __func__); | ||
| 377 | |||
| 378 | if (!port->serial->type->wait_until_sent) | ||
| 379 | return; | ||
| 374 | 380 | ||
| 375 | return count; | 381 | mutex_lock(&serial->disc_mutex); |
| 382 | if (!serial->disconnected) | ||
| 383 | port->serial->type->wait_until_sent(tty, timeout); | ||
| 384 | mutex_unlock(&serial->disc_mutex); | ||
| 376 | } | 385 | } |
| 377 | 386 | ||
| 378 | static void serial_throttle(struct tty_struct *tty) | 387 | static void serial_throttle(struct tty_struct *tty) |
| @@ -1191,6 +1200,7 @@ static const struct tty_operations serial_ops = { | |||
| 1191 | .unthrottle = serial_unthrottle, | 1200 | .unthrottle = serial_unthrottle, |
| 1192 | .break_ctl = serial_break, | 1201 | .break_ctl = serial_break, |
| 1193 | .chars_in_buffer = serial_chars_in_buffer, | 1202 | .chars_in_buffer = serial_chars_in_buffer, |
| 1203 | .wait_until_sent = serial_wait_until_sent, | ||
| 1194 | .tiocmget = serial_tiocmget, | 1204 | .tiocmget = serial_tiocmget, |
| 1195 | .tiocmset = serial_tiocmset, | 1205 | .tiocmset = serial_tiocmset, |
| 1196 | .get_icount = serial_get_icount, | 1206 | .get_icount = serial_get_icount, |
| @@ -1316,6 +1326,8 @@ static void usb_serial_operations_init(struct usb_serial_driver *device) | |||
| 1316 | set_to_generic_if_null(device, close); | 1326 | set_to_generic_if_null(device, close); |
| 1317 | set_to_generic_if_null(device, write_room); | 1327 | set_to_generic_if_null(device, write_room); |
| 1318 | set_to_generic_if_null(device, chars_in_buffer); | 1328 | set_to_generic_if_null(device, chars_in_buffer); |
| 1329 | if (device->tx_empty) | ||
| 1330 | set_to_generic_if_null(device, wait_until_sent); | ||
| 1319 | set_to_generic_if_null(device, read_bulk_callback); | 1331 | set_to_generic_if_null(device, read_bulk_callback); |
| 1320 | set_to_generic_if_null(device, write_bulk_callback); | 1332 | set_to_generic_if_null(device, write_bulk_callback); |
| 1321 | set_to_generic_if_null(device, process_read_urb); | 1333 | set_to_generic_if_null(device, process_read_urb); |
diff --git a/drivers/usb/storage/realtek_cr.c b/drivers/usb/storage/realtek_cr.c index 8623577bbbe7..281be56d5648 100644 --- a/drivers/usb/storage/realtek_cr.c +++ b/drivers/usb/storage/realtek_cr.c | |||
| @@ -105,8 +105,9 @@ struct rts51x_chip { | |||
| 105 | int status_len; | 105 | int status_len; |
| 106 | 106 | ||
| 107 | u32 flag; | 107 | u32 flag; |
| 108 | #ifdef CONFIG_REALTEK_AUTOPM | ||
| 109 | struct us_data *us; | 108 | struct us_data *us; |
| 109 | |||
| 110 | #ifdef CONFIG_REALTEK_AUTOPM | ||
| 110 | struct timer_list rts51x_suspend_timer; | 111 | struct timer_list rts51x_suspend_timer; |
| 111 | unsigned long timer_expires; | 112 | unsigned long timer_expires; |
| 112 | int pwr_state; | 113 | int pwr_state; |
| @@ -988,6 +989,7 @@ static int init_realtek_cr(struct us_data *us) | |||
| 988 | us->extra = chip; | 989 | us->extra = chip; |
| 989 | us->extra_destructor = realtek_cr_destructor; | 990 | us->extra_destructor = realtek_cr_destructor; |
| 990 | us->max_lun = chip->max_lun = rts51x_get_max_lun(us); | 991 | us->max_lun = chip->max_lun = rts51x_get_max_lun(us); |
| 992 | chip->us = us; | ||
| 991 | 993 | ||
| 992 | usb_stor_dbg(us, "chip->max_lun = %d\n", chip->max_lun); | 994 | usb_stor_dbg(us, "chip->max_lun = %d\n", chip->max_lun); |
| 993 | 995 | ||
| @@ -1010,10 +1012,8 @@ static int init_realtek_cr(struct us_data *us) | |||
| 1010 | SET_AUTO_DELINK(chip); | 1012 | SET_AUTO_DELINK(chip); |
| 1011 | } | 1013 | } |
| 1012 | #ifdef CONFIG_REALTEK_AUTOPM | 1014 | #ifdef CONFIG_REALTEK_AUTOPM |
| 1013 | if (ss_en) { | 1015 | if (ss_en) |
| 1014 | chip->us = us; | ||
| 1015 | realtek_cr_autosuspend_setup(us); | 1016 | realtek_cr_autosuspend_setup(us); |
| 1016 | } | ||
| 1017 | #endif | 1017 | #endif |
| 1018 | 1018 | ||
| 1019 | usb_stor_dbg(us, "chip->flag = 0x%x\n", chip->flag); | 1019 | usb_stor_dbg(us, "chip->flag = 0x%x\n", chip->flag); |
diff --git a/drivers/video/Kconfig b/drivers/video/Kconfig index d71d60f94fc1..2e937bdace6f 100644 --- a/drivers/video/Kconfig +++ b/drivers/video/Kconfig | |||
| @@ -2199,7 +2199,7 @@ config FB_XILINX | |||
| 2199 | 2199 | ||
| 2200 | config FB_GOLDFISH | 2200 | config FB_GOLDFISH |
| 2201 | tristate "Goldfish Framebuffer" | 2201 | tristate "Goldfish Framebuffer" |
| 2202 | depends on FB | 2202 | depends on FB && HAS_DMA |
| 2203 | select FB_CFB_FILLRECT | 2203 | select FB_CFB_FILLRECT |
| 2204 | select FB_CFB_COPYAREA | 2204 | select FB_CFB_COPYAREA |
| 2205 | select FB_CFB_IMAGEBLIT | 2205 | select FB_CFB_IMAGEBLIT |
| @@ -2453,6 +2453,23 @@ config FB_HYPERV | |||
| 2453 | help | 2453 | help |
| 2454 | This framebuffer driver supports Microsoft Hyper-V Synthetic Video. | 2454 | This framebuffer driver supports Microsoft Hyper-V Synthetic Video. |
| 2455 | 2455 | ||
| 2456 | config FB_SIMPLE | ||
| 2457 | bool "Simple framebuffer support" | ||
| 2458 | depends on (FB = y) && OF | ||
| 2459 | select FB_CFB_FILLRECT | ||
| 2460 | select FB_CFB_COPYAREA | ||
| 2461 | select FB_CFB_IMAGEBLIT | ||
| 2462 | help | ||
| 2463 | Say Y if you want support for a simple frame-buffer. | ||
| 2464 | |||
| 2465 | This driver assumes that the display hardware has been initialized | ||
| 2466 | before the kernel boots, and the kernel will simply render to the | ||
| 2467 | pre-allocated frame buffer surface. | ||
| 2468 | |||
| 2469 | Configuration re: surface address, size, and format must be provided | ||
| 2470 | through device tree, or potentially plain old platform data in the | ||
| 2471 | future. | ||
| 2472 | |||
| 2456 | source "drivers/video/omap/Kconfig" | 2473 | source "drivers/video/omap/Kconfig" |
| 2457 | source "drivers/video/omap2/Kconfig" | 2474 | source "drivers/video/omap2/Kconfig" |
| 2458 | source "drivers/video/exynos/Kconfig" | 2475 | source "drivers/video/exynos/Kconfig" |
diff --git a/drivers/video/Makefile b/drivers/video/Makefile index 7234e4a959e8..e8bae8dd4804 100644 --- a/drivers/video/Makefile +++ b/drivers/video/Makefile | |||
| @@ -166,6 +166,7 @@ obj-$(CONFIG_FB_MX3) += mx3fb.o | |||
| 166 | obj-$(CONFIG_FB_DA8XX) += da8xx-fb.o | 166 | obj-$(CONFIG_FB_DA8XX) += da8xx-fb.o |
| 167 | obj-$(CONFIG_FB_MXS) += mxsfb.o | 167 | obj-$(CONFIG_FB_MXS) += mxsfb.o |
| 168 | obj-$(CONFIG_FB_SSD1307) += ssd1307fb.o | 168 | obj-$(CONFIG_FB_SSD1307) += ssd1307fb.o |
| 169 | obj-$(CONFIG_FB_SIMPLE) += simplefb.o | ||
| 169 | 170 | ||
| 170 | # the test framebuffer is last | 171 | # the test framebuffer is last |
| 171 | obj-$(CONFIG_FB_VIRTUAL) += vfb.o | 172 | obj-$(CONFIG_FB_VIRTUAL) += vfb.o |
diff --git a/drivers/video/console/Makefile b/drivers/video/console/Makefile index a862e9173ebe..48da25c96cd3 100644 --- a/drivers/video/console/Makefile +++ b/drivers/video/console/Makefile | |||
| @@ -18,6 +18,8 @@ font-objs-$(CONFIG_FONT_MINI_4x6) += font_mini_4x6.o | |||
| 18 | 18 | ||
| 19 | font-objs += $(font-objs-y) | 19 | font-objs += $(font-objs-y) |
| 20 | 20 | ||
| 21 | obj-$(CONFIG_FONTS) += font.o | ||
| 22 | |||
| 21 | # Each configuration option enables a list of files. | 23 | # Each configuration option enables a list of files. |
| 22 | 24 | ||
| 23 | obj-$(CONFIG_DUMMY_CONSOLE) += dummycon.o | 25 | obj-$(CONFIG_DUMMY_CONSOLE) += dummycon.o |
diff --git a/drivers/video/simplefb.c b/drivers/video/simplefb.c new file mode 100644 index 000000000000..e2e9e3e61b72 --- /dev/null +++ b/drivers/video/simplefb.c | |||
| @@ -0,0 +1,234 @@ | |||
| 1 | /* | ||
| 2 | * Simplest possible simple frame-buffer driver, as a platform device | ||
| 3 | * | ||
| 4 | * Copyright (c) 2013, Stephen Warren | ||
| 5 | * | ||
| 6 | * Based on q40fb.c, which was: | ||
| 7 | * Copyright (C) 2001 Richard Zidlicky <rz@linux-m68k.org> | ||
| 8 | * | ||
| 9 | * Also based on offb.c, which was: | ||
| 10 | * Copyright (C) 1997 Geert Uytterhoeven | ||
| 11 | * Copyright (C) 1996 Paul Mackerras | ||
| 12 | * | ||
| 13 | * This program is free software; you can redistribute it and/or modify it | ||
| 14 | * under the terms and conditions of the GNU General Public License, | ||
| 15 | * version 2, as published by the Free Software Foundation. | ||
| 16 | * | ||
| 17 | * This program is distributed in the hope it will be useful, but WITHOUT | ||
| 18 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
| 19 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
| 20 | * more details. | ||
| 21 | */ | ||
| 22 | |||
| 23 | #include <linux/errno.h> | ||
| 24 | #include <linux/fb.h> | ||
| 25 | #include <linux/io.h> | ||
| 26 | #include <linux/module.h> | ||
| 27 | #include <linux/platform_device.h> | ||
| 28 | |||
| 29 | static struct fb_fix_screeninfo simplefb_fix = { | ||
| 30 | .id = "simple", | ||
| 31 | .type = FB_TYPE_PACKED_PIXELS, | ||
| 32 | .visual = FB_VISUAL_TRUECOLOR, | ||
| 33 | .accel = FB_ACCEL_NONE, | ||
| 34 | }; | ||
| 35 | |||
| 36 | static struct fb_var_screeninfo simplefb_var = { | ||
| 37 | .height = -1, | ||
| 38 | .width = -1, | ||
| 39 | .activate = FB_ACTIVATE_NOW, | ||
| 40 | .vmode = FB_VMODE_NONINTERLACED, | ||
| 41 | }; | ||
| 42 | |||
| 43 | static int simplefb_setcolreg(u_int regno, u_int red, u_int green, u_int blue, | ||
| 44 | u_int transp, struct fb_info *info) | ||
| 45 | { | ||
| 46 | u32 *pal = info->pseudo_palette; | ||
| 47 | u32 cr = red >> (16 - info->var.red.length); | ||
| 48 | u32 cg = green >> (16 - info->var.green.length); | ||
| 49 | u32 cb = blue >> (16 - info->var.blue.length); | ||
| 50 | u32 value; | ||
| 51 | |||
| 52 | if (regno >= 16) | ||
| 53 | return -EINVAL; | ||
| 54 | |||
| 55 | value = (cr << info->var.red.offset) | | ||
| 56 | (cg << info->var.green.offset) | | ||
| 57 | (cb << info->var.blue.offset); | ||
| 58 | if (info->var.transp.length > 0) { | ||
| 59 | u32 mask = (1 << info->var.transp.length) - 1; | ||
| 60 | mask <<= info->var.transp.offset; | ||
| 61 | value |= mask; | ||
| 62 | } | ||
| 63 | pal[regno] = value; | ||
| 64 | |||
| 65 | return 0; | ||
| 66 | } | ||
| 67 | |||
| 68 | static struct fb_ops simplefb_ops = { | ||
| 69 | .owner = THIS_MODULE, | ||
| 70 | .fb_setcolreg = simplefb_setcolreg, | ||
| 71 | .fb_fillrect = cfb_fillrect, | ||
| 72 | .fb_copyarea = cfb_copyarea, | ||
| 73 | .fb_imageblit = cfb_imageblit, | ||
| 74 | }; | ||
| 75 | |||
| 76 | struct simplefb_format { | ||
| 77 | const char *name; | ||
| 78 | u32 bits_per_pixel; | ||
| 79 | struct fb_bitfield red; | ||
| 80 | struct fb_bitfield green; | ||
| 81 | struct fb_bitfield blue; | ||
| 82 | struct fb_bitfield transp; | ||
| 83 | }; | ||
| 84 | |||
| 85 | static struct simplefb_format simplefb_formats[] = { | ||
| 86 | { "r5g6b5", 16, {11, 5}, {5, 6}, {0, 5}, {0, 0} }, | ||
| 87 | }; | ||
| 88 | |||
| 89 | struct simplefb_params { | ||
| 90 | u32 width; | ||
| 91 | u32 height; | ||
| 92 | u32 stride; | ||
| 93 | struct simplefb_format *format; | ||
| 94 | }; | ||
| 95 | |||
| 96 | static int simplefb_parse_dt(struct platform_device *pdev, | ||
| 97 | struct simplefb_params *params) | ||
| 98 | { | ||
| 99 | struct device_node *np = pdev->dev.of_node; | ||
| 100 | int ret; | ||
| 101 | const char *format; | ||
| 102 | int i; | ||
| 103 | |||
| 104 | ret = of_property_read_u32(np, "width", ¶ms->width); | ||
| 105 | if (ret) { | ||
| 106 | dev_err(&pdev->dev, "Can't parse width property\n"); | ||
| 107 | return ret; | ||
| 108 | } | ||
| 109 | |||
| 110 | ret = of_property_read_u32(np, "height", ¶ms->height); | ||
| 111 | if (ret) { | ||
| 112 | dev_err(&pdev->dev, "Can't parse height property\n"); | ||
| 113 | return ret; | ||
| 114 | } | ||
| 115 | |||
| 116 | ret = of_property_read_u32(np, "stride", ¶ms->stride); | ||
| 117 | if (ret) { | ||
| 118 | dev_err(&pdev->dev, "Can't parse stride property\n"); | ||
| 119 | return ret; | ||
| 120 | } | ||
| 121 | |||
| 122 | ret = of_property_read_string(np, "format", &format); | ||
| 123 | if (ret) { | ||
| 124 | dev_err(&pdev->dev, "Can't parse format property\n"); | ||
| 125 | return ret; | ||
| 126 | } | ||
| 127 | params->format = NULL; | ||
| 128 | for (i = 0; i < ARRAY_SIZE(simplefb_formats); i++) { | ||
| 129 | if (strcmp(format, simplefb_formats[i].name)) | ||
| 130 | continue; | ||
| 131 | params->format = &simplefb_formats[i]; | ||
| 132 | break; | ||
| 133 | } | ||
| 134 | if (!params->format) { | ||
| 135 | dev_err(&pdev->dev, "Invalid format value\n"); | ||
| 136 | return -EINVAL; | ||
| 137 | } | ||
| 138 | |||
| 139 | return 0; | ||
| 140 | } | ||
| 141 | |||
| 142 | static int simplefb_probe(struct platform_device *pdev) | ||
| 143 | { | ||
| 144 | int ret; | ||
| 145 | struct simplefb_params params; | ||
| 146 | struct fb_info *info; | ||
| 147 | struct resource *mem; | ||
| 148 | |||
| 149 | if (fb_get_options("simplefb", NULL)) | ||
| 150 | return -ENODEV; | ||
| 151 | |||
| 152 | ret = simplefb_parse_dt(pdev, ¶ms); | ||
| 153 | if (ret) | ||
| 154 | return ret; | ||
| 155 | |||
| 156 | mem = platform_get_resource(pdev, IORESOURCE_MEM, 0); | ||
| 157 | if (!mem) { | ||
| 158 | dev_err(&pdev->dev, "No memory resource\n"); | ||
| 159 | return -EINVAL; | ||
| 160 | } | ||
| 161 | |||
| 162 | info = framebuffer_alloc(sizeof(u32) * 16, &pdev->dev); | ||
| 163 | if (!info) | ||
| 164 | return -ENOMEM; | ||
| 165 | platform_set_drvdata(pdev, info); | ||
| 166 | |||
| 167 | info->fix = simplefb_fix; | ||
| 168 | info->fix.smem_start = mem->start; | ||
| 169 | info->fix.smem_len = resource_size(mem); | ||
| 170 | info->fix.line_length = params.stride; | ||
| 171 | |||
| 172 | info->var = simplefb_var; | ||
| 173 | info->var.xres = params.width; | ||
| 174 | info->var.yres = params.height; | ||
| 175 | info->var.xres_virtual = params.width; | ||
| 176 | info->var.yres_virtual = params.height; | ||
| 177 | info->var.bits_per_pixel = params.format->bits_per_pixel; | ||
| 178 | info->var.red = params.format->red; | ||
| 179 | info->var.green = params.format->green; | ||
| 180 | info->var.blue = params.format->blue; | ||
| 181 | info->var.transp = params.format->transp; | ||
| 182 | |||
| 183 | info->fbops = &simplefb_ops; | ||
| 184 | info->flags = FBINFO_DEFAULT; | ||
| 185 | info->screen_base = devm_ioremap(&pdev->dev, info->fix.smem_start, | ||
| 186 | info->fix.smem_len); | ||
| 187 | if (!info->screen_base) { | ||
| 188 | framebuffer_release(info); | ||
| 189 | return -ENODEV; | ||
| 190 | } | ||
| 191 | info->pseudo_palette = (void *)(info + 1); | ||
| 192 | |||
| 193 | ret = register_framebuffer(info); | ||
| 194 | if (ret < 0) { | ||
| 195 | dev_err(&pdev->dev, "Unable to register simplefb: %d\n", ret); | ||
| 196 | framebuffer_release(info); | ||
| 197 | return ret; | ||
| 198 | } | ||
| 199 | |||
| 200 | dev_info(&pdev->dev, "fb%d: simplefb registered!\n", info->node); | ||
| 201 | |||
| 202 | return 0; | ||
| 203 | } | ||
| 204 | |||
| 205 | static int simplefb_remove(struct platform_device *pdev) | ||
| 206 | { | ||
| 207 | struct fb_info *info = platform_get_drvdata(pdev); | ||
| 208 | |||
| 209 | unregister_framebuffer(info); | ||
| 210 | framebuffer_release(info); | ||
| 211 | |||
| 212 | return 0; | ||
| 213 | } | ||
| 214 | |||
| 215 | static const struct of_device_id simplefb_of_match[] = { | ||
| 216 | { .compatible = "simple-framebuffer", }, | ||
| 217 | { }, | ||
| 218 | }; | ||
| 219 | MODULE_DEVICE_TABLE(of, simplefb_of_match); | ||
| 220 | |||
| 221 | static struct platform_driver simplefb_driver = { | ||
| 222 | .driver = { | ||
| 223 | .name = "simple-framebuffer", | ||
| 224 | .owner = THIS_MODULE, | ||
| 225 | .of_match_table = simplefb_of_match, | ||
| 226 | }, | ||
| 227 | .probe = simplefb_probe, | ||
| 228 | .remove = simplefb_remove, | ||
| 229 | }; | ||
| 230 | module_platform_driver(simplefb_driver); | ||
| 231 | |||
| 232 | MODULE_AUTHOR("Stephen Warren <swarren@wwwdotorg.org>"); | ||
| 233 | MODULE_DESCRIPTION("Simple framebuffer driver"); | ||
| 234 | MODULE_LICENSE("GPL v2"); | ||
| @@ -307,7 +307,9 @@ static void free_ioctx(struct kioctx *ctx) | |||
| 307 | kunmap_atomic(ring); | 307 | kunmap_atomic(ring); |
| 308 | 308 | ||
| 309 | while (atomic_read(&ctx->reqs_active) > 0) { | 309 | while (atomic_read(&ctx->reqs_active) > 0) { |
| 310 | wait_event(ctx->wait, head != ctx->tail); | 310 | wait_event(ctx->wait, |
| 311 | head != ctx->tail || | ||
| 312 | atomic_read(&ctx->reqs_active) <= 0); | ||
| 311 | 313 | ||
| 312 | avail = (head <= ctx->tail ? ctx->tail : ctx->nr_events) - head; | 314 | avail = (head <= ctx->tail ? ctx->tail : ctx->nr_events) - head; |
| 313 | 315 | ||
| @@ -1299,8 +1301,7 @@ SYSCALL_DEFINE3(io_cancel, aio_context_t, ctx_id, struct iocb __user *, iocb, | |||
| 1299 | * < min_nr if the timeout specified by timeout has elapsed | 1301 | * < min_nr if the timeout specified by timeout has elapsed |
| 1300 | * before sufficient events are available, where timeout == NULL | 1302 | * before sufficient events are available, where timeout == NULL |
| 1301 | * specifies an infinite timeout. Note that the timeout pointed to by | 1303 | * specifies an infinite timeout. Note that the timeout pointed to by |
| 1302 | * timeout is relative and will be updated if not NULL and the | 1304 | * timeout is relative. Will fail with -ENOSYS if not implemented. |
| 1303 | * operation blocks. Will fail with -ENOSYS if not implemented. | ||
| 1304 | */ | 1305 | */ |
| 1305 | SYSCALL_DEFINE5(io_getevents, aio_context_t, ctx_id, | 1306 | SYSCALL_DEFINE5(io_getevents, aio_context_t, ctx_id, |
| 1306 | long, min_nr, | 1307 | long, min_nr, |
diff --git a/fs/cifs/inode.c b/fs/cifs/inode.c index fc3025199cb3..20efd81266c6 100644 --- a/fs/cifs/inode.c +++ b/fs/cifs/inode.c | |||
| @@ -171,7 +171,8 @@ cifs_fattr_to_inode(struct inode *inode, struct cifs_fattr *fattr) | |||
| 171 | 171 | ||
| 172 | if (fattr->cf_flags & CIFS_FATTR_DFS_REFERRAL) | 172 | if (fattr->cf_flags & CIFS_FATTR_DFS_REFERRAL) |
| 173 | inode->i_flags |= S_AUTOMOUNT; | 173 | inode->i_flags |= S_AUTOMOUNT; |
| 174 | cifs_set_ops(inode); | 174 | if (inode->i_state & I_NEW) |
| 175 | cifs_set_ops(inode); | ||
| 175 | } | 176 | } |
| 176 | 177 | ||
| 177 | void | 178 | void |
diff --git a/fs/fat/inode.c b/fs/fat/inode.c index dfce656ddb33..5d4513cb1b3c 100644 --- a/fs/fat/inode.c +++ b/fs/fat/inode.c | |||
| @@ -1229,6 +1229,19 @@ static int fat_read_root(struct inode *inode) | |||
| 1229 | return 0; | 1229 | return 0; |
| 1230 | } | 1230 | } |
| 1231 | 1231 | ||
| 1232 | static unsigned long calc_fat_clusters(struct super_block *sb) | ||
| 1233 | { | ||
| 1234 | struct msdos_sb_info *sbi = MSDOS_SB(sb); | ||
| 1235 | |||
| 1236 | /* Divide first to avoid overflow */ | ||
| 1237 | if (sbi->fat_bits != 12) { | ||
| 1238 | unsigned long ent_per_sec = sb->s_blocksize * 8 / sbi->fat_bits; | ||
| 1239 | return ent_per_sec * sbi->fat_length; | ||
| 1240 | } | ||
| 1241 | |||
| 1242 | return sbi->fat_length * sb->s_blocksize * 8 / sbi->fat_bits; | ||
| 1243 | } | ||
| 1244 | |||
| 1232 | /* | 1245 | /* |
| 1233 | * Read the super block of an MS-DOS FS. | 1246 | * Read the super block of an MS-DOS FS. |
| 1234 | */ | 1247 | */ |
| @@ -1434,7 +1447,7 @@ int fat_fill_super(struct super_block *sb, void *data, int silent, int isvfat, | |||
| 1434 | sbi->dirty = b->fat16.state & FAT_STATE_DIRTY; | 1447 | sbi->dirty = b->fat16.state & FAT_STATE_DIRTY; |
| 1435 | 1448 | ||
| 1436 | /* check that FAT table does not overflow */ | 1449 | /* check that FAT table does not overflow */ |
| 1437 | fat_clusters = sbi->fat_length * sb->s_blocksize * 8 / sbi->fat_bits; | 1450 | fat_clusters = calc_fat_clusters(sb); |
| 1438 | total_clusters = min(total_clusters, fat_clusters - FAT_START_ENT); | 1451 | total_clusters = min(total_clusters, fat_clusters - FAT_START_ENT); |
| 1439 | if (total_clusters > MAX_FAT(sb)) { | 1452 | if (total_clusters > MAX_FAT(sb)) { |
| 1440 | if (!silent) | 1453 | if (!silent) |
diff --git a/fs/gfs2/Kconfig b/fs/gfs2/Kconfig index eb08c9e43c2a..5a376ab81feb 100644 --- a/fs/gfs2/Kconfig +++ b/fs/gfs2/Kconfig | |||
| @@ -26,7 +26,7 @@ config GFS2_FS | |||
| 26 | config GFS2_FS_LOCKING_DLM | 26 | config GFS2_FS_LOCKING_DLM |
| 27 | bool "GFS2 DLM locking" | 27 | bool "GFS2 DLM locking" |
| 28 | depends on (GFS2_FS!=n) && NET && INET && (IPV6 || IPV6=n) && \ | 28 | depends on (GFS2_FS!=n) && NET && INET && (IPV6 || IPV6=n) && \ |
| 29 | HOTPLUG && DLM && CONFIGFS_FS && SYSFS | 29 | HOTPLUG && CONFIGFS_FS && SYSFS && (DLM=y || DLM=GFS2_FS) |
| 30 | help | 30 | help |
| 31 | Multiple node locking module for GFS2 | 31 | Multiple node locking module for GFS2 |
| 32 | 32 | ||
diff --git a/fs/gfs2/lops.c b/fs/gfs2/lops.c index c5fa758fd844..68b4c8f1fce8 100644 --- a/fs/gfs2/lops.c +++ b/fs/gfs2/lops.c | |||
| @@ -212,7 +212,7 @@ static void gfs2_end_log_write(struct bio *bio, int error) | |||
| 212 | fs_err(sdp, "Error %d writing to log\n", error); | 212 | fs_err(sdp, "Error %d writing to log\n", error); |
| 213 | } | 213 | } |
| 214 | 214 | ||
| 215 | bio_for_each_segment(bvec, bio, i) { | 215 | bio_for_each_segment_all(bvec, bio, i) { |
| 216 | page = bvec->bv_page; | 216 | page = bvec->bv_page; |
| 217 | if (page_has_buffers(page)) | 217 | if (page_has_buffers(page)) |
| 218 | gfs2_end_log_write_bh(sdp, bvec, error); | 218 | gfs2_end_log_write_bh(sdp, bvec, error); |
diff --git a/fs/gfs2/quota.c b/fs/gfs2/quota.c index c7c840e916f8..c253b13722e8 100644 --- a/fs/gfs2/quota.c +++ b/fs/gfs2/quota.c | |||
| @@ -121,7 +121,7 @@ static u64 qd2index(struct gfs2_quota_data *qd) | |||
| 121 | { | 121 | { |
| 122 | struct kqid qid = qd->qd_id; | 122 | struct kqid qid = qd->qd_id; |
| 123 | return (2 * (u64)from_kqid(&init_user_ns, qid)) + | 123 | return (2 * (u64)from_kqid(&init_user_ns, qid)) + |
| 124 | (qid.type == USRQUOTA) ? 0 : 1; | 124 | ((qid.type == USRQUOTA) ? 0 : 1); |
| 125 | } | 125 | } |
| 126 | 126 | ||
| 127 | static u64 qd2offset(struct gfs2_quota_data *qd) | 127 | static u64 qd2offset(struct gfs2_quota_data *qd) |
| @@ -721,7 +721,7 @@ get_a_page: | |||
| 721 | goto unlock_out; | 721 | goto unlock_out; |
| 722 | } | 722 | } |
| 723 | 723 | ||
| 724 | gfs2_trans_add_meta(ip->i_gl, bh); | 724 | gfs2_trans_add_data(ip->i_gl, bh); |
| 725 | 725 | ||
| 726 | kaddr = kmap_atomic(page); | 726 | kaddr = kmap_atomic(page); |
| 727 | if (offset + sizeof(struct gfs2_quota) > PAGE_CACHE_SIZE) | 727 | if (offset + sizeof(struct gfs2_quota) > PAGE_CACHE_SIZE) |
diff --git a/fs/gfs2/rgrp.c b/fs/gfs2/rgrp.c index 0c5a575b513e..5232525934ae 100644 --- a/fs/gfs2/rgrp.c +++ b/fs/gfs2/rgrp.c | |||
| @@ -1401,9 +1401,14 @@ static void rg_mblk_search(struct gfs2_rgrpd *rgd, struct gfs2_inode *ip, | |||
| 1401 | u32 extlen; | 1401 | u32 extlen; |
| 1402 | u32 free_blocks = rgd->rd_free_clone - rgd->rd_reserved; | 1402 | u32 free_blocks = rgd->rd_free_clone - rgd->rd_reserved; |
| 1403 | int ret; | 1403 | int ret; |
| 1404 | struct inode *inode = &ip->i_inode; | ||
| 1404 | 1405 | ||
| 1405 | extlen = max_t(u32, atomic_read(&rs->rs_sizehint), requested); | 1406 | if (S_ISDIR(inode->i_mode)) |
| 1406 | extlen = clamp(extlen, RGRP_RSRV_MINBLKS, free_blocks); | 1407 | extlen = 1; |
| 1408 | else { | ||
| 1409 | extlen = max_t(u32, atomic_read(&rs->rs_sizehint), requested); | ||
| 1410 | extlen = clamp(extlen, RGRP_RSRV_MINBLKS, free_blocks); | ||
| 1411 | } | ||
| 1407 | if ((rgd->rd_free_clone < rgd->rd_reserved) || (free_blocks < extlen)) | 1412 | if ((rgd->rd_free_clone < rgd->rd_reserved) || (free_blocks < extlen)) |
| 1408 | return; | 1413 | return; |
| 1409 | 1414 | ||
diff --git a/fs/hfs/bnode.c b/fs/hfs/bnode.c index f3b1a15ccd59..d3fa6bd9503e 100644 --- a/fs/hfs/bnode.c +++ b/fs/hfs/bnode.c | |||
| @@ -415,7 +415,11 @@ struct hfs_bnode *hfs_bnode_create(struct hfs_btree *tree, u32 num) | |||
| 415 | spin_lock(&tree->hash_lock); | 415 | spin_lock(&tree->hash_lock); |
| 416 | node = hfs_bnode_findhash(tree, num); | 416 | node = hfs_bnode_findhash(tree, num); |
| 417 | spin_unlock(&tree->hash_lock); | 417 | spin_unlock(&tree->hash_lock); |
| 418 | BUG_ON(node); | 418 | if (node) { |
| 419 | pr_crit("new node %u already hashed?\n", num); | ||
| 420 | WARN_ON(1); | ||
| 421 | return node; | ||
| 422 | } | ||
| 419 | node = __hfs_bnode_create(tree, num); | 423 | node = __hfs_bnode_create(tree, num); |
| 420 | if (!node) | 424 | if (!node) |
| 421 | return ERR_PTR(-ENOMEM); | 425 | return ERR_PTR(-ENOMEM); |
diff --git a/fs/nfs/callback_proc.c b/fs/nfs/callback_proc.c index a13d26ede254..0bc27684ebfa 100644 --- a/fs/nfs/callback_proc.c +++ b/fs/nfs/callback_proc.c | |||
| @@ -414,7 +414,7 @@ __be32 nfs4_callback_sequence(struct cb_sequenceargs *args, | |||
| 414 | 414 | ||
| 415 | spin_lock(&tbl->slot_tbl_lock); | 415 | spin_lock(&tbl->slot_tbl_lock); |
| 416 | /* state manager is resetting the session */ | 416 | /* state manager is resetting the session */ |
| 417 | if (test_bit(NFS4_SESSION_DRAINING, &clp->cl_session->session_state)) { | 417 | if (test_bit(NFS4_SLOT_TBL_DRAINING, &tbl->slot_tbl_state)) { |
| 418 | spin_unlock(&tbl->slot_tbl_lock); | 418 | spin_unlock(&tbl->slot_tbl_lock); |
| 419 | status = htonl(NFS4ERR_DELAY); | 419 | status = htonl(NFS4ERR_DELAY); |
| 420 | /* Return NFS4ERR_BADSESSION if we're draining the session | 420 | /* Return NFS4ERR_BADSESSION if we're draining the session |
diff --git a/fs/nfs/callback_xdr.c b/fs/nfs/callback_xdr.c index 59461c957d9d..a35582c9d444 100644 --- a/fs/nfs/callback_xdr.c +++ b/fs/nfs/callback_xdr.c | |||
| @@ -763,7 +763,7 @@ static void nfs4_callback_free_slot(struct nfs4_session *session) | |||
| 763 | * A single slot, so highest used slotid is either 0 or -1 | 763 | * A single slot, so highest used slotid is either 0 or -1 |
| 764 | */ | 764 | */ |
| 765 | tbl->highest_used_slotid = NFS4_NO_SLOT; | 765 | tbl->highest_used_slotid = NFS4_NO_SLOT; |
| 766 | nfs4_session_drain_complete(session, tbl); | 766 | nfs4_slot_tbl_drain_complete(tbl); |
| 767 | spin_unlock(&tbl->slot_tbl_lock); | 767 | spin_unlock(&tbl->slot_tbl_lock); |
| 768 | } | 768 | } |
| 769 | 769 | ||
diff --git a/fs/nfs/nfs4client.c b/fs/nfs/nfs4client.c index 947b0c908aa9..4cbad5d6b276 100644 --- a/fs/nfs/nfs4client.c +++ b/fs/nfs/nfs4client.c | |||
| @@ -203,7 +203,7 @@ struct nfs_client *nfs4_init_client(struct nfs_client *clp, | |||
| 203 | __set_bit(NFS_CS_DISCRTRY, &clp->cl_flags); | 203 | __set_bit(NFS_CS_DISCRTRY, &clp->cl_flags); |
| 204 | error = nfs_create_rpc_client(clp, timeparms, RPC_AUTH_GSS_KRB5I); | 204 | error = nfs_create_rpc_client(clp, timeparms, RPC_AUTH_GSS_KRB5I); |
| 205 | if (error == -EINVAL) | 205 | if (error == -EINVAL) |
| 206 | error = nfs_create_rpc_client(clp, timeparms, RPC_AUTH_NULL); | 206 | error = nfs_create_rpc_client(clp, timeparms, RPC_AUTH_UNIX); |
| 207 | if (error < 0) | 207 | if (error < 0) |
| 208 | goto error; | 208 | goto error; |
| 209 | 209 | ||
diff --git a/fs/nfs/nfs4proc.c b/fs/nfs/nfs4proc.c index 8fbc10054115..4e2fe714d5c2 100644 --- a/fs/nfs/nfs4proc.c +++ b/fs/nfs/nfs4proc.c | |||
| @@ -572,7 +572,7 @@ int nfs41_setup_sequence(struct nfs4_session *session, | |||
| 572 | task->tk_timeout = 0; | 572 | task->tk_timeout = 0; |
| 573 | 573 | ||
| 574 | spin_lock(&tbl->slot_tbl_lock); | 574 | spin_lock(&tbl->slot_tbl_lock); |
| 575 | if (test_bit(NFS4_SESSION_DRAINING, &session->session_state) && | 575 | if (test_bit(NFS4_SLOT_TBL_DRAINING, &tbl->slot_tbl_state) && |
| 576 | !args->sa_privileged) { | 576 | !args->sa_privileged) { |
| 577 | /* The state manager will wait until the slot table is empty */ | 577 | /* The state manager will wait until the slot table is empty */ |
| 578 | dprintk("%s session is draining\n", __func__); | 578 | dprintk("%s session is draining\n", __func__); |
diff --git a/fs/nfs/nfs4session.c b/fs/nfs/nfs4session.c index ebda5f4a031b..c4e225e4a9af 100644 --- a/fs/nfs/nfs4session.c +++ b/fs/nfs/nfs4session.c | |||
| @@ -73,7 +73,7 @@ void nfs4_free_slot(struct nfs4_slot_table *tbl, struct nfs4_slot *slot) | |||
| 73 | tbl->highest_used_slotid = new_max; | 73 | tbl->highest_used_slotid = new_max; |
| 74 | else { | 74 | else { |
| 75 | tbl->highest_used_slotid = NFS4_NO_SLOT; | 75 | tbl->highest_used_slotid = NFS4_NO_SLOT; |
| 76 | nfs4_session_drain_complete(tbl->session, tbl); | 76 | nfs4_slot_tbl_drain_complete(tbl); |
| 77 | } | 77 | } |
| 78 | } | 78 | } |
| 79 | dprintk("%s: slotid %u highest_used_slotid %d\n", __func__, | 79 | dprintk("%s: slotid %u highest_used_slotid %d\n", __func__, |
| @@ -226,7 +226,7 @@ static bool nfs41_assign_slot(struct rpc_task *task, void *pslot) | |||
| 226 | struct nfs4_slot *slot = pslot; | 226 | struct nfs4_slot *slot = pslot; |
| 227 | struct nfs4_slot_table *tbl = slot->table; | 227 | struct nfs4_slot_table *tbl = slot->table; |
| 228 | 228 | ||
| 229 | if (nfs4_session_draining(tbl->session) && !args->sa_privileged) | 229 | if (nfs4_slot_tbl_draining(tbl) && !args->sa_privileged) |
| 230 | return false; | 230 | return false; |
| 231 | slot->generation = tbl->generation; | 231 | slot->generation = tbl->generation; |
| 232 | args->sa_slot = slot; | 232 | args->sa_slot = slot; |
diff --git a/fs/nfs/nfs4session.h b/fs/nfs/nfs4session.h index 6f3cb39386d4..ff7d9f0f8a65 100644 --- a/fs/nfs/nfs4session.h +++ b/fs/nfs/nfs4session.h | |||
| @@ -25,6 +25,10 @@ struct nfs4_slot { | |||
| 25 | }; | 25 | }; |
| 26 | 26 | ||
| 27 | /* Sessions */ | 27 | /* Sessions */ |
| 28 | enum nfs4_slot_tbl_state { | ||
| 29 | NFS4_SLOT_TBL_DRAINING, | ||
| 30 | }; | ||
| 31 | |||
| 28 | #define SLOT_TABLE_SZ DIV_ROUND_UP(NFS4_MAX_SLOT_TABLE, 8*sizeof(long)) | 32 | #define SLOT_TABLE_SZ DIV_ROUND_UP(NFS4_MAX_SLOT_TABLE, 8*sizeof(long)) |
| 29 | struct nfs4_slot_table { | 33 | struct nfs4_slot_table { |
| 30 | struct nfs4_session *session; /* Parent session */ | 34 | struct nfs4_session *session; /* Parent session */ |
| @@ -43,6 +47,7 @@ struct nfs4_slot_table { | |||
| 43 | unsigned long generation; /* Generation counter for | 47 | unsigned long generation; /* Generation counter for |
| 44 | target_highest_slotid */ | 48 | target_highest_slotid */ |
| 45 | struct completion complete; | 49 | struct completion complete; |
| 50 | unsigned long slot_tbl_state; | ||
| 46 | }; | 51 | }; |
| 47 | 52 | ||
| 48 | /* | 53 | /* |
| @@ -68,7 +73,6 @@ struct nfs4_session { | |||
| 68 | 73 | ||
| 69 | enum nfs4_session_state { | 74 | enum nfs4_session_state { |
| 70 | NFS4_SESSION_INITING, | 75 | NFS4_SESSION_INITING, |
| 71 | NFS4_SESSION_DRAINING, | ||
| 72 | }; | 76 | }; |
| 73 | 77 | ||
| 74 | #if defined(CONFIG_NFS_V4_1) | 78 | #if defined(CONFIG_NFS_V4_1) |
| @@ -88,12 +92,11 @@ extern void nfs4_destroy_session(struct nfs4_session *session); | |||
| 88 | extern int nfs4_init_session(struct nfs_server *server); | 92 | extern int nfs4_init_session(struct nfs_server *server); |
| 89 | extern int nfs4_init_ds_session(struct nfs_client *, unsigned long); | 93 | extern int nfs4_init_ds_session(struct nfs_client *, unsigned long); |
| 90 | 94 | ||
| 91 | extern void nfs4_session_drain_complete(struct nfs4_session *session, | 95 | extern void nfs4_slot_tbl_drain_complete(struct nfs4_slot_table *tbl); |
| 92 | struct nfs4_slot_table *tbl); | ||
| 93 | 96 | ||
| 94 | static inline bool nfs4_session_draining(struct nfs4_session *session) | 97 | static inline bool nfs4_slot_tbl_draining(struct nfs4_slot_table *tbl) |
| 95 | { | 98 | { |
| 96 | return !!test_bit(NFS4_SESSION_DRAINING, &session->session_state); | 99 | return !!test_bit(NFS4_SLOT_TBL_DRAINING, &tbl->slot_tbl_state); |
| 97 | } | 100 | } |
| 98 | 101 | ||
| 99 | bool nfs41_wake_and_assign_slot(struct nfs4_slot_table *tbl, | 102 | bool nfs41_wake_and_assign_slot(struct nfs4_slot_table *tbl, |
diff --git a/fs/nfs/nfs4state.c b/fs/nfs/nfs4state.c index 300d17d85c0e..1fab140764c4 100644 --- a/fs/nfs/nfs4state.c +++ b/fs/nfs/nfs4state.c | |||
| @@ -241,7 +241,7 @@ static void nfs4_end_drain_session(struct nfs_client *clp) | |||
| 241 | if (ses == NULL) | 241 | if (ses == NULL) |
| 242 | return; | 242 | return; |
| 243 | tbl = &ses->fc_slot_table; | 243 | tbl = &ses->fc_slot_table; |
| 244 | if (test_and_clear_bit(NFS4_SESSION_DRAINING, &ses->session_state)) { | 244 | if (test_and_clear_bit(NFS4_SLOT_TBL_DRAINING, &tbl->slot_tbl_state)) { |
| 245 | spin_lock(&tbl->slot_tbl_lock); | 245 | spin_lock(&tbl->slot_tbl_lock); |
| 246 | nfs41_wake_slot_table(tbl); | 246 | nfs41_wake_slot_table(tbl); |
| 247 | spin_unlock(&tbl->slot_tbl_lock); | 247 | spin_unlock(&tbl->slot_tbl_lock); |
| @@ -251,15 +251,15 @@ static void nfs4_end_drain_session(struct nfs_client *clp) | |||
| 251 | /* | 251 | /* |
| 252 | * Signal state manager thread if session fore channel is drained | 252 | * Signal state manager thread if session fore channel is drained |
| 253 | */ | 253 | */ |
| 254 | void nfs4_session_drain_complete(struct nfs4_session *session, | 254 | void nfs4_slot_tbl_drain_complete(struct nfs4_slot_table *tbl) |
| 255 | struct nfs4_slot_table *tbl) | ||
| 256 | { | 255 | { |
| 257 | if (nfs4_session_draining(session)) | 256 | if (nfs4_slot_tbl_draining(tbl)) |
| 258 | complete(&tbl->complete); | 257 | complete(&tbl->complete); |
| 259 | } | 258 | } |
| 260 | 259 | ||
| 261 | static int nfs4_wait_on_slot_tbl(struct nfs4_slot_table *tbl) | 260 | static int nfs4_drain_slot_tbl(struct nfs4_slot_table *tbl) |
| 262 | { | 261 | { |
| 262 | set_bit(NFS4_SLOT_TBL_DRAINING, &tbl->slot_tbl_state); | ||
| 263 | spin_lock(&tbl->slot_tbl_lock); | 263 | spin_lock(&tbl->slot_tbl_lock); |
| 264 | if (tbl->highest_used_slotid != NFS4_NO_SLOT) { | 264 | if (tbl->highest_used_slotid != NFS4_NO_SLOT) { |
| 265 | INIT_COMPLETION(tbl->complete); | 265 | INIT_COMPLETION(tbl->complete); |
| @@ -275,13 +275,12 @@ static int nfs4_begin_drain_session(struct nfs_client *clp) | |||
| 275 | struct nfs4_session *ses = clp->cl_session; | 275 | struct nfs4_session *ses = clp->cl_session; |
| 276 | int ret = 0; | 276 | int ret = 0; |
| 277 | 277 | ||
| 278 | set_bit(NFS4_SESSION_DRAINING, &ses->session_state); | ||
| 279 | /* back channel */ | 278 | /* back channel */ |
| 280 | ret = nfs4_wait_on_slot_tbl(&ses->bc_slot_table); | 279 | ret = nfs4_drain_slot_tbl(&ses->bc_slot_table); |
| 281 | if (ret) | 280 | if (ret) |
| 282 | return ret; | 281 | return ret; |
| 283 | /* fore channel */ | 282 | /* fore channel */ |
| 284 | return nfs4_wait_on_slot_tbl(&ses->fc_slot_table); | 283 | return nfs4_drain_slot_tbl(&ses->fc_slot_table); |
| 285 | } | 284 | } |
| 286 | 285 | ||
| 287 | static void nfs41_finish_session_reset(struct nfs_client *clp) | 286 | static void nfs41_finish_session_reset(struct nfs_client *clp) |
diff --git a/fs/nilfs2/inode.c b/fs/nilfs2/inode.c index 689fb608648e..bccfec8343c5 100644 --- a/fs/nilfs2/inode.c +++ b/fs/nilfs2/inode.c | |||
| @@ -219,13 +219,32 @@ static int nilfs_writepage(struct page *page, struct writeback_control *wbc) | |||
| 219 | 219 | ||
| 220 | static int nilfs_set_page_dirty(struct page *page) | 220 | static int nilfs_set_page_dirty(struct page *page) |
| 221 | { | 221 | { |
| 222 | int ret = __set_page_dirty_buffers(page); | 222 | int ret = __set_page_dirty_nobuffers(page); |
| 223 | 223 | ||
| 224 | if (ret) { | 224 | if (page_has_buffers(page)) { |
| 225 | struct inode *inode = page->mapping->host; | 225 | struct inode *inode = page->mapping->host; |
| 226 | unsigned nr_dirty = 1 << (PAGE_SHIFT - inode->i_blkbits); | 226 | unsigned nr_dirty = 0; |
| 227 | struct buffer_head *bh, *head; | ||
| 227 | 228 | ||
| 228 | nilfs_set_file_dirty(inode, nr_dirty); | 229 | /* |
| 230 | * This page is locked by callers, and no other thread | ||
| 231 | * concurrently marks its buffers dirty since they are | ||
| 232 | * only dirtied through routines in fs/buffer.c in | ||
| 233 | * which call sites of mark_buffer_dirty are protected | ||
| 234 | * by page lock. | ||
| 235 | */ | ||
| 236 | bh = head = page_buffers(page); | ||
| 237 | do { | ||
| 238 | /* Do not mark hole blocks dirty */ | ||
| 239 | if (buffer_dirty(bh) || !buffer_mapped(bh)) | ||
| 240 | continue; | ||
| 241 | |||
| 242 | set_buffer_dirty(bh); | ||
| 243 | nr_dirty++; | ||
| 244 | } while (bh = bh->b_this_page, bh != head); | ||
| 245 | |||
| 246 | if (nr_dirty) | ||
| 247 | nilfs_set_file_dirty(inode, nr_dirty); | ||
| 229 | } | 248 | } |
| 230 | return ret; | 249 | return ret; |
| 231 | } | 250 | } |
diff --git a/fs/ocfs2/extent_map.c b/fs/ocfs2/extent_map.c index 1c39efb71bab..2487116d0d33 100644 --- a/fs/ocfs2/extent_map.c +++ b/fs/ocfs2/extent_map.c | |||
| @@ -790,7 +790,7 @@ int ocfs2_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo, | |||
| 790 | &hole_size, &rec, &is_last); | 790 | &hole_size, &rec, &is_last); |
| 791 | if (ret) { | 791 | if (ret) { |
| 792 | mlog_errno(ret); | 792 | mlog_errno(ret); |
| 793 | goto out; | 793 | goto out_unlock; |
| 794 | } | 794 | } |
| 795 | 795 | ||
| 796 | if (rec.e_blkno == 0ULL) { | 796 | if (rec.e_blkno == 0ULL) { |
diff --git a/fs/ocfs2/file.c b/fs/ocfs2/file.c index 8a7509f9e6f5..ff54014a24ec 100644 --- a/fs/ocfs2/file.c +++ b/fs/ocfs2/file.c | |||
| @@ -2288,7 +2288,7 @@ relock: | |||
| 2288 | ret = ocfs2_inode_lock(inode, NULL, 1); | 2288 | ret = ocfs2_inode_lock(inode, NULL, 1); |
| 2289 | if (ret < 0) { | 2289 | if (ret < 0) { |
| 2290 | mlog_errno(ret); | 2290 | mlog_errno(ret); |
| 2291 | goto out_sems; | 2291 | goto out; |
| 2292 | } | 2292 | } |
| 2293 | 2293 | ||
| 2294 | ocfs2_inode_unlock(inode, 1); | 2294 | ocfs2_inode_unlock(inode, 1); |
diff --git a/fs/xfs/xfs_aops.c b/fs/xfs/xfs_aops.c index 2b2691b73428..41a695048be7 100644 --- a/fs/xfs/xfs_aops.c +++ b/fs/xfs/xfs_aops.c | |||
| @@ -725,6 +725,25 @@ xfs_convert_page( | |||
| 725 | (xfs_off_t)(page->index + 1) << PAGE_CACHE_SHIFT, | 725 | (xfs_off_t)(page->index + 1) << PAGE_CACHE_SHIFT, |
| 726 | i_size_read(inode)); | 726 | i_size_read(inode)); |
| 727 | 727 | ||
| 728 | /* | ||
| 729 | * If the current map does not span the entire page we are about to try | ||
| 730 | * to write, then give up. The only way we can write a page that spans | ||
| 731 | * multiple mappings in a single writeback iteration is via the | ||
| 732 | * xfs_vm_writepage() function. Data integrity writeback requires the | ||
| 733 | * entire page to be written in a single attempt, otherwise the part of | ||
| 734 | * the page we don't write here doesn't get written as part of the data | ||
| 735 | * integrity sync. | ||
| 736 | * | ||
| 737 | * For normal writeback, we also don't attempt to write partial pages | ||
| 738 | * here as it simply means that write_cache_pages() will see it under | ||
| 739 | * writeback and ignore the page until some point in the future, at | ||
| 740 | * which time this will be the only page in the file that needs | ||
| 741 | * writeback. Hence for more optimal IO patterns, we should always | ||
| 742 | * avoid partial page writeback due to multiple mappings on a page here. | ||
| 743 | */ | ||
| 744 | if (!xfs_imap_valid(inode, imap, end_offset)) | ||
| 745 | goto fail_unlock_page; | ||
| 746 | |||
| 728 | len = 1 << inode->i_blkbits; | 747 | len = 1 << inode->i_blkbits; |
| 729 | p_offset = min_t(unsigned long, end_offset & (PAGE_CACHE_SIZE - 1), | 748 | p_offset = min_t(unsigned long, end_offset & (PAGE_CACHE_SIZE - 1), |
| 730 | PAGE_CACHE_SIZE); | 749 | PAGE_CACHE_SIZE); |
diff --git a/fs/xfs/xfs_attr_leaf.c b/fs/xfs/xfs_attr_leaf.c index 08d5457c948e..0bce1b348580 100644 --- a/fs/xfs/xfs_attr_leaf.c +++ b/fs/xfs/xfs_attr_leaf.c | |||
| @@ -931,20 +931,22 @@ xfs_attr_shortform_list(xfs_attr_list_context_t *context) | |||
| 931 | */ | 931 | */ |
| 932 | int | 932 | int |
| 933 | xfs_attr_shortform_allfit( | 933 | xfs_attr_shortform_allfit( |
| 934 | struct xfs_buf *bp, | 934 | struct xfs_buf *bp, |
| 935 | struct xfs_inode *dp) | 935 | struct xfs_inode *dp) |
| 936 | { | 936 | { |
| 937 | xfs_attr_leafblock_t *leaf; | 937 | struct xfs_attr_leafblock *leaf; |
| 938 | xfs_attr_leaf_entry_t *entry; | 938 | struct xfs_attr_leaf_entry *entry; |
| 939 | xfs_attr_leaf_name_local_t *name_loc; | 939 | xfs_attr_leaf_name_local_t *name_loc; |
| 940 | int bytes, i; | 940 | struct xfs_attr3_icleaf_hdr leafhdr; |
| 941 | int bytes; | ||
| 942 | int i; | ||
| 941 | 943 | ||
| 942 | leaf = bp->b_addr; | 944 | leaf = bp->b_addr; |
| 943 | ASSERT(leaf->hdr.info.magic == cpu_to_be16(XFS_ATTR_LEAF_MAGIC)); | 945 | xfs_attr3_leaf_hdr_from_disk(&leafhdr, leaf); |
| 946 | entry = xfs_attr3_leaf_entryp(leaf); | ||
| 944 | 947 | ||
| 945 | entry = &leaf->entries[0]; | ||
| 946 | bytes = sizeof(struct xfs_attr_sf_hdr); | 948 | bytes = sizeof(struct xfs_attr_sf_hdr); |
| 947 | for (i = 0; i < be16_to_cpu(leaf->hdr.count); entry++, i++) { | 949 | for (i = 0; i < leafhdr.count; entry++, i++) { |
| 948 | if (entry->flags & XFS_ATTR_INCOMPLETE) | 950 | if (entry->flags & XFS_ATTR_INCOMPLETE) |
| 949 | continue; /* don't copy partial entries */ | 951 | continue; /* don't copy partial entries */ |
| 950 | if (!(entry->flags & XFS_ATTR_LOCAL)) | 952 | if (!(entry->flags & XFS_ATTR_LOCAL)) |
| @@ -954,15 +956,15 @@ xfs_attr_shortform_allfit( | |||
| 954 | return(0); | 956 | return(0); |
| 955 | if (be16_to_cpu(name_loc->valuelen) >= XFS_ATTR_SF_ENTSIZE_MAX) | 957 | if (be16_to_cpu(name_loc->valuelen) >= XFS_ATTR_SF_ENTSIZE_MAX) |
| 956 | return(0); | 958 | return(0); |
| 957 | bytes += sizeof(struct xfs_attr_sf_entry)-1 | 959 | bytes += sizeof(struct xfs_attr_sf_entry) - 1 |
| 958 | + name_loc->namelen | 960 | + name_loc->namelen |
| 959 | + be16_to_cpu(name_loc->valuelen); | 961 | + be16_to_cpu(name_loc->valuelen); |
| 960 | } | 962 | } |
| 961 | if ((dp->i_mount->m_flags & XFS_MOUNT_ATTR2) && | 963 | if ((dp->i_mount->m_flags & XFS_MOUNT_ATTR2) && |
| 962 | (dp->i_d.di_format != XFS_DINODE_FMT_BTREE) && | 964 | (dp->i_d.di_format != XFS_DINODE_FMT_BTREE) && |
| 963 | (bytes == sizeof(struct xfs_attr_sf_hdr))) | 965 | (bytes == sizeof(struct xfs_attr_sf_hdr))) |
| 964 | return(-1); | 966 | return -1; |
| 965 | return(xfs_attr_shortform_bytesfit(dp, bytes)); | 967 | return xfs_attr_shortform_bytesfit(dp, bytes); |
| 966 | } | 968 | } |
| 967 | 969 | ||
| 968 | /* | 970 | /* |
| @@ -2330,9 +2332,10 @@ xfs_attr3_leaf_lookup_int( | |||
| 2330 | if (!xfs_attr_namesp_match(args->flags, entry->flags)) | 2332 | if (!xfs_attr_namesp_match(args->flags, entry->flags)) |
| 2331 | continue; | 2333 | continue; |
| 2332 | args->index = probe; | 2334 | args->index = probe; |
| 2335 | args->valuelen = be32_to_cpu(name_rmt->valuelen); | ||
| 2333 | args->rmtblkno = be32_to_cpu(name_rmt->valueblk); | 2336 | args->rmtblkno = be32_to_cpu(name_rmt->valueblk); |
| 2334 | args->rmtblkcnt = XFS_B_TO_FSB(args->dp->i_mount, | 2337 | args->rmtblkcnt = XFS_B_TO_FSB(args->dp->i_mount, |
| 2335 | be32_to_cpu(name_rmt->valuelen)); | 2338 | args->valuelen); |
| 2336 | return XFS_ERROR(EEXIST); | 2339 | return XFS_ERROR(EEXIST); |
| 2337 | } | 2340 | } |
| 2338 | } | 2341 | } |
diff --git a/fs/xfs/xfs_buf.c b/fs/xfs/xfs_buf.c index 82b70bda9f47..0d2554299688 100644 --- a/fs/xfs/xfs_buf.c +++ b/fs/xfs/xfs_buf.c | |||
| @@ -1649,7 +1649,7 @@ xfs_alloc_buftarg( | |||
| 1649 | { | 1649 | { |
| 1650 | xfs_buftarg_t *btp; | 1650 | xfs_buftarg_t *btp; |
| 1651 | 1651 | ||
| 1652 | btp = kmem_zalloc(sizeof(*btp), KM_SLEEP); | 1652 | btp = kmem_zalloc(sizeof(*btp), KM_SLEEP | KM_NOFS); |
| 1653 | 1653 | ||
| 1654 | btp->bt_mount = mp; | 1654 | btp->bt_mount = mp; |
| 1655 | btp->bt_dev = bdev->bd_dev; | 1655 | btp->bt_dev = bdev->bd_dev; |
diff --git a/fs/xfs/xfs_da_btree.c b/fs/xfs/xfs_da_btree.c index 9b26a99ebfe9..0b8b2a13cd24 100644 --- a/fs/xfs/xfs_da_btree.c +++ b/fs/xfs/xfs_da_btree.c | |||
| @@ -270,6 +270,7 @@ xfs_da3_node_read_verify( | |||
| 270 | break; | 270 | break; |
| 271 | return; | 271 | return; |
| 272 | case XFS_ATTR_LEAF_MAGIC: | 272 | case XFS_ATTR_LEAF_MAGIC: |
| 273 | case XFS_ATTR3_LEAF_MAGIC: | ||
| 273 | bp->b_ops = &xfs_attr3_leaf_buf_ops; | 274 | bp->b_ops = &xfs_attr3_leaf_buf_ops; |
| 274 | bp->b_ops->verify_read(bp); | 275 | bp->b_ops->verify_read(bp); |
| 275 | return; | 276 | return; |
| @@ -2464,7 +2465,8 @@ xfs_buf_map_from_irec( | |||
| 2464 | ASSERT(nirecs >= 1); | 2465 | ASSERT(nirecs >= 1); |
| 2465 | 2466 | ||
| 2466 | if (nirecs > 1) { | 2467 | if (nirecs > 1) { |
| 2467 | map = kmem_zalloc(nirecs * sizeof(struct xfs_buf_map), KM_SLEEP); | 2468 | map = kmem_zalloc(nirecs * sizeof(struct xfs_buf_map), |
| 2469 | KM_SLEEP | KM_NOFS); | ||
| 2468 | if (!map) | 2470 | if (!map) |
| 2469 | return ENOMEM; | 2471 | return ENOMEM; |
| 2470 | *mapp = map; | 2472 | *mapp = map; |
| @@ -2520,7 +2522,8 @@ xfs_dabuf_map( | |||
| 2520 | * Optimize the one-block case. | 2522 | * Optimize the one-block case. |
| 2521 | */ | 2523 | */ |
| 2522 | if (nfsb != 1) | 2524 | if (nfsb != 1) |
| 2523 | irecs = kmem_zalloc(sizeof(irec) * nfsb, KM_SLEEP); | 2525 | irecs = kmem_zalloc(sizeof(irec) * nfsb, |
| 2526 | KM_SLEEP | KM_NOFS); | ||
| 2524 | 2527 | ||
| 2525 | nirecs = nfsb; | 2528 | nirecs = nfsb; |
| 2526 | error = xfs_bmapi_read(dp, (xfs_fileoff_t)bno, nfsb, irecs, | 2529 | error = xfs_bmapi_read(dp, (xfs_fileoff_t)bno, nfsb, irecs, |
diff --git a/fs/xfs/xfs_dir2_leaf.c b/fs/xfs/xfs_dir2_leaf.c index 721ba2fe8e54..da71a1819d78 100644 --- a/fs/xfs/xfs_dir2_leaf.c +++ b/fs/xfs/xfs_dir2_leaf.c | |||
| @@ -1336,7 +1336,7 @@ xfs_dir2_leaf_getdents( | |||
| 1336 | mp->m_sb.sb_blocksize); | 1336 | mp->m_sb.sb_blocksize); |
| 1337 | map_info = kmem_zalloc(offsetof(struct xfs_dir2_leaf_map_info, map) + | 1337 | map_info = kmem_zalloc(offsetof(struct xfs_dir2_leaf_map_info, map) + |
| 1338 | (length * sizeof(struct xfs_bmbt_irec)), | 1338 | (length * sizeof(struct xfs_bmbt_irec)), |
| 1339 | KM_SLEEP); | 1339 | KM_SLEEP | KM_NOFS); |
| 1340 | map_info->map_size = length; | 1340 | map_info->map_size = length; |
| 1341 | 1341 | ||
| 1342 | /* | 1342 | /* |
diff --git a/fs/xfs/xfs_extfree_item.c b/fs/xfs/xfs_extfree_item.c index c0f375087efc..452920a3f03f 100644 --- a/fs/xfs/xfs_extfree_item.c +++ b/fs/xfs/xfs_extfree_item.c | |||
| @@ -305,11 +305,12 @@ xfs_efi_release(xfs_efi_log_item_t *efip, | |||
| 305 | { | 305 | { |
| 306 | ASSERT(atomic_read(&efip->efi_next_extent) >= nextents); | 306 | ASSERT(atomic_read(&efip->efi_next_extent) >= nextents); |
| 307 | if (atomic_sub_and_test(nextents, &efip->efi_next_extent)) { | 307 | if (atomic_sub_and_test(nextents, &efip->efi_next_extent)) { |
| 308 | __xfs_efi_release(efip); | ||
| 309 | |||
| 310 | /* recovery needs us to drop the EFI reference, too */ | 308 | /* recovery needs us to drop the EFI reference, too */ |
| 311 | if (test_bit(XFS_EFI_RECOVERED, &efip->efi_flags)) | 309 | if (test_bit(XFS_EFI_RECOVERED, &efip->efi_flags)) |
| 312 | __xfs_efi_release(efip); | 310 | __xfs_efi_release(efip); |
| 311 | |||
| 312 | __xfs_efi_release(efip); | ||
| 313 | /* efip may now have been freed, do not reference it again. */ | ||
| 313 | } | 314 | } |
| 314 | } | 315 | } |
| 315 | 316 | ||
diff --git a/fs/xfs/xfs_log_cil.c b/fs/xfs/xfs_log_cil.c index e3d0b85d852b..d0833b54e55d 100644 --- a/fs/xfs/xfs_log_cil.c +++ b/fs/xfs/xfs_log_cil.c | |||
| @@ -139,7 +139,7 @@ xlog_cil_prepare_log_vecs( | |||
| 139 | 139 | ||
| 140 | new_lv = kmem_zalloc(sizeof(*new_lv) + | 140 | new_lv = kmem_zalloc(sizeof(*new_lv) + |
| 141 | niovecs * sizeof(struct xfs_log_iovec), | 141 | niovecs * sizeof(struct xfs_log_iovec), |
| 142 | KM_SLEEP); | 142 | KM_SLEEP|KM_NOFS); |
| 143 | 143 | ||
| 144 | /* The allocated iovec region lies beyond the log vector. */ | 144 | /* The allocated iovec region lies beyond the log vector. */ |
| 145 | new_lv->lv_iovecp = (struct xfs_log_iovec *)&new_lv[1]; | 145 | new_lv->lv_iovecp = (struct xfs_log_iovec *)&new_lv[1]; |
diff --git a/fs/xfs/xfs_vnodeops.c b/fs/xfs/xfs_vnodeops.c index 1501f4fa51a6..0176bb21f09a 100644 --- a/fs/xfs/xfs_vnodeops.c +++ b/fs/xfs/xfs_vnodeops.c | |||
| @@ -1453,7 +1453,7 @@ xfs_free_file_space( | |||
| 1453 | xfs_mount_t *mp; | 1453 | xfs_mount_t *mp; |
| 1454 | int nimap; | 1454 | int nimap; |
| 1455 | uint resblks; | 1455 | uint resblks; |
| 1456 | uint rounding; | 1456 | xfs_off_t rounding; |
| 1457 | int rt; | 1457 | int rt; |
| 1458 | xfs_fileoff_t startoffset_fsb; | 1458 | xfs_fileoff_t startoffset_fsb; |
| 1459 | xfs_trans_t *tp; | 1459 | xfs_trans_t *tp; |
| @@ -1482,7 +1482,7 @@ xfs_free_file_space( | |||
| 1482 | inode_dio_wait(VFS_I(ip)); | 1482 | inode_dio_wait(VFS_I(ip)); |
| 1483 | } | 1483 | } |
| 1484 | 1484 | ||
| 1485 | rounding = max_t(uint, 1 << mp->m_sb.sb_blocklog, PAGE_CACHE_SIZE); | 1485 | rounding = max_t(xfs_off_t, 1 << mp->m_sb.sb_blocklog, PAGE_CACHE_SIZE); |
| 1486 | ioffset = offset & ~(rounding - 1); | 1486 | ioffset = offset & ~(rounding - 1); |
| 1487 | error = -filemap_write_and_wait_range(VFS_I(ip)->i_mapping, | 1487 | error = -filemap_write_and_wait_range(VFS_I(ip)->i_mapping, |
| 1488 | ioffset, -1); | 1488 | ioffset, -1); |
diff --git a/include/acpi/acpi_bus.h b/include/acpi/acpi_bus.h index 98db31d9f9b4..636c59f2003a 100644 --- a/include/acpi/acpi_bus.h +++ b/include/acpi/acpi_bus.h | |||
| @@ -377,7 +377,6 @@ acpi_status acpi_bus_get_status_handle(acpi_handle handle, | |||
| 377 | unsigned long long *sta); | 377 | unsigned long long *sta); |
| 378 | int acpi_bus_get_status(struct acpi_device *device); | 378 | int acpi_bus_get_status(struct acpi_device *device); |
| 379 | 379 | ||
| 380 | #ifdef CONFIG_PM | ||
| 381 | int acpi_bus_set_power(acpi_handle handle, int state); | 380 | int acpi_bus_set_power(acpi_handle handle, int state); |
| 382 | const char *acpi_power_state_string(int state); | 381 | const char *acpi_power_state_string(int state); |
| 383 | int acpi_device_get_power(struct acpi_device *device, int *state); | 382 | int acpi_device_get_power(struct acpi_device *device, int *state); |
| @@ -385,41 +384,12 @@ int acpi_device_set_power(struct acpi_device *device, int state); | |||
| 385 | int acpi_bus_init_power(struct acpi_device *device); | 384 | int acpi_bus_init_power(struct acpi_device *device); |
| 386 | int acpi_bus_update_power(acpi_handle handle, int *state_p); | 385 | int acpi_bus_update_power(acpi_handle handle, int *state_p); |
| 387 | bool acpi_bus_power_manageable(acpi_handle handle); | 386 | bool acpi_bus_power_manageable(acpi_handle handle); |
| 387 | |||
| 388 | #ifdef CONFIG_PM | ||
| 388 | bool acpi_bus_can_wakeup(acpi_handle handle); | 389 | bool acpi_bus_can_wakeup(acpi_handle handle); |
| 389 | #else /* !CONFIG_PM */ | 390 | #else |
| 390 | static inline int acpi_bus_set_power(acpi_handle handle, int state) | 391 | static inline bool acpi_bus_can_wakeup(acpi_handle handle) { return false; } |
| 391 | { | 392 | #endif |
| 392 | return 0; | ||
| 393 | } | ||
| 394 | static inline const char *acpi_power_state_string(int state) | ||
| 395 | { | ||
| 396 | return "D0"; | ||
| 397 | } | ||
| 398 | static inline int acpi_device_get_power(struct acpi_device *device, int *state) | ||
| 399 | { | ||
| 400 | return 0; | ||
| 401 | } | ||
| 402 | static inline int acpi_device_set_power(struct acpi_device *device, int state) | ||
| 403 | { | ||
| 404 | return 0; | ||
| 405 | } | ||
| 406 | static inline int acpi_bus_init_power(struct acpi_device *device) | ||
| 407 | { | ||
| 408 | return 0; | ||
| 409 | } | ||
| 410 | static inline int acpi_bus_update_power(acpi_handle handle, int *state_p) | ||
| 411 | { | ||
| 412 | return 0; | ||
| 413 | } | ||
| 414 | static inline bool acpi_bus_power_manageable(acpi_handle handle) | ||
| 415 | { | ||
| 416 | return false; | ||
| 417 | } | ||
| 418 | static inline bool acpi_bus_can_wakeup(acpi_handle handle) | ||
| 419 | { | ||
| 420 | return false; | ||
| 421 | } | ||
| 422 | #endif /* !CONFIG_PM */ | ||
| 423 | 393 | ||
| 424 | #ifdef CONFIG_ACPI_PROC_EVENT | 394 | #ifdef CONFIG_ACPI_PROC_EVENT |
| 425 | int acpi_bus_generate_proc_event(struct acpi_device *device, u8 type, int data); | 395 | int acpi_bus_generate_proc_event(struct acpi_device *device, u8 type, int data); |
diff --git a/include/drm/drm_pciids.h b/include/drm/drm_pciids.h index c2af598f701d..bb1bc485390b 100644 --- a/include/drm/drm_pciids.h +++ b/include/drm/drm_pciids.h | |||
| @@ -152,6 +152,12 @@ | |||
| 152 | {0x1002, 0x6621, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_OLAND|RADEON_IS_MOBILITY|RADEON_NEW_MEMMAP}, \ | 152 | {0x1002, 0x6621, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_OLAND|RADEON_IS_MOBILITY|RADEON_NEW_MEMMAP}, \ |
| 153 | {0x1002, 0x6623, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_OLAND|RADEON_IS_MOBILITY|RADEON_NEW_MEMMAP}, \ | 153 | {0x1002, 0x6623, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_OLAND|RADEON_IS_MOBILITY|RADEON_NEW_MEMMAP}, \ |
| 154 | {0x1002, 0x6631, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_OLAND|RADEON_NEW_MEMMAP}, \ | 154 | {0x1002, 0x6631, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_OLAND|RADEON_NEW_MEMMAP}, \ |
| 155 | {0x1002, 0x6660, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_HAINAN|RADEON_IS_MOBILITY|RADEON_NEW_MEMMAP}, \ | ||
| 156 | {0x1002, 0x6663, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_HAINAN|RADEON_IS_MOBILITY|RADEON_NEW_MEMMAP}, \ | ||
| 157 | {0x1002, 0x6664, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_HAINAN|RADEON_IS_MOBILITY|RADEON_NEW_MEMMAP}, \ | ||
| 158 | {0x1002, 0x6665, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_HAINAN|RADEON_IS_MOBILITY|RADEON_NEW_MEMMAP}, \ | ||
| 159 | {0x1002, 0x6667, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_HAINAN|RADEON_IS_MOBILITY|RADEON_NEW_MEMMAP}, \ | ||
| 160 | {0x1002, 0x666F, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_HAINAN|RADEON_IS_MOBILITY|RADEON_NEW_MEMMAP}, \ | ||
| 155 | {0x1002, 0x6700, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_CAYMAN|RADEON_NEW_MEMMAP}, \ | 161 | {0x1002, 0x6700, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_CAYMAN|RADEON_NEW_MEMMAP}, \ |
| 156 | {0x1002, 0x6701, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_CAYMAN|RADEON_NEW_MEMMAP}, \ | 162 | {0x1002, 0x6701, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_CAYMAN|RADEON_NEW_MEMMAP}, \ |
| 157 | {0x1002, 0x6702, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_CAYMAN|RADEON_NEW_MEMMAP}, \ | 163 | {0x1002, 0x6702, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_CAYMAN|RADEON_NEW_MEMMAP}, \ |
diff --git a/include/linux/acpi_dma.h b/include/linux/acpi_dma.h index d09deabc7bf6..fb0298082916 100644 --- a/include/linux/acpi_dma.h +++ b/include/linux/acpi_dma.h | |||
| @@ -37,6 +37,8 @@ struct acpi_dma_spec { | |||
| 37 | * @dev: struct device of this controller | 37 | * @dev: struct device of this controller |
| 38 | * @acpi_dma_xlate: callback function to find a suitable channel | 38 | * @acpi_dma_xlate: callback function to find a suitable channel |
| 39 | * @data: private data used by a callback function | 39 | * @data: private data used by a callback function |
| 40 | * @base_request_line: first supported request line (CSRT) | ||
| 41 | * @end_request_line: last supported request line (CSRT) | ||
| 40 | */ | 42 | */ |
| 41 | struct acpi_dma { | 43 | struct acpi_dma { |
| 42 | struct list_head dma_controllers; | 44 | struct list_head dma_controllers; |
| @@ -44,6 +46,8 @@ struct acpi_dma { | |||
| 44 | struct dma_chan *(*acpi_dma_xlate) | 46 | struct dma_chan *(*acpi_dma_xlate) |
| 45 | (struct acpi_dma_spec *, struct acpi_dma *); | 47 | (struct acpi_dma_spec *, struct acpi_dma *); |
| 46 | void *data; | 48 | void *data; |
| 49 | unsigned short base_request_line; | ||
| 50 | unsigned short end_request_line; | ||
| 47 | }; | 51 | }; |
| 48 | 52 | ||
| 49 | /* Used with acpi_dma_simple_xlate() */ | 53 | /* Used with acpi_dma_simple_xlate() */ |
diff --git a/include/linux/bcma/bcma.h b/include/linux/bcma/bcma.h index f14a98a79c9d..2e34db82a643 100644 --- a/include/linux/bcma/bcma.h +++ b/include/linux/bcma/bcma.h | |||
| @@ -134,7 +134,10 @@ struct bcma_host_ops { | |||
| 134 | #define BCMA_CORE_I2S 0x834 | 134 | #define BCMA_CORE_I2S 0x834 |
| 135 | #define BCMA_CORE_SDR_DDR1_MEM_CTL 0x835 /* SDR/DDR1 memory controller core */ | 135 | #define BCMA_CORE_SDR_DDR1_MEM_CTL 0x835 /* SDR/DDR1 memory controller core */ |
| 136 | #define BCMA_CORE_SHIM 0x837 /* SHIM component in ubus/6362 */ | 136 | #define BCMA_CORE_SHIM 0x837 /* SHIM component in ubus/6362 */ |
| 137 | #define BCMA_CORE_ARM_CR4 0x83e | 137 | #define BCMA_CORE_PHY_AC 0x83B |
| 138 | #define BCMA_CORE_PCIE2 0x83C /* PCI Express Gen2 */ | ||
| 139 | #define BCMA_CORE_USB30_DEV 0x83D | ||
| 140 | #define BCMA_CORE_ARM_CR4 0x83E | ||
| 138 | #define BCMA_CORE_DEFAULT 0xFFF | 141 | #define BCMA_CORE_DEFAULT 0xFFF |
| 139 | 142 | ||
| 140 | #define BCMA_MAX_NR_CORES 16 | 143 | #define BCMA_MAX_NR_CORES 16 |
diff --git a/include/linux/brcmphy.h b/include/linux/brcmphy.h index b840a4960282..677b4f01b2d0 100644 --- a/include/linux/brcmphy.h +++ b/include/linux/brcmphy.h | |||
| @@ -1,3 +1,6 @@ | |||
| 1 | #ifndef _LINUX_BRCMPHY_H | ||
| 2 | #define _LINUX_BRCMPHY_H | ||
| 3 | |||
| 1 | #define PHY_ID_BCM50610 0x0143bd60 | 4 | #define PHY_ID_BCM50610 0x0143bd60 |
| 2 | #define PHY_ID_BCM50610M 0x0143bd70 | 5 | #define PHY_ID_BCM50610M 0x0143bd70 |
| 3 | #define PHY_ID_BCM5241 0x0143bc30 | 6 | #define PHY_ID_BCM5241 0x0143bc30 |
| @@ -29,3 +32,5 @@ | |||
| 29 | #define PHY_BRCM_CLEAR_RGMII_MODE 0x00004000 | 32 | #define PHY_BRCM_CLEAR_RGMII_MODE 0x00004000 |
| 30 | #define PHY_BRCM_DIS_TXCRXC_NOENRGY 0x00008000 | 33 | #define PHY_BRCM_DIS_TXCRXC_NOENRGY 0x00008000 |
| 31 | #define PHY_BCM_FLAGS_VALID 0x80000000 | 34 | #define PHY_BCM_FLAGS_VALID 0x80000000 |
| 35 | |||
| 36 | #endif /* _LINUX_BRCMPHY_H */ | ||
diff --git a/include/linux/kernel.h b/include/linux/kernel.h index e96329ceb28c..e9ef6d6b51d5 100644 --- a/include/linux/kernel.h +++ b/include/linux/kernel.h | |||
| @@ -562,6 +562,9 @@ int __trace_bprintk(unsigned long ip, const char *fmt, ...); | |||
| 562 | extern __printf(2, 3) | 562 | extern __printf(2, 3) |
| 563 | int __trace_printk(unsigned long ip, const char *fmt, ...); | 563 | int __trace_printk(unsigned long ip, const char *fmt, ...); |
| 564 | 564 | ||
| 565 | extern int __trace_bputs(unsigned long ip, const char *str); | ||
| 566 | extern int __trace_puts(unsigned long ip, const char *str, int size); | ||
| 567 | |||
| 565 | /** | 568 | /** |
| 566 | * trace_puts - write a string into the ftrace buffer | 569 | * trace_puts - write a string into the ftrace buffer |
| 567 | * @str: the string to record | 570 | * @str: the string to record |
| @@ -587,8 +590,6 @@ int __trace_printk(unsigned long ip, const char *fmt, ...); | |||
| 587 | * (1 when __trace_bputs is used, strlen(str) when __trace_puts is used) | 590 | * (1 when __trace_bputs is used, strlen(str) when __trace_puts is used) |
| 588 | */ | 591 | */ |
| 589 | 592 | ||
| 590 | extern int __trace_bputs(unsigned long ip, const char *str); | ||
| 591 | extern int __trace_puts(unsigned long ip, const char *str, int size); | ||
| 592 | #define trace_puts(str) ({ \ | 593 | #define trace_puts(str) ({ \ |
| 593 | static const char *trace_printk_fmt \ | 594 | static const char *trace_printk_fmt \ |
| 594 | __attribute__((section("__trace_printk_fmt"))) = \ | 595 | __attribute__((section("__trace_printk_fmt"))) = \ |
diff --git a/include/linux/mfd/abx500/ab8500.h b/include/linux/mfd/abx500/ab8500.h index fb1bf7d6a410..0390d5943ed6 100644 --- a/include/linux/mfd/abx500/ab8500.h +++ b/include/linux/mfd/abx500/ab8500.h | |||
| @@ -373,13 +373,11 @@ struct ab8500_sysctrl_platform_data; | |||
| 373 | /** | 373 | /** |
| 374 | * struct ab8500_platform_data - AB8500 platform data | 374 | * struct ab8500_platform_data - AB8500 platform data |
| 375 | * @irq_base: start of AB8500 IRQs, AB8500_NR_IRQS will be used | 375 | * @irq_base: start of AB8500 IRQs, AB8500_NR_IRQS will be used |
| 376 | * @pm_power_off: Should machine pm power off hook be registered or not | ||
| 377 | * @init: board-specific initialization after detection of ab8500 | 376 | * @init: board-specific initialization after detection of ab8500 |
| 378 | * @regulator: machine-specific constraints for regulators | 377 | * @regulator: machine-specific constraints for regulators |
| 379 | */ | 378 | */ |
| 380 | struct ab8500_platform_data { | 379 | struct ab8500_platform_data { |
| 381 | int irq_base; | 380 | int irq_base; |
| 382 | bool pm_power_off; | ||
| 383 | void (*init) (struct ab8500 *); | 381 | void (*init) (struct ab8500 *); |
| 384 | struct ab8500_regulator_platform_data *regulator; | 382 | struct ab8500_regulator_platform_data *regulator; |
| 385 | struct abx500_gpio_platform_data *gpio; | 383 | struct abx500_gpio_platform_data *gpio; |
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index a94a5a0ab122..60584b185a0c 100644 --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h | |||
| @@ -2733,6 +2733,17 @@ static inline netdev_features_t netdev_get_wanted_features( | |||
| 2733 | } | 2733 | } |
| 2734 | netdev_features_t netdev_increment_features(netdev_features_t all, | 2734 | netdev_features_t netdev_increment_features(netdev_features_t all, |
| 2735 | netdev_features_t one, netdev_features_t mask); | 2735 | netdev_features_t one, netdev_features_t mask); |
| 2736 | |||
| 2737 | /* Allow TSO being used on stacked device : | ||
| 2738 | * Performing the GSO segmentation before last device | ||
| 2739 | * is a performance improvement. | ||
| 2740 | */ | ||
| 2741 | static inline netdev_features_t netdev_add_tso_features(netdev_features_t features, | ||
| 2742 | netdev_features_t mask) | ||
| 2743 | { | ||
| 2744 | return netdev_increment_features(features, NETIF_F_ALL_TSO, mask); | ||
| 2745 | } | ||
| 2746 | |||
| 2736 | int __netdev_update_features(struct net_device *dev); | 2747 | int __netdev_update_features(struct net_device *dev); |
| 2737 | void netdev_update_features(struct net_device *dev); | 2748 | void netdev_update_features(struct net_device *dev); |
| 2738 | void netdev_change_features(struct net_device *dev); | 2749 | void netdev_change_features(struct net_device *dev); |
diff --git a/include/linux/pci-acpi.h b/include/linux/pci-acpi.h index 81b31613eb25..170447977278 100644 --- a/include/linux/pci-acpi.h +++ b/include/linux/pci-acpi.h | |||
| @@ -60,11 +60,13 @@ static inline void acpi_pci_slot_remove(struct pci_bus *bus) { } | |||
| 60 | void acpiphp_init(void); | 60 | void acpiphp_init(void); |
| 61 | void acpiphp_enumerate_slots(struct pci_bus *bus, acpi_handle handle); | 61 | void acpiphp_enumerate_slots(struct pci_bus *bus, acpi_handle handle); |
| 62 | void acpiphp_remove_slots(struct pci_bus *bus); | 62 | void acpiphp_remove_slots(struct pci_bus *bus); |
| 63 | void acpiphp_check_host_bridge(acpi_handle handle); | ||
| 63 | #else | 64 | #else |
| 64 | static inline void acpiphp_init(void) { } | 65 | static inline void acpiphp_init(void) { } |
| 65 | static inline void acpiphp_enumerate_slots(struct pci_bus *bus, | 66 | static inline void acpiphp_enumerate_slots(struct pci_bus *bus, |
| 66 | acpi_handle handle) { } | 67 | acpi_handle handle) { } |
| 67 | static inline void acpiphp_remove_slots(struct pci_bus *bus) { } | 68 | static inline void acpiphp_remove_slots(struct pci_bus *bus) { } |
| 69 | static inline void acpiphp_check_host_bridge(acpi_handle handle) { } | ||
| 68 | #endif | 70 | #endif |
| 69 | 71 | ||
| 70 | #else /* CONFIG_ACPI */ | 72 | #else /* CONFIG_ACPI */ |
diff --git a/include/linux/platform_data/clk-lpss.h b/include/linux/platform_data/clk-lpss.h index 528e73ce46d2..23901992b9dd 100644 --- a/include/linux/platform_data/clk-lpss.h +++ b/include/linux/platform_data/clk-lpss.h | |||
| @@ -13,6 +13,11 @@ | |||
| 13 | #ifndef __CLK_LPSS_H | 13 | #ifndef __CLK_LPSS_H |
| 14 | #define __CLK_LPSS_H | 14 | #define __CLK_LPSS_H |
| 15 | 15 | ||
| 16 | struct lpss_clk_data { | ||
| 17 | const char *name; | ||
| 18 | struct clk *clk; | ||
| 19 | }; | ||
| 20 | |||
| 16 | extern int lpt_clk_init(void); | 21 | extern int lpt_clk_init(void); |
| 17 | 22 | ||
| 18 | #endif /* __CLK_LPSS_H */ | 23 | #endif /* __CLK_LPSS_H */ |
diff --git a/include/linux/platform_data/serial-omap.h b/include/linux/platform_data/serial-omap.h index ff9b0aab5281..c860c1b314c0 100644 --- a/include/linux/platform_data/serial-omap.h +++ b/include/linux/platform_data/serial-omap.h | |||
| @@ -43,8 +43,6 @@ struct omap_uart_port_info { | |||
| 43 | int DTR_present; | 43 | int DTR_present; |
| 44 | 44 | ||
| 45 | int (*get_context_loss_count)(struct device *); | 45 | int (*get_context_loss_count)(struct device *); |
| 46 | void (*set_forceidle)(struct device *); | ||
| 47 | void (*set_noidle)(struct device *); | ||
| 48 | void (*enable_wakeup)(struct device *, bool); | 46 | void (*enable_wakeup)(struct device *, bool); |
| 49 | }; | 47 | }; |
| 50 | 48 | ||
diff --git a/include/linux/printk.h b/include/linux/printk.h index 6af944ab38f0..22c7052e9372 100644 --- a/include/linux/printk.h +++ b/include/linux/printk.h | |||
| @@ -4,6 +4,7 @@ | |||
| 4 | #include <stdarg.h> | 4 | #include <stdarg.h> |
| 5 | #include <linux/init.h> | 5 | #include <linux/init.h> |
| 6 | #include <linux/kern_levels.h> | 6 | #include <linux/kern_levels.h> |
| 7 | #include <linux/linkage.h> | ||
| 7 | 8 | ||
| 8 | extern const char linux_banner[]; | 9 | extern const char linux_banner[]; |
| 9 | extern const char linux_proc_banner[]; | 10 | extern const char linux_proc_banner[]; |
diff --git a/include/linux/rio.h b/include/linux/rio.h index a3e784278667..18e099342e6f 100644 --- a/include/linux/rio.h +++ b/include/linux/rio.h | |||
| @@ -83,7 +83,6 @@ | |||
| 83 | 83 | ||
| 84 | extern struct bus_type rio_bus_type; | 84 | extern struct bus_type rio_bus_type; |
| 85 | extern struct device rio_bus; | 85 | extern struct device rio_bus; |
| 86 | extern struct list_head rio_devices; /* list of all devices */ | ||
| 87 | 86 | ||
| 88 | struct rio_mport; | 87 | struct rio_mport; |
| 89 | struct rio_dev; | 88 | struct rio_dev; |
| @@ -237,6 +236,7 @@ enum rio_phy_type { | |||
| 237 | * @name: Port name string | 236 | * @name: Port name string |
| 238 | * @priv: Master port private data | 237 | * @priv: Master port private data |
| 239 | * @dma: DMA device associated with mport | 238 | * @dma: DMA device associated with mport |
| 239 | * @nscan: RapidIO network enumeration/discovery operations | ||
| 240 | */ | 240 | */ |
| 241 | struct rio_mport { | 241 | struct rio_mport { |
| 242 | struct list_head dbells; /* list of doorbell events */ | 242 | struct list_head dbells; /* list of doorbell events */ |
| @@ -262,8 +262,14 @@ struct rio_mport { | |||
| 262 | #ifdef CONFIG_RAPIDIO_DMA_ENGINE | 262 | #ifdef CONFIG_RAPIDIO_DMA_ENGINE |
| 263 | struct dma_device dma; | 263 | struct dma_device dma; |
| 264 | #endif | 264 | #endif |
| 265 | struct rio_scan *nscan; | ||
| 265 | }; | 266 | }; |
| 266 | 267 | ||
| 268 | /* | ||
| 269 | * Enumeration/discovery control flags | ||
| 270 | */ | ||
| 271 | #define RIO_SCAN_ENUM_NO_WAIT 0x00000001 /* Do not wait for enum completed */ | ||
| 272 | |||
| 267 | struct rio_id_table { | 273 | struct rio_id_table { |
| 268 | u16 start; /* logical minimal id */ | 274 | u16 start; /* logical minimal id */ |
| 269 | u32 max; /* max number of IDs in table */ | 275 | u32 max; /* max number of IDs in table */ |
| @@ -460,6 +466,16 @@ static inline struct rio_mport *dma_to_mport(struct dma_device *ddev) | |||
| 460 | } | 466 | } |
| 461 | #endif /* CONFIG_RAPIDIO_DMA_ENGINE */ | 467 | #endif /* CONFIG_RAPIDIO_DMA_ENGINE */ |
| 462 | 468 | ||
| 469 | /** | ||
| 470 | * struct rio_scan - RIO enumeration and discovery operations | ||
| 471 | * @enumerate: Callback to perform RapidIO fabric enumeration. | ||
| 472 | * @discover: Callback to perform RapidIO fabric discovery. | ||
| 473 | */ | ||
| 474 | struct rio_scan { | ||
| 475 | int (*enumerate)(struct rio_mport *mport, u32 flags); | ||
| 476 | int (*discover)(struct rio_mport *mport, u32 flags); | ||
| 477 | }; | ||
| 478 | |||
| 463 | /* Architecture and hardware-specific functions */ | 479 | /* Architecture and hardware-specific functions */ |
| 464 | extern int rio_register_mport(struct rio_mport *); | 480 | extern int rio_register_mport(struct rio_mport *); |
| 465 | extern int rio_open_inb_mbox(struct rio_mport *, void *, int, int); | 481 | extern int rio_open_inb_mbox(struct rio_mport *, void *, int, int); |
diff --git a/include/linux/rio_drv.h b/include/linux/rio_drv.h index b75c05920ab5..5059994fe297 100644 --- a/include/linux/rio_drv.h +++ b/include/linux/rio_drv.h | |||
| @@ -433,5 +433,6 @@ extern u16 rio_local_get_device_id(struct rio_mport *port); | |||
| 433 | extern struct rio_dev *rio_get_device(u16 vid, u16 did, struct rio_dev *from); | 433 | extern struct rio_dev *rio_get_device(u16 vid, u16 did, struct rio_dev *from); |
| 434 | extern struct rio_dev *rio_get_asm(u16 vid, u16 did, u16 asm_vid, u16 asm_did, | 434 | extern struct rio_dev *rio_get_asm(u16 vid, u16 did, u16 asm_vid, u16 asm_did, |
| 435 | struct rio_dev *from); | 435 | struct rio_dev *from); |
| 436 | extern int rio_init_mports(void); | ||
| 436 | 437 | ||
| 437 | #endif /* LINUX_RIO_DRV_H */ | 438 | #endif /* LINUX_RIO_DRV_H */ |
diff --git a/include/linux/socket.h b/include/linux/socket.h index 428c37a1f95c..33bf2dfab19d 100644 --- a/include/linux/socket.h +++ b/include/linux/socket.h | |||
| @@ -305,7 +305,6 @@ struct ucred { | |||
| 305 | 305 | ||
| 306 | extern void cred_to_ucred(struct pid *pid, const struct cred *cred, struct ucred *ucred); | 306 | extern void cred_to_ucred(struct pid *pid, const struct cred *cred, struct ucred *ucred); |
| 307 | 307 | ||
| 308 | extern int memcpy_fromiovec(unsigned char *kdata, struct iovec *iov, int len); | ||
| 309 | extern int memcpy_fromiovecend(unsigned char *kdata, const struct iovec *iov, | 308 | extern int memcpy_fromiovecend(unsigned char *kdata, const struct iovec *iov, |
| 310 | int offset, int len); | 309 | int offset, int len); |
| 311 | extern int csum_partial_copy_fromiovecend(unsigned char *kdata, | 310 | extern int csum_partial_copy_fromiovecend(unsigned char *kdata, |
| @@ -314,7 +313,6 @@ extern int csum_partial_copy_fromiovecend(unsigned char *kdata, | |||
| 314 | unsigned int len, __wsum *csump); | 313 | unsigned int len, __wsum *csump); |
| 315 | 314 | ||
| 316 | extern int verify_iovec(struct msghdr *m, struct iovec *iov, struct sockaddr_storage *address, int mode); | 315 | extern int verify_iovec(struct msghdr *m, struct iovec *iov, struct sockaddr_storage *address, int mode); |
| 317 | extern int memcpy_toiovec(struct iovec *v, unsigned char *kdata, int len); | ||
| 318 | extern int memcpy_toiovecend(const struct iovec *v, unsigned char *kdata, | 316 | extern int memcpy_toiovecend(const struct iovec *v, unsigned char *kdata, |
| 319 | int offset, int len); | 317 | int offset, int len); |
| 320 | extern int move_addr_to_kernel(void __user *uaddr, int ulen, struct sockaddr_storage *kaddr); | 318 | extern int move_addr_to_kernel(void __user *uaddr, int ulen, struct sockaddr_storage *kaddr); |
diff --git a/include/linux/uio.h b/include/linux/uio.h index 629aaf51f30b..c55ce243cc09 100644 --- a/include/linux/uio.h +++ b/include/linux/uio.h | |||
| @@ -35,4 +35,7 @@ static inline size_t iov_length(const struct iovec *iov, unsigned long nr_segs) | |||
| 35 | } | 35 | } |
| 36 | 36 | ||
| 37 | unsigned long iov_shorten(struct iovec *iov, unsigned long nr_segs, size_t to); | 37 | unsigned long iov_shorten(struct iovec *iov, unsigned long nr_segs, size_t to); |
| 38 | |||
| 39 | int memcpy_fromiovec(unsigned char *kdata, struct iovec *iov, int len); | ||
| 40 | int memcpy_toiovec(struct iovec *iov, unsigned char *kdata, int len); | ||
| 38 | #endif | 41 | #endif |
diff --git a/include/linux/usb/gadget.h b/include/linux/usb/gadget.h index c454a88abf2e..f1b0dca60f12 100644 --- a/include/linux/usb/gadget.h +++ b/include/linux/usb/gadget.h | |||
| @@ -563,9 +563,8 @@ static inline int gadget_is_dualspeed(struct usb_gadget *g) | |||
| 563 | } | 563 | } |
| 564 | 564 | ||
| 565 | /** | 565 | /** |
| 566 | * gadget_is_superspeed() - return true if the hardware handles | 566 | * gadget_is_superspeed() - return true if the hardware handles superspeed |
| 567 | * supperspeed | 567 | * @g: controller that might support superspeed |
| 568 | * @g: controller that might support supper speed | ||
| 569 | */ | 568 | */ |
| 570 | static inline int gadget_is_superspeed(struct usb_gadget *g) | 569 | static inline int gadget_is_superspeed(struct usb_gadget *g) |
| 571 | { | 570 | { |
diff --git a/include/linux/usb/serial.h b/include/linux/usb/serial.h index b9b0f7b4e43b..302ddf55d2da 100644 --- a/include/linux/usb/serial.h +++ b/include/linux/usb/serial.h | |||
| @@ -268,6 +268,8 @@ struct usb_serial_driver { | |||
| 268 | struct usb_serial_port *port, struct ktermios *old); | 268 | struct usb_serial_port *port, struct ktermios *old); |
| 269 | void (*break_ctl)(struct tty_struct *tty, int break_state); | 269 | void (*break_ctl)(struct tty_struct *tty, int break_state); |
| 270 | int (*chars_in_buffer)(struct tty_struct *tty); | 270 | int (*chars_in_buffer)(struct tty_struct *tty); |
| 271 | void (*wait_until_sent)(struct tty_struct *tty, long timeout); | ||
| 272 | bool (*tx_empty)(struct usb_serial_port *port); | ||
| 271 | void (*throttle)(struct tty_struct *tty); | 273 | void (*throttle)(struct tty_struct *tty); |
| 272 | void (*unthrottle)(struct tty_struct *tty); | 274 | void (*unthrottle)(struct tty_struct *tty); |
| 273 | int (*tiocmget)(struct tty_struct *tty); | 275 | int (*tiocmget)(struct tty_struct *tty); |
| @@ -327,6 +329,8 @@ extern void usb_serial_generic_close(struct usb_serial_port *port); | |||
| 327 | extern int usb_serial_generic_resume(struct usb_serial *serial); | 329 | extern int usb_serial_generic_resume(struct usb_serial *serial); |
| 328 | extern int usb_serial_generic_write_room(struct tty_struct *tty); | 330 | extern int usb_serial_generic_write_room(struct tty_struct *tty); |
| 329 | extern int usb_serial_generic_chars_in_buffer(struct tty_struct *tty); | 331 | extern int usb_serial_generic_chars_in_buffer(struct tty_struct *tty); |
| 332 | extern void usb_serial_generic_wait_until_sent(struct tty_struct *tty, | ||
| 333 | long timeout); | ||
| 330 | extern void usb_serial_generic_read_bulk_callback(struct urb *urb); | 334 | extern void usb_serial_generic_read_bulk_callback(struct urb *urb); |
| 331 | extern void usb_serial_generic_write_bulk_callback(struct urb *urb); | 335 | extern void usb_serial_generic_write_bulk_callback(struct urb *urb); |
| 332 | extern void usb_serial_generic_throttle(struct tty_struct *tty); | 336 | extern void usb_serial_generic_throttle(struct tty_struct *tty); |
diff --git a/include/linux/vt_kern.h b/include/linux/vt_kern.h index e8d65718560b..0d33fca48774 100644 --- a/include/linux/vt_kern.h +++ b/include/linux/vt_kern.h | |||
| @@ -36,7 +36,7 @@ extern int fg_console, last_console, want_console; | |||
| 36 | int vc_allocate(unsigned int console); | 36 | int vc_allocate(unsigned int console); |
| 37 | int vc_cons_allocated(unsigned int console); | 37 | int vc_cons_allocated(unsigned int console); |
| 38 | int vc_resize(struct vc_data *vc, unsigned int cols, unsigned int lines); | 38 | int vc_resize(struct vc_data *vc, unsigned int cols, unsigned int lines); |
| 39 | void vc_deallocate(unsigned int console); | 39 | struct vc_data *vc_deallocate(unsigned int console); |
| 40 | void reset_palette(struct vc_data *vc); | 40 | void reset_palette(struct vc_data *vc); |
| 41 | void do_blank_screen(int entering_gfx); | 41 | void do_blank_screen(int entering_gfx); |
| 42 | void do_unblank_screen(int leaving_gfx); | 42 | void do_unblank_screen(int leaving_gfx); |
diff --git a/include/linux/wait.h b/include/linux/wait.h index ac38be2692d8..1133695eb067 100644 --- a/include/linux/wait.h +++ b/include/linux/wait.h | |||
| @@ -217,6 +217,8 @@ do { \ | |||
| 217 | if (!ret) \ | 217 | if (!ret) \ |
| 218 | break; \ | 218 | break; \ |
| 219 | } \ | 219 | } \ |
| 220 | if (!ret && (condition)) \ | ||
| 221 | ret = 1; \ | ||
| 220 | finish_wait(&wq, &__wait); \ | 222 | finish_wait(&wq, &__wait); \ |
| 221 | } while (0) | 223 | } while (0) |
| 222 | 224 | ||
| @@ -233,8 +235,9 @@ do { \ | |||
| 233 | * wake_up() has to be called after changing any variable that could | 235 | * wake_up() has to be called after changing any variable that could |
| 234 | * change the result of the wait condition. | 236 | * change the result of the wait condition. |
| 235 | * | 237 | * |
| 236 | * The function returns 0 if the @timeout elapsed, and the remaining | 238 | * The function returns 0 if the @timeout elapsed, or the remaining |
| 237 | * jiffies if the condition evaluated to true before the timeout elapsed. | 239 | * jiffies (at least 1) if the @condition evaluated to %true before |
| 240 | * the @timeout elapsed. | ||
| 238 | */ | 241 | */ |
| 239 | #define wait_event_timeout(wq, condition, timeout) \ | 242 | #define wait_event_timeout(wq, condition, timeout) \ |
| 240 | ({ \ | 243 | ({ \ |
| @@ -302,6 +305,8 @@ do { \ | |||
| 302 | ret = -ERESTARTSYS; \ | 305 | ret = -ERESTARTSYS; \ |
| 303 | break; \ | 306 | break; \ |
| 304 | } \ | 307 | } \ |
| 308 | if (!ret && (condition)) \ | ||
| 309 | ret = 1; \ | ||
| 305 | finish_wait(&wq, &__wait); \ | 310 | finish_wait(&wq, &__wait); \ |
| 306 | } while (0) | 311 | } while (0) |
| 307 | 312 | ||
| @@ -318,9 +323,10 @@ do { \ | |||
| 318 | * wake_up() has to be called after changing any variable that could | 323 | * wake_up() has to be called after changing any variable that could |
| 319 | * change the result of the wait condition. | 324 | * change the result of the wait condition. |
| 320 | * | 325 | * |
| 321 | * The function returns 0 if the @timeout elapsed, -ERESTARTSYS if it | 326 | * Returns: |
| 322 | * was interrupted by a signal, and the remaining jiffies otherwise | 327 | * 0 if the @timeout elapsed, -%ERESTARTSYS if it was interrupted by |
| 323 | * if the condition evaluated to true before the timeout elapsed. | 328 | * a signal, or the remaining jiffies (at least 1) if the @condition |
| 329 | * evaluated to %true before the @timeout elapsed. | ||
| 324 | */ | 330 | */ |
| 325 | #define wait_event_interruptible_timeout(wq, condition, timeout) \ | 331 | #define wait_event_interruptible_timeout(wq, condition, timeout) \ |
| 326 | ({ \ | 332 | ({ \ |
diff --git a/include/net/mac80211.h b/include/net/mac80211.h index 04c2d4670dc6..885898a40d13 100644 --- a/include/net/mac80211.h +++ b/include/net/mac80211.h | |||
| @@ -3043,7 +3043,8 @@ void ieee80211_napi_complete(struct ieee80211_hw *hw); | |||
| 3043 | * This function may not be called in IRQ context. Calls to this function | 3043 | * This function may not be called in IRQ context. Calls to this function |
| 3044 | * for a single hardware must be synchronized against each other. Calls to | 3044 | * for a single hardware must be synchronized against each other. Calls to |
| 3045 | * this function, ieee80211_rx_ni() and ieee80211_rx_irqsafe() may not be | 3045 | * this function, ieee80211_rx_ni() and ieee80211_rx_irqsafe() may not be |
| 3046 | * mixed for a single hardware. | 3046 | * mixed for a single hardware. Must not run concurrently with |
| 3047 | * ieee80211_tx_status() or ieee80211_tx_status_ni(). | ||
| 3047 | * | 3048 | * |
| 3048 | * In process context use instead ieee80211_rx_ni(). | 3049 | * In process context use instead ieee80211_rx_ni(). |
| 3049 | * | 3050 | * |
| @@ -3059,7 +3060,8 @@ void ieee80211_rx(struct ieee80211_hw *hw, struct sk_buff *skb); | |||
| 3059 | * (internally defers to a tasklet.) | 3060 | * (internally defers to a tasklet.) |
| 3060 | * | 3061 | * |
| 3061 | * Calls to this function, ieee80211_rx() or ieee80211_rx_ni() may not | 3062 | * Calls to this function, ieee80211_rx() or ieee80211_rx_ni() may not |
| 3062 | * be mixed for a single hardware. | 3063 | * be mixed for a single hardware.Must not run concurrently with |
| 3064 | * ieee80211_tx_status() or ieee80211_tx_status_ni(). | ||
| 3063 | * | 3065 | * |
| 3064 | * @hw: the hardware this frame came in on | 3066 | * @hw: the hardware this frame came in on |
| 3065 | * @skb: the buffer to receive, owned by mac80211 after this call | 3067 | * @skb: the buffer to receive, owned by mac80211 after this call |
| @@ -3073,7 +3075,8 @@ void ieee80211_rx_irqsafe(struct ieee80211_hw *hw, struct sk_buff *skb); | |||
| 3073 | * (internally disables bottom halves). | 3075 | * (internally disables bottom halves). |
| 3074 | * | 3076 | * |
| 3075 | * Calls to this function, ieee80211_rx() and ieee80211_rx_irqsafe() may | 3077 | * Calls to this function, ieee80211_rx() and ieee80211_rx_irqsafe() may |
| 3076 | * not be mixed for a single hardware. | 3078 | * not be mixed for a single hardware. Must not run concurrently with |
| 3079 | * ieee80211_tx_status() or ieee80211_tx_status_ni(). | ||
| 3077 | * | 3080 | * |
| 3078 | * @hw: the hardware this frame came in on | 3081 | * @hw: the hardware this frame came in on |
| 3079 | * @skb: the buffer to receive, owned by mac80211 after this call | 3082 | * @skb: the buffer to receive, owned by mac80211 after this call |
| @@ -3196,7 +3199,8 @@ void ieee80211_get_tx_rates(struct ieee80211_vif *vif, | |||
| 3196 | * This function may not be called in IRQ context. Calls to this function | 3199 | * This function may not be called in IRQ context. Calls to this function |
| 3197 | * for a single hardware must be synchronized against each other. Calls | 3200 | * for a single hardware must be synchronized against each other. Calls |
| 3198 | * to this function, ieee80211_tx_status_ni() and ieee80211_tx_status_irqsafe() | 3201 | * to this function, ieee80211_tx_status_ni() and ieee80211_tx_status_irqsafe() |
| 3199 | * may not be mixed for a single hardware. | 3202 | * may not be mixed for a single hardware. Must not run concurrently with |
| 3203 | * ieee80211_rx() or ieee80211_rx_ni(). | ||
| 3200 | * | 3204 | * |
| 3201 | * @hw: the hardware the frame was transmitted by | 3205 | * @hw: the hardware the frame was transmitted by |
| 3202 | * @skb: the frame that was transmitted, owned by mac80211 after this call | 3206 | * @skb: the frame that was transmitted, owned by mac80211 after this call |
diff --git a/include/net/netfilter/nf_log.h b/include/net/netfilter/nf_log.h index 31f1fb9eb784..99eac12d040b 100644 --- a/include/net/netfilter/nf_log.h +++ b/include/net/netfilter/nf_log.h | |||
| @@ -30,7 +30,8 @@ struct nf_loginfo { | |||
| 30 | } u; | 30 | } u; |
| 31 | }; | 31 | }; |
| 32 | 32 | ||
| 33 | typedef void nf_logfn(u_int8_t pf, | 33 | typedef void nf_logfn(struct net *net, |
| 34 | u_int8_t pf, | ||
| 34 | unsigned int hooknum, | 35 | unsigned int hooknum, |
| 35 | const struct sk_buff *skb, | 36 | const struct sk_buff *skb, |
| 36 | const struct net_device *in, | 37 | const struct net_device *in, |
diff --git a/include/net/netfilter/nfnetlink_log.h b/include/net/netfilter/nfnetlink_log.h index e2dec42c2db2..5ca3f14f0998 100644 --- a/include/net/netfilter/nfnetlink_log.h +++ b/include/net/netfilter/nfnetlink_log.h | |||
| @@ -2,7 +2,8 @@ | |||
| 2 | #define _KER_NFNETLINK_LOG_H | 2 | #define _KER_NFNETLINK_LOG_H |
| 3 | 3 | ||
| 4 | void | 4 | void |
| 5 | nfulnl_log_packet(u_int8_t pf, | 5 | nfulnl_log_packet(struct net *net, |
| 6 | u_int8_t pf, | ||
| 6 | unsigned int hooknum, | 7 | unsigned int hooknum, |
| 7 | const struct sk_buff *skb, | 8 | const struct sk_buff *skb, |
| 8 | const struct net_device *in, | 9 | const struct net_device *in, |
diff --git a/include/uapi/linux/virtio_console.h b/include/uapi/linux/virtio_console.h index ee13ab6c3614..c312f16bc4e7 100644 --- a/include/uapi/linux/virtio_console.h +++ b/include/uapi/linux/virtio_console.h | |||
| @@ -39,7 +39,7 @@ | |||
| 39 | #define VIRTIO_CONSOLE_F_SIZE 0 /* Does host provide console size? */ | 39 | #define VIRTIO_CONSOLE_F_SIZE 0 /* Does host provide console size? */ |
| 40 | #define VIRTIO_CONSOLE_F_MULTIPORT 1 /* Does host provide multiple ports? */ | 40 | #define VIRTIO_CONSOLE_F_MULTIPORT 1 /* Does host provide multiple ports? */ |
| 41 | 41 | ||
| 42 | #define VIRTIO_CONSOLE_BAD_ID (~(u32)0) | 42 | #define VIRTIO_CONSOLE_BAD_ID (~(__u32)0) |
| 43 | 43 | ||
| 44 | struct virtio_console_config { | 44 | struct virtio_console_config { |
| 45 | /* colums of the screens */ | 45 | /* colums of the screens */ |
| @@ -752,19 +752,29 @@ static void do_smart_update(struct sem_array *sma, struct sembuf *sops, int nsop | |||
| 752 | int otime, struct list_head *pt) | 752 | int otime, struct list_head *pt) |
| 753 | { | 753 | { |
| 754 | int i; | 754 | int i; |
| 755 | int progress; | ||
| 755 | 756 | ||
| 756 | if (sma->complex_count || sops == NULL) { | 757 | progress = 1; |
| 757 | if (update_queue(sma, -1, pt)) | 758 | retry_global: |
| 759 | if (sma->complex_count) { | ||
| 760 | if (update_queue(sma, -1, pt)) { | ||
| 761 | progress = 1; | ||
| 758 | otime = 1; | 762 | otime = 1; |
| 763 | sops = NULL; | ||
| 764 | } | ||
| 759 | } | 765 | } |
| 766 | if (!progress) | ||
| 767 | goto done; | ||
| 760 | 768 | ||
| 761 | if (!sops) { | 769 | if (!sops) { |
| 762 | /* No semops; something special is going on. */ | 770 | /* No semops; something special is going on. */ |
| 763 | for (i = 0; i < sma->sem_nsems; i++) { | 771 | for (i = 0; i < sma->sem_nsems; i++) { |
| 764 | if (update_queue(sma, i, pt)) | 772 | if (update_queue(sma, i, pt)) { |
| 765 | otime = 1; | 773 | otime = 1; |
| 774 | progress = 1; | ||
| 775 | } | ||
| 766 | } | 776 | } |
| 767 | goto done; | 777 | goto done_checkretry; |
| 768 | } | 778 | } |
| 769 | 779 | ||
| 770 | /* Check the semaphores that were modified. */ | 780 | /* Check the semaphores that were modified. */ |
| @@ -772,8 +782,15 @@ static void do_smart_update(struct sem_array *sma, struct sembuf *sops, int nsop | |||
| 772 | if (sops[i].sem_op > 0 || | 782 | if (sops[i].sem_op > 0 || |
| 773 | (sops[i].sem_op < 0 && | 783 | (sops[i].sem_op < 0 && |
| 774 | sma->sem_base[sops[i].sem_num].semval == 0)) | 784 | sma->sem_base[sops[i].sem_num].semval == 0)) |
| 775 | if (update_queue(sma, sops[i].sem_num, pt)) | 785 | if (update_queue(sma, sops[i].sem_num, pt)) { |
| 776 | otime = 1; | 786 | otime = 1; |
| 787 | progress = 1; | ||
| 788 | } | ||
| 789 | } | ||
| 790 | done_checkretry: | ||
| 791 | if (progress) { | ||
| 792 | progress = 0; | ||
| 793 | goto retry_global; | ||
| 777 | } | 794 | } |
| 778 | done: | 795 | done: |
| 779 | if (otime) | 796 | if (otime) |
diff --git a/kernel/auditfilter.c b/kernel/auditfilter.c index 83a2970295d1..6bd4a90d1991 100644 --- a/kernel/auditfilter.c +++ b/kernel/auditfilter.c | |||
| @@ -1021,9 +1021,6 @@ static void audit_log_rule_change(char *action, struct audit_krule *rule, int re | |||
| 1021 | * @seq: netlink audit message sequence (serial) number | 1021 | * @seq: netlink audit message sequence (serial) number |
| 1022 | * @data: payload data | 1022 | * @data: payload data |
| 1023 | * @datasz: size of payload data | 1023 | * @datasz: size of payload data |
| 1024 | * @loginuid: loginuid of sender | ||
| 1025 | * @sessionid: sessionid for netlink audit message | ||
| 1026 | * @sid: SE Linux Security ID of sender | ||
| 1027 | */ | 1024 | */ |
| 1028 | int audit_receive_filter(int type, int pid, int seq, void *data, size_t datasz) | 1025 | int audit_receive_filter(int type, int pid, int seq, void *data, size_t datasz) |
| 1029 | { | 1026 | { |
diff --git a/kernel/trace/trace_events.c b/kernel/trace/trace_events.c index 7a0cf68027cc..27963e2bf4bf 100644 --- a/kernel/trace/trace_events.c +++ b/kernel/trace/trace_events.c | |||
| @@ -2072,8 +2072,10 @@ event_enable_func(struct ftrace_hash *hash, | |||
| 2072 | out_reg: | 2072 | out_reg: |
| 2073 | /* Don't let event modules unload while probe registered */ | 2073 | /* Don't let event modules unload while probe registered */ |
| 2074 | ret = try_module_get(file->event_call->mod); | 2074 | ret = try_module_get(file->event_call->mod); |
| 2075 | if (!ret) | 2075 | if (!ret) { |
| 2076 | ret = -EBUSY; | ||
| 2076 | goto out_free; | 2077 | goto out_free; |
| 2078 | } | ||
| 2077 | 2079 | ||
| 2078 | ret = __ftrace_event_enable_disable(file, 1, 1); | 2080 | ret = __ftrace_event_enable_disable(file, 1, 1); |
| 2079 | if (ret < 0) | 2081 | if (ret < 0) |
diff --git a/lib/Makefile b/lib/Makefile index e9c52e1b853a..c55a037a354e 100644 --- a/lib/Makefile +++ b/lib/Makefile | |||
| @@ -23,7 +23,7 @@ lib-y += kobject.o klist.o | |||
| 23 | 23 | ||
| 24 | obj-y += bcd.o div64.o sort.o parser.o halfmd4.o debug_locks.o random32.o \ | 24 | obj-y += bcd.o div64.o sort.o parser.o halfmd4.o debug_locks.o random32.o \ |
| 25 | bust_spinlocks.o hexdump.o kasprintf.o bitmap.o scatterlist.o \ | 25 | bust_spinlocks.o hexdump.o kasprintf.o bitmap.o scatterlist.o \ |
| 26 | gcd.o lcm.o list_sort.o uuid.o flex_array.o \ | 26 | gcd.o lcm.o list_sort.o uuid.o flex_array.o iovec.o \ |
| 27 | bsearch.o find_last_bit.o find_next_bit.o llist.o memweight.o kfifo.o | 27 | bsearch.o find_last_bit.o find_next_bit.o llist.o memweight.o kfifo.o |
| 28 | obj-y += string_helpers.o | 28 | obj-y += string_helpers.o |
| 29 | obj-$(CONFIG_TEST_STRING_HELPERS) += test-string_helpers.o | 29 | obj-$(CONFIG_TEST_STRING_HELPERS) += test-string_helpers.o |
diff --git a/lib/iovec.c b/lib/iovec.c new file mode 100644 index 000000000000..454baa88bf27 --- /dev/null +++ b/lib/iovec.c | |||
| @@ -0,0 +1,53 @@ | |||
| 1 | #include <linux/uaccess.h> | ||
| 2 | #include <linux/export.h> | ||
| 3 | #include <linux/uio.h> | ||
| 4 | |||
| 5 | /* | ||
| 6 | * Copy iovec to kernel. Returns -EFAULT on error. | ||
| 7 | * | ||
| 8 | * Note: this modifies the original iovec. | ||
| 9 | */ | ||
| 10 | |||
| 11 | int memcpy_fromiovec(unsigned char *kdata, struct iovec *iov, int len) | ||
| 12 | { | ||
| 13 | while (len > 0) { | ||
| 14 | if (iov->iov_len) { | ||
| 15 | int copy = min_t(unsigned int, len, iov->iov_len); | ||
| 16 | if (copy_from_user(kdata, iov->iov_base, copy)) | ||
| 17 | return -EFAULT; | ||
| 18 | len -= copy; | ||
| 19 | kdata += copy; | ||
| 20 | iov->iov_base += copy; | ||
| 21 | iov->iov_len -= copy; | ||
| 22 | } | ||
| 23 | iov++; | ||
| 24 | } | ||
| 25 | |||
| 26 | return 0; | ||
| 27 | } | ||
| 28 | EXPORT_SYMBOL(memcpy_fromiovec); | ||
| 29 | |||
| 30 | /* | ||
| 31 | * Copy kernel to iovec. Returns -EFAULT on error. | ||
| 32 | * | ||
| 33 | * Note: this modifies the original iovec. | ||
| 34 | */ | ||
| 35 | |||
| 36 | int memcpy_toiovec(struct iovec *iov, unsigned char *kdata, int len) | ||
| 37 | { | ||
| 38 | while (len > 0) { | ||
| 39 | if (iov->iov_len) { | ||
| 40 | int copy = min_t(unsigned int, iov->iov_len, len); | ||
| 41 | if (copy_to_user(iov->iov_base, kdata, copy)) | ||
| 42 | return -EFAULT; | ||
| 43 | kdata += copy; | ||
| 44 | len -= copy; | ||
| 45 | iov->iov_len -= copy; | ||
| 46 | iov->iov_base += copy; | ||
| 47 | } | ||
| 48 | iov++; | ||
| 49 | } | ||
| 50 | |||
| 51 | return 0; | ||
| 52 | } | ||
| 53 | EXPORT_SYMBOL(memcpy_toiovec); | ||
diff --git a/lib/klist.c b/lib/klist.c index 0874e41609a6..358a368a2947 100644 --- a/lib/klist.c +++ b/lib/klist.c | |||
| @@ -193,10 +193,10 @@ static void klist_release(struct kref *kref) | |||
| 193 | if (waiter->node != n) | 193 | if (waiter->node != n) |
| 194 | continue; | 194 | continue; |
| 195 | 195 | ||
| 196 | list_del(&waiter->list); | ||
| 196 | waiter->woken = 1; | 197 | waiter->woken = 1; |
| 197 | mb(); | 198 | mb(); |
| 198 | wake_up_process(waiter->process); | 199 | wake_up_process(waiter->process); |
| 199 | list_del(&waiter->list); | ||
| 200 | } | 200 | } |
| 201 | spin_unlock(&klist_remove_lock); | 201 | spin_unlock(&klist_remove_lock); |
| 202 | knode_set_klist(n, NULL); | 202 | knode_set_klist(n, NULL); |
diff --git a/lib/mpi/longlong.h b/lib/mpi/longlong.h index 095ab157a521..d411355f238e 100644 --- a/lib/mpi/longlong.h +++ b/lib/mpi/longlong.h | |||
| @@ -318,7 +318,8 @@ extern UDItype __udiv_qrnnd(); | |||
| 318 | "rM" ((USItype)(bh)), \ | 318 | "rM" ((USItype)(bh)), \ |
| 319 | "rM" ((USItype)(al)), \ | 319 | "rM" ((USItype)(al)), \ |
| 320 | "rM" ((USItype)(bl))) | 320 | "rM" ((USItype)(bl))) |
| 321 | #if defined(_PA_RISC1_1) | 321 | #if 0 && defined(_PA_RISC1_1) |
| 322 | /* xmpyu uses floating point register which is not allowed in Linux kernel. */ | ||
| 322 | #define umul_ppmm(wh, wl, u, v) \ | 323 | #define umul_ppmm(wh, wl, u, v) \ |
| 323 | do { \ | 324 | do { \ |
| 324 | union {UDItype __ll; \ | 325 | union {UDItype __ll; \ |
| @@ -337,7 +338,7 @@ do { \ | |||
| 337 | #define UMUL_TIME 40 | 338 | #define UMUL_TIME 40 |
| 338 | #define UDIV_TIME 80 | 339 | #define UDIV_TIME 80 |
| 339 | #endif | 340 | #endif |
| 340 | #ifndef LONGLONG_STANDALONE | 341 | #if 0 /* #ifndef LONGLONG_STANDALONE */ |
| 341 | #define udiv_qrnnd(q, r, n1, n0, d) \ | 342 | #define udiv_qrnnd(q, r, n1, n0, d) \ |
| 342 | do { USItype __r; \ | 343 | do { USItype __r; \ |
| 343 | (q) = __udiv_qrnnd(&__r, (n1), (n0), (d)); \ | 344 | (q) = __udiv_qrnnd(&__r, (n1), (n0), (d)); \ |
diff --git a/mm/huge_memory.c b/mm/huge_memory.c index 03a89a2f464b..362c329b83fe 100644 --- a/mm/huge_memory.c +++ b/mm/huge_memory.c | |||
| @@ -2325,7 +2325,12 @@ static void collapse_huge_page(struct mm_struct *mm, | |||
| 2325 | pte_unmap(pte); | 2325 | pte_unmap(pte); |
| 2326 | spin_lock(&mm->page_table_lock); | 2326 | spin_lock(&mm->page_table_lock); |
| 2327 | BUG_ON(!pmd_none(*pmd)); | 2327 | BUG_ON(!pmd_none(*pmd)); |
| 2328 | set_pmd_at(mm, address, pmd, _pmd); | 2328 | /* |
| 2329 | * We can only use set_pmd_at when establishing | ||
| 2330 | * hugepmds and never for establishing regular pmds that | ||
| 2331 | * points to regular pagetables. Use pmd_populate for that | ||
| 2332 | */ | ||
| 2333 | pmd_populate(mm, pmd, pmd_pgtable(_pmd)); | ||
| 2329 | spin_unlock(&mm->page_table_lock); | 2334 | spin_unlock(&mm->page_table_lock); |
| 2330 | anon_vma_unlock_write(vma->anon_vma); | 2335 | anon_vma_unlock_write(vma->anon_vma); |
| 2331 | goto out; | 2336 | goto out; |
diff --git a/mm/memcontrol.c b/mm/memcontrol.c index cb1c9dedf9b6..010d6c14129a 100644 --- a/mm/memcontrol.c +++ b/mm/memcontrol.c | |||
| @@ -4108,8 +4108,6 @@ __mem_cgroup_uncharge_common(struct page *page, enum charge_type ctype, | |||
| 4108 | if (mem_cgroup_disabled()) | 4108 | if (mem_cgroup_disabled()) |
| 4109 | return NULL; | 4109 | return NULL; |
| 4110 | 4110 | ||
| 4111 | VM_BUG_ON(PageSwapCache(page)); | ||
| 4112 | |||
| 4113 | if (PageTransHuge(page)) { | 4111 | if (PageTransHuge(page)) { |
| 4114 | nr_pages <<= compound_order(page); | 4112 | nr_pages <<= compound_order(page); |
| 4115 | VM_BUG_ON(!PageTransHuge(page)); | 4113 | VM_BUG_ON(!PageTransHuge(page)); |
| @@ -4205,6 +4203,18 @@ void mem_cgroup_uncharge_page(struct page *page) | |||
| 4205 | if (page_mapped(page)) | 4203 | if (page_mapped(page)) |
| 4206 | return; | 4204 | return; |
| 4207 | VM_BUG_ON(page->mapping && !PageAnon(page)); | 4205 | VM_BUG_ON(page->mapping && !PageAnon(page)); |
| 4206 | /* | ||
| 4207 | * If the page is in swap cache, uncharge should be deferred | ||
| 4208 | * to the swap path, which also properly accounts swap usage | ||
| 4209 | * and handles memcg lifetime. | ||
| 4210 | * | ||
| 4211 | * Note that this check is not stable and reclaim may add the | ||
| 4212 | * page to swap cache at any time after this. However, if the | ||
| 4213 | * page is not in swap cache by the time page->mapcount hits | ||
| 4214 | * 0, there won't be any page table references to the swap | ||
| 4215 | * slot, and reclaim will free it and not actually write the | ||
| 4216 | * page to disk. | ||
| 4217 | */ | ||
| 4208 | if (PageSwapCache(page)) | 4218 | if (PageSwapCache(page)) |
| 4209 | return; | 4219 | return; |
| 4210 | __mem_cgroup_uncharge_common(page, MEM_CGROUP_CHARGE_TYPE_ANON, false); | 4220 | __mem_cgroup_uncharge_common(page, MEM_CGROUP_CHARGE_TYPE_ANON, false); |
diff --git a/mm/memory_hotplug.c b/mm/memory_hotplug.c index a221fac1f47d..1ad92b46753e 100644 --- a/mm/memory_hotplug.c +++ b/mm/memory_hotplug.c | |||
| @@ -720,9 +720,12 @@ int __remove_pages(struct zone *zone, unsigned long phys_start_pfn, | |||
| 720 | start = phys_start_pfn << PAGE_SHIFT; | 720 | start = phys_start_pfn << PAGE_SHIFT; |
| 721 | size = nr_pages * PAGE_SIZE; | 721 | size = nr_pages * PAGE_SIZE; |
| 722 | ret = release_mem_region_adjustable(&iomem_resource, start, size); | 722 | ret = release_mem_region_adjustable(&iomem_resource, start, size); |
| 723 | if (ret) | 723 | if (ret) { |
| 724 | pr_warn("Unable to release resource <%016llx-%016llx> (%d)\n", | 724 | resource_size_t endres = start + size - 1; |
| 725 | start, start + size - 1, ret); | 725 | |
| 726 | pr_warn("Unable to release resource <%pa-%pa> (%d)\n", | ||
| 727 | &start, &endres, ret); | ||
| 728 | } | ||
| 726 | 729 | ||
| 727 | sections_to_remove = nr_pages / PAGES_PER_SECTION; | 730 | sections_to_remove = nr_pages / PAGES_PER_SECTION; |
| 728 | for (i = 0; i < sections_to_remove; i++) { | 731 | for (i = 0; i < sections_to_remove; i++) { |
diff --git a/mm/migrate.c b/mm/migrate.c index 27ed22579fd9..b1f57501de9c 100644 --- a/mm/migrate.c +++ b/mm/migrate.c | |||
| @@ -165,7 +165,7 @@ static int remove_migration_pte(struct page *new, struct vm_area_struct *vma, | |||
| 165 | pte = arch_make_huge_pte(pte, vma, new, 0); | 165 | pte = arch_make_huge_pte(pte, vma, new, 0); |
| 166 | } | 166 | } |
| 167 | #endif | 167 | #endif |
| 168 | flush_cache_page(vma, addr, pte_pfn(pte)); | 168 | flush_dcache_page(new); |
| 169 | set_pte_at(mm, addr, ptep, pte); | 169 | set_pte_at(mm, addr, ptep, pte); |
| 170 | 170 | ||
| 171 | if (PageHuge(new)) { | 171 | if (PageHuge(new)) { |
diff --git a/mm/mmu_notifier.c b/mm/mmu_notifier.c index be04122fb277..6725ff183374 100644 --- a/mm/mmu_notifier.c +++ b/mm/mmu_notifier.c | |||
| @@ -40,48 +40,44 @@ void __mmu_notifier_release(struct mm_struct *mm) | |||
| 40 | int id; | 40 | int id; |
| 41 | 41 | ||
| 42 | /* | 42 | /* |
| 43 | * srcu_read_lock() here will block synchronize_srcu() in | 43 | * SRCU here will block mmu_notifier_unregister until |
| 44 | * mmu_notifier_unregister() until all registered | 44 | * ->release returns. |
| 45 | * ->release() callouts this function makes have | ||
| 46 | * returned. | ||
| 47 | */ | 45 | */ |
| 48 | id = srcu_read_lock(&srcu); | 46 | id = srcu_read_lock(&srcu); |
| 47 | hlist_for_each_entry_rcu(mn, &mm->mmu_notifier_mm->list, hlist) | ||
| 48 | /* | ||
| 49 | * If ->release runs before mmu_notifier_unregister it must be | ||
| 50 | * handled, as it's the only way for the driver to flush all | ||
| 51 | * existing sptes and stop the driver from establishing any more | ||
| 52 | * sptes before all the pages in the mm are freed. | ||
| 53 | */ | ||
| 54 | if (mn->ops->release) | ||
| 55 | mn->ops->release(mn, mm); | ||
| 56 | srcu_read_unlock(&srcu, id); | ||
| 57 | |||
| 49 | spin_lock(&mm->mmu_notifier_mm->lock); | 58 | spin_lock(&mm->mmu_notifier_mm->lock); |
| 50 | while (unlikely(!hlist_empty(&mm->mmu_notifier_mm->list))) { | 59 | while (unlikely(!hlist_empty(&mm->mmu_notifier_mm->list))) { |
| 51 | mn = hlist_entry(mm->mmu_notifier_mm->list.first, | 60 | mn = hlist_entry(mm->mmu_notifier_mm->list.first, |
| 52 | struct mmu_notifier, | 61 | struct mmu_notifier, |
| 53 | hlist); | 62 | hlist); |
| 54 | |||
| 55 | /* | 63 | /* |
| 56 | * Unlink. This will prevent mmu_notifier_unregister() | 64 | * We arrived before mmu_notifier_unregister so |
| 57 | * from also making the ->release() callout. | 65 | * mmu_notifier_unregister will do nothing other than to wait |
| 66 | * for ->release to finish and for mmu_notifier_unregister to | ||
| 67 | * return. | ||
| 58 | */ | 68 | */ |
| 59 | hlist_del_init_rcu(&mn->hlist); | 69 | hlist_del_init_rcu(&mn->hlist); |
| 60 | spin_unlock(&mm->mmu_notifier_mm->lock); | ||
| 61 | |||
| 62 | /* | ||
| 63 | * Clear sptes. (see 'release' description in mmu_notifier.h) | ||
| 64 | */ | ||
| 65 | if (mn->ops->release) | ||
| 66 | mn->ops->release(mn, mm); | ||
| 67 | |||
| 68 | spin_lock(&mm->mmu_notifier_mm->lock); | ||
| 69 | } | 70 | } |
| 70 | spin_unlock(&mm->mmu_notifier_mm->lock); | 71 | spin_unlock(&mm->mmu_notifier_mm->lock); |
| 71 | 72 | ||
| 72 | /* | 73 | /* |
| 73 | * All callouts to ->release() which we have done are complete. | 74 | * synchronize_srcu here prevents mmu_notifier_release from returning to |
| 74 | * Allow synchronize_srcu() in mmu_notifier_unregister() to complete | 75 | * exit_mmap (which would proceed with freeing all pages in the mm) |
| 75 | */ | 76 | * until the ->release method returns, if it was invoked by |
| 76 | srcu_read_unlock(&srcu, id); | 77 | * mmu_notifier_unregister. |
| 77 | 78 | * | |
| 78 | /* | 79 | * The mmu_notifier_mm can't go away from under us because one mm_count |
| 79 | * mmu_notifier_unregister() may have unlinked a notifier and may | 80 | * is held by exit_mmap. |
| 80 | * still be calling out to it. Additionally, other notifiers | ||
| 81 | * may have been active via vmtruncate() et. al. Block here | ||
| 82 | * to ensure that all notifier callouts for this mm have been | ||
| 83 | * completed and the sptes are really cleaned up before returning | ||
| 84 | * to exit_mmap(). | ||
| 85 | */ | 81 | */ |
| 86 | synchronize_srcu(&srcu); | 82 | synchronize_srcu(&srcu); |
| 87 | } | 83 | } |
| @@ -292,31 +288,34 @@ void mmu_notifier_unregister(struct mmu_notifier *mn, struct mm_struct *mm) | |||
| 292 | { | 288 | { |
| 293 | BUG_ON(atomic_read(&mm->mm_count) <= 0); | 289 | BUG_ON(atomic_read(&mm->mm_count) <= 0); |
| 294 | 290 | ||
| 295 | spin_lock(&mm->mmu_notifier_mm->lock); | ||
| 296 | if (!hlist_unhashed(&mn->hlist)) { | 291 | if (!hlist_unhashed(&mn->hlist)) { |
| 292 | /* | ||
| 293 | * SRCU here will force exit_mmap to wait for ->release to | ||
| 294 | * finish before freeing the pages. | ||
| 295 | */ | ||
| 297 | int id; | 296 | int id; |
| 298 | 297 | ||
| 298 | id = srcu_read_lock(&srcu); | ||
| 299 | /* | 299 | /* |
| 300 | * Ensure we synchronize up with __mmu_notifier_release(). | 300 | * exit_mmap will block in mmu_notifier_release to guarantee |
| 301 | * that ->release is called before freeing the pages. | ||
| 301 | */ | 302 | */ |
| 302 | id = srcu_read_lock(&srcu); | ||
| 303 | |||
| 304 | hlist_del_rcu(&mn->hlist); | ||
| 305 | spin_unlock(&mm->mmu_notifier_mm->lock); | ||
| 306 | |||
| 307 | if (mn->ops->release) | 303 | if (mn->ops->release) |
| 308 | mn->ops->release(mn, mm); | 304 | mn->ops->release(mn, mm); |
| 305 | srcu_read_unlock(&srcu, id); | ||
| 309 | 306 | ||
| 307 | spin_lock(&mm->mmu_notifier_mm->lock); | ||
| 310 | /* | 308 | /* |
| 311 | * Allow __mmu_notifier_release() to complete. | 309 | * Can not use list_del_rcu() since __mmu_notifier_release |
| 310 | * can delete it before we hold the lock. | ||
| 312 | */ | 311 | */ |
| 313 | srcu_read_unlock(&srcu, id); | 312 | hlist_del_init_rcu(&mn->hlist); |
| 314 | } else | ||
| 315 | spin_unlock(&mm->mmu_notifier_mm->lock); | 313 | spin_unlock(&mm->mmu_notifier_mm->lock); |
| 314 | } | ||
| 316 | 315 | ||
| 317 | /* | 316 | /* |
| 318 | * Wait for any running method to finish, including ->release() if it | 317 | * Wait for any running method to finish, of course including |
| 319 | * was run by __mmu_notifier_release() instead of us. | 318 | * ->release if it was run by mmu_notifier_relase instead of us. |
| 320 | */ | 319 | */ |
| 321 | synchronize_srcu(&srcu); | 320 | synchronize_srcu(&srcu); |
| 322 | 321 | ||
diff --git a/mm/page_alloc.c b/mm/page_alloc.c index 98cbdf6e5532..378a15bcd649 100644 --- a/mm/page_alloc.c +++ b/mm/page_alloc.c | |||
| @@ -5158,7 +5158,7 @@ unsigned long free_reserved_area(unsigned long start, unsigned long end, | |||
| 5158 | for (pages = 0; pos < end; pos += PAGE_SIZE, pages++) { | 5158 | for (pages = 0; pos < end; pos += PAGE_SIZE, pages++) { |
| 5159 | if (poison) | 5159 | if (poison) |
| 5160 | memset((void *)pos, poison, PAGE_SIZE); | 5160 | memset((void *)pos, poison, PAGE_SIZE); |
| 5161 | free_reserved_page(virt_to_page(pos)); | 5161 | free_reserved_page(virt_to_page((void *)pos)); |
| 5162 | } | 5162 | } |
| 5163 | 5163 | ||
| 5164 | if (pages && s) | 5164 | if (pages && s) |
diff --git a/mm/pagewalk.c b/mm/pagewalk.c index 35aa294656cd..5da2cbcfdbb5 100644 --- a/mm/pagewalk.c +++ b/mm/pagewalk.c | |||
| @@ -127,28 +127,7 @@ static int walk_hugetlb_range(struct vm_area_struct *vma, | |||
| 127 | return 0; | 127 | return 0; |
| 128 | } | 128 | } |
| 129 | 129 | ||
| 130 | static struct vm_area_struct* hugetlb_vma(unsigned long addr, struct mm_walk *walk) | ||
| 131 | { | ||
| 132 | struct vm_area_struct *vma; | ||
| 133 | |||
| 134 | /* We don't need vma lookup at all. */ | ||
| 135 | if (!walk->hugetlb_entry) | ||
| 136 | return NULL; | ||
| 137 | |||
| 138 | VM_BUG_ON(!rwsem_is_locked(&walk->mm->mmap_sem)); | ||
| 139 | vma = find_vma(walk->mm, addr); | ||
| 140 | if (vma && vma->vm_start <= addr && is_vm_hugetlb_page(vma)) | ||
| 141 | return vma; | ||
| 142 | |||
| 143 | return NULL; | ||
| 144 | } | ||
| 145 | |||
| 146 | #else /* CONFIG_HUGETLB_PAGE */ | 130 | #else /* CONFIG_HUGETLB_PAGE */ |
| 147 | static struct vm_area_struct* hugetlb_vma(unsigned long addr, struct mm_walk *walk) | ||
| 148 | { | ||
| 149 | return NULL; | ||
| 150 | } | ||
| 151 | |||
| 152 | static int walk_hugetlb_range(struct vm_area_struct *vma, | 131 | static int walk_hugetlb_range(struct vm_area_struct *vma, |
| 153 | unsigned long addr, unsigned long end, | 132 | unsigned long addr, unsigned long end, |
| 154 | struct mm_walk *walk) | 133 | struct mm_walk *walk) |
| @@ -198,30 +177,53 @@ int walk_page_range(unsigned long addr, unsigned long end, | |||
| 198 | if (!walk->mm) | 177 | if (!walk->mm) |
| 199 | return -EINVAL; | 178 | return -EINVAL; |
| 200 | 179 | ||
| 180 | VM_BUG_ON(!rwsem_is_locked(&walk->mm->mmap_sem)); | ||
| 181 | |||
| 201 | pgd = pgd_offset(walk->mm, addr); | 182 | pgd = pgd_offset(walk->mm, addr); |
| 202 | do { | 183 | do { |
| 203 | struct vm_area_struct *vma; | 184 | struct vm_area_struct *vma = NULL; |
| 204 | 185 | ||
| 205 | next = pgd_addr_end(addr, end); | 186 | next = pgd_addr_end(addr, end); |
| 206 | 187 | ||
| 207 | /* | 188 | /* |
| 208 | * handle hugetlb vma individually because pagetable walk for | 189 | * This function was not intended to be vma based. |
| 209 | * the hugetlb page is dependent on the architecture and | 190 | * But there are vma special cases to be handled: |
| 210 | * we can't handled it in the same manner as non-huge pages. | 191 | * - hugetlb vma's |
| 192 | * - VM_PFNMAP vma's | ||
| 211 | */ | 193 | */ |
| 212 | vma = hugetlb_vma(addr, walk); | 194 | vma = find_vma(walk->mm, addr); |
| 213 | if (vma) { | 195 | if (vma) { |
| 214 | if (vma->vm_end < next) | 196 | /* |
| 197 | * There are no page structures backing a VM_PFNMAP | ||
| 198 | * range, so do not allow split_huge_page_pmd(). | ||
| 199 | */ | ||
| 200 | if ((vma->vm_start <= addr) && | ||
| 201 | (vma->vm_flags & VM_PFNMAP)) { | ||
| 215 | next = vma->vm_end; | 202 | next = vma->vm_end; |
| 203 | pgd = pgd_offset(walk->mm, next); | ||
| 204 | continue; | ||
| 205 | } | ||
| 216 | /* | 206 | /* |
| 217 | * Hugepage is very tightly coupled with vma, so | 207 | * Handle hugetlb vma individually because pagetable |
| 218 | * walk through hugetlb entries within a given vma. | 208 | * walk for the hugetlb page is dependent on the |
| 209 | * architecture and we can't handled it in the same | ||
| 210 | * manner as non-huge pages. | ||
| 219 | */ | 211 | */ |
| 220 | err = walk_hugetlb_range(vma, addr, next, walk); | 212 | if (walk->hugetlb_entry && (vma->vm_start <= addr) && |
| 221 | if (err) | 213 | is_vm_hugetlb_page(vma)) { |
| 222 | break; | 214 | if (vma->vm_end < next) |
| 223 | pgd = pgd_offset(walk->mm, next); | 215 | next = vma->vm_end; |
| 224 | continue; | 216 | /* |
| 217 | * Hugepage is very tightly coupled with vma, | ||
| 218 | * so walk through hugetlb entries within a | ||
| 219 | * given vma. | ||
| 220 | */ | ||
| 221 | err = walk_hugetlb_range(vma, addr, next, walk); | ||
| 222 | if (err) | ||
| 223 | break; | ||
| 224 | pgd = pgd_offset(walk->mm, next); | ||
| 225 | continue; | ||
| 226 | } | ||
| 225 | } | 227 | } |
| 226 | 228 | ||
| 227 | if (pgd_none_or_clear_bad(pgd)) { | 229 | if (pgd_none_or_clear_bad(pgd)) { |
diff --git a/net/802/mrp.c b/net/802/mrp.c index e085bcc754f6..1eb05d80b07b 100644 --- a/net/802/mrp.c +++ b/net/802/mrp.c | |||
| @@ -871,10 +871,10 @@ void mrp_uninit_applicant(struct net_device *dev, struct mrp_application *appl) | |||
| 871 | */ | 871 | */ |
| 872 | del_timer_sync(&app->join_timer); | 872 | del_timer_sync(&app->join_timer); |
| 873 | 873 | ||
| 874 | spin_lock(&app->lock); | 874 | spin_lock_bh(&app->lock); |
| 875 | mrp_mad_event(app, MRP_EVENT_TX); | 875 | mrp_mad_event(app, MRP_EVENT_TX); |
| 876 | mrp_pdu_queue(app); | 876 | mrp_pdu_queue(app); |
| 877 | spin_unlock(&app->lock); | 877 | spin_unlock_bh(&app->lock); |
| 878 | 878 | ||
| 879 | mrp_queue_xmit(app); | 879 | mrp_queue_xmit(app); |
| 880 | 880 | ||
diff --git a/net/batman-adv/main.c b/net/batman-adv/main.c index 1240f07ad31d..51aafd669cbb 100644 --- a/net/batman-adv/main.c +++ b/net/batman-adv/main.c | |||
| @@ -181,6 +181,7 @@ void batadv_mesh_free(struct net_device *soft_iface) | |||
| 181 | batadv_originator_free(bat_priv); | 181 | batadv_originator_free(bat_priv); |
| 182 | 182 | ||
| 183 | free_percpu(bat_priv->bat_counters); | 183 | free_percpu(bat_priv->bat_counters); |
| 184 | bat_priv->bat_counters = NULL; | ||
| 184 | 185 | ||
| 185 | atomic_set(&bat_priv->mesh_state, BATADV_MESH_INACTIVE); | 186 | atomic_set(&bat_priv->mesh_state, BATADV_MESH_INACTIVE); |
| 186 | } | 187 | } |
diff --git a/net/batman-adv/originator.c b/net/batman-adv/originator.c index 2f3452546636..fad1a2093e15 100644 --- a/net/batman-adv/originator.c +++ b/net/batman-adv/originator.c | |||
| @@ -156,12 +156,28 @@ static void batadv_orig_node_free_rcu(struct rcu_head *rcu) | |||
| 156 | kfree(orig_node); | 156 | kfree(orig_node); |
| 157 | } | 157 | } |
| 158 | 158 | ||
| 159 | /** | ||
| 160 | * batadv_orig_node_free_ref - decrement the orig node refcounter and possibly | ||
| 161 | * schedule an rcu callback for freeing it | ||
| 162 | * @orig_node: the orig node to free | ||
| 163 | */ | ||
| 159 | void batadv_orig_node_free_ref(struct batadv_orig_node *orig_node) | 164 | void batadv_orig_node_free_ref(struct batadv_orig_node *orig_node) |
| 160 | { | 165 | { |
| 161 | if (atomic_dec_and_test(&orig_node->refcount)) | 166 | if (atomic_dec_and_test(&orig_node->refcount)) |
| 162 | call_rcu(&orig_node->rcu, batadv_orig_node_free_rcu); | 167 | call_rcu(&orig_node->rcu, batadv_orig_node_free_rcu); |
| 163 | } | 168 | } |
| 164 | 169 | ||
| 170 | /** | ||
| 171 | * batadv_orig_node_free_ref_now - decrement the orig node refcounter and | ||
| 172 | * possibly free it (without rcu callback) | ||
| 173 | * @orig_node: the orig node to free | ||
| 174 | */ | ||
| 175 | void batadv_orig_node_free_ref_now(struct batadv_orig_node *orig_node) | ||
| 176 | { | ||
| 177 | if (atomic_dec_and_test(&orig_node->refcount)) | ||
| 178 | batadv_orig_node_free_rcu(&orig_node->rcu); | ||
| 179 | } | ||
| 180 | |||
| 165 | void batadv_originator_free(struct batadv_priv *bat_priv) | 181 | void batadv_originator_free(struct batadv_priv *bat_priv) |
| 166 | { | 182 | { |
| 167 | struct batadv_hashtable *hash = bat_priv->orig_hash; | 183 | struct batadv_hashtable *hash = bat_priv->orig_hash; |
diff --git a/net/batman-adv/originator.h b/net/batman-adv/originator.h index 7df48fa7669d..734e5a3d8a5b 100644 --- a/net/batman-adv/originator.h +++ b/net/batman-adv/originator.h | |||
| @@ -26,6 +26,7 @@ int batadv_originator_init(struct batadv_priv *bat_priv); | |||
| 26 | void batadv_originator_free(struct batadv_priv *bat_priv); | 26 | void batadv_originator_free(struct batadv_priv *bat_priv); |
| 27 | void batadv_purge_orig_ref(struct batadv_priv *bat_priv); | 27 | void batadv_purge_orig_ref(struct batadv_priv *bat_priv); |
| 28 | void batadv_orig_node_free_ref(struct batadv_orig_node *orig_node); | 28 | void batadv_orig_node_free_ref(struct batadv_orig_node *orig_node); |
| 29 | void batadv_orig_node_free_ref_now(struct batadv_orig_node *orig_node); | ||
| 29 | struct batadv_orig_node *batadv_get_orig_node(struct batadv_priv *bat_priv, | 30 | struct batadv_orig_node *batadv_get_orig_node(struct batadv_priv *bat_priv, |
| 30 | const uint8_t *addr); | 31 | const uint8_t *addr); |
| 31 | struct batadv_neigh_node * | 32 | struct batadv_neigh_node * |
diff --git a/net/batman-adv/soft-interface.c b/net/batman-adv/soft-interface.c index 6f20d339e33a..819dfb006cdf 100644 --- a/net/batman-adv/soft-interface.c +++ b/net/batman-adv/soft-interface.c | |||
| @@ -505,6 +505,7 @@ unreg_debugfs: | |||
| 505 | batadv_debugfs_del_meshif(dev); | 505 | batadv_debugfs_del_meshif(dev); |
| 506 | free_bat_counters: | 506 | free_bat_counters: |
| 507 | free_percpu(bat_priv->bat_counters); | 507 | free_percpu(bat_priv->bat_counters); |
| 508 | bat_priv->bat_counters = NULL; | ||
| 508 | 509 | ||
| 509 | return ret; | 510 | return ret; |
| 510 | } | 511 | } |
diff --git a/net/batman-adv/translation-table.c b/net/batman-adv/translation-table.c index 5e89deeb9542..9e8748575845 100644 --- a/net/batman-adv/translation-table.c +++ b/net/batman-adv/translation-table.c | |||
| @@ -144,7 +144,12 @@ static void batadv_tt_orig_list_entry_free_rcu(struct rcu_head *rcu) | |||
| 144 | struct batadv_tt_orig_list_entry *orig_entry; | 144 | struct batadv_tt_orig_list_entry *orig_entry; |
| 145 | 145 | ||
| 146 | orig_entry = container_of(rcu, struct batadv_tt_orig_list_entry, rcu); | 146 | orig_entry = container_of(rcu, struct batadv_tt_orig_list_entry, rcu); |
| 147 | batadv_orig_node_free_ref(orig_entry->orig_node); | 147 | |
| 148 | /* We are in an rcu callback here, therefore we cannot use | ||
| 149 | * batadv_orig_node_free_ref() and its call_rcu(): | ||
| 150 | * An rcu_barrier() wouldn't wait for that to finish | ||
| 151 | */ | ||
| 152 | batadv_orig_node_free_ref_now(orig_entry->orig_node); | ||
| 148 | kfree(orig_entry); | 153 | kfree(orig_entry); |
| 149 | } | 154 | } |
| 150 | 155 | ||
diff --git a/net/bridge/netfilter/ebt_log.c b/net/bridge/netfilter/ebt_log.c index 9878eb8204c5..19c37a4929bc 100644 --- a/net/bridge/netfilter/ebt_log.c +++ b/net/bridge/netfilter/ebt_log.c | |||
| @@ -72,13 +72,12 @@ print_ports(const struct sk_buff *skb, uint8_t protocol, int offset) | |||
| 72 | } | 72 | } |
| 73 | 73 | ||
| 74 | static void | 74 | static void |
| 75 | ebt_log_packet(u_int8_t pf, unsigned int hooknum, | 75 | ebt_log_packet(struct net *net, u_int8_t pf, unsigned int hooknum, |
| 76 | const struct sk_buff *skb, const struct net_device *in, | 76 | const struct sk_buff *skb, const struct net_device *in, |
| 77 | const struct net_device *out, const struct nf_loginfo *loginfo, | 77 | const struct net_device *out, const struct nf_loginfo *loginfo, |
| 78 | const char *prefix) | 78 | const char *prefix) |
| 79 | { | 79 | { |
| 80 | unsigned int bitmask; | 80 | unsigned int bitmask; |
| 81 | struct net *net = dev_net(in ? in : out); | ||
| 82 | 81 | ||
| 83 | /* FIXME: Disabled from containers until syslog ns is supported */ | 82 | /* FIXME: Disabled from containers until syslog ns is supported */ |
| 84 | if (!net_eq(net, &init_net)) | 83 | if (!net_eq(net, &init_net)) |
| @@ -191,7 +190,7 @@ ebt_log_tg(struct sk_buff *skb, const struct xt_action_param *par) | |||
| 191 | nf_log_packet(net, NFPROTO_BRIDGE, par->hooknum, skb, | 190 | nf_log_packet(net, NFPROTO_BRIDGE, par->hooknum, skb, |
| 192 | par->in, par->out, &li, "%s", info->prefix); | 191 | par->in, par->out, &li, "%s", info->prefix); |
| 193 | else | 192 | else |
| 194 | ebt_log_packet(NFPROTO_BRIDGE, par->hooknum, skb, par->in, | 193 | ebt_log_packet(net, NFPROTO_BRIDGE, par->hooknum, skb, par->in, |
| 195 | par->out, &li, info->prefix); | 194 | par->out, &li, info->prefix); |
| 196 | return EBT_CONTINUE; | 195 | return EBT_CONTINUE; |
| 197 | } | 196 | } |
diff --git a/net/bridge/netfilter/ebt_ulog.c b/net/bridge/netfilter/ebt_ulog.c index fc1905c51417..df0364aa12d5 100644 --- a/net/bridge/netfilter/ebt_ulog.c +++ b/net/bridge/netfilter/ebt_ulog.c | |||
| @@ -131,14 +131,16 @@ static struct sk_buff *ulog_alloc_skb(unsigned int size) | |||
| 131 | return skb; | 131 | return skb; |
| 132 | } | 132 | } |
| 133 | 133 | ||
| 134 | static void ebt_ulog_packet(unsigned int hooknr, const struct sk_buff *skb, | 134 | static void ebt_ulog_packet(struct net *net, unsigned int hooknr, |
| 135 | const struct net_device *in, const struct net_device *out, | 135 | const struct sk_buff *skb, |
| 136 | const struct ebt_ulog_info *uloginfo, const char *prefix) | 136 | const struct net_device *in, |
| 137 | const struct net_device *out, | ||
| 138 | const struct ebt_ulog_info *uloginfo, | ||
| 139 | const char *prefix) | ||
| 137 | { | 140 | { |
| 138 | ebt_ulog_packet_msg_t *pm; | 141 | ebt_ulog_packet_msg_t *pm; |
| 139 | size_t size, copy_len; | 142 | size_t size, copy_len; |
| 140 | struct nlmsghdr *nlh; | 143 | struct nlmsghdr *nlh; |
| 141 | struct net *net = dev_net(in ? in : out); | ||
| 142 | struct ebt_ulog_net *ebt = ebt_ulog_pernet(net); | 144 | struct ebt_ulog_net *ebt = ebt_ulog_pernet(net); |
| 143 | unsigned int group = uloginfo->nlgroup; | 145 | unsigned int group = uloginfo->nlgroup; |
| 144 | ebt_ulog_buff_t *ub = &ebt->ulog_buffers[group]; | 146 | ebt_ulog_buff_t *ub = &ebt->ulog_buffers[group]; |
| @@ -233,7 +235,7 @@ unlock: | |||
| 233 | } | 235 | } |
| 234 | 236 | ||
| 235 | /* this function is registered with the netfilter core */ | 237 | /* this function is registered with the netfilter core */ |
| 236 | static void ebt_log_packet(u_int8_t pf, unsigned int hooknum, | 238 | static void ebt_log_packet(struct net *net, u_int8_t pf, unsigned int hooknum, |
| 237 | const struct sk_buff *skb, const struct net_device *in, | 239 | const struct sk_buff *skb, const struct net_device *in, |
| 238 | const struct net_device *out, const struct nf_loginfo *li, | 240 | const struct net_device *out, const struct nf_loginfo *li, |
| 239 | const char *prefix) | 241 | const char *prefix) |
| @@ -252,13 +254,15 @@ static void ebt_log_packet(u_int8_t pf, unsigned int hooknum, | |||
| 252 | strlcpy(loginfo.prefix, prefix, sizeof(loginfo.prefix)); | 254 | strlcpy(loginfo.prefix, prefix, sizeof(loginfo.prefix)); |
| 253 | } | 255 | } |
| 254 | 256 | ||
| 255 | ebt_ulog_packet(hooknum, skb, in, out, &loginfo, prefix); | 257 | ebt_ulog_packet(net, hooknum, skb, in, out, &loginfo, prefix); |
| 256 | } | 258 | } |
| 257 | 259 | ||
| 258 | static unsigned int | 260 | static unsigned int |
| 259 | ebt_ulog_tg(struct sk_buff *skb, const struct xt_action_param *par) | 261 | ebt_ulog_tg(struct sk_buff *skb, const struct xt_action_param *par) |
| 260 | { | 262 | { |
| 261 | ebt_ulog_packet(par->hooknum, skb, par->in, par->out, | 263 | struct net *net = dev_net(par->in ? par->in : par->out); |
| 264 | |||
| 265 | ebt_ulog_packet(net, par->hooknum, skb, par->in, par->out, | ||
| 262 | par->targinfo, NULL); | 266 | par->targinfo, NULL); |
| 263 | return EBT_CONTINUE; | 267 | return EBT_CONTINUE; |
| 264 | } | 268 | } |
diff --git a/net/core/iovec.c b/net/core/iovec.c index 7e7aeb01de45..de178e462682 100644 --- a/net/core/iovec.c +++ b/net/core/iovec.c | |||
| @@ -75,31 +75,6 @@ int verify_iovec(struct msghdr *m, struct iovec *iov, struct sockaddr_storage *a | |||
| 75 | 75 | ||
| 76 | /* | 76 | /* |
| 77 | * Copy kernel to iovec. Returns -EFAULT on error. | 77 | * Copy kernel to iovec. Returns -EFAULT on error. |
| 78 | * | ||
| 79 | * Note: this modifies the original iovec. | ||
| 80 | */ | ||
| 81 | |||
| 82 | int memcpy_toiovec(struct iovec *iov, unsigned char *kdata, int len) | ||
| 83 | { | ||
| 84 | while (len > 0) { | ||
| 85 | if (iov->iov_len) { | ||
| 86 | int copy = min_t(unsigned int, iov->iov_len, len); | ||
| 87 | if (copy_to_user(iov->iov_base, kdata, copy)) | ||
| 88 | return -EFAULT; | ||
| 89 | kdata += copy; | ||
| 90 | len -= copy; | ||
| 91 | iov->iov_len -= copy; | ||
| 92 | iov->iov_base += copy; | ||
| 93 | } | ||
| 94 | iov++; | ||
| 95 | } | ||
| 96 | |||
| 97 | return 0; | ||
| 98 | } | ||
| 99 | EXPORT_SYMBOL(memcpy_toiovec); | ||
| 100 | |||
| 101 | /* | ||
| 102 | * Copy kernel to iovec. Returns -EFAULT on error. | ||
| 103 | */ | 78 | */ |
| 104 | 79 | ||
| 105 | int memcpy_toiovecend(const struct iovec *iov, unsigned char *kdata, | 80 | int memcpy_toiovecend(const struct iovec *iov, unsigned char *kdata, |
| @@ -125,31 +100,6 @@ int memcpy_toiovecend(const struct iovec *iov, unsigned char *kdata, | |||
| 125 | EXPORT_SYMBOL(memcpy_toiovecend); | 100 | EXPORT_SYMBOL(memcpy_toiovecend); |
| 126 | 101 | ||
| 127 | /* | 102 | /* |
| 128 | * Copy iovec to kernel. Returns -EFAULT on error. | ||
| 129 | * | ||
| 130 | * Note: this modifies the original iovec. | ||
| 131 | */ | ||
| 132 | |||
| 133 | int memcpy_fromiovec(unsigned char *kdata, struct iovec *iov, int len) | ||
| 134 | { | ||
| 135 | while (len > 0) { | ||
| 136 | if (iov->iov_len) { | ||
| 137 | int copy = min_t(unsigned int, len, iov->iov_len); | ||
| 138 | if (copy_from_user(kdata, iov->iov_base, copy)) | ||
| 139 | return -EFAULT; | ||
| 140 | len -= copy; | ||
| 141 | kdata += copy; | ||
| 142 | iov->iov_base += copy; | ||
| 143 | iov->iov_len -= copy; | ||
| 144 | } | ||
| 145 | iov++; | ||
| 146 | } | ||
| 147 | |||
| 148 | return 0; | ||
| 149 | } | ||
| 150 | EXPORT_SYMBOL(memcpy_fromiovec); | ||
| 151 | |||
| 152 | /* | ||
| 153 | * Copy iovec from kernel. Returns -EFAULT on error. | 103 | * Copy iovec from kernel. Returns -EFAULT on error. |
| 154 | */ | 104 | */ |
| 155 | 105 | ||
diff --git a/net/ipv4/ip_gre.c b/net/ipv4/ip_gre.c index c625e4dad4b0..2a83591492dd 100644 --- a/net/ipv4/ip_gre.c +++ b/net/ipv4/ip_gre.c | |||
| @@ -235,7 +235,7 @@ static void ipgre_err(struct sk_buff *skb, u32 info) | |||
| 235 | */ | 235 | */ |
| 236 | struct net *net = dev_net(skb->dev); | 236 | struct net *net = dev_net(skb->dev); |
| 237 | struct ip_tunnel_net *itn; | 237 | struct ip_tunnel_net *itn; |
| 238 | const struct iphdr *iph = (const struct iphdr *)skb->data; | 238 | const struct iphdr *iph; |
| 239 | const int type = icmp_hdr(skb)->type; | 239 | const int type = icmp_hdr(skb)->type; |
| 240 | const int code = icmp_hdr(skb)->code; | 240 | const int code = icmp_hdr(skb)->code; |
| 241 | struct ip_tunnel *t; | 241 | struct ip_tunnel *t; |
| @@ -281,6 +281,7 @@ static void ipgre_err(struct sk_buff *skb, u32 info) | |||
| 281 | else | 281 | else |
| 282 | itn = net_generic(net, ipgre_net_id); | 282 | itn = net_generic(net, ipgre_net_id); |
| 283 | 283 | ||
| 284 | iph = (const struct iphdr *)skb->data; | ||
| 284 | t = ip_tunnel_lookup(itn, skb->dev->ifindex, tpi.flags, | 285 | t = ip_tunnel_lookup(itn, skb->dev->ifindex, tpi.flags, |
| 285 | iph->daddr, iph->saddr, tpi.key); | 286 | iph->daddr, iph->saddr, tpi.key); |
| 286 | 287 | ||
diff --git a/net/ipv4/netfilter/ipt_ULOG.c b/net/ipv4/netfilter/ipt_ULOG.c index f8a222cb6448..cf08218ddbcf 100644 --- a/net/ipv4/netfilter/ipt_ULOG.c +++ b/net/ipv4/netfilter/ipt_ULOG.c | |||
| @@ -162,7 +162,8 @@ static struct sk_buff *ulog_alloc_skb(unsigned int size) | |||
| 162 | return skb; | 162 | return skb; |
| 163 | } | 163 | } |
| 164 | 164 | ||
| 165 | static void ipt_ulog_packet(unsigned int hooknum, | 165 | static void ipt_ulog_packet(struct net *net, |
| 166 | unsigned int hooknum, | ||
| 166 | const struct sk_buff *skb, | 167 | const struct sk_buff *skb, |
| 167 | const struct net_device *in, | 168 | const struct net_device *in, |
| 168 | const struct net_device *out, | 169 | const struct net_device *out, |
| @@ -174,7 +175,6 @@ static void ipt_ulog_packet(unsigned int hooknum, | |||
| 174 | size_t size, copy_len; | 175 | size_t size, copy_len; |
| 175 | struct nlmsghdr *nlh; | 176 | struct nlmsghdr *nlh; |
| 176 | struct timeval tv; | 177 | struct timeval tv; |
| 177 | struct net *net = dev_net(in ? in : out); | ||
| 178 | struct ulog_net *ulog = ulog_pernet(net); | 178 | struct ulog_net *ulog = ulog_pernet(net); |
| 179 | 179 | ||
| 180 | /* ffs == find first bit set, necessary because userspace | 180 | /* ffs == find first bit set, necessary because userspace |
| @@ -291,12 +291,15 @@ alloc_failure: | |||
| 291 | static unsigned int | 291 | static unsigned int |
| 292 | ulog_tg(struct sk_buff *skb, const struct xt_action_param *par) | 292 | ulog_tg(struct sk_buff *skb, const struct xt_action_param *par) |
| 293 | { | 293 | { |
| 294 | ipt_ulog_packet(par->hooknum, skb, par->in, par->out, | 294 | struct net *net = dev_net(par->in ? par->in : par->out); |
| 295 | |||
| 296 | ipt_ulog_packet(net, par->hooknum, skb, par->in, par->out, | ||
| 295 | par->targinfo, NULL); | 297 | par->targinfo, NULL); |
| 296 | return XT_CONTINUE; | 298 | return XT_CONTINUE; |
| 297 | } | 299 | } |
| 298 | 300 | ||
| 299 | static void ipt_logfn(u_int8_t pf, | 301 | static void ipt_logfn(struct net *net, |
| 302 | u_int8_t pf, | ||
| 300 | unsigned int hooknum, | 303 | unsigned int hooknum, |
| 301 | const struct sk_buff *skb, | 304 | const struct sk_buff *skb, |
| 302 | const struct net_device *in, | 305 | const struct net_device *in, |
| @@ -318,7 +321,7 @@ static void ipt_logfn(u_int8_t pf, | |||
| 318 | strlcpy(loginfo.prefix, prefix, sizeof(loginfo.prefix)); | 321 | strlcpy(loginfo.prefix, prefix, sizeof(loginfo.prefix)); |
| 319 | } | 322 | } |
| 320 | 323 | ||
| 321 | ipt_ulog_packet(hooknum, skb, in, out, &loginfo, prefix); | 324 | ipt_ulog_packet(net, hooknum, skb, in, out, &loginfo, prefix); |
| 322 | } | 325 | } |
| 323 | 326 | ||
| 324 | static int ulog_tg_check(const struct xt_tgchk_param *par) | 327 | static int ulog_tg_check(const struct xt_tgchk_param *par) |
diff --git a/net/ipv4/tcp.c b/net/ipv4/tcp.c index dcb116dde216..ab450c099aa4 100644 --- a/net/ipv4/tcp.c +++ b/net/ipv4/tcp.c | |||
| @@ -2887,6 +2887,7 @@ struct sk_buff *tcp_tso_segment(struct sk_buff *skb, | |||
| 2887 | unsigned int mss; | 2887 | unsigned int mss; |
| 2888 | struct sk_buff *gso_skb = skb; | 2888 | struct sk_buff *gso_skb = skb; |
| 2889 | __sum16 newcheck; | 2889 | __sum16 newcheck; |
| 2890 | bool ooo_okay, copy_destructor; | ||
| 2890 | 2891 | ||
| 2891 | if (!pskb_may_pull(skb, sizeof(*th))) | 2892 | if (!pskb_may_pull(skb, sizeof(*th))) |
| 2892 | goto out; | 2893 | goto out; |
| @@ -2927,10 +2928,18 @@ struct sk_buff *tcp_tso_segment(struct sk_buff *skb, | |||
| 2927 | goto out; | 2928 | goto out; |
| 2928 | } | 2929 | } |
| 2929 | 2930 | ||
| 2931 | copy_destructor = gso_skb->destructor == tcp_wfree; | ||
| 2932 | ooo_okay = gso_skb->ooo_okay; | ||
| 2933 | /* All segments but the first should have ooo_okay cleared */ | ||
| 2934 | skb->ooo_okay = 0; | ||
| 2935 | |||
| 2930 | segs = skb_segment(skb, features); | 2936 | segs = skb_segment(skb, features); |
| 2931 | if (IS_ERR(segs)) | 2937 | if (IS_ERR(segs)) |
| 2932 | goto out; | 2938 | goto out; |
| 2933 | 2939 | ||
| 2940 | /* Only first segment might have ooo_okay set */ | ||
| 2941 | segs->ooo_okay = ooo_okay; | ||
| 2942 | |||
| 2934 | delta = htonl(oldlen + (thlen + mss)); | 2943 | delta = htonl(oldlen + (thlen + mss)); |
| 2935 | 2944 | ||
| 2936 | skb = segs; | 2945 | skb = segs; |
| @@ -2950,6 +2959,17 @@ struct sk_buff *tcp_tso_segment(struct sk_buff *skb, | |||
| 2950 | thlen, skb->csum)); | 2959 | thlen, skb->csum)); |
| 2951 | 2960 | ||
| 2952 | seq += mss; | 2961 | seq += mss; |
| 2962 | if (copy_destructor) { | ||
| 2963 | skb->destructor = gso_skb->destructor; | ||
| 2964 | skb->sk = gso_skb->sk; | ||
| 2965 | /* {tcp|sock}_wfree() use exact truesize accounting : | ||
| 2966 | * sum(skb->truesize) MUST be exactly be gso_skb->truesize | ||
| 2967 | * So we account mss bytes of 'true size' for each segment. | ||
| 2968 | * The last segment will contain the remaining. | ||
| 2969 | */ | ||
| 2970 | skb->truesize = mss; | ||
| 2971 | gso_skb->truesize -= mss; | ||
| 2972 | } | ||
| 2953 | skb = skb->next; | 2973 | skb = skb->next; |
| 2954 | th = tcp_hdr(skb); | 2974 | th = tcp_hdr(skb); |
| 2955 | 2975 | ||
| @@ -2962,7 +2982,7 @@ struct sk_buff *tcp_tso_segment(struct sk_buff *skb, | |||
| 2962 | * is freed at TX completion, and not right now when gso_skb | 2982 | * is freed at TX completion, and not right now when gso_skb |
| 2963 | * is freed by GSO engine | 2983 | * is freed by GSO engine |
| 2964 | */ | 2984 | */ |
| 2965 | if (gso_skb->destructor == tcp_wfree) { | 2985 | if (copy_destructor) { |
| 2966 | swap(gso_skb->sk, skb->sk); | 2986 | swap(gso_skb->sk, skb->sk); |
| 2967 | swap(gso_skb->destructor, skb->destructor); | 2987 | swap(gso_skb->destructor, skb->destructor); |
| 2968 | swap(gso_skb->truesize, skb->truesize); | 2988 | swap(gso_skb->truesize, skb->truesize); |
| @@ -3269,8 +3289,11 @@ int tcp_md5_hash_skb_data(struct tcp_md5sig_pool *hp, | |||
| 3269 | 3289 | ||
| 3270 | for (i = 0; i < shi->nr_frags; ++i) { | 3290 | for (i = 0; i < shi->nr_frags; ++i) { |
| 3271 | const struct skb_frag_struct *f = &shi->frags[i]; | 3291 | const struct skb_frag_struct *f = &shi->frags[i]; |
| 3272 | struct page *page = skb_frag_page(f); | 3292 | unsigned int offset = f->page_offset; |
| 3273 | sg_set_page(&sg, page, skb_frag_size(f), f->page_offset); | 3293 | struct page *page = skb_frag_page(f) + (offset >> PAGE_SHIFT); |
| 3294 | |||
| 3295 | sg_set_page(&sg, page, skb_frag_size(f), | ||
| 3296 | offset_in_page(offset)); | ||
| 3274 | if (crypto_hash_update(desc, &sg, skb_frag_size(f))) | 3297 | if (crypto_hash_update(desc, &sg, skb_frag_size(f))) |
| 3275 | return 1; | 3298 | return 1; |
| 3276 | } | 3299 | } |
diff --git a/net/ipv4/tcp_input.c b/net/ipv4/tcp_input.c index 08bbe6096528..9c6225780bd5 100644 --- a/net/ipv4/tcp_input.c +++ b/net/ipv4/tcp_input.c | |||
| @@ -2743,8 +2743,8 @@ static void tcp_process_loss(struct sock *sk, int flag, bool is_dupack) | |||
| 2743 | * tcp_xmit_retransmit_queue(). | 2743 | * tcp_xmit_retransmit_queue(). |
| 2744 | */ | 2744 | */ |
| 2745 | static void tcp_fastretrans_alert(struct sock *sk, int pkts_acked, | 2745 | static void tcp_fastretrans_alert(struct sock *sk, int pkts_acked, |
| 2746 | int prior_sacked, bool is_dupack, | 2746 | int prior_sacked, int prior_packets, |
| 2747 | int flag) | 2747 | bool is_dupack, int flag) |
| 2748 | { | 2748 | { |
| 2749 | struct inet_connection_sock *icsk = inet_csk(sk); | 2749 | struct inet_connection_sock *icsk = inet_csk(sk); |
| 2750 | struct tcp_sock *tp = tcp_sk(sk); | 2750 | struct tcp_sock *tp = tcp_sk(sk); |
| @@ -2804,7 +2804,8 @@ static void tcp_fastretrans_alert(struct sock *sk, int pkts_acked, | |||
| 2804 | tcp_add_reno_sack(sk); | 2804 | tcp_add_reno_sack(sk); |
| 2805 | } else | 2805 | } else |
| 2806 | do_lost = tcp_try_undo_partial(sk, pkts_acked); | 2806 | do_lost = tcp_try_undo_partial(sk, pkts_acked); |
| 2807 | newly_acked_sacked = pkts_acked + tp->sacked_out - prior_sacked; | 2807 | newly_acked_sacked = prior_packets - tp->packets_out + |
| 2808 | tp->sacked_out - prior_sacked; | ||
| 2808 | break; | 2809 | break; |
| 2809 | case TCP_CA_Loss: | 2810 | case TCP_CA_Loss: |
| 2810 | tcp_process_loss(sk, flag, is_dupack); | 2811 | tcp_process_loss(sk, flag, is_dupack); |
| @@ -2818,7 +2819,8 @@ static void tcp_fastretrans_alert(struct sock *sk, int pkts_acked, | |||
| 2818 | if (is_dupack) | 2819 | if (is_dupack) |
| 2819 | tcp_add_reno_sack(sk); | 2820 | tcp_add_reno_sack(sk); |
| 2820 | } | 2821 | } |
| 2821 | newly_acked_sacked = pkts_acked + tp->sacked_out - prior_sacked; | 2822 | newly_acked_sacked = prior_packets - tp->packets_out + |
| 2823 | tp->sacked_out - prior_sacked; | ||
| 2822 | 2824 | ||
| 2823 | if (icsk->icsk_ca_state <= TCP_CA_Disorder) | 2825 | if (icsk->icsk_ca_state <= TCP_CA_Disorder) |
| 2824 | tcp_try_undo_dsack(sk); | 2826 | tcp_try_undo_dsack(sk); |
| @@ -3330,9 +3332,10 @@ static int tcp_ack(struct sock *sk, const struct sk_buff *skb, int flag) | |||
| 3330 | bool is_dupack = false; | 3332 | bool is_dupack = false; |
| 3331 | u32 prior_in_flight; | 3333 | u32 prior_in_flight; |
| 3332 | u32 prior_fackets; | 3334 | u32 prior_fackets; |
| 3333 | int prior_packets; | 3335 | int prior_packets = tp->packets_out; |
| 3334 | int prior_sacked = tp->sacked_out; | 3336 | int prior_sacked = tp->sacked_out; |
| 3335 | int pkts_acked = 0; | 3337 | int pkts_acked = 0; |
| 3338 | int previous_packets_out = 0; | ||
| 3336 | 3339 | ||
| 3337 | /* If the ack is older than previous acks | 3340 | /* If the ack is older than previous acks |
| 3338 | * then we can probably ignore it. | 3341 | * then we can probably ignore it. |
| @@ -3403,14 +3406,14 @@ static int tcp_ack(struct sock *sk, const struct sk_buff *skb, int flag) | |||
| 3403 | sk->sk_err_soft = 0; | 3406 | sk->sk_err_soft = 0; |
| 3404 | icsk->icsk_probes_out = 0; | 3407 | icsk->icsk_probes_out = 0; |
| 3405 | tp->rcv_tstamp = tcp_time_stamp; | 3408 | tp->rcv_tstamp = tcp_time_stamp; |
| 3406 | prior_packets = tp->packets_out; | ||
| 3407 | if (!prior_packets) | 3409 | if (!prior_packets) |
| 3408 | goto no_queue; | 3410 | goto no_queue; |
| 3409 | 3411 | ||
| 3410 | /* See if we can take anything off of the retransmit queue. */ | 3412 | /* See if we can take anything off of the retransmit queue. */ |
| 3413 | previous_packets_out = tp->packets_out; | ||
| 3411 | flag |= tcp_clean_rtx_queue(sk, prior_fackets, prior_snd_una); | 3414 | flag |= tcp_clean_rtx_queue(sk, prior_fackets, prior_snd_una); |
| 3412 | 3415 | ||
| 3413 | pkts_acked = prior_packets - tp->packets_out; | 3416 | pkts_acked = previous_packets_out - tp->packets_out; |
| 3414 | 3417 | ||
| 3415 | if (tcp_ack_is_dubious(sk, flag)) { | 3418 | if (tcp_ack_is_dubious(sk, flag)) { |
| 3416 | /* Advance CWND, if state allows this. */ | 3419 | /* Advance CWND, if state allows this. */ |
| @@ -3418,7 +3421,7 @@ static int tcp_ack(struct sock *sk, const struct sk_buff *skb, int flag) | |||
| 3418 | tcp_cong_avoid(sk, ack, prior_in_flight); | 3421 | tcp_cong_avoid(sk, ack, prior_in_flight); |
| 3419 | is_dupack = !(flag & (FLAG_SND_UNA_ADVANCED | FLAG_NOT_DUP)); | 3422 | is_dupack = !(flag & (FLAG_SND_UNA_ADVANCED | FLAG_NOT_DUP)); |
| 3420 | tcp_fastretrans_alert(sk, pkts_acked, prior_sacked, | 3423 | tcp_fastretrans_alert(sk, pkts_acked, prior_sacked, |
| 3421 | is_dupack, flag); | 3424 | prior_packets, is_dupack, flag); |
| 3422 | } else { | 3425 | } else { |
| 3423 | if (flag & FLAG_DATA_ACKED) | 3426 | if (flag & FLAG_DATA_ACKED) |
| 3424 | tcp_cong_avoid(sk, ack, prior_in_flight); | 3427 | tcp_cong_avoid(sk, ack, prior_in_flight); |
| @@ -3441,7 +3444,7 @@ no_queue: | |||
| 3441 | /* If data was DSACKed, see if we can undo a cwnd reduction. */ | 3444 | /* If data was DSACKed, see if we can undo a cwnd reduction. */ |
| 3442 | if (flag & FLAG_DSACKING_ACK) | 3445 | if (flag & FLAG_DSACKING_ACK) |
| 3443 | tcp_fastretrans_alert(sk, pkts_acked, prior_sacked, | 3446 | tcp_fastretrans_alert(sk, pkts_acked, prior_sacked, |
| 3444 | is_dupack, flag); | 3447 | prior_packets, is_dupack, flag); |
| 3445 | /* If this ack opens up a zero window, clear backoff. It was | 3448 | /* If this ack opens up a zero window, clear backoff. It was |
| 3446 | * being used to time the probes, and is probably far higher than | 3449 | * being used to time the probes, and is probably far higher than |
| 3447 | * it needs to be for normal retransmission. | 3450 | * it needs to be for normal retransmission. |
| @@ -3464,7 +3467,7 @@ old_ack: | |||
| 3464 | if (TCP_SKB_CB(skb)->sacked) { | 3467 | if (TCP_SKB_CB(skb)->sacked) { |
| 3465 | flag |= tcp_sacktag_write_queue(sk, skb, prior_snd_una); | 3468 | flag |= tcp_sacktag_write_queue(sk, skb, prior_snd_una); |
| 3466 | tcp_fastretrans_alert(sk, pkts_acked, prior_sacked, | 3469 | tcp_fastretrans_alert(sk, pkts_acked, prior_sacked, |
| 3467 | is_dupack, flag); | 3470 | prior_packets, is_dupack, flag); |
| 3468 | } | 3471 | } |
| 3469 | 3472 | ||
| 3470 | SOCK_DEBUG(sk, "Ack %u before %u:%u\n", ack, tp->snd_una, tp->snd_nxt); | 3473 | SOCK_DEBUG(sk, "Ack %u before %u:%u\n", ack, tp->snd_una, tp->snd_nxt); |
diff --git a/net/ipv4/tcp_output.c b/net/ipv4/tcp_output.c index 536d40929ba6..ec335fabd5cc 100644 --- a/net/ipv4/tcp_output.c +++ b/net/ipv4/tcp_output.c | |||
| @@ -874,11 +874,13 @@ static int tcp_transmit_skb(struct sock *sk, struct sk_buff *skb, int clone_it, | |||
| 874 | &md5); | 874 | &md5); |
| 875 | tcp_header_size = tcp_options_size + sizeof(struct tcphdr); | 875 | tcp_header_size = tcp_options_size + sizeof(struct tcphdr); |
| 876 | 876 | ||
| 877 | if (tcp_packets_in_flight(tp) == 0) { | 877 | if (tcp_packets_in_flight(tp) == 0) |
| 878 | tcp_ca_event(sk, CA_EVENT_TX_START); | 878 | tcp_ca_event(sk, CA_EVENT_TX_START); |
| 879 | skb->ooo_okay = 1; | 879 | |
| 880 | } else | 880 | /* if no packet is in qdisc/device queue, then allow XPS to select |
| 881 | skb->ooo_okay = 0; | 881 | * another queue. |
| 882 | */ | ||
| 883 | skb->ooo_okay = sk_wmem_alloc_get(sk) == 0; | ||
| 882 | 884 | ||
| 883 | skb_push(skb, tcp_header_size); | 885 | skb_push(skb, tcp_header_size); |
| 884 | skb_reset_transport_header(skb); | 886 | skb_reset_transport_header(skb); |
diff --git a/net/ipv6/ip6_output.c b/net/ipv6/ip6_output.c index d2eedf192330..dae1949019d7 100644 --- a/net/ipv6/ip6_output.c +++ b/net/ipv6/ip6_output.c | |||
| @@ -1147,7 +1147,7 @@ int ip6_append_data(struct sock *sk, int getfrag(void *from, char *to, | |||
| 1147 | if (WARN_ON(np->cork.opt)) | 1147 | if (WARN_ON(np->cork.opt)) |
| 1148 | return -EINVAL; | 1148 | return -EINVAL; |
| 1149 | 1149 | ||
| 1150 | np->cork.opt = kmalloc(opt->tot_len, sk->sk_allocation); | 1150 | np->cork.opt = kzalloc(opt->tot_len, sk->sk_allocation); |
| 1151 | if (unlikely(np->cork.opt == NULL)) | 1151 | if (unlikely(np->cork.opt == NULL)) |
| 1152 | return -ENOBUFS; | 1152 | return -ENOBUFS; |
| 1153 | 1153 | ||
diff --git a/net/irda/irlap_frame.c b/net/irda/irlap_frame.c index 8c004161a843..9ea0c933b9ff 100644 --- a/net/irda/irlap_frame.c +++ b/net/irda/irlap_frame.c | |||
| @@ -544,7 +544,7 @@ static void irlap_recv_discovery_xid_cmd(struct irlap_cb *self, | |||
| 544 | /* | 544 | /* |
| 545 | * We now have some discovery info to deliver! | 545 | * We now have some discovery info to deliver! |
| 546 | */ | 546 | */ |
| 547 | discovery = kmalloc(sizeof(discovery_t), GFP_ATOMIC); | 547 | discovery = kzalloc(sizeof(discovery_t), GFP_ATOMIC); |
| 548 | if (!discovery) { | 548 | if (!discovery) { |
| 549 | IRDA_WARNING("%s: unable to malloc!\n", __func__); | 549 | IRDA_WARNING("%s: unable to malloc!\n", __func__); |
| 550 | return; | 550 | return; |
diff --git a/net/mac80211/ieee80211_i.h b/net/mac80211/ieee80211_i.h index 158e6eb188d3..44be28cfc6c4 100644 --- a/net/mac80211/ieee80211_i.h +++ b/net/mac80211/ieee80211_i.h | |||
| @@ -1267,6 +1267,7 @@ void ieee80211_sta_reset_conn_monitor(struct ieee80211_sub_if_data *sdata); | |||
| 1267 | void ieee80211_mgd_stop(struct ieee80211_sub_if_data *sdata); | 1267 | void ieee80211_mgd_stop(struct ieee80211_sub_if_data *sdata); |
| 1268 | void ieee80211_mgd_conn_tx_status(struct ieee80211_sub_if_data *sdata, | 1268 | void ieee80211_mgd_conn_tx_status(struct ieee80211_sub_if_data *sdata, |
| 1269 | __le16 fc, bool acked); | 1269 | __le16 fc, bool acked); |
| 1270 | void ieee80211_sta_restart(struct ieee80211_sub_if_data *sdata); | ||
| 1270 | 1271 | ||
| 1271 | /* IBSS code */ | 1272 | /* IBSS code */ |
| 1272 | void ieee80211_ibss_notify_scan_completed(struct ieee80211_local *local); | 1273 | void ieee80211_ibss_notify_scan_completed(struct ieee80211_local *local); |
diff --git a/net/mac80211/mlme.c b/net/mac80211/mlme.c index 29620bfc7a69..a46e490f20dd 100644 --- a/net/mac80211/mlme.c +++ b/net/mac80211/mlme.c | |||
| @@ -1015,7 +1015,8 @@ static void ieee80211_chswitch_timer(unsigned long data) | |||
| 1015 | 1015 | ||
| 1016 | static void | 1016 | static void |
| 1017 | ieee80211_sta_process_chanswitch(struct ieee80211_sub_if_data *sdata, | 1017 | ieee80211_sta_process_chanswitch(struct ieee80211_sub_if_data *sdata, |
| 1018 | u64 timestamp, struct ieee802_11_elems *elems) | 1018 | u64 timestamp, struct ieee802_11_elems *elems, |
| 1019 | bool beacon) | ||
| 1019 | { | 1020 | { |
| 1020 | struct ieee80211_local *local = sdata->local; | 1021 | struct ieee80211_local *local = sdata->local; |
| 1021 | struct ieee80211_if_managed *ifmgd = &sdata->u.mgd; | 1022 | struct ieee80211_if_managed *ifmgd = &sdata->u.mgd; |
| @@ -1032,6 +1033,7 @@ ieee80211_sta_process_chanswitch(struct ieee80211_sub_if_data *sdata, | |||
| 1032 | struct cfg80211_chan_def new_vht_chandef = {}; | 1033 | struct cfg80211_chan_def new_vht_chandef = {}; |
| 1033 | const struct ieee80211_sec_chan_offs_ie *sec_chan_offs; | 1034 | const struct ieee80211_sec_chan_offs_ie *sec_chan_offs; |
| 1034 | const struct ieee80211_wide_bw_chansw_ie *wide_bw_chansw_ie; | 1035 | const struct ieee80211_wide_bw_chansw_ie *wide_bw_chansw_ie; |
| 1036 | const struct ieee80211_ht_operation *ht_oper; | ||
| 1035 | int secondary_channel_offset = -1; | 1037 | int secondary_channel_offset = -1; |
| 1036 | 1038 | ||
| 1037 | ASSERT_MGD_MTX(ifmgd); | 1039 | ASSERT_MGD_MTX(ifmgd); |
| @@ -1048,11 +1050,14 @@ ieee80211_sta_process_chanswitch(struct ieee80211_sub_if_data *sdata, | |||
| 1048 | 1050 | ||
| 1049 | sec_chan_offs = elems->sec_chan_offs; | 1051 | sec_chan_offs = elems->sec_chan_offs; |
| 1050 | wide_bw_chansw_ie = elems->wide_bw_chansw_ie; | 1052 | wide_bw_chansw_ie = elems->wide_bw_chansw_ie; |
| 1053 | ht_oper = elems->ht_operation; | ||
| 1051 | 1054 | ||
| 1052 | if (ifmgd->flags & (IEEE80211_STA_DISABLE_HT | | 1055 | if (ifmgd->flags & (IEEE80211_STA_DISABLE_HT | |
| 1053 | IEEE80211_STA_DISABLE_40MHZ)) { | 1056 | IEEE80211_STA_DISABLE_40MHZ)) { |
| 1054 | sec_chan_offs = NULL; | 1057 | sec_chan_offs = NULL; |
| 1055 | wide_bw_chansw_ie = NULL; | 1058 | wide_bw_chansw_ie = NULL; |
| 1059 | /* only used for bandwidth here */ | ||
| 1060 | ht_oper = NULL; | ||
| 1056 | } | 1061 | } |
| 1057 | 1062 | ||
| 1058 | if (ifmgd->flags & IEEE80211_STA_DISABLE_VHT) | 1063 | if (ifmgd->flags & IEEE80211_STA_DISABLE_VHT) |
| @@ -1094,10 +1099,20 @@ ieee80211_sta_process_chanswitch(struct ieee80211_sub_if_data *sdata, | |||
| 1094 | return; | 1099 | return; |
| 1095 | } | 1100 | } |
| 1096 | 1101 | ||
| 1097 | if (sec_chan_offs) { | 1102 | if (!beacon && sec_chan_offs) { |
| 1098 | secondary_channel_offset = sec_chan_offs->sec_chan_offs; | 1103 | secondary_channel_offset = sec_chan_offs->sec_chan_offs; |
| 1104 | } else if (beacon && ht_oper) { | ||
| 1105 | secondary_channel_offset = | ||
| 1106 | ht_oper->ht_param & IEEE80211_HT_PARAM_CHA_SEC_OFFSET; | ||
| 1099 | } else if (!(ifmgd->flags & IEEE80211_STA_DISABLE_HT)) { | 1107 | } else if (!(ifmgd->flags & IEEE80211_STA_DISABLE_HT)) { |
| 1100 | /* if HT is enabled and the IE not present, it's still HT */ | 1108 | /* |
| 1109 | * If it's not a beacon, HT is enabled and the IE not present, | ||
| 1110 | * it's 20 MHz, 802.11-2012 8.5.2.6: | ||
| 1111 | * This element [the Secondary Channel Offset Element] is | ||
| 1112 | * present when switching to a 40 MHz channel. It may be | ||
| 1113 | * present when switching to a 20 MHz channel (in which | ||
| 1114 | * case the secondary channel offset is set to SCN). | ||
| 1115 | */ | ||
| 1101 | secondary_channel_offset = IEEE80211_HT_PARAM_CHA_SEC_NONE; | 1116 | secondary_channel_offset = IEEE80211_HT_PARAM_CHA_SEC_NONE; |
| 1102 | } | 1117 | } |
| 1103 | 1118 | ||
| @@ -2796,7 +2811,8 @@ static void ieee80211_rx_bss_info(struct ieee80211_sub_if_data *sdata, | |||
| 2796 | mutex_unlock(&local->iflist_mtx); | 2811 | mutex_unlock(&local->iflist_mtx); |
| 2797 | } | 2812 | } |
| 2798 | 2813 | ||
| 2799 | ieee80211_sta_process_chanswitch(sdata, rx_status->mactime, elems); | 2814 | ieee80211_sta_process_chanswitch(sdata, rx_status->mactime, |
| 2815 | elems, true); | ||
| 2800 | 2816 | ||
| 2801 | } | 2817 | } |
| 2802 | 2818 | ||
| @@ -3210,7 +3226,7 @@ void ieee80211_sta_rx_queued_mgmt(struct ieee80211_sub_if_data *sdata, | |||
| 3210 | 3226 | ||
| 3211 | ieee80211_sta_process_chanswitch(sdata, | 3227 | ieee80211_sta_process_chanswitch(sdata, |
| 3212 | rx_status->mactime, | 3228 | rx_status->mactime, |
| 3213 | &elems); | 3229 | &elems, false); |
| 3214 | } else if (mgmt->u.action.category == WLAN_CATEGORY_PUBLIC) { | 3230 | } else if (mgmt->u.action.category == WLAN_CATEGORY_PUBLIC) { |
| 3215 | ies_len = skb->len - | 3231 | ies_len = skb->len - |
| 3216 | offsetof(struct ieee80211_mgmt, | 3232 | offsetof(struct ieee80211_mgmt, |
| @@ -3232,7 +3248,7 @@ void ieee80211_sta_rx_queued_mgmt(struct ieee80211_sub_if_data *sdata, | |||
| 3232 | 3248 | ||
| 3233 | ieee80211_sta_process_chanswitch(sdata, | 3249 | ieee80211_sta_process_chanswitch(sdata, |
| 3234 | rx_status->mactime, | 3250 | rx_status->mactime, |
| 3235 | &elems); | 3251 | &elems, false); |
| 3236 | } | 3252 | } |
| 3237 | break; | 3253 | break; |
| 3238 | } | 3254 | } |
| @@ -3623,6 +3639,31 @@ static void ieee80211_restart_sta_timer(struct ieee80211_sub_if_data *sdata) | |||
| 3623 | } | 3639 | } |
| 3624 | } | 3640 | } |
| 3625 | 3641 | ||
| 3642 | #ifdef CONFIG_PM | ||
| 3643 | void ieee80211_sta_restart(struct ieee80211_sub_if_data *sdata) | ||
| 3644 | { | ||
| 3645 | struct ieee80211_if_managed *ifmgd = &sdata->u.mgd; | ||
| 3646 | |||
| 3647 | mutex_lock(&ifmgd->mtx); | ||
| 3648 | if (!ifmgd->associated) { | ||
| 3649 | mutex_unlock(&ifmgd->mtx); | ||
| 3650 | return; | ||
| 3651 | } | ||
| 3652 | |||
| 3653 | if (sdata->flags & IEEE80211_SDATA_DISCONNECT_RESUME) { | ||
| 3654 | sdata->flags &= ~IEEE80211_SDATA_DISCONNECT_RESUME; | ||
| 3655 | mlme_dbg(sdata, "driver requested disconnect after resume\n"); | ||
| 3656 | ieee80211_sta_connection_lost(sdata, | ||
| 3657 | ifmgd->associated->bssid, | ||
| 3658 | WLAN_REASON_UNSPECIFIED, | ||
| 3659 | true); | ||
| 3660 | mutex_unlock(&ifmgd->mtx); | ||
| 3661 | return; | ||
| 3662 | } | ||
| 3663 | mutex_unlock(&ifmgd->mtx); | ||
| 3664 | } | ||
| 3665 | #endif | ||
| 3666 | |||
| 3626 | /* interface setup */ | 3667 | /* interface setup */ |
| 3627 | void ieee80211_sta_setup_sdata(struct ieee80211_sub_if_data *sdata) | 3668 | void ieee80211_sta_setup_sdata(struct ieee80211_sub_if_data *sdata) |
| 3628 | { | 3669 | { |
| @@ -4329,7 +4370,7 @@ int ieee80211_mgd_deauth(struct ieee80211_sub_if_data *sdata, | |||
| 4329 | struct ieee80211_if_managed *ifmgd = &sdata->u.mgd; | 4370 | struct ieee80211_if_managed *ifmgd = &sdata->u.mgd; |
| 4330 | u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN]; | 4371 | u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN]; |
| 4331 | bool tx = !req->local_state_change; | 4372 | bool tx = !req->local_state_change; |
| 4332 | bool sent_frame = false; | 4373 | bool report_frame = false; |
| 4333 | 4374 | ||
| 4334 | mutex_lock(&ifmgd->mtx); | 4375 | mutex_lock(&ifmgd->mtx); |
| 4335 | 4376 | ||
| @@ -4346,7 +4387,7 @@ int ieee80211_mgd_deauth(struct ieee80211_sub_if_data *sdata, | |||
| 4346 | ieee80211_destroy_auth_data(sdata, false); | 4387 | ieee80211_destroy_auth_data(sdata, false); |
| 4347 | mutex_unlock(&ifmgd->mtx); | 4388 | mutex_unlock(&ifmgd->mtx); |
| 4348 | 4389 | ||
| 4349 | sent_frame = tx; | 4390 | report_frame = true; |
| 4350 | goto out; | 4391 | goto out; |
| 4351 | } | 4392 | } |
| 4352 | 4393 | ||
| @@ -4354,12 +4395,12 @@ int ieee80211_mgd_deauth(struct ieee80211_sub_if_data *sdata, | |||
| 4354 | ether_addr_equal(ifmgd->associated->bssid, req->bssid)) { | 4395 | ether_addr_equal(ifmgd->associated->bssid, req->bssid)) { |
| 4355 | ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH, | 4396 | ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH, |
| 4356 | req->reason_code, tx, frame_buf); | 4397 | req->reason_code, tx, frame_buf); |
| 4357 | sent_frame = tx; | 4398 | report_frame = true; |
| 4358 | } | 4399 | } |
| 4359 | mutex_unlock(&ifmgd->mtx); | 4400 | mutex_unlock(&ifmgd->mtx); |
| 4360 | 4401 | ||
| 4361 | out: | 4402 | out: |
| 4362 | if (sent_frame) | 4403 | if (report_frame) |
| 4363 | __cfg80211_send_deauth(sdata->dev, frame_buf, | 4404 | __cfg80211_send_deauth(sdata->dev, frame_buf, |
| 4364 | IEEE80211_DEAUTH_FRAME_LEN); | 4405 | IEEE80211_DEAUTH_FRAME_LEN); |
| 4365 | 4406 | ||
diff --git a/net/mac80211/rate.c b/net/mac80211/rate.c index 0d51877efdb7..d3f414fe67e0 100644 --- a/net/mac80211/rate.c +++ b/net/mac80211/rate.c | |||
| @@ -688,8 +688,15 @@ int rate_control_set_rates(struct ieee80211_hw *hw, | |||
| 688 | struct ieee80211_sta *pubsta, | 688 | struct ieee80211_sta *pubsta, |
| 689 | struct ieee80211_sta_rates *rates) | 689 | struct ieee80211_sta_rates *rates) |
| 690 | { | 690 | { |
| 691 | struct ieee80211_sta_rates *old = rcu_dereference(pubsta->rates); | 691 | struct ieee80211_sta_rates *old; |
| 692 | 692 | ||
| 693 | /* | ||
| 694 | * mac80211 guarantees that this function will not be called | ||
| 695 | * concurrently, so the following RCU access is safe, even without | ||
| 696 | * extra locking. This can not be checked easily, so we just set | ||
| 697 | * the condition to true. | ||
| 698 | */ | ||
| 699 | old = rcu_dereference_protected(pubsta->rates, true); | ||
| 693 | rcu_assign_pointer(pubsta->rates, rates); | 700 | rcu_assign_pointer(pubsta->rates, rates); |
| 694 | if (old) | 701 | if (old) |
| 695 | kfree_rcu(old, rcu_head); | 702 | kfree_rcu(old, rcu_head); |
diff --git a/net/mac80211/rx.c b/net/mac80211/rx.c index c8447af76ead..8e2952620256 100644 --- a/net/mac80211/rx.c +++ b/net/mac80211/rx.c | |||
| @@ -3036,6 +3036,9 @@ static int prepare_for_handlers(struct ieee80211_rx_data *rx, | |||
| 3036 | * and location updates. Note that mac80211 | 3036 | * and location updates. Note that mac80211 |
| 3037 | * itself never looks at these frames. | 3037 | * itself never looks at these frames. |
| 3038 | */ | 3038 | */ |
| 3039 | if (!multicast && | ||
| 3040 | !ether_addr_equal(sdata->vif.addr, hdr->addr1)) | ||
| 3041 | return 0; | ||
| 3039 | if (ieee80211_is_public_action(hdr, skb->len)) | 3042 | if (ieee80211_is_public_action(hdr, skb->len)) |
| 3040 | return 1; | 3043 | return 1; |
| 3041 | if (!ieee80211_is_beacon(hdr->frame_control)) | 3044 | if (!ieee80211_is_beacon(hdr->frame_control)) |
diff --git a/net/mac80211/tkip.c b/net/mac80211/tkip.c index 3ed801d90f1e..124b1fdc20d0 100644 --- a/net/mac80211/tkip.c +++ b/net/mac80211/tkip.c | |||
| @@ -208,10 +208,10 @@ void ieee80211_get_tkip_p2k(struct ieee80211_key_conf *keyconf, | |||
| 208 | u32 iv32 = get_unaligned_le32(&data[4]); | 208 | u32 iv32 = get_unaligned_le32(&data[4]); |
| 209 | u16 iv16 = data[2] | (data[0] << 8); | 209 | u16 iv16 = data[2] | (data[0] << 8); |
| 210 | 210 | ||
| 211 | spin_lock_bh(&key->u.tkip.txlock); | 211 | spin_lock(&key->u.tkip.txlock); |
| 212 | ieee80211_compute_tkip_p1k(key, iv32); | 212 | ieee80211_compute_tkip_p1k(key, iv32); |
| 213 | tkip_mixing_phase2(tk, ctx, iv16, p2k); | 213 | tkip_mixing_phase2(tk, ctx, iv16, p2k); |
| 214 | spin_unlock_bh(&key->u.tkip.txlock); | 214 | spin_unlock(&key->u.tkip.txlock); |
| 215 | } | 215 | } |
| 216 | EXPORT_SYMBOL(ieee80211_get_tkip_p2k); | 216 | EXPORT_SYMBOL(ieee80211_get_tkip_p2k); |
| 217 | 217 | ||
diff --git a/net/mac80211/util.c b/net/mac80211/util.c index 3f87fa468b1f..27e07150eb46 100644 --- a/net/mac80211/util.c +++ b/net/mac80211/util.c | |||
| @@ -1740,6 +1740,13 @@ int ieee80211_reconfig(struct ieee80211_local *local) | |||
| 1740 | mb(); | 1740 | mb(); |
| 1741 | local->resuming = false; | 1741 | local->resuming = false; |
| 1742 | 1742 | ||
| 1743 | list_for_each_entry(sdata, &local->interfaces, list) { | ||
| 1744 | if (!ieee80211_sdata_running(sdata)) | ||
| 1745 | continue; | ||
| 1746 | if (sdata->vif.type == NL80211_IFTYPE_STATION) | ||
| 1747 | ieee80211_sta_restart(sdata); | ||
| 1748 | } | ||
| 1749 | |||
| 1743 | mod_timer(&local->sta_cleanup, jiffies + 1); | 1750 | mod_timer(&local->sta_cleanup, jiffies + 1); |
| 1744 | #else | 1751 | #else |
| 1745 | WARN_ON(1); | 1752 | WARN_ON(1); |
diff --git a/net/netfilter/nf_log.c b/net/netfilter/nf_log.c index 388656d5a9ec..3b18dd1be7d9 100644 --- a/net/netfilter/nf_log.c +++ b/net/netfilter/nf_log.c | |||
| @@ -148,7 +148,7 @@ void nf_log_packet(struct net *net, | |||
| 148 | va_start(args, fmt); | 148 | va_start(args, fmt); |
| 149 | vsnprintf(prefix, sizeof(prefix), fmt, args); | 149 | vsnprintf(prefix, sizeof(prefix), fmt, args); |
| 150 | va_end(args); | 150 | va_end(args); |
| 151 | logger->logfn(pf, hooknum, skb, in, out, loginfo, prefix); | 151 | logger->logfn(net, pf, hooknum, skb, in, out, loginfo, prefix); |
| 152 | } | 152 | } |
| 153 | rcu_read_unlock(); | 153 | rcu_read_unlock(); |
| 154 | } | 154 | } |
| @@ -368,17 +368,20 @@ static int __net_init nf_log_net_init(struct net *net) | |||
| 368 | return 0; | 368 | return 0; |
| 369 | 369 | ||
| 370 | out_sysctl: | 370 | out_sysctl: |
| 371 | #ifdef CONFIG_PROC_FS | ||
| 371 | /* For init_net: errors will trigger panic, don't unroll on error. */ | 372 | /* For init_net: errors will trigger panic, don't unroll on error. */ |
| 372 | if (!net_eq(net, &init_net)) | 373 | if (!net_eq(net, &init_net)) |
| 373 | remove_proc_entry("nf_log", net->nf.proc_netfilter); | 374 | remove_proc_entry("nf_log", net->nf.proc_netfilter); |
| 374 | 375 | #endif | |
| 375 | return ret; | 376 | return ret; |
| 376 | } | 377 | } |
| 377 | 378 | ||
| 378 | static void __net_exit nf_log_net_exit(struct net *net) | 379 | static void __net_exit nf_log_net_exit(struct net *net) |
| 379 | { | 380 | { |
| 380 | netfilter_log_sysctl_exit(net); | 381 | netfilter_log_sysctl_exit(net); |
| 382 | #ifdef CONFIG_PROC_FS | ||
| 381 | remove_proc_entry("nf_log", net->nf.proc_netfilter); | 383 | remove_proc_entry("nf_log", net->nf.proc_netfilter); |
| 384 | #endif | ||
| 382 | } | 385 | } |
| 383 | 386 | ||
| 384 | static struct pernet_operations nf_log_net_ops = { | 387 | static struct pernet_operations nf_log_net_ops = { |
diff --git a/net/netfilter/nfnetlink_log.c b/net/netfilter/nfnetlink_log.c index faf1e9300d8a..962e9792e317 100644 --- a/net/netfilter/nfnetlink_log.c +++ b/net/netfilter/nfnetlink_log.c | |||
| @@ -602,7 +602,8 @@ static struct nf_loginfo default_loginfo = { | |||
| 602 | 602 | ||
| 603 | /* log handler for internal netfilter logging api */ | 603 | /* log handler for internal netfilter logging api */ |
| 604 | void | 604 | void |
| 605 | nfulnl_log_packet(u_int8_t pf, | 605 | nfulnl_log_packet(struct net *net, |
| 606 | u_int8_t pf, | ||
| 606 | unsigned int hooknum, | 607 | unsigned int hooknum, |
| 607 | const struct sk_buff *skb, | 608 | const struct sk_buff *skb, |
| 608 | const struct net_device *in, | 609 | const struct net_device *in, |
| @@ -615,7 +616,6 @@ nfulnl_log_packet(u_int8_t pf, | |||
| 615 | const struct nf_loginfo *li; | 616 | const struct nf_loginfo *li; |
| 616 | unsigned int qthreshold; | 617 | unsigned int qthreshold; |
| 617 | unsigned int plen; | 618 | unsigned int plen; |
| 618 | struct net *net = dev_net(in ? in : out); | ||
| 619 | struct nfnl_log_net *log = nfnl_log_pernet(net); | 619 | struct nfnl_log_net *log = nfnl_log_pernet(net); |
| 620 | 620 | ||
| 621 | if (li_user && li_user->type == NF_LOG_TYPE_ULOG) | 621 | if (li_user && li_user->type == NF_LOG_TYPE_ULOG) |
| @@ -1045,7 +1045,9 @@ static int __net_init nfnl_log_net_init(struct net *net) | |||
| 1045 | 1045 | ||
| 1046 | static void __net_exit nfnl_log_net_exit(struct net *net) | 1046 | static void __net_exit nfnl_log_net_exit(struct net *net) |
| 1047 | { | 1047 | { |
| 1048 | #ifdef CONFIG_PROC_FS | ||
| 1048 | remove_proc_entry("nfnetlink_log", net->nf.proc_netfilter); | 1049 | remove_proc_entry("nfnetlink_log", net->nf.proc_netfilter); |
| 1050 | #endif | ||
| 1049 | } | 1051 | } |
| 1050 | 1052 | ||
| 1051 | static struct pernet_operations nfnl_log_net_ops = { | 1053 | static struct pernet_operations nfnl_log_net_ops = { |
diff --git a/net/netfilter/nfnetlink_queue_core.c b/net/netfilter/nfnetlink_queue_core.c index 2e0e835baf72..4e27fa035814 100644 --- a/net/netfilter/nfnetlink_queue_core.c +++ b/net/netfilter/nfnetlink_queue_core.c | |||
| @@ -1285,7 +1285,9 @@ static int __net_init nfnl_queue_net_init(struct net *net) | |||
| 1285 | 1285 | ||
| 1286 | static void __net_exit nfnl_queue_net_exit(struct net *net) | 1286 | static void __net_exit nfnl_queue_net_exit(struct net *net) |
| 1287 | { | 1287 | { |
| 1288 | #ifdef CONFIG_PROC_FS | ||
| 1288 | remove_proc_entry("nfnetlink_queue", net->nf.proc_netfilter); | 1289 | remove_proc_entry("nfnetlink_queue", net->nf.proc_netfilter); |
| 1290 | #endif | ||
| 1289 | } | 1291 | } |
| 1290 | 1292 | ||
| 1291 | static struct pernet_operations nfnl_queue_net_ops = { | 1293 | static struct pernet_operations nfnl_queue_net_ops = { |
diff --git a/net/netfilter/xt_LOG.c b/net/netfilter/xt_LOG.c index fe573f6c9e91..491c7d821a0b 100644 --- a/net/netfilter/xt_LOG.c +++ b/net/netfilter/xt_LOG.c | |||
| @@ -466,7 +466,8 @@ log_packet_common(struct sbuff *m, | |||
| 466 | 466 | ||
| 467 | 467 | ||
| 468 | static void | 468 | static void |
| 469 | ipt_log_packet(u_int8_t pf, | 469 | ipt_log_packet(struct net *net, |
| 470 | u_int8_t pf, | ||
| 470 | unsigned int hooknum, | 471 | unsigned int hooknum, |
| 471 | const struct sk_buff *skb, | 472 | const struct sk_buff *skb, |
| 472 | const struct net_device *in, | 473 | const struct net_device *in, |
| @@ -475,7 +476,6 @@ ipt_log_packet(u_int8_t pf, | |||
| 475 | const char *prefix) | 476 | const char *prefix) |
| 476 | { | 477 | { |
| 477 | struct sbuff *m; | 478 | struct sbuff *m; |
| 478 | struct net *net = dev_net(in ? in : out); | ||
| 479 | 479 | ||
| 480 | /* FIXME: Disabled from containers until syslog ns is supported */ | 480 | /* FIXME: Disabled from containers until syslog ns is supported */ |
| 481 | if (!net_eq(net, &init_net)) | 481 | if (!net_eq(net, &init_net)) |
| @@ -797,7 +797,8 @@ fallback: | |||
| 797 | } | 797 | } |
| 798 | 798 | ||
| 799 | static void | 799 | static void |
| 800 | ip6t_log_packet(u_int8_t pf, | 800 | ip6t_log_packet(struct net *net, |
| 801 | u_int8_t pf, | ||
| 801 | unsigned int hooknum, | 802 | unsigned int hooknum, |
| 802 | const struct sk_buff *skb, | 803 | const struct sk_buff *skb, |
| 803 | const struct net_device *in, | 804 | const struct net_device *in, |
| @@ -806,7 +807,6 @@ ip6t_log_packet(u_int8_t pf, | |||
| 806 | const char *prefix) | 807 | const char *prefix) |
| 807 | { | 808 | { |
| 808 | struct sbuff *m; | 809 | struct sbuff *m; |
| 809 | struct net *net = dev_net(in ? in : out); | ||
| 810 | 810 | ||
| 811 | /* FIXME: Disabled from containers until syslog ns is supported */ | 811 | /* FIXME: Disabled from containers until syslog ns is supported */ |
| 812 | if (!net_eq(net, &init_net)) | 812 | if (!net_eq(net, &init_net)) |
| @@ -833,17 +833,18 @@ log_tg(struct sk_buff *skb, const struct xt_action_param *par) | |||
| 833 | { | 833 | { |
| 834 | const struct xt_log_info *loginfo = par->targinfo; | 834 | const struct xt_log_info *loginfo = par->targinfo; |
| 835 | struct nf_loginfo li; | 835 | struct nf_loginfo li; |
| 836 | struct net *net = dev_net(par->in ? par->in : par->out); | ||
| 836 | 837 | ||
| 837 | li.type = NF_LOG_TYPE_LOG; | 838 | li.type = NF_LOG_TYPE_LOG; |
| 838 | li.u.log.level = loginfo->level; | 839 | li.u.log.level = loginfo->level; |
| 839 | li.u.log.logflags = loginfo->logflags; | 840 | li.u.log.logflags = loginfo->logflags; |
| 840 | 841 | ||
| 841 | if (par->family == NFPROTO_IPV4) | 842 | if (par->family == NFPROTO_IPV4) |
| 842 | ipt_log_packet(NFPROTO_IPV4, par->hooknum, skb, par->in, | 843 | ipt_log_packet(net, NFPROTO_IPV4, par->hooknum, skb, par->in, |
| 843 | par->out, &li, loginfo->prefix); | 844 | par->out, &li, loginfo->prefix); |
| 844 | #if IS_ENABLED(CONFIG_IP6_NF_IPTABLES) | 845 | #if IS_ENABLED(CONFIG_IP6_NF_IPTABLES) |
| 845 | else if (par->family == NFPROTO_IPV6) | 846 | else if (par->family == NFPROTO_IPV6) |
| 846 | ip6t_log_packet(NFPROTO_IPV6, par->hooknum, skb, par->in, | 847 | ip6t_log_packet(net, NFPROTO_IPV6, par->hooknum, skb, par->in, |
| 847 | par->out, &li, loginfo->prefix); | 848 | par->out, &li, loginfo->prefix); |
| 848 | #endif | 849 | #endif |
| 849 | else | 850 | else |
diff --git a/net/netfilter/xt_NFLOG.c b/net/netfilter/xt_NFLOG.c index a17dd0f589b2..fb7497c928a0 100644 --- a/net/netfilter/xt_NFLOG.c +++ b/net/netfilter/xt_NFLOG.c | |||
| @@ -26,13 +26,14 @@ nflog_tg(struct sk_buff *skb, const struct xt_action_param *par) | |||
| 26 | { | 26 | { |
| 27 | const struct xt_nflog_info *info = par->targinfo; | 27 | const struct xt_nflog_info *info = par->targinfo; |
| 28 | struct nf_loginfo li; | 28 | struct nf_loginfo li; |
| 29 | struct net *net = dev_net(par->in ? par->in : par->out); | ||
| 29 | 30 | ||
| 30 | li.type = NF_LOG_TYPE_ULOG; | 31 | li.type = NF_LOG_TYPE_ULOG; |
| 31 | li.u.ulog.copy_len = info->len; | 32 | li.u.ulog.copy_len = info->len; |
| 32 | li.u.ulog.group = info->group; | 33 | li.u.ulog.group = info->group; |
| 33 | li.u.ulog.qthreshold = info->threshold; | 34 | li.u.ulog.qthreshold = info->threshold; |
| 34 | 35 | ||
| 35 | nfulnl_log_packet(par->family, par->hooknum, skb, par->in, | 36 | nfulnl_log_packet(net, par->family, par->hooknum, skb, par->in, |
| 36 | par->out, &li, info->prefix); | 37 | par->out, &li, info->prefix); |
| 37 | return XT_CONTINUE; | 38 | return XT_CONTINUE; |
| 38 | } | 39 | } |
diff --git a/net/netfilter/xt_TCPOPTSTRIP.c b/net/netfilter/xt_TCPOPTSTRIP.c index 25fd1c4e1eec..1eb1a44bfd3d 100644 --- a/net/netfilter/xt_TCPOPTSTRIP.c +++ b/net/netfilter/xt_TCPOPTSTRIP.c | |||
| @@ -30,17 +30,28 @@ static inline unsigned int optlen(const u_int8_t *opt, unsigned int offset) | |||
| 30 | 30 | ||
| 31 | static unsigned int | 31 | static unsigned int |
| 32 | tcpoptstrip_mangle_packet(struct sk_buff *skb, | 32 | tcpoptstrip_mangle_packet(struct sk_buff *skb, |
| 33 | const struct xt_tcpoptstrip_target_info *info, | 33 | const struct xt_action_param *par, |
| 34 | unsigned int tcphoff, unsigned int minlen) | 34 | unsigned int tcphoff, unsigned int minlen) |
| 35 | { | 35 | { |
| 36 | const struct xt_tcpoptstrip_target_info *info = par->targinfo; | ||
| 36 | unsigned int optl, i, j; | 37 | unsigned int optl, i, j; |
| 37 | struct tcphdr *tcph; | 38 | struct tcphdr *tcph; |
| 38 | u_int16_t n, o; | 39 | u_int16_t n, o; |
| 39 | u_int8_t *opt; | 40 | u_int8_t *opt; |
| 41 | int len; | ||
| 42 | |||
| 43 | /* This is a fragment, no TCP header is available */ | ||
| 44 | if (par->fragoff != 0) | ||
| 45 | return XT_CONTINUE; | ||
| 40 | 46 | ||
| 41 | if (!skb_make_writable(skb, skb->len)) | 47 | if (!skb_make_writable(skb, skb->len)) |
| 42 | return NF_DROP; | 48 | return NF_DROP; |
| 43 | 49 | ||
| 50 | len = skb->len - tcphoff; | ||
| 51 | if (len < (int)sizeof(struct tcphdr) || | ||
| 52 | tcp_hdr(skb)->doff * 4 > len) | ||
| 53 | return NF_DROP; | ||
| 54 | |||
| 44 | tcph = (struct tcphdr *)(skb_network_header(skb) + tcphoff); | 55 | tcph = (struct tcphdr *)(skb_network_header(skb) + tcphoff); |
| 45 | opt = (u_int8_t *)tcph; | 56 | opt = (u_int8_t *)tcph; |
| 46 | 57 | ||
| @@ -76,7 +87,7 @@ tcpoptstrip_mangle_packet(struct sk_buff *skb, | |||
| 76 | static unsigned int | 87 | static unsigned int |
| 77 | tcpoptstrip_tg4(struct sk_buff *skb, const struct xt_action_param *par) | 88 | tcpoptstrip_tg4(struct sk_buff *skb, const struct xt_action_param *par) |
| 78 | { | 89 | { |
| 79 | return tcpoptstrip_mangle_packet(skb, par->targinfo, ip_hdrlen(skb), | 90 | return tcpoptstrip_mangle_packet(skb, par, ip_hdrlen(skb), |
| 80 | sizeof(struct iphdr) + sizeof(struct tcphdr)); | 91 | sizeof(struct iphdr) + sizeof(struct tcphdr)); |
| 81 | } | 92 | } |
| 82 | 93 | ||
| @@ -94,7 +105,7 @@ tcpoptstrip_tg6(struct sk_buff *skb, const struct xt_action_param *par) | |||
| 94 | if (tcphoff < 0) | 105 | if (tcphoff < 0) |
| 95 | return NF_DROP; | 106 | return NF_DROP; |
| 96 | 107 | ||
| 97 | return tcpoptstrip_mangle_packet(skb, par->targinfo, tcphoff, | 108 | return tcpoptstrip_mangle_packet(skb, par, tcphoff, |
| 98 | sizeof(*ipv6h) + sizeof(struct tcphdr)); | 109 | sizeof(*ipv6h) + sizeof(struct tcphdr)); |
| 99 | } | 110 | } |
| 100 | #endif | 111 | #endif |
diff --git a/net/netlabel/netlabel_domainhash.c b/net/netlabel/netlabel_domainhash.c index d8d424337550..6bb1d42f0fac 100644 --- a/net/netlabel/netlabel_domainhash.c +++ b/net/netlabel/netlabel_domainhash.c | |||
| @@ -245,6 +245,71 @@ static void netlbl_domhsh_audit_add(struct netlbl_dom_map *entry, | |||
| 245 | } | 245 | } |
| 246 | } | 246 | } |
| 247 | 247 | ||
| 248 | /** | ||
| 249 | * netlbl_domhsh_validate - Validate a new domain mapping entry | ||
| 250 | * @entry: the entry to validate | ||
| 251 | * | ||
| 252 | * This function validates the new domain mapping entry to ensure that it is | ||
| 253 | * a valid entry. Returns zero on success, negative values on failure. | ||
| 254 | * | ||
| 255 | */ | ||
| 256 | static int netlbl_domhsh_validate(const struct netlbl_dom_map *entry) | ||
| 257 | { | ||
| 258 | struct netlbl_af4list *iter4; | ||
| 259 | struct netlbl_domaddr4_map *map4; | ||
| 260 | #if IS_ENABLED(CONFIG_IPV6) | ||
| 261 | struct netlbl_af6list *iter6; | ||
| 262 | struct netlbl_domaddr6_map *map6; | ||
| 263 | #endif /* IPv6 */ | ||
| 264 | |||
| 265 | if (entry == NULL) | ||
| 266 | return -EINVAL; | ||
| 267 | |||
| 268 | switch (entry->type) { | ||
| 269 | case NETLBL_NLTYPE_UNLABELED: | ||
| 270 | if (entry->type_def.cipsov4 != NULL || | ||
| 271 | entry->type_def.addrsel != NULL) | ||
| 272 | return -EINVAL; | ||
| 273 | break; | ||
| 274 | case NETLBL_NLTYPE_CIPSOV4: | ||
| 275 | if (entry->type_def.cipsov4 == NULL) | ||
| 276 | return -EINVAL; | ||
| 277 | break; | ||
| 278 | case NETLBL_NLTYPE_ADDRSELECT: | ||
| 279 | netlbl_af4list_foreach(iter4, &entry->type_def.addrsel->list4) { | ||
| 280 | map4 = netlbl_domhsh_addr4_entry(iter4); | ||
| 281 | switch (map4->type) { | ||
| 282 | case NETLBL_NLTYPE_UNLABELED: | ||
| 283 | if (map4->type_def.cipsov4 != NULL) | ||
| 284 | return -EINVAL; | ||
| 285 | break; | ||
| 286 | case NETLBL_NLTYPE_CIPSOV4: | ||
| 287 | if (map4->type_def.cipsov4 == NULL) | ||
| 288 | return -EINVAL; | ||
| 289 | break; | ||
| 290 | default: | ||
| 291 | return -EINVAL; | ||
| 292 | } | ||
| 293 | } | ||
| 294 | #if IS_ENABLED(CONFIG_IPV6) | ||
| 295 | netlbl_af6list_foreach(iter6, &entry->type_def.addrsel->list6) { | ||
| 296 | map6 = netlbl_domhsh_addr6_entry(iter6); | ||
| 297 | switch (map6->type) { | ||
| 298 | case NETLBL_NLTYPE_UNLABELED: | ||
| 299 | break; | ||
| 300 | default: | ||
| 301 | return -EINVAL; | ||
| 302 | } | ||
| 303 | } | ||
| 304 | #endif /* IPv6 */ | ||
| 305 | break; | ||
| 306 | default: | ||
| 307 | return -EINVAL; | ||
| 308 | } | ||
| 309 | |||
| 310 | return 0; | ||
| 311 | } | ||
| 312 | |||
| 248 | /* | 313 | /* |
| 249 | * Domain Hash Table Functions | 314 | * Domain Hash Table Functions |
| 250 | */ | 315 | */ |
| @@ -311,6 +376,10 @@ int netlbl_domhsh_add(struct netlbl_dom_map *entry, | |||
| 311 | struct netlbl_af6list *tmp6; | 376 | struct netlbl_af6list *tmp6; |
| 312 | #endif /* IPv6 */ | 377 | #endif /* IPv6 */ |
| 313 | 378 | ||
| 379 | ret_val = netlbl_domhsh_validate(entry); | ||
| 380 | if (ret_val != 0) | ||
| 381 | return ret_val; | ||
| 382 | |||
| 314 | /* XXX - we can remove this RCU read lock as the spinlock protects the | 383 | /* XXX - we can remove this RCU read lock as the spinlock protects the |
| 315 | * entire function, but before we do we need to fixup the | 384 | * entire function, but before we do we need to fixup the |
| 316 | * netlbl_af[4,6]list RCU functions to do "the right thing" with | 385 | * netlbl_af[4,6]list RCU functions to do "the right thing" with |
diff --git a/net/sunrpc/auth_gss/auth_gss.c b/net/sunrpc/auth_gss/auth_gss.c index 7da6b457f66a..fc2f78d6a9b4 100644 --- a/net/sunrpc/auth_gss/auth_gss.c +++ b/net/sunrpc/auth_gss/auth_gss.c | |||
| @@ -52,6 +52,8 @@ | |||
| 52 | #include <linux/sunrpc/gss_api.h> | 52 | #include <linux/sunrpc/gss_api.h> |
| 53 | #include <asm/uaccess.h> | 53 | #include <asm/uaccess.h> |
| 54 | 54 | ||
| 55 | #include "../netns.h" | ||
| 56 | |||
| 55 | static const struct rpc_authops authgss_ops; | 57 | static const struct rpc_authops authgss_ops; |
| 56 | 58 | ||
| 57 | static const struct rpc_credops gss_credops; | 59 | static const struct rpc_credops gss_credops; |
| @@ -85,8 +87,6 @@ struct gss_auth { | |||
| 85 | }; | 87 | }; |
| 86 | 88 | ||
| 87 | /* pipe_version >= 0 if and only if someone has a pipe open. */ | 89 | /* pipe_version >= 0 if and only if someone has a pipe open. */ |
| 88 | static int pipe_version = -1; | ||
| 89 | static atomic_t pipe_users = ATOMIC_INIT(0); | ||
| 90 | static DEFINE_SPINLOCK(pipe_version_lock); | 90 | static DEFINE_SPINLOCK(pipe_version_lock); |
| 91 | static struct rpc_wait_queue pipe_version_rpc_waitqueue; | 91 | static struct rpc_wait_queue pipe_version_rpc_waitqueue; |
| 92 | static DECLARE_WAIT_QUEUE_HEAD(pipe_version_waitqueue); | 92 | static DECLARE_WAIT_QUEUE_HEAD(pipe_version_waitqueue); |
| @@ -266,24 +266,27 @@ struct gss_upcall_msg { | |||
| 266 | char databuf[UPCALL_BUF_LEN]; | 266 | char databuf[UPCALL_BUF_LEN]; |
| 267 | }; | 267 | }; |
| 268 | 268 | ||
| 269 | static int get_pipe_version(void) | 269 | static int get_pipe_version(struct net *net) |
| 270 | { | 270 | { |
| 271 | struct sunrpc_net *sn = net_generic(net, sunrpc_net_id); | ||
| 271 | int ret; | 272 | int ret; |
| 272 | 273 | ||
| 273 | spin_lock(&pipe_version_lock); | 274 | spin_lock(&pipe_version_lock); |
| 274 | if (pipe_version >= 0) { | 275 | if (sn->pipe_version >= 0) { |
| 275 | atomic_inc(&pipe_users); | 276 | atomic_inc(&sn->pipe_users); |
| 276 | ret = pipe_version; | 277 | ret = sn->pipe_version; |
| 277 | } else | 278 | } else |
| 278 | ret = -EAGAIN; | 279 | ret = -EAGAIN; |
| 279 | spin_unlock(&pipe_version_lock); | 280 | spin_unlock(&pipe_version_lock); |
| 280 | return ret; | 281 | return ret; |
| 281 | } | 282 | } |
| 282 | 283 | ||
| 283 | static void put_pipe_version(void) | 284 | static void put_pipe_version(struct net *net) |
| 284 | { | 285 | { |
| 285 | if (atomic_dec_and_lock(&pipe_users, &pipe_version_lock)) { | 286 | struct sunrpc_net *sn = net_generic(net, sunrpc_net_id); |
| 286 | pipe_version = -1; | 287 | |
| 288 | if (atomic_dec_and_lock(&sn->pipe_users, &pipe_version_lock)) { | ||
| 289 | sn->pipe_version = -1; | ||
| 287 | spin_unlock(&pipe_version_lock); | 290 | spin_unlock(&pipe_version_lock); |
| 288 | } | 291 | } |
| 289 | } | 292 | } |
| @@ -291,9 +294,10 @@ static void put_pipe_version(void) | |||
| 291 | static void | 294 | static void |
| 292 | gss_release_msg(struct gss_upcall_msg *gss_msg) | 295 | gss_release_msg(struct gss_upcall_msg *gss_msg) |
| 293 | { | 296 | { |
| 297 | struct net *net = rpc_net_ns(gss_msg->auth->client); | ||
| 294 | if (!atomic_dec_and_test(&gss_msg->count)) | 298 | if (!atomic_dec_and_test(&gss_msg->count)) |
| 295 | return; | 299 | return; |
| 296 | put_pipe_version(); | 300 | put_pipe_version(net); |
| 297 | BUG_ON(!list_empty(&gss_msg->list)); | 301 | BUG_ON(!list_empty(&gss_msg->list)); |
| 298 | if (gss_msg->ctx != NULL) | 302 | if (gss_msg->ctx != NULL) |
| 299 | gss_put_ctx(gss_msg->ctx); | 303 | gss_put_ctx(gss_msg->ctx); |
| @@ -439,7 +443,10 @@ static void gss_encode_msg(struct gss_upcall_msg *gss_msg, | |||
| 439 | struct rpc_clnt *clnt, | 443 | struct rpc_clnt *clnt, |
| 440 | const char *service_name) | 444 | const char *service_name) |
| 441 | { | 445 | { |
| 442 | if (pipe_version == 0) | 446 | struct net *net = rpc_net_ns(clnt); |
| 447 | struct sunrpc_net *sn = net_generic(net, sunrpc_net_id); | ||
| 448 | |||
| 449 | if (sn->pipe_version == 0) | ||
| 443 | gss_encode_v0_msg(gss_msg); | 450 | gss_encode_v0_msg(gss_msg); |
| 444 | else /* pipe_version == 1 */ | 451 | else /* pipe_version == 1 */ |
| 445 | gss_encode_v1_msg(gss_msg, clnt, service_name); | 452 | gss_encode_v1_msg(gss_msg, clnt, service_name); |
| @@ -455,7 +462,7 @@ gss_alloc_msg(struct gss_auth *gss_auth, struct rpc_clnt *clnt, | |||
| 455 | gss_msg = kzalloc(sizeof(*gss_msg), GFP_NOFS); | 462 | gss_msg = kzalloc(sizeof(*gss_msg), GFP_NOFS); |
| 456 | if (gss_msg == NULL) | 463 | if (gss_msg == NULL) |
| 457 | return ERR_PTR(-ENOMEM); | 464 | return ERR_PTR(-ENOMEM); |
| 458 | vers = get_pipe_version(); | 465 | vers = get_pipe_version(rpc_net_ns(clnt)); |
| 459 | if (vers < 0) { | 466 | if (vers < 0) { |
| 460 | kfree(gss_msg); | 467 | kfree(gss_msg); |
| 461 | return ERR_PTR(vers); | 468 | return ERR_PTR(vers); |
| @@ -559,24 +566,34 @@ out: | |||
| 559 | static inline int | 566 | static inline int |
| 560 | gss_create_upcall(struct gss_auth *gss_auth, struct gss_cred *gss_cred) | 567 | gss_create_upcall(struct gss_auth *gss_auth, struct gss_cred *gss_cred) |
| 561 | { | 568 | { |
| 569 | struct net *net = rpc_net_ns(gss_auth->client); | ||
| 570 | struct sunrpc_net *sn = net_generic(net, sunrpc_net_id); | ||
| 562 | struct rpc_pipe *pipe; | 571 | struct rpc_pipe *pipe; |
| 563 | struct rpc_cred *cred = &gss_cred->gc_base; | 572 | struct rpc_cred *cred = &gss_cred->gc_base; |
| 564 | struct gss_upcall_msg *gss_msg; | 573 | struct gss_upcall_msg *gss_msg; |
| 574 | unsigned long timeout; | ||
| 565 | DEFINE_WAIT(wait); | 575 | DEFINE_WAIT(wait); |
| 566 | int err = 0; | 576 | int err; |
| 567 | 577 | ||
| 568 | dprintk("RPC: %s for uid %u\n", | 578 | dprintk("RPC: %s for uid %u\n", |
| 569 | __func__, from_kuid(&init_user_ns, cred->cr_uid)); | 579 | __func__, from_kuid(&init_user_ns, cred->cr_uid)); |
| 570 | retry: | 580 | retry: |
| 581 | err = 0; | ||
| 582 | /* Default timeout is 15s unless we know that gssd is not running */ | ||
| 583 | timeout = 15 * HZ; | ||
| 584 | if (!sn->gssd_running) | ||
| 585 | timeout = HZ >> 2; | ||
| 571 | gss_msg = gss_setup_upcall(gss_auth->client, gss_auth, cred); | 586 | gss_msg = gss_setup_upcall(gss_auth->client, gss_auth, cred); |
| 572 | if (PTR_ERR(gss_msg) == -EAGAIN) { | 587 | if (PTR_ERR(gss_msg) == -EAGAIN) { |
| 573 | err = wait_event_interruptible_timeout(pipe_version_waitqueue, | 588 | err = wait_event_interruptible_timeout(pipe_version_waitqueue, |
| 574 | pipe_version >= 0, 15*HZ); | 589 | sn->pipe_version >= 0, timeout); |
| 575 | if (pipe_version < 0) { | 590 | if (sn->pipe_version < 0) { |
| 591 | if (err == 0) | ||
| 592 | sn->gssd_running = 0; | ||
| 576 | warn_gssd(); | 593 | warn_gssd(); |
| 577 | err = -EACCES; | 594 | err = -EACCES; |
| 578 | } | 595 | } |
| 579 | if (err) | 596 | if (err < 0) |
| 580 | goto out; | 597 | goto out; |
| 581 | goto retry; | 598 | goto retry; |
| 582 | } | 599 | } |
| @@ -707,20 +724,22 @@ out: | |||
| 707 | 724 | ||
| 708 | static int gss_pipe_open(struct inode *inode, int new_version) | 725 | static int gss_pipe_open(struct inode *inode, int new_version) |
| 709 | { | 726 | { |
| 727 | struct net *net = inode->i_sb->s_fs_info; | ||
| 728 | struct sunrpc_net *sn = net_generic(net, sunrpc_net_id); | ||
| 710 | int ret = 0; | 729 | int ret = 0; |
| 711 | 730 | ||
| 712 | spin_lock(&pipe_version_lock); | 731 | spin_lock(&pipe_version_lock); |
| 713 | if (pipe_version < 0) { | 732 | if (sn->pipe_version < 0) { |
| 714 | /* First open of any gss pipe determines the version: */ | 733 | /* First open of any gss pipe determines the version: */ |
| 715 | pipe_version = new_version; | 734 | sn->pipe_version = new_version; |
| 716 | rpc_wake_up(&pipe_version_rpc_waitqueue); | 735 | rpc_wake_up(&pipe_version_rpc_waitqueue); |
| 717 | wake_up(&pipe_version_waitqueue); | 736 | wake_up(&pipe_version_waitqueue); |
| 718 | } else if (pipe_version != new_version) { | 737 | } else if (sn->pipe_version != new_version) { |
| 719 | /* Trying to open a pipe of a different version */ | 738 | /* Trying to open a pipe of a different version */ |
| 720 | ret = -EBUSY; | 739 | ret = -EBUSY; |
| 721 | goto out; | 740 | goto out; |
| 722 | } | 741 | } |
| 723 | atomic_inc(&pipe_users); | 742 | atomic_inc(&sn->pipe_users); |
| 724 | out: | 743 | out: |
| 725 | spin_unlock(&pipe_version_lock); | 744 | spin_unlock(&pipe_version_lock); |
| 726 | return ret; | 745 | return ret; |
| @@ -740,6 +759,7 @@ static int gss_pipe_open_v1(struct inode *inode) | |||
| 740 | static void | 759 | static void |
| 741 | gss_pipe_release(struct inode *inode) | 760 | gss_pipe_release(struct inode *inode) |
| 742 | { | 761 | { |
| 762 | struct net *net = inode->i_sb->s_fs_info; | ||
| 743 | struct rpc_pipe *pipe = RPC_I(inode)->pipe; | 763 | struct rpc_pipe *pipe = RPC_I(inode)->pipe; |
| 744 | struct gss_upcall_msg *gss_msg; | 764 | struct gss_upcall_msg *gss_msg; |
| 745 | 765 | ||
| @@ -758,7 +778,7 @@ restart: | |||
| 758 | } | 778 | } |
| 759 | spin_unlock(&pipe->lock); | 779 | spin_unlock(&pipe->lock); |
| 760 | 780 | ||
| 761 | put_pipe_version(); | 781 | put_pipe_version(net); |
| 762 | } | 782 | } |
| 763 | 783 | ||
| 764 | static void | 784 | static void |
diff --git a/net/sunrpc/netns.h b/net/sunrpc/netns.h index 7111a4c9113b..74d948f5d5a1 100644 --- a/net/sunrpc/netns.h +++ b/net/sunrpc/netns.h | |||
| @@ -28,7 +28,11 @@ struct sunrpc_net { | |||
| 28 | wait_queue_head_t gssp_wq; | 28 | wait_queue_head_t gssp_wq; |
| 29 | struct rpc_clnt *gssp_clnt; | 29 | struct rpc_clnt *gssp_clnt; |
| 30 | int use_gss_proxy; | 30 | int use_gss_proxy; |
| 31 | int pipe_version; | ||
| 32 | atomic_t pipe_users; | ||
| 31 | struct proc_dir_entry *use_gssp_proc; | 33 | struct proc_dir_entry *use_gssp_proc; |
| 34 | |||
| 35 | unsigned int gssd_running; | ||
| 32 | }; | 36 | }; |
| 33 | 37 | ||
| 34 | extern int sunrpc_net_id; | 38 | extern int sunrpc_net_id; |
diff --git a/net/sunrpc/rpc_pipe.c b/net/sunrpc/rpc_pipe.c index a9129f8d7070..e7ce4b3eb0bd 100644 --- a/net/sunrpc/rpc_pipe.c +++ b/net/sunrpc/rpc_pipe.c | |||
| @@ -216,11 +216,14 @@ rpc_destroy_inode(struct inode *inode) | |||
| 216 | static int | 216 | static int |
| 217 | rpc_pipe_open(struct inode *inode, struct file *filp) | 217 | rpc_pipe_open(struct inode *inode, struct file *filp) |
| 218 | { | 218 | { |
| 219 | struct net *net = inode->i_sb->s_fs_info; | ||
| 220 | struct sunrpc_net *sn = net_generic(net, sunrpc_net_id); | ||
| 219 | struct rpc_pipe *pipe; | 221 | struct rpc_pipe *pipe; |
| 220 | int first_open; | 222 | int first_open; |
| 221 | int res = -ENXIO; | 223 | int res = -ENXIO; |
| 222 | 224 | ||
| 223 | mutex_lock(&inode->i_mutex); | 225 | mutex_lock(&inode->i_mutex); |
| 226 | sn->gssd_running = 1; | ||
| 224 | pipe = RPC_I(inode)->pipe; | 227 | pipe = RPC_I(inode)->pipe; |
| 225 | if (pipe == NULL) | 228 | if (pipe == NULL) |
| 226 | goto out; | 229 | goto out; |
| @@ -1069,6 +1072,8 @@ void rpc_pipefs_init_net(struct net *net) | |||
| 1069 | struct sunrpc_net *sn = net_generic(net, sunrpc_net_id); | 1072 | struct sunrpc_net *sn = net_generic(net, sunrpc_net_id); |
| 1070 | 1073 | ||
| 1071 | mutex_init(&sn->pipefs_sb_lock); | 1074 | mutex_init(&sn->pipefs_sb_lock); |
| 1075 | sn->gssd_running = 1; | ||
| 1076 | sn->pipe_version = -1; | ||
| 1072 | } | 1077 | } |
| 1073 | 1078 | ||
| 1074 | /* | 1079 | /* |
diff --git a/net/sunrpc/sched.c b/net/sunrpc/sched.c index f8529fc8e542..5356b120dbf8 100644 --- a/net/sunrpc/sched.c +++ b/net/sunrpc/sched.c | |||
| @@ -324,11 +324,17 @@ EXPORT_SYMBOL_GPL(__rpc_wait_for_completion_task); | |||
| 324 | * Note: If the task is ASYNC, and is being made runnable after sitting on an | 324 | * Note: If the task is ASYNC, and is being made runnable after sitting on an |
| 325 | * rpc_wait_queue, this must be called with the queue spinlock held to protect | 325 | * rpc_wait_queue, this must be called with the queue spinlock held to protect |
| 326 | * the wait queue operation. | 326 | * the wait queue operation. |
| 327 | * Note the ordering of rpc_test_and_set_running() and rpc_clear_queued(), | ||
| 328 | * which is needed to ensure that __rpc_execute() doesn't loop (due to the | ||
| 329 | * lockless RPC_IS_QUEUED() test) before we've had a chance to test | ||
| 330 | * the RPC_TASK_RUNNING flag. | ||
| 327 | */ | 331 | */ |
| 328 | static void rpc_make_runnable(struct rpc_task *task) | 332 | static void rpc_make_runnable(struct rpc_task *task) |
| 329 | { | 333 | { |
| 334 | bool need_wakeup = !rpc_test_and_set_running(task); | ||
| 335 | |||
| 330 | rpc_clear_queued(task); | 336 | rpc_clear_queued(task); |
| 331 | if (rpc_test_and_set_running(task)) | 337 | if (!need_wakeup) |
| 332 | return; | 338 | return; |
| 333 | if (RPC_IS_ASYNC(task)) { | 339 | if (RPC_IS_ASYNC(task)) { |
| 334 | INIT_WORK(&task->u.tk_work, rpc_async_schedule); | 340 | INIT_WORK(&task->u.tk_work, rpc_async_schedule); |
diff --git a/net/wireless/core.c b/net/wireless/core.c index 84c9ad7e1dca..73405e00c800 100644 --- a/net/wireless/core.c +++ b/net/wireless/core.c | |||
| @@ -638,17 +638,21 @@ int wiphy_register(struct wiphy *wiphy) | |||
| 638 | * cfg80211_mutex lock | 638 | * cfg80211_mutex lock |
| 639 | */ | 639 | */ |
| 640 | res = rfkill_register(rdev->rfkill); | 640 | res = rfkill_register(rdev->rfkill); |
| 641 | if (res) | 641 | if (res) { |
| 642 | goto out_rm_dev; | 642 | device_del(&rdev->wiphy.dev); |
| 643 | |||
| 644 | mutex_lock(&cfg80211_mutex); | ||
| 645 | debugfs_remove_recursive(rdev->wiphy.debugfsdir); | ||
| 646 | list_del_rcu(&rdev->list); | ||
| 647 | wiphy_regulatory_deregister(wiphy); | ||
| 648 | mutex_unlock(&cfg80211_mutex); | ||
| 649 | return res; | ||
| 650 | } | ||
| 643 | 651 | ||
| 644 | rtnl_lock(); | 652 | rtnl_lock(); |
| 645 | rdev->wiphy.registered = true; | 653 | rdev->wiphy.registered = true; |
| 646 | rtnl_unlock(); | 654 | rtnl_unlock(); |
| 647 | return 0; | 655 | return 0; |
| 648 | |||
| 649 | out_rm_dev: | ||
| 650 | device_del(&rdev->wiphy.dev); | ||
| 651 | return res; | ||
| 652 | } | 656 | } |
| 653 | EXPORT_SYMBOL(wiphy_register); | 657 | EXPORT_SYMBOL(wiphy_register); |
| 654 | 658 | ||
| @@ -866,7 +870,6 @@ void cfg80211_leave(struct cfg80211_registered_device *rdev, | |||
| 866 | #endif | 870 | #endif |
| 867 | __cfg80211_disconnect(rdev, dev, | 871 | __cfg80211_disconnect(rdev, dev, |
| 868 | WLAN_REASON_DEAUTH_LEAVING, true); | 872 | WLAN_REASON_DEAUTH_LEAVING, true); |
| 869 | cfg80211_mlme_down(rdev, dev); | ||
| 870 | wdev_unlock(wdev); | 873 | wdev_unlock(wdev); |
| 871 | break; | 874 | break; |
| 872 | case NL80211_IFTYPE_MESH_POINT: | 875 | case NL80211_IFTYPE_MESH_POINT: |
diff --git a/net/wireless/nl80211.c b/net/wireless/nl80211.c index afa283841e8c..dfdb5e643211 100644 --- a/net/wireless/nl80211.c +++ b/net/wireless/nl80211.c | |||
| @@ -7577,6 +7577,8 @@ static int nl80211_send_wowlan_tcp(struct sk_buff *msg, | |||
| 7577 | &tcp->payload_tok)) | 7577 | &tcp->payload_tok)) |
| 7578 | return -ENOBUFS; | 7578 | return -ENOBUFS; |
| 7579 | 7579 | ||
| 7580 | nla_nest_end(msg, nl_tcp); | ||
| 7581 | |||
| 7580 | return 0; | 7582 | return 0; |
| 7581 | } | 7583 | } |
| 7582 | 7584 | ||
| @@ -9970,6 +9972,7 @@ int nl80211_send_mgmt(struct cfg80211_registered_device *rdev, | |||
| 9970 | if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) || | 9972 | if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) || |
| 9971 | (netdev && nla_put_u32(msg, NL80211_ATTR_IFINDEX, | 9973 | (netdev && nla_put_u32(msg, NL80211_ATTR_IFINDEX, |
| 9972 | netdev->ifindex)) || | 9974 | netdev->ifindex)) || |
| 9975 | nla_put_u64(msg, NL80211_ATTR_WDEV, wdev_id(wdev)) || | ||
| 9973 | nla_put_u32(msg, NL80211_ATTR_WIPHY_FREQ, freq) || | 9976 | nla_put_u32(msg, NL80211_ATTR_WIPHY_FREQ, freq) || |
| 9974 | (sig_dbm && | 9977 | (sig_dbm && |
| 9975 | nla_put_u32(msg, NL80211_ATTR_RX_SIGNAL_DBM, sig_dbm)) || | 9978 | nla_put_u32(msg, NL80211_ATTR_RX_SIGNAL_DBM, sig_dbm)) || |
| @@ -10010,6 +10013,7 @@ void cfg80211_mgmt_tx_status(struct wireless_dev *wdev, u64 cookie, | |||
| 10010 | if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) || | 10013 | if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) || |
| 10011 | (netdev && nla_put_u32(msg, NL80211_ATTR_IFINDEX, | 10014 | (netdev && nla_put_u32(msg, NL80211_ATTR_IFINDEX, |
| 10012 | netdev->ifindex)) || | 10015 | netdev->ifindex)) || |
| 10016 | nla_put_u64(msg, NL80211_ATTR_WDEV, wdev_id(wdev)) || | ||
| 10013 | nla_put(msg, NL80211_ATTR_FRAME, len, buf) || | 10017 | nla_put(msg, NL80211_ATTR_FRAME, len, buf) || |
| 10014 | nla_put_u64(msg, NL80211_ATTR_COOKIE, cookie) || | 10018 | nla_put_u64(msg, NL80211_ATTR_COOKIE, cookie) || |
| 10015 | (ack && nla_put_flag(msg, NL80211_ATTR_ACK))) | 10019 | (ack && nla_put_flag(msg, NL80211_ATTR_ACK))) |
diff --git a/net/wireless/sme.c b/net/wireless/sme.c index a9dc5c736df0..8b5eddfba1e5 100644 --- a/net/wireless/sme.c +++ b/net/wireless/sme.c | |||
| @@ -961,7 +961,7 @@ int __cfg80211_disconnect(struct cfg80211_registered_device *rdev, | |||
| 961 | /* was it connected by userspace SME? */ | 961 | /* was it connected by userspace SME? */ |
| 962 | if (!wdev->conn) { | 962 | if (!wdev->conn) { |
| 963 | cfg80211_mlme_down(rdev, dev); | 963 | cfg80211_mlme_down(rdev, dev); |
| 964 | return 0; | 964 | goto disconnect; |
| 965 | } | 965 | } |
| 966 | 966 | ||
| 967 | if (wdev->sme_state == CFG80211_SME_CONNECTING && | 967 | if (wdev->sme_state == CFG80211_SME_CONNECTING && |
| @@ -987,6 +987,7 @@ int __cfg80211_disconnect(struct cfg80211_registered_device *rdev, | |||
| 987 | return err; | 987 | return err; |
| 988 | } | 988 | } |
| 989 | 989 | ||
| 990 | disconnect: | ||
| 990 | if (wdev->sme_state == CFG80211_SME_CONNECTED) | 991 | if (wdev->sme_state == CFG80211_SME_CONNECTED) |
| 991 | __cfg80211_disconnected(dev, NULL, 0, 0, false); | 992 | __cfg80211_disconnected(dev, NULL, 0, 0, false); |
| 992 | else if (wdev->sme_state == CFG80211_SME_CONNECTING) | 993 | else if (wdev->sme_state == CFG80211_SME_CONNECTING) |
diff --git a/net/wireless/trace.h b/net/wireless/trace.h index ecd4fcec3c94..5755bc14abbd 100644 --- a/net/wireless/trace.h +++ b/net/wireless/trace.h | |||
| @@ -2441,6 +2441,7 @@ TRACE_EVENT(cfg80211_report_wowlan_wakeup, | |||
| 2441 | TP_STRUCT__entry( | 2441 | TP_STRUCT__entry( |
| 2442 | WIPHY_ENTRY | 2442 | WIPHY_ENTRY |
| 2443 | WDEV_ENTRY | 2443 | WDEV_ENTRY |
| 2444 | __field(bool, non_wireless) | ||
| 2444 | __field(bool, disconnect) | 2445 | __field(bool, disconnect) |
| 2445 | __field(bool, magic_pkt) | 2446 | __field(bool, magic_pkt) |
| 2446 | __field(bool, gtk_rekey_failure) | 2447 | __field(bool, gtk_rekey_failure) |
| @@ -2449,20 +2450,22 @@ TRACE_EVENT(cfg80211_report_wowlan_wakeup, | |||
| 2449 | __field(bool, rfkill_release) | 2450 | __field(bool, rfkill_release) |
| 2450 | __field(s32, pattern_idx) | 2451 | __field(s32, pattern_idx) |
| 2451 | __field(u32, packet_len) | 2452 | __field(u32, packet_len) |
| 2452 | __dynamic_array(u8, packet, wakeup->packet_present_len) | 2453 | __dynamic_array(u8, packet, |
| 2454 | wakeup ? wakeup->packet_present_len : 0) | ||
| 2453 | ), | 2455 | ), |
| 2454 | TP_fast_assign( | 2456 | TP_fast_assign( |
| 2455 | WIPHY_ASSIGN; | 2457 | WIPHY_ASSIGN; |
| 2456 | WDEV_ASSIGN; | 2458 | WDEV_ASSIGN; |
| 2457 | __entry->disconnect = wakeup->disconnect; | 2459 | __entry->non_wireless = !wakeup; |
| 2458 | __entry->magic_pkt = wakeup->magic_pkt; | 2460 | __entry->disconnect = wakeup ? wakeup->disconnect : false; |
| 2459 | __entry->gtk_rekey_failure = wakeup->gtk_rekey_failure; | 2461 | __entry->magic_pkt = wakeup ? wakeup->magic_pkt : false; |
| 2460 | __entry->eap_identity_req = wakeup->eap_identity_req; | 2462 | __entry->gtk_rekey_failure = wakeup ? wakeup->gtk_rekey_failure : false; |
| 2461 | __entry->four_way_handshake = wakeup->four_way_handshake; | 2463 | __entry->eap_identity_req = wakeup ? wakeup->eap_identity_req : false; |
| 2462 | __entry->rfkill_release = wakeup->rfkill_release; | 2464 | __entry->four_way_handshake = wakeup ? wakeup->four_way_handshake : false; |
| 2463 | __entry->pattern_idx = wakeup->pattern_idx; | 2465 | __entry->rfkill_release = wakeup ? wakeup->rfkill_release : false; |
| 2464 | __entry->packet_len = wakeup->packet_len; | 2466 | __entry->pattern_idx = wakeup ? wakeup->pattern_idx : false; |
| 2465 | if (wakeup->packet && wakeup->packet_present_len) | 2467 | __entry->packet_len = wakeup ? wakeup->packet_len : false; |
| 2468 | if (wakeup && wakeup->packet && wakeup->packet_present_len) | ||
| 2466 | memcpy(__get_dynamic_array(packet), wakeup->packet, | 2469 | memcpy(__get_dynamic_array(packet), wakeup->packet, |
| 2467 | wakeup->packet_present_len); | 2470 | wakeup->packet_present_len); |
| 2468 | ), | 2471 | ), |
diff --git a/net/xfrm/xfrm_output.c b/net/xfrm/xfrm_output.c index bcfda8921b5b..0cf003dfa8fc 100644 --- a/net/xfrm/xfrm_output.c +++ b/net/xfrm/xfrm_output.c | |||
| @@ -64,6 +64,7 @@ static int xfrm_output_one(struct sk_buff *skb, int err) | |||
| 64 | 64 | ||
| 65 | if (unlikely(x->km.state != XFRM_STATE_VALID)) { | 65 | if (unlikely(x->km.state != XFRM_STATE_VALID)) { |
| 66 | XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTSTATEINVALID); | 66 | XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTSTATEINVALID); |
| 67 | err = -EINVAL; | ||
| 67 | goto error; | 68 | goto error; |
| 68 | } | 69 | } |
| 69 | 70 | ||
diff --git a/tools/perf/scripts/python/net_dropmonitor.py b/tools/perf/scripts/python/net_dropmonitor.py index a4ffc9500023..b5740599aabd 100755 --- a/tools/perf/scripts/python/net_dropmonitor.py +++ b/tools/perf/scripts/python/net_dropmonitor.py | |||
| @@ -15,35 +15,38 @@ kallsyms = [] | |||
| 15 | 15 | ||
| 16 | def get_kallsyms_table(): | 16 | def get_kallsyms_table(): |
| 17 | global kallsyms | 17 | global kallsyms |
| 18 | |||
| 18 | try: | 19 | try: |
| 19 | f = open("/proc/kallsyms", "r") | 20 | f = open("/proc/kallsyms", "r") |
| 20 | linecount = 0 | ||
| 21 | for line in f: | ||
| 22 | linecount = linecount+1 | ||
| 23 | f.seek(0) | ||
| 24 | except: | 21 | except: |
| 25 | return | 22 | return |
| 26 | 23 | ||
| 27 | |||
| 28 | j = 0 | ||
| 29 | for line in f: | 24 | for line in f: |
| 30 | loc = int(line.split()[0], 16) | 25 | loc = int(line.split()[0], 16) |
| 31 | name = line.split()[2] | 26 | name = line.split()[2] |
| 32 | j = j +1 | 27 | kallsyms.append((loc, name)) |
| 33 | if ((j % 100) == 0): | ||
| 34 | print "\r" + str(j) + "/" + str(linecount), | ||
| 35 | kallsyms.append({ 'loc': loc, 'name' : name}) | ||
| 36 | |||
| 37 | print "\r" + str(j) + "/" + str(linecount) | ||
| 38 | kallsyms.sort() | 28 | kallsyms.sort() |
| 39 | return | ||
| 40 | 29 | ||
| 41 | def get_sym(sloc): | 30 | def get_sym(sloc): |
| 42 | loc = int(sloc) | 31 | loc = int(sloc) |
| 43 | for i in kallsyms: | 32 | |
| 44 | if (i['loc'] >= loc): | 33 | # Invariant: kallsyms[i][0] <= loc for all 0 <= i <= start |
| 45 | return (i['name'], i['loc']-loc) | 34 | # kallsyms[i][0] > loc for all end <= i < len(kallsyms) |
| 46 | return (None, 0) | 35 | start, end = -1, len(kallsyms) |
| 36 | while end != start + 1: | ||
| 37 | pivot = (start + end) // 2 | ||
| 38 | if loc < kallsyms[pivot][0]: | ||
| 39 | end = pivot | ||
| 40 | else: | ||
| 41 | start = pivot | ||
| 42 | |||
| 43 | # Now (start == -1 or kallsyms[start][0] <= loc) | ||
| 44 | # and (start == len(kallsyms) - 1 or loc < kallsyms[start + 1][0]) | ||
| 45 | if start >= 0: | ||
| 46 | symloc, name = kallsyms[start] | ||
| 47 | return (name, loc - symloc) | ||
| 48 | else: | ||
| 49 | return (None, 0) | ||
| 47 | 50 | ||
| 48 | def print_drop_table(): | 51 | def print_drop_table(): |
| 49 | print "%25s %25s %25s" % ("LOCATION", "OFFSET", "COUNT") | 52 | print "%25s %25s %25s" % ("LOCATION", "OFFSET", "COUNT") |
| @@ -64,7 +67,7 @@ def trace_end(): | |||
| 64 | 67 | ||
| 65 | # called from perf, when it finds a correspoinding event | 68 | # called from perf, when it finds a correspoinding event |
| 66 | def skb__kfree_skb(name, context, cpu, sec, nsec, pid, comm, | 69 | def skb__kfree_skb(name, context, cpu, sec, nsec, pid, comm, |
| 67 | skbaddr, protocol, location): | 70 | skbaddr, location, protocol): |
| 68 | slocation = str(location) | 71 | slocation = str(location) |
| 69 | try: | 72 | try: |
| 70 | drop_log[slocation] = drop_log[slocation] + 1 | 73 | drop_log[slocation] = drop_log[slocation] + 1 |
diff --git a/tools/testing/selftests/Makefile b/tools/testing/selftests/Makefile index d4abc59ce1d9..0a63658065f0 100644 --- a/tools/testing/selftests/Makefile +++ b/tools/testing/selftests/Makefile | |||
| @@ -6,7 +6,6 @@ TARGETS += memory-hotplug | |||
| 6 | TARGETS += mqueue | 6 | TARGETS += mqueue |
| 7 | TARGETS += net | 7 | TARGETS += net |
| 8 | TARGETS += ptrace | 8 | TARGETS += ptrace |
| 9 | TARGETS += soft-dirty | ||
| 10 | TARGETS += vm | 9 | TARGETS += vm |
| 11 | 10 | ||
| 12 | all: | 11 | all: |
diff --git a/tools/testing/selftests/soft-dirty/Makefile b/tools/testing/selftests/soft-dirty/Makefile deleted file mode 100644 index a9cdc823d6e0..000000000000 --- a/tools/testing/selftests/soft-dirty/Makefile +++ /dev/null | |||
| @@ -1,10 +0,0 @@ | |||
| 1 | CFLAGS += -iquote../../../../include/uapi -Wall | ||
| 2 | soft-dirty: soft-dirty.c | ||
| 3 | |||
| 4 | all: soft-dirty | ||
| 5 | |||
| 6 | clean: | ||
| 7 | rm -f soft-dirty | ||
| 8 | |||
| 9 | run_tests: all | ||
| 10 | @./soft-dirty || echo "soft-dirty selftests: [FAIL]" | ||
diff --git a/tools/testing/selftests/soft-dirty/soft-dirty.c b/tools/testing/selftests/soft-dirty/soft-dirty.c deleted file mode 100644 index aba4f87f87f0..000000000000 --- a/tools/testing/selftests/soft-dirty/soft-dirty.c +++ /dev/null | |||
| @@ -1,114 +0,0 @@ | |||
| 1 | #include <stdlib.h> | ||
| 2 | #include <stdio.h> | ||
| 3 | #include <sys/mman.h> | ||
| 4 | #include <unistd.h> | ||
| 5 | #include <fcntl.h> | ||
| 6 | #include <sys/types.h> | ||
| 7 | |||
| 8 | typedef unsigned long long u64; | ||
| 9 | |||
| 10 | #define PME_PRESENT (1ULL << 63) | ||
| 11 | #define PME_SOFT_DIRTY (1Ull << 55) | ||
| 12 | |||
| 13 | #define PAGES_TO_TEST 3 | ||
| 14 | #ifndef PAGE_SIZE | ||
| 15 | #define PAGE_SIZE 4096 | ||
| 16 | #endif | ||
| 17 | |||
| 18 | static void get_pagemap2(char *mem, u64 *map) | ||
| 19 | { | ||
| 20 | int fd; | ||
| 21 | |||
| 22 | fd = open("/proc/self/pagemap2", O_RDONLY); | ||
| 23 | if (fd < 0) { | ||
| 24 | perror("Can't open pagemap2"); | ||
| 25 | exit(1); | ||
| 26 | } | ||
| 27 | |||
| 28 | lseek(fd, (unsigned long)mem / PAGE_SIZE * sizeof(u64), SEEK_SET); | ||
| 29 | read(fd, map, sizeof(u64) * PAGES_TO_TEST); | ||
| 30 | close(fd); | ||
| 31 | } | ||
| 32 | |||
| 33 | static inline char map_p(u64 map) | ||
| 34 | { | ||
| 35 | return map & PME_PRESENT ? 'p' : '-'; | ||
| 36 | } | ||
| 37 | |||
| 38 | static inline char map_sd(u64 map) | ||
| 39 | { | ||
| 40 | return map & PME_SOFT_DIRTY ? 'd' : '-'; | ||
| 41 | } | ||
| 42 | |||
| 43 | static int check_pte(int step, int page, u64 *map, u64 want) | ||
| 44 | { | ||
| 45 | if ((map[page] & want) != want) { | ||
| 46 | printf("Step %d Page %d has %c%c, want %c%c\n", | ||
| 47 | step, page, | ||
| 48 | map_p(map[page]), map_sd(map[page]), | ||
| 49 | map_p(want), map_sd(want)); | ||
| 50 | return 1; | ||
| 51 | } | ||
| 52 | |||
| 53 | return 0; | ||
| 54 | } | ||
| 55 | |||
| 56 | static void clear_refs(void) | ||
| 57 | { | ||
| 58 | int fd; | ||
| 59 | char *v = "4"; | ||
| 60 | |||
| 61 | fd = open("/proc/self/clear_refs", O_WRONLY); | ||
| 62 | if (write(fd, v, 3) < 3) { | ||
| 63 | perror("Can't clear soft-dirty bit"); | ||
| 64 | exit(1); | ||
| 65 | } | ||
| 66 | close(fd); | ||
| 67 | } | ||
| 68 | |||
| 69 | int main(void) | ||
| 70 | { | ||
| 71 | char *mem, x; | ||
| 72 | u64 map[PAGES_TO_TEST]; | ||
| 73 | |||
| 74 | mem = mmap(NULL, PAGES_TO_TEST * PAGE_SIZE, | ||
| 75 | PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANON, 0, 0); | ||
| 76 | |||
| 77 | x = mem[0]; | ||
| 78 | mem[2 * PAGE_SIZE] = 'c'; | ||
| 79 | get_pagemap2(mem, map); | ||
| 80 | |||
| 81 | if (check_pte(1, 0, map, PME_PRESENT)) | ||
| 82 | return 1; | ||
| 83 | if (check_pte(1, 1, map, 0)) | ||
| 84 | return 1; | ||
| 85 | if (check_pte(1, 2, map, PME_PRESENT | PME_SOFT_DIRTY)) | ||
| 86 | return 1; | ||
| 87 | |||
| 88 | clear_refs(); | ||
| 89 | get_pagemap2(mem, map); | ||
| 90 | |||
| 91 | if (check_pte(2, 0, map, PME_PRESENT)) | ||
| 92 | return 1; | ||
| 93 | if (check_pte(2, 1, map, 0)) | ||
| 94 | return 1; | ||
| 95 | if (check_pte(2, 2, map, PME_PRESENT)) | ||
| 96 | return 1; | ||
| 97 | |||
| 98 | mem[0] = 'a'; | ||
| 99 | mem[PAGE_SIZE] = 'b'; | ||
| 100 | x = mem[2 * PAGE_SIZE]; | ||
| 101 | get_pagemap2(mem, map); | ||
| 102 | |||
| 103 | if (check_pte(3, 0, map, PME_PRESENT | PME_SOFT_DIRTY)) | ||
| 104 | return 1; | ||
| 105 | if (check_pte(3, 1, map, PME_PRESENT | PME_SOFT_DIRTY)) | ||
| 106 | return 1; | ||
| 107 | if (check_pte(3, 2, map, PME_PRESENT)) | ||
| 108 | return 1; | ||
| 109 | |||
| 110 | (void)x; /* gcc warn */ | ||
| 111 | |||
| 112 | printf("PASS\n"); | ||
| 113 | return 0; | ||
| 114 | } | ||
