diff options
313 files changed, 3553 insertions, 5234 deletions
diff --git a/Documentation/ABI/testing/sysfs-devices-cache_disable b/Documentation/ABI/testing/sysfs-devices-cache_disable deleted file mode 100644 index 175bb4f70512..000000000000 --- a/Documentation/ABI/testing/sysfs-devices-cache_disable +++ /dev/null | |||
| @@ -1,18 +0,0 @@ | |||
| 1 | What: /sys/devices/system/cpu/cpu*/cache/index*/cache_disable_X | ||
| 2 | Date: August 2008 | ||
| 3 | KernelVersion: 2.6.27 | ||
| 4 | Contact: mark.langsdorf@amd.com | ||
| 5 | Description: These files exist in every cpu's cache index directories. | ||
| 6 | There are currently 2 cache_disable_# files in each | ||
| 7 | directory. Reading from these files on a supported | ||
| 8 | processor will return that cache disable index value | ||
| 9 | for that processor and node. Writing to one of these | ||
| 10 | files will cause the specificed cache index to be disabled. | ||
| 11 | |||
| 12 | Currently, only AMD Family 10h Processors support cache index | ||
| 13 | disable, and only for their L3 caches. See the BIOS and | ||
| 14 | Kernel Developer's Guide at | ||
| 15 | http://www.amd.com/us-en/assets/content_type/white_papers_and_tech_docs/31116-Public-GH-BKDG_3.20_2-4-09.pdf | ||
| 16 | for formatting information and other details on the | ||
| 17 | cache index disable. | ||
| 18 | Users: joachim.deguara@amd.com | ||
diff --git a/Documentation/ABI/testing/sysfs-devices-system-cpu b/Documentation/ABI/testing/sysfs-devices-system-cpu new file mode 100644 index 000000000000..a703b9e9aeb9 --- /dev/null +++ b/Documentation/ABI/testing/sysfs-devices-system-cpu | |||
| @@ -0,0 +1,156 @@ | |||
| 1 | What: /sys/devices/system/cpu/ | ||
| 2 | Date: pre-git history | ||
| 3 | Contact: Linux kernel mailing list <linux-kernel@vger.kernel.org> | ||
| 4 | Description: | ||
| 5 | A collection of both global and individual CPU attributes | ||
| 6 | |||
| 7 | Individual CPU attributes are contained in subdirectories | ||
| 8 | named by the kernel's logical CPU number, e.g.: | ||
| 9 | |||
| 10 | /sys/devices/system/cpu/cpu#/ | ||
| 11 | |||
| 12 | What: /sys/devices/system/cpu/sched_mc_power_savings | ||
| 13 | /sys/devices/system/cpu/sched_smt_power_savings | ||
| 14 | Date: June 2006 | ||
| 15 | Contact: Linux kernel mailing list <linux-kernel@vger.kernel.org> | ||
| 16 | Description: Discover and adjust the kernel's multi-core scheduler support. | ||
| 17 | |||
| 18 | Possible values are: | ||
| 19 | |||
| 20 | 0 - No power saving load balance (default value) | ||
| 21 | 1 - Fill one thread/core/package first for long running threads | ||
| 22 | 2 - Also bias task wakeups to semi-idle cpu package for power | ||
| 23 | savings | ||
| 24 | |||
| 25 | sched_mc_power_savings is dependent upon SCHED_MC, which is | ||
| 26 | itself architecture dependent. | ||
| 27 | |||
| 28 | sched_smt_power_savings is dependent upon SCHED_SMT, which | ||
| 29 | is itself architecture dependent. | ||
| 30 | |||
| 31 | The two files are independent of each other. It is possible | ||
| 32 | that one file may be present without the other. | ||
| 33 | |||
| 34 | Introduced by git commit 5c45bf27. | ||
| 35 | |||
| 36 | |||
| 37 | What: /sys/devices/system/cpu/kernel_max | ||
| 38 | /sys/devices/system/cpu/offline | ||
| 39 | /sys/devices/system/cpu/online | ||
| 40 | /sys/devices/system/cpu/possible | ||
| 41 | /sys/devices/system/cpu/present | ||
| 42 | Date: December 2008 | ||
| 43 | Contact: Linux kernel mailing list <linux-kernel@vger.kernel.org> | ||
| 44 | Description: CPU topology files that describe kernel limits related to | ||
| 45 | hotplug. Briefly: | ||
| 46 | |||
| 47 | kernel_max: the maximum cpu index allowed by the kernel | ||
| 48 | configuration. | ||
| 49 | |||
| 50 | offline: cpus that are not online because they have been | ||
| 51 | HOTPLUGGED off or exceed the limit of cpus allowed by the | ||
| 52 | kernel configuration (kernel_max above). | ||
| 53 | |||
| 54 | online: cpus that are online and being scheduled. | ||
| 55 | |||
| 56 | possible: cpus that have been allocated resources and can be | ||
| 57 | brought online if they are present. | ||
| 58 | |||
| 59 | present: cpus that have been identified as being present in | ||
| 60 | the system. | ||
| 61 | |||
| 62 | See Documentation/cputopology.txt for more information. | ||
| 63 | |||
| 64 | |||
| 65 | |||
| 66 | What: /sys/devices/system/cpu/cpu#/node | ||
| 67 | Date: October 2009 | ||
| 68 | Contact: Linux memory management mailing list <linux-mm@kvack.org> | ||
| 69 | Description: Discover NUMA node a CPU belongs to | ||
| 70 | |||
| 71 | When CONFIG_NUMA is enabled, a symbolic link that points | ||
| 72 | to the corresponding NUMA node directory. | ||
| 73 | |||
| 74 | For example, the following symlink is created for cpu42 | ||
| 75 | in NUMA node 2: | ||
| 76 | |||
| 77 | /sys/devices/system/cpu/cpu42/node2 -> ../../node/node2 | ||
| 78 | |||
| 79 | |||
| 80 | What: /sys/devices/system/cpu/cpu#/topology/core_id | ||
| 81 | /sys/devices/system/cpu/cpu#/topology/core_siblings | ||
| 82 | /sys/devices/system/cpu/cpu#/topology/core_siblings_list | ||
| 83 | /sys/devices/system/cpu/cpu#/topology/physical_package_id | ||
| 84 | /sys/devices/system/cpu/cpu#/topology/thread_siblings | ||
| 85 | /sys/devices/system/cpu/cpu#/topology/thread_siblings_list | ||
| 86 | Date: December 2008 | ||
| 87 | Contact: Linux kernel mailing list <linux-kernel@vger.kernel.org> | ||
| 88 | Description: CPU topology files that describe a logical CPU's relationship | ||
| 89 | to other cores and threads in the same physical package. | ||
| 90 | |||
| 91 | One cpu# directory is created per logical CPU in the system, | ||
| 92 | e.g. /sys/devices/system/cpu/cpu42/. | ||
| 93 | |||
| 94 | Briefly, the files above are: | ||
| 95 | |||
| 96 | core_id: the CPU core ID of cpu#. Typically it is the | ||
| 97 | hardware platform's identifier (rather than the kernel's). | ||
| 98 | The actual value is architecture and platform dependent. | ||
| 99 | |||
| 100 | core_siblings: internal kernel map of cpu#'s hardware threads | ||
| 101 | within the same physical_package_id. | ||
| 102 | |||
| 103 | core_siblings_list: human-readable list of the logical CPU | ||
| 104 | numbers within the same physical_package_id as cpu#. | ||
| 105 | |||
| 106 | physical_package_id: physical package id of cpu#. Typically | ||
| 107 | corresponds to a physical socket number, but the actual value | ||
| 108 | is architecture and platform dependent. | ||
| 109 | |||
| 110 | thread_siblings: internel kernel map of cpu#'s hardware | ||
| 111 | threads within the same core as cpu# | ||
| 112 | |||
| 113 | thread_siblings_list: human-readable list of cpu#'s hardware | ||
| 114 | threads within the same core as cpu# | ||
| 115 | |||
| 116 | See Documentation/cputopology.txt for more information. | ||
| 117 | |||
| 118 | |||
| 119 | What: /sys/devices/system/cpu/cpuidle/current_driver | ||
| 120 | /sys/devices/system/cpu/cpuidle/current_governer_ro | ||
| 121 | Date: September 2007 | ||
| 122 | Contact: Linux kernel mailing list <linux-kernel@vger.kernel.org> | ||
| 123 | Description: Discover cpuidle policy and mechanism | ||
| 124 | |||
| 125 | Various CPUs today support multiple idle levels that are | ||
| 126 | differentiated by varying exit latencies and power | ||
| 127 | consumption during idle. | ||
| 128 | |||
| 129 | Idle policy (governor) is differentiated from idle mechanism | ||
| 130 | (driver) | ||
| 131 | |||
| 132 | current_driver: displays current idle mechanism | ||
| 133 | |||
| 134 | current_governor_ro: displays current idle policy | ||
| 135 | |||
| 136 | See files in Documentation/cpuidle/ for more information. | ||
| 137 | |||
| 138 | |||
| 139 | What: /sys/devices/system/cpu/cpu*/cache/index*/cache_disable_X | ||
| 140 | Date: August 2008 | ||
| 141 | KernelVersion: 2.6.27 | ||
| 142 | Contact: mark.langsdorf@amd.com | ||
| 143 | Description: These files exist in every cpu's cache index directories. | ||
| 144 | There are currently 2 cache_disable_# files in each | ||
| 145 | directory. Reading from these files on a supported | ||
| 146 | processor will return that cache disable index value | ||
| 147 | for that processor and node. Writing to one of these | ||
| 148 | files will cause the specificed cache index to be disabled. | ||
| 149 | |||
| 150 | Currently, only AMD Family 10h Processors support cache index | ||
| 151 | disable, and only for their L3 caches. See the BIOS and | ||
| 152 | Kernel Developer's Guide at | ||
| 153 | http://www.amd.com/us-en/assets/content_type/white_papers_and_tech_docs/31116-Public-GH-BKDG_3.20_2-4-09.pdf | ||
| 154 | for formatting information and other details on the | ||
| 155 | cache index disable. | ||
| 156 | Users: joachim.deguara@amd.com | ||
diff --git a/Documentation/cputopology.txt b/Documentation/cputopology.txt index b41f3e58aefa..f1c5c4bccd3e 100644 --- a/Documentation/cputopology.txt +++ b/Documentation/cputopology.txt | |||
| @@ -1,15 +1,28 @@ | |||
| 1 | 1 | ||
| 2 | Export cpu topology info via sysfs. Items (attributes) are similar | 2 | Export CPU topology info via sysfs. Items (attributes) are similar |
| 3 | to /proc/cpuinfo. | 3 | to /proc/cpuinfo. |
| 4 | 4 | ||
| 5 | 1) /sys/devices/system/cpu/cpuX/topology/physical_package_id: | 5 | 1) /sys/devices/system/cpu/cpuX/topology/physical_package_id: |
| 6 | represent the physical package id of cpu X; | 6 | |
| 7 | physical package id of cpuX. Typically corresponds to a physical | ||
| 8 | socket number, but the actual value is architecture and platform | ||
| 9 | dependent. | ||
| 10 | |||
| 7 | 2) /sys/devices/system/cpu/cpuX/topology/core_id: | 11 | 2) /sys/devices/system/cpu/cpuX/topology/core_id: |
| 8 | represent the cpu core id to cpu X; | 12 | |
| 13 | the CPU core ID of cpuX. Typically it is the hardware platform's | ||
| 14 | identifier (rather than the kernel's). The actual value is | ||
| 15 | architecture and platform dependent. | ||
| 16 | |||
| 9 | 3) /sys/devices/system/cpu/cpuX/topology/thread_siblings: | 17 | 3) /sys/devices/system/cpu/cpuX/topology/thread_siblings: |
| 10 | represent the thread siblings to cpu X in the same core; | 18 | |
| 19 | internel kernel map of cpuX's hardware threads within the same | ||
| 20 | core as cpuX | ||
| 21 | |||
| 11 | 4) /sys/devices/system/cpu/cpuX/topology/core_siblings: | 22 | 4) /sys/devices/system/cpu/cpuX/topology/core_siblings: |
| 12 | represent the thread siblings to cpu X in the same physical package; | 23 | |
| 24 | internal kernel map of cpuX's hardware threads within the same | ||
| 25 | physical_package_id. | ||
| 13 | 26 | ||
| 14 | To implement it in an architecture-neutral way, a new source file, | 27 | To implement it in an architecture-neutral way, a new source file, |
| 15 | drivers/base/topology.c, is to export the 4 attributes. | 28 | drivers/base/topology.c, is to export the 4 attributes. |
| @@ -32,32 +45,32 @@ not defined by include/asm-XXX/topology.h: | |||
| 32 | 3) thread_siblings: just the given CPU | 45 | 3) thread_siblings: just the given CPU |
| 33 | 4) core_siblings: just the given CPU | 46 | 4) core_siblings: just the given CPU |
| 34 | 47 | ||
| 35 | Additionally, cpu topology information is provided under | 48 | Additionally, CPU topology information is provided under |
| 36 | /sys/devices/system/cpu and includes these files. The internal | 49 | /sys/devices/system/cpu and includes these files. The internal |
| 37 | source for the output is in brackets ("[]"). | 50 | source for the output is in brackets ("[]"). |
| 38 | 51 | ||
| 39 | kernel_max: the maximum cpu index allowed by the kernel configuration. | 52 | kernel_max: the maximum CPU index allowed by the kernel configuration. |
| 40 | [NR_CPUS-1] | 53 | [NR_CPUS-1] |
| 41 | 54 | ||
| 42 | offline: cpus that are not online because they have been | 55 | offline: CPUs that are not online because they have been |
| 43 | HOTPLUGGED off (see cpu-hotplug.txt) or exceed the limit | 56 | HOTPLUGGED off (see cpu-hotplug.txt) or exceed the limit |
| 44 | of cpus allowed by the kernel configuration (kernel_max | 57 | of CPUs allowed by the kernel configuration (kernel_max |
| 45 | above). [~cpu_online_mask + cpus >= NR_CPUS] | 58 | above). [~cpu_online_mask + cpus >= NR_CPUS] |
| 46 | 59 | ||
| 47 | online: cpus that are online and being scheduled [cpu_online_mask] | 60 | online: CPUs that are online and being scheduled [cpu_online_mask] |
| 48 | 61 | ||
| 49 | possible: cpus that have been allocated resources and can be | 62 | possible: CPUs that have been allocated resources and can be |
| 50 | brought online if they are present. [cpu_possible_mask] | 63 | brought online if they are present. [cpu_possible_mask] |
| 51 | 64 | ||
| 52 | present: cpus that have been identified as being present in the | 65 | present: CPUs that have been identified as being present in the |
| 53 | system. [cpu_present_mask] | 66 | system. [cpu_present_mask] |
| 54 | 67 | ||
| 55 | The format for the above output is compatible with cpulist_parse() | 68 | The format for the above output is compatible with cpulist_parse() |
| 56 | [see <linux/cpumask.h>]. Some examples follow. | 69 | [see <linux/cpumask.h>]. Some examples follow. |
| 57 | 70 | ||
| 58 | In this example, there are 64 cpus in the system but cpus 32-63 exceed | 71 | In this example, there are 64 CPUs in the system but cpus 32-63 exceed |
| 59 | the kernel max which is limited to 0..31 by the NR_CPUS config option | 72 | the kernel max which is limited to 0..31 by the NR_CPUS config option |
| 60 | being 32. Note also that cpus 2 and 4-31 are not online but could be | 73 | being 32. Note also that CPUs 2 and 4-31 are not online but could be |
| 61 | brought online as they are both present and possible. | 74 | brought online as they are both present and possible. |
| 62 | 75 | ||
| 63 | kernel_max: 31 | 76 | kernel_max: 31 |
| @@ -67,8 +80,8 @@ brought online as they are both present and possible. | |||
| 67 | present: 0-31 | 80 | present: 0-31 |
| 68 | 81 | ||
| 69 | In this example, the NR_CPUS config option is 128, but the kernel was | 82 | In this example, the NR_CPUS config option is 128, but the kernel was |
| 70 | started with possible_cpus=144. There are 4 cpus in the system and cpu2 | 83 | started with possible_cpus=144. There are 4 CPUs in the system and cpu2 |
| 71 | was manually taken offline (and is the only cpu that can be brought | 84 | was manually taken offline (and is the only CPU that can be brought |
| 72 | online.) | 85 | online.) |
| 73 | 86 | ||
| 74 | kernel_max: 127 | 87 | kernel_max: 127 |
| @@ -78,4 +91,4 @@ online.) | |||
| 78 | present: 0-3 | 91 | present: 0-3 |
| 79 | 92 | ||
| 80 | See cpu-hotplug.txt for the possible_cpus=NUM kernel start parameter | 93 | See cpu-hotplug.txt for the possible_cpus=NUM kernel start parameter |
| 81 | as well as more information on the various cpumask's. | 94 | as well as more information on the various cpumasks. |
diff --git a/Documentation/filesystems/ext4.txt b/Documentation/filesystems/ext4.txt index bf4f4b7e11b3..6d94e0696f8c 100644 --- a/Documentation/filesystems/ext4.txt +++ b/Documentation/filesystems/ext4.txt | |||
| @@ -134,9 +134,15 @@ ro Mount filesystem read only. Note that ext4 will | |||
| 134 | mount options "ro,noload" can be used to prevent | 134 | mount options "ro,noload" can be used to prevent |
| 135 | writes to the filesystem. | 135 | writes to the filesystem. |
| 136 | 136 | ||
| 137 | journal_checksum Enable checksumming of the journal transactions. | ||
| 138 | This will allow the recovery code in e2fsck and the | ||
| 139 | kernel to detect corruption in the kernel. It is a | ||
| 140 | compatible change and will be ignored by older kernels. | ||
| 141 | |||
| 137 | journal_async_commit Commit block can be written to disk without waiting | 142 | journal_async_commit Commit block can be written to disk without waiting |
| 138 | for descriptor blocks. If enabled older kernels cannot | 143 | for descriptor blocks. If enabled older kernels cannot |
| 139 | mount the device. | 144 | mount the device. This will enable 'journal_checksum' |
| 145 | internally. | ||
| 140 | 146 | ||
| 141 | journal=update Update the ext4 file system's journal to the current | 147 | journal=update Update the ext4 file system's journal to the current |
| 142 | format. | 148 | format. |
diff --git a/Documentation/sound/alsa/ALSA-Configuration.txt b/Documentation/sound/alsa/ALSA-Configuration.txt index 1c8eb4518ce0..fd9a2f67edf2 100644 --- a/Documentation/sound/alsa/ALSA-Configuration.txt +++ b/Documentation/sound/alsa/ALSA-Configuration.txt | |||
| @@ -522,7 +522,7 @@ Prior to version 0.9.0rc4 options had a 'snd_' prefix. This was removed. | |||
| 522 | pcm_devs - Number of PCM devices assigned to each card | 522 | pcm_devs - Number of PCM devices assigned to each card |
| 523 | (default = 1, up to 4) | 523 | (default = 1, up to 4) |
| 524 | pcm_substreams - Number of PCM substreams assigned to each PCM | 524 | pcm_substreams - Number of PCM substreams assigned to each PCM |
| 525 | (default = 8, up to 16) | 525 | (default = 8, up to 128) |
| 526 | hrtimer - Use hrtimer (=1, default) or system timer (=0) | 526 | hrtimer - Use hrtimer (=1, default) or system timer (=0) |
| 527 | fake_buffer - Fake buffer allocations (default = 1) | 527 | fake_buffer - Fake buffer allocations (default = 1) |
| 528 | 528 | ||
diff --git a/Documentation/trace/ftrace.txt b/Documentation/trace/ftrace.txt index 957b22fde2df..8179692fbb90 100644 --- a/Documentation/trace/ftrace.txt +++ b/Documentation/trace/ftrace.txt | |||
| @@ -1231,6 +1231,7 @@ something like this simple program: | |||
| 1231 | #include <sys/stat.h> | 1231 | #include <sys/stat.h> |
| 1232 | #include <fcntl.h> | 1232 | #include <fcntl.h> |
| 1233 | #include <unistd.h> | 1233 | #include <unistd.h> |
| 1234 | #include <string.h> | ||
| 1234 | 1235 | ||
| 1235 | #define _STR(x) #x | 1236 | #define _STR(x) #x |
| 1236 | #define STR(x) _STR(x) | 1237 | #define STR(x) _STR(x) |
| @@ -1265,6 +1266,7 @@ const char *find_debugfs(void) | |||
| 1265 | return NULL; | 1266 | return NULL; |
| 1266 | } | 1267 | } |
| 1267 | 1268 | ||
| 1269 | strcat(debugfs, "/tracing/"); | ||
| 1268 | debugfs_found = 1; | 1270 | debugfs_found = 1; |
| 1269 | 1271 | ||
| 1270 | return debugfs; | 1272 | return debugfs; |
| @@ -1,7 +1,7 @@ | |||
| 1 | VERSION = 2 | 1 | VERSION = 2 |
| 2 | PATCHLEVEL = 6 | 2 | PATCHLEVEL = 6 |
| 3 | SUBLEVEL = 32 | 3 | SUBLEVEL = 32 |
| 4 | EXTRAVERSION = -rc5 | 4 | EXTRAVERSION = -rc6 |
| 5 | NAME = Man-Eating Seals of Antiquity | 5 | NAME = Man-Eating Seals of Antiquity |
| 6 | 6 | ||
| 7 | # *DOCUMENTATION* | 7 | # *DOCUMENTATION* |
diff --git a/arch/arm/include/asm/cacheflush.h b/arch/arm/include/asm/cacheflush.h index fd03fb63a332..3d0cdd21b882 100644 --- a/arch/arm/include/asm/cacheflush.h +++ b/arch/arm/include/asm/cacheflush.h | |||
| @@ -414,9 +414,14 @@ extern void __flush_dcache_page(struct address_space *mapping, struct page *page | |||
| 414 | 414 | ||
| 415 | static inline void __flush_icache_all(void) | 415 | static inline void __flush_icache_all(void) |
| 416 | { | 416 | { |
| 417 | #ifdef CONFIG_ARM_ERRATA_411920 | ||
| 418 | extern void v6_icache_inval_all(void); | ||
| 419 | v6_icache_inval_all(); | ||
| 420 | #else | ||
| 417 | asm("mcr p15, 0, %0, c7, c5, 0 @ invalidate I-cache\n" | 421 | asm("mcr p15, 0, %0, c7, c5, 0 @ invalidate I-cache\n" |
| 418 | : | 422 | : |
| 419 | : "r" (0)); | 423 | : "r" (0)); |
| 424 | #endif | ||
| 420 | } | 425 | } |
| 421 | 426 | ||
| 422 | #define ARCH_HAS_FLUSH_ANON_PAGE | 427 | #define ARCH_HAS_FLUSH_ANON_PAGE |
diff --git a/arch/arm/kernel/signal.c b/arch/arm/kernel/signal.c index 1423a3419789..2a573d4fea24 100644 --- a/arch/arm/kernel/signal.c +++ b/arch/arm/kernel/signal.c | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * linux/arch/arm/kernel/signal.c | 2 | * linux/arch/arm/kernel/signal.c |
| 3 | * | 3 | * |
| 4 | * Copyright (C) 1995-2002 Russell King | 4 | * Copyright (C) 1995-2009 Russell King |
| 5 | * | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify | 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License version 2 as | 7 | * it under the terms of the GNU General Public License version 2 as |
| @@ -29,6 +29,7 @@ | |||
| 29 | */ | 29 | */ |
| 30 | #define SWI_SYS_SIGRETURN (0xef000000|(__NR_sigreturn)|(__NR_OABI_SYSCALL_BASE)) | 30 | #define SWI_SYS_SIGRETURN (0xef000000|(__NR_sigreturn)|(__NR_OABI_SYSCALL_BASE)) |
| 31 | #define SWI_SYS_RT_SIGRETURN (0xef000000|(__NR_rt_sigreturn)|(__NR_OABI_SYSCALL_BASE)) | 31 | #define SWI_SYS_RT_SIGRETURN (0xef000000|(__NR_rt_sigreturn)|(__NR_OABI_SYSCALL_BASE)) |
| 32 | #define SWI_SYS_RESTART (0xef000000|__NR_restart_syscall|__NR_OABI_SYSCALL_BASE) | ||
| 32 | 33 | ||
| 33 | /* | 34 | /* |
| 34 | * With EABI, the syscall number has to be loaded into r7. | 35 | * With EABI, the syscall number has to be loaded into r7. |
| @@ -49,6 +50,18 @@ const unsigned long sigreturn_codes[7] = { | |||
| 49 | }; | 50 | }; |
| 50 | 51 | ||
| 51 | /* | 52 | /* |
| 53 | * Either we support OABI only, or we have EABI with the OABI | ||
| 54 | * compat layer enabled. In the later case we don't know if | ||
| 55 | * user space is EABI or not, and if not we must not clobber r7. | ||
| 56 | * Always using the OABI syscall solves that issue and works for | ||
| 57 | * all those cases. | ||
| 58 | */ | ||
| 59 | const unsigned long syscall_restart_code[2] = { | ||
| 60 | SWI_SYS_RESTART, /* swi __NR_restart_syscall */ | ||
| 61 | 0xe49df004, /* ldr pc, [sp], #4 */ | ||
| 62 | }; | ||
| 63 | |||
| 64 | /* | ||
| 52 | * atomically swap in the new signal mask, and wait for a signal. | 65 | * atomically swap in the new signal mask, and wait for a signal. |
| 53 | */ | 66 | */ |
| 54 | asmlinkage int sys_sigsuspend(int restart, unsigned long oldmask, old_sigset_t mask) | 67 | asmlinkage int sys_sigsuspend(int restart, unsigned long oldmask, old_sigset_t mask) |
| @@ -645,32 +658,12 @@ static void do_signal(struct pt_regs *regs, int syscall) | |||
| 645 | regs->ARM_pc -= 4; | 658 | regs->ARM_pc -= 4; |
| 646 | #else | 659 | #else |
| 647 | u32 __user *usp; | 660 | u32 __user *usp; |
| 648 | u32 swival = __NR_restart_syscall; | ||
| 649 | 661 | ||
| 650 | regs->ARM_sp -= 12; | 662 | regs->ARM_sp -= 4; |
| 651 | usp = (u32 __user *)regs->ARM_sp; | 663 | usp = (u32 __user *)regs->ARM_sp; |
| 652 | 664 | ||
| 653 | /* | 665 | put_user(regs->ARM_pc, usp); |
| 654 | * Either we supports OABI only, or we have | 666 | regs->ARM_pc = KERN_RESTART_CODE; |
| 655 | * EABI with the OABI compat layer enabled. | ||
| 656 | * In the later case we don't know if user | ||
| 657 | * space is EABI or not, and if not we must | ||
| 658 | * not clobber r7. Always using the OABI | ||
| 659 | * syscall solves that issue and works for | ||
| 660 | * all those cases. | ||
| 661 | */ | ||
| 662 | swival = swival - __NR_SYSCALL_BASE + __NR_OABI_SYSCALL_BASE; | ||
| 663 | |||
| 664 | put_user(regs->ARM_pc, &usp[0]); | ||
| 665 | /* swi __NR_restart_syscall */ | ||
| 666 | put_user(0xef000000 | swival, &usp[1]); | ||
| 667 | /* ldr pc, [sp], #12 */ | ||
| 668 | put_user(0xe49df00c, &usp[2]); | ||
| 669 | |||
| 670 | flush_icache_range((unsigned long)usp, | ||
| 671 | (unsigned long)(usp + 3)); | ||
| 672 | |||
| 673 | regs->ARM_pc = regs->ARM_sp + 4; | ||
| 674 | #endif | 667 | #endif |
| 675 | } | 668 | } |
| 676 | } | 669 | } |
diff --git a/arch/arm/kernel/signal.h b/arch/arm/kernel/signal.h index 27beece15502..6fcfe8398aa4 100644 --- a/arch/arm/kernel/signal.h +++ b/arch/arm/kernel/signal.h | |||
| @@ -1,12 +1,14 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * linux/arch/arm/kernel/signal.h | 2 | * linux/arch/arm/kernel/signal.h |
| 3 | * | 3 | * |
| 4 | * Copyright (C) 2005 Russell King. | 4 | * Copyright (C) 2005-2009 Russell King. |
| 5 | * | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify | 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License version 2 as | 7 | * it under the terms of the GNU General Public License version 2 as |
| 8 | * published by the Free Software Foundation. | 8 | * published by the Free Software Foundation. |
| 9 | */ | 9 | */ |
| 10 | #define KERN_SIGRETURN_CODE (CONFIG_VECTORS_BASE + 0x00000500) | 10 | #define KERN_SIGRETURN_CODE (CONFIG_VECTORS_BASE + 0x00000500) |
| 11 | #define KERN_RESTART_CODE (KERN_SIGRETURN_CODE + sizeof(sigreturn_codes)) | ||
| 11 | 12 | ||
| 12 | extern const unsigned long sigreturn_codes[7]; | 13 | extern const unsigned long sigreturn_codes[7]; |
| 14 | extern const unsigned long syscall_restart_code[2]; | ||
diff --git a/arch/arm/kernel/traps.c b/arch/arm/kernel/traps.c index f838f36eb702..95718a6b50a6 100644 --- a/arch/arm/kernel/traps.c +++ b/arch/arm/kernel/traps.c | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * linux/arch/arm/kernel/traps.c | 2 | * linux/arch/arm/kernel/traps.c |
| 3 | * | 3 | * |
| 4 | * Copyright (C) 1995-2002 Russell King | 4 | * Copyright (C) 1995-2009 Russell King |
| 5 | * Fragments that appear the same as linux/arch/i386/kernel/traps.c (C) Linus Torvalds | 5 | * Fragments that appear the same as linux/arch/i386/kernel/traps.c (C) Linus Torvalds |
| 6 | * | 6 | * |
| 7 | * This program is free software; you can redistribute it and/or modify | 7 | * This program is free software; you can redistribute it and/or modify |
| @@ -751,6 +751,8 @@ void __init early_trap_init(void) | |||
| 751 | */ | 751 | */ |
| 752 | memcpy((void *)KERN_SIGRETURN_CODE, sigreturn_codes, | 752 | memcpy((void *)KERN_SIGRETURN_CODE, sigreturn_codes, |
| 753 | sizeof(sigreturn_codes)); | 753 | sizeof(sigreturn_codes)); |
| 754 | memcpy((void *)KERN_RESTART_CODE, syscall_restart_code, | ||
| 755 | sizeof(syscall_restart_code)); | ||
| 754 | 756 | ||
| 755 | flush_icache_range(vectors, vectors + PAGE_SIZE); | 757 | flush_icache_range(vectors, vectors + PAGE_SIZE); |
| 756 | modify_domain(DOMAIN_USER, DOMAIN_CLIENT); | 758 | modify_domain(DOMAIN_USER, DOMAIN_CLIENT); |
diff --git a/arch/arm/kernel/unwind.c b/arch/arm/kernel/unwind.c index 39baf1128bfa..786ac2b6914a 100644 --- a/arch/arm/kernel/unwind.c +++ b/arch/arm/kernel/unwind.c | |||
| @@ -26,6 +26,15 @@ | |||
| 26 | * http://infocenter.arm.com/help/topic/com.arm.doc.subset.swdev.abi/index.html | 26 | * http://infocenter.arm.com/help/topic/com.arm.doc.subset.swdev.abi/index.html |
| 27 | */ | 27 | */ |
| 28 | 28 | ||
| 29 | #if !defined (__ARM_EABI__) | ||
| 30 | #warning Your compiler does not have EABI support. | ||
| 31 | #warning ARM unwind is known to compile only with EABI compilers. | ||
| 32 | #warning Change compiler or disable ARM_UNWIND option. | ||
| 33 | #elif (__GNUC__ == 4 && __GNUC_MINOR__ <= 2) | ||
| 34 | #warning Your compiler is too buggy; it is known to not compile ARM unwind support. | ||
| 35 | #warning Change compiler or disable ARM_UNWIND option. | ||
| 36 | #endif | ||
| 37 | |||
| 29 | #include <linux/kernel.h> | 38 | #include <linux/kernel.h> |
| 30 | #include <linux/init.h> | 39 | #include <linux/init.h> |
| 31 | #include <linux/module.h> | 40 | #include <linux/module.h> |
diff --git a/arch/arm/mach-at91/include/mach/cpu.h b/arch/arm/mach-at91/include/mach/cpu.h index 34a9502c48bc..c22df30ed5e5 100644 --- a/arch/arm/mach-at91/include/mach/cpu.h +++ b/arch/arm/mach-at91/include/mach/cpu.h | |||
| @@ -25,6 +25,8 @@ | |||
| 25 | #define ARCH_ID_AT91SAM9G20 0x019905a0 | 25 | #define ARCH_ID_AT91SAM9G20 0x019905a0 |
| 26 | #define ARCH_ID_AT91SAM9RL64 0x019b03a0 | 26 | #define ARCH_ID_AT91SAM9RL64 0x019b03a0 |
| 27 | #define ARCH_ID_AT91SAM9G45 0x819b05a0 | 27 | #define ARCH_ID_AT91SAM9G45 0x819b05a0 |
| 28 | #define ARCH_ID_AT91SAM9G45MRL 0x819b05a2 /* aka 9G45-ES2 & non ES lots */ | ||
| 29 | #define ARCH_ID_AT91SAM9G45ES 0x819b05a1 /* 9G45-ES (Engineering Sample) */ | ||
| 28 | #define ARCH_ID_AT91CAP9 0x039A03A0 | 30 | #define ARCH_ID_AT91CAP9 0x039A03A0 |
| 29 | 31 | ||
| 30 | #define ARCH_ID_AT91SAM9XE128 0x329973a0 | 32 | #define ARCH_ID_AT91SAM9XE128 0x329973a0 |
| @@ -41,6 +43,11 @@ static inline unsigned long at91_cpu_identify(void) | |||
| 41 | return (at91_sys_read(AT91_DBGU_CIDR) & ~AT91_CIDR_VERSION); | 43 | return (at91_sys_read(AT91_DBGU_CIDR) & ~AT91_CIDR_VERSION); |
| 42 | } | 44 | } |
| 43 | 45 | ||
| 46 | static inline unsigned long at91_cpu_fully_identify(void) | ||
| 47 | { | ||
| 48 | return at91_sys_read(AT91_DBGU_CIDR); | ||
| 49 | } | ||
| 50 | |||
| 44 | #define ARCH_EXID_AT91SAM9M11 0x00000001 | 51 | #define ARCH_EXID_AT91SAM9M11 0x00000001 |
| 45 | #define ARCH_EXID_AT91SAM9M10 0x00000002 | 52 | #define ARCH_EXID_AT91SAM9M10 0x00000002 |
| 46 | #define ARCH_EXID_AT91SAM9G45 0x00000004 | 53 | #define ARCH_EXID_AT91SAM9G45 0x00000004 |
| @@ -118,8 +125,10 @@ static inline unsigned long at91cap9_rev_identify(void) | |||
| 118 | 125 | ||
| 119 | #ifdef CONFIG_ARCH_AT91SAM9G45 | 126 | #ifdef CONFIG_ARCH_AT91SAM9G45 |
| 120 | #define cpu_is_at91sam9g45() (at91_cpu_identify() == ARCH_ID_AT91SAM9G45) | 127 | #define cpu_is_at91sam9g45() (at91_cpu_identify() == ARCH_ID_AT91SAM9G45) |
| 128 | #define cpu_is_at91sam9g45es() (at91_cpu_fully_identify() == ARCH_ID_AT91SAM9G45ES) | ||
| 121 | #else | 129 | #else |
| 122 | #define cpu_is_at91sam9g45() (0) | 130 | #define cpu_is_at91sam9g45() (0) |
| 131 | #define cpu_is_at91sam9g45es() (0) | ||
| 123 | #endif | 132 | #endif |
| 124 | 133 | ||
| 125 | #ifdef CONFIG_ARCH_AT91CAP9 | 134 | #ifdef CONFIG_ARCH_AT91CAP9 |
diff --git a/arch/arm/mach-integrator/include/mach/memory.h b/arch/arm/mach-integrator/include/mach/memory.h index 2b2e7a110724..4891828454f5 100644 --- a/arch/arm/mach-integrator/include/mach/memory.h +++ b/arch/arm/mach-integrator/include/mach/memory.h | |||
| @@ -28,5 +28,6 @@ | |||
| 28 | #define BUS_OFFSET UL(0x80000000) | 28 | #define BUS_OFFSET UL(0x80000000) |
| 29 | #define __virt_to_bus(x) ((x) - PAGE_OFFSET + BUS_OFFSET) | 29 | #define __virt_to_bus(x) ((x) - PAGE_OFFSET + BUS_OFFSET) |
| 30 | #define __bus_to_virt(x) ((x) - BUS_OFFSET + PAGE_OFFSET) | 30 | #define __bus_to_virt(x) ((x) - BUS_OFFSET + PAGE_OFFSET) |
| 31 | #define __pfn_to_bus(x) (((x) << PAGE_SHIFT) + BUS_OFFSET) | ||
| 31 | 32 | ||
| 32 | #endif | 33 | #endif |
diff --git a/arch/arm/mach-realview/core.h b/arch/arm/mach-realview/core.h index 46cd6acb4d40..699671fa6e0b 100644 --- a/arch/arm/mach-realview/core.h +++ b/arch/arm/mach-realview/core.h | |||
| @@ -61,5 +61,5 @@ extern void realview_timer_init(unsigned int timer_irq); | |||
| 61 | extern int realview_flash_register(struct resource *res, u32 num); | 61 | extern int realview_flash_register(struct resource *res, u32 num); |
| 62 | extern int realview_eth_register(const char *name, struct resource *res); | 62 | extern int realview_eth_register(const char *name, struct resource *res); |
| 63 | extern int realview_usb_register(struct resource *res); | 63 | extern int realview_usb_register(struct resource *res); |
| 64 | 64 | extern void (*realview_reset)(char); | |
| 65 | #endif | 65 | #endif |
diff --git a/arch/arm/mach-realview/include/mach/board-pb1176.h b/arch/arm/mach-realview/include/mach/board-pb1176.h index 98f8e7eeacc2..34b80b7d40b8 100644 --- a/arch/arm/mach-realview/include/mach/board-pb1176.h +++ b/arch/arm/mach-realview/include/mach/board-pb1176.h | |||
| @@ -73,4 +73,9 @@ | |||
| 73 | #define REALVIEW_PB1176_GIC_DIST_BASE 0x10041000 /* GIC distributor, on FPGA */ | 73 | #define REALVIEW_PB1176_GIC_DIST_BASE 0x10041000 /* GIC distributor, on FPGA */ |
| 74 | #define REALVIEW_PB1176_L220_BASE 0x10110000 /* L220 registers */ | 74 | #define REALVIEW_PB1176_L220_BASE 0x10110000 /* L220 registers */ |
| 75 | 75 | ||
| 76 | /* | ||
| 77 | * Control register SYS_RESETCTL is set to 1 to force a soft reset | ||
| 78 | */ | ||
| 79 | #define REALVIEW_PB1176_SYS_LOCKVAL_RSTCTL 0x0100 | ||
| 80 | |||
| 76 | #endif /* __ASM_ARCH_BOARD_PB1176_H */ | 81 | #endif /* __ASM_ARCH_BOARD_PB1176_H */ |
diff --git a/arch/arm/mach-realview/include/mach/board-pb11mp.h b/arch/arm/mach-realview/include/mach/board-pb11mp.h index f0d68e0fea01..7abf918b77e9 100644 --- a/arch/arm/mach-realview/include/mach/board-pb11mp.h +++ b/arch/arm/mach-realview/include/mach/board-pb11mp.h | |||
| @@ -81,4 +81,16 @@ | |||
| 81 | #define REALVIEW_TC11MP_GIC_DIST_BASE 0x1F001000 /* Test chip interrupt controller distributor */ | 81 | #define REALVIEW_TC11MP_GIC_DIST_BASE 0x1F001000 /* Test chip interrupt controller distributor */ |
| 82 | #define REALVIEW_TC11MP_L220_BASE 0x1F002000 /* L220 registers */ | 82 | #define REALVIEW_TC11MP_L220_BASE 0x1F002000 /* L220 registers */ |
| 83 | 83 | ||
| 84 | /* | ||
| 85 | * Values for REALVIEW_SYS_RESET_CTRL | ||
| 86 | */ | ||
| 87 | #define REALVIEW_PB11MP_SYS_CTRL_RESET_CONFIGCLR 0x01 | ||
| 88 | #define REALVIEW_PB11MP_SYS_CTRL_RESET_CONFIGINIT 0x02 | ||
| 89 | #define REALVIEW_PB11MP_SYS_CTRL_RESET_DLLRESET 0x03 | ||
| 90 | #define REALVIEW_PB11MP_SYS_CTRL_RESET_PLLRESET 0x04 | ||
| 91 | #define REALVIEW_PB11MP_SYS_CTRL_RESET_POR 0x05 | ||
| 92 | #define REALVIEW_PB11MP_SYS_CTRL_RESET_DoC 0x06 | ||
| 93 | |||
| 94 | #define REALVIEW_PB11MP_SYS_CTRL_LED (1 << 0) | ||
| 95 | |||
| 84 | #endif /* __ASM_ARCH_BOARD_PB11MP_H */ | 96 | #endif /* __ASM_ARCH_BOARD_PB11MP_H */ |
diff --git a/arch/arm/mach-realview/include/mach/platform.h b/arch/arm/mach-realview/include/mach/platform.h index c8f50835fed2..4f46bf71e752 100644 --- a/arch/arm/mach-realview/include/mach/platform.h +++ b/arch/arm/mach-realview/include/mach/platform.h | |||
| @@ -119,19 +119,6 @@ | |||
| 119 | #define REALVIEW_SYS_TEST_OSC3 (REALVIEW_SYS_BASE + REALVIEW_SYS_TEST_OSC3_OFFSET) | 119 | #define REALVIEW_SYS_TEST_OSC3 (REALVIEW_SYS_BASE + REALVIEW_SYS_TEST_OSC3_OFFSET) |
| 120 | #define REALVIEW_SYS_TEST_OSC4 (REALVIEW_SYS_BASE + REALVIEW_SYS_TEST_OSC4_OFFSET) | 120 | #define REALVIEW_SYS_TEST_OSC4 (REALVIEW_SYS_BASE + REALVIEW_SYS_TEST_OSC4_OFFSET) |
| 121 | 121 | ||
| 122 | /* | ||
| 123 | * Values for REALVIEW_SYS_RESET_CTRL | ||
| 124 | */ | ||
| 125 | #define REALVIEW_SYS_CTRL_RESET_CONFIGCLR 0x01 | ||
| 126 | #define REALVIEW_SYS_CTRL_RESET_CONFIGINIT 0x02 | ||
| 127 | #define REALVIEW_SYS_CTRL_RESET_DLLRESET 0x03 | ||
| 128 | #define REALVIEW_SYS_CTRL_RESET_PLLRESET 0x04 | ||
| 129 | #define REALVIEW_SYS_CTRL_RESET_POR 0x05 | ||
| 130 | #define REALVIEW_SYS_CTRL_RESET_DoC 0x06 | ||
| 131 | |||
| 132 | #define REALVIEW_SYS_CTRL_LED (1 << 0) | ||
| 133 | |||
| 134 | |||
| 135 | /* ------------------------------------------------------------------------ | 122 | /* ------------------------------------------------------------------------ |
| 136 | * RealView control registers | 123 | * RealView control registers |
| 137 | * ------------------------------------------------------------------------ | 124 | * ------------------------------------------------------------------------ |
| @@ -153,7 +140,7 @@ | |||
| 153 | * SYS_CLD, SYS_BOOTCS | 140 | * SYS_CLD, SYS_BOOTCS |
| 154 | */ | 141 | */ |
| 155 | #define REALVIEW_SYS_LOCK_LOCKED (1 << 16) | 142 | #define REALVIEW_SYS_LOCK_LOCKED (1 << 16) |
| 156 | #define REALVIEW_SYS_LOCKVAL_MASK 0xFFFF /* write 0xA05F to enable write access */ | 143 | #define REALVIEW_SYS_LOCKVAL_MASK 0xA05F /* Enable write access */ |
| 157 | 144 | ||
| 158 | /* | 145 | /* |
| 159 | * REALVIEW_SYS_FLASH | 146 | * REALVIEW_SYS_FLASH |
diff --git a/arch/arm/mach-realview/include/mach/system.h b/arch/arm/mach-realview/include/mach/system.h index 1a15a441e027..a30f2e3ec178 100644 --- a/arch/arm/mach-realview/include/mach/system.h +++ b/arch/arm/mach-realview/include/mach/system.h | |||
| @@ -25,6 +25,8 @@ | |||
| 25 | #include <mach/hardware.h> | 25 | #include <mach/hardware.h> |
| 26 | #include <mach/platform.h> | 26 | #include <mach/platform.h> |
| 27 | 27 | ||
| 28 | void (*realview_reset)(char mode); | ||
| 29 | |||
| 28 | static inline void arch_idle(void) | 30 | static inline void arch_idle(void) |
| 29 | { | 31 | { |
| 30 | /* | 32 | /* |
| @@ -36,16 +38,12 @@ static inline void arch_idle(void) | |||
| 36 | 38 | ||
| 37 | static inline void arch_reset(char mode, const char *cmd) | 39 | static inline void arch_reset(char mode, const char *cmd) |
| 38 | { | 40 | { |
| 39 | void __iomem *hdr_ctrl = __io_address(REALVIEW_SYS_BASE) + REALVIEW_SYS_RESETCTL_OFFSET; | ||
| 40 | unsigned int val; | ||
| 41 | |||
| 42 | /* | 41 | /* |
| 43 | * To reset, we hit the on-board reset register | 42 | * To reset, we hit the on-board reset register |
| 44 | * in the system FPGA | 43 | * in the system FPGA |
| 45 | */ | 44 | */ |
| 46 | val = __raw_readl(hdr_ctrl); | 45 | if (realview_reset) |
| 47 | val |= REALVIEW_SYS_CTRL_RESET_CONFIGCLR; | 46 | realview_reset(mode); |
| 48 | __raw_writel(val, hdr_ctrl); | ||
| 49 | } | 47 | } |
| 50 | 48 | ||
| 51 | #endif | 49 | #endif |
diff --git a/arch/arm/mach-realview/realview_pb1176.c b/arch/arm/mach-realview/realview_pb1176.c index 2817fe099319..a6ba147692c1 100644 --- a/arch/arm/mach-realview/realview_pb1176.c +++ b/arch/arm/mach-realview/realview_pb1176.c | |||
| @@ -290,6 +290,16 @@ static struct sys_timer realview_pb1176_timer = { | |||
| 290 | .init = realview_pb1176_timer_init, | 290 | .init = realview_pb1176_timer_init, |
| 291 | }; | 291 | }; |
| 292 | 292 | ||
| 293 | static void realview_pb1176_reset(char mode) | ||
| 294 | { | ||
| 295 | void __iomem *hdr_ctrl = __io_address(REALVIEW_SYS_BASE) + | ||
| 296 | REALVIEW_SYS_RESETCTL_OFFSET; | ||
| 297 | void __iomem *rst_hdr_ctrl = __io_address(REALVIEW_SYS_BASE) + | ||
| 298 | REALVIEW_SYS_LOCK_OFFSET; | ||
| 299 | __raw_writel(REALVIEW_SYS_LOCKVAL_MASK, rst_hdr_ctrl); | ||
| 300 | __raw_writel(REALVIEW_PB1176_SYS_LOCKVAL_RSTCTL, hdr_ctrl); | ||
| 301 | } | ||
| 302 | |||
| 293 | static void __init realview_pb1176_init(void) | 303 | static void __init realview_pb1176_init(void) |
| 294 | { | 304 | { |
| 295 | int i; | 305 | int i; |
| @@ -313,6 +323,7 @@ static void __init realview_pb1176_init(void) | |||
| 313 | #ifdef CONFIG_LEDS | 323 | #ifdef CONFIG_LEDS |
| 314 | leds_event = realview_leds_event; | 324 | leds_event = realview_leds_event; |
| 315 | #endif | 325 | #endif |
| 326 | realview_reset = realview_pb1176_reset; | ||
| 316 | } | 327 | } |
| 317 | 328 | ||
| 318 | MACHINE_START(REALVIEW_PB1176, "ARM-RealView PB1176") | 329 | MACHINE_START(REALVIEW_PB1176, "ARM-RealView PB1176") |
diff --git a/arch/arm/mach-realview/realview_pb11mp.c b/arch/arm/mach-realview/realview_pb11mp.c index 94680fcf726d..070d284ce96e 100644 --- a/arch/arm/mach-realview/realview_pb11mp.c +++ b/arch/arm/mach-realview/realview_pb11mp.c | |||
| @@ -299,6 +299,21 @@ static struct sys_timer realview_pb11mp_timer = { | |||
| 299 | .init = realview_pb11mp_timer_init, | 299 | .init = realview_pb11mp_timer_init, |
| 300 | }; | 300 | }; |
| 301 | 301 | ||
| 302 | static void realview_pb11mp_reset(char mode) | ||
| 303 | { | ||
| 304 | void __iomem *hdr_ctrl = __io_address(REALVIEW_SYS_BASE) + | ||
| 305 | REALVIEW_SYS_RESETCTL_OFFSET; | ||
| 306 | unsigned int val; | ||
| 307 | |||
| 308 | /* | ||
| 309 | * To reset, we hit the on-board reset register | ||
| 310 | * in the system FPGA | ||
| 311 | */ | ||
| 312 | val = __raw_readl(hdr_ctrl); | ||
| 313 | val |= REALVIEW_PB11MP_SYS_CTRL_RESET_CONFIGCLR; | ||
| 314 | __raw_writel(val, hdr_ctrl); | ||
| 315 | } | ||
| 316 | |||
| 302 | static void __init realview_pb11mp_init(void) | 317 | static void __init realview_pb11mp_init(void) |
| 303 | { | 318 | { |
| 304 | int i; | 319 | int i; |
| @@ -324,6 +339,7 @@ static void __init realview_pb11mp_init(void) | |||
| 324 | #ifdef CONFIG_LEDS | 339 | #ifdef CONFIG_LEDS |
| 325 | leds_event = realview_leds_event; | 340 | leds_event = realview_leds_event; |
| 326 | #endif | 341 | #endif |
| 342 | realview_reset = realview_pb11mp_reset; | ||
| 327 | } | 343 | } |
| 328 | 344 | ||
| 329 | MACHINE_START(REALVIEW_PB11MP, "ARM-RealView PB11MPCore") | 345 | MACHINE_START(REALVIEW_PB11MP, "ARM-RealView PB11MPCore") |
diff --git a/arch/arm/mach-s3c2410/gpio.c b/arch/arm/mach-s3c2410/gpio.c index 7974afca297c..9664e011dae2 100644 --- a/arch/arm/mach-s3c2410/gpio.c +++ b/arch/arm/mach-s3c2410/gpio.c | |||
| @@ -28,6 +28,7 @@ | |||
| 28 | #include <linux/io.h> | 28 | #include <linux/io.h> |
| 29 | 29 | ||
| 30 | #include <mach/hardware.h> | 30 | #include <mach/hardware.h> |
| 31 | #include <mach/gpio-fns.h> | ||
| 31 | #include <asm/irq.h> | 32 | #include <asm/irq.h> |
| 32 | 33 | ||
| 33 | #include <mach/regs-gpio.h> | 34 | #include <mach/regs-gpio.h> |
diff --git a/arch/arm/mach-s3c2410/include/mach/dma.h b/arch/arm/mach-s3c2410/include/mach/dma.h index c3a2629e0ded..92e2687009ea 100644 --- a/arch/arm/mach-s3c2410/include/mach/dma.h +++ b/arch/arm/mach-s3c2410/include/mach/dma.h | |||
| @@ -110,6 +110,8 @@ enum s3c2410_dma_loadst { | |||
| 110 | * waiting for reloads */ | 110 | * waiting for reloads */ |
| 111 | #define S3C2410_DMAF_AUTOSTART (1<<1) /* auto-start if buffer queued */ | 111 | #define S3C2410_DMAF_AUTOSTART (1<<1) /* auto-start if buffer queued */ |
| 112 | 112 | ||
| 113 | #define S3C2410_DMAF_CIRCULAR (1 << 2) /* no circular dma support */ | ||
| 114 | |||
| 113 | /* dma buffer */ | 115 | /* dma buffer */ |
| 114 | 116 | ||
| 115 | struct s3c2410_dma_buf; | 117 | struct s3c2410_dma_buf; |
| @@ -194,4 +196,9 @@ struct s3c2410_dma_chan { | |||
| 194 | 196 | ||
| 195 | typedef unsigned long dma_device_t; | 197 | typedef unsigned long dma_device_t; |
| 196 | 198 | ||
| 199 | static inline bool s3c_dma_has_circular(void) | ||
| 200 | { | ||
| 201 | return false; | ||
| 202 | } | ||
| 203 | |||
| 197 | #endif /* __ASM_ARCH_DMA_H */ | 204 | #endif /* __ASM_ARCH_DMA_H */ |
diff --git a/arch/arm/mach-s3c2440/Kconfig b/arch/arm/mach-s3c2440/Kconfig index d7bba919a77e..a8b69d77571b 100644 --- a/arch/arm/mach-s3c2440/Kconfig +++ b/arch/arm/mach-s3c2440/Kconfig | |||
| @@ -103,6 +103,7 @@ config MACH_MINI2440 | |||
| 103 | select LEDS_TRIGGER_BACKLIGHT | 103 | select LEDS_TRIGGER_BACKLIGHT |
| 104 | select SND_S3C24XX_SOC_S3C24XX_UDA134X | 104 | select SND_S3C24XX_SOC_S3C24XX_UDA134X |
| 105 | select S3C_DEV_NAND | 105 | select S3C_DEV_NAND |
| 106 | select S3C_DEV_USB_HOST | ||
| 106 | help | 107 | help |
| 107 | Say Y here to select support for the MINI2440. Is a 10cm x 10cm board | 108 | Say Y here to select support for the MINI2440. Is a 10cm x 10cm board |
| 108 | available via various sources. It can come with a 3.5" or 7" touch LCD. | 109 | available via various sources. It can come with a 3.5" or 7" touch LCD. |
diff --git a/arch/arm/mach-s3c2440/mach-mini2440.c b/arch/arm/mach-s3c2440/mach-mini2440.c index ec71a6965786..1c3382fefdd2 100644 --- a/arch/arm/mach-s3c2440/mach-mini2440.c +++ b/arch/arm/mach-s3c2440/mach-mini2440.c | |||
| @@ -144,7 +144,7 @@ static struct s3c2410_udc_mach_info mini2440_udc_cfg __initdata = { | |||
| 144 | .type = (S3C2410_LCDCON1_TFT16BPP |\ | 144 | .type = (S3C2410_LCDCON1_TFT16BPP |\ |
| 145 | S3C2410_LCDCON1_TFT) | 145 | S3C2410_LCDCON1_TFT) |
| 146 | 146 | ||
| 147 | struct s3c2410fb_display mini2440_lcd_cfg[] __initdata = { | 147 | static struct s3c2410fb_display mini2440_lcd_cfg[] __initdata = { |
| 148 | [0] = { /* mini2440 + 3.5" TFT + touchscreen */ | 148 | [0] = { /* mini2440 + 3.5" TFT + touchscreen */ |
| 149 | _LCD_DECLARE( | 149 | _LCD_DECLARE( |
| 150 | 7, /* The 3.5 is quite fast */ | 150 | 7, /* The 3.5 is quite fast */ |
| @@ -191,7 +191,7 @@ struct s3c2410fb_display mini2440_lcd_cfg[] __initdata = { | |||
| 191 | #define S3C2410_GPCCON_MASK(x) (3 << ((x) * 2)) | 191 | #define S3C2410_GPCCON_MASK(x) (3 << ((x) * 2)) |
| 192 | #define S3C2410_GPDCON_MASK(x) (3 << ((x) * 2)) | 192 | #define S3C2410_GPDCON_MASK(x) (3 << ((x) * 2)) |
| 193 | 193 | ||
| 194 | struct s3c2410fb_mach_info mini2440_fb_info __initdata = { | 194 | static struct s3c2410fb_mach_info mini2440_fb_info __initdata = { |
| 195 | .displays = &mini2440_lcd_cfg[0], /* not constant! see init */ | 195 | .displays = &mini2440_lcd_cfg[0], /* not constant! see init */ |
| 196 | .num_displays = 1, | 196 | .num_displays = 1, |
| 197 | .default_display = 0, | 197 | .default_display = 0, |
diff --git a/arch/arm/mach-s3c6400/include/mach/dma.h b/arch/arm/mach-s3c6400/include/mach/dma.h index 1067619f0ba0..004edab23954 100644 --- a/arch/arm/mach-s3c6400/include/mach/dma.h +++ b/arch/arm/mach-s3c6400/include/mach/dma.h | |||
| @@ -68,6 +68,11 @@ static __inline__ int s3c_dma_has_circular(void) | |||
| 68 | 68 | ||
| 69 | #define S3C2410_DMAF_CIRCULAR (1 << 0) | 69 | #define S3C2410_DMAF_CIRCULAR (1 << 0) |
| 70 | 70 | ||
| 71 | static inline bool s3c_dma_has_circular(void) | ||
| 72 | { | ||
| 73 | return false; | ||
| 74 | } | ||
| 75 | |||
| 71 | #include <plat/dma.h> | 76 | #include <plat/dma.h> |
| 72 | 77 | ||
| 73 | #endif /* __ASM_ARCH_IRQ_H */ | 78 | #endif /* __ASM_ARCH_IRQ_H */ |
diff --git a/arch/arm/mm/context.c b/arch/arm/mm/context.c index 6bda76a43199..a9e22e31eaa1 100644 --- a/arch/arm/mm/context.c +++ b/arch/arm/mm/context.c | |||
| @@ -50,10 +50,7 @@ void __new_context(struct mm_struct *mm) | |||
| 50 | isb(); | 50 | isb(); |
| 51 | flush_tlb_all(); | 51 | flush_tlb_all(); |
| 52 | if (icache_is_vivt_asid_tagged()) { | 52 | if (icache_is_vivt_asid_tagged()) { |
| 53 | asm("mcr p15, 0, %0, c7, c5, 0 @ invalidate I-cache\n" | 53 | __flush_icache_all(); |
| 54 | "mcr p15, 0, %0, c7, c5, 6 @ flush BTAC/BTB\n" | ||
| 55 | : | ||
| 56 | : "r" (0)); | ||
| 57 | dsb(); | 54 | dsb(); |
| 58 | } | 55 | } |
| 59 | } | 56 | } |
diff --git a/arch/arm/mm/dma-mapping.c b/arch/arm/mm/dma-mapping.c index b30925fcbcdc..b9590a7085ca 100644 --- a/arch/arm/mm/dma-mapping.c +++ b/arch/arm/mm/dma-mapping.c | |||
| @@ -205,7 +205,7 @@ __dma_alloc(struct device *dev, size_t size, dma_addr_t *handle, gfp_t gfp, | |||
| 205 | 205 | ||
| 206 | order = get_order(size); | 206 | order = get_order(size); |
| 207 | 207 | ||
| 208 | if (mask != 0xffffffff) | 208 | if (mask < 0xffffffffULL) |
| 209 | gfp |= GFP_DMA; | 209 | gfp |= GFP_DMA; |
| 210 | 210 | ||
| 211 | page = alloc_pages(gfp, order); | 211 | page = alloc_pages(gfp, order); |
| @@ -289,7 +289,7 @@ __dma_alloc(struct device *dev, size_t size, dma_addr_t *handle, gfp_t gfp, | |||
| 289 | if (!mask) | 289 | if (!mask) |
| 290 | goto error; | 290 | goto error; |
| 291 | 291 | ||
| 292 | if (mask != 0xffffffff) | 292 | if (mask < 0xffffffffULL) |
| 293 | gfp |= GFP_DMA; | 293 | gfp |= GFP_DMA; |
| 294 | virt = kmalloc(size, gfp); | 294 | virt = kmalloc(size, gfp); |
| 295 | if (!virt) | 295 | if (!virt) |
diff --git a/arch/arm/mm/flush.c b/arch/arm/mm/flush.c index b27942909b23..7f294f307c83 100644 --- a/arch/arm/mm/flush.c +++ b/arch/arm/mm/flush.c | |||
| @@ -18,10 +18,6 @@ | |||
| 18 | 18 | ||
| 19 | #include "mm.h" | 19 | #include "mm.h" |
| 20 | 20 | ||
| 21 | #ifdef CONFIG_ARM_ERRATA_411920 | ||
| 22 | extern void v6_icache_inval_all(void); | ||
| 23 | #endif | ||
| 24 | |||
| 25 | #ifdef CONFIG_CPU_CACHE_VIPT | 21 | #ifdef CONFIG_CPU_CACHE_VIPT |
| 26 | 22 | ||
| 27 | #define ALIAS_FLUSH_START 0xffff4000 | 23 | #define ALIAS_FLUSH_START 0xffff4000 |
| @@ -35,16 +31,11 @@ static void flush_pfn_alias(unsigned long pfn, unsigned long vaddr) | |||
| 35 | flush_tlb_kernel_page(to); | 31 | flush_tlb_kernel_page(to); |
| 36 | 32 | ||
| 37 | asm( "mcrr p15, 0, %1, %0, c14\n" | 33 | asm( "mcrr p15, 0, %1, %0, c14\n" |
| 38 | " mcr p15, 0, %2, c7, c10, 4\n" | 34 | " mcr p15, 0, %2, c7, c10, 4" |
| 39 | #ifndef CONFIG_ARM_ERRATA_411920 | ||
| 40 | " mcr p15, 0, %2, c7, c5, 0\n" | ||
| 41 | #endif | ||
| 42 | : | 35 | : |
| 43 | : "r" (to), "r" (to + PAGE_SIZE - L1_CACHE_BYTES), "r" (zero) | 36 | : "r" (to), "r" (to + PAGE_SIZE - L1_CACHE_BYTES), "r" (zero) |
| 44 | : "cc"); | 37 | : "cc"); |
| 45 | #ifdef CONFIG_ARM_ERRATA_411920 | 38 | __flush_icache_all(); |
| 46 | v6_icache_inval_all(); | ||
| 47 | #endif | ||
| 48 | } | 39 | } |
| 49 | 40 | ||
| 50 | void flush_cache_mm(struct mm_struct *mm) | 41 | void flush_cache_mm(struct mm_struct *mm) |
| @@ -57,16 +48,11 @@ void flush_cache_mm(struct mm_struct *mm) | |||
| 57 | 48 | ||
| 58 | if (cache_is_vipt_aliasing()) { | 49 | if (cache_is_vipt_aliasing()) { |
| 59 | asm( "mcr p15, 0, %0, c7, c14, 0\n" | 50 | asm( "mcr p15, 0, %0, c7, c14, 0\n" |
| 60 | " mcr p15, 0, %0, c7, c10, 4\n" | 51 | " mcr p15, 0, %0, c7, c10, 4" |
| 61 | #ifndef CONFIG_ARM_ERRATA_411920 | ||
| 62 | " mcr p15, 0, %0, c7, c5, 0\n" | ||
| 63 | #endif | ||
| 64 | : | 52 | : |
| 65 | : "r" (0) | 53 | : "r" (0) |
| 66 | : "cc"); | 54 | : "cc"); |
| 67 | #ifdef CONFIG_ARM_ERRATA_411920 | 55 | __flush_icache_all(); |
| 68 | v6_icache_inval_all(); | ||
| 69 | #endif | ||
| 70 | } | 56 | } |
| 71 | } | 57 | } |
| 72 | 58 | ||
| @@ -81,16 +67,11 @@ void flush_cache_range(struct vm_area_struct *vma, unsigned long start, unsigned | |||
| 81 | 67 | ||
| 82 | if (cache_is_vipt_aliasing()) { | 68 | if (cache_is_vipt_aliasing()) { |
| 83 | asm( "mcr p15, 0, %0, c7, c14, 0\n" | 69 | asm( "mcr p15, 0, %0, c7, c14, 0\n" |
| 84 | " mcr p15, 0, %0, c7, c10, 4\n" | 70 | " mcr p15, 0, %0, c7, c10, 4" |
| 85 | #ifndef CONFIG_ARM_ERRATA_411920 | ||
| 86 | " mcr p15, 0, %0, c7, c5, 0\n" | ||
| 87 | #endif | ||
| 88 | : | 71 | : |
| 89 | : "r" (0) | 72 | : "r" (0) |
| 90 | : "cc"); | 73 | : "cc"); |
| 91 | #ifdef CONFIG_ARM_ERRATA_411920 | 74 | __flush_icache_all(); |
| 92 | v6_icache_inval_all(); | ||
| 93 | #endif | ||
| 94 | } | 75 | } |
| 95 | } | 76 | } |
| 96 | 77 | ||
diff --git a/arch/arm/mm/init.c b/arch/arm/mm/init.c index 40940d7ce4ff..52c40d155672 100644 --- a/arch/arm/mm/init.c +++ b/arch/arm/mm/init.c | |||
| @@ -273,7 +273,6 @@ static void __init bootmem_init_node(int node, struct meminfo *mi, | |||
| 273 | struct membank *bank = &mi->bank[i]; | 273 | struct membank *bank = &mi->bank[i]; |
| 274 | if (!bank->highmem) | 274 | if (!bank->highmem) |
| 275 | free_bootmem_node(pgdat, bank_phys_start(bank), bank_phys_size(bank)); | 275 | free_bootmem_node(pgdat, bank_phys_start(bank), bank_phys_size(bank)); |
| 276 | memory_present(node, bank_pfn_start(bank), bank_pfn_end(bank)); | ||
| 277 | } | 276 | } |
| 278 | 277 | ||
| 279 | /* | 278 | /* |
| @@ -370,6 +369,19 @@ int pfn_valid(unsigned long pfn) | |||
| 370 | return 0; | 369 | return 0; |
| 371 | } | 370 | } |
| 372 | EXPORT_SYMBOL(pfn_valid); | 371 | EXPORT_SYMBOL(pfn_valid); |
| 372 | |||
| 373 | static void arm_memory_present(struct meminfo *mi, int node) | ||
| 374 | { | ||
| 375 | } | ||
| 376 | #else | ||
| 377 | static void arm_memory_present(struct meminfo *mi, int node) | ||
| 378 | { | ||
| 379 | int i; | ||
| 380 | for_each_nodebank(i, mi, node) { | ||
| 381 | struct membank *bank = &mi->bank[i]; | ||
| 382 | memory_present(node, bank_pfn_start(bank), bank_pfn_end(bank)); | ||
| 383 | } | ||
| 384 | } | ||
| 373 | #endif | 385 | #endif |
| 374 | 386 | ||
| 375 | static int __init meminfo_cmp(const void *_a, const void *_b) | 387 | static int __init meminfo_cmp(const void *_a, const void *_b) |
| @@ -427,6 +439,12 @@ void __init bootmem_init(void) | |||
| 427 | */ | 439 | */ |
| 428 | if (node == initrd_node) | 440 | if (node == initrd_node) |
| 429 | bootmem_reserve_initrd(node); | 441 | bootmem_reserve_initrd(node); |
| 442 | |||
| 443 | /* | ||
| 444 | * Sparsemem tries to allocate bootmem in memory_present(), | ||
| 445 | * so must be done after the fixed reservations | ||
| 446 | */ | ||
| 447 | arm_memory_present(mi, node); | ||
| 430 | } | 448 | } |
| 431 | 449 | ||
| 432 | /* | 450 | /* |
diff --git a/arch/arm/mm/mmu.c b/arch/arm/mm/mmu.c index 02243eeccf50..ea67be0223ac 100644 --- a/arch/arm/mm/mmu.c +++ b/arch/arm/mm/mmu.c | |||
| @@ -117,6 +117,13 @@ static void __init early_cachepolicy(char **p) | |||
| 117 | } | 117 | } |
| 118 | if (i == ARRAY_SIZE(cache_policies)) | 118 | if (i == ARRAY_SIZE(cache_policies)) |
| 119 | printk(KERN_ERR "ERROR: unknown or unsupported cache policy\n"); | 119 | printk(KERN_ERR "ERROR: unknown or unsupported cache policy\n"); |
| 120 | /* | ||
| 121 | * This restriction is partly to do with the way we boot; it is | ||
| 122 | * unpredictable to have memory mapped using two different sets of | ||
| 123 | * memory attributes (shared, type, and cache attribs). We can not | ||
| 124 | * change these attributes once the initial assembly has setup the | ||
| 125 | * page tables. | ||
| 126 | */ | ||
| 120 | if (cpu_architecture() >= CPU_ARCH_ARMv6) { | 127 | if (cpu_architecture() >= CPU_ARCH_ARMv6) { |
| 121 | printk(KERN_WARNING "Only cachepolicy=writeback supported on ARMv6 and later\n"); | 128 | printk(KERN_WARNING "Only cachepolicy=writeback supported on ARMv6 and later\n"); |
| 122 | cachepolicy = CPOLICY_WRITEBACK; | 129 | cachepolicy = CPOLICY_WRITEBACK; |
diff --git a/arch/arm/mm/proc-v6.S b/arch/arm/mm/proc-v6.S index 194737d60a22..70f75d2e3ead 100644 --- a/arch/arm/mm/proc-v6.S +++ b/arch/arm/mm/proc-v6.S | |||
| @@ -32,8 +32,10 @@ | |||
| 32 | 32 | ||
| 33 | #ifndef CONFIG_SMP | 33 | #ifndef CONFIG_SMP |
| 34 | #define TTB_FLAGS TTB_RGN_WBWA | 34 | #define TTB_FLAGS TTB_RGN_WBWA |
| 35 | #define PMD_FLAGS PMD_SECT_WB | ||
| 35 | #else | 36 | #else |
| 36 | #define TTB_FLAGS TTB_RGN_WBWA|TTB_S | 37 | #define TTB_FLAGS TTB_RGN_WBWA|TTB_S |
| 38 | #define PMD_FLAGS PMD_SECT_WBWA|PMD_SECT_S | ||
| 37 | #endif | 39 | #endif |
| 38 | 40 | ||
| 39 | ENTRY(cpu_v6_proc_init) | 41 | ENTRY(cpu_v6_proc_init) |
| @@ -222,10 +224,9 @@ __v6_proc_info: | |||
| 222 | .long 0x0007b000 | 224 | .long 0x0007b000 |
| 223 | .long 0x0007f000 | 225 | .long 0x0007f000 |
| 224 | .long PMD_TYPE_SECT | \ | 226 | .long PMD_TYPE_SECT | \ |
| 225 | PMD_SECT_BUFFERABLE | \ | ||
| 226 | PMD_SECT_CACHEABLE | \ | ||
| 227 | PMD_SECT_AP_WRITE | \ | 227 | PMD_SECT_AP_WRITE | \ |
| 228 | PMD_SECT_AP_READ | 228 | PMD_SECT_AP_READ | \ |
| 229 | PMD_FLAGS | ||
| 229 | .long PMD_TYPE_SECT | \ | 230 | .long PMD_TYPE_SECT | \ |
| 230 | PMD_SECT_XN | \ | 231 | PMD_SECT_XN | \ |
| 231 | PMD_SECT_AP_WRITE | \ | 232 | PMD_SECT_AP_WRITE | \ |
diff --git a/arch/arm/mm/proc-v7.S b/arch/arm/mm/proc-v7.S index 23ebcf6eab9f..eeeed01ee44a 100644 --- a/arch/arm/mm/proc-v7.S +++ b/arch/arm/mm/proc-v7.S | |||
| @@ -33,9 +33,11 @@ | |||
| 33 | #ifndef CONFIG_SMP | 33 | #ifndef CONFIG_SMP |
| 34 | /* PTWs cacheable, inner WB not shareable, outer WB not shareable */ | 34 | /* PTWs cacheable, inner WB not shareable, outer WB not shareable */ |
| 35 | #define TTB_FLAGS TTB_IRGN_WB|TTB_RGN_OC_WB | 35 | #define TTB_FLAGS TTB_IRGN_WB|TTB_RGN_OC_WB |
| 36 | #define PMD_FLAGS PMD_SECT_WB | ||
| 36 | #else | 37 | #else |
| 37 | /* PTWs cacheable, inner WBWA shareable, outer WBWA not shareable */ | 38 | /* PTWs cacheable, inner WBWA shareable, outer WBWA not shareable */ |
| 38 | #define TTB_FLAGS TTB_IRGN_WBWA|TTB_S|TTB_NOS|TTB_RGN_OC_WBWA | 39 | #define TTB_FLAGS TTB_IRGN_WBWA|TTB_S|TTB_NOS|TTB_RGN_OC_WBWA |
| 40 | #define PMD_FLAGS PMD_SECT_WBWA|PMD_SECT_S | ||
| 39 | #endif | 41 | #endif |
| 40 | 42 | ||
| 41 | ENTRY(cpu_v7_proc_init) | 43 | ENTRY(cpu_v7_proc_init) |
| @@ -326,10 +328,9 @@ __v7_proc_info: | |||
| 326 | .long 0x000f0000 @ Required ID value | 328 | .long 0x000f0000 @ Required ID value |
| 327 | .long 0x000f0000 @ Mask for ID | 329 | .long 0x000f0000 @ Mask for ID |
| 328 | .long PMD_TYPE_SECT | \ | 330 | .long PMD_TYPE_SECT | \ |
| 329 | PMD_SECT_BUFFERABLE | \ | ||
| 330 | PMD_SECT_CACHEABLE | \ | ||
| 331 | PMD_SECT_AP_WRITE | \ | 331 | PMD_SECT_AP_WRITE | \ |
| 332 | PMD_SECT_AP_READ | 332 | PMD_SECT_AP_READ | \ |
| 333 | PMD_FLAGS | ||
| 333 | .long PMD_TYPE_SECT | \ | 334 | .long PMD_TYPE_SECT | \ |
| 334 | PMD_SECT_XN | \ | 335 | PMD_SECT_XN | \ |
| 335 | PMD_SECT_AP_WRITE | \ | 336 | PMD_SECT_AP_WRITE | \ |
diff --git a/arch/arm/plat-s3c24xx/adc.c b/arch/arm/plat-s3c24xx/adc.c index 4d36b784fb8b..df47322492d5 100644 --- a/arch/arm/plat-s3c24xx/adc.c +++ b/arch/arm/plat-s3c24xx/adc.c | |||
| @@ -189,7 +189,7 @@ int s3c_adc_read(struct s3c_adc_client *client, unsigned int ch) | |||
| 189 | err: | 189 | err: |
| 190 | return ret; | 190 | return ret; |
| 191 | } | 191 | } |
| 192 | EXPORT_SYMBOL_GPL(s3c_adc_convert); | 192 | EXPORT_SYMBOL_GPL(s3c_adc_read); |
| 193 | 193 | ||
| 194 | static void s3c_adc_default_select(struct s3c_adc_client *client, | 194 | static void s3c_adc_default_select(struct s3c_adc_client *client, |
| 195 | unsigned select) | 195 | unsigned select) |
diff --git a/arch/arm/plat-s3c24xx/cpu.c b/arch/arm/plat-s3c24xx/cpu.c index 5447e60f3936..4af9dd948793 100644 --- a/arch/arm/plat-s3c24xx/cpu.c +++ b/arch/arm/plat-s3c24xx/cpu.c | |||
| @@ -61,6 +61,7 @@ static const char name_s3c2410[] = "S3C2410"; | |||
| 61 | static const char name_s3c2412[] = "S3C2412"; | 61 | static const char name_s3c2412[] = "S3C2412"; |
| 62 | static const char name_s3c2440[] = "S3C2440"; | 62 | static const char name_s3c2440[] = "S3C2440"; |
| 63 | static const char name_s3c2442[] = "S3C2442"; | 63 | static const char name_s3c2442[] = "S3C2442"; |
| 64 | static const char name_s3c2442b[] = "S3C2442B"; | ||
| 64 | static const char name_s3c2443[] = "S3C2443"; | 65 | static const char name_s3c2443[] = "S3C2443"; |
| 65 | static const char name_s3c2410a[] = "S3C2410A"; | 66 | static const char name_s3c2410a[] = "S3C2410A"; |
| 66 | static const char name_s3c2440a[] = "S3C2440A"; | 67 | static const char name_s3c2440a[] = "S3C2440A"; |
| @@ -112,6 +113,15 @@ static struct cpu_table cpu_ids[] __initdata = { | |||
| 112 | .name = name_s3c2442 | 113 | .name = name_s3c2442 |
| 113 | }, | 114 | }, |
| 114 | { | 115 | { |
| 116 | .idcode = 0x32440aab, | ||
| 117 | .idmask = 0xffffffff, | ||
| 118 | .map_io = s3c244x_map_io, | ||
| 119 | .init_clocks = s3c244x_init_clocks, | ||
| 120 | .init_uarts = s3c244x_init_uarts, | ||
| 121 | .init = s3c2442_init, | ||
| 122 | .name = name_s3c2442b | ||
| 123 | }, | ||
| 124 | { | ||
| 115 | .idcode = 0x32412001, | 125 | .idcode = 0x32412001, |
| 116 | .idmask = 0xffffffff, | 126 | .idmask = 0xffffffff, |
| 117 | .map_io = s3c2412_map_io, | 127 | .map_io = s3c2412_map_io, |
diff --git a/arch/arm/plat-s3c24xx/dma.c b/arch/arm/plat-s3c24xx/dma.c index 196b19123653..f046f8c51084 100644 --- a/arch/arm/plat-s3c24xx/dma.c +++ b/arch/arm/plat-s3c24xx/dma.c | |||
| @@ -208,14 +208,14 @@ s3c2410_dma_loadbuffer(struct s3c2410_dma_chan *chan, | |||
| 208 | { | 208 | { |
| 209 | unsigned long reload; | 209 | unsigned long reload; |
| 210 | 210 | ||
| 211 | pr_debug("s3c2410_chan_loadbuffer: loading buff %p (0x%08lx,0x%06x)\n", | ||
| 212 | buf, (unsigned long)buf->data, buf->size); | ||
| 213 | |||
| 214 | if (buf == NULL) { | 211 | if (buf == NULL) { |
| 215 | dmawarn("buffer is NULL\n"); | 212 | dmawarn("buffer is NULL\n"); |
| 216 | return -EINVAL; | 213 | return -EINVAL; |
| 217 | } | 214 | } |
| 218 | 215 | ||
| 216 | pr_debug("s3c2410_chan_loadbuffer: loading buff %p (0x%08lx,0x%06x)\n", | ||
| 217 | buf, (unsigned long)buf->data, buf->size); | ||
| 218 | |||
| 219 | /* check the state of the channel before we do anything */ | 219 | /* check the state of the channel before we do anything */ |
| 220 | 220 | ||
| 221 | if (chan->load_state == S3C2410_DMALOAD_1LOADED) { | 221 | if (chan->load_state == S3C2410_DMALOAD_1LOADED) { |
diff --git a/arch/arm/plat-s3c24xx/gpio.c b/arch/arm/plat-s3c24xx/gpio.c index 95df059b5a1d..5467470badfd 100644 --- a/arch/arm/plat-s3c24xx/gpio.c +++ b/arch/arm/plat-s3c24xx/gpio.c | |||
| @@ -29,6 +29,7 @@ | |||
| 29 | #include <linux/io.h> | 29 | #include <linux/io.h> |
| 30 | 30 | ||
| 31 | #include <mach/hardware.h> | 31 | #include <mach/hardware.h> |
| 32 | #include <mach/gpio-fns.h> | ||
| 32 | #include <asm/irq.h> | 33 | #include <asm/irq.h> |
| 33 | 34 | ||
| 34 | #include <mach/regs-gpio.h> | 35 | #include <mach/regs-gpio.h> |
diff --git a/arch/arm/plat-s3c24xx/include/plat/cpu-freq-core.h b/arch/arm/plat-s3c24xx/include/plat/cpu-freq-core.h index efeb025affc7..c776120b99e6 100644 --- a/arch/arm/plat-s3c24xx/include/plat/cpu-freq-core.h +++ b/arch/arm/plat-s3c24xx/include/plat/cpu-freq-core.h | |||
| @@ -222,7 +222,9 @@ extern struct clk *s3c_cpufreq_clk_get(struct device *, const char *); | |||
| 222 | /* S3C2410 and compatible exported functions */ | 222 | /* S3C2410 and compatible exported functions */ |
| 223 | 223 | ||
| 224 | extern void s3c2410_cpufreq_setrefresh(struct s3c_cpufreq_config *cfg); | 224 | extern void s3c2410_cpufreq_setrefresh(struct s3c_cpufreq_config *cfg); |
| 225 | extern void s3c2410_set_fvco(struct s3c_cpufreq_config *cfg); | ||
| 225 | 226 | ||
| 227 | #ifdef CONFIG_S3C2410_IOTIMING | ||
| 226 | extern int s3c2410_iotiming_calc(struct s3c_cpufreq_config *cfg, | 228 | extern int s3c2410_iotiming_calc(struct s3c_cpufreq_config *cfg, |
| 227 | struct s3c_iotimings *iot); | 229 | struct s3c_iotimings *iot); |
| 228 | 230 | ||
| @@ -231,8 +233,11 @@ extern int s3c2410_iotiming_get(struct s3c_cpufreq_config *cfg, | |||
| 231 | 233 | ||
| 232 | extern void s3c2410_iotiming_set(struct s3c_cpufreq_config *cfg, | 234 | extern void s3c2410_iotiming_set(struct s3c_cpufreq_config *cfg, |
| 233 | struct s3c_iotimings *iot); | 235 | struct s3c_iotimings *iot); |
| 234 | 236 | #else | |
| 235 | extern void s3c2410_set_fvco(struct s3c_cpufreq_config *cfg); | 237 | #define s3c2410_iotiming_calc NULL |
| 238 | #define s3c2410_iotiming_get NULL | ||
| 239 | #define s3c2410_iotiming_set NULL | ||
| 240 | #endif /* CONFIG_S3C2410_IOTIMING */ | ||
| 236 | 241 | ||
| 237 | /* S3C2412 compatible routines */ | 242 | /* S3C2412 compatible routines */ |
| 238 | 243 | ||
diff --git a/arch/arm/plat-s3c24xx/include/plat/s3c2410.h b/arch/arm/plat-s3c24xx/include/plat/s3c2410.h index b6deeef8f663..82ab4aad1bbe 100644 --- a/arch/arm/plat-s3c24xx/include/plat/s3c2410.h +++ b/arch/arm/plat-s3c24xx/include/plat/s3c2410.h | |||
| @@ -27,6 +27,7 @@ extern void s3c2410_init_clocks(int xtal); | |||
| 27 | #define s3c2410_init_uarts NULL | 27 | #define s3c2410_init_uarts NULL |
| 28 | #define s3c2410_map_io NULL | 28 | #define s3c2410_map_io NULL |
| 29 | #define s3c2410_init NULL | 29 | #define s3c2410_init NULL |
| 30 | #define s3c2410a_init NULL | ||
| 30 | #endif | 31 | #endif |
| 31 | 32 | ||
| 32 | extern int s3c2410_baseclk_add(void); | 33 | extern int s3c2410_baseclk_add(void); |
diff --git a/arch/arm/plat-s3c64xx/include/plat/regs-clock.h b/arch/arm/plat-s3c64xx/include/plat/regs-clock.h index a8777a755dfa..ff46e7fa957a 100644 --- a/arch/arm/plat-s3c64xx/include/plat/regs-clock.h +++ b/arch/arm/plat-s3c64xx/include/plat/regs-clock.h | |||
| @@ -51,8 +51,8 @@ | |||
| 51 | #define S3C6400_CLKDIV0_HCLK_SHIFT (8) | 51 | #define S3C6400_CLKDIV0_HCLK_SHIFT (8) |
| 52 | #define S3C6400_CLKDIV0_MPLL_MASK (0x1 << 4) | 52 | #define S3C6400_CLKDIV0_MPLL_MASK (0x1 << 4) |
| 53 | #define S3C6400_CLKDIV0_MPLL_SHIFT (4) | 53 | #define S3C6400_CLKDIV0_MPLL_SHIFT (4) |
| 54 | #define S3C6400_CLKDIV0_ARM_MASK (0x3 << 0) | 54 | #define S3C6400_CLKDIV0_ARM_MASK (0x7 << 0) |
| 55 | #define S3C6410_CLKDIV0_ARM_MASK (0x7 << 0) | 55 | #define S3C6410_CLKDIV0_ARM_MASK (0xf << 0) |
| 56 | #define S3C6400_CLKDIV0_ARM_SHIFT (0) | 56 | #define S3C6400_CLKDIV0_ARM_SHIFT (0) |
| 57 | 57 | ||
| 58 | /* CLKDIV1 */ | 58 | /* CLKDIV1 */ |
diff --git a/arch/arm/plat-s3c64xx/s3c6400-clock.c b/arch/arm/plat-s3c64xx/s3c6400-clock.c index 9745852261e0..6ffa21eb1b91 100644 --- a/arch/arm/plat-s3c64xx/s3c6400-clock.c +++ b/arch/arm/plat-s3c64xx/s3c6400-clock.c | |||
| @@ -677,6 +677,9 @@ void __init_or_cpufreq s3c6400_setup_clocks(void) | |||
| 677 | 677 | ||
| 678 | printk(KERN_DEBUG "%s: xtal is %ld\n", __func__, xtal); | 678 | printk(KERN_DEBUG "%s: xtal is %ld\n", __func__, xtal); |
| 679 | 679 | ||
| 680 | /* For now assume the mux always selects the crystal */ | ||
| 681 | clk_ext_xtal_mux.parent = xtal_clk; | ||
| 682 | |||
| 680 | epll = s3c6400_get_epll(xtal); | 683 | epll = s3c6400_get_epll(xtal); |
| 681 | mpll = s3c6400_get_pll(xtal, __raw_readl(S3C_MPLL_CON)); | 684 | mpll = s3c6400_get_pll(xtal, __raw_readl(S3C_MPLL_CON)); |
| 682 | apll = s3c6400_get_pll(xtal, __raw_readl(S3C_APLL_CON)); | 685 | apll = s3c6400_get_pll(xtal, __raw_readl(S3C_APLL_CON)); |
diff --git a/arch/avr32/mach-at32ap/include/mach/cpu.h b/arch/avr32/mach-at32ap/include/mach/cpu.h index 44d0bfa1f409..9c96a130f3a8 100644 --- a/arch/avr32/mach-at32ap/include/mach/cpu.h +++ b/arch/avr32/mach-at32ap/include/mach/cpu.h | |||
| @@ -31,5 +31,8 @@ | |||
| 31 | #define cpu_is_at91sam9263() (0) | 31 | #define cpu_is_at91sam9263() (0) |
| 32 | #define cpu_is_at91sam9rl() (0) | 32 | #define cpu_is_at91sam9rl() (0) |
| 33 | #define cpu_is_at91cap9() (0) | 33 | #define cpu_is_at91cap9() (0) |
| 34 | #define cpu_is_at91sam9g10() (0) | ||
| 35 | #define cpu_is_at91sam9g45() (0) | ||
| 36 | #define cpu_is_at91sam9g45es() (0) | ||
| 34 | 37 | ||
| 35 | #endif /* __ASM_ARCH_CPU_H */ | 38 | #endif /* __ASM_ARCH_CPU_H */ |
diff --git a/arch/ia64/include/asm/spinlock.h b/arch/ia64/include/asm/spinlock.h index 30bb930e1111..239ecdc9516d 100644 --- a/arch/ia64/include/asm/spinlock.h +++ b/arch/ia64/include/asm/spinlock.h | |||
| @@ -25,61 +25,82 @@ | |||
| 25 | * by atomically noting the tail and incrementing it by one (thus adding | 25 | * by atomically noting the tail and incrementing it by one (thus adding |
| 26 | * ourself to the queue and noting our position), then waiting until the head | 26 | * ourself to the queue and noting our position), then waiting until the head |
| 27 | * becomes equal to the the initial value of the tail. | 27 | * becomes equal to the the initial value of the tail. |
| 28 | * The pad bits in the middle are used to prevent the next_ticket number | ||
| 29 | * overflowing into the now_serving number. | ||
| 28 | * | 30 | * |
| 29 | * 63 32 31 0 | 31 | * 31 17 16 15 14 0 |
| 30 | * +----------------------------------------------------+ | 32 | * +----------------------------------------------------+ |
| 31 | * | next_ticket_number | now_serving | | 33 | * | now_serving | padding | next_ticket | |
| 32 | * +----------------------------------------------------+ | 34 | * +----------------------------------------------------+ |
| 33 | */ | 35 | */ |
| 34 | 36 | ||
| 35 | #define TICKET_SHIFT 32 | 37 | #define TICKET_SHIFT 17 |
| 38 | #define TICKET_BITS 15 | ||
| 39 | #define TICKET_MASK ((1 << TICKET_BITS) - 1) | ||
| 36 | 40 | ||
| 37 | static __always_inline void __ticket_spin_lock(raw_spinlock_t *lock) | 41 | static __always_inline void __ticket_spin_lock(raw_spinlock_t *lock) |
| 38 | { | 42 | { |
| 39 | int *p = (int *)&lock->lock, turn, now_serving; | 43 | int *p = (int *)&lock->lock, ticket, serve; |
| 40 | 44 | ||
| 41 | now_serving = *p; | 45 | ticket = ia64_fetchadd(1, p, acq); |
| 42 | turn = ia64_fetchadd(1, p+1, acq); | ||
| 43 | 46 | ||
| 44 | if (turn == now_serving) | 47 | if (!(((ticket >> TICKET_SHIFT) ^ ticket) & TICKET_MASK)) |
| 45 | return; | 48 | return; |
| 46 | 49 | ||
| 47 | do { | 50 | ia64_invala(); |
| 51 | |||
| 52 | for (;;) { | ||
| 53 | asm volatile ("ld4.c.nc %0=[%1]" : "=r"(serve) : "r"(p) : "memory"); | ||
| 54 | |||
| 55 | if (!(((serve >> TICKET_SHIFT) ^ ticket) & TICKET_MASK)) | ||
| 56 | return; | ||
| 48 | cpu_relax(); | 57 | cpu_relax(); |
| 49 | } while (ACCESS_ONCE(*p) != turn); | 58 | } |
| 50 | } | 59 | } |
| 51 | 60 | ||
| 52 | static __always_inline int __ticket_spin_trylock(raw_spinlock_t *lock) | 61 | static __always_inline int __ticket_spin_trylock(raw_spinlock_t *lock) |
| 53 | { | 62 | { |
| 54 | long tmp = ACCESS_ONCE(lock->lock), try; | 63 | int tmp = ACCESS_ONCE(lock->lock); |
| 55 | |||
| 56 | if (!(((tmp >> TICKET_SHIFT) ^ tmp) & ((1L << TICKET_SHIFT) - 1))) { | ||
| 57 | try = tmp + (1L << TICKET_SHIFT); | ||
| 58 | 64 | ||
| 59 | return ia64_cmpxchg(acq, &lock->lock, tmp, try, sizeof (tmp)) == tmp; | 65 | if (!(((tmp >> TICKET_SHIFT) ^ tmp) & TICKET_MASK)) |
| 60 | } | 66 | return ia64_cmpxchg(acq, &lock->lock, tmp, tmp + 1, sizeof (tmp)) == tmp; |
| 61 | return 0; | 67 | return 0; |
| 62 | } | 68 | } |
| 63 | 69 | ||
| 64 | static __always_inline void __ticket_spin_unlock(raw_spinlock_t *lock) | 70 | static __always_inline void __ticket_spin_unlock(raw_spinlock_t *lock) |
| 65 | { | 71 | { |
| 66 | int *p = (int *)&lock->lock; | 72 | unsigned short *p = (unsigned short *)&lock->lock + 1, tmp; |
| 67 | 73 | ||
| 68 | (void)ia64_fetchadd(1, p, rel); | 74 | asm volatile ("ld2.bias %0=[%1]" : "=r"(tmp) : "r"(p)); |
| 75 | ACCESS_ONCE(*p) = (tmp + 2) & ~1; | ||
| 76 | } | ||
| 77 | |||
| 78 | static __always_inline void __ticket_spin_unlock_wait(raw_spinlock_t *lock) | ||
| 79 | { | ||
| 80 | int *p = (int *)&lock->lock, ticket; | ||
| 81 | |||
| 82 | ia64_invala(); | ||
| 83 | |||
| 84 | for (;;) { | ||
| 85 | asm volatile ("ld4.c.nc %0=[%1]" : "=r"(ticket) : "r"(p) : "memory"); | ||
| 86 | if (!(((ticket >> TICKET_SHIFT) ^ ticket) & TICKET_MASK)) | ||
| 87 | return; | ||
| 88 | cpu_relax(); | ||
| 89 | } | ||
| 69 | } | 90 | } |
| 70 | 91 | ||
| 71 | static inline int __ticket_spin_is_locked(raw_spinlock_t *lock) | 92 | static inline int __ticket_spin_is_locked(raw_spinlock_t *lock) |
| 72 | { | 93 | { |
| 73 | long tmp = ACCESS_ONCE(lock->lock); | 94 | long tmp = ACCESS_ONCE(lock->lock); |
| 74 | 95 | ||
| 75 | return !!(((tmp >> TICKET_SHIFT) ^ tmp) & ((1L << TICKET_SHIFT) - 1)); | 96 | return !!(((tmp >> TICKET_SHIFT) ^ tmp) & TICKET_MASK); |
| 76 | } | 97 | } |
| 77 | 98 | ||
| 78 | static inline int __ticket_spin_is_contended(raw_spinlock_t *lock) | 99 | static inline int __ticket_spin_is_contended(raw_spinlock_t *lock) |
| 79 | { | 100 | { |
| 80 | long tmp = ACCESS_ONCE(lock->lock); | 101 | long tmp = ACCESS_ONCE(lock->lock); |
| 81 | 102 | ||
| 82 | return (((tmp >> TICKET_SHIFT) - tmp) & ((1L << TICKET_SHIFT) - 1)) > 1; | 103 | return ((tmp - (tmp >> TICKET_SHIFT)) & TICKET_MASK) > 1; |
| 83 | } | 104 | } |
| 84 | 105 | ||
| 85 | static inline int __raw_spin_is_locked(raw_spinlock_t *lock) | 106 | static inline int __raw_spin_is_locked(raw_spinlock_t *lock) |
| @@ -116,8 +137,7 @@ static __always_inline void __raw_spin_lock_flags(raw_spinlock_t *lock, | |||
| 116 | 137 | ||
| 117 | static inline void __raw_spin_unlock_wait(raw_spinlock_t *lock) | 138 | static inline void __raw_spin_unlock_wait(raw_spinlock_t *lock) |
| 118 | { | 139 | { |
| 119 | while (__raw_spin_is_locked(lock)) | 140 | __ticket_spin_unlock_wait(lock); |
| 120 | cpu_relax(); | ||
| 121 | } | 141 | } |
| 122 | 142 | ||
| 123 | #define __raw_read_can_lock(rw) (*(volatile int *)(rw) >= 0) | 143 | #define __raw_read_can_lock(rw) (*(volatile int *)(rw) >= 0) |
diff --git a/arch/ia64/include/asm/spinlock_types.h b/arch/ia64/include/asm/spinlock_types.h index b61d136d9bc2..474e46f1ab4a 100644 --- a/arch/ia64/include/asm/spinlock_types.h +++ b/arch/ia64/include/asm/spinlock_types.h | |||
| @@ -6,7 +6,7 @@ | |||
| 6 | #endif | 6 | #endif |
| 7 | 7 | ||
| 8 | typedef struct { | 8 | typedef struct { |
| 9 | volatile unsigned long lock; | 9 | volatile unsigned int lock; |
| 10 | } raw_spinlock_t; | 10 | } raw_spinlock_t; |
| 11 | 11 | ||
| 12 | #define __RAW_SPIN_LOCK_UNLOCKED { 0 } | 12 | #define __RAW_SPIN_LOCK_UNLOCKED { 0 } |
diff --git a/arch/ia64/kernel/mca.c b/arch/ia64/kernel/mca.c index d2877a7bfe2e..496ac7a99488 100644 --- a/arch/ia64/kernel/mca.c +++ b/arch/ia64/kernel/mca.c | |||
| @@ -887,6 +887,60 @@ ia64_mca_modify_comm(const struct task_struct *previous_current) | |||
| 887 | memcpy(current->comm, comm, sizeof(current->comm)); | 887 | memcpy(current->comm, comm, sizeof(current->comm)); |
| 888 | } | 888 | } |
| 889 | 889 | ||
| 890 | static void | ||
| 891 | finish_pt_regs(struct pt_regs *regs, const pal_min_state_area_t *ms, | ||
| 892 | unsigned long *nat) | ||
| 893 | { | ||
| 894 | const u64 *bank; | ||
| 895 | |||
| 896 | /* If ipsr.ic then use pmsa_{iip,ipsr,ifs}, else use | ||
| 897 | * pmsa_{xip,xpsr,xfs} | ||
| 898 | */ | ||
| 899 | if (ia64_psr(regs)->ic) { | ||
| 900 | regs->cr_iip = ms->pmsa_iip; | ||
| 901 | regs->cr_ipsr = ms->pmsa_ipsr; | ||
| 902 | regs->cr_ifs = ms->pmsa_ifs; | ||
| 903 | } else { | ||
| 904 | regs->cr_iip = ms->pmsa_xip; | ||
| 905 | regs->cr_ipsr = ms->pmsa_xpsr; | ||
| 906 | regs->cr_ifs = ms->pmsa_xfs; | ||
| 907 | } | ||
| 908 | regs->pr = ms->pmsa_pr; | ||
| 909 | regs->b0 = ms->pmsa_br0; | ||
| 910 | regs->ar_rsc = ms->pmsa_rsc; | ||
| 911 | copy_reg(&ms->pmsa_gr[1-1], ms->pmsa_nat_bits, ®s->r1, nat); | ||
| 912 | copy_reg(&ms->pmsa_gr[2-1], ms->pmsa_nat_bits, ®s->r2, nat); | ||
| 913 | copy_reg(&ms->pmsa_gr[3-1], ms->pmsa_nat_bits, ®s->r3, nat); | ||
| 914 | copy_reg(&ms->pmsa_gr[8-1], ms->pmsa_nat_bits, ®s->r8, nat); | ||
| 915 | copy_reg(&ms->pmsa_gr[9-1], ms->pmsa_nat_bits, ®s->r9, nat); | ||
| 916 | copy_reg(&ms->pmsa_gr[10-1], ms->pmsa_nat_bits, ®s->r10, nat); | ||
| 917 | copy_reg(&ms->pmsa_gr[11-1], ms->pmsa_nat_bits, ®s->r11, nat); | ||
| 918 | copy_reg(&ms->pmsa_gr[12-1], ms->pmsa_nat_bits, ®s->r12, nat); | ||
| 919 | copy_reg(&ms->pmsa_gr[13-1], ms->pmsa_nat_bits, ®s->r13, nat); | ||
| 920 | copy_reg(&ms->pmsa_gr[14-1], ms->pmsa_nat_bits, ®s->r14, nat); | ||
| 921 | copy_reg(&ms->pmsa_gr[15-1], ms->pmsa_nat_bits, ®s->r15, nat); | ||
| 922 | if (ia64_psr(regs)->bn) | ||
| 923 | bank = ms->pmsa_bank1_gr; | ||
| 924 | else | ||
| 925 | bank = ms->pmsa_bank0_gr; | ||
| 926 | copy_reg(&bank[16-16], ms->pmsa_nat_bits, ®s->r16, nat); | ||
| 927 | copy_reg(&bank[17-16], ms->pmsa_nat_bits, ®s->r17, nat); | ||
| 928 | copy_reg(&bank[18-16], ms->pmsa_nat_bits, ®s->r18, nat); | ||
| 929 | copy_reg(&bank[19-16], ms->pmsa_nat_bits, ®s->r19, nat); | ||
| 930 | copy_reg(&bank[20-16], ms->pmsa_nat_bits, ®s->r20, nat); | ||
| 931 | copy_reg(&bank[21-16], ms->pmsa_nat_bits, ®s->r21, nat); | ||
| 932 | copy_reg(&bank[22-16], ms->pmsa_nat_bits, ®s->r22, nat); | ||
| 933 | copy_reg(&bank[23-16], ms->pmsa_nat_bits, ®s->r23, nat); | ||
| 934 | copy_reg(&bank[24-16], ms->pmsa_nat_bits, ®s->r24, nat); | ||
| 935 | copy_reg(&bank[25-16], ms->pmsa_nat_bits, ®s->r25, nat); | ||
| 936 | copy_reg(&bank[26-16], ms->pmsa_nat_bits, ®s->r26, nat); | ||
| 937 | copy_reg(&bank[27-16], ms->pmsa_nat_bits, ®s->r27, nat); | ||
| 938 | copy_reg(&bank[28-16], ms->pmsa_nat_bits, ®s->r28, nat); | ||
| 939 | copy_reg(&bank[29-16], ms->pmsa_nat_bits, ®s->r29, nat); | ||
| 940 | copy_reg(&bank[30-16], ms->pmsa_nat_bits, ®s->r30, nat); | ||
| 941 | copy_reg(&bank[31-16], ms->pmsa_nat_bits, ®s->r31, nat); | ||
| 942 | } | ||
| 943 | |||
| 890 | /* On entry to this routine, we are running on the per cpu stack, see | 944 | /* On entry to this routine, we are running on the per cpu stack, see |
| 891 | * mca_asm.h. The original stack has not been touched by this event. Some of | 945 | * mca_asm.h. The original stack has not been touched by this event. Some of |
| 892 | * the original stack's registers will be in the RBS on this stack. This stack | 946 | * the original stack's registers will be in the RBS on this stack. This stack |
| @@ -921,7 +975,6 @@ ia64_mca_modify_original_stack(struct pt_regs *regs, | |||
| 921 | u64 r12 = ms->pmsa_gr[12-1], r13 = ms->pmsa_gr[13-1]; | 975 | u64 r12 = ms->pmsa_gr[12-1], r13 = ms->pmsa_gr[13-1]; |
| 922 | u64 ar_bspstore = regs->ar_bspstore; | 976 | u64 ar_bspstore = regs->ar_bspstore; |
| 923 | u64 ar_bsp = regs->ar_bspstore + (loadrs >> 16); | 977 | u64 ar_bsp = regs->ar_bspstore + (loadrs >> 16); |
| 924 | const u64 *bank; | ||
| 925 | const char *msg; | 978 | const char *msg; |
| 926 | int cpu = smp_processor_id(); | 979 | int cpu = smp_processor_id(); |
| 927 | 980 | ||
| @@ -1024,54 +1077,9 @@ ia64_mca_modify_original_stack(struct pt_regs *regs, | |||
| 1024 | p = (char *)r12 - sizeof(*regs); | 1077 | p = (char *)r12 - sizeof(*regs); |
| 1025 | old_regs = (struct pt_regs *)p; | 1078 | old_regs = (struct pt_regs *)p; |
| 1026 | memcpy(old_regs, regs, sizeof(*regs)); | 1079 | memcpy(old_regs, regs, sizeof(*regs)); |
| 1027 | /* If ipsr.ic then use pmsa_{iip,ipsr,ifs}, else use | ||
| 1028 | * pmsa_{xip,xpsr,xfs} | ||
| 1029 | */ | ||
| 1030 | if (ia64_psr(regs)->ic) { | ||
| 1031 | old_regs->cr_iip = ms->pmsa_iip; | ||
| 1032 | old_regs->cr_ipsr = ms->pmsa_ipsr; | ||
| 1033 | old_regs->cr_ifs = ms->pmsa_ifs; | ||
| 1034 | } else { | ||
| 1035 | old_regs->cr_iip = ms->pmsa_xip; | ||
| 1036 | old_regs->cr_ipsr = ms->pmsa_xpsr; | ||
| 1037 | old_regs->cr_ifs = ms->pmsa_xfs; | ||
| 1038 | } | ||
| 1039 | old_regs->pr = ms->pmsa_pr; | ||
| 1040 | old_regs->b0 = ms->pmsa_br0; | ||
| 1041 | old_regs->loadrs = loadrs; | 1080 | old_regs->loadrs = loadrs; |
| 1042 | old_regs->ar_rsc = ms->pmsa_rsc; | ||
| 1043 | old_unat = old_regs->ar_unat; | 1081 | old_unat = old_regs->ar_unat; |
| 1044 | copy_reg(&ms->pmsa_gr[1-1], ms->pmsa_nat_bits, &old_regs->r1, &old_unat); | 1082 | finish_pt_regs(old_regs, ms, &old_unat); |
| 1045 | copy_reg(&ms->pmsa_gr[2-1], ms->pmsa_nat_bits, &old_regs->r2, &old_unat); | ||
| 1046 | copy_reg(&ms->pmsa_gr[3-1], ms->pmsa_nat_bits, &old_regs->r3, &old_unat); | ||
| 1047 | copy_reg(&ms->pmsa_gr[8-1], ms->pmsa_nat_bits, &old_regs->r8, &old_unat); | ||
| 1048 | copy_reg(&ms->pmsa_gr[9-1], ms->pmsa_nat_bits, &old_regs->r9, &old_unat); | ||
| 1049 | copy_reg(&ms->pmsa_gr[10-1], ms->pmsa_nat_bits, &old_regs->r10, &old_unat); | ||
| 1050 | copy_reg(&ms->pmsa_gr[11-1], ms->pmsa_nat_bits, &old_regs->r11, &old_unat); | ||
| 1051 | copy_reg(&ms->pmsa_gr[12-1], ms->pmsa_nat_bits, &old_regs->r12, &old_unat); | ||
| 1052 | copy_reg(&ms->pmsa_gr[13-1], ms->pmsa_nat_bits, &old_regs->r13, &old_unat); | ||
| 1053 | copy_reg(&ms->pmsa_gr[14-1], ms->pmsa_nat_bits, &old_regs->r14, &old_unat); | ||
| 1054 | copy_reg(&ms->pmsa_gr[15-1], ms->pmsa_nat_bits, &old_regs->r15, &old_unat); | ||
| 1055 | if (ia64_psr(old_regs)->bn) | ||
| 1056 | bank = ms->pmsa_bank1_gr; | ||
| 1057 | else | ||
| 1058 | bank = ms->pmsa_bank0_gr; | ||
| 1059 | copy_reg(&bank[16-16], ms->pmsa_nat_bits, &old_regs->r16, &old_unat); | ||
| 1060 | copy_reg(&bank[17-16], ms->pmsa_nat_bits, &old_regs->r17, &old_unat); | ||
| 1061 | copy_reg(&bank[18-16], ms->pmsa_nat_bits, &old_regs->r18, &old_unat); | ||
| 1062 | copy_reg(&bank[19-16], ms->pmsa_nat_bits, &old_regs->r19, &old_unat); | ||
| 1063 | copy_reg(&bank[20-16], ms->pmsa_nat_bits, &old_regs->r20, &old_unat); | ||
| 1064 | copy_reg(&bank[21-16], ms->pmsa_nat_bits, &old_regs->r21, &old_unat); | ||
| 1065 | copy_reg(&bank[22-16], ms->pmsa_nat_bits, &old_regs->r22, &old_unat); | ||
| 1066 | copy_reg(&bank[23-16], ms->pmsa_nat_bits, &old_regs->r23, &old_unat); | ||
| 1067 | copy_reg(&bank[24-16], ms->pmsa_nat_bits, &old_regs->r24, &old_unat); | ||
| 1068 | copy_reg(&bank[25-16], ms->pmsa_nat_bits, &old_regs->r25, &old_unat); | ||
| 1069 | copy_reg(&bank[26-16], ms->pmsa_nat_bits, &old_regs->r26, &old_unat); | ||
| 1070 | copy_reg(&bank[27-16], ms->pmsa_nat_bits, &old_regs->r27, &old_unat); | ||
| 1071 | copy_reg(&bank[28-16], ms->pmsa_nat_bits, &old_regs->r28, &old_unat); | ||
| 1072 | copy_reg(&bank[29-16], ms->pmsa_nat_bits, &old_regs->r29, &old_unat); | ||
| 1073 | copy_reg(&bank[30-16], ms->pmsa_nat_bits, &old_regs->r30, &old_unat); | ||
| 1074 | copy_reg(&bank[31-16], ms->pmsa_nat_bits, &old_regs->r31, &old_unat); | ||
| 1075 | 1083 | ||
| 1076 | /* Next stack a struct switch_stack. mca_asm.S built a partial | 1084 | /* Next stack a struct switch_stack. mca_asm.S built a partial |
| 1077 | * switch_stack, copy it and fill in the blanks using pt_regs and | 1085 | * switch_stack, copy it and fill in the blanks using pt_regs and |
| @@ -1141,6 +1149,8 @@ ia64_mca_modify_original_stack(struct pt_regs *regs, | |||
| 1141 | no_mod: | 1149 | no_mod: |
| 1142 | mprintk(KERN_INFO "cpu %d, %s %s, original stack not modified\n", | 1150 | mprintk(KERN_INFO "cpu %d, %s %s, original stack not modified\n", |
| 1143 | smp_processor_id(), type, msg); | 1151 | smp_processor_id(), type, msg); |
| 1152 | old_unat = regs->ar_unat; | ||
| 1153 | finish_pt_regs(regs, ms, &old_unat); | ||
| 1144 | return previous_current; | 1154 | return previous_current; |
| 1145 | } | 1155 | } |
| 1146 | 1156 | ||
diff --git a/arch/ia64/kernel/unaligned.c b/arch/ia64/kernel/unaligned.c index 6db08599ebbc..776dd40397e2 100644 --- a/arch/ia64/kernel/unaligned.c +++ b/arch/ia64/kernel/unaligned.c | |||
| @@ -60,7 +60,6 @@ dump (const char *str, void *vp, size_t len) | |||
| 60 | */ | 60 | */ |
| 61 | int no_unaligned_warning; | 61 | int no_unaligned_warning; |
| 62 | int unaligned_dump_stack; | 62 | int unaligned_dump_stack; |
| 63 | static int noprint_warning; | ||
| 64 | 63 | ||
| 65 | /* | 64 | /* |
| 66 | * For M-unit: | 65 | * For M-unit: |
| @@ -1357,9 +1356,8 @@ ia64_handle_unaligned (unsigned long ifa, struct pt_regs *regs) | |||
| 1357 | /* watch for command names containing %s */ | 1356 | /* watch for command names containing %s */ |
| 1358 | printk(KERN_WARNING "%s", buf); | 1357 | printk(KERN_WARNING "%s", buf); |
| 1359 | } else { | 1358 | } else { |
| 1360 | if (no_unaligned_warning && !noprint_warning) { | 1359 | if (no_unaligned_warning) { |
| 1361 | noprint_warning = 1; | 1360 | printk_once(KERN_WARNING "%s(%d) encountered an " |
| 1362 | printk(KERN_WARNING "%s(%d) encountered an " | ||
| 1363 | "unaligned exception which required\n" | 1361 | "unaligned exception which required\n" |
| 1364 | "kernel assistance, which degrades " | 1362 | "kernel assistance, which degrades " |
| 1365 | "the performance of the application.\n" | 1363 | "the performance of the application.\n" |
diff --git a/arch/ia64/mm/tlb.c b/arch/ia64/mm/tlb.c index f426dc78d959..ee09d261f2e6 100644 --- a/arch/ia64/mm/tlb.c +++ b/arch/ia64/mm/tlb.c | |||
| @@ -100,24 +100,36 @@ wrap_mmu_context (struct mm_struct *mm) | |||
| 100 | * this primitive it can be moved up to a spinaphore.h header. | 100 | * this primitive it can be moved up to a spinaphore.h header. |
| 101 | */ | 101 | */ |
| 102 | struct spinaphore { | 102 | struct spinaphore { |
| 103 | atomic_t cur; | 103 | unsigned long ticket; |
| 104 | unsigned long serve; | ||
| 104 | }; | 105 | }; |
| 105 | 106 | ||
| 106 | static inline void spinaphore_init(struct spinaphore *ss, int val) | 107 | static inline void spinaphore_init(struct spinaphore *ss, int val) |
| 107 | { | 108 | { |
| 108 | atomic_set(&ss->cur, val); | 109 | ss->ticket = 0; |
| 110 | ss->serve = val; | ||
| 109 | } | 111 | } |
| 110 | 112 | ||
| 111 | static inline void down_spin(struct spinaphore *ss) | 113 | static inline void down_spin(struct spinaphore *ss) |
| 112 | { | 114 | { |
| 113 | while (unlikely(!atomic_add_unless(&ss->cur, -1, 0))) | 115 | unsigned long t = ia64_fetchadd(1, &ss->ticket, acq), serve; |
| 114 | while (atomic_read(&ss->cur) == 0) | 116 | |
| 115 | cpu_relax(); | 117 | if (time_before(t, ss->serve)) |
| 118 | return; | ||
| 119 | |||
| 120 | ia64_invala(); | ||
| 121 | |||
| 122 | for (;;) { | ||
| 123 | asm volatile ("ld4.c.nc %0=[%1]" : "=r"(serve) : "r"(&ss->serve) : "memory"); | ||
| 124 | if (time_before(t, serve)) | ||
| 125 | return; | ||
| 126 | cpu_relax(); | ||
| 127 | } | ||
| 116 | } | 128 | } |
| 117 | 129 | ||
| 118 | static inline void up_spin(struct spinaphore *ss) | 130 | static inline void up_spin(struct spinaphore *ss) |
| 119 | { | 131 | { |
| 120 | atomic_add(1, &ss->cur); | 132 | ia64_fetchadd(1, &ss->serve, rel); |
| 121 | } | 133 | } |
| 122 | 134 | ||
| 123 | static struct spinaphore ptcg_sem; | 135 | static struct spinaphore ptcg_sem; |
diff --git a/arch/ia64/pci/pci.c b/arch/ia64/pci/pci.c index 7de76dd352fe..c0fca2c1c858 100644 --- a/arch/ia64/pci/pci.c +++ b/arch/ia64/pci/pci.c | |||
| @@ -56,10 +56,13 @@ int raw_pci_read(unsigned int seg, unsigned int bus, unsigned int devfn, | |||
| 56 | if ((seg | reg) <= 255) { | 56 | if ((seg | reg) <= 255) { |
| 57 | addr = PCI_SAL_ADDRESS(seg, bus, devfn, reg); | 57 | addr = PCI_SAL_ADDRESS(seg, bus, devfn, reg); |
| 58 | mode = 0; | 58 | mode = 0; |
| 59 | } else { | 59 | } else if (sal_revision >= SAL_VERSION_CODE(3,2)) { |
| 60 | addr = PCI_SAL_EXT_ADDRESS(seg, bus, devfn, reg); | 60 | addr = PCI_SAL_EXT_ADDRESS(seg, bus, devfn, reg); |
| 61 | mode = 1; | 61 | mode = 1; |
| 62 | } else { | ||
| 63 | return -EINVAL; | ||
| 62 | } | 64 | } |
| 65 | |||
| 63 | result = ia64_sal_pci_config_read(addr, mode, len, &data); | 66 | result = ia64_sal_pci_config_read(addr, mode, len, &data); |
| 64 | if (result != 0) | 67 | if (result != 0) |
| 65 | return -EINVAL; | 68 | return -EINVAL; |
| @@ -80,9 +83,11 @@ int raw_pci_write(unsigned int seg, unsigned int bus, unsigned int devfn, | |||
| 80 | if ((seg | reg) <= 255) { | 83 | if ((seg | reg) <= 255) { |
| 81 | addr = PCI_SAL_ADDRESS(seg, bus, devfn, reg); | 84 | addr = PCI_SAL_ADDRESS(seg, bus, devfn, reg); |
| 82 | mode = 0; | 85 | mode = 0; |
| 83 | } else { | 86 | } else if (sal_revision >= SAL_VERSION_CODE(3,2)) { |
| 84 | addr = PCI_SAL_EXT_ADDRESS(seg, bus, devfn, reg); | 87 | addr = PCI_SAL_EXT_ADDRESS(seg, bus, devfn, reg); |
| 85 | mode = 1; | 88 | mode = 1; |
| 89 | } else { | ||
| 90 | return -EINVAL; | ||
| 86 | } | 91 | } |
| 87 | result = ia64_sal_pci_config_write(addr, mode, len, value); | 92 | result = ia64_sal_pci_config_write(addr, mode, len, value); |
| 88 | if (result != 0) | 93 | if (result != 0) |
diff --git a/arch/ia64/sn/kernel/io_common.c b/arch/ia64/sn/kernel/io_common.c index 25831c47c579..308e6595110e 100644 --- a/arch/ia64/sn/kernel/io_common.c +++ b/arch/ia64/sn/kernel/io_common.c | |||
| @@ -119,7 +119,6 @@ sn_pcidev_info_get(struct pci_dev *dev) | |||
| 119 | * Additionally note that the struct sn_flush_device_war also has to be | 119 | * Additionally note that the struct sn_flush_device_war also has to be |
| 120 | * removed from arch/ia64/sn/include/xtalk/hubdev.h | 120 | * removed from arch/ia64/sn/include/xtalk/hubdev.h |
| 121 | */ | 121 | */ |
| 122 | static u8 war_implemented = 0; | ||
| 123 | 122 | ||
| 124 | static s64 sn_device_fixup_war(u64 nasid, u64 widget, int device, | 123 | static s64 sn_device_fixup_war(u64 nasid, u64 widget, int device, |
| 125 | struct sn_flush_device_common *common) | 124 | struct sn_flush_device_common *common) |
| @@ -128,11 +127,8 @@ static s64 sn_device_fixup_war(u64 nasid, u64 widget, int device, | |||
| 128 | struct sn_flush_device_war *dev_entry; | 127 | struct sn_flush_device_war *dev_entry; |
| 129 | struct ia64_sal_retval isrv = {0,0,0,0}; | 128 | struct ia64_sal_retval isrv = {0,0,0,0}; |
| 130 | 129 | ||
| 131 | if (!war_implemented) { | 130 | printk_once(KERN_WARNING |
| 132 | printk(KERN_WARNING "PROM version < 4.50 -- implementing old " | 131 | "PROM version < 4.50 -- implementing old PROM flush WAR\n"); |
| 133 | "PROM flush WAR\n"); | ||
| 134 | war_implemented = 1; | ||
| 135 | } | ||
| 136 | 132 | ||
| 137 | war_list = kzalloc(DEV_PER_WIDGET * sizeof(*war_list), GFP_KERNEL); | 133 | war_list = kzalloc(DEV_PER_WIDGET * sizeof(*war_list), GFP_KERNEL); |
| 138 | BUG_ON(!war_list); | 134 | BUG_ON(!war_list); |
diff --git a/arch/ia64/sn/kernel/sn2/sn_hwperf.c b/arch/ia64/sn/kernel/sn2/sn_hwperf.c index 4c7e74790958..55ac3c4e11d2 100644 --- a/arch/ia64/sn/kernel/sn2/sn_hwperf.c +++ b/arch/ia64/sn/kernel/sn2/sn_hwperf.c | |||
| @@ -786,17 +786,18 @@ sn_hwperf_ioctl(struct inode *in, struct file *fp, u32 op, unsigned long arg) | |||
| 786 | break; | 786 | break; |
| 787 | 787 | ||
| 788 | case SN_HWPERF_GET_OBJ_NODE: | 788 | case SN_HWPERF_GET_OBJ_NODE: |
| 789 | if (a.sz != sizeof(u64) || a.arg < 0) { | 789 | i = a.arg; |
| 790 | if (a.sz != sizeof(u64) || i < 0) { | ||
| 790 | r = -EINVAL; | 791 | r = -EINVAL; |
| 791 | goto error; | 792 | goto error; |
| 792 | } | 793 | } |
| 793 | if ((r = sn_hwperf_enum_objects(&nobj, &objs)) == 0) { | 794 | if ((r = sn_hwperf_enum_objects(&nobj, &objs)) == 0) { |
| 794 | if (a.arg >= nobj) { | 795 | if (i >= nobj) { |
| 795 | r = -EINVAL; | 796 | r = -EINVAL; |
| 796 | vfree(objs); | 797 | vfree(objs); |
| 797 | goto error; | 798 | goto error; |
| 798 | } | 799 | } |
| 799 | if (objs[(i = a.arg)].id != a.arg) { | 800 | if (objs[i].id != a.arg) { |
| 800 | for (i = 0; i < nobj; i++) { | 801 | for (i = 0; i < nobj; i++) { |
| 801 | if (objs[i].id == a.arg) | 802 | if (objs[i].id == a.arg) |
| 802 | break; | 803 | break; |
diff --git a/arch/m32r/Kconfig b/arch/m32r/Kconfig index c41234f1b825..3a9319f93e89 100644 --- a/arch/m32r/Kconfig +++ b/arch/m32r/Kconfig | |||
| @@ -11,6 +11,9 @@ config M32R | |||
| 11 | select HAVE_IDE | 11 | select HAVE_IDE |
| 12 | select HAVE_OPROFILE | 12 | select HAVE_OPROFILE |
| 13 | select INIT_ALL_POSSIBLE | 13 | select INIT_ALL_POSSIBLE |
| 14 | select HAVE_KERNEL_GZIP | ||
| 15 | select HAVE_KERNEL_BZIP2 | ||
| 16 | select HAVE_KERNEL_LZMA | ||
| 14 | 17 | ||
| 15 | config SBUS | 18 | config SBUS |
| 16 | bool | 19 | bool |
diff --git a/arch/m32r/boot/compressed/Makefile b/arch/m32r/boot/compressed/Makefile index 560484ae35ec..1003880d0dfd 100644 --- a/arch/m32r/boot/compressed/Makefile +++ b/arch/m32r/boot/compressed/Makefile | |||
| @@ -4,8 +4,8 @@ | |||
| 4 | # create a compressed vmlinux image from the original vmlinux | 4 | # create a compressed vmlinux image from the original vmlinux |
| 5 | # | 5 | # |
| 6 | 6 | ||
| 7 | targets := vmlinux vmlinux.bin vmlinux.bin.gz head.o misc.o \ | 7 | targets := vmlinux vmlinux.bin vmlinux.bin.gz vmlinux.bin.bz2 \ |
| 8 | piggy.o vmlinux.lds | 8 | vmlinux.bin.lzma head.o misc.o piggy.o vmlinux.lds |
| 9 | 9 | ||
| 10 | OBJECTS = $(obj)/head.o $(obj)/misc.o | 10 | OBJECTS = $(obj)/head.o $(obj)/misc.o |
| 11 | 11 | ||
| @@ -27,6 +27,12 @@ $(obj)/vmlinux.bin: vmlinux FORCE | |||
| 27 | $(obj)/vmlinux.bin.gz: $(obj)/vmlinux.bin FORCE | 27 | $(obj)/vmlinux.bin.gz: $(obj)/vmlinux.bin FORCE |
| 28 | $(call if_changed,gzip) | 28 | $(call if_changed,gzip) |
| 29 | 29 | ||
| 30 | $(obj)/vmlinux.bin.bz2: $(obj)/vmlinux.bin FORCE | ||
| 31 | $(call if_changed,bzip2) | ||
| 32 | |||
| 33 | $(obj)/vmlinux.bin.lzma: $(obj)/vmlinux.bin FORCE | ||
| 34 | $(call if_changed,lzma) | ||
| 35 | |||
| 30 | CFLAGS_misc.o += -fpic | 36 | CFLAGS_misc.o += -fpic |
| 31 | 37 | ||
| 32 | ifdef CONFIG_MMU | 38 | ifdef CONFIG_MMU |
| @@ -37,5 +43,9 @@ endif | |||
| 37 | 43 | ||
| 38 | OBJCOPYFLAGS += -R .empty_zero_page | 44 | OBJCOPYFLAGS += -R .empty_zero_page |
| 39 | 45 | ||
| 40 | $(obj)/piggy.o: $(obj)/vmlinux.scr $(obj)/vmlinux.bin.gz FORCE | 46 | suffix_$(CONFIG_KERNEL_GZIP) = gz |
| 47 | suffix_$(CONFIG_KERNEL_BZIP2) = bz2 | ||
| 48 | suffix_$(CONFIG_KERNEL_LZMA) = lzma | ||
| 49 | |||
| 50 | $(obj)/piggy.o: $(obj)/vmlinux.scr $(obj)/vmlinux.bin.$(suffix_y) FORCE | ||
| 41 | $(call if_changed,ld) | 51 | $(call if_changed,ld) |
diff --git a/arch/m32r/boot/compressed/misc.c b/arch/m32r/boot/compressed/misc.c index d394292498c0..370d60881977 100644 --- a/arch/m32r/boot/compressed/misc.c +++ b/arch/m32r/boot/compressed/misc.c | |||
| @@ -9,140 +9,49 @@ | |||
| 9 | * Adapted for SH by Stuart Menefy, Aug 1999 | 9 | * Adapted for SH by Stuart Menefy, Aug 1999 |
| 10 | * | 10 | * |
| 11 | * 2003-02-12: Support M32R by Takeo Takahashi | 11 | * 2003-02-12: Support M32R by Takeo Takahashi |
| 12 | * This is based on arch/sh/boot/compressed/misc.c. | ||
| 13 | */ | 12 | */ |
| 14 | 13 | ||
| 15 | #include <linux/string.h> | ||
| 16 | |||
| 17 | /* | 14 | /* |
| 18 | * gzip declarations | 15 | * gzip declarations |
| 19 | */ | 16 | */ |
| 20 | |||
| 21 | #define OF(args) args | ||
| 22 | #define STATIC static | 17 | #define STATIC static |
| 23 | 18 | ||
| 24 | #undef memset | 19 | #undef memset |
| 25 | #undef memcpy | 20 | #undef memcpy |
| 26 | #define memzero(s, n) memset ((s), 0, (n)) | 21 | #define memzero(s, n) memset ((s), 0, (n)) |
| 27 | 22 | ||
| 28 | typedef unsigned char uch; | ||
| 29 | typedef unsigned short ush; | ||
| 30 | typedef unsigned long ulg; | ||
| 31 | |||
| 32 | #define WSIZE 0x8000 /* Window size must be at least 32k, */ | ||
| 33 | /* and a power of two */ | ||
| 34 | |||
| 35 | static uch *inbuf; /* input buffer */ | ||
| 36 | static uch window[WSIZE]; /* Sliding window buffer */ | ||
| 37 | |||
| 38 | static unsigned insize = 0; /* valid bytes in inbuf */ | ||
| 39 | static unsigned inptr = 0; /* index of next byte to be processed in inbuf */ | ||
| 40 | static unsigned outcnt = 0; /* bytes in output buffer */ | ||
| 41 | |||
| 42 | /* gzip flag byte */ | ||
| 43 | #define ASCII_FLAG 0x01 /* bit 0 set: file probably ASCII text */ | ||
| 44 | #define CONTINUATION 0x02 /* bit 1 set: continuation of multi-part gzip file */ | ||
| 45 | #define EXTRA_FIELD 0x04 /* bit 2 set: extra field present */ | ||
| 46 | #define ORIG_NAME 0x08 /* bit 3 set: original file name present */ | ||
| 47 | #define COMMENT 0x10 /* bit 4 set: file comment present */ | ||
| 48 | #define ENCRYPTED 0x20 /* bit 5 set: file is encrypted */ | ||
| 49 | #define RESERVED 0xC0 /* bit 6,7: reserved */ | ||
| 50 | |||
| 51 | #define get_byte() (inptr < insize ? inbuf[inptr++] : fill_inbuf()) | ||
| 52 | |||
| 53 | /* Diagnostic functions */ | ||
| 54 | #ifdef DEBUG | ||
| 55 | # define Assert(cond,msg) {if(!(cond)) error(msg);} | ||
| 56 | # define Trace(x) fprintf x | ||
| 57 | # define Tracev(x) {if (verbose) fprintf x ;} | ||
| 58 | # define Tracevv(x) {if (verbose>1) fprintf x ;} | ||
| 59 | # define Tracec(c,x) {if (verbose && (c)) fprintf x ;} | ||
| 60 | # define Tracecv(c,x) {if (verbose>1 && (c)) fprintf x ;} | ||
| 61 | #else | ||
| 62 | # define Assert(cond,msg) | ||
| 63 | # define Trace(x) | ||
| 64 | # define Tracev(x) | ||
| 65 | # define Tracevv(x) | ||
| 66 | # define Tracec(c,x) | ||
| 67 | # define Tracecv(c,x) | ||
| 68 | #endif | ||
| 69 | |||
| 70 | static int fill_inbuf(void); | ||
| 71 | static void flush_window(void); | ||
| 72 | static void error(char *m); | 23 | static void error(char *m); |
| 73 | 24 | ||
| 74 | static unsigned char *input_data; | ||
| 75 | static int input_len; | ||
| 76 | |||
| 77 | static long bytes_out = 0; | ||
| 78 | static uch *output_data; | ||
| 79 | static unsigned long output_ptr = 0; | ||
| 80 | |||
| 81 | #include "m32r_sio.c" | 25 | #include "m32r_sio.c" |
| 82 | 26 | ||
| 83 | static unsigned long free_mem_ptr; | 27 | static unsigned long free_mem_ptr; |
| 84 | static unsigned long free_mem_end_ptr; | 28 | static unsigned long free_mem_end_ptr; |
| 85 | 29 | ||
| 86 | #define HEAP_SIZE 0x10000 | 30 | #ifdef CONFIG_KERNEL_BZIP2 |
| 87 | 31 | static void *memset(void *s, int c, size_t n) | |
| 88 | #include "../../../../lib/inflate.c" | ||
| 89 | |||
| 90 | void* memset(void* s, int c, size_t n) | ||
| 91 | { | 32 | { |
| 92 | int i; | 33 | char *ss = s; |
| 93 | char *ss = (char*)s; | ||
| 94 | 34 | ||
| 95 | for (i=0;i<n;i++) ss[i] = c; | 35 | while (n--) |
| 36 | *ss++ = c; | ||
| 96 | return s; | 37 | return s; |
| 97 | } | 38 | } |
| 39 | #endif | ||
| 98 | 40 | ||
| 99 | void* memcpy(void* __dest, __const void* __src, | 41 | #ifdef CONFIG_KERNEL_GZIP |
| 100 | size_t __n) | 42 | #define BOOT_HEAP_SIZE 0x10000 |
| 101 | { | 43 | #include "../../../../lib/decompress_inflate.c" |
| 102 | int i; | 44 | #endif |
| 103 | char *d = (char *)__dest, *s = (char *)__src; | ||
| 104 | |||
| 105 | for (i=0;i<__n;i++) d[i] = s[i]; | ||
| 106 | return __dest; | ||
| 107 | } | ||
| 108 | |||
| 109 | /* =========================================================================== | ||
| 110 | * Fill the input buffer. This is called only when the buffer is empty | ||
| 111 | * and at least one byte is really needed. | ||
| 112 | */ | ||
| 113 | static int fill_inbuf(void) | ||
| 114 | { | ||
| 115 | if (insize != 0) { | ||
| 116 | error("ran out of input data"); | ||
| 117 | } | ||
| 118 | |||
| 119 | inbuf = input_data; | ||
| 120 | insize = input_len; | ||
| 121 | inptr = 1; | ||
| 122 | return inbuf[0]; | ||
| 123 | } | ||
| 124 | 45 | ||
| 125 | /* =========================================================================== | 46 | #ifdef CONFIG_KERNEL_BZIP2 |
| 126 | * Write the output window window[0..outcnt-1] and update crc and bytes_out. | 47 | #define BOOT_HEAP_SIZE 0x400000 |
| 127 | * (Used for the decompressed data only.) | 48 | #include "../../../../lib/decompress_bunzip2.c" |
| 128 | */ | 49 | #endif |
| 129 | static void flush_window(void) | ||
| 130 | { | ||
| 131 | ulg c = crc; /* temporary variable */ | ||
| 132 | unsigned n; | ||
| 133 | uch *in, *out, ch; | ||
| 134 | 50 | ||
| 135 | in = window; | 51 | #ifdef CONFIG_KERNEL_LZMA |
| 136 | out = &output_data[output_ptr]; | 52 | #define BOOT_HEAP_SIZE 0x10000 |
| 137 | for (n = 0; n < outcnt; n++) { | 53 | #include "../../../../lib/decompress_unlzma.c" |
| 138 | ch = *out++ = *in++; | 54 | #endif |
| 139 | c = crc_32_tab[((int)c ^ ch) & 0xff] ^ (c >> 8); | ||
| 140 | } | ||
| 141 | crc = c; | ||
| 142 | bytes_out += (ulg)outcnt; | ||
| 143 | output_ptr += (ulg)outcnt; | ||
| 144 | outcnt = 0; | ||
| 145 | } | ||
| 146 | 55 | ||
| 147 | static void error(char *x) | 56 | static void error(char *x) |
| 148 | { | 57 | { |
| @@ -153,20 +62,20 @@ static void error(char *x) | |||
| 153 | while(1); /* Halt */ | 62 | while(1); /* Halt */ |
| 154 | } | 63 | } |
| 155 | 64 | ||
| 156 | /* return decompressed size */ | ||
| 157 | void | 65 | void |
| 158 | decompress_kernel(int mmu_on, unsigned char *zimage_data, | 66 | decompress_kernel(int mmu_on, unsigned char *zimage_data, |
| 159 | unsigned int zimage_len, unsigned long heap) | 67 | unsigned int zimage_len, unsigned long heap) |
| 160 | { | 68 | { |
| 69 | unsigned char *input_data = zimage_data; | ||
| 70 | int input_len = zimage_len; | ||
| 71 | unsigned char *output_data; | ||
| 72 | |||
| 161 | output_data = (unsigned char *)CONFIG_MEMORY_START + 0x2000 | 73 | output_data = (unsigned char *)CONFIG_MEMORY_START + 0x2000 |
| 162 | + (mmu_on ? 0x80000000 : 0); | 74 | + (mmu_on ? 0x80000000 : 0); |
| 163 | free_mem_ptr = heap; | 75 | free_mem_ptr = heap; |
| 164 | free_mem_end_ptr = free_mem_ptr + HEAP_SIZE; | 76 | free_mem_end_ptr = free_mem_ptr + BOOT_HEAP_SIZE; |
| 165 | input_data = zimage_data; | ||
| 166 | input_len = zimage_len; | ||
| 167 | 77 | ||
| 168 | makecrc(); | 78 | puts("\nDecompressing Linux... "); |
| 169 | puts("Uncompressing Linux... "); | 79 | decompress(input_data, input_len, NULL, NULL, output_data, NULL, error); |
| 170 | gunzip(); | 80 | puts("done.\nBooting the kernel.\n"); |
| 171 | puts("Ok, booting the kernel.\n"); | ||
| 172 | } | 81 | } |
diff --git a/arch/m32r/kernel/smp.c b/arch/m32r/kernel/smp.c index 8a88f1f0a3e2..31cef20b2996 100644 --- a/arch/m32r/kernel/smp.c +++ b/arch/m32r/kernel/smp.c | |||
| @@ -806,7 +806,7 @@ unsigned long send_IPI_mask_phys(cpumask_t physid_mask, int ipi_num, | |||
| 806 | 806 | ||
| 807 | if (mask & ~physids_coerce(phys_cpu_present_map)) | 807 | if (mask & ~physids_coerce(phys_cpu_present_map)) |
| 808 | BUG(); | 808 | BUG(); |
| 809 | if (ipi_num >= NR_IPIS) | 809 | if (ipi_num >= NR_IPIS || ipi_num < 0) |
| 810 | BUG(); | 810 | BUG(); |
| 811 | 811 | ||
| 812 | mask <<= IPI_SHIFT; | 812 | mask <<= IPI_SHIFT; |
diff --git a/arch/m32r/kernel/time.c b/arch/m32r/kernel/time.c index e7fee0f198d5..9cedcef11575 100644 --- a/arch/m32r/kernel/time.c +++ b/arch/m32r/kernel/time.c | |||
| @@ -75,7 +75,7 @@ u32 arch_gettimeoffset(void) | |||
| 75 | count = 0; | 75 | count = 0; |
| 76 | 76 | ||
| 77 | count = (latch - count) * TICK_SIZE; | 77 | count = (latch - count) * TICK_SIZE; |
| 78 | elapsed_time = (count + latch / 2) / latch; | 78 | elapsed_time = DIV_ROUND_CLOSEST(count, latch); |
| 79 | /* NOTE: LATCH is equal to the "interval" value (= reload count). */ | 79 | /* NOTE: LATCH is equal to the "interval" value (= reload count). */ |
| 80 | 80 | ||
| 81 | #else /* CONFIG_SMP */ | 81 | #else /* CONFIG_SMP */ |
| @@ -93,7 +93,7 @@ u32 arch_gettimeoffset(void) | |||
| 93 | p_count = count; | 93 | p_count = count; |
| 94 | 94 | ||
| 95 | count = (latch - count) * TICK_SIZE; | 95 | count = (latch - count) * TICK_SIZE; |
| 96 | elapsed_time = (count + latch / 2) / latch; | 96 | elapsed_time = DIV_ROUND_CLOSEST(count, latch); |
| 97 | /* NOTE: LATCH is equal to the "interval" value (= reload count). */ | 97 | /* NOTE: LATCH is equal to the "interval" value (= reload count). */ |
| 98 | #endif /* CONFIG_SMP */ | 98 | #endif /* CONFIG_SMP */ |
| 99 | #elif defined(CONFIG_CHIP_M32310) | 99 | #elif defined(CONFIG_CHIP_M32310) |
| @@ -211,7 +211,7 @@ void __init time_init(void) | |||
| 211 | 211 | ||
| 212 | bus_clock = boot_cpu_data.bus_clock; | 212 | bus_clock = boot_cpu_data.bus_clock; |
| 213 | divide = boot_cpu_data.timer_divide; | 213 | divide = boot_cpu_data.timer_divide; |
| 214 | latch = (bus_clock/divide + HZ / 2) / HZ; | 214 | latch = DIV_ROUND_CLOSEST(bus_clock/divide, HZ); |
| 215 | 215 | ||
| 216 | printk("Timer start : latch = %ld\n", latch); | 216 | printk("Timer start : latch = %ld\n", latch); |
| 217 | 217 | ||
diff --git a/arch/m32r/kernel/vmlinux.lds.S b/arch/m32r/kernel/vmlinux.lds.S index 8ceb6181d805..7da94eaa082b 100644 --- a/arch/m32r/kernel/vmlinux.lds.S +++ b/arch/m32r/kernel/vmlinux.lds.S | |||
| @@ -42,6 +42,8 @@ SECTIONS | |||
| 42 | _etext = .; /* End of text section */ | 42 | _etext = .; /* End of text section */ |
| 43 | 43 | ||
| 44 | EXCEPTION_TABLE(16) | 44 | EXCEPTION_TABLE(16) |
| 45 | NOTES | ||
| 46 | |||
| 45 | RODATA | 47 | RODATA |
| 46 | RW_DATA_SECTION(32, PAGE_SIZE, THREAD_SIZE) | 48 | RW_DATA_SECTION(32, PAGE_SIZE, THREAD_SIZE) |
| 47 | _edata = .; /* End of data section */ | 49 | _edata = .; /* End of data section */ |
diff --git a/arch/m68k/Kconfig b/arch/m68k/Kconfig index 29dd8489ffec..ecdc19a299b2 100644 --- a/arch/m68k/Kconfig +++ b/arch/m68k/Kconfig | |||
| @@ -561,7 +561,7 @@ config HPAPCI | |||
| 561 | 561 | ||
| 562 | config MVME147_SCC | 562 | config MVME147_SCC |
| 563 | bool "SCC support for MVME147 serial ports" | 563 | bool "SCC support for MVME147 serial ports" |
| 564 | depends on MVME147 | 564 | depends on MVME147 && BROKEN |
| 565 | help | 565 | help |
| 566 | This is the driver for the serial ports on the Motorola MVME147 | 566 | This is the driver for the serial ports on the Motorola MVME147 |
| 567 | boards. Everyone using one of these boards should say Y here. | 567 | boards. Everyone using one of these boards should say Y here. |
| @@ -576,14 +576,14 @@ config SERIAL167 | |||
| 576 | 576 | ||
| 577 | config MVME162_SCC | 577 | config MVME162_SCC |
| 578 | bool "SCC support for MVME162 serial ports" | 578 | bool "SCC support for MVME162 serial ports" |
| 579 | depends on MVME16x | 579 | depends on MVME16x && BROKEN |
| 580 | help | 580 | help |
| 581 | This is the driver for the serial ports on the Motorola MVME162 and | 581 | This is the driver for the serial ports on the Motorola MVME162 and |
| 582 | 172 boards. Everyone using one of these boards should say Y here. | 582 | 172 boards. Everyone using one of these boards should say Y here. |
| 583 | 583 | ||
| 584 | config BVME6000_SCC | 584 | config BVME6000_SCC |
| 585 | bool "SCC support for BVME6000 serial ports" | 585 | bool "SCC support for BVME6000 serial ports" |
| 586 | depends on BVME6000 | 586 | depends on BVME6000 && BROKEN |
| 587 | help | 587 | help |
| 588 | This is the driver for the serial ports on the BVME4000 and BVME6000 | 588 | This is the driver for the serial ports on the BVME4000 and BVME6000 |
| 589 | boards from BVM Ltd. Everyone using one of these boards should say | 589 | boards from BVM Ltd. Everyone using one of these boards should say |
diff --git a/arch/mips/Kconfig b/arch/mips/Kconfig index 705a7a9170f3..03bd56a2fb6e 100644 --- a/arch/mips/Kconfig +++ b/arch/mips/Kconfig | |||
| @@ -1012,9 +1012,9 @@ config BOOT_ELF32 | |||
| 1012 | 1012 | ||
| 1013 | config MIPS_L1_CACHE_SHIFT | 1013 | config MIPS_L1_CACHE_SHIFT |
| 1014 | int | 1014 | int |
| 1015 | default "4" if MACH_DECSTATION || MIKROTIK_RB532 | 1015 | default "4" if MACH_DECSTATION || MIKROTIK_RB532 || PMC_MSP4200_EVAL |
| 1016 | default "6" if MIPS_CPU_SCACHE | ||
| 1016 | default "7" if SGI_IP22 || SGI_IP27 || SGI_IP28 || SNI_RM || CPU_CAVIUM_OCTEON | 1017 | default "7" if SGI_IP22 || SGI_IP27 || SGI_IP28 || SNI_RM || CPU_CAVIUM_OCTEON |
| 1017 | default "4" if PMC_MSP4200_EVAL | ||
| 1018 | default "5" | 1018 | default "5" |
| 1019 | 1019 | ||
| 1020 | config HAVE_STD_PC_SERIAL_PORT | 1020 | config HAVE_STD_PC_SERIAL_PORT |
diff --git a/arch/mips/alchemy/common/irq.c b/arch/mips/alchemy/common/irq.c index c88c821b4c36..d670928afcfd 100644 --- a/arch/mips/alchemy/common/irq.c +++ b/arch/mips/alchemy/common/irq.c | |||
| @@ -354,6 +354,28 @@ static void au1x_ic1_ack(unsigned int irq_nr) | |||
| 354 | au_sync(); | 354 | au_sync(); |
| 355 | } | 355 | } |
| 356 | 356 | ||
| 357 | static void au1x_ic0_maskack(unsigned int irq_nr) | ||
| 358 | { | ||
| 359 | unsigned int bit = irq_nr - AU1000_INTC0_INT_BASE; | ||
| 360 | |||
| 361 | au_writel(1 << bit, IC0_WAKECLR); | ||
| 362 | au_writel(1 << bit, IC0_MASKCLR); | ||
| 363 | au_writel(1 << bit, IC0_RISINGCLR); | ||
| 364 | au_writel(1 << bit, IC0_FALLINGCLR); | ||
| 365 | au_sync(); | ||
| 366 | } | ||
| 367 | |||
| 368 | static void au1x_ic1_maskack(unsigned int irq_nr) | ||
| 369 | { | ||
| 370 | unsigned int bit = irq_nr - AU1000_INTC1_INT_BASE; | ||
| 371 | |||
| 372 | au_writel(1 << bit, IC1_WAKECLR); | ||
| 373 | au_writel(1 << bit, IC1_MASKCLR); | ||
| 374 | au_writel(1 << bit, IC1_RISINGCLR); | ||
| 375 | au_writel(1 << bit, IC1_FALLINGCLR); | ||
| 376 | au_sync(); | ||
| 377 | } | ||
| 378 | |||
| 357 | static int au1x_ic1_setwake(unsigned int irq, unsigned int on) | 379 | static int au1x_ic1_setwake(unsigned int irq, unsigned int on) |
| 358 | { | 380 | { |
| 359 | unsigned int bit = irq - AU1000_INTC1_INT_BASE; | 381 | unsigned int bit = irq - AU1000_INTC1_INT_BASE; |
| @@ -379,25 +401,21 @@ static int au1x_ic1_setwake(unsigned int irq, unsigned int on) | |||
| 379 | /* | 401 | /* |
| 380 | * irq_chips for both ICs; this way the mask handlers can be | 402 | * irq_chips for both ICs; this way the mask handlers can be |
| 381 | * as short as possible. | 403 | * as short as possible. |
| 382 | * | ||
| 383 | * NOTE: the ->ack() callback is used by the handle_edge_irq | ||
| 384 | * flowhandler only, the ->mask_ack() one by handle_level_irq, | ||
| 385 | * so no need for an irq_chip for each type of irq (level/edge). | ||
| 386 | */ | 404 | */ |
| 387 | static struct irq_chip au1x_ic0_chip = { | 405 | static struct irq_chip au1x_ic0_chip = { |
| 388 | .name = "Alchemy-IC0", | 406 | .name = "Alchemy-IC0", |
| 389 | .ack = au1x_ic0_ack, /* edge */ | 407 | .ack = au1x_ic0_ack, |
| 390 | .mask = au1x_ic0_mask, | 408 | .mask = au1x_ic0_mask, |
| 391 | .mask_ack = au1x_ic0_mask, /* level */ | 409 | .mask_ack = au1x_ic0_maskack, |
| 392 | .unmask = au1x_ic0_unmask, | 410 | .unmask = au1x_ic0_unmask, |
| 393 | .set_type = au1x_ic_settype, | 411 | .set_type = au1x_ic_settype, |
| 394 | }; | 412 | }; |
| 395 | 413 | ||
| 396 | static struct irq_chip au1x_ic1_chip = { | 414 | static struct irq_chip au1x_ic1_chip = { |
| 397 | .name = "Alchemy-IC1", | 415 | .name = "Alchemy-IC1", |
| 398 | .ack = au1x_ic1_ack, /* edge */ | 416 | .ack = au1x_ic1_ack, |
| 399 | .mask = au1x_ic1_mask, | 417 | .mask = au1x_ic1_mask, |
| 400 | .mask_ack = au1x_ic1_mask, /* level */ | 418 | .mask_ack = au1x_ic1_maskack, |
| 401 | .unmask = au1x_ic1_unmask, | 419 | .unmask = au1x_ic1_unmask, |
| 402 | .set_type = au1x_ic_settype, | 420 | .set_type = au1x_ic_settype, |
| 403 | .set_wake = au1x_ic1_setwake, | 421 | .set_wake = au1x_ic1_setwake, |
diff --git a/arch/mips/alchemy/mtx-1/board_setup.c b/arch/mips/alchemy/mtx-1/board_setup.c index cc32c69a74ad..45b61c9b82b9 100644 --- a/arch/mips/alchemy/mtx-1/board_setup.c +++ b/arch/mips/alchemy/mtx-1/board_setup.c | |||
| @@ -69,6 +69,7 @@ void __init board_setup(void) | |||
| 69 | #else | 69 | #else |
| 70 | au_writel(0xf, Au1500_PCI_CFG); | 70 | au_writel(0xf, Au1500_PCI_CFG); |
| 71 | #endif | 71 | #endif |
| 72 | board_pci_idsel = mtx1_pci_idsel; | ||
| 72 | #endif | 73 | #endif |
| 73 | 74 | ||
| 74 | /* Initialize sys_pinfunc */ | 75 | /* Initialize sys_pinfunc */ |
| @@ -85,8 +86,6 @@ void __init board_setup(void) | |||
| 85 | alchemy_gpio_direction_output(211, 1); /* green on */ | 86 | alchemy_gpio_direction_output(211, 1); /* green on */ |
| 86 | alchemy_gpio_direction_output(212, 0); /* red off */ | 87 | alchemy_gpio_direction_output(212, 0); /* red off */ |
| 87 | 88 | ||
| 88 | board_pci_idsel = mtx1_pci_idsel; | ||
| 89 | |||
| 90 | printk(KERN_INFO "4G Systems MTX-1 Board\n"); | 89 | printk(KERN_INFO "4G Systems MTX-1 Board\n"); |
| 91 | } | 90 | } |
| 92 | 91 | ||
diff --git a/arch/mips/ar7/platform.c b/arch/mips/ar7/platform.c index e2278c04459d..835f3f0319ca 100644 --- a/arch/mips/ar7/platform.c +++ b/arch/mips/ar7/platform.c | |||
| @@ -503,6 +503,7 @@ static int __init ar7_register_devices(void) | |||
| 503 | { | 503 | { |
| 504 | u16 chip_id; | 504 | u16 chip_id; |
| 505 | int res; | 505 | int res; |
| 506 | u32 *bootcr, val; | ||
| 506 | #ifdef CONFIG_SERIAL_8250 | 507 | #ifdef CONFIG_SERIAL_8250 |
| 507 | static struct uart_port uart_port[2]; | 508 | static struct uart_port uart_port[2]; |
| 508 | 509 | ||
| @@ -595,7 +596,13 @@ static int __init ar7_register_devices(void) | |||
| 595 | 596 | ||
| 596 | ar7_wdt_res.end = ar7_wdt_res.start + 0x20; | 597 | ar7_wdt_res.end = ar7_wdt_res.start + 0x20; |
| 597 | 598 | ||
| 598 | res = platform_device_register(&ar7_wdt); | 599 | bootcr = (u32 *)ioremap_nocache(AR7_REGS_DCL, 4); |
| 600 | val = *bootcr; | ||
| 601 | iounmap(bootcr); | ||
| 602 | |||
| 603 | /* Register watchdog only if enabled in hardware */ | ||
| 604 | if (val & AR7_WDT_HW_ENA) | ||
| 605 | res = platform_device_register(&ar7_wdt); | ||
| 599 | 606 | ||
| 600 | return res; | 607 | return res; |
| 601 | } | 608 | } |
diff --git a/arch/mips/bcm63xx/Makefile b/arch/mips/bcm63xx/Makefile index c146d1ededed..00064b660809 100644 --- a/arch/mips/bcm63xx/Makefile +++ b/arch/mips/bcm63xx/Makefile | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | obj-y += clk.o cpu.o cs.o gpio.o irq.o prom.o setup.o timer.o \ | 1 | obj-y += clk.o cpu.o cs.o gpio.o irq.o prom.o setup.o timer.o \ |
| 2 | dev-dsp.o dev-enet.o dev-pcmcia.o dev-uart.o | 2 | dev-dsp.o dev-enet.o dev-pcmcia.o dev-uart.o dev-wdt.o |
| 3 | obj-$(CONFIG_EARLY_PRINTK) += early_printk.o | 3 | obj-$(CONFIG_EARLY_PRINTK) += early_printk.o |
| 4 | 4 | ||
| 5 | obj-y += boards/ | 5 | obj-y += boards/ |
diff --git a/arch/mips/bcm63xx/boards/board_bcm963xx.c b/arch/mips/bcm63xx/boards/board_bcm963xx.c index 78e155d21be6..05a35cf5963d 100644 --- a/arch/mips/bcm63xx/boards/board_bcm963xx.c +++ b/arch/mips/bcm63xx/boards/board_bcm963xx.c | |||
| @@ -24,7 +24,6 @@ | |||
| 24 | #include <bcm63xx_dev_enet.h> | 24 | #include <bcm63xx_dev_enet.h> |
| 25 | #include <bcm63xx_dev_dsp.h> | 25 | #include <bcm63xx_dev_dsp.h> |
| 26 | #include <bcm63xx_dev_pcmcia.h> | 26 | #include <bcm63xx_dev_pcmcia.h> |
| 27 | #include <bcm63xx_dev_uart.h> | ||
| 28 | #include <board_bcm963xx.h> | 27 | #include <board_bcm963xx.h> |
| 29 | 28 | ||
| 30 | #define PFX "board_bcm963xx: " | 29 | #define PFX "board_bcm963xx: " |
| @@ -794,8 +793,6 @@ int __init board_register_devices(void) | |||
| 794 | { | 793 | { |
| 795 | u32 val; | 794 | u32 val; |
| 796 | 795 | ||
| 797 | bcm63xx_uart_register(); | ||
| 798 | |||
| 799 | if (board.has_pccard) | 796 | if (board.has_pccard) |
| 800 | bcm63xx_pcmcia_register(); | 797 | bcm63xx_pcmcia_register(); |
| 801 | 798 | ||
diff --git a/arch/mips/bcm63xx/cpu.c b/arch/mips/bcm63xx/cpu.c index 6dc43f0483e8..70378bb5e3f9 100644 --- a/arch/mips/bcm63xx/cpu.c +++ b/arch/mips/bcm63xx/cpu.c | |||
| @@ -10,6 +10,7 @@ | |||
| 10 | #include <linux/kernel.h> | 10 | #include <linux/kernel.h> |
| 11 | #include <linux/module.h> | 11 | #include <linux/module.h> |
| 12 | #include <linux/cpu.h> | 12 | #include <linux/cpu.h> |
| 13 | #include <asm/cpu-info.h> | ||
| 13 | #include <bcm63xx_cpu.h> | 14 | #include <bcm63xx_cpu.h> |
| 14 | #include <bcm63xx_regs.h> | 15 | #include <bcm63xx_regs.h> |
| 15 | #include <bcm63xx_io.h> | 16 | #include <bcm63xx_io.h> |
| @@ -284,6 +285,7 @@ void __init bcm63xx_cpu_init(void) | |||
| 284 | { | 285 | { |
| 285 | unsigned int tmp, expected_cpu_id; | 286 | unsigned int tmp, expected_cpu_id; |
| 286 | struct cpuinfo_mips *c = ¤t_cpu_data; | 287 | struct cpuinfo_mips *c = ¤t_cpu_data; |
| 288 | unsigned int cpu = smp_processor_id(); | ||
| 287 | 289 | ||
| 288 | /* soc registers location depends on cpu type */ | 290 | /* soc registers location depends on cpu type */ |
| 289 | expected_cpu_id = 0; | 291 | expected_cpu_id = 0; |
| @@ -293,6 +295,7 @@ void __init bcm63xx_cpu_init(void) | |||
| 293 | * BCM6338 as the same PrId as BCM3302 see arch/mips/kernel/cpu-probe.c | 295 | * BCM6338 as the same PrId as BCM3302 see arch/mips/kernel/cpu-probe.c |
| 294 | */ | 296 | */ |
| 295 | case CPU_BCM3302: | 297 | case CPU_BCM3302: |
| 298 | __cpu_name[cpu] = "Broadcom BCM6338"; | ||
| 296 | expected_cpu_id = BCM6338_CPU_ID; | 299 | expected_cpu_id = BCM6338_CPU_ID; |
| 297 | bcm63xx_regs_base = bcm96338_regs_base; | 300 | bcm63xx_regs_base = bcm96338_regs_base; |
| 298 | bcm63xx_irqs = bcm96338_irqs; | 301 | bcm63xx_irqs = bcm96338_irqs; |
diff --git a/arch/mips/bcm63xx/dev-uart.c b/arch/mips/bcm63xx/dev-uart.c index 5f3d89c4a988..b0519461ad9b 100644 --- a/arch/mips/bcm63xx/dev-uart.c +++ b/arch/mips/bcm63xx/dev-uart.c | |||
| @@ -10,7 +10,6 @@ | |||
| 10 | #include <linux/kernel.h> | 10 | #include <linux/kernel.h> |
| 11 | #include <linux/platform_device.h> | 11 | #include <linux/platform_device.h> |
| 12 | #include <bcm63xx_cpu.h> | 12 | #include <bcm63xx_cpu.h> |
| 13 | #include <bcm63xx_dev_uart.h> | ||
| 14 | 13 | ||
| 15 | static struct resource uart_resources[] = { | 14 | static struct resource uart_resources[] = { |
| 16 | { | 15 | { |
| @@ -39,3 +38,4 @@ int __init bcm63xx_uart_register(void) | |||
| 39 | uart_resources[1].start = bcm63xx_get_irq_number(IRQ_UART0); | 38 | uart_resources[1].start = bcm63xx_get_irq_number(IRQ_UART0); |
| 40 | return platform_device_register(&bcm63xx_uart_device); | 39 | return platform_device_register(&bcm63xx_uart_device); |
| 41 | } | 40 | } |
| 41 | arch_initcall(bcm63xx_uart_register); | ||
diff --git a/arch/mips/bcm63xx/dev-wdt.c b/arch/mips/bcm63xx/dev-wdt.c new file mode 100644 index 000000000000..3e6c716a4c11 --- /dev/null +++ b/arch/mips/bcm63xx/dev-wdt.c | |||
| @@ -0,0 +1,37 @@ | |||
| 1 | /* | ||
| 2 | * This file is subject to the terms and conditions of the GNU General Public | ||
| 3 | * License. See the file "COPYING" in the main directory of this archive | ||
| 4 | * for more details. | ||
| 5 | * | ||
| 6 | * Copyright (C) 2008 Florian Fainelli <florian@openwrt.org> | ||
| 7 | */ | ||
| 8 | |||
| 9 | #include <linux/init.h> | ||
| 10 | #include <linux/kernel.h> | ||
| 11 | #include <linux/platform_device.h> | ||
| 12 | #include <bcm63xx_cpu.h> | ||
| 13 | |||
| 14 | static struct resource wdt_resources[] = { | ||
| 15 | { | ||
| 16 | .start = -1, /* filled at runtime */ | ||
| 17 | .end = -1, /* filled at runtime */ | ||
| 18 | .flags = IORESOURCE_MEM, | ||
| 19 | }, | ||
| 20 | }; | ||
| 21 | |||
| 22 | static struct platform_device bcm63xx_wdt_device = { | ||
| 23 | .name = "bcm63xx-wdt", | ||
| 24 | .id = 0, | ||
| 25 | .num_resources = ARRAY_SIZE(wdt_resources), | ||
| 26 | .resource = wdt_resources, | ||
| 27 | }; | ||
| 28 | |||
| 29 | int __init bcm63xx_wdt_register(void) | ||
| 30 | { | ||
| 31 | wdt_resources[0].start = bcm63xx_regset_address(RSET_WDT); | ||
| 32 | wdt_resources[0].end = wdt_resources[0].start; | ||
| 33 | wdt_resources[0].end += RSET_WDT_SIZE - 1; | ||
| 34 | |||
| 35 | return platform_device_register(&bcm63xx_wdt_device); | ||
| 36 | } | ||
| 37 | arch_initcall(bcm63xx_wdt_register); | ||
diff --git a/arch/mips/bcm63xx/setup.c b/arch/mips/bcm63xx/setup.c index b18a0ca926fa..d0056598fbfc 100644 --- a/arch/mips/bcm63xx/setup.c +++ b/arch/mips/bcm63xx/setup.c | |||
| @@ -75,7 +75,9 @@ void bcm63xx_machine_reboot(void) | |||
| 75 | bcm6348_a1_reboot(); | 75 | bcm6348_a1_reboot(); |
| 76 | 76 | ||
| 77 | printk(KERN_INFO "triggering watchdog soft-reset...\n"); | 77 | printk(KERN_INFO "triggering watchdog soft-reset...\n"); |
| 78 | bcm_perf_writel(SYS_PLL_SOFT_RESET, PERF_SYS_PLL_CTL_REG); | 78 | reg = bcm_perf_readl(PERF_SYS_PLL_CTL_REG); |
| 79 | reg |= SYS_PLL_SOFT_RESET; | ||
| 80 | bcm_perf_writel(reg, PERF_SYS_PLL_CTL_REG); | ||
| 79 | while (1) | 81 | while (1) |
| 80 | ; | 82 | ; |
| 81 | } | 83 | } |
diff --git a/arch/mips/cavium-octeon/octeon-irq.c b/arch/mips/cavium-octeon/octeon-irq.c index 384f1842bfb1..6f2acf09328d 100644 --- a/arch/mips/cavium-octeon/octeon-irq.c +++ b/arch/mips/cavium-octeon/octeon-irq.c | |||
| @@ -17,6 +17,15 @@ DEFINE_RWLOCK(octeon_irq_ciu0_rwlock); | |||
| 17 | DEFINE_RWLOCK(octeon_irq_ciu1_rwlock); | 17 | DEFINE_RWLOCK(octeon_irq_ciu1_rwlock); |
| 18 | DEFINE_SPINLOCK(octeon_irq_msi_lock); | 18 | DEFINE_SPINLOCK(octeon_irq_msi_lock); |
| 19 | 19 | ||
| 20 | static int octeon_coreid_for_cpu(int cpu) | ||
| 21 | { | ||
| 22 | #ifdef CONFIG_SMP | ||
| 23 | return cpu_logical_map(cpu); | ||
| 24 | #else | ||
| 25 | return cvmx_get_core_num(); | ||
| 26 | #endif | ||
| 27 | } | ||
| 28 | |||
| 20 | static void octeon_irq_core_ack(unsigned int irq) | 29 | static void octeon_irq_core_ack(unsigned int irq) |
| 21 | { | 30 | { |
| 22 | unsigned int bit = irq - OCTEON_IRQ_SW0; | 31 | unsigned int bit = irq - OCTEON_IRQ_SW0; |
| @@ -152,11 +161,10 @@ static void octeon_irq_ciu0_disable(unsigned int irq) | |||
| 152 | int bit = irq - OCTEON_IRQ_WORKQ0; /* Bit 0-63 of EN0 */ | 161 | int bit = irq - OCTEON_IRQ_WORKQ0; /* Bit 0-63 of EN0 */ |
| 153 | unsigned long flags; | 162 | unsigned long flags; |
| 154 | uint64_t en0; | 163 | uint64_t en0; |
| 155 | #ifdef CONFIG_SMP | ||
| 156 | int cpu; | 164 | int cpu; |
| 157 | write_lock_irqsave(&octeon_irq_ciu0_rwlock, flags); | 165 | write_lock_irqsave(&octeon_irq_ciu0_rwlock, flags); |
| 158 | for_each_online_cpu(cpu) { | 166 | for_each_online_cpu(cpu) { |
| 159 | int coreid = cpu_logical_map(cpu); | 167 | int coreid = octeon_coreid_for_cpu(cpu); |
| 160 | en0 = cvmx_read_csr(CVMX_CIU_INTX_EN0(coreid * 2)); | 168 | en0 = cvmx_read_csr(CVMX_CIU_INTX_EN0(coreid * 2)); |
| 161 | en0 &= ~(1ull << bit); | 169 | en0 &= ~(1ull << bit); |
| 162 | cvmx_write_csr(CVMX_CIU_INTX_EN0(coreid * 2), en0); | 170 | cvmx_write_csr(CVMX_CIU_INTX_EN0(coreid * 2), en0); |
| @@ -167,26 +175,57 @@ static void octeon_irq_ciu0_disable(unsigned int irq) | |||
| 167 | */ | 175 | */ |
| 168 | cvmx_read_csr(CVMX_CIU_INTX_EN0(cvmx_get_core_num() * 2)); | 176 | cvmx_read_csr(CVMX_CIU_INTX_EN0(cvmx_get_core_num() * 2)); |
| 169 | write_unlock_irqrestore(&octeon_irq_ciu0_rwlock, flags); | 177 | write_unlock_irqrestore(&octeon_irq_ciu0_rwlock, flags); |
| 170 | #else | 178 | } |
| 171 | int coreid = cvmx_get_core_num(); | 179 | |
| 172 | local_irq_save(flags); | 180 | /* |
| 173 | en0 = cvmx_read_csr(CVMX_CIU_INTX_EN0(coreid * 2)); | 181 | * Enable the irq on the current core for chips that have the EN*_W1{S,C} |
| 174 | en0 &= ~(1ull << bit); | 182 | * registers. |
| 175 | cvmx_write_csr(CVMX_CIU_INTX_EN0(coreid * 2), en0); | 183 | */ |
| 176 | cvmx_read_csr(CVMX_CIU_INTX_EN0(coreid * 2)); | 184 | static void octeon_irq_ciu0_enable_v2(unsigned int irq) |
| 177 | local_irq_restore(flags); | 185 | { |
| 178 | #endif | 186 | int index = cvmx_get_core_num() * 2; |
| 187 | u64 mask = 1ull << (irq - OCTEON_IRQ_WORKQ0); | ||
| 188 | |||
| 189 | cvmx_write_csr(CVMX_CIU_INTX_EN0_W1S(index), mask); | ||
| 190 | } | ||
| 191 | |||
| 192 | /* | ||
| 193 | * Disable the irq on the current core for chips that have the EN*_W1{S,C} | ||
| 194 | * registers. | ||
| 195 | */ | ||
| 196 | static void octeon_irq_ciu0_disable_v2(unsigned int irq) | ||
| 197 | { | ||
| 198 | int index = cvmx_get_core_num() * 2; | ||
| 199 | u64 mask = 1ull << (irq - OCTEON_IRQ_WORKQ0); | ||
| 200 | |||
| 201 | cvmx_write_csr(CVMX_CIU_INTX_EN0_W1C(index), mask); | ||
| 202 | } | ||
| 203 | |||
| 204 | /* | ||
| 205 | * Disable the irq on the all cores for chips that have the EN*_W1{S,C} | ||
| 206 | * registers. | ||
| 207 | */ | ||
| 208 | static void octeon_irq_ciu0_disable_all_v2(unsigned int irq) | ||
| 209 | { | ||
| 210 | u64 mask = 1ull << (irq - OCTEON_IRQ_WORKQ0); | ||
| 211 | int index; | ||
| 212 | int cpu; | ||
| 213 | for_each_online_cpu(cpu) { | ||
| 214 | index = octeon_coreid_for_cpu(cpu) * 2; | ||
| 215 | cvmx_write_csr(CVMX_CIU_INTX_EN0_W1C(index), mask); | ||
| 216 | } | ||
| 179 | } | 217 | } |
| 180 | 218 | ||
| 181 | #ifdef CONFIG_SMP | 219 | #ifdef CONFIG_SMP |
| 182 | static int octeon_irq_ciu0_set_affinity(unsigned int irq, const struct cpumask *dest) | 220 | static int octeon_irq_ciu0_set_affinity(unsigned int irq, const struct cpumask *dest) |
| 183 | { | 221 | { |
| 184 | int cpu; | 222 | int cpu; |
| 223 | unsigned long flags; | ||
| 185 | int bit = irq - OCTEON_IRQ_WORKQ0; /* Bit 0-63 of EN0 */ | 224 | int bit = irq - OCTEON_IRQ_WORKQ0; /* Bit 0-63 of EN0 */ |
| 186 | 225 | ||
| 187 | write_lock(&octeon_irq_ciu0_rwlock); | 226 | write_lock_irqsave(&octeon_irq_ciu0_rwlock, flags); |
| 188 | for_each_online_cpu(cpu) { | 227 | for_each_online_cpu(cpu) { |
| 189 | int coreid = cpu_logical_map(cpu); | 228 | int coreid = octeon_coreid_for_cpu(cpu); |
| 190 | uint64_t en0 = | 229 | uint64_t en0 = |
| 191 | cvmx_read_csr(CVMX_CIU_INTX_EN0(coreid * 2)); | 230 | cvmx_read_csr(CVMX_CIU_INTX_EN0(coreid * 2)); |
| 192 | if (cpumask_test_cpu(cpu, dest)) | 231 | if (cpumask_test_cpu(cpu, dest)) |
| @@ -200,11 +239,45 @@ static int octeon_irq_ciu0_set_affinity(unsigned int irq, const struct cpumask * | |||
| 200 | * of them are done. | 239 | * of them are done. |
| 201 | */ | 240 | */ |
| 202 | cvmx_read_csr(CVMX_CIU_INTX_EN0(cvmx_get_core_num() * 2)); | 241 | cvmx_read_csr(CVMX_CIU_INTX_EN0(cvmx_get_core_num() * 2)); |
| 203 | write_unlock(&octeon_irq_ciu0_rwlock); | 242 | write_unlock_irqrestore(&octeon_irq_ciu0_rwlock, flags); |
| 204 | 243 | ||
| 205 | return 0; | 244 | return 0; |
| 206 | } | 245 | } |
| 246 | |||
| 247 | /* | ||
| 248 | * Set affinity for the irq for chips that have the EN*_W1{S,C} | ||
| 249 | * registers. | ||
| 250 | */ | ||
| 251 | static int octeon_irq_ciu0_set_affinity_v2(unsigned int irq, | ||
| 252 | const struct cpumask *dest) | ||
| 253 | { | ||
| 254 | int cpu; | ||
| 255 | int index; | ||
| 256 | u64 mask = 1ull << (irq - OCTEON_IRQ_WORKQ0); | ||
| 257 | for_each_online_cpu(cpu) { | ||
| 258 | index = octeon_coreid_for_cpu(cpu) * 2; | ||
| 259 | if (cpumask_test_cpu(cpu, dest)) | ||
| 260 | cvmx_write_csr(CVMX_CIU_INTX_EN0_W1S(index), mask); | ||
| 261 | else | ||
| 262 | cvmx_write_csr(CVMX_CIU_INTX_EN0_W1C(index), mask); | ||
| 263 | } | ||
| 264 | return 0; | ||
| 265 | } | ||
| 266 | #endif | ||
| 267 | |||
| 268 | /* | ||
| 269 | * Newer octeon chips have support for lockless CIU operation. | ||
| 270 | */ | ||
| 271 | static struct irq_chip octeon_irq_chip_ciu0_v2 = { | ||
| 272 | .name = "CIU0", | ||
| 273 | .enable = octeon_irq_ciu0_enable_v2, | ||
| 274 | .disable = octeon_irq_ciu0_disable_all_v2, | ||
| 275 | .ack = octeon_irq_ciu0_disable_v2, | ||
| 276 | .eoi = octeon_irq_ciu0_enable_v2, | ||
| 277 | #ifdef CONFIG_SMP | ||
| 278 | .set_affinity = octeon_irq_ciu0_set_affinity_v2, | ||
| 207 | #endif | 279 | #endif |
| 280 | }; | ||
| 208 | 281 | ||
| 209 | static struct irq_chip octeon_irq_chip_ciu0 = { | 282 | static struct irq_chip octeon_irq_chip_ciu0 = { |
| 210 | .name = "CIU0", | 283 | .name = "CIU0", |
| @@ -269,11 +342,10 @@ static void octeon_irq_ciu1_disable(unsigned int irq) | |||
| 269 | int bit = irq - OCTEON_IRQ_WDOG0; /* Bit 0-63 of EN1 */ | 342 | int bit = irq - OCTEON_IRQ_WDOG0; /* Bit 0-63 of EN1 */ |
| 270 | unsigned long flags; | 343 | unsigned long flags; |
| 271 | uint64_t en1; | 344 | uint64_t en1; |
| 272 | #ifdef CONFIG_SMP | ||
| 273 | int cpu; | 345 | int cpu; |
| 274 | write_lock_irqsave(&octeon_irq_ciu1_rwlock, flags); | 346 | write_lock_irqsave(&octeon_irq_ciu1_rwlock, flags); |
| 275 | for_each_online_cpu(cpu) { | 347 | for_each_online_cpu(cpu) { |
| 276 | int coreid = cpu_logical_map(cpu); | 348 | int coreid = octeon_coreid_for_cpu(cpu); |
| 277 | en1 = cvmx_read_csr(CVMX_CIU_INTX_EN1(coreid * 2 + 1)); | 349 | en1 = cvmx_read_csr(CVMX_CIU_INTX_EN1(coreid * 2 + 1)); |
| 278 | en1 &= ~(1ull << bit); | 350 | en1 &= ~(1ull << bit); |
| 279 | cvmx_write_csr(CVMX_CIU_INTX_EN1(coreid * 2 + 1), en1); | 351 | cvmx_write_csr(CVMX_CIU_INTX_EN1(coreid * 2 + 1), en1); |
| @@ -284,26 +356,58 @@ static void octeon_irq_ciu1_disable(unsigned int irq) | |||
| 284 | */ | 356 | */ |
| 285 | cvmx_read_csr(CVMX_CIU_INTX_EN1(cvmx_get_core_num() * 2 + 1)); | 357 | cvmx_read_csr(CVMX_CIU_INTX_EN1(cvmx_get_core_num() * 2 + 1)); |
| 286 | write_unlock_irqrestore(&octeon_irq_ciu1_rwlock, flags); | 358 | write_unlock_irqrestore(&octeon_irq_ciu1_rwlock, flags); |
| 287 | #else | 359 | } |
| 288 | int coreid = cvmx_get_core_num(); | 360 | |
| 289 | local_irq_save(flags); | 361 | /* |
| 290 | en1 = cvmx_read_csr(CVMX_CIU_INTX_EN1(coreid * 2 + 1)); | 362 | * Enable the irq on the current core for chips that have the EN*_W1{S,C} |
| 291 | en1 &= ~(1ull << bit); | 363 | * registers. |
| 292 | cvmx_write_csr(CVMX_CIU_INTX_EN1(coreid * 2 + 1), en1); | 364 | */ |
| 293 | cvmx_read_csr(CVMX_CIU_INTX_EN1(coreid * 2 + 1)); | 365 | static void octeon_irq_ciu1_enable_v2(unsigned int irq) |
| 294 | local_irq_restore(flags); | 366 | { |
| 295 | #endif | 367 | int index = cvmx_get_core_num() * 2 + 1; |
| 368 | u64 mask = 1ull << (irq - OCTEON_IRQ_WDOG0); | ||
| 369 | |||
| 370 | cvmx_write_csr(CVMX_CIU_INTX_EN1_W1S(index), mask); | ||
| 371 | } | ||
| 372 | |||
| 373 | /* | ||
| 374 | * Disable the irq on the current core for chips that have the EN*_W1{S,C} | ||
| 375 | * registers. | ||
| 376 | */ | ||
| 377 | static void octeon_irq_ciu1_disable_v2(unsigned int irq) | ||
| 378 | { | ||
| 379 | int index = cvmx_get_core_num() * 2 + 1; | ||
| 380 | u64 mask = 1ull << (irq - OCTEON_IRQ_WDOG0); | ||
| 381 | |||
| 382 | cvmx_write_csr(CVMX_CIU_INTX_EN1_W1C(index), mask); | ||
| 383 | } | ||
| 384 | |||
| 385 | /* | ||
| 386 | * Disable the irq on the all cores for chips that have the EN*_W1{S,C} | ||
| 387 | * registers. | ||
| 388 | */ | ||
| 389 | static void octeon_irq_ciu1_disable_all_v2(unsigned int irq) | ||
| 390 | { | ||
| 391 | u64 mask = 1ull << (irq - OCTEON_IRQ_WDOG0); | ||
| 392 | int index; | ||
| 393 | int cpu; | ||
| 394 | for_each_online_cpu(cpu) { | ||
| 395 | index = octeon_coreid_for_cpu(cpu) * 2 + 1; | ||
| 396 | cvmx_write_csr(CVMX_CIU_INTX_EN1_W1C(index), mask); | ||
| 397 | } | ||
| 296 | } | 398 | } |
| 297 | 399 | ||
| 298 | #ifdef CONFIG_SMP | 400 | #ifdef CONFIG_SMP |
| 299 | static int octeon_irq_ciu1_set_affinity(unsigned int irq, const struct cpumask *dest) | 401 | static int octeon_irq_ciu1_set_affinity(unsigned int irq, |
| 402 | const struct cpumask *dest) | ||
| 300 | { | 403 | { |
| 301 | int cpu; | 404 | int cpu; |
| 405 | unsigned long flags; | ||
| 302 | int bit = irq - OCTEON_IRQ_WDOG0; /* Bit 0-63 of EN1 */ | 406 | int bit = irq - OCTEON_IRQ_WDOG0; /* Bit 0-63 of EN1 */ |
| 303 | 407 | ||
| 304 | write_lock(&octeon_irq_ciu1_rwlock); | 408 | write_lock_irqsave(&octeon_irq_ciu1_rwlock, flags); |
| 305 | for_each_online_cpu(cpu) { | 409 | for_each_online_cpu(cpu) { |
| 306 | int coreid = cpu_logical_map(cpu); | 410 | int coreid = octeon_coreid_for_cpu(cpu); |
| 307 | uint64_t en1 = | 411 | uint64_t en1 = |
| 308 | cvmx_read_csr(CVMX_CIU_INTX_EN1 | 412 | cvmx_read_csr(CVMX_CIU_INTX_EN1 |
| 309 | (coreid * 2 + 1)); | 413 | (coreid * 2 + 1)); |
| @@ -318,12 +422,46 @@ static int octeon_irq_ciu1_set_affinity(unsigned int irq, const struct cpumask * | |||
| 318 | * of them are done. | 422 | * of them are done. |
| 319 | */ | 423 | */ |
| 320 | cvmx_read_csr(CVMX_CIU_INTX_EN1(cvmx_get_core_num() * 2 + 1)); | 424 | cvmx_read_csr(CVMX_CIU_INTX_EN1(cvmx_get_core_num() * 2 + 1)); |
| 321 | write_unlock(&octeon_irq_ciu1_rwlock); | 425 | write_unlock_irqrestore(&octeon_irq_ciu1_rwlock, flags); |
| 426 | |||
| 427 | return 0; | ||
| 428 | } | ||
| 322 | 429 | ||
| 430 | /* | ||
| 431 | * Set affinity for the irq for chips that have the EN*_W1{S,C} | ||
| 432 | * registers. | ||
| 433 | */ | ||
| 434 | static int octeon_irq_ciu1_set_affinity_v2(unsigned int irq, | ||
| 435 | const struct cpumask *dest) | ||
| 436 | { | ||
| 437 | int cpu; | ||
| 438 | int index; | ||
| 439 | u64 mask = 1ull << (irq - OCTEON_IRQ_WDOG0); | ||
| 440 | for_each_online_cpu(cpu) { | ||
| 441 | index = octeon_coreid_for_cpu(cpu) * 2 + 1; | ||
| 442 | if (cpumask_test_cpu(cpu, dest)) | ||
| 443 | cvmx_write_csr(CVMX_CIU_INTX_EN1_W1S(index), mask); | ||
| 444 | else | ||
| 445 | cvmx_write_csr(CVMX_CIU_INTX_EN1_W1C(index), mask); | ||
| 446 | } | ||
| 323 | return 0; | 447 | return 0; |
| 324 | } | 448 | } |
| 325 | #endif | 449 | #endif |
| 326 | 450 | ||
| 451 | /* | ||
| 452 | * Newer octeon chips have support for lockless CIU operation. | ||
| 453 | */ | ||
| 454 | static struct irq_chip octeon_irq_chip_ciu1_v2 = { | ||
| 455 | .name = "CIU0", | ||
| 456 | .enable = octeon_irq_ciu1_enable_v2, | ||
| 457 | .disable = octeon_irq_ciu1_disable_all_v2, | ||
| 458 | .ack = octeon_irq_ciu1_disable_v2, | ||
| 459 | .eoi = octeon_irq_ciu1_enable_v2, | ||
| 460 | #ifdef CONFIG_SMP | ||
| 461 | .set_affinity = octeon_irq_ciu1_set_affinity_v2, | ||
| 462 | #endif | ||
| 463 | }; | ||
| 464 | |||
| 327 | static struct irq_chip octeon_irq_chip_ciu1 = { | 465 | static struct irq_chip octeon_irq_chip_ciu1 = { |
| 328 | .name = "CIU1", | 466 | .name = "CIU1", |
| 329 | .enable = octeon_irq_ciu1_enable, | 467 | .enable = octeon_irq_ciu1_enable, |
| @@ -420,6 +558,8 @@ static struct irq_chip octeon_irq_chip_msi = { | |||
| 420 | void __init arch_init_irq(void) | 558 | void __init arch_init_irq(void) |
| 421 | { | 559 | { |
| 422 | int irq; | 560 | int irq; |
| 561 | struct irq_chip *chip0; | ||
| 562 | struct irq_chip *chip1; | ||
| 423 | 563 | ||
| 424 | #ifdef CONFIG_SMP | 564 | #ifdef CONFIG_SMP |
| 425 | /* Set the default affinity to the boot cpu. */ | 565 | /* Set the default affinity to the boot cpu. */ |
| @@ -430,6 +570,16 @@ void __init arch_init_irq(void) | |||
| 430 | if (NR_IRQS < OCTEON_IRQ_LAST) | 570 | if (NR_IRQS < OCTEON_IRQ_LAST) |
| 431 | pr_err("octeon_irq_init: NR_IRQS is set too low\n"); | 571 | pr_err("octeon_irq_init: NR_IRQS is set too low\n"); |
| 432 | 572 | ||
| 573 | if (OCTEON_IS_MODEL(OCTEON_CN58XX_PASS2_X) || | ||
| 574 | OCTEON_IS_MODEL(OCTEON_CN56XX_PASS2_X) || | ||
| 575 | OCTEON_IS_MODEL(OCTEON_CN52XX_PASS2_X)) { | ||
| 576 | chip0 = &octeon_irq_chip_ciu0_v2; | ||
| 577 | chip1 = &octeon_irq_chip_ciu1_v2; | ||
| 578 | } else { | ||
| 579 | chip0 = &octeon_irq_chip_ciu0; | ||
| 580 | chip1 = &octeon_irq_chip_ciu1; | ||
| 581 | } | ||
| 582 | |||
| 433 | /* 0 - 15 reserved for i8259 master and slave controller. */ | 583 | /* 0 - 15 reserved for i8259 master and slave controller. */ |
| 434 | 584 | ||
| 435 | /* 17 - 23 Mips internal */ | 585 | /* 17 - 23 Mips internal */ |
| @@ -440,14 +590,12 @@ void __init arch_init_irq(void) | |||
| 440 | 590 | ||
| 441 | /* 24 - 87 CIU_INT_SUM0 */ | 591 | /* 24 - 87 CIU_INT_SUM0 */ |
| 442 | for (irq = OCTEON_IRQ_WORKQ0; irq <= OCTEON_IRQ_BOOTDMA; irq++) { | 592 | for (irq = OCTEON_IRQ_WORKQ0; irq <= OCTEON_IRQ_BOOTDMA; irq++) { |
| 443 | set_irq_chip_and_handler(irq, &octeon_irq_chip_ciu0, | 593 | set_irq_chip_and_handler(irq, chip0, handle_percpu_irq); |
| 444 | handle_percpu_irq); | ||
| 445 | } | 594 | } |
| 446 | 595 | ||
| 447 | /* 88 - 151 CIU_INT_SUM1 */ | 596 | /* 88 - 151 CIU_INT_SUM1 */ |
| 448 | for (irq = OCTEON_IRQ_WDOG0; irq <= OCTEON_IRQ_RESERVED151; irq++) { | 597 | for (irq = OCTEON_IRQ_WDOG0; irq <= OCTEON_IRQ_RESERVED151; irq++) { |
| 449 | set_irq_chip_and_handler(irq, &octeon_irq_chip_ciu1, | 598 | set_irq_chip_and_handler(irq, chip1, handle_percpu_irq); |
| 450 | handle_percpu_irq); | ||
| 451 | } | 599 | } |
| 452 | 600 | ||
| 453 | #ifdef CONFIG_PCI_MSI | 601 | #ifdef CONFIG_PCI_MSI |
| @@ -505,14 +653,10 @@ asmlinkage void plat_irq_dispatch(void) | |||
| 505 | #ifdef CONFIG_HOTPLUG_CPU | 653 | #ifdef CONFIG_HOTPLUG_CPU |
| 506 | static int is_irq_enabled_on_cpu(unsigned int irq, unsigned int cpu) | 654 | static int is_irq_enabled_on_cpu(unsigned int irq, unsigned int cpu) |
| 507 | { | 655 | { |
| 508 | unsigned int isset; | 656 | unsigned int isset; |
| 509 | #ifdef CONFIG_SMP | 657 | int coreid = octeon_coreid_for_cpu(cpu); |
| 510 | int coreid = cpu_logical_map(cpu); | ||
| 511 | #else | ||
| 512 | int coreid = cvmx_get_core_num(); | ||
| 513 | #endif | ||
| 514 | int bit = (irq < OCTEON_IRQ_WDOG0) ? | 658 | int bit = (irq < OCTEON_IRQ_WDOG0) ? |
| 515 | irq - OCTEON_IRQ_WORKQ0 : irq - OCTEON_IRQ_WDOG0; | 659 | irq - OCTEON_IRQ_WORKQ0 : irq - OCTEON_IRQ_WDOG0; |
| 516 | if (irq < 64) { | 660 | if (irq < 64) { |
| 517 | isset = (cvmx_read_csr(CVMX_CIU_INTX_EN0(coreid * 2)) & | 661 | isset = (cvmx_read_csr(CVMX_CIU_INTX_EN0(coreid * 2)) & |
| 518 | (1ull << bit)) >> bit; | 662 | (1ull << bit)) >> bit; |
diff --git a/arch/mips/cavium-octeon/smp.c b/arch/mips/cavium-octeon/smp.c index 32d51a31dc48..c198efdf583e 100644 --- a/arch/mips/cavium-octeon/smp.c +++ b/arch/mips/cavium-octeon/smp.c | |||
| @@ -65,11 +65,12 @@ void octeon_send_ipi_single(int cpu, unsigned int action) | |||
| 65 | cvmx_write_csr(CVMX_CIU_MBOX_SETX(coreid), action); | 65 | cvmx_write_csr(CVMX_CIU_MBOX_SETX(coreid), action); |
| 66 | } | 66 | } |
| 67 | 67 | ||
| 68 | static inline void octeon_send_ipi_mask(cpumask_t mask, unsigned int action) | 68 | static inline void octeon_send_ipi_mask(const struct cpumask *mask, |
| 69 | unsigned int action) | ||
| 69 | { | 70 | { |
| 70 | unsigned int i; | 71 | unsigned int i; |
| 71 | 72 | ||
| 72 | for_each_cpu_mask(i, mask) | 73 | for_each_cpu_mask(i, *mask) |
| 73 | octeon_send_ipi_single(i, action); | 74 | octeon_send_ipi_single(i, action); |
| 74 | } | 75 | } |
| 75 | 76 | ||
diff --git a/arch/mips/include/asm/fixmap.h b/arch/mips/include/asm/fixmap.h index efeddc8db8b1..0b89b83e2055 100644 --- a/arch/mips/include/asm/fixmap.h +++ b/arch/mips/include/asm/fixmap.h | |||
| @@ -48,9 +48,9 @@ enum fixed_addresses { | |||
| 48 | #define FIX_N_COLOURS 8 | 48 | #define FIX_N_COLOURS 8 |
| 49 | FIX_CMAP_BEGIN, | 49 | FIX_CMAP_BEGIN, |
| 50 | #ifdef CONFIG_MIPS_MT_SMTC | 50 | #ifdef CONFIG_MIPS_MT_SMTC |
| 51 | FIX_CMAP_END = FIX_CMAP_BEGIN + (FIX_N_COLOURS * NR_CPUS), | 51 | FIX_CMAP_END = FIX_CMAP_BEGIN + (FIX_N_COLOURS * NR_CPUS * 2), |
| 52 | #else | 52 | #else |
| 53 | FIX_CMAP_END = FIX_CMAP_BEGIN + FIX_N_COLOURS, | 53 | FIX_CMAP_END = FIX_CMAP_BEGIN + (FIX_N_COLOURS * 2), |
| 54 | #endif | 54 | #endif |
| 55 | #ifdef CONFIG_HIGHMEM | 55 | #ifdef CONFIG_HIGHMEM |
| 56 | /* reserved pte's for temporary kernel mappings */ | 56 | /* reserved pte's for temporary kernel mappings */ |
diff --git a/arch/mips/include/asm/gcmpregs.h b/arch/mips/include/asm/gcmpregs.h index 36fd969d64d6..c0cf76a2ca89 100644 --- a/arch/mips/include/asm/gcmpregs.h +++ b/arch/mips/include/asm/gcmpregs.h | |||
| @@ -19,15 +19,20 @@ | |||
| 19 | #define GCMP_GDB_OFS 0x8000 /* Global Debug Block */ | 19 | #define GCMP_GDB_OFS 0x8000 /* Global Debug Block */ |
| 20 | 20 | ||
| 21 | /* Offsets to individual GCMP registers from GCMP base */ | 21 | /* Offsets to individual GCMP registers from GCMP base */ |
| 22 | #define GCMPOFS(block, tag, reg) (GCMP_##block##_OFS + GCMP_##tag##_##reg##_OFS) | 22 | #define GCMPOFS(block, tag, reg) \ |
| 23 | (GCMP_##block##_OFS + GCMP_##tag##_##reg##_OFS) | ||
| 24 | #define GCMPOFSn(block, tag, reg, n) \ | ||
| 25 | (GCMP_##block##_OFS + GCMP_##tag##_##reg##_OFS(n)) | ||
| 23 | 26 | ||
| 24 | #define GCMPGCBOFS(reg) GCMPOFS(GCB, GCB, reg) | 27 | #define GCMPGCBOFS(reg) GCMPOFS(GCB, GCB, reg) |
| 28 | #define GCMPGCBOFSn(reg, n) GCMPOFSn(GCB, GCB, reg, n) | ||
| 25 | #define GCMPCLCBOFS(reg) GCMPOFS(CLCB, CCB, reg) | 29 | #define GCMPCLCBOFS(reg) GCMPOFS(CLCB, CCB, reg) |
| 26 | #define GCMPCOCBOFS(reg) GCMPOFS(COCB, CCB, reg) | 30 | #define GCMPCOCBOFS(reg) GCMPOFS(COCB, CCB, reg) |
| 27 | #define GCMPGDBOFS(reg) GCMPOFS(GDB, GDB, reg) | 31 | #define GCMPGDBOFS(reg) GCMPOFS(GDB, GDB, reg) |
| 28 | 32 | ||
| 29 | /* GCMP register access */ | 33 | /* GCMP register access */ |
| 30 | #define GCMPGCB(reg) REGP(_gcmp_base, GCMPGCBOFS(reg)) | 34 | #define GCMPGCB(reg) REGP(_gcmp_base, GCMPGCBOFS(reg)) |
| 35 | #define GCMPGCBn(reg, n) REGP(_gcmp_base, GCMPGCBOFSn(reg, n)) | ||
| 31 | #define GCMPCLCB(reg) REGP(_gcmp_base, GCMPCLCBOFS(reg)) | 36 | #define GCMPCLCB(reg) REGP(_gcmp_base, GCMPCLCBOFS(reg)) |
| 32 | #define GCMPCOCB(reg) REGP(_gcmp_base, GCMPCOCBOFS(reg)) | 37 | #define GCMPCOCB(reg) REGP(_gcmp_base, GCMPCOCBOFS(reg)) |
| 33 | #define GCMPGDB(reg) REGP(_gcmp_base, GCMPGDBOFS(reg)) | 38 | #define GCMPGDB(reg) REGP(_gcmp_base, GCMPGDBOFS(reg)) |
| @@ -49,10 +54,10 @@ | |||
| 49 | #define GCMP_GCB_GCMPB_GCMPBASE_MSK GCMPGCBMSK(GCMPB_GCMPBASE, 17) | 54 | #define GCMP_GCB_GCMPB_GCMPBASE_MSK GCMPGCBMSK(GCMPB_GCMPBASE, 17) |
| 50 | #define GCMP_GCB_GCMPB_CMDEFTGT_SHF 0 | 55 | #define GCMP_GCB_GCMPB_CMDEFTGT_SHF 0 |
| 51 | #define GCMP_GCB_GCMPB_CMDEFTGT_MSK GCMPGCBMSK(GCMPB_CMDEFTGT, 2) | 56 | #define GCMP_GCB_GCMPB_CMDEFTGT_MSK GCMPGCBMSK(GCMPB_CMDEFTGT, 2) |
| 52 | #define GCMP_GCB_GCMPB_CMDEFTGT_MEM 0 | 57 | #define GCMP_GCB_GCMPB_CMDEFTGT_DISABLED 0 |
| 53 | #define GCMP_GCB_GCMPB_CMDEFTGT_MEM1 1 | 58 | #define GCMP_GCB_GCMPB_CMDEFTGT_MEM 1 |
| 54 | #define GCMP_GCB_GCMPB_CMDEFTGT_IOCU1 2 | 59 | #define GCMP_GCB_GCMPB_CMDEFTGT_IOCU1 2 |
| 55 | #define GCMP_GCB_GCMPB_CMDEFTGT_IOCU2 3 | 60 | #define GCMP_GCB_GCMPB_CMDEFTGT_IOCU2 3 |
| 56 | #define GCMP_GCB_CCMC_OFS 0x0010 /* Global CM Control */ | 61 | #define GCMP_GCB_CCMC_OFS 0x0010 /* Global CM Control */ |
| 57 | #define GCMP_GCB_GCSRAP_OFS 0x0020 /* Global CSR Access Privilege */ | 62 | #define GCMP_GCB_GCSRAP_OFS 0x0020 /* Global CSR Access Privilege */ |
| 58 | #define GCMP_GCB_GCSRAP_CMACCESS_SHF 0 | 63 | #define GCMP_GCB_GCSRAP_CMACCESS_SHF 0 |
| @@ -115,5 +120,6 @@ | |||
| 115 | #define GCMP_CCB_DBGGROUP_OFS 0x0100 /* DebugBreak Group */ | 120 | #define GCMP_CCB_DBGGROUP_OFS 0x0100 /* DebugBreak Group */ |
| 116 | 121 | ||
| 117 | extern int __init gcmp_probe(unsigned long, unsigned long); | 122 | extern int __init gcmp_probe(unsigned long, unsigned long); |
| 118 | 123 | extern int __init gcmp_niocu(void); | |
| 124 | extern void __init gcmp_setregion(int, unsigned long, unsigned long, int); | ||
| 119 | #endif /* _ASM_GCMPREGS_H */ | 125 | #endif /* _ASM_GCMPREGS_H */ |
diff --git a/arch/mips/include/asm/gic.h b/arch/mips/include/asm/gic.h index a8f57341f123..9b9436a4d816 100644 --- a/arch/mips/include/asm/gic.h +++ b/arch/mips/include/asm/gic.h | |||
| @@ -12,7 +12,6 @@ | |||
| 12 | #define _ASM_GICREGS_H | 12 | #define _ASM_GICREGS_H |
| 13 | 13 | ||
| 14 | #undef GICISBYTELITTLEENDIAN | 14 | #undef GICISBYTELITTLEENDIAN |
| 15 | #define GICISWORDLITTLEENDIAN | ||
| 16 | 15 | ||
| 17 | /* Constants */ | 16 | /* Constants */ |
| 18 | #define GIC_POL_POS 1 | 17 | #define GIC_POL_POS 1 |
| @@ -20,11 +19,7 @@ | |||
| 20 | #define GIC_TRIG_EDGE 1 | 19 | #define GIC_TRIG_EDGE 1 |
| 21 | #define GIC_TRIG_LEVEL 0 | 20 | #define GIC_TRIG_LEVEL 0 |
| 22 | 21 | ||
| 23 | #ifdef CONFIG_SMP | ||
| 24 | #define GIC_NUM_INTRS (24 + NR_CPUS * 2) | 22 | #define GIC_NUM_INTRS (24 + NR_CPUS * 2) |
| 25 | #else | ||
| 26 | #define GIC_NUM_INTRS 32 | ||
| 27 | #endif | ||
| 28 | 23 | ||
| 29 | #define MSK(n) ((1 << (n)) - 1) | 24 | #define MSK(n) ((1 << (n)) - 1) |
| 30 | #define REG32(addr) (*(volatile unsigned int *) (addr)) | 25 | #define REG32(addr) (*(volatile unsigned int *) (addr)) |
| @@ -70,13 +65,13 @@ | |||
| 70 | #define USM_VISIBLE_SECTION_SIZE 0x10000 | 65 | #define USM_VISIBLE_SECTION_SIZE 0x10000 |
| 71 | 66 | ||
| 72 | /* Register Map for Shared Section */ | 67 | /* Register Map for Shared Section */ |
| 73 | #if defined(CONFIG_CPU_LITTLE_ENDIAN) || defined(GICISWORDLITTLEENDIAN) | ||
| 74 | 68 | ||
| 75 | #define GIC_SH_CONFIG_OFS 0x0000 | 69 | #define GIC_SH_CONFIG_OFS 0x0000 |
| 76 | 70 | ||
| 77 | /* Shared Global Counter */ | 71 | /* Shared Global Counter */ |
| 78 | #define GIC_SH_COUNTER_31_00_OFS 0x0010 | 72 | #define GIC_SH_COUNTER_31_00_OFS 0x0010 |
| 79 | #define GIC_SH_COUNTER_63_32_OFS 0x0014 | 73 | #define GIC_SH_COUNTER_63_32_OFS 0x0014 |
| 74 | #define GIC_SH_REVISIONID_OFS 0x0020 | ||
| 80 | 75 | ||
| 81 | /* Interrupt Polarity */ | 76 | /* Interrupt Polarity */ |
| 82 | #define GIC_SH_POL_31_0_OFS 0x0100 | 77 | #define GIC_SH_POL_31_0_OFS 0x0100 |
| @@ -164,24 +159,31 @@ | |||
| 164 | (GIC_SH_INTR_MAP_TO_VPE_BASE_OFS + (32 * (intr)) + (((vpe) / 32) * 4)) | 159 | (GIC_SH_INTR_MAP_TO_VPE_BASE_OFS + (32 * (intr)) + (((vpe) / 32) * 4)) |
| 165 | #define GIC_SH_MAP_TO_VPE_REG_BIT(vpe) (1 << ((vpe) % 32)) | 160 | #define GIC_SH_MAP_TO_VPE_REG_BIT(vpe) (1 << ((vpe) % 32)) |
| 166 | 161 | ||
| 162 | /* Convert an interrupt number to a byte offset/bit for multi-word registers */ | ||
| 163 | #define GIC_INTR_OFS(intr) (((intr) / 32)*4) | ||
| 164 | #define GIC_INTR_BIT(intr) ((intr) % 32) | ||
| 165 | |||
| 167 | /* Polarity : Reset Value is always 0 */ | 166 | /* Polarity : Reset Value is always 0 */ |
| 168 | #define GIC_SH_SET_POLARITY_OFS 0x0100 | 167 | #define GIC_SH_SET_POLARITY_OFS 0x0100 |
| 169 | #define GIC_SET_POLARITY(intr, pol) \ | 168 | #define GIC_SET_POLARITY(intr, pol) \ |
| 170 | GICBIS(GIC_REG_ADDR(SHARED, GIC_SH_SET_POLARITY_OFS + (((intr) / 32) * 4)), (pol) << ((intr) % 32)) | 169 | GICBIS(GIC_REG_ADDR(SHARED, GIC_SH_SET_POLARITY_OFS + \ |
| 170 | GIC_INTR_OFS(intr)), (pol) << GIC_INTR_BIT(intr)) | ||
| 171 | 171 | ||
| 172 | /* Triggering : Reset Value is always 0 */ | 172 | /* Triggering : Reset Value is always 0 */ |
| 173 | #define GIC_SH_SET_TRIGGER_OFS 0x0180 | 173 | #define GIC_SH_SET_TRIGGER_OFS 0x0180 |
| 174 | #define GIC_SET_TRIGGER(intr, trig) \ | 174 | #define GIC_SET_TRIGGER(intr, trig) \ |
| 175 | GICBIS(GIC_REG_ADDR(SHARED, GIC_SH_SET_TRIGGER_OFS + (((intr) / 32) * 4)), (trig) << ((intr) % 32)) | 175 | GICBIS(GIC_REG_ADDR(SHARED, GIC_SH_SET_TRIGGER_OFS + \ |
| 176 | GIC_INTR_OFS(intr)), (trig) << GIC_INTR_BIT(intr)) | ||
| 176 | 177 | ||
| 177 | /* Mask manipulation */ | 178 | /* Mask manipulation */ |
| 178 | #define GIC_SH_SMASK_OFS 0x0380 | 179 | #define GIC_SH_SMASK_OFS 0x0380 |
| 179 | #define GIC_SET_INTR_MASK(intr, val) \ | 180 | #define GIC_SET_INTR_MASK(intr) \ |
| 180 | GICWRITE(GIC_REG_ADDR(SHARED, GIC_SH_SMASK_OFS + (((intr) / 32) * 4)), ((val) << ((intr) % 32))) | 181 | GICWRITE(GIC_REG_ADDR(SHARED, GIC_SH_SMASK_OFS + \ |
| 181 | 182 | GIC_INTR_OFS(intr)), 1 << GIC_INTR_BIT(intr)) | |
| 182 | #define GIC_SH_RMASK_OFS 0x0300 | 183 | #define GIC_SH_RMASK_OFS 0x0300 |
| 183 | #define GIC_CLR_INTR_MASK(intr, val) \ | 184 | #define GIC_CLR_INTR_MASK(intr) \ |
| 184 | GICWRITE(GIC_REG_ADDR(SHARED, GIC_SH_RMASK_OFS + (((intr) / 32) * 4)), ((val) << ((intr) % 32))) | 185 | GICWRITE(GIC_REG_ADDR(SHARED, GIC_SH_RMASK_OFS + \ |
| 186 | GIC_INTR_OFS(intr)), 1 << GIC_INTR_BIT(intr)) | ||
| 185 | 187 | ||
| 186 | /* Register Map for Local Section */ | 188 | /* Register Map for Local Section */ |
| 187 | #define GIC_VPE_CTL_OFS 0x0000 | 189 | #define GIC_VPE_CTL_OFS 0x0000 |
| @@ -219,161 +221,6 @@ | |||
| 219 | #define GIC_UMV_SH_COUNTER_31_00_OFS 0x0000 | 221 | #define GIC_UMV_SH_COUNTER_31_00_OFS 0x0000 |
| 220 | #define GIC_UMV_SH_COUNTER_63_32_OFS 0x0004 | 222 | #define GIC_UMV_SH_COUNTER_63_32_OFS 0x0004 |
| 221 | 223 | ||
| 222 | #else /* CONFIG_CPU_BIG_ENDIAN */ | ||
| 223 | |||
| 224 | #define GIC_SH_CONFIG_OFS 0x0000 | ||
| 225 | |||
| 226 | /* Shared Global Counter */ | ||
| 227 | #define GIC_SH_COUNTER_31_00_OFS 0x0014 | ||
| 228 | #define GIC_SH_COUNTER_63_32_OFS 0x0010 | ||
| 229 | |||
| 230 | /* Interrupt Polarity */ | ||
| 231 | #define GIC_SH_POL_31_0_OFS 0x0104 | ||
| 232 | #define GIC_SH_POL_63_32_OFS 0x0100 | ||
| 233 | #define GIC_SH_POL_95_64_OFS 0x010c | ||
| 234 | #define GIC_SH_POL_127_96_OFS 0x0108 | ||
| 235 | #define GIC_SH_POL_159_128_OFS 0x0114 | ||
| 236 | #define GIC_SH_POL_191_160_OFS 0x0110 | ||
| 237 | #define GIC_SH_POL_223_192_OFS 0x011c | ||
| 238 | #define GIC_SH_POL_255_224_OFS 0x0118 | ||
| 239 | |||
| 240 | /* Edge/Level Triggering */ | ||
| 241 | #define GIC_SH_TRIG_31_0_OFS 0x0184 | ||
| 242 | #define GIC_SH_TRIG_63_32_OFS 0x0180 | ||
| 243 | #define GIC_SH_TRIG_95_64_OFS 0x018c | ||
| 244 | #define GIC_SH_TRIG_127_96_OFS 0x0188 | ||
| 245 | #define GIC_SH_TRIG_159_128_OFS 0x0194 | ||
| 246 | #define GIC_SH_TRIG_191_160_OFS 0x0190 | ||
| 247 | #define GIC_SH_TRIG_223_192_OFS 0x019c | ||
| 248 | #define GIC_SH_TRIG_255_224_OFS 0x0198 | ||
| 249 | |||
| 250 | /* Dual Edge Triggering */ | ||
| 251 | #define GIC_SH_DUAL_31_0_OFS 0x0204 | ||
| 252 | #define GIC_SH_DUAL_63_32_OFS 0x0200 | ||
| 253 | #define GIC_SH_DUAL_95_64_OFS 0x020c | ||
| 254 | #define GIC_SH_DUAL_127_96_OFS 0x0208 | ||
| 255 | #define GIC_SH_DUAL_159_128_OFS 0x0214 | ||
| 256 | #define GIC_SH_DUAL_191_160_OFS 0x0210 | ||
| 257 | #define GIC_SH_DUAL_223_192_OFS 0x021c | ||
| 258 | #define GIC_SH_DUAL_255_224_OFS 0x0218 | ||
| 259 | |||
| 260 | /* Set/Clear corresponding bit in Edge Detect Register */ | ||
| 261 | #define GIC_SH_WEDGE_OFS 0x0280 | ||
| 262 | |||
| 263 | /* Reset Mask - Disables Interrupt */ | ||
| 264 | #define GIC_SH_RMASK_31_0_OFS 0x0304 | ||
| 265 | #define GIC_SH_RMASK_63_32_OFS 0x0300 | ||
| 266 | #define GIC_SH_RMASK_95_64_OFS 0x030c | ||
| 267 | #define GIC_SH_RMASK_127_96_OFS 0x0308 | ||
| 268 | #define GIC_SH_RMASK_159_128_OFS 0x0314 | ||
| 269 | #define GIC_SH_RMASK_191_160_OFS 0x0310 | ||
| 270 | #define GIC_SH_RMASK_223_192_OFS 0x031c | ||
| 271 | #define GIC_SH_RMASK_255_224_OFS 0x0318 | ||
| 272 | |||
| 273 | /* Set Mask (WO) - Enables Interrupt */ | ||
| 274 | #define GIC_SH_SMASK_31_0_OFS 0x0384 | ||
| 275 | #define GIC_SH_SMASK_63_32_OFS 0x0380 | ||
| 276 | #define GIC_SH_SMASK_95_64_OFS 0x038c | ||
| 277 | #define GIC_SH_SMASK_127_96_OFS 0x0388 | ||
| 278 | #define GIC_SH_SMASK_159_128_OFS 0x0394 | ||
| 279 | #define GIC_SH_SMASK_191_160_OFS 0x0390 | ||
| 280 | #define GIC_SH_SMASK_223_192_OFS 0x039c | ||
| 281 | #define GIC_SH_SMASK_255_224_OFS 0x0398 | ||
| 282 | |||
| 283 | /* Global Interrupt Mask Register (RO) - Bit Set == Interrupt enabled */ | ||
| 284 | #define GIC_SH_MASK_31_0_OFS 0x0404 | ||
| 285 | #define GIC_SH_MASK_63_32_OFS 0x0400 | ||
| 286 | #define GIC_SH_MASK_95_64_OFS 0x040c | ||
| 287 | #define GIC_SH_MASK_127_96_OFS 0x0408 | ||
| 288 | #define GIC_SH_MASK_159_128_OFS 0x0414 | ||
| 289 | #define GIC_SH_MASK_191_160_OFS 0x0410 | ||
| 290 | #define GIC_SH_MASK_223_192_OFS 0x041c | ||
| 291 | #define GIC_SH_MASK_255_224_OFS 0x0418 | ||
| 292 | |||
| 293 | /* Pending Global Interrupts (RO) */ | ||
| 294 | #define GIC_SH_PEND_31_0_OFS 0x0484 | ||
| 295 | #define GIC_SH_PEND_63_32_OFS 0x0480 | ||
| 296 | #define GIC_SH_PEND_95_64_OFS 0x048c | ||
| 297 | #define GIC_SH_PEND_127_96_OFS 0x0488 | ||
| 298 | #define GIC_SH_PEND_159_128_OFS 0x0494 | ||
| 299 | #define GIC_SH_PEND_191_160_OFS 0x0490 | ||
| 300 | #define GIC_SH_PEND_223_192_OFS 0x049c | ||
| 301 | #define GIC_SH_PEND_255_224_OFS 0x0498 | ||
| 302 | |||
| 303 | #define GIC_SH_INTR_MAP_TO_PIN_BASE_OFS 0x0500 | ||
| 304 | |||
| 305 | /* Maps Interrupt X to a Pin */ | ||
| 306 | #define GIC_SH_MAP_TO_PIN(intr) \ | ||
| 307 | (GIC_SH_INTR_MAP_TO_PIN_BASE_OFS + (4 * intr)) | ||
| 308 | |||
| 309 | #define GIC_SH_INTR_MAP_TO_VPE_BASE_OFS 0x2004 | ||
| 310 | |||
| 311 | /* | ||
| 312 | * Maps Interrupt X to a VPE. This is more complex than the LE case, as | ||
| 313 | * odd and even registers need to be transposed. It does work - trust me! | ||
| 314 | */ | ||
| 315 | #define GIC_SH_MAP_TO_VPE_REG_OFF(intr, vpe) \ | ||
| 316 | (GIC_SH_INTR_MAP_TO_VPE_BASE_OFS + (32 * (intr)) + \ | ||
| 317 | (((((vpe) / 32) ^ 1) - 1) * 4)) | ||
| 318 | #define GIC_SH_MAP_TO_VPE_REG_BIT(vpe) (1 << ((vpe) % 32)) | ||
| 319 | |||
| 320 | /* Polarity */ | ||
| 321 | #define GIC_SH_SET_POLARITY_OFS 0x0100 | ||
| 322 | #define GIC_SET_POLARITY(intr, pol) \ | ||
| 323 | GICBIS(GIC_REG_ADDR(SHARED, GIC_SH_SET_POLARITY_OFS + 4 + (((((intr) / 32) ^ 1) - 1) * 4)), (pol) << ((intr) % 32)) | ||
| 324 | |||
| 325 | /* Triggering */ | ||
| 326 | #define GIC_SH_SET_TRIGGER_OFS 0x0180 | ||
| 327 | #define GIC_SET_TRIGGER(intr, trig) \ | ||
| 328 | GICBIS(GIC_REG_ADDR(SHARED, GIC_SH_SET_TRIGGER_OFS + 4 + (((((intr) / 32) ^ 1) - 1) * 4)), (trig) << ((intr) % 32)) | ||
| 329 | |||
| 330 | /* Mask manipulation */ | ||
| 331 | #define GIC_SH_SMASK_OFS 0x0380 | ||
| 332 | #define GIC_SET_INTR_MASK(intr, val) \ | ||
| 333 | GICWRITE(GIC_REG_ADDR(SHARED, GIC_SH_SMASK_OFS + 4 + (((((intr) / 32) ^ 1) - 1) * 4)), ((val) << ((intr) % 32))) | ||
| 334 | |||
| 335 | #define GIC_SH_RMASK_OFS 0x0300 | ||
| 336 | #define GIC_CLR_INTR_MASK(intr, val) \ | ||
| 337 | GICWRITE(GIC_REG_ADDR(SHARED, GIC_SH_RMASK_OFS + 4 + (((((intr) / 32) ^ 1) - 1) * 4)), ((val) << ((intr) % 32))) | ||
| 338 | |||
| 339 | /* Register Map for Local Section */ | ||
| 340 | #define GIC_VPE_CTL_OFS 0x0000 | ||
| 341 | #define GIC_VPE_PEND_OFS 0x0004 | ||
| 342 | #define GIC_VPE_MASK_OFS 0x0008 | ||
| 343 | #define GIC_VPE_RMASK_OFS 0x000c | ||
| 344 | #define GIC_VPE_SMASK_OFS 0x0010 | ||
| 345 | #define GIC_VPE_WD_MAP_OFS 0x0040 | ||
| 346 | #define GIC_VPE_COMPARE_MAP_OFS 0x0044 | ||
| 347 | #define GIC_VPE_TIMER_MAP_OFS 0x0048 | ||
| 348 | #define GIC_VPE_PERFCTR_MAP_OFS 0x0050 | ||
| 349 | #define GIC_VPE_SWINT0_MAP_OFS 0x0054 | ||
| 350 | #define GIC_VPE_SWINT1_MAP_OFS 0x0058 | ||
| 351 | #define GIC_VPE_OTHER_ADDR_OFS 0x0080 | ||
| 352 | #define GIC_VPE_WD_CONFIG0_OFS 0x0090 | ||
| 353 | #define GIC_VPE_WD_COUNT0_OFS 0x0094 | ||
| 354 | #define GIC_VPE_WD_INITIAL0_OFS 0x0098 | ||
| 355 | #define GIC_VPE_COMPARE_LO_OFS 0x00a4 | ||
| 356 | #define GIC_VPE_COMPARE_HI_OFS 0x00a0 | ||
| 357 | |||
| 358 | #define GIC_VPE_EIC_SHADOW_SET_BASE 0x0100 | ||
| 359 | #define GIC_VPE_EIC_SS(intr) \ | ||
| 360 | (GIC_EIC_SHADOW_SET_BASE + (4 * intr)) | ||
| 361 | |||
| 362 | #define GIC_VPE_EIC_VEC_BASE 0x0800 | ||
| 363 | #define GIC_VPE_EIC_VEC(intr) \ | ||
| 364 | (GIC_VPE_EIC_VEC_BASE + (4 * intr)) | ||
| 365 | |||
| 366 | #define GIC_VPE_TENABLE_NMI_OFS 0x1000 | ||
| 367 | #define GIC_VPE_TENABLE_YQ_OFS 0x1004 | ||
| 368 | #define GIC_VPE_TENABLE_INT_31_0_OFS 0x1080 | ||
| 369 | #define GIC_VPE_TENABLE_INT_63_32_OFS 0x1084 | ||
| 370 | |||
| 371 | /* User Mode Visible Section Register Map */ | ||
| 372 | #define GIC_UMV_SH_COUNTER_31_00_OFS 0x0004 | ||
| 373 | #define GIC_UMV_SH_COUNTER_63_32_OFS 0x0000 | ||
| 374 | |||
| 375 | #endif /* !LE */ | ||
| 376 | |||
| 377 | /* Masks */ | 224 | /* Masks */ |
| 378 | #define GIC_SH_CONFIG_COUNTSTOP_SHF 28 | 225 | #define GIC_SH_CONFIG_COUNTSTOP_SHF 28 |
| 379 | #define GIC_SH_CONFIG_COUNTSTOP_MSK (MSK(1) << GIC_SH_CONFIG_COUNTSTOP_SHF) | 226 | #define GIC_SH_CONFIG_COUNTSTOP_MSK (MSK(1) << GIC_SH_CONFIG_COUNTSTOP_SHF) |
| @@ -473,12 +320,13 @@ struct gic_intrmask_regs { | |||
| 473 | * in building ipi_map. | 320 | * in building ipi_map. |
| 474 | */ | 321 | */ |
| 475 | struct gic_intr_map { | 322 | struct gic_intr_map { |
| 476 | unsigned int intrnum; /* Ext Intr Num */ | ||
| 477 | unsigned int cpunum; /* Directed to this CPU */ | 323 | unsigned int cpunum; /* Directed to this CPU */ |
| 478 | unsigned int pin; /* Directed to this Pin */ | 324 | unsigned int pin; /* Directed to this Pin */ |
| 479 | unsigned int polarity; /* Polarity : +/- */ | 325 | unsigned int polarity; /* Polarity : +/- */ |
| 480 | unsigned int trigtype; /* Trigger : Edge/Levl */ | 326 | unsigned int trigtype; /* Trigger : Edge/Levl */ |
| 481 | unsigned int ipiflag; /* Is used for IPI ? */ | 327 | unsigned int flags; /* Misc flags */ |
| 328 | #define GIC_FLAG_IPI 0x01 | ||
| 329 | #define GIC_FLAG_TRANSPARENT 0x02 | ||
| 482 | }; | 330 | }; |
| 483 | 331 | ||
| 484 | extern void gic_init(unsigned long gic_base_addr, | 332 | extern void gic_init(unsigned long gic_base_addr, |
diff --git a/arch/mips/include/asm/mach-ar7/ar7.h b/arch/mips/include/asm/mach-ar7/ar7.h index de71694614de..21cbbc706448 100644 --- a/arch/mips/include/asm/mach-ar7/ar7.h +++ b/arch/mips/include/asm/mach-ar7/ar7.h | |||
| @@ -78,6 +78,9 @@ | |||
| 78 | #define AR7_REF_CLOCK 25000000 | 78 | #define AR7_REF_CLOCK 25000000 |
| 79 | #define AR7_XTAL_CLOCK 24000000 | 79 | #define AR7_XTAL_CLOCK 24000000 |
| 80 | 80 | ||
| 81 | /* DCL */ | ||
| 82 | #define AR7_WDT_HW_ENA 0x10 | ||
| 83 | |||
| 81 | struct plat_cpmac_data { | 84 | struct plat_cpmac_data { |
| 82 | int reset_bit; | 85 | int reset_bit; |
| 83 | int power_bit; | 86 | int power_bit; |
diff --git a/arch/mips/include/asm/mach-au1x00/gpio-au1000.h b/arch/mips/include/asm/mach-au1x00/gpio-au1000.h index feea00148b5d..91595fa89034 100644 --- a/arch/mips/include/asm/mach-au1x00/gpio-au1000.h +++ b/arch/mips/include/asm/mach-au1x00/gpio-au1000.h | |||
| @@ -104,6 +104,8 @@ static inline int au1100_gpio2_to_irq(int gpio) | |||
| 104 | 104 | ||
| 105 | if ((gpio >= 8) && (gpio <= 15)) | 105 | if ((gpio >= 8) && (gpio <= 15)) |
| 106 | return MAKE_IRQ(0, 29); /* shared GPIO208_215 */ | 106 | return MAKE_IRQ(0, 29); /* shared GPIO208_215 */ |
| 107 | |||
| 108 | return -ENXIO; | ||
| 107 | } | 109 | } |
| 108 | 110 | ||
| 109 | #ifdef CONFIG_SOC_AU1100 | 111 | #ifdef CONFIG_SOC_AU1100 |
diff --git a/arch/mips/include/asm/mach-bcm63xx/bcm63xx_dev_uart.h b/arch/mips/include/asm/mach-bcm63xx/bcm63xx_dev_uart.h deleted file mode 100644 index bf348f573bbc..000000000000 --- a/arch/mips/include/asm/mach-bcm63xx/bcm63xx_dev_uart.h +++ /dev/null | |||
| @@ -1,6 +0,0 @@ | |||
| 1 | #ifndef BCM63XX_DEV_UART_H_ | ||
| 2 | #define BCM63XX_DEV_UART_H_ | ||
| 3 | |||
| 4 | int bcm63xx_uart_register(void); | ||
| 5 | |||
| 6 | #endif /* BCM63XX_DEV_UART_H_ */ | ||
diff --git a/arch/mips/include/asm/mach-ip27/topology.h b/arch/mips/include/asm/mach-ip27/topology.h index f6837422fe65..09a59bcc1b07 100644 --- a/arch/mips/include/asm/mach-ip27/topology.h +++ b/arch/mips/include/asm/mach-ip27/topology.h | |||
| @@ -44,8 +44,8 @@ extern unsigned char __node_distances[MAX_COMPACT_NODES][MAX_COMPACT_NODES]; | |||
| 44 | .busy_factor = 32, \ | 44 | .busy_factor = 32, \ |
| 45 | .imbalance_pct = 125, \ | 45 | .imbalance_pct = 125, \ |
| 46 | .cache_nice_tries = 1, \ | 46 | .cache_nice_tries = 1, \ |
| 47 | .flags = SD_LOAD_BALANCE \ | 47 | .flags = SD_LOAD_BALANCE | \ |
| 48 | | SD_BALANCE_EXEC \ | 48 | SD_BALANCE_EXEC, \ |
| 49 | .last_balance = jiffies, \ | 49 | .last_balance = jiffies, \ |
| 50 | .balance_interval = 1, \ | 50 | .balance_interval = 1, \ |
| 51 | .nr_balance_failed = 0, \ | 51 | .nr_balance_failed = 0, \ |
diff --git a/arch/mips/include/asm/mach-loongson/cpu-feature-overrides.h b/arch/mips/include/asm/mach-loongson/cpu-feature-overrides.h index ce5b6e270e3f..9947e57c91de 100644 --- a/arch/mips/include/asm/mach-loongson/cpu-feature-overrides.h +++ b/arch/mips/include/asm/mach-loongson/cpu-feature-overrides.h | |||
| @@ -29,7 +29,7 @@ | |||
| 29 | #define cpu_has_cache_cdex_p 0 | 29 | #define cpu_has_cache_cdex_p 0 |
| 30 | #define cpu_has_cache_cdex_s 0 | 30 | #define cpu_has_cache_cdex_s 0 |
| 31 | #define cpu_has_counter 1 | 31 | #define cpu_has_counter 1 |
| 32 | #define cpu_has_dc_aliases 1 | 32 | #define cpu_has_dc_aliases (PAGE_SIZE < 0x4000) |
| 33 | #define cpu_has_divec 0 | 33 | #define cpu_has_divec 0 |
| 34 | #define cpu_has_dsp 0 | 34 | #define cpu_has_dsp 0 |
| 35 | #define cpu_has_ejtag 0 | 35 | #define cpu_has_ejtag 0 |
| @@ -54,6 +54,5 @@ | |||
| 54 | #define cpu_has_vce 0 | 54 | #define cpu_has_vce 0 |
| 55 | #define cpu_has_vtag_icache 0 | 55 | #define cpu_has_vtag_icache 0 |
| 56 | #define cpu_has_watch 1 | 56 | #define cpu_has_watch 1 |
| 57 | #define cpu_icache_snoops_remote_store 1 | ||
| 58 | 57 | ||
| 59 | #endif /* __ASM_MACH_LOONGSON_CPU_FEATURE_OVERRIDES_H */ | 58 | #endif /* __ASM_MACH_LOONGSON_CPU_FEATURE_OVERRIDES_H */ |
diff --git a/arch/mips/include/asm/mmu_context.h b/arch/mips/include/asm/mmu_context.h index d9743536a621..6083db586500 100644 --- a/arch/mips/include/asm/mmu_context.h +++ b/arch/mips/include/asm/mmu_context.h | |||
| @@ -16,6 +16,7 @@ | |||
| 16 | #include <linux/smp.h> | 16 | #include <linux/smp.h> |
| 17 | #include <linux/slab.h> | 17 | #include <linux/slab.h> |
| 18 | #include <asm/cacheflush.h> | 18 | #include <asm/cacheflush.h> |
| 19 | #include <asm/hazards.h> | ||
| 19 | #include <asm/tlbflush.h> | 20 | #include <asm/tlbflush.h> |
| 20 | #ifdef CONFIG_MIPS_MT_SMTC | 21 | #ifdef CONFIG_MIPS_MT_SMTC |
| 21 | #include <asm/mipsmtregs.h> | 22 | #include <asm/mipsmtregs.h> |
| @@ -36,11 +37,13 @@ extern unsigned long pgd_current[]; | |||
| 36 | #ifdef CONFIG_32BIT | 37 | #ifdef CONFIG_32BIT |
| 37 | #define TLBMISS_HANDLER_SETUP() \ | 38 | #define TLBMISS_HANDLER_SETUP() \ |
| 38 | write_c0_context((unsigned long) smp_processor_id() << 25); \ | 39 | write_c0_context((unsigned long) smp_processor_id() << 25); \ |
| 40 | back_to_back_c0_hazard(); \ | ||
| 39 | TLBMISS_HANDLER_SETUP_PGD(swapper_pg_dir) | 41 | TLBMISS_HANDLER_SETUP_PGD(swapper_pg_dir) |
| 40 | #endif | 42 | #endif |
| 41 | #ifdef CONFIG_64BIT | 43 | #ifdef CONFIG_64BIT |
| 42 | #define TLBMISS_HANDLER_SETUP() \ | 44 | #define TLBMISS_HANDLER_SETUP() \ |
| 43 | write_c0_context((unsigned long) smp_processor_id() << 26); \ | 45 | write_c0_context((unsigned long) smp_processor_id() << 26); \ |
| 46 | back_to_back_c0_hazard(); \ | ||
| 44 | TLBMISS_HANDLER_SETUP_PGD(swapper_pg_dir) | 47 | TLBMISS_HANDLER_SETUP_PGD(swapper_pg_dir) |
| 45 | #endif | 48 | #endif |
| 46 | 49 | ||
| @@ -165,12 +168,12 @@ static inline void switch_mm(struct mm_struct *prev, struct mm_struct *next, | |||
| 165 | * having ASID_MASK smaller than the hardware maximum, | 168 | * having ASID_MASK smaller than the hardware maximum, |
| 166 | * make sure no "soft" bits become "hard"... | 169 | * make sure no "soft" bits become "hard"... |
| 167 | */ | 170 | */ |
| 168 | write_c0_entryhi((read_c0_entryhi() & ~HW_ASID_MASK) | 171 | write_c0_entryhi((read_c0_entryhi() & ~HW_ASID_MASK) | |
| 169 | | (cpu_context(cpu, next) & ASID_MASK)); | 172 | cpu_asid(cpu, next)); |
| 170 | ehb(); /* Make sure it propagates to TCStatus */ | 173 | ehb(); /* Make sure it propagates to TCStatus */ |
| 171 | evpe(mtflags); | 174 | evpe(mtflags); |
| 172 | #else | 175 | #else |
| 173 | write_c0_entryhi(cpu_context(cpu, next)); | 176 | write_c0_entryhi(cpu_asid(cpu, next)); |
| 174 | #endif /* CONFIG_MIPS_MT_SMTC */ | 177 | #endif /* CONFIG_MIPS_MT_SMTC */ |
| 175 | TLBMISS_HANDLER_SETUP_PGD(next->pgd); | 178 | TLBMISS_HANDLER_SETUP_PGD(next->pgd); |
| 176 | 179 | ||
| @@ -226,11 +229,11 @@ activate_mm(struct mm_struct *prev, struct mm_struct *next) | |||
| 226 | } | 229 | } |
| 227 | /* See comments for similar code above */ | 230 | /* See comments for similar code above */ |
| 228 | write_c0_entryhi((read_c0_entryhi() & ~HW_ASID_MASK) | | 231 | write_c0_entryhi((read_c0_entryhi() & ~HW_ASID_MASK) | |
| 229 | (cpu_context(cpu, next) & ASID_MASK)); | 232 | cpu_asid(cpu, next)); |
| 230 | ehb(); /* Make sure it propagates to TCStatus */ | 233 | ehb(); /* Make sure it propagates to TCStatus */ |
| 231 | evpe(mtflags); | 234 | evpe(mtflags); |
| 232 | #else | 235 | #else |
| 233 | write_c0_entryhi(cpu_context(cpu, next)); | 236 | write_c0_entryhi(cpu_asid(cpu, next)); |
| 234 | #endif /* CONFIG_MIPS_MT_SMTC */ | 237 | #endif /* CONFIG_MIPS_MT_SMTC */ |
| 235 | TLBMISS_HANDLER_SETUP_PGD(next->pgd); | 238 | TLBMISS_HANDLER_SETUP_PGD(next->pgd); |
| 236 | 239 | ||
diff --git a/arch/mips/include/asm/setup.h b/arch/mips/include/asm/setup.h index e600cedda976..50511aac04e9 100644 --- a/arch/mips/include/asm/setup.h +++ b/arch/mips/include/asm/setup.h | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | #ifndef _MIPS_SETUP_H | 1 | #ifndef _MIPS_SETUP_H |
| 2 | #define _MIPS_SETUP_H | 2 | #define _MIPS_SETUP_H |
| 3 | 3 | ||
| 4 | #define COMMAND_LINE_SIZE 256 | 4 | #define COMMAND_LINE_SIZE 4096 |
| 5 | 5 | ||
| 6 | #ifdef __KERNEL__ | 6 | #ifdef __KERNEL__ |
| 7 | extern void setup_early_printk(void); | 7 | extern void setup_early_printk(void); |
diff --git a/arch/mips/include/asm/smtc_ipi.h b/arch/mips/include/asm/smtc_ipi.h index 8ce517574340..15278dbd7e79 100644 --- a/arch/mips/include/asm/smtc_ipi.h +++ b/arch/mips/include/asm/smtc_ipi.h | |||
| @@ -45,6 +45,7 @@ struct smtc_ipi_q { | |||
| 45 | spinlock_t lock; | 45 | spinlock_t lock; |
| 46 | struct smtc_ipi *tail; | 46 | struct smtc_ipi *tail; |
| 47 | int depth; | 47 | int depth; |
| 48 | int resched_flag; /* reschedule already queued */ | ||
| 48 | }; | 49 | }; |
| 49 | 50 | ||
| 50 | static inline void smtc_ipi_nq(struct smtc_ipi_q *q, struct smtc_ipi *p) | 51 | static inline void smtc_ipi_nq(struct smtc_ipi_q *q, struct smtc_ipi *p) |
diff --git a/arch/mips/include/asm/spram.h b/arch/mips/include/asm/spram.h new file mode 100644 index 000000000000..0b89006e4907 --- /dev/null +++ b/arch/mips/include/asm/spram.h | |||
| @@ -0,0 +1,10 @@ | |||
| 1 | #ifndef _MIPS_SPRAM_H | ||
| 2 | #define _MIPS_SPRAM_H | ||
| 3 | |||
| 4 | #ifdef CONFIG_CPU_MIPSR2 | ||
| 5 | extern __init void spram_config(void); | ||
| 6 | #else | ||
| 7 | static inline void spram_config(void) { }; | ||
| 8 | #endif /* CONFIG_CPU_MIPSR2 */ | ||
| 9 | |||
| 10 | #endif /* _MIPS_SPRAM_H */ | ||
diff --git a/arch/mips/include/asm/thread_info.h b/arch/mips/include/asm/thread_info.h index 01cc1630b66c..845da2107ed1 100644 --- a/arch/mips/include/asm/thread_info.h +++ b/arch/mips/include/asm/thread_info.h | |||
| @@ -86,14 +86,7 @@ register struct thread_info *__current_thread_info __asm__("$28"); | |||
| 86 | #define __HAVE_ARCH_THREAD_INFO_ALLOCATOR | 86 | #define __HAVE_ARCH_THREAD_INFO_ALLOCATOR |
| 87 | 87 | ||
| 88 | #ifdef CONFIG_DEBUG_STACK_USAGE | 88 | #ifdef CONFIG_DEBUG_STACK_USAGE |
| 89 | #define alloc_thread_info(tsk) \ | 89 | #define alloc_thread_info(tsk) kzalloc(THREAD_SIZE, GFP_KERNEL) |
| 90 | ({ \ | ||
| 91 | struct thread_info *ret; \ | ||
| 92 | \ | ||
| 93 | ret = kzalloc(THREAD_SIZE, GFP_KERNEL); \ | ||
| 94 | \ | ||
| 95 | ret; \ | ||
| 96 | }) | ||
| 97 | #else | 90 | #else |
| 98 | #define alloc_thread_info(tsk) kmalloc(THREAD_SIZE, GFP_KERNEL) | 91 | #define alloc_thread_info(tsk) kmalloc(THREAD_SIZE, GFP_KERNEL) |
| 99 | #endif | 92 | #endif |
diff --git a/arch/mips/jazz/irq.c b/arch/mips/jazz/irq.c index 7fd170d007e7..7bd32d04c2cc 100644 --- a/arch/mips/jazz/irq.c +++ b/arch/mips/jazz/irq.c | |||
| @@ -134,7 +134,7 @@ static irqreturn_t r4030_timer_interrupt(int irq, void *dev_id) | |||
| 134 | 134 | ||
| 135 | static struct irqaction r4030_timer_irqaction = { | 135 | static struct irqaction r4030_timer_irqaction = { |
| 136 | .handler = r4030_timer_interrupt, | 136 | .handler = r4030_timer_interrupt, |
| 137 | .flags = IRQF_DISABLED, | 137 | .flags = IRQF_DISABLED | IRQF_TIMER, |
| 138 | .name = "R4030 timer", | 138 | .name = "R4030 timer", |
| 139 | }; | 139 | }; |
| 140 | 140 | ||
diff --git a/arch/mips/kernel/cevt-bcm1480.c b/arch/mips/kernel/cevt-bcm1480.c index e02f79b1eb51..bfea327c636c 100644 --- a/arch/mips/kernel/cevt-bcm1480.c +++ b/arch/mips/kernel/cevt-bcm1480.c | |||
| @@ -144,7 +144,7 @@ void __cpuinit sb1480_clockevent_init(void) | |||
| 144 | bcm1480_unmask_irq(cpu, irq); | 144 | bcm1480_unmask_irq(cpu, irq); |
| 145 | 145 | ||
| 146 | action->handler = sibyte_counter_handler; | 146 | action->handler = sibyte_counter_handler; |
| 147 | action->flags = IRQF_DISABLED | IRQF_PERCPU; | 147 | action->flags = IRQF_DISABLED | IRQF_PERCPU | IRQF_TIMER; |
| 148 | action->name = name; | 148 | action->name = name; |
| 149 | action->dev_id = cd; | 149 | action->dev_id = cd; |
| 150 | 150 | ||
diff --git a/arch/mips/kernel/cevt-ds1287.c b/arch/mips/kernel/cevt-ds1287.c index 6996da4d74a2..00a4da277cbb 100644 --- a/arch/mips/kernel/cevt-ds1287.c +++ b/arch/mips/kernel/cevt-ds1287.c | |||
| @@ -107,7 +107,7 @@ static irqreturn_t ds1287_interrupt(int irq, void *dev_id) | |||
| 107 | 107 | ||
| 108 | static struct irqaction ds1287_irqaction = { | 108 | static struct irqaction ds1287_irqaction = { |
| 109 | .handler = ds1287_interrupt, | 109 | .handler = ds1287_interrupt, |
| 110 | .flags = IRQF_DISABLED | IRQF_PERCPU, | 110 | .flags = IRQF_DISABLED | IRQF_PERCPU | IRQF_TIMER, |
| 111 | .name = "ds1287", | 111 | .name = "ds1287", |
| 112 | }; | 112 | }; |
| 113 | 113 | ||
diff --git a/arch/mips/kernel/cevt-gt641xx.c b/arch/mips/kernel/cevt-gt641xx.c index 92351e00ae0e..f5d265eb6eae 100644 --- a/arch/mips/kernel/cevt-gt641xx.c +++ b/arch/mips/kernel/cevt-gt641xx.c | |||
| @@ -113,7 +113,7 @@ static irqreturn_t gt641xx_timer0_interrupt(int irq, void *dev_id) | |||
| 113 | 113 | ||
| 114 | static struct irqaction gt641xx_timer0_irqaction = { | 114 | static struct irqaction gt641xx_timer0_irqaction = { |
| 115 | .handler = gt641xx_timer0_interrupt, | 115 | .handler = gt641xx_timer0_interrupt, |
| 116 | .flags = IRQF_DISABLED | IRQF_PERCPU, | 116 | .flags = IRQF_DISABLED | IRQF_PERCPU | IRQF_TIMER, |
| 117 | .name = "gt641xx_timer0", | 117 | .name = "gt641xx_timer0", |
| 118 | }; | 118 | }; |
| 119 | 119 | ||
diff --git a/arch/mips/kernel/cevt-r4k.c b/arch/mips/kernel/cevt-r4k.c index 2652362ce047..b469ad05d520 100644 --- a/arch/mips/kernel/cevt-r4k.c +++ b/arch/mips/kernel/cevt-r4k.c | |||
| @@ -83,7 +83,7 @@ out: | |||
| 83 | 83 | ||
| 84 | struct irqaction c0_compare_irqaction = { | 84 | struct irqaction c0_compare_irqaction = { |
| 85 | .handler = c0_compare_interrupt, | 85 | .handler = c0_compare_interrupt, |
| 86 | .flags = IRQF_DISABLED | IRQF_PERCPU, | 86 | .flags = IRQF_DISABLED | IRQF_PERCPU | IRQF_TIMER, |
| 87 | .name = "timer", | 87 | .name = "timer", |
| 88 | }; | 88 | }; |
| 89 | 89 | ||
diff --git a/arch/mips/kernel/cevt-sb1250.c b/arch/mips/kernel/cevt-sb1250.c index ac5903d1b20e..da78eeaea6e8 100644 --- a/arch/mips/kernel/cevt-sb1250.c +++ b/arch/mips/kernel/cevt-sb1250.c | |||
| @@ -143,7 +143,7 @@ void __cpuinit sb1250_clockevent_init(void) | |||
| 143 | sb1250_unmask_irq(cpu, irq); | 143 | sb1250_unmask_irq(cpu, irq); |
| 144 | 144 | ||
| 145 | action->handler = sibyte_counter_handler; | 145 | action->handler = sibyte_counter_handler; |
| 146 | action->flags = IRQF_DISABLED | IRQF_PERCPU; | 146 | action->flags = IRQF_DISABLED | IRQF_PERCPU | IRQF_TIMER; |
| 147 | action->name = name; | 147 | action->name = name; |
| 148 | action->dev_id = cd; | 148 | action->dev_id = cd; |
| 149 | 149 | ||
diff --git a/arch/mips/kernel/cevt-txx9.c b/arch/mips/kernel/cevt-txx9.c index 0037f21baf0d..218ee6bda935 100644 --- a/arch/mips/kernel/cevt-txx9.c +++ b/arch/mips/kernel/cevt-txx9.c | |||
| @@ -146,7 +146,7 @@ static irqreturn_t txx9tmr_interrupt(int irq, void *dev_id) | |||
| 146 | 146 | ||
| 147 | static struct irqaction txx9tmr_irq = { | 147 | static struct irqaction txx9tmr_irq = { |
| 148 | .handler = txx9tmr_interrupt, | 148 | .handler = txx9tmr_interrupt, |
| 149 | .flags = IRQF_DISABLED | IRQF_PERCPU, | 149 | .flags = IRQF_DISABLED | IRQF_PERCPU | IRQF_TIMER, |
| 150 | .name = "txx9tmr", | 150 | .name = "txx9tmr", |
| 151 | .dev_id = &txx9_clock_event_device, | 151 | .dev_id = &txx9_clock_event_device, |
| 152 | }; | 152 | }; |
diff --git a/arch/mips/kernel/cpu-probe.c b/arch/mips/kernel/cpu-probe.c index f709657e4dcd..7a51866068a4 100644 --- a/arch/mips/kernel/cpu-probe.c +++ b/arch/mips/kernel/cpu-probe.c | |||
| @@ -23,7 +23,7 @@ | |||
| 23 | #include <asm/mipsregs.h> | 23 | #include <asm/mipsregs.h> |
| 24 | #include <asm/system.h> | 24 | #include <asm/system.h> |
| 25 | #include <asm/watch.h> | 25 | #include <asm/watch.h> |
| 26 | 26 | #include <asm/spram.h> | |
| 27 | /* | 27 | /* |
| 28 | * Not all of the MIPS CPUs have the "wait" instruction available. Moreover, | 28 | * Not all of the MIPS CPUs have the "wait" instruction available. Moreover, |
| 29 | * the implementation of the "wait" feature differs between CPU families. This | 29 | * the implementation of the "wait" feature differs between CPU families. This |
| @@ -711,12 +711,6 @@ static void __cpuinit decode_configs(struct cpuinfo_mips *c) | |||
| 711 | mips_probe_watch_registers(c); | 711 | mips_probe_watch_registers(c); |
| 712 | } | 712 | } |
| 713 | 713 | ||
| 714 | #ifdef CONFIG_CPU_MIPSR2 | ||
| 715 | extern void spram_config(void); | ||
| 716 | #else | ||
| 717 | static inline void spram_config(void) {} | ||
| 718 | #endif | ||
| 719 | |||
| 720 | static inline void cpu_probe_mips(struct cpuinfo_mips *c, unsigned int cpu) | 714 | static inline void cpu_probe_mips(struct cpuinfo_mips *c, unsigned int cpu) |
| 721 | { | 715 | { |
| 722 | decode_configs(c); | 716 | decode_configs(c); |
diff --git a/arch/mips/kernel/head.S b/arch/mips/kernel/head.S index 531ce7b16124..ea695d9605e9 100644 --- a/arch/mips/kernel/head.S +++ b/arch/mips/kernel/head.S | |||
| @@ -191,6 +191,7 @@ NESTED(kernel_entry, 16, sp) # kernel entry point | |||
| 191 | /* Set the SP after an empty pt_regs. */ | 191 | /* Set the SP after an empty pt_regs. */ |
| 192 | PTR_LI sp, _THREAD_SIZE - 32 - PT_SIZE | 192 | PTR_LI sp, _THREAD_SIZE - 32 - PT_SIZE |
| 193 | PTR_ADDU sp, $28 | 193 | PTR_ADDU sp, $28 |
| 194 | back_to_back_c0_hazard | ||
| 194 | set_saved_sp sp, t0, t1 | 195 | set_saved_sp sp, t0, t1 |
| 195 | PTR_SUBU sp, 4 * SZREG # init stack pointer | 196 | PTR_SUBU sp, 4 * SZREG # init stack pointer |
| 196 | 197 | ||
diff --git a/arch/mips/kernel/i8253.c b/arch/mips/kernel/i8253.c index f7d8d5d0ddbf..ed5c441615e4 100644 --- a/arch/mips/kernel/i8253.c +++ b/arch/mips/kernel/i8253.c | |||
| @@ -98,7 +98,7 @@ static irqreturn_t timer_interrupt(int irq, void *dev_id) | |||
| 98 | 98 | ||
| 99 | static struct irqaction irq0 = { | 99 | static struct irqaction irq0 = { |
| 100 | .handler = timer_interrupt, | 100 | .handler = timer_interrupt, |
| 101 | .flags = IRQF_DISABLED | IRQF_NOBALANCING, | 101 | .flags = IRQF_DISABLED | IRQF_NOBALANCING | IRQF_TIMER, |
| 102 | .name = "timer" | 102 | .name = "timer" |
| 103 | }; | 103 | }; |
| 104 | 104 | ||
diff --git a/arch/mips/kernel/irq-gic.c b/arch/mips/kernel/irq-gic.c index d2072cd38592..b181f2f0ea8e 100644 --- a/arch/mips/kernel/irq-gic.c +++ b/arch/mips/kernel/irq-gic.c | |||
| @@ -14,38 +14,23 @@ | |||
| 14 | 14 | ||
| 15 | 15 | ||
| 16 | static unsigned long _gic_base; | 16 | static unsigned long _gic_base; |
| 17 | static unsigned int _irqbase, _mapsize, numvpes, numintrs; | 17 | static unsigned int _irqbase; |
| 18 | static struct gic_intr_map *_intrmap; | 18 | static unsigned int gic_irq_flags[GIC_NUM_INTRS]; |
| 19 | #define GIC_IRQ_FLAG_EDGE 0x0001 | ||
| 19 | 20 | ||
| 20 | static struct gic_pcpu_mask pcpu_masks[NR_CPUS]; | 21 | struct gic_pcpu_mask pcpu_masks[NR_CPUS]; |
| 21 | static struct gic_pending_regs pending_regs[NR_CPUS]; | 22 | static struct gic_pending_regs pending_regs[NR_CPUS]; |
| 22 | static struct gic_intrmask_regs intrmask_regs[NR_CPUS]; | 23 | static struct gic_intrmask_regs intrmask_regs[NR_CPUS]; |
| 23 | 24 | ||
| 24 | #define gic_wedgeb2bok 0 /* | ||
| 25 | * Can GIC handle b2b writes to wedge register? | ||
| 26 | */ | ||
| 27 | #if gic_wedgeb2bok == 0 | ||
| 28 | static DEFINE_SPINLOCK(gic_wedgeb2b_lock); | ||
| 29 | #endif | ||
| 30 | |||
| 31 | void gic_send_ipi(unsigned int intr) | 25 | void gic_send_ipi(unsigned int intr) |
| 32 | { | 26 | { |
| 33 | #if gic_wedgeb2bok == 0 | ||
| 34 | unsigned long flags; | ||
| 35 | #endif | ||
| 36 | pr_debug("CPU%d: %s status %08x\n", smp_processor_id(), __func__, | 27 | pr_debug("CPU%d: %s status %08x\n", smp_processor_id(), __func__, |
| 37 | read_c0_status()); | 28 | read_c0_status()); |
| 38 | if (!gic_wedgeb2bok) | ||
| 39 | spin_lock_irqsave(&gic_wedgeb2b_lock, flags); | ||
| 40 | GICWRITE(GIC_REG(SHARED, GIC_SH_WEDGE), 0x80000000 | intr); | 29 | GICWRITE(GIC_REG(SHARED, GIC_SH_WEDGE), 0x80000000 | intr); |
| 41 | if (!gic_wedgeb2bok) { | ||
| 42 | (void) GIC_REG(SHARED, GIC_SH_CONFIG); | ||
| 43 | spin_unlock_irqrestore(&gic_wedgeb2b_lock, flags); | ||
| 44 | } | ||
| 45 | } | 30 | } |
| 46 | 31 | ||
| 47 | /* This is Malta specific and needs to be exported */ | 32 | /* This is Malta specific and needs to be exported */ |
| 48 | static void vpe_local_setup(unsigned int numvpes) | 33 | static void __init vpe_local_setup(unsigned int numvpes) |
| 49 | { | 34 | { |
| 50 | int i; | 35 | int i; |
| 51 | unsigned long timer_interrupt = 5, perf_interrupt = 5; | 36 | unsigned long timer_interrupt = 5, perf_interrupt = 5; |
| @@ -105,44 +90,34 @@ unsigned int gic_get_int(void) | |||
| 105 | 90 | ||
| 106 | static unsigned int gic_irq_startup(unsigned int irq) | 91 | static unsigned int gic_irq_startup(unsigned int irq) |
| 107 | { | 92 | { |
| 108 | pr_debug("CPU%d: %s: irq%d\n", smp_processor_id(), __func__, irq); | ||
| 109 | irq -= _irqbase; | 93 | irq -= _irqbase; |
| 110 | GIC_SET_INTR_MASK(irq, 1); | 94 | pr_debug("CPU%d: %s: irq%d\n", smp_processor_id(), __func__, irq); |
| 95 | GIC_SET_INTR_MASK(irq); | ||
| 111 | return 0; | 96 | return 0; |
| 112 | } | 97 | } |
| 113 | 98 | ||
| 114 | static void gic_irq_ack(unsigned int irq) | 99 | static void gic_irq_ack(unsigned int irq) |
| 115 | { | 100 | { |
| 116 | #if gic_wedgeb2bok == 0 | ||
| 117 | unsigned long flags; | ||
| 118 | #endif | ||
| 119 | pr_debug("CPU%d: %s: irq%d\n", smp_processor_id(), __func__, irq); | ||
| 120 | irq -= _irqbase; | 101 | irq -= _irqbase; |
| 121 | GIC_CLR_INTR_MASK(irq, 1); | 102 | pr_debug("CPU%d: %s: irq%d\n", smp_processor_id(), __func__, irq); |
| 103 | GIC_CLR_INTR_MASK(irq); | ||
| 122 | 104 | ||
| 123 | if (_intrmap[irq].trigtype == GIC_TRIG_EDGE) { | 105 | if (gic_irq_flags[irq] & GIC_IRQ_FLAG_EDGE) |
| 124 | if (!gic_wedgeb2bok) | ||
| 125 | spin_lock_irqsave(&gic_wedgeb2b_lock, flags); | ||
| 126 | GICWRITE(GIC_REG(SHARED, GIC_SH_WEDGE), irq); | 106 | GICWRITE(GIC_REG(SHARED, GIC_SH_WEDGE), irq); |
| 127 | if (!gic_wedgeb2bok) { | ||
| 128 | (void) GIC_REG(SHARED, GIC_SH_CONFIG); | ||
| 129 | spin_unlock_irqrestore(&gic_wedgeb2b_lock, flags); | ||
| 130 | } | ||
| 131 | } | ||
| 132 | } | 107 | } |
| 133 | 108 | ||
| 134 | static void gic_mask_irq(unsigned int irq) | 109 | static void gic_mask_irq(unsigned int irq) |
| 135 | { | 110 | { |
| 136 | pr_debug("CPU%d: %s: irq%d\n", smp_processor_id(), __func__, irq); | ||
| 137 | irq -= _irqbase; | 111 | irq -= _irqbase; |
| 138 | GIC_CLR_INTR_MASK(irq, 1); | 112 | pr_debug("CPU%d: %s: irq%d\n", smp_processor_id(), __func__, irq); |
| 113 | GIC_CLR_INTR_MASK(irq); | ||
| 139 | } | 114 | } |
| 140 | 115 | ||
| 141 | static void gic_unmask_irq(unsigned int irq) | 116 | static void gic_unmask_irq(unsigned int irq) |
| 142 | { | 117 | { |
| 143 | pr_debug("CPU%d: %s: irq%d\n", smp_processor_id(), __func__, irq); | ||
| 144 | irq -= _irqbase; | 118 | irq -= _irqbase; |
| 145 | GIC_SET_INTR_MASK(irq, 1); | 119 | pr_debug("CPU%d: %s: irq%d\n", smp_processor_id(), __func__, irq); |
| 120 | GIC_SET_INTR_MASK(irq); | ||
| 146 | } | 121 | } |
| 147 | 122 | ||
| 148 | #ifdef CONFIG_SMP | 123 | #ifdef CONFIG_SMP |
| @@ -155,9 +130,8 @@ static int gic_set_affinity(unsigned int irq, const struct cpumask *cpumask) | |||
| 155 | unsigned long flags; | 130 | unsigned long flags; |
| 156 | int i; | 131 | int i; |
| 157 | 132 | ||
| 158 | pr_debug(KERN_DEBUG "%s called\n", __func__); | ||
| 159 | irq -= _irqbase; | 133 | irq -= _irqbase; |
| 160 | 134 | pr_debug(KERN_DEBUG "%s(%d) called\n", __func__, irq); | |
| 161 | cpumask_and(&tmp, cpumask, cpu_online_mask); | 135 | cpumask_and(&tmp, cpumask, cpu_online_mask); |
| 162 | if (cpus_empty(tmp)) | 136 | if (cpus_empty(tmp)) |
| 163 | return -1; | 137 | return -1; |
| @@ -168,13 +142,6 @@ static int gic_set_affinity(unsigned int irq, const struct cpumask *cpumask) | |||
| 168 | /* Re-route this IRQ */ | 142 | /* Re-route this IRQ */ |
| 169 | GIC_SH_MAP_TO_VPE_SMASK(irq, first_cpu(tmp)); | 143 | GIC_SH_MAP_TO_VPE_SMASK(irq, first_cpu(tmp)); |
| 170 | 144 | ||
| 171 | /* | ||
| 172 | * FIXME: assumption that _intrmap is ordered and has no holes | ||
| 173 | */ | ||
| 174 | |||
| 175 | /* Update the intr_map */ | ||
| 176 | _intrmap[irq].cpunum = first_cpu(tmp); | ||
| 177 | |||
| 178 | /* Update the pcpu_masks */ | 145 | /* Update the pcpu_masks */ |
| 179 | for (i = 0; i < NR_CPUS; i++) | 146 | for (i = 0; i < NR_CPUS; i++) |
| 180 | clear_bit(irq, pcpu_masks[i].pcpu_mask); | 147 | clear_bit(irq, pcpu_masks[i].pcpu_mask); |
| @@ -201,8 +168,9 @@ static struct irq_chip gic_irq_controller = { | |||
| 201 | #endif | 168 | #endif |
| 202 | }; | 169 | }; |
| 203 | 170 | ||
| 204 | static void __init setup_intr(unsigned int intr, unsigned int cpu, | 171 | static void __init gic_setup_intr(unsigned int intr, unsigned int cpu, |
| 205 | unsigned int pin, unsigned int polarity, unsigned int trigtype) | 172 | unsigned int pin, unsigned int polarity, unsigned int trigtype, |
| 173 | unsigned int flags) | ||
| 206 | { | 174 | { |
| 207 | /* Setup Intr to Pin mapping */ | 175 | /* Setup Intr to Pin mapping */ |
| 208 | if (pin & GIC_MAP_TO_NMI_MSK) { | 176 | if (pin & GIC_MAP_TO_NMI_MSK) { |
| @@ -227,38 +195,43 @@ static void __init setup_intr(unsigned int intr, unsigned int cpu, | |||
| 227 | GIC_SET_TRIGGER(intr, trigtype); | 195 | GIC_SET_TRIGGER(intr, trigtype); |
| 228 | 196 | ||
| 229 | /* Init Intr Masks */ | 197 | /* Init Intr Masks */ |
| 230 | GIC_SET_INTR_MASK(intr, 0); | 198 | GIC_CLR_INTR_MASK(intr); |
| 199 | /* Initialise per-cpu Interrupt software masks */ | ||
| 200 | if (flags & GIC_FLAG_IPI) | ||
| 201 | set_bit(intr, pcpu_masks[cpu].pcpu_mask); | ||
| 202 | if (flags & GIC_FLAG_TRANSPARENT) | ||
| 203 | GIC_SET_INTR_MASK(intr); | ||
| 204 | if (trigtype == GIC_TRIG_EDGE) | ||
| 205 | gic_irq_flags[intr] |= GIC_IRQ_FLAG_EDGE; | ||
| 231 | } | 206 | } |
| 232 | 207 | ||
| 233 | static void __init gic_basic_init(void) | 208 | static void __init gic_basic_init(int numintrs, int numvpes, |
| 209 | struct gic_intr_map *intrmap, int mapsize) | ||
| 234 | { | 210 | { |
| 235 | unsigned int i, cpu; | 211 | unsigned int i, cpu; |
| 236 | 212 | ||
| 237 | /* Setup defaults */ | 213 | /* Setup defaults */ |
| 238 | for (i = 0; i < GIC_NUM_INTRS; i++) { | 214 | for (i = 0; i < numintrs; i++) { |
| 239 | GIC_SET_POLARITY(i, GIC_POL_POS); | 215 | GIC_SET_POLARITY(i, GIC_POL_POS); |
| 240 | GIC_SET_TRIGGER(i, GIC_TRIG_LEVEL); | 216 | GIC_SET_TRIGGER(i, GIC_TRIG_LEVEL); |
| 241 | GIC_SET_INTR_MASK(i, 0); | 217 | GIC_CLR_INTR_MASK(i); |
| 218 | if (i < GIC_NUM_INTRS) | ||
| 219 | gic_irq_flags[i] = 0; | ||
| 242 | } | 220 | } |
| 243 | 221 | ||
| 244 | /* Setup specifics */ | 222 | /* Setup specifics */ |
| 245 | for (i = 0; i < _mapsize; i++) { | 223 | for (i = 0; i < mapsize; i++) { |
| 246 | cpu = _intrmap[i].cpunum; | 224 | cpu = intrmap[i].cpunum; |
| 247 | if (cpu == X) | 225 | if (cpu == X) |
| 248 | continue; | 226 | continue; |
| 249 | 227 | if (cpu == 0 && i != 0 && intrmap[i].flags == 0) | |
| 250 | if (cpu == 0 && i != 0 && _intrmap[i].intrnum == 0 && | ||
| 251 | _intrmap[i].ipiflag == 0) | ||
| 252 | continue; | 228 | continue; |
| 253 | 229 | gic_setup_intr(i, | |
| 254 | setup_intr(_intrmap[i].intrnum, | 230 | intrmap[i].cpunum, |
| 255 | _intrmap[i].cpunum, | 231 | intrmap[i].pin, |
| 256 | _intrmap[i].pin, | 232 | intrmap[i].polarity, |
| 257 | _intrmap[i].polarity, | 233 | intrmap[i].trigtype, |
| 258 | _intrmap[i].trigtype); | 234 | intrmap[i].flags); |
| 259 | /* Initialise per-cpu Interrupt software masks */ | ||
| 260 | if (_intrmap[i].ipiflag) | ||
| 261 | set_bit(_intrmap[i].intrnum, pcpu_masks[cpu].pcpu_mask); | ||
| 262 | } | 235 | } |
| 263 | 236 | ||
| 264 | vpe_local_setup(numvpes); | 237 | vpe_local_setup(numvpes); |
| @@ -273,12 +246,11 @@ void __init gic_init(unsigned long gic_base_addr, | |||
| 273 | unsigned int irqbase) | 246 | unsigned int irqbase) |
| 274 | { | 247 | { |
| 275 | unsigned int gicconfig; | 248 | unsigned int gicconfig; |
| 249 | int numvpes, numintrs; | ||
| 276 | 250 | ||
| 277 | _gic_base = (unsigned long) ioremap_nocache(gic_base_addr, | 251 | _gic_base = (unsigned long) ioremap_nocache(gic_base_addr, |
| 278 | gic_addrspace_size); | 252 | gic_addrspace_size); |
| 279 | _irqbase = irqbase; | 253 | _irqbase = irqbase; |
| 280 | _intrmap = intr_map; | ||
| 281 | _mapsize = intr_map_size; | ||
| 282 | 254 | ||
| 283 | GICREAD(GIC_REG(SHARED, GIC_SH_CONFIG), gicconfig); | 255 | GICREAD(GIC_REG(SHARED, GIC_SH_CONFIG), gicconfig); |
| 284 | numintrs = (gicconfig & GIC_SH_CONFIG_NUMINTRS_MSK) >> | 256 | numintrs = (gicconfig & GIC_SH_CONFIG_NUMINTRS_MSK) >> |
| @@ -290,5 +262,5 @@ void __init gic_init(unsigned long gic_base_addr, | |||
| 290 | 262 | ||
| 291 | pr_debug("%s called\n", __func__); | 263 | pr_debug("%s called\n", __func__); |
| 292 | 264 | ||
| 293 | gic_basic_init(); | 265 | gic_basic_init(numintrs, numvpes, intr_map, intr_map_size); |
| 294 | } | 266 | } |
diff --git a/arch/mips/kernel/linux32.c b/arch/mips/kernel/linux32.c index 6242bc68add7..b77fefaff9da 100644 --- a/arch/mips/kernel/linux32.c +++ b/arch/mips/kernel/linux32.c | |||
| @@ -428,3 +428,9 @@ _sys32_clone(nabi_no_regargs struct pt_regs regs) | |||
| 428 | return do_fork(clone_flags, newsp, ®s, 0, | 428 | return do_fork(clone_flags, newsp, ®s, 0, |
| 429 | parent_tidptr, child_tidptr); | 429 | parent_tidptr, child_tidptr); |
| 430 | } | 430 | } |
| 431 | |||
| 432 | asmlinkage long sys32_lookup_dcookie(u32 a0, u32 a1, char __user *buf, | ||
| 433 | size_t len) | ||
| 434 | { | ||
| 435 | return sys_lookup_dcookie(merge_64(a0, a1), buf, len); | ||
| 436 | } | ||
diff --git a/arch/mips/kernel/scall64-o32.S b/arch/mips/kernel/scall64-o32.S index 9bbf9775e0bd..14dde4ca932e 100644 --- a/arch/mips/kernel/scall64-o32.S +++ b/arch/mips/kernel/scall64-o32.S | |||
| @@ -450,7 +450,7 @@ sys_call_table: | |||
| 450 | PTR sys_io_submit | 450 | PTR sys_io_submit |
| 451 | PTR sys_io_cancel /* 4245 */ | 451 | PTR sys_io_cancel /* 4245 */ |
| 452 | PTR sys_exit_group | 452 | PTR sys_exit_group |
| 453 | PTR sys_lookup_dcookie | 453 | PTR sys32_lookup_dcookie |
| 454 | PTR sys_epoll_create | 454 | PTR sys_epoll_create |
| 455 | PTR sys_epoll_ctl | 455 | PTR sys_epoll_ctl |
| 456 | PTR sys_epoll_wait /* 4250 */ | 456 | PTR sys_epoll_wait /* 4250 */ |
| @@ -505,7 +505,7 @@ sys_call_table: | |||
| 505 | PTR sys_fchmodat | 505 | PTR sys_fchmodat |
| 506 | PTR sys_faccessat /* 4300 */ | 506 | PTR sys_faccessat /* 4300 */ |
| 507 | PTR compat_sys_pselect6 | 507 | PTR compat_sys_pselect6 |
| 508 | PTR sys_ppoll | 508 | PTR compat_sys_ppoll |
| 509 | PTR sys_unshare | 509 | PTR sys_unshare |
| 510 | PTR sys_splice | 510 | PTR sys_splice |
| 511 | PTR sys32_sync_file_range /* 4305 */ | 511 | PTR sys32_sync_file_range /* 4305 */ |
diff --git a/arch/mips/kernel/smtc.c b/arch/mips/kernel/smtc.c index 4d181df44a40..24630fd8ef60 100644 --- a/arch/mips/kernel/smtc.c +++ b/arch/mips/kernel/smtc.c | |||
| @@ -75,7 +75,6 @@ unsigned long irq_hwmask[NR_IRQS]; | |||
| 75 | 75 | ||
| 76 | asiduse smtc_live_asid[MAX_SMTC_TLBS][MAX_SMTC_ASIDS]; | 76 | asiduse smtc_live_asid[MAX_SMTC_TLBS][MAX_SMTC_ASIDS]; |
| 77 | 77 | ||
| 78 | |||
| 79 | /* | 78 | /* |
| 80 | * Number of InterProcessor Interrupt (IPI) message buffers to allocate | 79 | * Number of InterProcessor Interrupt (IPI) message buffers to allocate |
| 81 | */ | 80 | */ |
| @@ -388,6 +387,7 @@ void smtc_prepare_cpus(int cpus) | |||
| 388 | IPIQ[i].head = IPIQ[i].tail = NULL; | 387 | IPIQ[i].head = IPIQ[i].tail = NULL; |
| 389 | spin_lock_init(&IPIQ[i].lock); | 388 | spin_lock_init(&IPIQ[i].lock); |
| 390 | IPIQ[i].depth = 0; | 389 | IPIQ[i].depth = 0; |
| 390 | IPIQ[i].resched_flag = 0; /* No reschedules queued initially */ | ||
| 391 | } | 391 | } |
| 392 | 392 | ||
| 393 | /* cpu_data index starts at zero */ | 393 | /* cpu_data index starts at zero */ |
| @@ -741,11 +741,24 @@ void smtc_forward_irq(unsigned int irq) | |||
| 741 | static void smtc_ipi_qdump(void) | 741 | static void smtc_ipi_qdump(void) |
| 742 | { | 742 | { |
| 743 | int i; | 743 | int i; |
| 744 | struct smtc_ipi *temp; | ||
| 744 | 745 | ||
| 745 | for (i = 0; i < NR_CPUS ;i++) { | 746 | for (i = 0; i < NR_CPUS ;i++) { |
| 746 | printk("IPIQ[%d]: head = 0x%x, tail = 0x%x, depth = %d\n", | 747 | pr_info("IPIQ[%d]: head = 0x%x, tail = 0x%x, depth = %d\n", |
| 747 | i, (unsigned)IPIQ[i].head, (unsigned)IPIQ[i].tail, | 748 | i, (unsigned)IPIQ[i].head, (unsigned)IPIQ[i].tail, |
| 748 | IPIQ[i].depth); | 749 | IPIQ[i].depth); |
| 750 | temp = IPIQ[i].head; | ||
| 751 | |||
| 752 | while (temp != IPIQ[i].tail) { | ||
| 753 | pr_debug("%d %d %d: ", temp->type, temp->dest, | ||
| 754 | (int)temp->arg); | ||
| 755 | #ifdef SMTC_IPI_DEBUG | ||
| 756 | pr_debug("%u %lu\n", temp->sender, temp->stamp); | ||
| 757 | #else | ||
| 758 | pr_debug("\n"); | ||
| 759 | #endif | ||
| 760 | temp = temp->flink; | ||
| 761 | } | ||
| 749 | } | 762 | } |
| 750 | } | 763 | } |
| 751 | 764 | ||
| @@ -784,11 +797,16 @@ void smtc_send_ipi(int cpu, int type, unsigned int action) | |||
| 784 | int mtflags; | 797 | int mtflags; |
| 785 | unsigned long tcrestart; | 798 | unsigned long tcrestart; |
| 786 | extern void r4k_wait_irqoff(void), __pastwait(void); | 799 | extern void r4k_wait_irqoff(void), __pastwait(void); |
| 800 | int set_resched_flag = (type == LINUX_SMP_IPI && | ||
| 801 | action == SMP_RESCHEDULE_YOURSELF); | ||
| 787 | 802 | ||
| 788 | if (cpu == smp_processor_id()) { | 803 | if (cpu == smp_processor_id()) { |
| 789 | printk("Cannot Send IPI to self!\n"); | 804 | printk("Cannot Send IPI to self!\n"); |
| 790 | return; | 805 | return; |
| 791 | } | 806 | } |
| 807 | if (set_resched_flag && IPIQ[cpu].resched_flag != 0) | ||
| 808 | return; /* There is a reschedule queued already */ | ||
| 809 | |||
| 792 | /* Set up a descriptor, to be delivered either promptly or queued */ | 810 | /* Set up a descriptor, to be delivered either promptly or queued */ |
| 793 | pipi = smtc_ipi_dq(&freeIPIq); | 811 | pipi = smtc_ipi_dq(&freeIPIq); |
| 794 | if (pipi == NULL) { | 812 | if (pipi == NULL) { |
| @@ -801,6 +819,7 @@ void smtc_send_ipi(int cpu, int type, unsigned int action) | |||
| 801 | pipi->dest = cpu; | 819 | pipi->dest = cpu; |
| 802 | if (cpu_data[cpu].vpe_id != cpu_data[smp_processor_id()].vpe_id) { | 820 | if (cpu_data[cpu].vpe_id != cpu_data[smp_processor_id()].vpe_id) { |
| 803 | /* If not on same VPE, enqueue and send cross-VPE interrupt */ | 821 | /* If not on same VPE, enqueue and send cross-VPE interrupt */ |
| 822 | IPIQ[cpu].resched_flag |= set_resched_flag; | ||
| 804 | smtc_ipi_nq(&IPIQ[cpu], pipi); | 823 | smtc_ipi_nq(&IPIQ[cpu], pipi); |
| 805 | LOCK_CORE_PRA(); | 824 | LOCK_CORE_PRA(); |
| 806 | settc(cpu_data[cpu].tc_id); | 825 | settc(cpu_data[cpu].tc_id); |
| @@ -847,6 +866,7 @@ void smtc_send_ipi(int cpu, int type, unsigned int action) | |||
| 847 | */ | 866 | */ |
| 848 | write_tc_c0_tchalt(0); | 867 | write_tc_c0_tchalt(0); |
| 849 | UNLOCK_CORE_PRA(); | 868 | UNLOCK_CORE_PRA(); |
| 869 | IPIQ[cpu].resched_flag |= set_resched_flag; | ||
| 850 | smtc_ipi_nq(&IPIQ[cpu], pipi); | 870 | smtc_ipi_nq(&IPIQ[cpu], pipi); |
| 851 | } else { | 871 | } else { |
| 852 | postdirect: | 872 | postdirect: |
| @@ -996,12 +1016,15 @@ void deferred_smtc_ipi(void) | |||
| 996 | * already enabled. | 1016 | * already enabled. |
| 997 | */ | 1017 | */ |
| 998 | local_irq_save(flags); | 1018 | local_irq_save(flags); |
| 999 | |||
| 1000 | spin_lock(&q->lock); | 1019 | spin_lock(&q->lock); |
| 1001 | pipi = __smtc_ipi_dq(q); | 1020 | pipi = __smtc_ipi_dq(q); |
| 1002 | spin_unlock(&q->lock); | 1021 | spin_unlock(&q->lock); |
| 1003 | if (pipi != NULL) | 1022 | if (pipi != NULL) { |
| 1023 | if (pipi->type == LINUX_SMP_IPI && | ||
| 1024 | (int)pipi->arg == SMP_RESCHEDULE_YOURSELF) | ||
| 1025 | IPIQ[cpu].resched_flag = 0; | ||
| 1004 | ipi_decode(pipi); | 1026 | ipi_decode(pipi); |
| 1027 | } | ||
| 1005 | /* | 1028 | /* |
| 1006 | * The use of the __raw_local restore isn't | 1029 | * The use of the __raw_local restore isn't |
| 1007 | * as obviously necessary here as in smtc_ipi_replay(), | 1030 | * as obviously necessary here as in smtc_ipi_replay(), |
| @@ -1082,6 +1105,9 @@ static irqreturn_t ipi_interrupt(int irq, void *dev_idm) | |||
| 1082 | * with interrupts off | 1105 | * with interrupts off |
| 1083 | */ | 1106 | */ |
| 1084 | local_irq_save(flags); | 1107 | local_irq_save(flags); |
| 1108 | if (pipi->type == LINUX_SMP_IPI && | ||
| 1109 | (int)pipi->arg == SMP_RESCHEDULE_YOURSELF) | ||
| 1110 | IPIQ[cpu].resched_flag = 0; | ||
| 1085 | ipi_decode(pipi); | 1111 | ipi_decode(pipi); |
| 1086 | local_irq_restore(flags); | 1112 | local_irq_restore(flags); |
| 1087 | } | 1113 | } |
diff --git a/arch/mips/kernel/spram.c b/arch/mips/kernel/spram.c index 6ddb507a87ef..1821d12a6410 100644 --- a/arch/mips/kernel/spram.c +++ b/arch/mips/kernel/spram.c | |||
| @@ -13,7 +13,6 @@ | |||
| 13 | #include <linux/ptrace.h> | 13 | #include <linux/ptrace.h> |
| 14 | #include <linux/stddef.h> | 14 | #include <linux/stddef.h> |
| 15 | 15 | ||
| 16 | #include <asm/cpu.h> | ||
| 17 | #include <asm/fpu.h> | 16 | #include <asm/fpu.h> |
| 18 | #include <asm/mipsregs.h> | 17 | #include <asm/mipsregs.h> |
| 19 | #include <asm/system.h> | 18 | #include <asm/system.h> |
| @@ -198,8 +197,7 @@ static __cpuinit void probe_spram(char *type, | |||
| 198 | offset += 2 * SPRAM_TAG_STRIDE; | 197 | offset += 2 * SPRAM_TAG_STRIDE; |
| 199 | } | 198 | } |
| 200 | } | 199 | } |
| 201 | 200 | void __cpuinit spram_config(void) | |
| 202 | __cpuinit void spram_config(void) | ||
| 203 | { | 201 | { |
| 204 | struct cpuinfo_mips *c = ¤t_cpu_data; | 202 | struct cpuinfo_mips *c = ¤t_cpu_data; |
| 205 | unsigned int config0; | 203 | unsigned int config0; |
| @@ -208,6 +206,7 @@ __cpuinit void spram_config(void) | |||
| 208 | case CPU_24K: | 206 | case CPU_24K: |
| 209 | case CPU_34K: | 207 | case CPU_34K: |
| 210 | case CPU_74K: | 208 | case CPU_74K: |
| 209 | case CPU_1004K: | ||
| 211 | config0 = read_c0_config(); | 210 | config0 = read_c0_config(); |
| 212 | /* FIXME: addresses are Malta specific */ | 211 | /* FIXME: addresses are Malta specific */ |
| 213 | if (config0 & (1<<24)) { | 212 | if (config0 & (1<<24)) { |
diff --git a/arch/mips/kernel/vpe.c b/arch/mips/kernel/vpe.c index 03092ab2a296..60477529362e 100644 --- a/arch/mips/kernel/vpe.c +++ b/arch/mips/kernel/vpe.c | |||
| @@ -1116,8 +1116,6 @@ static int vpe_open(struct inode *inode, struct file *filp) | |||
| 1116 | v->shared_ptr = NULL; | 1116 | v->shared_ptr = NULL; |
| 1117 | v->__start = 0; | 1117 | v->__start = 0; |
| 1118 | 1118 | ||
| 1119 | unlock_kernel(); | ||
| 1120 | |||
| 1121 | return 0; | 1119 | return 0; |
| 1122 | } | 1120 | } |
| 1123 | 1121 | ||
diff --git a/arch/mips/loongson/common/irq.c b/arch/mips/loongson/common/irq.c index f368c735cbd3..b32b4a3e5137 100644 --- a/arch/mips/loongson/common/irq.c +++ b/arch/mips/loongson/common/irq.c | |||
| @@ -55,7 +55,6 @@ void __init arch_init_irq(void) | |||
| 55 | * int-handler is not on bootstrap | 55 | * int-handler is not on bootstrap |
| 56 | */ | 56 | */ |
| 57 | clear_c0_status(ST0_IM | ST0_BEV); | 57 | clear_c0_status(ST0_IM | ST0_BEV); |
| 58 | local_irq_disable(); | ||
| 59 | 58 | ||
| 60 | /* setting irq trigger mode */ | 59 | /* setting irq trigger mode */ |
| 61 | set_irq_trigger_mode(); | 60 | set_irq_trigger_mode(); |
diff --git a/arch/mips/math-emu/dp_simple.c b/arch/mips/math-emu/dp_simple.c index 1c555e6c6a9f..d9ae1dbabda7 100644 --- a/arch/mips/math-emu/dp_simple.c +++ b/arch/mips/math-emu/dp_simple.c | |||
| @@ -62,8 +62,6 @@ ieee754dp ieee754dp_neg(ieee754dp x) | |||
| 62 | return ieee754dp_nanxcpt(y, "neg"); | 62 | return ieee754dp_nanxcpt(y, "neg"); |
| 63 | } | 63 | } |
| 64 | 64 | ||
| 65 | if (ieee754dp_isnan(x)) /* but not infinity */ | ||
| 66 | return ieee754dp_nanxcpt(x, "neg", x); | ||
| 67 | return x; | 65 | return x; |
| 68 | } | 66 | } |
| 69 | 67 | ||
| @@ -76,15 +74,12 @@ ieee754dp ieee754dp_abs(ieee754dp x) | |||
| 76 | CLEARCX; | 74 | CLEARCX; |
| 77 | FLUSHXDP; | 75 | FLUSHXDP; |
| 78 | 76 | ||
| 77 | /* Clear sign ALWAYS, irrespective of NaN */ | ||
| 78 | DPSIGN(x) = 0; | ||
| 79 | |||
| 79 | if (xc == IEEE754_CLASS_SNAN) { | 80 | if (xc == IEEE754_CLASS_SNAN) { |
| 80 | SETCX(IEEE754_INVALID_OPERATION); | 81 | return ieee754dp_nanxcpt(ieee754dp_indef(), "abs"); |
| 81 | return ieee754dp_nanxcpt(ieee754dp_indef(), "neg"); | ||
| 82 | } | 82 | } |
| 83 | 83 | ||
| 84 | if (ieee754dp_isnan(x)) /* but not infinity */ | ||
| 85 | return ieee754dp_nanxcpt(x, "abs", x); | ||
| 86 | |||
| 87 | /* quick fix up */ | ||
| 88 | DPSIGN(x) = 0; | ||
| 89 | return x; | 84 | return x; |
| 90 | } | 85 | } |
diff --git a/arch/mips/math-emu/sp_simple.c b/arch/mips/math-emu/sp_simple.c index 770f0f4677cd..3175477d36f6 100644 --- a/arch/mips/math-emu/sp_simple.c +++ b/arch/mips/math-emu/sp_simple.c | |||
| @@ -62,8 +62,6 @@ ieee754sp ieee754sp_neg(ieee754sp x) | |||
| 62 | return ieee754sp_nanxcpt(y, "neg"); | 62 | return ieee754sp_nanxcpt(y, "neg"); |
| 63 | } | 63 | } |
| 64 | 64 | ||
| 65 | if (ieee754sp_isnan(x)) /* but not infinity */ | ||
| 66 | return ieee754sp_nanxcpt(x, "neg", x); | ||
| 67 | return x; | 65 | return x; |
| 68 | } | 66 | } |
| 69 | 67 | ||
| @@ -76,15 +74,12 @@ ieee754sp ieee754sp_abs(ieee754sp x) | |||
| 76 | CLEARCX; | 74 | CLEARCX; |
| 77 | FLUSHXSP; | 75 | FLUSHXSP; |
| 78 | 76 | ||
| 77 | /* Clear sign ALWAYS, irrespective of NaN */ | ||
| 78 | SPSIGN(x) = 0; | ||
| 79 | |||
| 79 | if (xc == IEEE754_CLASS_SNAN) { | 80 | if (xc == IEEE754_CLASS_SNAN) { |
| 80 | SETCX(IEEE754_INVALID_OPERATION); | ||
| 81 | return ieee754sp_nanxcpt(ieee754sp_indef(), "abs"); | 81 | return ieee754sp_nanxcpt(ieee754sp_indef(), "abs"); |
| 82 | } | 82 | } |
| 83 | 83 | ||
| 84 | if (ieee754sp_isnan(x)) /* but not infinity */ | ||
| 85 | return ieee754sp_nanxcpt(x, "abs", x); | ||
| 86 | |||
| 87 | /* quick fix up */ | ||
| 88 | SPSIGN(x) = 0; | ||
| 89 | return x; | 84 | return x; |
| 90 | } | 85 | } |
diff --git a/arch/mips/mm/init.c b/arch/mips/mm/init.c index 15aa1902a788..8d1f4f363049 100644 --- a/arch/mips/mm/init.c +++ b/arch/mips/mm/init.c | |||
| @@ -27,6 +27,7 @@ | |||
| 27 | #include <linux/swap.h> | 27 | #include <linux/swap.h> |
| 28 | #include <linux/proc_fs.h> | 28 | #include <linux/proc_fs.h> |
| 29 | #include <linux/pfn.h> | 29 | #include <linux/pfn.h> |
| 30 | #include <linux/hardirq.h> | ||
| 30 | 31 | ||
| 31 | #include <asm/asm-offsets.h> | 32 | #include <asm/asm-offsets.h> |
| 32 | #include <asm/bootinfo.h> | 33 | #include <asm/bootinfo.h> |
| @@ -132,7 +133,10 @@ void *kmap_coherent(struct page *page, unsigned long addr) | |||
| 132 | inc_preempt_count(); | 133 | inc_preempt_count(); |
| 133 | idx = (addr >> PAGE_SHIFT) & (FIX_N_COLOURS - 1); | 134 | idx = (addr >> PAGE_SHIFT) & (FIX_N_COLOURS - 1); |
| 134 | #ifdef CONFIG_MIPS_MT_SMTC | 135 | #ifdef CONFIG_MIPS_MT_SMTC |
| 135 | idx += FIX_N_COLOURS * smp_processor_id(); | 136 | idx += FIX_N_COLOURS * smp_processor_id() + |
| 137 | (in_interrupt() ? (FIX_N_COLOURS * NR_CPUS) : 0); | ||
| 138 | #else | ||
| 139 | idx += in_interrupt() ? FIX_N_COLOURS : 0; | ||
| 136 | #endif | 140 | #endif |
| 137 | vaddr = __fix_to_virt(FIX_CMAP_END - idx); | 141 | vaddr = __fix_to_virt(FIX_CMAP_END - idx); |
| 138 | pte = mk_pte(page, PAGE_KERNEL); | 142 | pte = mk_pte(page, PAGE_KERNEL); |
diff --git a/arch/mips/mti-malta/malta-amon.c b/arch/mips/mti-malta/malta-amon.c index df9e526312a2..469d9b0cee6d 100644 --- a/arch/mips/mti-malta/malta-amon.c +++ b/arch/mips/mti-malta/malta-amon.c | |||
| @@ -70,11 +70,12 @@ void amon_cpu_start(int cpu, | |||
| 70 | launch->sp = sp; | 70 | launch->sp = sp; |
| 71 | launch->a0 = a0; | 71 | launch->a0 = a0; |
| 72 | 72 | ||
| 73 | /* Make sure target sees parameters before the go bit */ | 73 | smp_wmb(); /* Target must see parameters before go */ |
| 74 | smp_mb(); | ||
| 75 | |||
| 76 | launch->flags |= LAUNCH_FGO; | 74 | launch->flags |= LAUNCH_FGO; |
| 75 | smp_wmb(); /* Target must see go before we poll */ | ||
| 76 | |||
| 77 | while ((launch->flags & LAUNCH_FGONE) == 0) | 77 | while ((launch->flags & LAUNCH_FGONE) == 0) |
| 78 | ; | 78 | ; |
| 79 | smp_rmb(); /* Target will be updating flags soon */ | ||
| 79 | pr_debug("launch: cpu%d gone!\n", cpu); | 80 | pr_debug("launch: cpu%d gone!\n", cpu); |
| 80 | } | 81 | } |
diff --git a/arch/mips/mti-malta/malta-int.c b/arch/mips/mti-malta/malta-int.c index 3e0a9b35ba5c..4c3fca18a171 100644 --- a/arch/mips/mti-malta/malta-int.c +++ b/arch/mips/mti-malta/malta-int.c | |||
| @@ -87,7 +87,7 @@ static inline int mips_pcibios_iack(void) | |||
| 87 | dummy = BONITO_PCIMAP_CFG; | 87 | dummy = BONITO_PCIMAP_CFG; |
| 88 | iob(); /* sync */ | 88 | iob(); /* sync */ |
| 89 | 89 | ||
| 90 | irq = readl((u32 *)_pcictrl_bonito_pcicfg); | 90 | irq = __raw_readl((u32 *)_pcictrl_bonito_pcicfg); |
| 91 | iob(); /* sync */ | 91 | iob(); /* sync */ |
| 92 | irq &= 0xff; | 92 | irq &= 0xff; |
| 93 | BONITO_PCIMAP_CFG = 0; | 93 | BONITO_PCIMAP_CFG = 0; |
| @@ -379,38 +379,43 @@ static msc_irqmap_t __initdata msc_eicirqmap[] = { | |||
| 379 | 379 | ||
| 380 | static int __initdata msc_nr_eicirqs = ARRAY_SIZE(msc_eicirqmap); | 380 | static int __initdata msc_nr_eicirqs = ARRAY_SIZE(msc_eicirqmap); |
| 381 | 381 | ||
| 382 | #if defined(CONFIG_MIPS_MT_SMP) | ||
| 383 | /* | 382 | /* |
| 384 | * This GIC specific tabular array defines the association between External | 383 | * This GIC specific tabular array defines the association between External |
| 385 | * Interrupts and CPUs/Core Interrupts. The nature of the External | 384 | * Interrupts and CPUs/Core Interrupts. The nature of the External |
| 386 | * Interrupts is also defined here - polarity/trigger. | 385 | * Interrupts is also defined here - polarity/trigger. |
| 387 | */ | 386 | */ |
| 387 | |||
| 388 | #define GIC_CPU_NMI GIC_MAP_TO_NMI_MSK | ||
| 388 | static struct gic_intr_map gic_intr_map[GIC_NUM_INTRS] = { | 389 | static struct gic_intr_map gic_intr_map[GIC_NUM_INTRS] = { |
| 389 | { GIC_EXT_INTR(0), X, X, X, X, 0 }, | 390 | { X, X, X, X, 0 }, |
| 390 | { GIC_EXT_INTR(1), X, X, X, X, 0 }, | 391 | { X, X, X, X, 0 }, |
| 391 | { GIC_EXT_INTR(2), X, X, X, X, 0 }, | 392 | { X, X, X, X, 0 }, |
| 392 | { GIC_EXT_INTR(3), 0, GIC_CPU_INT0, GIC_POL_POS, GIC_TRIG_LEVEL, 0 }, | 393 | { 0, GIC_CPU_INT0, GIC_POL_POS, GIC_TRIG_LEVEL, GIC_FLAG_TRANSPARENT }, |
| 393 | { GIC_EXT_INTR(4), 0, GIC_CPU_INT1, GIC_POL_POS, GIC_TRIG_LEVEL, 0 }, | 394 | { 0, GIC_CPU_INT1, GIC_POL_POS, GIC_TRIG_LEVEL, GIC_FLAG_TRANSPARENT }, |
| 394 | { GIC_EXT_INTR(5), 0, GIC_CPU_INT2, GIC_POL_POS, GIC_TRIG_LEVEL, 0 }, | 395 | { 0, GIC_CPU_INT2, GIC_POL_POS, GIC_TRIG_LEVEL, GIC_FLAG_TRANSPARENT }, |
| 395 | { GIC_EXT_INTR(6), 0, GIC_CPU_INT3, GIC_POL_POS, GIC_TRIG_LEVEL, 0 }, | 396 | { 0, GIC_CPU_INT3, GIC_POL_POS, GIC_TRIG_LEVEL, GIC_FLAG_TRANSPARENT }, |
| 396 | { GIC_EXT_INTR(7), 0, GIC_CPU_INT4, GIC_POL_POS, GIC_TRIG_LEVEL, 0 }, | 397 | { 0, GIC_CPU_INT4, GIC_POL_POS, GIC_TRIG_LEVEL, GIC_FLAG_TRANSPARENT }, |
| 397 | { GIC_EXT_INTR(8), 0, GIC_CPU_INT3, GIC_POL_POS, GIC_TRIG_LEVEL, 0 }, | 398 | { 0, GIC_CPU_INT3, GIC_POL_POS, GIC_TRIG_LEVEL, GIC_FLAG_TRANSPARENT }, |
| 398 | { GIC_EXT_INTR(9), 0, GIC_CPU_INT3, GIC_POL_POS, GIC_TRIG_LEVEL, 0 }, | 399 | { 0, GIC_CPU_INT3, GIC_POL_POS, GIC_TRIG_LEVEL, GIC_FLAG_TRANSPARENT }, |
| 399 | { GIC_EXT_INTR(10), X, X, X, X, 0 }, | 400 | { X, X, X, X, 0 }, |
| 400 | { GIC_EXT_INTR(11), X, X, X, X, 0 }, | 401 | { X, X, X, X, 0 }, |
| 401 | { GIC_EXT_INTR(12), 0, GIC_CPU_INT3, GIC_POL_POS, GIC_TRIG_LEVEL, 0 }, | 402 | { 0, GIC_CPU_INT3, GIC_POL_POS, GIC_TRIG_LEVEL, GIC_FLAG_TRANSPARENT }, |
| 402 | { GIC_EXT_INTR(13), 0, GIC_MAP_TO_NMI_MSK, GIC_POL_POS, GIC_TRIG_LEVEL, 0 }, | 403 | { 0, GIC_CPU_NMI, GIC_POL_POS, GIC_TRIG_LEVEL, GIC_FLAG_TRANSPARENT }, |
| 403 | { GIC_EXT_INTR(14), 0, GIC_MAP_TO_NMI_MSK, GIC_POL_POS, GIC_TRIG_LEVEL, 0 }, | 404 | { 0, GIC_CPU_NMI, GIC_POL_POS, GIC_TRIG_LEVEL, GIC_FLAG_TRANSPARENT }, |
| 404 | { GIC_EXT_INTR(15), X, X, X, X, 0 }, | 405 | { X, X, X, X, 0 }, |
| 405 | /* This is the end of the general interrupts now we do IPI ones */ | 406 | /* The remainder of this table is initialised by fill_ipi_map */ |
| 406 | }; | 407 | }; |
| 407 | #endif | ||
| 408 | 408 | ||
| 409 | /* | 409 | /* |
| 410 | * GCMP needs to be detected before any SMP initialisation | 410 | * GCMP needs to be detected before any SMP initialisation |
| 411 | */ | 411 | */ |
| 412 | int __init gcmp_probe(unsigned long addr, unsigned long size) | 412 | int __init gcmp_probe(unsigned long addr, unsigned long size) |
| 413 | { | 413 | { |
| 414 | if (mips_revision_sconid != MIPS_REVISION_SCON_ROCIT) { | ||
| 415 | gcmp_present = 0; | ||
| 416 | return gcmp_present; | ||
| 417 | } | ||
| 418 | |||
| 414 | if (gcmp_present >= 0) | 419 | if (gcmp_present >= 0) |
| 415 | return gcmp_present; | 420 | return gcmp_present; |
| 416 | 421 | ||
| @@ -419,20 +424,35 @@ int __init gcmp_probe(unsigned long addr, unsigned long size) | |||
| 419 | gcmp_present = (GCMPGCB(GCMPB) & GCMP_GCB_GCMPB_GCMPBASE_MSK) == GCMP_BASE_ADDR; | 424 | gcmp_present = (GCMPGCB(GCMPB) & GCMP_GCB_GCMPB_GCMPBASE_MSK) == GCMP_BASE_ADDR; |
| 420 | 425 | ||
| 421 | if (gcmp_present) | 426 | if (gcmp_present) |
| 422 | printk(KERN_DEBUG "GCMP present\n"); | 427 | pr_debug("GCMP present\n"); |
| 423 | return gcmp_present; | 428 | return gcmp_present; |
| 424 | } | 429 | } |
| 425 | 430 | ||
| 431 | /* Return the number of IOCU's present */ | ||
| 432 | int __init gcmp_niocu(void) | ||
| 433 | { | ||
| 434 | return gcmp_present ? | ||
| 435 | (GCMPGCB(GC) & GCMP_GCB_GC_NUMIOCU_MSK) >> GCMP_GCB_GC_NUMIOCU_SHF : | ||
| 436 | 0; | ||
| 437 | } | ||
| 438 | |||
| 439 | /* Set GCMP region attributes */ | ||
| 440 | void __init gcmp_setregion(int region, unsigned long base, | ||
| 441 | unsigned long mask, int type) | ||
| 442 | { | ||
| 443 | GCMPGCBn(CMxBASE, region) = base; | ||
| 444 | GCMPGCBn(CMxMASK, region) = mask | type; | ||
| 445 | } | ||
| 446 | |||
| 426 | #if defined(CONFIG_MIPS_MT_SMP) | 447 | #if defined(CONFIG_MIPS_MT_SMP) |
| 427 | static void __init fill_ipi_map1(int baseintr, int cpu, int cpupin) | 448 | static void __init fill_ipi_map1(int baseintr, int cpu, int cpupin) |
| 428 | { | 449 | { |
| 429 | int intr = baseintr + cpu; | 450 | int intr = baseintr + cpu; |
| 430 | gic_intr_map[intr].intrnum = GIC_EXT_INTR(intr); | ||
| 431 | gic_intr_map[intr].cpunum = cpu; | 451 | gic_intr_map[intr].cpunum = cpu; |
| 432 | gic_intr_map[intr].pin = cpupin; | 452 | gic_intr_map[intr].pin = cpupin; |
| 433 | gic_intr_map[intr].polarity = GIC_POL_POS; | 453 | gic_intr_map[intr].polarity = GIC_POL_POS; |
| 434 | gic_intr_map[intr].trigtype = GIC_TRIG_EDGE; | 454 | gic_intr_map[intr].trigtype = GIC_TRIG_EDGE; |
| 435 | gic_intr_map[intr].ipiflag = 1; | 455 | gic_intr_map[intr].flags = GIC_FLAG_IPI; |
| 436 | ipi_map[cpu] |= (1 << (cpupin + 2)); | 456 | ipi_map[cpu] |= (1 << (cpupin + 2)); |
| 437 | } | 457 | } |
| 438 | 458 | ||
| @@ -447,6 +467,12 @@ static void __init fill_ipi_map(void) | |||
| 447 | } | 467 | } |
| 448 | #endif | 468 | #endif |
| 449 | 469 | ||
| 470 | void __init arch_init_ipiirq(int irq, struct irqaction *action) | ||
| 471 | { | ||
| 472 | setup_irq(irq, action); | ||
| 473 | set_irq_handler(irq, handle_percpu_irq); | ||
| 474 | } | ||
| 475 | |||
| 450 | void __init arch_init_irq(void) | 476 | void __init arch_init_irq(void) |
| 451 | { | 477 | { |
| 452 | init_i8259_irqs(); | 478 | init_i8259_irqs(); |
| @@ -458,12 +484,17 @@ void __init arch_init_irq(void) | |||
| 458 | GCMPGCB(GICBA) = GIC_BASE_ADDR | GCMP_GCB_GICBA_EN_MSK; | 484 | GCMPGCB(GICBA) = GIC_BASE_ADDR | GCMP_GCB_GICBA_EN_MSK; |
| 459 | gic_present = 1; | 485 | gic_present = 1; |
| 460 | } else { | 486 | } else { |
| 461 | _msc01_biu_base = (unsigned long) ioremap_nocache(MSC01_BIU_REG_BASE, MSC01_BIU_ADDRSPACE_SZ); | 487 | if (mips_revision_sconid == MIPS_REVISION_SCON_ROCIT) { |
| 462 | gic_present = (REG(_msc01_biu_base, MSC01_SC_CFG) & | 488 | _msc01_biu_base = (unsigned long) |
| 463 | MSC01_SC_CFG_GICPRES_MSK) >> MSC01_SC_CFG_GICPRES_SHF; | 489 | ioremap_nocache(MSC01_BIU_REG_BASE, |
| 490 | MSC01_BIU_ADDRSPACE_SZ); | ||
| 491 | gic_present = (REG(_msc01_biu_base, MSC01_SC_CFG) & | ||
| 492 | MSC01_SC_CFG_GICPRES_MSK) >> | ||
| 493 | MSC01_SC_CFG_GICPRES_SHF; | ||
| 494 | } | ||
| 464 | } | 495 | } |
| 465 | if (gic_present) | 496 | if (gic_present) |
| 466 | printk(KERN_DEBUG "GIC present\n"); | 497 | pr_debug("GIC present\n"); |
| 467 | 498 | ||
| 468 | switch (mips_revision_sconid) { | 499 | switch (mips_revision_sconid) { |
| 469 | case MIPS_REVISION_SCON_SOCIT: | 500 | case MIPS_REVISION_SCON_SOCIT: |
| @@ -526,16 +557,16 @@ void __init arch_init_irq(void) | |||
| 526 | &corehi_irqaction); | 557 | &corehi_irqaction); |
| 527 | } | 558 | } |
| 528 | 559 | ||
| 529 | #if defined(CONFIG_MIPS_MT_SMP) | ||
| 530 | if (gic_present) { | 560 | if (gic_present) { |
| 531 | /* FIXME */ | 561 | /* FIXME */ |
| 532 | int i; | 562 | int i; |
| 533 | 563 | #if defined(CONFIG_MIPS_MT_SMP) | |
| 534 | gic_call_int_base = GIC_NUM_INTRS - NR_CPUS; | 564 | gic_call_int_base = GIC_NUM_INTRS - NR_CPUS; |
| 535 | gic_resched_int_base = gic_call_int_base - NR_CPUS; | 565 | gic_resched_int_base = gic_call_int_base - NR_CPUS; |
| 536 | |||
| 537 | fill_ipi_map(); | 566 | fill_ipi_map(); |
| 538 | gic_init(GIC_BASE_ADDR, GIC_ADDRSPACE_SZ, gic_intr_map, ARRAY_SIZE(gic_intr_map), MIPS_GIC_IRQ_BASE); | 567 | #endif |
| 568 | gic_init(GIC_BASE_ADDR, GIC_ADDRSPACE_SZ, gic_intr_map, | ||
| 569 | ARRAY_SIZE(gic_intr_map), MIPS_GIC_IRQ_BASE); | ||
| 539 | if (!gcmp_present) { | 570 | if (!gcmp_present) { |
| 540 | /* Enable the GIC */ | 571 | /* Enable the GIC */ |
| 541 | i = REG(_msc01_biu_base, MSC01_SC_CFG); | 572 | i = REG(_msc01_biu_base, MSC01_SC_CFG); |
| @@ -543,7 +574,7 @@ void __init arch_init_irq(void) | |||
| 543 | (i | (0x1 << MSC01_SC_CFG_GICENA_SHF)); | 574 | (i | (0x1 << MSC01_SC_CFG_GICENA_SHF)); |
| 544 | pr_debug("GIC Enabled\n"); | 575 | pr_debug("GIC Enabled\n"); |
| 545 | } | 576 | } |
| 546 | 577 | #if defined(CONFIG_MIPS_MT_SMP) | |
| 547 | /* set up ipi interrupts */ | 578 | /* set up ipi interrupts */ |
| 548 | if (cpu_has_vint) { | 579 | if (cpu_has_vint) { |
| 549 | set_vi_handler(MIPSCPU_INT_IPI0, malta_ipi_irqdispatch); | 580 | set_vi_handler(MIPSCPU_INT_IPI0, malta_ipi_irqdispatch); |
| @@ -556,16 +587,14 @@ void __init arch_init_irq(void) | |||
| 556 | write_c0_status(0x1100dc00); | 587 | write_c0_status(0x1100dc00); |
| 557 | printk("CPU%d: status register frc %08x\n", smp_processor_id(), read_c0_status()); | 588 | printk("CPU%d: status register frc %08x\n", smp_processor_id(), read_c0_status()); |
| 558 | for (i = 0; i < NR_CPUS; i++) { | 589 | for (i = 0; i < NR_CPUS; i++) { |
| 559 | setup_irq(MIPS_GIC_IRQ_BASE + | 590 | arch_init_ipiirq(MIPS_GIC_IRQ_BASE + |
| 560 | GIC_RESCHED_INT(i), &irq_resched); | 591 | GIC_RESCHED_INT(i), &irq_resched); |
| 561 | setup_irq(MIPS_GIC_IRQ_BASE + | 592 | arch_init_ipiirq(MIPS_GIC_IRQ_BASE + |
| 562 | GIC_CALL_INT(i), &irq_call); | 593 | GIC_CALL_INT(i), &irq_call); |
| 563 | set_irq_handler(MIPS_GIC_IRQ_BASE + | ||
| 564 | GIC_RESCHED_INT(i), handle_percpu_irq); | ||
| 565 | set_irq_handler(MIPS_GIC_IRQ_BASE + | ||
| 566 | GIC_CALL_INT(i), handle_percpu_irq); | ||
| 567 | } | 594 | } |
| 595 | #endif | ||
| 568 | } else { | 596 | } else { |
| 597 | #if defined(CONFIG_MIPS_MT_SMP) | ||
| 569 | /* set up ipi interrupts */ | 598 | /* set up ipi interrupts */ |
| 570 | if (cpu_has_veic) { | 599 | if (cpu_has_veic) { |
| 571 | set_vi_handler (MSC01E_INT_SW0, ipi_resched_dispatch); | 600 | set_vi_handler (MSC01E_INT_SW0, ipi_resched_dispatch); |
| @@ -580,14 +609,10 @@ void __init arch_init_irq(void) | |||
| 580 | cpu_ipi_resched_irq = MIPS_CPU_IRQ_BASE + MIPS_CPU_IPI_RESCHED_IRQ; | 609 | cpu_ipi_resched_irq = MIPS_CPU_IRQ_BASE + MIPS_CPU_IPI_RESCHED_IRQ; |
| 581 | cpu_ipi_call_irq = MIPS_CPU_IRQ_BASE + MIPS_CPU_IPI_CALL_IRQ; | 610 | cpu_ipi_call_irq = MIPS_CPU_IRQ_BASE + MIPS_CPU_IPI_CALL_IRQ; |
| 582 | } | 611 | } |
| 583 | 612 | arch_init_ipiirq(cpu_ipi_resched_irq, &irq_resched); | |
| 584 | setup_irq(cpu_ipi_resched_irq, &irq_resched); | 613 | arch_init_ipiirq(cpu_ipi_call_irq, &irq_call); |
| 585 | setup_irq(cpu_ipi_call_irq, &irq_call); | ||
| 586 | |||
| 587 | set_irq_handler(cpu_ipi_resched_irq, handle_percpu_irq); | ||
| 588 | set_irq_handler(cpu_ipi_call_irq, handle_percpu_irq); | ||
| 589 | } | ||
| 590 | #endif | 614 | #endif |
| 615 | } | ||
| 591 | } | 616 | } |
| 592 | 617 | ||
| 593 | void malta_be_init(void) | 618 | void malta_be_init(void) |
diff --git a/arch/mips/mti-malta/malta-pci.c b/arch/mips/mti-malta/malta-pci.c index b9743190609a..2fbfa1a8c3a9 100644 --- a/arch/mips/mti-malta/malta-pci.c +++ b/arch/mips/mti-malta/malta-pci.c | |||
| @@ -27,7 +27,7 @@ | |||
| 27 | #include <linux/init.h> | 27 | #include <linux/init.h> |
| 28 | 28 | ||
| 29 | #include <asm/gt64120.h> | 29 | #include <asm/gt64120.h> |
| 30 | 30 | #include <asm/gcmpregs.h> | |
| 31 | #include <asm/mips-boards/generic.h> | 31 | #include <asm/mips-boards/generic.h> |
| 32 | #include <asm/mips-boards/bonito64.h> | 32 | #include <asm/mips-boards/bonito64.h> |
| 33 | #include <asm/mips-boards/msc01_pci.h> | 33 | #include <asm/mips-boards/msc01_pci.h> |
| @@ -201,7 +201,11 @@ void __init mips_pcibios_init(void) | |||
| 201 | msc_mem_resource.start = start & mask; | 201 | msc_mem_resource.start = start & mask; |
| 202 | msc_mem_resource.end = (start & mask) | ~mask; | 202 | msc_mem_resource.end = (start & mask) | ~mask; |
| 203 | msc_controller.mem_offset = (start & mask) - (map & mask); | 203 | msc_controller.mem_offset = (start & mask) - (map & mask); |
| 204 | 204 | #ifdef CONFIG_MIPS_CMP | |
| 205 | if (gcmp_niocu()) | ||
| 206 | gcmp_setregion(0, start, mask, | ||
| 207 | GCMP_GCB_GCMPB_CMDEFTGT_IOCU1); | ||
| 208 | #endif | ||
| 205 | MSC_READ(MSC01_PCI_SC2PIOBASL, start); | 209 | MSC_READ(MSC01_PCI_SC2PIOBASL, start); |
| 206 | MSC_READ(MSC01_PCI_SC2PIOMSKL, mask); | 210 | MSC_READ(MSC01_PCI_SC2PIOMSKL, mask); |
| 207 | MSC_READ(MSC01_PCI_SC2PIOMAPL, map); | 211 | MSC_READ(MSC01_PCI_SC2PIOMAPL, map); |
| @@ -209,7 +213,11 @@ void __init mips_pcibios_init(void) | |||
| 209 | msc_io_resource.end = (map & mask) | ~mask; | 213 | msc_io_resource.end = (map & mask) | ~mask; |
| 210 | msc_controller.io_offset = 0; | 214 | msc_controller.io_offset = 0; |
| 211 | ioport_resource.end = ~mask; | 215 | ioport_resource.end = ~mask; |
| 212 | 216 | #ifdef CONFIG_MIPS_CMP | |
| 217 | if (gcmp_niocu()) | ||
| 218 | gcmp_setregion(1, start, mask, | ||
| 219 | GCMP_GCB_GCMPB_CMDEFTGT_IOCU1); | ||
| 220 | #endif | ||
| 213 | /* If ranges overlap I/O takes precedence. */ | 221 | /* If ranges overlap I/O takes precedence. */ |
| 214 | start = start & mask; | 222 | start = start & mask; |
| 215 | end = start | ~mask; | 223 | end = start | ~mask; |
| @@ -241,3 +249,16 @@ void __init mips_pcibios_init(void) | |||
| 241 | 249 | ||
| 242 | register_pci_controller(controller); | 250 | register_pci_controller(controller); |
| 243 | } | 251 | } |
| 252 | |||
| 253 | /* Enable PCI 2.1 compatibility in PIIX4 */ | ||
| 254 | static void __init quirk_dlcsetup(struct pci_dev *dev) | ||
| 255 | { | ||
| 256 | u8 odlc, ndlc; | ||
| 257 | (void) pci_read_config_byte(dev, 0x82, &odlc); | ||
| 258 | /* Enable passive releases and delayed transaction */ | ||
| 259 | ndlc = odlc | 7; | ||
| 260 | (void) pci_write_config_byte(dev, 0x82, ndlc); | ||
| 261 | } | ||
| 262 | |||
| 263 | DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82371AB_0, | ||
| 264 | quirk_dlcsetup); | ||
diff --git a/arch/mips/nxp/pnx8550/common/int.c b/arch/mips/nxp/pnx8550/common/int.c index f080f114a1bf..7aca7d5375e5 100644 --- a/arch/mips/nxp/pnx8550/common/int.c +++ b/arch/mips/nxp/pnx8550/common/int.c | |||
| @@ -172,7 +172,7 @@ static struct irqaction gic_action = { | |||
| 172 | 172 | ||
| 173 | static struct irqaction timer_action = { | 173 | static struct irqaction timer_action = { |
| 174 | .handler = no_action, | 174 | .handler = no_action, |
| 175 | .flags = IRQF_DISABLED, | 175 | .flags = IRQF_DISABLED | IRQF_TIMER, |
| 176 | .name = "Timer", | 176 | .name = "Timer", |
| 177 | }; | 177 | }; |
| 178 | 178 | ||
diff --git a/arch/mips/nxp/pnx8550/common/time.c b/arch/mips/nxp/pnx8550/common/time.c index 18b192784877..8836c6203df0 100644 --- a/arch/mips/nxp/pnx8550/common/time.c +++ b/arch/mips/nxp/pnx8550/common/time.c | |||
| @@ -59,7 +59,7 @@ static irqreturn_t pnx8xxx_timer_interrupt(int irq, void *dev_id) | |||
| 59 | 59 | ||
| 60 | static struct irqaction pnx8xxx_timer_irq = { | 60 | static struct irqaction pnx8xxx_timer_irq = { |
| 61 | .handler = pnx8xxx_timer_interrupt, | 61 | .handler = pnx8xxx_timer_interrupt, |
| 62 | .flags = IRQF_DISABLED | IRQF_PERCPU, | 62 | .flags = IRQF_DISABLED | IRQF_PERCPU | IRQF_TIMER, |
| 63 | .name = "pnx8xxx_timer", | 63 | .name = "pnx8xxx_timer", |
| 64 | }; | 64 | }; |
| 65 | 65 | ||
| @@ -72,7 +72,7 @@ static irqreturn_t monotonic_interrupt(int irq, void *dev_id) | |||
| 72 | 72 | ||
| 73 | static struct irqaction monotonic_irqaction = { | 73 | static struct irqaction monotonic_irqaction = { |
| 74 | .handler = monotonic_interrupt, | 74 | .handler = monotonic_interrupt, |
| 75 | .flags = IRQF_DISABLED, | 75 | .flags = IRQF_DISABLED | IRQF_TIMER, |
| 76 | .name = "Monotonic timer", | 76 | .name = "Monotonic timer", |
| 77 | }; | 77 | }; |
| 78 | 78 | ||
diff --git a/arch/mips/oprofile/op_model_loongson2.c b/arch/mips/oprofile/op_model_loongson2.c index deed1d5d4982..575cd1473475 100644 --- a/arch/mips/oprofile/op_model_loongson2.c +++ b/arch/mips/oprofile/op_model_loongson2.c | |||
| @@ -22,7 +22,7 @@ | |||
| 22 | * otherwise, the oprofile tool will not recognize this and complain about | 22 | * otherwise, the oprofile tool will not recognize this and complain about |
| 23 | * "cpu_type 'unset' is not valid". | 23 | * "cpu_type 'unset' is not valid". |
| 24 | */ | 24 | */ |
| 25 | #define LOONGSON2_CPU_TYPE "mips/godson2" | 25 | #define LOONGSON2_CPU_TYPE "mips/loongson2" |
| 26 | 26 | ||
| 27 | #define LOONGSON2_COUNTER1_EVENT(event) ((event & 0x0f) << 5) | 27 | #define LOONGSON2_COUNTER1_EVENT(event) ((event & 0x0f) << 5) |
| 28 | #define LOONGSON2_COUNTER2_EVENT(event) ((event & 0x0f) << 9) | 28 | #define LOONGSON2_COUNTER2_EVENT(event) ((event & 0x0f) << 9) |
diff --git a/arch/mips/sgi-ip27/ip27-timer.c b/arch/mips/sgi-ip27/ip27-timer.c index 6d0e59ffba2e..d6802d6d1f82 100644 --- a/arch/mips/sgi-ip27/ip27-timer.c +++ b/arch/mips/sgi-ip27/ip27-timer.c | |||
| @@ -105,7 +105,7 @@ static irqreturn_t hub_rt_counter_handler(int irq, void *dev_id) | |||
| 105 | 105 | ||
| 106 | struct irqaction hub_rt_irqaction = { | 106 | struct irqaction hub_rt_irqaction = { |
| 107 | .handler = hub_rt_counter_handler, | 107 | .handler = hub_rt_counter_handler, |
| 108 | .flags = IRQF_DISABLED | IRQF_PERCPU, | 108 | .flags = IRQF_DISABLED | IRQF_PERCPU | IRQF_TIMER, |
| 109 | .name = "hub-rt", | 109 | .name = "hub-rt", |
| 110 | }; | 110 | }; |
| 111 | 111 | ||
diff --git a/arch/mips/sni/time.c b/arch/mips/sni/time.c index 62df6a598e0a..f3b60e671207 100644 --- a/arch/mips/sni/time.c +++ b/arch/mips/sni/time.c | |||
| @@ -67,7 +67,7 @@ static irqreturn_t a20r_interrupt(int irq, void *dev_id) | |||
| 67 | 67 | ||
| 68 | static struct irqaction a20r_irqaction = { | 68 | static struct irqaction a20r_irqaction = { |
| 69 | .handler = a20r_interrupt, | 69 | .handler = a20r_interrupt, |
| 70 | .flags = IRQF_DISABLED | IRQF_PERCPU, | 70 | .flags = IRQF_DISABLED | IRQF_PERCPU | IRQF_TIMER, |
| 71 | .name = "a20r-timer", | 71 | .name = "a20r-timer", |
| 72 | }; | 72 | }; |
| 73 | 73 | ||
diff --git a/arch/mips/txx9/generic/setup.c b/arch/mips/txx9/generic/setup.c index c860810722c0..e10184c1b3e1 100644 --- a/arch/mips/txx9/generic/setup.c +++ b/arch/mips/txx9/generic/setup.c | |||
| @@ -85,7 +85,7 @@ int txx9_ccfg_toeon __initdata = 1; | |||
| 85 | struct clk *clk_get(struct device *dev, const char *id) | 85 | struct clk *clk_get(struct device *dev, const char *id) |
| 86 | { | 86 | { |
| 87 | if (!strcmp(id, "spi-baseclk")) | 87 | if (!strcmp(id, "spi-baseclk")) |
| 88 | return (struct clk *)((unsigned long)txx9_gbus_clock / 2 / 4); | 88 | return (struct clk *)((unsigned long)txx9_gbus_clock / 2 / 2); |
| 89 | if (!strcmp(id, "imbus_clk")) | 89 | if (!strcmp(id, "imbus_clk")) |
| 90 | return (struct clk *)((unsigned long)txx9_gbus_clock / 2); | 90 | return (struct clk *)((unsigned long)txx9_gbus_clock / 2); |
| 91 | return ERR_PTR(-ENOENT); | 91 | return ERR_PTR(-ENOENT); |
| @@ -817,7 +817,8 @@ void __init txx9_iocled_init(unsigned long baseaddr, | |||
| 817 | out_pdev: | 817 | out_pdev: |
| 818 | platform_device_put(pdev); | 818 | platform_device_put(pdev); |
| 819 | out_gpio: | 819 | out_gpio: |
| 820 | gpio_remove(&iocled->chip); | 820 | if (gpiochip_remove(&iocled->chip)) |
| 821 | return; | ||
| 821 | out_unmap: | 822 | out_unmap: |
| 822 | iounmap(iocled->mmioaddr); | 823 | iounmap(iocled->mmioaddr); |
| 823 | out_free: | 824 | out_free: |
diff --git a/arch/s390/include/asm/cputime.h b/arch/s390/include/asm/cputime.h index 24b1244aadb9..f23961ada7fb 100644 --- a/arch/s390/include/asm/cputime.h +++ b/arch/s390/include/asm/cputime.h | |||
| @@ -78,7 +78,7 @@ cputime64_to_jiffies64(cputime64_t cputime) | |||
| 78 | static inline unsigned int | 78 | static inline unsigned int |
| 79 | cputime_to_msecs(const cputime_t cputime) | 79 | cputime_to_msecs(const cputime_t cputime) |
| 80 | { | 80 | { |
| 81 | return __div(cputime, 4096000); | 81 | return cputime_div(cputime, 4096000); |
| 82 | } | 82 | } |
| 83 | 83 | ||
| 84 | static inline cputime_t | 84 | static inline cputime_t |
| @@ -160,7 +160,7 @@ cputime_to_timeval(const cputime_t cputime, struct timeval *value) | |||
| 160 | static inline clock_t | 160 | static inline clock_t |
| 161 | cputime_to_clock_t(cputime_t cputime) | 161 | cputime_to_clock_t(cputime_t cputime) |
| 162 | { | 162 | { |
| 163 | return __div(cputime, 4096000000ULL / USER_HZ); | 163 | return cputime_div(cputime, 4096000000ULL / USER_HZ); |
| 164 | } | 164 | } |
| 165 | 165 | ||
| 166 | static inline cputime_t | 166 | static inline cputime_t |
| @@ -175,7 +175,7 @@ clock_t_to_cputime(unsigned long x) | |||
| 175 | static inline clock_t | 175 | static inline clock_t |
| 176 | cputime64_to_clock_t(cputime64_t cputime) | 176 | cputime64_to_clock_t(cputime64_t cputime) |
| 177 | { | 177 | { |
| 178 | return __div(cputime, 4096000000ULL / USER_HZ); | 178 | return cputime_div(cputime, 4096000000ULL / USER_HZ); |
| 179 | } | 179 | } |
| 180 | 180 | ||
| 181 | struct s390_idle_data { | 181 | struct s390_idle_data { |
diff --git a/arch/s390/kernel/ipl.c b/arch/s390/kernel/ipl.c index ee57a42e6e93..4890ac6d7faa 100644 --- a/arch/s390/kernel/ipl.c +++ b/arch/s390/kernel/ipl.c | |||
| @@ -1595,10 +1595,9 @@ static void stop_run(struct shutdown_trigger *trigger) | |||
| 1595 | { | 1595 | { |
| 1596 | if (strcmp(trigger->name, ON_PANIC_STR) == 0) | 1596 | if (strcmp(trigger->name, ON_PANIC_STR) == 0) |
| 1597 | disabled_wait((unsigned long) __builtin_return_address(0)); | 1597 | disabled_wait((unsigned long) __builtin_return_address(0)); |
| 1598 | else { | 1598 | while (signal_processor(smp_processor_id(), sigp_stop) == sigp_busy) |
| 1599 | signal_processor(smp_processor_id(), sigp_stop); | 1599 | cpu_relax(); |
| 1600 | for (;;); | 1600 | for (;;); |
| 1601 | } | ||
| 1602 | } | 1601 | } |
| 1603 | 1602 | ||
| 1604 | static struct shutdown_action stop_action = {SHUTDOWN_ACTION_STOP_STR, | 1603 | static struct shutdown_action stop_action = {SHUTDOWN_ACTION_STOP_STR, |
diff --git a/arch/s390/kernel/smp.c b/arch/s390/kernel/smp.c index c932caa5e850..93e52039321b 100644 --- a/arch/s390/kernel/smp.c +++ b/arch/s390/kernel/smp.c | |||
| @@ -76,7 +76,6 @@ static int cpu_stopped(int cpu) | |||
| 76 | __u32 status; | 76 | __u32 status; |
| 77 | 77 | ||
| 78 | switch (signal_processor_ps(&status, 0, cpu, sigp_sense)) { | 78 | switch (signal_processor_ps(&status, 0, cpu, sigp_sense)) { |
| 79 | case sigp_order_code_accepted: | ||
| 80 | case sigp_status_stored: | 79 | case sigp_status_stored: |
| 81 | /* Check for stopped and check stop state */ | 80 | /* Check for stopped and check stop state */ |
| 82 | if (status & 0x50) | 81 | if (status & 0x50) |
| @@ -638,6 +637,8 @@ void __cpu_die(unsigned int cpu) | |||
| 638 | /* Wait until target cpu is down */ | 637 | /* Wait until target cpu is down */ |
| 639 | while (!cpu_stopped(cpu)) | 638 | while (!cpu_stopped(cpu)) |
| 640 | cpu_relax(); | 639 | cpu_relax(); |
| 640 | while (signal_processor_p(0, cpu, sigp_set_prefix) == sigp_busy) | ||
| 641 | udelay(10); | ||
| 641 | smp_free_lowcore(cpu); | 642 | smp_free_lowcore(cpu); |
| 642 | pr_info("Processor %d stopped\n", cpu); | 643 | pr_info("Processor %d stopped\n", cpu); |
| 643 | } | 644 | } |
| @@ -645,8 +646,8 @@ void __cpu_die(unsigned int cpu) | |||
| 645 | void cpu_die(void) | 646 | void cpu_die(void) |
| 646 | { | 647 | { |
| 647 | idle_task_exit(); | 648 | idle_task_exit(); |
| 648 | signal_processor(smp_processor_id(), sigp_stop); | 649 | while (signal_processor(smp_processor_id(), sigp_stop) == sigp_busy) |
| 649 | BUG(); | 650 | cpu_relax(); |
| 650 | for (;;); | 651 | for (;;); |
| 651 | } | 652 | } |
| 652 | 653 | ||
diff --git a/arch/s390/kernel/swsusp_asm64.S b/arch/s390/kernel/swsusp_asm64.S index 7c8653e27db6..0c26cc1898ec 100644 --- a/arch/s390/kernel/swsusp_asm64.S +++ b/arch/s390/kernel/swsusp_asm64.S | |||
| @@ -199,6 +199,7 @@ pgm_check_entry: | |||
| 199 | brc 2,4b /* busy, try again */ | 199 | brc 2,4b /* busy, try again */ |
| 200 | 5: | 200 | 5: |
| 201 | sigp %r9,%r2,__SIGP_STOP /* stop resume (current) CPU */ | 201 | sigp %r9,%r2,__SIGP_STOP /* stop resume (current) CPU */ |
| 202 | brc 2,5b /* busy, try again */ | ||
| 202 | 6: j 6b | 203 | 6: j 6b |
| 203 | 204 | ||
| 204 | restart_suspend: | 205 | restart_suspend: |
| @@ -206,6 +207,7 @@ restart_suspend: | |||
| 206 | llgh %r2,0(%r1) | 207 | llgh %r2,0(%r1) |
| 207 | 7: | 208 | 7: |
| 208 | sigp %r9,%r2,__SIGP_SENSE /* Wait for resume CPU */ | 209 | sigp %r9,%r2,__SIGP_SENSE /* Wait for resume CPU */ |
| 210 | brc 8,7b /* accepted, status 0, still running */ | ||
| 209 | brc 2,7b /* busy, try again */ | 211 | brc 2,7b /* busy, try again */ |
| 210 | tmll %r9,0x40 /* Test if resume CPU is stopped */ | 212 | tmll %r9,0x40 /* Test if resume CPU is stopped */ |
| 211 | jz 7b | 213 | jz 7b |
diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig index 07e01149e3bf..72ace9515a07 100644 --- a/arch/x86/Kconfig +++ b/arch/x86/Kconfig | |||
| @@ -1443,12 +1443,8 @@ config SECCOMP | |||
| 1443 | 1443 | ||
| 1444 | If unsure, say Y. Only embedded should say N here. | 1444 | If unsure, say Y. Only embedded should say N here. |
| 1445 | 1445 | ||
| 1446 | config CC_STACKPROTECTOR_ALL | ||
| 1447 | bool | ||
| 1448 | |||
| 1449 | config CC_STACKPROTECTOR | 1446 | config CC_STACKPROTECTOR |
| 1450 | bool "Enable -fstack-protector buffer overflow detection (EXPERIMENTAL)" | 1447 | bool "Enable -fstack-protector buffer overflow detection (EXPERIMENTAL)" |
| 1451 | select CC_STACKPROTECTOR_ALL | ||
| 1452 | ---help--- | 1448 | ---help--- |
| 1453 | This option turns on the -fstack-protector GCC feature. This | 1449 | This option turns on the -fstack-protector GCC feature. This |
| 1454 | feature puts, at the beginning of functions, a canary value on | 1450 | feature puts, at the beginning of functions, a canary value on |
diff --git a/arch/x86/Kconfig.cpu b/arch/x86/Kconfig.cpu index f2824fb8c79c..2649840d888f 100644 --- a/arch/x86/Kconfig.cpu +++ b/arch/x86/Kconfig.cpu | |||
| @@ -400,7 +400,7 @@ config X86_TSC | |||
| 400 | 400 | ||
| 401 | config X86_CMPXCHG64 | 401 | config X86_CMPXCHG64 |
| 402 | def_bool y | 402 | def_bool y |
| 403 | depends on X86_PAE || X86_64 || MCORE2 || MPENTIUM4 || MPENTIUMM || MPENTIUMIII || MPENTIUMII || M686 || MATOM | 403 | depends on !M386 && !M486 |
| 404 | 404 | ||
| 405 | # this should be set for all -march=.. options where the compiler | 405 | # this should be set for all -march=.. options where the compiler |
| 406 | # generates cmov. | 406 | # generates cmov. |
diff --git a/arch/x86/Makefile b/arch/x86/Makefile index a012ee8ef803..d2d24c9ee64d 100644 --- a/arch/x86/Makefile +++ b/arch/x86/Makefile | |||
| @@ -76,7 +76,6 @@ ifdef CONFIG_CC_STACKPROTECTOR | |||
| 76 | cc_has_sp := $(srctree)/scripts/gcc-x86_$(BITS)-has-stack-protector.sh | 76 | cc_has_sp := $(srctree)/scripts/gcc-x86_$(BITS)-has-stack-protector.sh |
| 77 | ifeq ($(shell $(CONFIG_SHELL) $(cc_has_sp) $(CC) $(biarch)),y) | 77 | ifeq ($(shell $(CONFIG_SHELL) $(cc_has_sp) $(CC) $(biarch)),y) |
| 78 | stackp-y := -fstack-protector | 78 | stackp-y := -fstack-protector |
| 79 | stackp-$(CONFIG_CC_STACKPROTECTOR_ALL) += -fstack-protector-all | ||
| 80 | KBUILD_CFLAGS += $(stackp-y) | 79 | KBUILD_CFLAGS += $(stackp-y) |
| 81 | else | 80 | else |
| 82 | $(warning stack protector enabled but no compiler support) | 81 | $(warning stack protector enabled but no compiler support) |
diff --git a/arch/x86/ia32/ia32entry.S b/arch/x86/ia32/ia32entry.S index 1733f9f65e82..581b0568fe19 100644 --- a/arch/x86/ia32/ia32entry.S +++ b/arch/x86/ia32/ia32entry.S | |||
| @@ -204,7 +204,7 @@ sysexit_from_sys_call: | |||
| 204 | movl RDI-ARGOFFSET(%rsp),%r8d /* reload 5th syscall arg */ | 204 | movl RDI-ARGOFFSET(%rsp),%r8d /* reload 5th syscall arg */ |
| 205 | .endm | 205 | .endm |
| 206 | 206 | ||
| 207 | .macro auditsys_exit exit,ebpsave=RBP | 207 | .macro auditsys_exit exit |
| 208 | testl $(_TIF_ALLWORK_MASK & ~_TIF_SYSCALL_AUDIT),TI_flags(%r10) | 208 | testl $(_TIF_ALLWORK_MASK & ~_TIF_SYSCALL_AUDIT),TI_flags(%r10) |
| 209 | jnz ia32_ret_from_sys_call | 209 | jnz ia32_ret_from_sys_call |
| 210 | TRACE_IRQS_ON | 210 | TRACE_IRQS_ON |
| @@ -217,7 +217,6 @@ sysexit_from_sys_call: | |||
| 217 | call audit_syscall_exit | 217 | call audit_syscall_exit |
| 218 | GET_THREAD_INFO(%r10) | 218 | GET_THREAD_INFO(%r10) |
| 219 | movl RAX-ARGOFFSET(%rsp),%eax /* reload syscall return value */ | 219 | movl RAX-ARGOFFSET(%rsp),%eax /* reload syscall return value */ |
| 220 | movl \ebpsave-ARGOFFSET(%rsp),%ebp /* reload user register value */ | ||
| 221 | movl $(_TIF_ALLWORK_MASK & ~_TIF_SYSCALL_AUDIT),%edi | 220 | movl $(_TIF_ALLWORK_MASK & ~_TIF_SYSCALL_AUDIT),%edi |
| 222 | cli | 221 | cli |
| 223 | TRACE_IRQS_OFF | 222 | TRACE_IRQS_OFF |
| @@ -351,7 +350,7 @@ cstar_auditsys: | |||
| 351 | jmp cstar_dispatch | 350 | jmp cstar_dispatch |
| 352 | 351 | ||
| 353 | sysretl_audit: | 352 | sysretl_audit: |
| 354 | auditsys_exit sysretl_from_sys_call, RCX /* user %ebp in RCX slot */ | 353 | auditsys_exit sysretl_from_sys_call |
| 355 | #endif | 354 | #endif |
| 356 | 355 | ||
| 357 | cstar_tracesys: | 356 | cstar_tracesys: |
diff --git a/arch/x86/include/asm/amd_iommu.h b/arch/x86/include/asm/amd_iommu.h index ac95995b7bad..4b180897e6b5 100644 --- a/arch/x86/include/asm/amd_iommu.h +++ b/arch/x86/include/asm/amd_iommu.h | |||
| @@ -31,6 +31,7 @@ extern irqreturn_t amd_iommu_int_handler(int irq, void *data); | |||
| 31 | extern void amd_iommu_flush_all_domains(void); | 31 | extern void amd_iommu_flush_all_domains(void); |
| 32 | extern void amd_iommu_flush_all_devices(void); | 32 | extern void amd_iommu_flush_all_devices(void); |
| 33 | extern void amd_iommu_shutdown(void); | 33 | extern void amd_iommu_shutdown(void); |
| 34 | extern void amd_iommu_apply_erratum_63(u16 devid); | ||
| 34 | #else | 35 | #else |
| 35 | static inline int amd_iommu_init(void) { return -ENODEV; } | 36 | static inline int amd_iommu_init(void) { return -ENODEV; } |
| 36 | static inline void amd_iommu_detect(void) { } | 37 | static inline void amd_iommu_detect(void) { } |
diff --git a/arch/x86/include/asm/desc.h b/arch/x86/include/asm/desc.h index e8de2f6f5ca5..617bd56b3070 100644 --- a/arch/x86/include/asm/desc.h +++ b/arch/x86/include/asm/desc.h | |||
| @@ -288,7 +288,7 @@ static inline void load_LDT(mm_context_t *pc) | |||
| 288 | 288 | ||
| 289 | static inline unsigned long get_desc_base(const struct desc_struct *desc) | 289 | static inline unsigned long get_desc_base(const struct desc_struct *desc) |
| 290 | { | 290 | { |
| 291 | return desc->base0 | ((desc->base1) << 16) | ((desc->base2) << 24); | 291 | return (unsigned)(desc->base0 | ((desc->base1) << 16) | ((desc->base2) << 24)); |
| 292 | } | 292 | } |
| 293 | 293 | ||
| 294 | static inline void set_desc_base(struct desc_struct *desc, unsigned long base) | 294 | static inline void set_desc_base(struct desc_struct *desc, unsigned long base) |
diff --git a/arch/x86/include/asm/processor.h b/arch/x86/include/asm/processor.h index c3429e8b2424..c9786480f0fe 100644 --- a/arch/x86/include/asm/processor.h +++ b/arch/x86/include/asm/processor.h | |||
| @@ -1000,7 +1000,7 @@ extern unsigned long thread_saved_pc(struct task_struct *tsk); | |||
| 1000 | #define thread_saved_pc(t) (*(unsigned long *)((t)->thread.sp - 8)) | 1000 | #define thread_saved_pc(t) (*(unsigned long *)((t)->thread.sp - 8)) |
| 1001 | 1001 | ||
| 1002 | #define task_pt_regs(tsk) ((struct pt_regs *)(tsk)->thread.sp0 - 1) | 1002 | #define task_pt_regs(tsk) ((struct pt_regs *)(tsk)->thread.sp0 - 1) |
| 1003 | #define KSTK_ESP(tsk) -1 /* sorry. doesn't work for syscall. */ | 1003 | extern unsigned long KSTK_ESP(struct task_struct *task); |
| 1004 | #endif /* CONFIG_X86_64 */ | 1004 | #endif /* CONFIG_X86_64 */ |
| 1005 | 1005 | ||
| 1006 | extern void start_thread(struct pt_regs *regs, unsigned long new_ip, | 1006 | extern void start_thread(struct pt_regs *regs, unsigned long new_ip, |
diff --git a/arch/x86/include/asm/topology.h b/arch/x86/include/asm/topology.h index d823c245f63b..40e37b10c6c0 100644 --- a/arch/x86/include/asm/topology.h +++ b/arch/x86/include/asm/topology.h | |||
| @@ -143,7 +143,7 @@ extern unsigned long node_remap_size[]; | |||
| 143 | | 1*SD_BALANCE_FORK \ | 143 | | 1*SD_BALANCE_FORK \ |
| 144 | | 0*SD_BALANCE_WAKE \ | 144 | | 0*SD_BALANCE_WAKE \ |
| 145 | | 1*SD_WAKE_AFFINE \ | 145 | | 1*SD_WAKE_AFFINE \ |
| 146 | | 1*SD_PREFER_LOCAL \ | 146 | | 0*SD_PREFER_LOCAL \ |
| 147 | | 0*SD_SHARE_CPUPOWER \ | 147 | | 0*SD_SHARE_CPUPOWER \ |
| 148 | | 0*SD_POWERSAVINGS_BALANCE \ | 148 | | 0*SD_POWERSAVINGS_BALANCE \ |
| 149 | | 0*SD_SHARE_PKG_RESOURCES \ | 149 | | 0*SD_SHARE_PKG_RESOURCES \ |
diff --git a/arch/x86/kernel/amd_iommu.c b/arch/x86/kernel/amd_iommu.c index 98f230f6a28d..0285521e0a99 100644 --- a/arch/x86/kernel/amd_iommu.c +++ b/arch/x86/kernel/amd_iommu.c | |||
| @@ -1220,6 +1220,8 @@ static void __detach_device(struct protection_domain *domain, u16 devid) | |||
| 1220 | amd_iommu_dev_table[devid].data[1] = 0; | 1220 | amd_iommu_dev_table[devid].data[1] = 0; |
| 1221 | amd_iommu_dev_table[devid].data[2] = 0; | 1221 | amd_iommu_dev_table[devid].data[2] = 0; |
| 1222 | 1222 | ||
| 1223 | amd_iommu_apply_erratum_63(devid); | ||
| 1224 | |||
| 1223 | /* decrease reference counter */ | 1225 | /* decrease reference counter */ |
| 1224 | domain->dev_cnt -= 1; | 1226 | domain->dev_cnt -= 1; |
| 1225 | 1227 | ||
diff --git a/arch/x86/kernel/amd_iommu_init.c b/arch/x86/kernel/amd_iommu_init.c index b4b61d462dcc..c20001e4f556 100644 --- a/arch/x86/kernel/amd_iommu_init.c +++ b/arch/x86/kernel/amd_iommu_init.c | |||
| @@ -240,7 +240,7 @@ static void iommu_feature_enable(struct amd_iommu *iommu, u8 bit) | |||
| 240 | writel(ctrl, iommu->mmio_base + MMIO_CONTROL_OFFSET); | 240 | writel(ctrl, iommu->mmio_base + MMIO_CONTROL_OFFSET); |
| 241 | } | 241 | } |
| 242 | 242 | ||
| 243 | static void __init iommu_feature_disable(struct amd_iommu *iommu, u8 bit) | 243 | static void iommu_feature_disable(struct amd_iommu *iommu, u8 bit) |
| 244 | { | 244 | { |
| 245 | u32 ctrl; | 245 | u32 ctrl; |
| 246 | 246 | ||
| @@ -519,6 +519,26 @@ static void set_dev_entry_bit(u16 devid, u8 bit) | |||
| 519 | amd_iommu_dev_table[devid].data[i] |= (1 << _bit); | 519 | amd_iommu_dev_table[devid].data[i] |= (1 << _bit); |
| 520 | } | 520 | } |
| 521 | 521 | ||
| 522 | static int get_dev_entry_bit(u16 devid, u8 bit) | ||
| 523 | { | ||
| 524 | int i = (bit >> 5) & 0x07; | ||
| 525 | int _bit = bit & 0x1f; | ||
| 526 | |||
| 527 | return (amd_iommu_dev_table[devid].data[i] & (1 << _bit)) >> _bit; | ||
| 528 | } | ||
| 529 | |||
| 530 | |||
| 531 | void amd_iommu_apply_erratum_63(u16 devid) | ||
| 532 | { | ||
| 533 | int sysmgt; | ||
| 534 | |||
| 535 | sysmgt = get_dev_entry_bit(devid, DEV_ENTRY_SYSMGT1) | | ||
| 536 | (get_dev_entry_bit(devid, DEV_ENTRY_SYSMGT2) << 1); | ||
| 537 | |||
| 538 | if (sysmgt == 0x01) | ||
| 539 | set_dev_entry_bit(devid, DEV_ENTRY_IW); | ||
| 540 | } | ||
| 541 | |||
| 522 | /* Writes the specific IOMMU for a device into the rlookup table */ | 542 | /* Writes the specific IOMMU for a device into the rlookup table */ |
| 523 | static void __init set_iommu_for_device(struct amd_iommu *iommu, u16 devid) | 543 | static void __init set_iommu_for_device(struct amd_iommu *iommu, u16 devid) |
| 524 | { | 544 | { |
| @@ -547,6 +567,8 @@ static void __init set_dev_entry_from_acpi(struct amd_iommu *iommu, | |||
| 547 | if (flags & ACPI_DEVFLAG_LINT1) | 567 | if (flags & ACPI_DEVFLAG_LINT1) |
| 548 | set_dev_entry_bit(devid, DEV_ENTRY_LINT1_PASS); | 568 | set_dev_entry_bit(devid, DEV_ENTRY_LINT1_PASS); |
| 549 | 569 | ||
| 570 | amd_iommu_apply_erratum_63(devid); | ||
| 571 | |||
| 550 | set_iommu_for_device(iommu, devid); | 572 | set_iommu_for_device(iommu, devid); |
| 551 | } | 573 | } |
| 552 | 574 | ||
diff --git a/arch/x86/kernel/cpu/mtrr/cleanup.c b/arch/x86/kernel/cpu/mtrr/cleanup.c index 315738c74aad..73c86db5acbe 100644 --- a/arch/x86/kernel/cpu/mtrr/cleanup.c +++ b/arch/x86/kernel/cpu/mtrr/cleanup.c | |||
| @@ -846,7 +846,7 @@ int __init mtrr_cleanup(unsigned address_bits) | |||
| 846 | sort(range, nr_range, sizeof(struct res_range), cmp_range, NULL); | 846 | sort(range, nr_range, sizeof(struct res_range), cmp_range, NULL); |
| 847 | 847 | ||
| 848 | range_sums = sum_ranges(range, nr_range); | 848 | range_sums = sum_ranges(range, nr_range); |
| 849 | printk(KERN_INFO "total RAM coverred: %ldM\n", | 849 | printk(KERN_INFO "total RAM covered: %ldM\n", |
| 850 | range_sums >> (20 - PAGE_SHIFT)); | 850 | range_sums >> (20 - PAGE_SHIFT)); |
| 851 | 851 | ||
| 852 | if (mtrr_chunk_size && mtrr_gran_size) { | 852 | if (mtrr_chunk_size && mtrr_gran_size) { |
diff --git a/arch/x86/kernel/crash_dump_32.c b/arch/x86/kernel/crash_dump_32.c index f7cdb3b457aa..cd97ce18c29d 100644 --- a/arch/x86/kernel/crash_dump_32.c +++ b/arch/x86/kernel/crash_dump_32.c | |||
| @@ -16,6 +16,22 @@ static void *kdump_buf_page; | |||
| 16 | /* Stores the physical address of elf header of crash image. */ | 16 | /* Stores the physical address of elf header of crash image. */ |
| 17 | unsigned long long elfcorehdr_addr = ELFCORE_ADDR_MAX; | 17 | unsigned long long elfcorehdr_addr = ELFCORE_ADDR_MAX; |
| 18 | 18 | ||
| 19 | static inline bool is_crashed_pfn_valid(unsigned long pfn) | ||
| 20 | { | ||
| 21 | #ifndef CONFIG_X86_PAE | ||
| 22 | /* | ||
| 23 | * non-PAE kdump kernel executed from a PAE one will crop high pte | ||
| 24 | * bits and poke unwanted space counting again from address 0, we | ||
| 25 | * don't want that. pte must fit into unsigned long. In fact the | ||
| 26 | * test checks high 12 bits for being zero (pfn will be shifted left | ||
| 27 | * by PAGE_SHIFT). | ||
| 28 | */ | ||
| 29 | return pte_pfn(pfn_pte(pfn, __pgprot(0))) == pfn; | ||
| 30 | #else | ||
| 31 | return true; | ||
| 32 | #endif | ||
| 33 | } | ||
| 34 | |||
| 19 | /** | 35 | /** |
| 20 | * copy_oldmem_page - copy one page from "oldmem" | 36 | * copy_oldmem_page - copy one page from "oldmem" |
| 21 | * @pfn: page frame number to be copied | 37 | * @pfn: page frame number to be copied |
| @@ -41,6 +57,9 @@ ssize_t copy_oldmem_page(unsigned long pfn, char *buf, | |||
| 41 | if (!csize) | 57 | if (!csize) |
| 42 | return 0; | 58 | return 0; |
| 43 | 59 | ||
| 60 | if (!is_crashed_pfn_valid(pfn)) | ||
| 61 | return -EFAULT; | ||
| 62 | |||
| 44 | vaddr = kmap_atomic_pfn(pfn, KM_PTE0); | 63 | vaddr = kmap_atomic_pfn(pfn, KM_PTE0); |
| 45 | 64 | ||
| 46 | if (!userbuf) { | 65 | if (!userbuf) { |
diff --git a/arch/x86/kernel/efi.c b/arch/x86/kernel/efi.c index ad5bd988fb79..cdcfb122f256 100644 --- a/arch/x86/kernel/efi.c +++ b/arch/x86/kernel/efi.c | |||
| @@ -454,8 +454,10 @@ void __init efi_init(void) | |||
| 454 | if (add_efi_memmap) | 454 | if (add_efi_memmap) |
| 455 | do_add_efi_memmap(); | 455 | do_add_efi_memmap(); |
| 456 | 456 | ||
| 457 | #ifdef CONFIG_X86_32 | ||
| 457 | x86_platform.get_wallclock = efi_get_time; | 458 | x86_platform.get_wallclock = efi_get_time; |
| 458 | x86_platform.set_wallclock = efi_set_rtc_mmss; | 459 | x86_platform.set_wallclock = efi_set_rtc_mmss; |
| 460 | #endif | ||
| 459 | 461 | ||
| 460 | /* Setup for EFI runtime service */ | 462 | /* Setup for EFI runtime service */ |
| 461 | reboot_type = BOOT_EFI; | 463 | reboot_type = BOOT_EFI; |
diff --git a/arch/x86/kernel/process_64.c b/arch/x86/kernel/process_64.c index ad535b683170..eb62cbcaa490 100644 --- a/arch/x86/kernel/process_64.c +++ b/arch/x86/kernel/process_64.c | |||
| @@ -664,3 +664,8 @@ long sys_arch_prctl(int code, unsigned long addr) | |||
| 664 | return do_arch_prctl(current, code, addr); | 664 | return do_arch_prctl(current, code, addr); |
| 665 | } | 665 | } |
| 666 | 666 | ||
| 667 | unsigned long KSTK_ESP(struct task_struct *task) | ||
| 668 | { | ||
| 669 | return (test_tsk_thread_flag(task, TIF_IA32)) ? | ||
| 670 | (task_pt_regs(task)->sp) : ((task)->thread.usersp); | ||
| 671 | } | ||
diff --git a/arch/x86/kernel/reboot.c b/arch/x86/kernel/reboot.c index a1a3cdda06e1..f93078746e00 100644 --- a/arch/x86/kernel/reboot.c +++ b/arch/x86/kernel/reboot.c | |||
| @@ -436,6 +436,14 @@ static struct dmi_system_id __initdata pci_reboot_dmi_table[] = { | |||
| 436 | DMI_MATCH(DMI_PRODUCT_NAME, "MacBookPro5"), | 436 | DMI_MATCH(DMI_PRODUCT_NAME, "MacBookPro5"), |
| 437 | }, | 437 | }, |
| 438 | }, | 438 | }, |
| 439 | { /* Handle problems with rebooting on Apple Macmini3,1 */ | ||
| 440 | .callback = set_pci_reboot, | ||
| 441 | .ident = "Apple Macmini3,1", | ||
| 442 | .matches = { | ||
| 443 | DMI_MATCH(DMI_SYS_VENDOR, "Apple Inc."), | ||
| 444 | DMI_MATCH(DMI_PRODUCT_NAME, "Macmini3,1"), | ||
| 445 | }, | ||
| 446 | }, | ||
| 439 | { } | 447 | { } |
| 440 | }; | 448 | }; |
| 441 | 449 | ||
diff --git a/arch/x86/xen/enlighten.c b/arch/x86/xen/enlighten.c index 23a4d80fb39e..dfbf70e65860 100644 --- a/arch/x86/xen/enlighten.c +++ b/arch/x86/xen/enlighten.c | |||
| @@ -178,6 +178,7 @@ static __read_mostly unsigned int cpuid_leaf1_ecx_mask = ~0; | |||
| 178 | static void xen_cpuid(unsigned int *ax, unsigned int *bx, | 178 | static void xen_cpuid(unsigned int *ax, unsigned int *bx, |
| 179 | unsigned int *cx, unsigned int *dx) | 179 | unsigned int *cx, unsigned int *dx) |
| 180 | { | 180 | { |
| 181 | unsigned maskebx = ~0; | ||
| 181 | unsigned maskecx = ~0; | 182 | unsigned maskecx = ~0; |
| 182 | unsigned maskedx = ~0; | 183 | unsigned maskedx = ~0; |
| 183 | 184 | ||
| @@ -185,9 +186,16 @@ static void xen_cpuid(unsigned int *ax, unsigned int *bx, | |||
| 185 | * Mask out inconvenient features, to try and disable as many | 186 | * Mask out inconvenient features, to try and disable as many |
| 186 | * unsupported kernel subsystems as possible. | 187 | * unsupported kernel subsystems as possible. |
| 187 | */ | 188 | */ |
| 188 | if (*ax == 1) { | 189 | switch (*ax) { |
| 190 | case 1: | ||
| 189 | maskecx = cpuid_leaf1_ecx_mask; | 191 | maskecx = cpuid_leaf1_ecx_mask; |
| 190 | maskedx = cpuid_leaf1_edx_mask; | 192 | maskedx = cpuid_leaf1_edx_mask; |
| 193 | break; | ||
| 194 | |||
| 195 | case 0xb: | ||
| 196 | /* Suppress extended topology stuff */ | ||
| 197 | maskebx = 0; | ||
| 198 | break; | ||
| 191 | } | 199 | } |
| 192 | 200 | ||
| 193 | asm(XEN_EMULATE_PREFIX "cpuid" | 201 | asm(XEN_EMULATE_PREFIX "cpuid" |
| @@ -197,6 +205,7 @@ static void xen_cpuid(unsigned int *ax, unsigned int *bx, | |||
| 197 | "=d" (*dx) | 205 | "=d" (*dx) |
| 198 | : "0" (*ax), "2" (*cx)); | 206 | : "0" (*ax), "2" (*cx)); |
| 199 | 207 | ||
| 208 | *bx &= maskebx; | ||
| 200 | *cx &= maskecx; | 209 | *cx &= maskecx; |
| 201 | *dx &= maskedx; | 210 | *dx &= maskedx; |
| 202 | } | 211 | } |
diff --git a/block/cfq-iosched.c b/block/cfq-iosched.c index 069a61017c02..aa1e9535e358 100644 --- a/block/cfq-iosched.c +++ b/block/cfq-iosched.c | |||
| @@ -196,6 +196,7 @@ enum cfqq_state_flags { | |||
| 196 | CFQ_CFQQ_FLAG_slice_new, /* no requests dispatched in slice */ | 196 | CFQ_CFQQ_FLAG_slice_new, /* no requests dispatched in slice */ |
| 197 | CFQ_CFQQ_FLAG_sync, /* synchronous queue */ | 197 | CFQ_CFQQ_FLAG_sync, /* synchronous queue */ |
| 198 | CFQ_CFQQ_FLAG_coop, /* has done a coop jump of the queue */ | 198 | CFQ_CFQQ_FLAG_coop, /* has done a coop jump of the queue */ |
| 199 | CFQ_CFQQ_FLAG_coop_preempt, /* coop preempt */ | ||
| 199 | }; | 200 | }; |
| 200 | 201 | ||
| 201 | #define CFQ_CFQQ_FNS(name) \ | 202 | #define CFQ_CFQQ_FNS(name) \ |
| @@ -222,6 +223,7 @@ CFQ_CFQQ_FNS(prio_changed); | |||
| 222 | CFQ_CFQQ_FNS(slice_new); | 223 | CFQ_CFQQ_FNS(slice_new); |
| 223 | CFQ_CFQQ_FNS(sync); | 224 | CFQ_CFQQ_FNS(sync); |
| 224 | CFQ_CFQQ_FNS(coop); | 225 | CFQ_CFQQ_FNS(coop); |
| 226 | CFQ_CFQQ_FNS(coop_preempt); | ||
| 225 | #undef CFQ_CFQQ_FNS | 227 | #undef CFQ_CFQQ_FNS |
| 226 | 228 | ||
| 227 | #define cfq_log_cfqq(cfqd, cfqq, fmt, args...) \ | 229 | #define cfq_log_cfqq(cfqd, cfqq, fmt, args...) \ |
| @@ -945,10 +947,13 @@ static struct cfq_queue *cfq_set_active_queue(struct cfq_data *cfqd, | |||
| 945 | { | 947 | { |
| 946 | if (!cfqq) { | 948 | if (!cfqq) { |
| 947 | cfqq = cfq_get_next_queue(cfqd); | 949 | cfqq = cfq_get_next_queue(cfqd); |
| 948 | if (cfqq) | 950 | if (cfqq && !cfq_cfqq_coop_preempt(cfqq)) |
| 949 | cfq_clear_cfqq_coop(cfqq); | 951 | cfq_clear_cfqq_coop(cfqq); |
| 950 | } | 952 | } |
| 951 | 953 | ||
| 954 | if (cfqq) | ||
| 955 | cfq_clear_cfqq_coop_preempt(cfqq); | ||
| 956 | |||
| 952 | __cfq_set_active_queue(cfqd, cfqq); | 957 | __cfq_set_active_queue(cfqd, cfqq); |
| 953 | return cfqq; | 958 | return cfqq; |
| 954 | } | 959 | } |
| @@ -2051,7 +2056,7 @@ cfq_should_preempt(struct cfq_data *cfqd, struct cfq_queue *new_cfqq, | |||
| 2051 | * it's a metadata request and the current queue is doing regular IO. | 2056 | * it's a metadata request and the current queue is doing regular IO. |
| 2052 | */ | 2057 | */ |
| 2053 | if (rq_is_meta(rq) && !cfqq->meta_pending) | 2058 | if (rq_is_meta(rq) && !cfqq->meta_pending) |
| 2054 | return false; | 2059 | return true; |
| 2055 | 2060 | ||
| 2056 | /* | 2061 | /* |
| 2057 | * Allow an RT request to pre-empt an ongoing non-RT cfqq timeslice. | 2062 | * Allow an RT request to pre-empt an ongoing non-RT cfqq timeslice. |
| @@ -2066,8 +2071,16 @@ cfq_should_preempt(struct cfq_data *cfqd, struct cfq_queue *new_cfqq, | |||
| 2066 | * if this request is as-good as one we would expect from the | 2071 | * if this request is as-good as one we would expect from the |
| 2067 | * current cfqq, let it preempt | 2072 | * current cfqq, let it preempt |
| 2068 | */ | 2073 | */ |
| 2069 | if (cfq_rq_close(cfqd, rq)) | 2074 | if (cfq_rq_close(cfqd, rq) && (!cfq_cfqq_coop(new_cfqq) || |
| 2075 | cfqd->busy_queues == 1)) { | ||
| 2076 | /* | ||
| 2077 | * Mark new queue coop_preempt, so its coop flag will not be | ||
| 2078 | * cleared when new queue gets scheduled at the very first time | ||
| 2079 | */ | ||
| 2080 | cfq_mark_cfqq_coop_preempt(new_cfqq); | ||
| 2081 | cfq_mark_cfqq_coop(new_cfqq); | ||
| 2070 | return true; | 2082 | return true; |
| 2083 | } | ||
| 2071 | 2084 | ||
| 2072 | return false; | 2085 | return false; |
| 2073 | } | 2086 | } |
diff --git a/crypto/async_tx/async_pq.c b/crypto/async_tx/async_pq.c index b88db6d1dc65..6b5cc4fba59f 100644 --- a/crypto/async_tx/async_pq.c +++ b/crypto/async_tx/async_pq.c | |||
| @@ -26,14 +26,10 @@ | |||
| 26 | #include <linux/async_tx.h> | 26 | #include <linux/async_tx.h> |
| 27 | 27 | ||
| 28 | /** | 28 | /** |
| 29 | * scribble - space to hold throwaway P buffer for synchronous gen_syndrome | 29 | * pq_scribble_page - space to hold throwaway P or Q buffer for |
| 30 | * synchronous gen_syndrome | ||
| 30 | */ | 31 | */ |
| 31 | static struct page *scribble; | 32 | static struct page *pq_scribble_page; |
| 32 | |||
| 33 | static bool is_raid6_zero_block(struct page *p) | ||
| 34 | { | ||
| 35 | return p == (void *) raid6_empty_zero_page; | ||
| 36 | } | ||
| 37 | 33 | ||
| 38 | /* the struct page *blocks[] parameter passed to async_gen_syndrome() | 34 | /* the struct page *blocks[] parameter passed to async_gen_syndrome() |
| 39 | * and async_syndrome_val() contains the 'P' destination address at | 35 | * and async_syndrome_val() contains the 'P' destination address at |
| @@ -83,7 +79,7 @@ do_async_gen_syndrome(struct dma_chan *chan, struct page **blocks, | |||
| 83 | * sources and update the coefficients accordingly | 79 | * sources and update the coefficients accordingly |
| 84 | */ | 80 | */ |
| 85 | for (i = 0, idx = 0; i < src_cnt; i++) { | 81 | for (i = 0, idx = 0; i < src_cnt; i++) { |
| 86 | if (is_raid6_zero_block(blocks[i])) | 82 | if (blocks[i] == NULL) |
| 87 | continue; | 83 | continue; |
| 88 | dma_src[idx] = dma_map_page(dma->dev, blocks[i], offset, len, | 84 | dma_src[idx] = dma_map_page(dma->dev, blocks[i], offset, len, |
| 89 | DMA_TO_DEVICE); | 85 | DMA_TO_DEVICE); |
| @@ -160,9 +156,9 @@ do_sync_gen_syndrome(struct page **blocks, unsigned int offset, int disks, | |||
| 160 | srcs = (void **) blocks; | 156 | srcs = (void **) blocks; |
| 161 | 157 | ||
| 162 | for (i = 0; i < disks; i++) { | 158 | for (i = 0; i < disks; i++) { |
| 163 | if (is_raid6_zero_block(blocks[i])) { | 159 | if (blocks[i] == NULL) { |
| 164 | BUG_ON(i > disks - 3); /* P or Q can't be zero */ | 160 | BUG_ON(i > disks - 3); /* P or Q can't be zero */ |
| 165 | srcs[i] = blocks[i]; | 161 | srcs[i] = (void*)raid6_empty_zero_page; |
| 166 | } else | 162 | } else |
| 167 | srcs[i] = page_address(blocks[i]) + offset; | 163 | srcs[i] = page_address(blocks[i]) + offset; |
| 168 | } | 164 | } |
| @@ -186,10 +182,14 @@ do_sync_gen_syndrome(struct page **blocks, unsigned int offset, int disks, | |||
| 186 | * blocks[disks-1] to NULL. When P or Q is omitted 'len' must be <= | 182 | * blocks[disks-1] to NULL. When P or Q is omitted 'len' must be <= |
| 187 | * PAGE_SIZE as a temporary buffer of this size is used in the | 183 | * PAGE_SIZE as a temporary buffer of this size is used in the |
| 188 | * synchronous path. 'disks' always accounts for both destination | 184 | * synchronous path. 'disks' always accounts for both destination |
| 189 | * buffers. | 185 | * buffers. If any source buffers (blocks[i] where i < disks - 2) are |
| 186 | * set to NULL those buffers will be replaced with the raid6_zero_page | ||
| 187 | * in the synchronous path and omitted in the hardware-asynchronous | ||
| 188 | * path. | ||
| 190 | * | 189 | * |
| 191 | * 'blocks' note: if submit->scribble is NULL then the contents of | 190 | * 'blocks' note: if submit->scribble is NULL then the contents of |
| 192 | * 'blocks' may be overridden | 191 | * 'blocks' may be overwritten to perform address conversions |
| 192 | * (dma_map_page() or page_address()). | ||
| 193 | */ | 193 | */ |
| 194 | struct dma_async_tx_descriptor * | 194 | struct dma_async_tx_descriptor * |
| 195 | async_gen_syndrome(struct page **blocks, unsigned int offset, int disks, | 195 | async_gen_syndrome(struct page **blocks, unsigned int offset, int disks, |
| @@ -227,11 +227,11 @@ async_gen_syndrome(struct page **blocks, unsigned int offset, int disks, | |||
| 227 | async_tx_quiesce(&submit->depend_tx); | 227 | async_tx_quiesce(&submit->depend_tx); |
| 228 | 228 | ||
| 229 | if (!P(blocks, disks)) { | 229 | if (!P(blocks, disks)) { |
| 230 | P(blocks, disks) = scribble; | 230 | P(blocks, disks) = pq_scribble_page; |
| 231 | BUG_ON(len + offset > PAGE_SIZE); | 231 | BUG_ON(len + offset > PAGE_SIZE); |
| 232 | } | 232 | } |
| 233 | if (!Q(blocks, disks)) { | 233 | if (!Q(blocks, disks)) { |
| 234 | Q(blocks, disks) = scribble; | 234 | Q(blocks, disks) = pq_scribble_page; |
| 235 | BUG_ON(len + offset > PAGE_SIZE); | 235 | BUG_ON(len + offset > PAGE_SIZE); |
| 236 | } | 236 | } |
| 237 | do_sync_gen_syndrome(blocks, offset, disks, len, submit); | 237 | do_sync_gen_syndrome(blocks, offset, disks, len, submit); |
| @@ -265,8 +265,10 @@ async_syndrome_val(struct page **blocks, unsigned int offset, int disks, | |||
| 265 | len); | 265 | len); |
| 266 | struct dma_device *device = chan ? chan->device : NULL; | 266 | struct dma_device *device = chan ? chan->device : NULL; |
| 267 | struct dma_async_tx_descriptor *tx; | 267 | struct dma_async_tx_descriptor *tx; |
| 268 | unsigned char coefs[disks-2]; | ||
| 268 | enum dma_ctrl_flags dma_flags = submit->cb_fn ? DMA_PREP_INTERRUPT : 0; | 269 | enum dma_ctrl_flags dma_flags = submit->cb_fn ? DMA_PREP_INTERRUPT : 0; |
| 269 | dma_addr_t *dma_src = NULL; | 270 | dma_addr_t *dma_src = NULL; |
| 271 | int src_cnt = 0; | ||
| 270 | 272 | ||
| 271 | BUG_ON(disks < 4); | 273 | BUG_ON(disks < 4); |
| 272 | 274 | ||
| @@ -285,22 +287,32 @@ async_syndrome_val(struct page **blocks, unsigned int offset, int disks, | |||
| 285 | __func__, disks, len); | 287 | __func__, disks, len); |
| 286 | if (!P(blocks, disks)) | 288 | if (!P(blocks, disks)) |
| 287 | dma_flags |= DMA_PREP_PQ_DISABLE_P; | 289 | dma_flags |= DMA_PREP_PQ_DISABLE_P; |
| 290 | else | ||
| 291 | pq[0] = dma_map_page(dev, P(blocks, disks), | ||
| 292 | offset, len, | ||
| 293 | DMA_TO_DEVICE); | ||
| 288 | if (!Q(blocks, disks)) | 294 | if (!Q(blocks, disks)) |
| 289 | dma_flags |= DMA_PREP_PQ_DISABLE_Q; | 295 | dma_flags |= DMA_PREP_PQ_DISABLE_Q; |
| 296 | else | ||
| 297 | pq[1] = dma_map_page(dev, Q(blocks, disks), | ||
| 298 | offset, len, | ||
| 299 | DMA_TO_DEVICE); | ||
| 300 | |||
| 290 | if (submit->flags & ASYNC_TX_FENCE) | 301 | if (submit->flags & ASYNC_TX_FENCE) |
| 291 | dma_flags |= DMA_PREP_FENCE; | 302 | dma_flags |= DMA_PREP_FENCE; |
| 292 | for (i = 0; i < disks; i++) | 303 | for (i = 0; i < disks-2; i++) |
| 293 | if (likely(blocks[i])) { | 304 | if (likely(blocks[i])) { |
| 294 | BUG_ON(is_raid6_zero_block(blocks[i])); | 305 | dma_src[src_cnt] = dma_map_page(dev, blocks[i], |
| 295 | dma_src[i] = dma_map_page(dev, blocks[i], | 306 | offset, len, |
| 296 | offset, len, | 307 | DMA_TO_DEVICE); |
| 297 | DMA_TO_DEVICE); | 308 | coefs[src_cnt] = raid6_gfexp[i]; |
| 309 | src_cnt++; | ||
| 298 | } | 310 | } |
| 299 | 311 | ||
| 300 | for (;;) { | 312 | for (;;) { |
| 301 | tx = device->device_prep_dma_pq_val(chan, pq, dma_src, | 313 | tx = device->device_prep_dma_pq_val(chan, pq, dma_src, |
| 302 | disks - 2, | 314 | src_cnt, |
| 303 | raid6_gfexp, | 315 | coefs, |
| 304 | len, pqres, | 316 | len, pqres, |
| 305 | dma_flags); | 317 | dma_flags); |
| 306 | if (likely(tx)) | 318 | if (likely(tx)) |
| @@ -373,9 +385,9 @@ EXPORT_SYMBOL_GPL(async_syndrome_val); | |||
| 373 | 385 | ||
| 374 | static int __init async_pq_init(void) | 386 | static int __init async_pq_init(void) |
| 375 | { | 387 | { |
| 376 | scribble = alloc_page(GFP_KERNEL); | 388 | pq_scribble_page = alloc_page(GFP_KERNEL); |
| 377 | 389 | ||
| 378 | if (scribble) | 390 | if (pq_scribble_page) |
| 379 | return 0; | 391 | return 0; |
| 380 | 392 | ||
| 381 | pr_err("%s: failed to allocate required spare page\n", __func__); | 393 | pr_err("%s: failed to allocate required spare page\n", __func__); |
| @@ -385,7 +397,7 @@ static int __init async_pq_init(void) | |||
| 385 | 397 | ||
| 386 | static void __exit async_pq_exit(void) | 398 | static void __exit async_pq_exit(void) |
| 387 | { | 399 | { |
| 388 | put_page(scribble); | 400 | put_page(pq_scribble_page); |
| 389 | } | 401 | } |
| 390 | 402 | ||
| 391 | module_init(async_pq_init); | 403 | module_init(async_pq_init); |
diff --git a/crypto/async_tx/async_raid6_recov.c b/crypto/async_tx/async_raid6_recov.c index 6d73dde4786d..943f2abac9b4 100644 --- a/crypto/async_tx/async_raid6_recov.c +++ b/crypto/async_tx/async_raid6_recov.c | |||
| @@ -131,8 +131,8 @@ async_mult(struct page *dest, struct page *src, u8 coef, size_t len, | |||
| 131 | } | 131 | } |
| 132 | 132 | ||
| 133 | static struct dma_async_tx_descriptor * | 133 | static struct dma_async_tx_descriptor * |
| 134 | __2data_recov_4(size_t bytes, int faila, int failb, struct page **blocks, | 134 | __2data_recov_4(int disks, size_t bytes, int faila, int failb, |
| 135 | struct async_submit_ctl *submit) | 135 | struct page **blocks, struct async_submit_ctl *submit) |
| 136 | { | 136 | { |
| 137 | struct dma_async_tx_descriptor *tx = NULL; | 137 | struct dma_async_tx_descriptor *tx = NULL; |
| 138 | struct page *p, *q, *a, *b; | 138 | struct page *p, *q, *a, *b; |
| @@ -143,8 +143,8 @@ __2data_recov_4(size_t bytes, int faila, int failb, struct page **blocks, | |||
| 143 | void *cb_param = submit->cb_param; | 143 | void *cb_param = submit->cb_param; |
| 144 | void *scribble = submit->scribble; | 144 | void *scribble = submit->scribble; |
| 145 | 145 | ||
| 146 | p = blocks[4-2]; | 146 | p = blocks[disks-2]; |
| 147 | q = blocks[4-1]; | 147 | q = blocks[disks-1]; |
| 148 | 148 | ||
| 149 | a = blocks[faila]; | 149 | a = blocks[faila]; |
| 150 | b = blocks[failb]; | 150 | b = blocks[failb]; |
| @@ -170,8 +170,8 @@ __2data_recov_4(size_t bytes, int faila, int failb, struct page **blocks, | |||
| 170 | } | 170 | } |
| 171 | 171 | ||
| 172 | static struct dma_async_tx_descriptor * | 172 | static struct dma_async_tx_descriptor * |
| 173 | __2data_recov_5(size_t bytes, int faila, int failb, struct page **blocks, | 173 | __2data_recov_5(int disks, size_t bytes, int faila, int failb, |
| 174 | struct async_submit_ctl *submit) | 174 | struct page **blocks, struct async_submit_ctl *submit) |
| 175 | { | 175 | { |
| 176 | struct dma_async_tx_descriptor *tx = NULL; | 176 | struct dma_async_tx_descriptor *tx = NULL; |
| 177 | struct page *p, *q, *g, *dp, *dq; | 177 | struct page *p, *q, *g, *dp, *dq; |
| @@ -181,21 +181,22 @@ __2data_recov_5(size_t bytes, int faila, int failb, struct page **blocks, | |||
| 181 | dma_async_tx_callback cb_fn = submit->cb_fn; | 181 | dma_async_tx_callback cb_fn = submit->cb_fn; |
| 182 | void *cb_param = submit->cb_param; | 182 | void *cb_param = submit->cb_param; |
| 183 | void *scribble = submit->scribble; | 183 | void *scribble = submit->scribble; |
| 184 | int uninitialized_var(good); | 184 | int good_srcs, good, i; |
| 185 | int i; | ||
| 186 | 185 | ||
| 187 | for (i = 0; i < 3; i++) { | 186 | good_srcs = 0; |
| 187 | good = -1; | ||
| 188 | for (i = 0; i < disks-2; i++) { | ||
| 189 | if (blocks[i] == NULL) | ||
| 190 | continue; | ||
| 188 | if (i == faila || i == failb) | 191 | if (i == faila || i == failb) |
| 189 | continue; | 192 | continue; |
| 190 | else { | 193 | good = i; |
| 191 | good = i; | 194 | good_srcs++; |
| 192 | break; | ||
| 193 | } | ||
| 194 | } | 195 | } |
| 195 | BUG_ON(i >= 3); | 196 | BUG_ON(good_srcs > 1); |
| 196 | 197 | ||
| 197 | p = blocks[5-2]; | 198 | p = blocks[disks-2]; |
| 198 | q = blocks[5-1]; | 199 | q = blocks[disks-1]; |
| 199 | g = blocks[good]; | 200 | g = blocks[good]; |
| 200 | 201 | ||
| 201 | /* Compute syndrome with zero for the missing data pages | 202 | /* Compute syndrome with zero for the missing data pages |
| @@ -263,10 +264,10 @@ __2data_recov_n(int disks, size_t bytes, int faila, int failb, | |||
| 263 | * delta p and delta q | 264 | * delta p and delta q |
| 264 | */ | 265 | */ |
| 265 | dp = blocks[faila]; | 266 | dp = blocks[faila]; |
| 266 | blocks[faila] = (void *)raid6_empty_zero_page; | 267 | blocks[faila] = NULL; |
| 267 | blocks[disks-2] = dp; | 268 | blocks[disks-2] = dp; |
| 268 | dq = blocks[failb]; | 269 | dq = blocks[failb]; |
| 269 | blocks[failb] = (void *)raid6_empty_zero_page; | 270 | blocks[failb] = NULL; |
| 270 | blocks[disks-1] = dq; | 271 | blocks[disks-1] = dq; |
| 271 | 272 | ||
| 272 | init_async_submit(submit, ASYNC_TX_FENCE, tx, NULL, NULL, scribble); | 273 | init_async_submit(submit, ASYNC_TX_FENCE, tx, NULL, NULL, scribble); |
| @@ -323,6 +324,8 @@ struct dma_async_tx_descriptor * | |||
| 323 | async_raid6_2data_recov(int disks, size_t bytes, int faila, int failb, | 324 | async_raid6_2data_recov(int disks, size_t bytes, int faila, int failb, |
| 324 | struct page **blocks, struct async_submit_ctl *submit) | 325 | struct page **blocks, struct async_submit_ctl *submit) |
| 325 | { | 326 | { |
| 327 | int non_zero_srcs, i; | ||
| 328 | |||
| 326 | BUG_ON(faila == failb); | 329 | BUG_ON(faila == failb); |
| 327 | if (failb < faila) | 330 | if (failb < faila) |
| 328 | swap(faila, failb); | 331 | swap(faila, failb); |
| @@ -334,11 +337,13 @@ async_raid6_2data_recov(int disks, size_t bytes, int faila, int failb, | |||
| 334 | */ | 337 | */ |
| 335 | if (!submit->scribble) { | 338 | if (!submit->scribble) { |
| 336 | void **ptrs = (void **) blocks; | 339 | void **ptrs = (void **) blocks; |
| 337 | int i; | ||
| 338 | 340 | ||
| 339 | async_tx_quiesce(&submit->depend_tx); | 341 | async_tx_quiesce(&submit->depend_tx); |
| 340 | for (i = 0; i < disks; i++) | 342 | for (i = 0; i < disks; i++) |
| 341 | ptrs[i] = page_address(blocks[i]); | 343 | if (blocks[i] == NULL) |
| 344 | ptrs[i] = (void *) raid6_empty_zero_page; | ||
| 345 | else | ||
| 346 | ptrs[i] = page_address(blocks[i]); | ||
| 342 | 347 | ||
| 343 | raid6_2data_recov(disks, bytes, faila, failb, ptrs); | 348 | raid6_2data_recov(disks, bytes, faila, failb, ptrs); |
| 344 | 349 | ||
| @@ -347,19 +352,30 @@ async_raid6_2data_recov(int disks, size_t bytes, int faila, int failb, | |||
| 347 | return NULL; | 352 | return NULL; |
| 348 | } | 353 | } |
| 349 | 354 | ||
| 350 | switch (disks) { | 355 | non_zero_srcs = 0; |
| 351 | case 4: | 356 | for (i = 0; i < disks-2 && non_zero_srcs < 4; i++) |
| 357 | if (blocks[i]) | ||
| 358 | non_zero_srcs++; | ||
| 359 | switch (non_zero_srcs) { | ||
| 360 | case 0: | ||
| 361 | case 1: | ||
| 362 | /* There must be at least 2 sources - the failed devices. */ | ||
| 363 | BUG(); | ||
| 364 | |||
| 365 | case 2: | ||
| 352 | /* dma devices do not uniformly understand a zero source pq | 366 | /* dma devices do not uniformly understand a zero source pq |
| 353 | * operation (in contrast to the synchronous case), so | 367 | * operation (in contrast to the synchronous case), so |
| 354 | * explicitly handle the 4 disk special case | 368 | * explicitly handle the special case of a 4 disk array with |
| 369 | * both data disks missing. | ||
| 355 | */ | 370 | */ |
| 356 | return __2data_recov_4(bytes, faila, failb, blocks, submit); | 371 | return __2data_recov_4(disks, bytes, faila, failb, blocks, submit); |
| 357 | case 5: | 372 | case 3: |
| 358 | /* dma devices do not uniformly understand a single | 373 | /* dma devices do not uniformly understand a single |
| 359 | * source pq operation (in contrast to the synchronous | 374 | * source pq operation (in contrast to the synchronous |
| 360 | * case), so explicitly handle the 5 disk special case | 375 | * case), so explicitly handle the special case of a 5 disk |
| 376 | * array with 2 of 3 data disks missing. | ||
| 361 | */ | 377 | */ |
| 362 | return __2data_recov_5(bytes, faila, failb, blocks, submit); | 378 | return __2data_recov_5(disks, bytes, faila, failb, blocks, submit); |
| 363 | default: | 379 | default: |
| 364 | return __2data_recov_n(disks, bytes, faila, failb, blocks, submit); | 380 | return __2data_recov_n(disks, bytes, faila, failb, blocks, submit); |
| 365 | } | 381 | } |
| @@ -385,6 +401,7 @@ async_raid6_datap_recov(int disks, size_t bytes, int faila, | |||
| 385 | dma_async_tx_callback cb_fn = submit->cb_fn; | 401 | dma_async_tx_callback cb_fn = submit->cb_fn; |
| 386 | void *cb_param = submit->cb_param; | 402 | void *cb_param = submit->cb_param; |
| 387 | void *scribble = submit->scribble; | 403 | void *scribble = submit->scribble; |
| 404 | int good_srcs, good, i; | ||
| 388 | struct page *srcs[2]; | 405 | struct page *srcs[2]; |
| 389 | 406 | ||
| 390 | pr_debug("%s: disks: %d len: %zu\n", __func__, disks, bytes); | 407 | pr_debug("%s: disks: %d len: %zu\n", __func__, disks, bytes); |
| @@ -394,11 +411,13 @@ async_raid6_datap_recov(int disks, size_t bytes, int faila, | |||
| 394 | */ | 411 | */ |
| 395 | if (!scribble) { | 412 | if (!scribble) { |
| 396 | void **ptrs = (void **) blocks; | 413 | void **ptrs = (void **) blocks; |
| 397 | int i; | ||
| 398 | 414 | ||
| 399 | async_tx_quiesce(&submit->depend_tx); | 415 | async_tx_quiesce(&submit->depend_tx); |
| 400 | for (i = 0; i < disks; i++) | 416 | for (i = 0; i < disks; i++) |
| 401 | ptrs[i] = page_address(blocks[i]); | 417 | if (blocks[i] == NULL) |
| 418 | ptrs[i] = (void*)raid6_empty_zero_page; | ||
| 419 | else | ||
| 420 | ptrs[i] = page_address(blocks[i]); | ||
| 402 | 421 | ||
| 403 | raid6_datap_recov(disks, bytes, faila, ptrs); | 422 | raid6_datap_recov(disks, bytes, faila, ptrs); |
| 404 | 423 | ||
| @@ -407,6 +426,20 @@ async_raid6_datap_recov(int disks, size_t bytes, int faila, | |||
| 407 | return NULL; | 426 | return NULL; |
| 408 | } | 427 | } |
| 409 | 428 | ||
| 429 | good_srcs = 0; | ||
| 430 | good = -1; | ||
| 431 | for (i = 0; i < disks-2; i++) { | ||
| 432 | if (i == faila) | ||
| 433 | continue; | ||
| 434 | if (blocks[i]) { | ||
| 435 | good = i; | ||
| 436 | good_srcs++; | ||
| 437 | if (good_srcs > 1) | ||
| 438 | break; | ||
| 439 | } | ||
| 440 | } | ||
| 441 | BUG_ON(good_srcs == 0); | ||
| 442 | |||
| 410 | p = blocks[disks-2]; | 443 | p = blocks[disks-2]; |
| 411 | q = blocks[disks-1]; | 444 | q = blocks[disks-1]; |
| 412 | 445 | ||
| @@ -414,14 +447,13 @@ async_raid6_datap_recov(int disks, size_t bytes, int faila, | |||
| 414 | * Use the dead data page as temporary storage for delta q | 447 | * Use the dead data page as temporary storage for delta q |
| 415 | */ | 448 | */ |
| 416 | dq = blocks[faila]; | 449 | dq = blocks[faila]; |
| 417 | blocks[faila] = (void *)raid6_empty_zero_page; | 450 | blocks[faila] = NULL; |
| 418 | blocks[disks-1] = dq; | 451 | blocks[disks-1] = dq; |
| 419 | 452 | ||
| 420 | /* in the 4 disk case we only need to perform a single source | 453 | /* in the 4-disk case we only need to perform a single source |
| 421 | * multiplication | 454 | * multiplication with the one good data block. |
| 422 | */ | 455 | */ |
| 423 | if (disks == 4) { | 456 | if (good_srcs == 1) { |
| 424 | int good = faila == 0 ? 1 : 0; | ||
| 425 | struct page *g = blocks[good]; | 457 | struct page *g = blocks[good]; |
| 426 | 458 | ||
| 427 | init_async_submit(submit, ASYNC_TX_FENCE, tx, NULL, NULL, | 459 | init_async_submit(submit, ASYNC_TX_FENCE, tx, NULL, NULL, |
diff --git a/crypto/async_tx/async_xor.c b/crypto/async_tx/async_xor.c index b459a9034aac..79182dcb91b7 100644 --- a/crypto/async_tx/async_xor.c +++ b/crypto/async_tx/async_xor.c | |||
| @@ -44,20 +44,23 @@ do_async_xor(struct dma_chan *chan, struct page *dest, struct page **src_list, | |||
| 44 | void *cb_param_orig = submit->cb_param; | 44 | void *cb_param_orig = submit->cb_param; |
| 45 | enum async_tx_flags flags_orig = submit->flags; | 45 | enum async_tx_flags flags_orig = submit->flags; |
| 46 | enum dma_ctrl_flags dma_flags; | 46 | enum dma_ctrl_flags dma_flags; |
| 47 | int xor_src_cnt; | 47 | int xor_src_cnt = 0; |
| 48 | dma_addr_t dma_dest; | 48 | dma_addr_t dma_dest; |
| 49 | 49 | ||
| 50 | /* map the dest bidrectional in case it is re-used as a source */ | 50 | /* map the dest bidrectional in case it is re-used as a source */ |
| 51 | dma_dest = dma_map_page(dma->dev, dest, offset, len, DMA_BIDIRECTIONAL); | 51 | dma_dest = dma_map_page(dma->dev, dest, offset, len, DMA_BIDIRECTIONAL); |
| 52 | for (i = 0; i < src_cnt; i++) { | 52 | for (i = 0; i < src_cnt; i++) { |
| 53 | /* only map the dest once */ | 53 | /* only map the dest once */ |
| 54 | if (!src_list[i]) | ||
| 55 | continue; | ||
| 54 | if (unlikely(src_list[i] == dest)) { | 56 | if (unlikely(src_list[i] == dest)) { |
| 55 | dma_src[i] = dma_dest; | 57 | dma_src[xor_src_cnt++] = dma_dest; |
| 56 | continue; | 58 | continue; |
| 57 | } | 59 | } |
| 58 | dma_src[i] = dma_map_page(dma->dev, src_list[i], offset, | 60 | dma_src[xor_src_cnt++] = dma_map_page(dma->dev, src_list[i], offset, |
| 59 | len, DMA_TO_DEVICE); | 61 | len, DMA_TO_DEVICE); |
| 60 | } | 62 | } |
| 63 | src_cnt = xor_src_cnt; | ||
| 61 | 64 | ||
| 62 | while (src_cnt) { | 65 | while (src_cnt) { |
| 63 | submit->flags = flags_orig; | 66 | submit->flags = flags_orig; |
| @@ -123,7 +126,7 @@ do_sync_xor(struct page *dest, struct page **src_list, unsigned int offset, | |||
| 123 | int src_cnt, size_t len, struct async_submit_ctl *submit) | 126 | int src_cnt, size_t len, struct async_submit_ctl *submit) |
| 124 | { | 127 | { |
| 125 | int i; | 128 | int i; |
| 126 | int xor_src_cnt; | 129 | int xor_src_cnt = 0; |
| 127 | int src_off = 0; | 130 | int src_off = 0; |
| 128 | void *dest_buf; | 131 | void *dest_buf; |
| 129 | void **srcs; | 132 | void **srcs; |
| @@ -135,8 +138,9 @@ do_sync_xor(struct page *dest, struct page **src_list, unsigned int offset, | |||
| 135 | 138 | ||
| 136 | /* convert to buffer pointers */ | 139 | /* convert to buffer pointers */ |
| 137 | for (i = 0; i < src_cnt; i++) | 140 | for (i = 0; i < src_cnt; i++) |
| 138 | srcs[i] = page_address(src_list[i]) + offset; | 141 | if (src_list[i]) |
| 139 | 142 | srcs[xor_src_cnt++] = page_address(src_list[i]) + offset; | |
| 143 | src_cnt = xor_src_cnt; | ||
| 140 | /* set destination address */ | 144 | /* set destination address */ |
| 141 | dest_buf = page_address(dest) + offset; | 145 | dest_buf = page_address(dest) + offset; |
| 142 | 146 | ||
diff --git a/drivers/ata/ahci.c b/drivers/ata/ahci.c index a06f5d6375a8..a3241a1a710b 100644 --- a/drivers/ata/ahci.c +++ b/drivers/ata/ahci.c | |||
| @@ -2718,6 +2718,30 @@ static bool ahci_sb600_enable_64bit(struct pci_dev *pdev) | |||
| 2718 | }, | 2718 | }, |
| 2719 | .driver_data = "20071026", /* yyyymmdd */ | 2719 | .driver_data = "20071026", /* yyyymmdd */ |
| 2720 | }, | 2720 | }, |
| 2721 | /* | ||
| 2722 | * All BIOS versions for the MSI K9A2 Platinum (MS-7376) | ||
| 2723 | * support 64bit DMA. | ||
| 2724 | * | ||
| 2725 | * BIOS versions earlier than 1.5 had the Manufacturer DMI | ||
| 2726 | * fields as "MICRO-STAR INTERANTIONAL CO.,LTD". | ||
| 2727 | * This spelling mistake was fixed in BIOS version 1.5, so | ||
| 2728 | * 1.5 and later have the Manufacturer as | ||
| 2729 | * "MICRO-STAR INTERNATIONAL CO.,LTD". | ||
| 2730 | * So try to match on DMI_BOARD_VENDOR of "MICRO-STAR INTER". | ||
| 2731 | * | ||
| 2732 | * BIOS versions earlier than 1.9 had a Board Product Name | ||
| 2733 | * DMI field of "MS-7376". This was changed to be | ||
| 2734 | * "K9A2 Platinum (MS-7376)" in version 1.9, but we can still | ||
| 2735 | * match on DMI_BOARD_NAME of "MS-7376". | ||
| 2736 | */ | ||
| 2737 | { | ||
| 2738 | .ident = "MSI K9A2 Platinum", | ||
| 2739 | .matches = { | ||
| 2740 | DMI_MATCH(DMI_BOARD_VENDOR, | ||
| 2741 | "MICRO-STAR INTER"), | ||
| 2742 | DMI_MATCH(DMI_BOARD_NAME, "MS-7376"), | ||
| 2743 | }, | ||
| 2744 | }, | ||
| 2721 | { } | 2745 | { } |
| 2722 | }; | 2746 | }; |
| 2723 | const struct dmi_system_id *match; | 2747 | const struct dmi_system_id *match; |
| @@ -2729,18 +2753,24 @@ static bool ahci_sb600_enable_64bit(struct pci_dev *pdev) | |||
| 2729 | !match) | 2753 | !match) |
| 2730 | return false; | 2754 | return false; |
| 2731 | 2755 | ||
| 2756 | if (!match->driver_data) | ||
| 2757 | goto enable_64bit; | ||
| 2758 | |||
| 2732 | dmi_get_date(DMI_BIOS_DATE, &year, &month, &date); | 2759 | dmi_get_date(DMI_BIOS_DATE, &year, &month, &date); |
| 2733 | snprintf(buf, sizeof(buf), "%04d%02d%02d", year, month, date); | 2760 | snprintf(buf, sizeof(buf), "%04d%02d%02d", year, month, date); |
| 2734 | 2761 | ||
| 2735 | if (strcmp(buf, match->driver_data) >= 0) { | 2762 | if (strcmp(buf, match->driver_data) >= 0) |
| 2736 | dev_printk(KERN_WARNING, &pdev->dev, "%s: enabling 64bit DMA\n", | 2763 | goto enable_64bit; |
| 2737 | match->ident); | 2764 | else { |
| 2738 | return true; | ||
| 2739 | } else { | ||
| 2740 | dev_printk(KERN_WARNING, &pdev->dev, "%s: BIOS too old, " | 2765 | dev_printk(KERN_WARNING, &pdev->dev, "%s: BIOS too old, " |
| 2741 | "forcing 32bit DMA, update BIOS\n", match->ident); | 2766 | "forcing 32bit DMA, update BIOS\n", match->ident); |
| 2742 | return false; | 2767 | return false; |
| 2743 | } | 2768 | } |
| 2769 | |||
| 2770 | enable_64bit: | ||
| 2771 | dev_printk(KERN_WARNING, &pdev->dev, "%s: enabling 64bit DMA\n", | ||
| 2772 | match->ident); | ||
| 2773 | return true; | ||
| 2744 | } | 2774 | } |
| 2745 | 2775 | ||
| 2746 | static bool ahci_broken_system_poweroff(struct pci_dev *pdev) | 2776 | static bool ahci_broken_system_poweroff(struct pci_dev *pdev) |
diff --git a/drivers/ata/libata-core.c b/drivers/ata/libata-core.c index d7f0f1b1ae3e..dc72690ed5db 100644 --- a/drivers/ata/libata-core.c +++ b/drivers/ata/libata-core.c | |||
| @@ -4919,10 +4919,11 @@ struct ata_queued_cmd *ata_qc_new_init(struct ata_device *dev) | |||
| 4919 | */ | 4919 | */ |
| 4920 | void ata_qc_free(struct ata_queued_cmd *qc) | 4920 | void ata_qc_free(struct ata_queued_cmd *qc) |
| 4921 | { | 4921 | { |
| 4922 | struct ata_port *ap = qc->ap; | 4922 | struct ata_port *ap; |
| 4923 | unsigned int tag; | 4923 | unsigned int tag; |
| 4924 | 4924 | ||
| 4925 | WARN_ON_ONCE(qc == NULL); /* ata_qc_from_tag _might_ return NULL */ | 4925 | WARN_ON_ONCE(qc == NULL); /* ata_qc_from_tag _might_ return NULL */ |
| 4926 | ap = qc->ap; | ||
| 4926 | 4927 | ||
| 4927 | qc->flags = 0; | 4928 | qc->flags = 0; |
| 4928 | tag = qc->tag; | 4929 | tag = qc->tag; |
| @@ -4934,11 +4935,13 @@ void ata_qc_free(struct ata_queued_cmd *qc) | |||
| 4934 | 4935 | ||
| 4935 | void __ata_qc_complete(struct ata_queued_cmd *qc) | 4936 | void __ata_qc_complete(struct ata_queued_cmd *qc) |
| 4936 | { | 4937 | { |
| 4937 | struct ata_port *ap = qc->ap; | 4938 | struct ata_port *ap; |
| 4938 | struct ata_link *link = qc->dev->link; | 4939 | struct ata_link *link; |
| 4939 | 4940 | ||
| 4940 | WARN_ON_ONCE(qc == NULL); /* ata_qc_from_tag _might_ return NULL */ | 4941 | WARN_ON_ONCE(qc == NULL); /* ata_qc_from_tag _might_ return NULL */ |
| 4941 | WARN_ON_ONCE(!(qc->flags & ATA_QCFLAG_ACTIVE)); | 4942 | WARN_ON_ONCE(!(qc->flags & ATA_QCFLAG_ACTIVE)); |
| 4943 | ap = qc->ap; | ||
| 4944 | link = qc->dev->link; | ||
| 4942 | 4945 | ||
| 4943 | if (likely(qc->flags & ATA_QCFLAG_DMAMAP)) | 4946 | if (likely(qc->flags & ATA_QCFLAG_DMAMAP)) |
| 4944 | ata_sg_clean(qc); | 4947 | ata_sg_clean(qc); |
diff --git a/drivers/ata/sata_via.c b/drivers/ata/sata_via.c index bdd43c7f432e..02efd9a83d26 100644 --- a/drivers/ata/sata_via.c +++ b/drivers/ata/sata_via.c | |||
| @@ -93,7 +93,6 @@ static const struct pci_device_id svia_pci_tbl[] = { | |||
| 93 | { PCI_VDEVICE(VIA, 0x7372), vt6420 }, | 93 | { PCI_VDEVICE(VIA, 0x7372), vt6420 }, |
| 94 | { PCI_VDEVICE(VIA, 0x5287), vt8251 }, /* 2 sata chnls (Master/Slave) */ | 94 | { PCI_VDEVICE(VIA, 0x5287), vt8251 }, /* 2 sata chnls (Master/Slave) */ |
| 95 | { PCI_VDEVICE(VIA, 0x9000), vt8251 }, | 95 | { PCI_VDEVICE(VIA, 0x9000), vt8251 }, |
| 96 | { PCI_VDEVICE(VIA, 0x9040), vt8251 }, | ||
| 97 | 96 | ||
| 98 | { } /* terminate list */ | 97 | { } /* terminate list */ |
| 99 | }; | 98 | }; |
diff --git a/drivers/base/bus.c b/drivers/base/bus.c index 973bf2ad4e0d..63c143e54a57 100644 --- a/drivers/base/bus.c +++ b/drivers/base/bus.c | |||
| @@ -689,15 +689,19 @@ int bus_add_driver(struct device_driver *drv) | |||
| 689 | printk(KERN_ERR "%s: driver_add_attrs(%s) failed\n", | 689 | printk(KERN_ERR "%s: driver_add_attrs(%s) failed\n", |
| 690 | __func__, drv->name); | 690 | __func__, drv->name); |
| 691 | } | 691 | } |
| 692 | error = add_bind_files(drv); | 692 | |
| 693 | if (error) { | 693 | if (!drv->suppress_bind_attrs) { |
| 694 | /* Ditto */ | 694 | error = add_bind_files(drv); |
| 695 | printk(KERN_ERR "%s: add_bind_files(%s) failed\n", | 695 | if (error) { |
| 696 | __func__, drv->name); | 696 | /* Ditto */ |
| 697 | printk(KERN_ERR "%s: add_bind_files(%s) failed\n", | ||
| 698 | __func__, drv->name); | ||
| 699 | } | ||
| 697 | } | 700 | } |
| 698 | 701 | ||
| 699 | kobject_uevent(&priv->kobj, KOBJ_ADD); | 702 | kobject_uevent(&priv->kobj, KOBJ_ADD); |
| 700 | return 0; | 703 | return 0; |
| 704 | |||
| 701 | out_unregister: | 705 | out_unregister: |
| 702 | kfree(drv->p); | 706 | kfree(drv->p); |
| 703 | drv->p = NULL; | 707 | drv->p = NULL; |
| @@ -720,7 +724,8 @@ void bus_remove_driver(struct device_driver *drv) | |||
| 720 | if (!drv->bus) | 724 | if (!drv->bus) |
| 721 | return; | 725 | return; |
| 722 | 726 | ||
| 723 | remove_bind_files(drv); | 727 | if (!drv->suppress_bind_attrs) |
| 728 | remove_bind_files(drv); | ||
| 724 | driver_remove_attrs(drv->bus, drv); | 729 | driver_remove_attrs(drv->bus, drv); |
| 725 | driver_remove_file(drv, &driver_attr_uevent); | 730 | driver_remove_file(drv, &driver_attr_uevent); |
| 726 | klist_remove(&drv->p->knode_bus); | 731 | klist_remove(&drv->p->knode_bus); |
diff --git a/drivers/base/driver.c b/drivers/base/driver.c index ed2ebd3c287d..f367885a7646 100644 --- a/drivers/base/driver.c +++ b/drivers/base/driver.c | |||
| @@ -236,7 +236,7 @@ int driver_register(struct device_driver *drv) | |||
| 236 | put_driver(other); | 236 | put_driver(other); |
| 237 | printk(KERN_ERR "Error: Driver '%s' is already registered, " | 237 | printk(KERN_ERR "Error: Driver '%s' is already registered, " |
| 238 | "aborting...\n", drv->name); | 238 | "aborting...\n", drv->name); |
| 239 | return -EEXIST; | 239 | return -EBUSY; |
| 240 | } | 240 | } |
| 241 | 241 | ||
| 242 | ret = bus_add_driver(drv); | 242 | ret = bus_add_driver(drv); |
diff --git a/drivers/base/platform.c b/drivers/base/platform.c index ed156a13aa40..4fa954b07ac4 100644 --- a/drivers/base/platform.c +++ b/drivers/base/platform.c | |||
| @@ -521,11 +521,15 @@ int __init_or_module platform_driver_probe(struct platform_driver *drv, | |||
| 521 | { | 521 | { |
| 522 | int retval, code; | 522 | int retval, code; |
| 523 | 523 | ||
| 524 | /* make sure driver won't have bind/unbind attributes */ | ||
| 525 | drv->driver.suppress_bind_attrs = true; | ||
| 526 | |||
| 524 | /* temporary section violation during probe() */ | 527 | /* temporary section violation during probe() */ |
| 525 | drv->probe = probe; | 528 | drv->probe = probe; |
| 526 | retval = code = platform_driver_register(drv); | 529 | retval = code = platform_driver_register(drv); |
| 527 | 530 | ||
| 528 | /* Fixup that section violation, being paranoid about code scanning | 531 | /* |
| 532 | * Fixup that section violation, being paranoid about code scanning | ||
| 529 | * the list of drivers in order to probe new devices. Check to see | 533 | * the list of drivers in order to probe new devices. Check to see |
| 530 | * if the probe was successful, and make sure any forced probes of | 534 | * if the probe was successful, and make sure any forced probes of |
| 531 | * new devices fail. | 535 | * new devices fail. |
diff --git a/drivers/base/power/main.c b/drivers/base/power/main.c index e0dc4071e088..8aa2443182d5 100644 --- a/drivers/base/power/main.c +++ b/drivers/base/power/main.c | |||
| @@ -511,6 +511,7 @@ static void dpm_complete(pm_message_t state) | |||
| 511 | 511 | ||
| 512 | INIT_LIST_HEAD(&list); | 512 | INIT_LIST_HEAD(&list); |
| 513 | mutex_lock(&dpm_list_mtx); | 513 | mutex_lock(&dpm_list_mtx); |
| 514 | transition_started = false; | ||
| 514 | while (!list_empty(&dpm_list)) { | 515 | while (!list_empty(&dpm_list)) { |
| 515 | struct device *dev = to_device(dpm_list.prev); | 516 | struct device *dev = to_device(dpm_list.prev); |
| 516 | 517 | ||
diff --git a/drivers/base/power/runtime.c b/drivers/base/power/runtime.c index 38556f6cc22d..a770498a74ec 100644 --- a/drivers/base/power/runtime.c +++ b/drivers/base/power/runtime.c | |||
| @@ -51,8 +51,6 @@ static int __pm_runtime_idle(struct device *dev) | |||
| 51 | { | 51 | { |
| 52 | int retval = 0; | 52 | int retval = 0; |
| 53 | 53 | ||
| 54 | dev_dbg(dev, "__pm_runtime_idle()!\n"); | ||
| 55 | |||
| 56 | if (dev->power.runtime_error) | 54 | if (dev->power.runtime_error) |
| 57 | retval = -EINVAL; | 55 | retval = -EINVAL; |
| 58 | else if (dev->power.idle_notification) | 56 | else if (dev->power.idle_notification) |
| @@ -93,8 +91,6 @@ static int __pm_runtime_idle(struct device *dev) | |||
| 93 | wake_up_all(&dev->power.wait_queue); | 91 | wake_up_all(&dev->power.wait_queue); |
| 94 | 92 | ||
| 95 | out: | 93 | out: |
| 96 | dev_dbg(dev, "__pm_runtime_idle() returns %d!\n", retval); | ||
| 97 | |||
| 98 | return retval; | 94 | return retval; |
| 99 | } | 95 | } |
| 100 | 96 | ||
diff --git a/drivers/char/Kconfig b/drivers/char/Kconfig index 08a6f50ae791..6aad99ec4e0f 100644 --- a/drivers/char/Kconfig +++ b/drivers/char/Kconfig | |||
| @@ -323,7 +323,7 @@ config SPECIALIX | |||
| 323 | 323 | ||
| 324 | config SX | 324 | config SX |
| 325 | tristate "Specialix SX (and SI) card support" | 325 | tristate "Specialix SX (and SI) card support" |
| 326 | depends on SERIAL_NONSTANDARD && (PCI || EISA || ISA) | 326 | depends on SERIAL_NONSTANDARD && (PCI || EISA || ISA) && BROKEN |
| 327 | help | 327 | help |
| 328 | This is a driver for the SX and SI multiport serial cards. | 328 | This is a driver for the SX and SI multiport serial cards. |
| 329 | Please read the file <file:Documentation/serial/sx.txt> for details. | 329 | Please read the file <file:Documentation/serial/sx.txt> for details. |
| @@ -334,7 +334,7 @@ config SX | |||
| 334 | 334 | ||
| 335 | config RIO | 335 | config RIO |
| 336 | tristate "Specialix RIO system support" | 336 | tristate "Specialix RIO system support" |
| 337 | depends on SERIAL_NONSTANDARD | 337 | depends on SERIAL_NONSTANDARD && BROKEN |
| 338 | help | 338 | help |
| 339 | This is a driver for the Specialix RIO, a smart serial card which | 339 | This is a driver for the Specialix RIO, a smart serial card which |
| 340 | drives an outboard box that can support up to 128 ports. Product | 340 | drives an outboard box that can support up to 128 ports. Product |
| @@ -395,7 +395,7 @@ config NOZOMI | |||
| 395 | 395 | ||
| 396 | config A2232 | 396 | config A2232 |
| 397 | tristate "Commodore A2232 serial support (EXPERIMENTAL)" | 397 | tristate "Commodore A2232 serial support (EXPERIMENTAL)" |
| 398 | depends on EXPERIMENTAL && ZORRO && BROKEN_ON_SMP | 398 | depends on EXPERIMENTAL && ZORRO && BROKEN |
| 399 | ---help--- | 399 | ---help--- |
| 400 | This option supports the 2232 7-port serial card shipped with the | 400 | This option supports the 2232 7-port serial card shipped with the |
| 401 | Amiga 2000 and other Zorro-bus machines, dating from 1989. At | 401 | Amiga 2000 and other Zorro-bus machines, dating from 1989. At |
diff --git a/drivers/char/hvc_xen.c b/drivers/char/hvc_xen.c index eba999f8598d..a6ee32b599a8 100644 --- a/drivers/char/hvc_xen.c +++ b/drivers/char/hvc_xen.c | |||
| @@ -55,7 +55,7 @@ static inline void notify_daemon(void) | |||
| 55 | notify_remote_via_evtchn(xen_start_info->console.domU.evtchn); | 55 | notify_remote_via_evtchn(xen_start_info->console.domU.evtchn); |
| 56 | } | 56 | } |
| 57 | 57 | ||
| 58 | static int write_console(uint32_t vtermno, const char *data, int len) | 58 | static int __write_console(const char *data, int len) |
| 59 | { | 59 | { |
| 60 | struct xencons_interface *intf = xencons_interface(); | 60 | struct xencons_interface *intf = xencons_interface(); |
| 61 | XENCONS_RING_IDX cons, prod; | 61 | XENCONS_RING_IDX cons, prod; |
| @@ -76,6 +76,29 @@ static int write_console(uint32_t vtermno, const char *data, int len) | |||
| 76 | return sent; | 76 | return sent; |
| 77 | } | 77 | } |
| 78 | 78 | ||
| 79 | static int write_console(uint32_t vtermno, const char *data, int len) | ||
| 80 | { | ||
| 81 | int ret = len; | ||
| 82 | |||
| 83 | /* | ||
| 84 | * Make sure the whole buffer is emitted, polling if | ||
| 85 | * necessary. We don't ever want to rely on the hvc daemon | ||
| 86 | * because the most interesting console output is when the | ||
| 87 | * kernel is crippled. | ||
| 88 | */ | ||
| 89 | while (len) { | ||
| 90 | int sent = __write_console(data, len); | ||
| 91 | |||
| 92 | data += sent; | ||
| 93 | len -= sent; | ||
| 94 | |||
| 95 | if (unlikely(len)) | ||
| 96 | HYPERVISOR_sched_op(SCHEDOP_yield, NULL); | ||
| 97 | } | ||
| 98 | |||
| 99 | return ret; | ||
| 100 | } | ||
| 101 | |||
| 79 | static int read_console(uint32_t vtermno, char *buf, int len) | 102 | static int read_console(uint32_t vtermno, char *buf, int len) |
| 80 | { | 103 | { |
| 81 | struct xencons_interface *intf = xencons_interface(); | 104 | struct xencons_interface *intf = xencons_interface(); |
diff --git a/drivers/edac/amd64_edac.c b/drivers/edac/amd64_edac.c index d4560d9d5a83..a38831c82649 100644 --- a/drivers/edac/amd64_edac.c +++ b/drivers/edac/amd64_edac.c | |||
| @@ -2254,7 +2254,7 @@ static inline void __amd64_decode_bus_error(struct mem_ctl_info *mci, | |||
| 2254 | { | 2254 | { |
| 2255 | u32 ec = ERROR_CODE(info->nbsl); | 2255 | u32 ec = ERROR_CODE(info->nbsl); |
| 2256 | u32 xec = EXT_ERROR_CODE(info->nbsl); | 2256 | u32 xec = EXT_ERROR_CODE(info->nbsl); |
| 2257 | int ecc_type = info->nbsh & (0x3 << 13); | 2257 | int ecc_type = (info->nbsh >> 13) & 0x3; |
| 2258 | 2258 | ||
| 2259 | /* Bail early out if this was an 'observed' error */ | 2259 | /* Bail early out if this was an 'observed' error */ |
| 2260 | if (PP(ec) == K8_NBSL_PP_OBS) | 2260 | if (PP(ec) == K8_NBSL_PP_OBS) |
| @@ -3163,7 +3163,7 @@ static int __init amd64_edac_init(void) | |||
| 3163 | opstate_init(); | 3163 | opstate_init(); |
| 3164 | 3164 | ||
| 3165 | if (cache_k8_northbridges() < 0) | 3165 | if (cache_k8_northbridges() < 0) |
| 3166 | goto err_exit; | 3166 | return err; |
| 3167 | 3167 | ||
| 3168 | err = pci_register_driver(&amd64_pci_driver); | 3168 | err = pci_register_driver(&amd64_pci_driver); |
| 3169 | if (err) | 3169 | if (err) |
| @@ -3189,8 +3189,6 @@ static int __init amd64_edac_init(void) | |||
| 3189 | 3189 | ||
| 3190 | err_2nd_stage: | 3190 | err_2nd_stage: |
| 3191 | debugf0("2nd stage failed\n"); | 3191 | debugf0("2nd stage failed\n"); |
| 3192 | |||
| 3193 | err_exit: | ||
| 3194 | pci_unregister_driver(&amd64_pci_driver); | 3192 | pci_unregister_driver(&amd64_pci_driver); |
| 3195 | 3193 | ||
| 3196 | return err; | 3194 | return err; |
diff --git a/drivers/gpu/drm/i915/i915_dma.c b/drivers/gpu/drm/i915/i915_dma.c index 92aeb918e0c0..e5b138be45fa 100644 --- a/drivers/gpu/drm/i915/i915_dma.c +++ b/drivers/gpu/drm/i915/i915_dma.c | |||
| @@ -1227,8 +1227,7 @@ static int i915_load_modeset_init(struct drm_device *dev, | |||
| 1227 | goto out; | 1227 | goto out; |
| 1228 | 1228 | ||
| 1229 | /* Try to set up FBC with a reasonable compressed buffer size */ | 1229 | /* Try to set up FBC with a reasonable compressed buffer size */ |
| 1230 | if (IS_MOBILE(dev) && (IS_I9XX(dev) || IS_I965G(dev) || IS_GM45(dev)) && | 1230 | if (I915_HAS_FBC(dev) && i915_powersave) { |
| 1231 | i915_powersave) { | ||
| 1232 | int cfb_size; | 1231 | int cfb_size; |
| 1233 | 1232 | ||
| 1234 | /* Try to get an 8M buffer... */ | 1233 | /* Try to get an 8M buffer... */ |
diff --git a/drivers/gpu/drm/i915/i915_drv.c b/drivers/gpu/drm/i915/i915_drv.c index b93814c0d3e2..7f436ec075f6 100644 --- a/drivers/gpu/drm/i915/i915_drv.c +++ b/drivers/gpu/drm/i915/i915_drv.c | |||
| @@ -89,7 +89,8 @@ static int i915_suspend(struct drm_device *dev, pm_message_t state) | |||
| 89 | pci_set_power_state(dev->pdev, PCI_D3hot); | 89 | pci_set_power_state(dev->pdev, PCI_D3hot); |
| 90 | } | 90 | } |
| 91 | 91 | ||
| 92 | dev_priv->suspended = 1; | 92 | /* Modeset on resume, not lid events */ |
| 93 | dev_priv->modeset_on_lid = 0; | ||
| 93 | 94 | ||
| 94 | return 0; | 95 | return 0; |
| 95 | } | 96 | } |
| @@ -124,7 +125,7 @@ static int i915_resume(struct drm_device *dev) | |||
| 124 | drm_helper_resume_force_mode(dev); | 125 | drm_helper_resume_force_mode(dev); |
| 125 | } | 126 | } |
| 126 | 127 | ||
| 127 | dev_priv->suspended = 0; | 128 | dev_priv->modeset_on_lid = 0; |
| 128 | 129 | ||
| 129 | return ret; | 130 | return ret; |
| 130 | } | 131 | } |
diff --git a/drivers/gpu/drm/i915/i915_drv.h b/drivers/gpu/drm/i915/i915_drv.h index 6035d3dae851..57204e298975 100644 --- a/drivers/gpu/drm/i915/i915_drv.h +++ b/drivers/gpu/drm/i915/i915_drv.h | |||
| @@ -274,7 +274,7 @@ typedef struct drm_i915_private { | |||
| 274 | struct drm_i915_display_funcs display; | 274 | struct drm_i915_display_funcs display; |
| 275 | 275 | ||
| 276 | /* Register state */ | 276 | /* Register state */ |
| 277 | bool suspended; | 277 | bool modeset_on_lid; |
| 278 | u8 saveLBB; | 278 | u8 saveLBB; |
| 279 | u32 saveDSPACNTR; | 279 | u32 saveDSPACNTR; |
| 280 | u32 saveDSPBCNTR; | 280 | u32 saveDSPBCNTR; |
| @@ -296,6 +296,12 @@ typedef struct drm_i915_private { | |||
| 296 | u32 saveVBLANK_A; | 296 | u32 saveVBLANK_A; |
| 297 | u32 saveVSYNC_A; | 297 | u32 saveVSYNC_A; |
| 298 | u32 saveBCLRPAT_A; | 298 | u32 saveBCLRPAT_A; |
| 299 | u32 saveTRANS_HTOTAL_A; | ||
| 300 | u32 saveTRANS_HBLANK_A; | ||
| 301 | u32 saveTRANS_HSYNC_A; | ||
| 302 | u32 saveTRANS_VTOTAL_A; | ||
| 303 | u32 saveTRANS_VBLANK_A; | ||
| 304 | u32 saveTRANS_VSYNC_A; | ||
| 299 | u32 savePIPEASTAT; | 305 | u32 savePIPEASTAT; |
| 300 | u32 saveDSPASTRIDE; | 306 | u32 saveDSPASTRIDE; |
| 301 | u32 saveDSPASIZE; | 307 | u32 saveDSPASIZE; |
| @@ -304,8 +310,11 @@ typedef struct drm_i915_private { | |||
| 304 | u32 saveDSPASURF; | 310 | u32 saveDSPASURF; |
| 305 | u32 saveDSPATILEOFF; | 311 | u32 saveDSPATILEOFF; |
| 306 | u32 savePFIT_PGM_RATIOS; | 312 | u32 savePFIT_PGM_RATIOS; |
| 313 | u32 saveBLC_HIST_CTL; | ||
| 307 | u32 saveBLC_PWM_CTL; | 314 | u32 saveBLC_PWM_CTL; |
| 308 | u32 saveBLC_PWM_CTL2; | 315 | u32 saveBLC_PWM_CTL2; |
| 316 | u32 saveBLC_CPU_PWM_CTL; | ||
| 317 | u32 saveBLC_CPU_PWM_CTL2; | ||
| 309 | u32 saveFPB0; | 318 | u32 saveFPB0; |
| 310 | u32 saveFPB1; | 319 | u32 saveFPB1; |
| 311 | u32 saveDPLL_B; | 320 | u32 saveDPLL_B; |
| @@ -317,6 +326,12 @@ typedef struct drm_i915_private { | |||
| 317 | u32 saveVBLANK_B; | 326 | u32 saveVBLANK_B; |
| 318 | u32 saveVSYNC_B; | 327 | u32 saveVSYNC_B; |
| 319 | u32 saveBCLRPAT_B; | 328 | u32 saveBCLRPAT_B; |
| 329 | u32 saveTRANS_HTOTAL_B; | ||
| 330 | u32 saveTRANS_HBLANK_B; | ||
| 331 | u32 saveTRANS_HSYNC_B; | ||
| 332 | u32 saveTRANS_VTOTAL_B; | ||
| 333 | u32 saveTRANS_VBLANK_B; | ||
| 334 | u32 saveTRANS_VSYNC_B; | ||
| 320 | u32 savePIPEBSTAT; | 335 | u32 savePIPEBSTAT; |
| 321 | u32 saveDSPBSTRIDE; | 336 | u32 saveDSPBSTRIDE; |
| 322 | u32 saveDSPBSIZE; | 337 | u32 saveDSPBSIZE; |
| @@ -342,6 +357,7 @@ typedef struct drm_i915_private { | |||
| 342 | u32 savePFIT_CONTROL; | 357 | u32 savePFIT_CONTROL; |
| 343 | u32 save_palette_a[256]; | 358 | u32 save_palette_a[256]; |
| 344 | u32 save_palette_b[256]; | 359 | u32 save_palette_b[256]; |
| 360 | u32 saveDPFC_CB_BASE; | ||
| 345 | u32 saveFBC_CFB_BASE; | 361 | u32 saveFBC_CFB_BASE; |
| 346 | u32 saveFBC_LL_BASE; | 362 | u32 saveFBC_LL_BASE; |
| 347 | u32 saveFBC_CONTROL; | 363 | u32 saveFBC_CONTROL; |
| @@ -349,6 +365,12 @@ typedef struct drm_i915_private { | |||
| 349 | u32 saveIER; | 365 | u32 saveIER; |
| 350 | u32 saveIIR; | 366 | u32 saveIIR; |
| 351 | u32 saveIMR; | 367 | u32 saveIMR; |
| 368 | u32 saveDEIER; | ||
| 369 | u32 saveDEIMR; | ||
| 370 | u32 saveGTIER; | ||
| 371 | u32 saveGTIMR; | ||
| 372 | u32 saveFDI_RXA_IMR; | ||
| 373 | u32 saveFDI_RXB_IMR; | ||
| 352 | u32 saveCACHE_MODE_0; | 374 | u32 saveCACHE_MODE_0; |
| 353 | u32 saveD_STATE; | 375 | u32 saveD_STATE; |
| 354 | u32 saveDSPCLK_GATE_D; | 376 | u32 saveDSPCLK_GATE_D; |
| @@ -382,6 +404,16 @@ typedef struct drm_i915_private { | |||
| 382 | u32 savePIPEB_DP_LINK_M; | 404 | u32 savePIPEB_DP_LINK_M; |
| 383 | u32 savePIPEA_DP_LINK_N; | 405 | u32 savePIPEA_DP_LINK_N; |
| 384 | u32 savePIPEB_DP_LINK_N; | 406 | u32 savePIPEB_DP_LINK_N; |
| 407 | u32 saveFDI_RXA_CTL; | ||
| 408 | u32 saveFDI_TXA_CTL; | ||
| 409 | u32 saveFDI_RXB_CTL; | ||
| 410 | u32 saveFDI_TXB_CTL; | ||
| 411 | u32 savePFA_CTL_1; | ||
| 412 | u32 savePFB_CTL_1; | ||
| 413 | u32 savePFA_WIN_SZ; | ||
| 414 | u32 savePFB_WIN_SZ; | ||
| 415 | u32 savePFA_WIN_POS; | ||
| 416 | u32 savePFB_WIN_POS; | ||
| 385 | 417 | ||
| 386 | struct { | 418 | struct { |
| 387 | struct drm_mm gtt_space; | 419 | struct drm_mm gtt_space; |
| @@ -492,6 +524,8 @@ typedef struct drm_i915_private { | |||
| 492 | struct drm_i915_gem_phys_object *phys_objs[I915_MAX_PHYS_OBJECT]; | 524 | struct drm_i915_gem_phys_object *phys_objs[I915_MAX_PHYS_OBJECT]; |
| 493 | } mm; | 525 | } mm; |
| 494 | struct sdvo_device_mapping sdvo_mappings[2]; | 526 | struct sdvo_device_mapping sdvo_mappings[2]; |
| 527 | /* indicate whether the LVDS_BORDER should be enabled or not */ | ||
| 528 | unsigned int lvds_border_bits; | ||
| 495 | 529 | ||
| 496 | /* Reclocking support */ | 530 | /* Reclocking support */ |
| 497 | bool render_reclock_avail; | 531 | bool render_reclock_avail; |
| @@ -981,7 +1015,10 @@ extern int i915_wait_ring(struct drm_device * dev, int n, const char *caller); | |||
| 981 | 1015 | ||
| 982 | #define HAS_FW_BLC(dev) (IS_I9XX(dev) || IS_G4X(dev) || IS_IGDNG(dev)) | 1016 | #define HAS_FW_BLC(dev) (IS_I9XX(dev) || IS_G4X(dev) || IS_IGDNG(dev)) |
| 983 | #define HAS_PIPE_CXSR(dev) (IS_G4X(dev) || IS_IGDNG(dev)) | 1017 | #define HAS_PIPE_CXSR(dev) (IS_G4X(dev) || IS_IGDNG(dev)) |
| 984 | #define I915_HAS_FBC(dev) (IS_MOBILE(dev) && (IS_I9XX(dev) || IS_I965G(dev))) | 1018 | #define I915_HAS_FBC(dev) (IS_MOBILE(dev) && \ |
| 1019 | (IS_I9XX(dev) || IS_GM45(dev)) && \ | ||
| 1020 | !IS_IGD(dev) && \ | ||
| 1021 | !IS_IGDNG(dev)) | ||
| 985 | 1022 | ||
| 986 | #define PRIMARY_RINGBUFFER_SIZE (128*1024) | 1023 | #define PRIMARY_RINGBUFFER_SIZE (128*1024) |
| 987 | 1024 | ||
diff --git a/drivers/gpu/drm/i915/i915_reg.h b/drivers/gpu/drm/i915/i915_reg.h index 0466ddbeba32..1687edf68795 100644 --- a/drivers/gpu/drm/i915/i915_reg.h +++ b/drivers/gpu/drm/i915/i915_reg.h | |||
| @@ -968,6 +968,8 @@ | |||
| 968 | #define LVDS_PORT_EN (1 << 31) | 968 | #define LVDS_PORT_EN (1 << 31) |
| 969 | /* Selects pipe B for LVDS data. Must be set on pre-965. */ | 969 | /* Selects pipe B for LVDS data. Must be set on pre-965. */ |
| 970 | #define LVDS_PIPEB_SELECT (1 << 30) | 970 | #define LVDS_PIPEB_SELECT (1 << 30) |
| 971 | /* Enable border for unscaled (or aspect-scaled) display */ | ||
| 972 | #define LVDS_BORDER_ENABLE (1 << 15) | ||
| 971 | /* | 973 | /* |
| 972 | * Enables the A0-A2 data pairs and CLKA, containing 18 bits of color data per | 974 | * Enables the A0-A2 data pairs and CLKA, containing 18 bits of color data per |
| 973 | * pixel. | 975 | * pixel. |
| @@ -1078,6 +1080,8 @@ | |||
| 1078 | #define BACKLIGHT_DUTY_CYCLE_SHIFT (0) | 1080 | #define BACKLIGHT_DUTY_CYCLE_SHIFT (0) |
| 1079 | #define BACKLIGHT_DUTY_CYCLE_MASK (0xffff) | 1081 | #define BACKLIGHT_DUTY_CYCLE_MASK (0xffff) |
| 1080 | 1082 | ||
| 1083 | #define BLC_HIST_CTL 0x61260 | ||
| 1084 | |||
| 1081 | /* TV port control */ | 1085 | /* TV port control */ |
| 1082 | #define TV_CTL 0x68000 | 1086 | #define TV_CTL 0x68000 |
| 1083 | /** Enables the TV encoder */ | 1087 | /** Enables the TV encoder */ |
| @@ -1780,6 +1784,11 @@ | |||
| 1780 | #define PIPE_START_VBLANK_INTERRUPT_STATUS (1UL<<2) /* 965 or later */ | 1784 | #define PIPE_START_VBLANK_INTERRUPT_STATUS (1UL<<2) /* 965 or later */ |
| 1781 | #define PIPE_VBLANK_INTERRUPT_STATUS (1UL<<1) | 1785 | #define PIPE_VBLANK_INTERRUPT_STATUS (1UL<<1) |
| 1782 | #define PIPE_OVERLAY_UPDATED_STATUS (1UL<<0) | 1786 | #define PIPE_OVERLAY_UPDATED_STATUS (1UL<<0) |
| 1787 | #define PIPE_BPC_MASK (7 << 5) /* Ironlake */ | ||
| 1788 | #define PIPE_8BPC (0 << 5) | ||
| 1789 | #define PIPE_10BPC (1 << 5) | ||
| 1790 | #define PIPE_6BPC (2 << 5) | ||
| 1791 | #define PIPE_12BPC (3 << 5) | ||
| 1783 | 1792 | ||
| 1784 | #define DSPARB 0x70030 | 1793 | #define DSPARB 0x70030 |
| 1785 | #define DSPARB_CSTART_MASK (0x7f << 7) | 1794 | #define DSPARB_CSTART_MASK (0x7f << 7) |
| @@ -1790,17 +1799,29 @@ | |||
| 1790 | #define DSPARB_AEND_SHIFT 0 | 1799 | #define DSPARB_AEND_SHIFT 0 |
| 1791 | 1800 | ||
| 1792 | #define DSPFW1 0x70034 | 1801 | #define DSPFW1 0x70034 |
| 1802 | #define DSPFW_SR_SHIFT 23 | ||
| 1803 | #define DSPFW_CURSORB_SHIFT 16 | ||
| 1804 | #define DSPFW_PLANEB_SHIFT 8 | ||
| 1793 | #define DSPFW2 0x70038 | 1805 | #define DSPFW2 0x70038 |
| 1806 | #define DSPFW_CURSORA_MASK 0x00003f00 | ||
| 1807 | #define DSPFW_CURSORA_SHIFT 16 | ||
| 1794 | #define DSPFW3 0x7003c | 1808 | #define DSPFW3 0x7003c |
| 1809 | #define DSPFW_HPLL_SR_EN (1<<31) | ||
| 1810 | #define DSPFW_CURSOR_SR_SHIFT 24 | ||
| 1795 | #define IGD_SELF_REFRESH_EN (1<<30) | 1811 | #define IGD_SELF_REFRESH_EN (1<<30) |
| 1796 | 1812 | ||
| 1797 | /* FIFO watermark sizes etc */ | 1813 | /* FIFO watermark sizes etc */ |
| 1814 | #define G4X_FIFO_LINE_SIZE 64 | ||
| 1798 | #define I915_FIFO_LINE_SIZE 64 | 1815 | #define I915_FIFO_LINE_SIZE 64 |
| 1799 | #define I830_FIFO_LINE_SIZE 32 | 1816 | #define I830_FIFO_LINE_SIZE 32 |
| 1817 | |||
| 1818 | #define G4X_FIFO_SIZE 127 | ||
| 1800 | #define I945_FIFO_SIZE 127 /* 945 & 965 */ | 1819 | #define I945_FIFO_SIZE 127 /* 945 & 965 */ |
| 1801 | #define I915_FIFO_SIZE 95 | 1820 | #define I915_FIFO_SIZE 95 |
| 1802 | #define I855GM_FIFO_SIZE 127 /* In cachelines */ | 1821 | #define I855GM_FIFO_SIZE 127 /* In cachelines */ |
| 1803 | #define I830_FIFO_SIZE 95 | 1822 | #define I830_FIFO_SIZE 95 |
| 1823 | |||
| 1824 | #define G4X_MAX_WM 0x3f | ||
| 1804 | #define I915_MAX_WM 0x3f | 1825 | #define I915_MAX_WM 0x3f |
| 1805 | 1826 | ||
| 1806 | #define IGD_DISPLAY_FIFO 512 /* in 64byte unit */ | 1827 | #define IGD_DISPLAY_FIFO 512 /* in 64byte unit */ |
| @@ -2030,6 +2051,11 @@ | |||
| 2030 | #define PFA_CTL_1 0x68080 | 2051 | #define PFA_CTL_1 0x68080 |
| 2031 | #define PFB_CTL_1 0x68880 | 2052 | #define PFB_CTL_1 0x68880 |
| 2032 | #define PF_ENABLE (1<<31) | 2053 | #define PF_ENABLE (1<<31) |
| 2054 | #define PF_FILTER_MASK (3<<23) | ||
| 2055 | #define PF_FILTER_PROGRAMMED (0<<23) | ||
| 2056 | #define PF_FILTER_MED_3x3 (1<<23) | ||
| 2057 | #define PF_FILTER_EDGE_ENHANCE (2<<23) | ||
| 2058 | #define PF_FILTER_EDGE_SOFTEN (3<<23) | ||
| 2033 | #define PFA_WIN_SZ 0x68074 | 2059 | #define PFA_WIN_SZ 0x68074 |
| 2034 | #define PFB_WIN_SZ 0x68874 | 2060 | #define PFB_WIN_SZ 0x68874 |
| 2035 | #define PFA_WIN_POS 0x68070 | 2061 | #define PFA_WIN_POS 0x68070 |
| @@ -2149,11 +2175,11 @@ | |||
| 2149 | #define DREF_CPU_SOURCE_OUTPUT_MASK (3<<13) | 2175 | #define DREF_CPU_SOURCE_OUTPUT_MASK (3<<13) |
| 2150 | #define DREF_SSC_SOURCE_DISABLE (0<<11) | 2176 | #define DREF_SSC_SOURCE_DISABLE (0<<11) |
| 2151 | #define DREF_SSC_SOURCE_ENABLE (2<<11) | 2177 | #define DREF_SSC_SOURCE_ENABLE (2<<11) |
| 2152 | #define DREF_SSC_SOURCE_MASK (2<<11) | 2178 | #define DREF_SSC_SOURCE_MASK (3<<11) |
| 2153 | #define DREF_NONSPREAD_SOURCE_DISABLE (0<<9) | 2179 | #define DREF_NONSPREAD_SOURCE_DISABLE (0<<9) |
| 2154 | #define DREF_NONSPREAD_CK505_ENABLE (1<<9) | 2180 | #define DREF_NONSPREAD_CK505_ENABLE (1<<9) |
| 2155 | #define DREF_NONSPREAD_SOURCE_ENABLE (2<<9) | 2181 | #define DREF_NONSPREAD_SOURCE_ENABLE (2<<9) |
| 2156 | #define DREF_NONSPREAD_SOURCE_MASK (2<<9) | 2182 | #define DREF_NONSPREAD_SOURCE_MASK (3<<9) |
| 2157 | #define DREF_SUPERSPREAD_SOURCE_DISABLE (0<<7) | 2183 | #define DREF_SUPERSPREAD_SOURCE_DISABLE (0<<7) |
| 2158 | #define DREF_SUPERSPREAD_SOURCE_ENABLE (2<<7) | 2184 | #define DREF_SUPERSPREAD_SOURCE_ENABLE (2<<7) |
| 2159 | #define DREF_SSC4_DOWNSPREAD (0<<6) | 2185 | #define DREF_SSC4_DOWNSPREAD (0<<6) |
diff --git a/drivers/gpu/drm/i915/i915_suspend.c b/drivers/gpu/drm/i915/i915_suspend.c index bd6d8d91ca9f..992d5617e798 100644 --- a/drivers/gpu/drm/i915/i915_suspend.c +++ b/drivers/gpu/drm/i915/i915_suspend.c | |||
| @@ -32,11 +32,15 @@ | |||
| 32 | static bool i915_pipe_enabled(struct drm_device *dev, enum pipe pipe) | 32 | static bool i915_pipe_enabled(struct drm_device *dev, enum pipe pipe) |
| 33 | { | 33 | { |
| 34 | struct drm_i915_private *dev_priv = dev->dev_private; | 34 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 35 | u32 dpll_reg; | ||
| 35 | 36 | ||
| 36 | if (pipe == PIPE_A) | 37 | if (IS_IGDNG(dev)) { |
| 37 | return (I915_READ(DPLL_A) & DPLL_VCO_ENABLE); | 38 | dpll_reg = (pipe == PIPE_A) ? PCH_DPLL_A: PCH_DPLL_B; |
| 38 | else | 39 | } else { |
| 39 | return (I915_READ(DPLL_B) & DPLL_VCO_ENABLE); | 40 | dpll_reg = (pipe == PIPE_A) ? DPLL_A: DPLL_B; |
| 41 | } | ||
| 42 | |||
| 43 | return (I915_READ(dpll_reg) & DPLL_VCO_ENABLE); | ||
| 40 | } | 44 | } |
| 41 | 45 | ||
| 42 | static void i915_save_palette(struct drm_device *dev, enum pipe pipe) | 46 | static void i915_save_palette(struct drm_device *dev, enum pipe pipe) |
| @@ -49,6 +53,9 @@ static void i915_save_palette(struct drm_device *dev, enum pipe pipe) | |||
| 49 | if (!i915_pipe_enabled(dev, pipe)) | 53 | if (!i915_pipe_enabled(dev, pipe)) |
| 50 | return; | 54 | return; |
| 51 | 55 | ||
| 56 | if (IS_IGDNG(dev)) | ||
| 57 | reg = (pipe == PIPE_A) ? LGC_PALETTE_A : LGC_PALETTE_B; | ||
| 58 | |||
| 52 | if (pipe == PIPE_A) | 59 | if (pipe == PIPE_A) |
| 53 | array = dev_priv->save_palette_a; | 60 | array = dev_priv->save_palette_a; |
| 54 | else | 61 | else |
| @@ -68,6 +75,9 @@ static void i915_restore_palette(struct drm_device *dev, enum pipe pipe) | |||
| 68 | if (!i915_pipe_enabled(dev, pipe)) | 75 | if (!i915_pipe_enabled(dev, pipe)) |
| 69 | return; | 76 | return; |
| 70 | 77 | ||
| 78 | if (IS_IGDNG(dev)) | ||
| 79 | reg = (pipe == PIPE_A) ? LGC_PALETTE_A : LGC_PALETTE_B; | ||
| 80 | |||
| 71 | if (pipe == PIPE_A) | 81 | if (pipe == PIPE_A) |
| 72 | array = dev_priv->save_palette_a; | 82 | array = dev_priv->save_palette_a; |
| 73 | else | 83 | else |
| @@ -232,10 +242,16 @@ static void i915_save_modeset_reg(struct drm_device *dev) | |||
| 232 | /* Pipe & plane A info */ | 242 | /* Pipe & plane A info */ |
| 233 | dev_priv->savePIPEACONF = I915_READ(PIPEACONF); | 243 | dev_priv->savePIPEACONF = I915_READ(PIPEACONF); |
| 234 | dev_priv->savePIPEASRC = I915_READ(PIPEASRC); | 244 | dev_priv->savePIPEASRC = I915_READ(PIPEASRC); |
| 235 | dev_priv->saveFPA0 = I915_READ(FPA0); | 245 | if (IS_IGDNG(dev)) { |
| 236 | dev_priv->saveFPA1 = I915_READ(FPA1); | 246 | dev_priv->saveFPA0 = I915_READ(PCH_FPA0); |
| 237 | dev_priv->saveDPLL_A = I915_READ(DPLL_A); | 247 | dev_priv->saveFPA1 = I915_READ(PCH_FPA1); |
| 238 | if (IS_I965G(dev)) | 248 | dev_priv->saveDPLL_A = I915_READ(PCH_DPLL_A); |
| 249 | } else { | ||
| 250 | dev_priv->saveFPA0 = I915_READ(FPA0); | ||
| 251 | dev_priv->saveFPA1 = I915_READ(FPA1); | ||
| 252 | dev_priv->saveDPLL_A = I915_READ(DPLL_A); | ||
| 253 | } | ||
| 254 | if (IS_I965G(dev) && !IS_IGDNG(dev)) | ||
| 239 | dev_priv->saveDPLL_A_MD = I915_READ(DPLL_A_MD); | 255 | dev_priv->saveDPLL_A_MD = I915_READ(DPLL_A_MD); |
| 240 | dev_priv->saveHTOTAL_A = I915_READ(HTOTAL_A); | 256 | dev_priv->saveHTOTAL_A = I915_READ(HTOTAL_A); |
| 241 | dev_priv->saveHBLANK_A = I915_READ(HBLANK_A); | 257 | dev_priv->saveHBLANK_A = I915_READ(HBLANK_A); |
| @@ -243,7 +259,24 @@ static void i915_save_modeset_reg(struct drm_device *dev) | |||
| 243 | dev_priv->saveVTOTAL_A = I915_READ(VTOTAL_A); | 259 | dev_priv->saveVTOTAL_A = I915_READ(VTOTAL_A); |
| 244 | dev_priv->saveVBLANK_A = I915_READ(VBLANK_A); | 260 | dev_priv->saveVBLANK_A = I915_READ(VBLANK_A); |
| 245 | dev_priv->saveVSYNC_A = I915_READ(VSYNC_A); | 261 | dev_priv->saveVSYNC_A = I915_READ(VSYNC_A); |
| 246 | dev_priv->saveBCLRPAT_A = I915_READ(BCLRPAT_A); | 262 | if (!IS_IGDNG(dev)) |
| 263 | dev_priv->saveBCLRPAT_A = I915_READ(BCLRPAT_A); | ||
| 264 | |||
| 265 | if (IS_IGDNG(dev)) { | ||
| 266 | dev_priv->saveFDI_TXA_CTL = I915_READ(FDI_TXA_CTL); | ||
| 267 | dev_priv->saveFDI_RXA_CTL = I915_READ(FDI_RXA_CTL); | ||
| 268 | |||
| 269 | dev_priv->savePFA_CTL_1 = I915_READ(PFA_CTL_1); | ||
| 270 | dev_priv->savePFA_WIN_SZ = I915_READ(PFA_WIN_SZ); | ||
| 271 | dev_priv->savePFA_WIN_POS = I915_READ(PFA_WIN_POS); | ||
| 272 | |||
| 273 | dev_priv->saveTRANS_HTOTAL_A = I915_READ(TRANS_HTOTAL_A); | ||
| 274 | dev_priv->saveTRANS_HBLANK_A = I915_READ(TRANS_HBLANK_A); | ||
| 275 | dev_priv->saveTRANS_HSYNC_A = I915_READ(TRANS_HSYNC_A); | ||
| 276 | dev_priv->saveTRANS_VTOTAL_A = I915_READ(TRANS_VTOTAL_A); | ||
| 277 | dev_priv->saveTRANS_VBLANK_A = I915_READ(TRANS_VBLANK_A); | ||
| 278 | dev_priv->saveTRANS_VSYNC_A = I915_READ(TRANS_VSYNC_A); | ||
| 279 | } | ||
| 247 | 280 | ||
| 248 | dev_priv->saveDSPACNTR = I915_READ(DSPACNTR); | 281 | dev_priv->saveDSPACNTR = I915_READ(DSPACNTR); |
| 249 | dev_priv->saveDSPASTRIDE = I915_READ(DSPASTRIDE); | 282 | dev_priv->saveDSPASTRIDE = I915_READ(DSPASTRIDE); |
| @@ -260,10 +293,16 @@ static void i915_save_modeset_reg(struct drm_device *dev) | |||
| 260 | /* Pipe & plane B info */ | 293 | /* Pipe & plane B info */ |
| 261 | dev_priv->savePIPEBCONF = I915_READ(PIPEBCONF); | 294 | dev_priv->savePIPEBCONF = I915_READ(PIPEBCONF); |
| 262 | dev_priv->savePIPEBSRC = I915_READ(PIPEBSRC); | 295 | dev_priv->savePIPEBSRC = I915_READ(PIPEBSRC); |
| 263 | dev_priv->saveFPB0 = I915_READ(FPB0); | 296 | if (IS_IGDNG(dev)) { |
| 264 | dev_priv->saveFPB1 = I915_READ(FPB1); | 297 | dev_priv->saveFPB0 = I915_READ(PCH_FPB0); |
| 265 | dev_priv->saveDPLL_B = I915_READ(DPLL_B); | 298 | dev_priv->saveFPB1 = I915_READ(PCH_FPB1); |
| 266 | if (IS_I965G(dev)) | 299 | dev_priv->saveDPLL_B = I915_READ(PCH_DPLL_B); |
| 300 | } else { | ||
| 301 | dev_priv->saveFPB0 = I915_READ(FPB0); | ||
| 302 | dev_priv->saveFPB1 = I915_READ(FPB1); | ||
| 303 | dev_priv->saveDPLL_B = I915_READ(DPLL_B); | ||
| 304 | } | ||
| 305 | if (IS_I965G(dev) && !IS_IGDNG(dev)) | ||
| 267 | dev_priv->saveDPLL_B_MD = I915_READ(DPLL_B_MD); | 306 | dev_priv->saveDPLL_B_MD = I915_READ(DPLL_B_MD); |
| 268 | dev_priv->saveHTOTAL_B = I915_READ(HTOTAL_B); | 307 | dev_priv->saveHTOTAL_B = I915_READ(HTOTAL_B); |
| 269 | dev_priv->saveHBLANK_B = I915_READ(HBLANK_B); | 308 | dev_priv->saveHBLANK_B = I915_READ(HBLANK_B); |
| @@ -271,7 +310,24 @@ static void i915_save_modeset_reg(struct drm_device *dev) | |||
| 271 | dev_priv->saveVTOTAL_B = I915_READ(VTOTAL_B); | 310 | dev_priv->saveVTOTAL_B = I915_READ(VTOTAL_B); |
| 272 | dev_priv->saveVBLANK_B = I915_READ(VBLANK_B); | 311 | dev_priv->saveVBLANK_B = I915_READ(VBLANK_B); |
| 273 | dev_priv->saveVSYNC_B = I915_READ(VSYNC_B); | 312 | dev_priv->saveVSYNC_B = I915_READ(VSYNC_B); |
| 274 | dev_priv->saveBCLRPAT_A = I915_READ(BCLRPAT_A); | 313 | if (!IS_IGDNG(dev)) |
| 314 | dev_priv->saveBCLRPAT_B = I915_READ(BCLRPAT_B); | ||
| 315 | |||
| 316 | if (IS_IGDNG(dev)) { | ||
| 317 | dev_priv->saveFDI_TXB_CTL = I915_READ(FDI_TXB_CTL); | ||
| 318 | dev_priv->saveFDI_RXB_CTL = I915_READ(FDI_RXB_CTL); | ||
| 319 | |||
| 320 | dev_priv->savePFB_CTL_1 = I915_READ(PFB_CTL_1); | ||
| 321 | dev_priv->savePFB_WIN_SZ = I915_READ(PFB_WIN_SZ); | ||
| 322 | dev_priv->savePFB_WIN_POS = I915_READ(PFB_WIN_POS); | ||
| 323 | |||
| 324 | dev_priv->saveTRANS_HTOTAL_B = I915_READ(TRANS_HTOTAL_B); | ||
| 325 | dev_priv->saveTRANS_HBLANK_B = I915_READ(TRANS_HBLANK_B); | ||
| 326 | dev_priv->saveTRANS_HSYNC_B = I915_READ(TRANS_HSYNC_B); | ||
| 327 | dev_priv->saveTRANS_VTOTAL_B = I915_READ(TRANS_VTOTAL_B); | ||
| 328 | dev_priv->saveTRANS_VBLANK_B = I915_READ(TRANS_VBLANK_B); | ||
| 329 | dev_priv->saveTRANS_VSYNC_B = I915_READ(TRANS_VSYNC_B); | ||
| 330 | } | ||
| 275 | 331 | ||
| 276 | dev_priv->saveDSPBCNTR = I915_READ(DSPBCNTR); | 332 | dev_priv->saveDSPBCNTR = I915_READ(DSPBCNTR); |
| 277 | dev_priv->saveDSPBSTRIDE = I915_READ(DSPBSTRIDE); | 333 | dev_priv->saveDSPBSTRIDE = I915_READ(DSPBSTRIDE); |
| @@ -290,23 +346,41 @@ static void i915_save_modeset_reg(struct drm_device *dev) | |||
| 290 | static void i915_restore_modeset_reg(struct drm_device *dev) | 346 | static void i915_restore_modeset_reg(struct drm_device *dev) |
| 291 | { | 347 | { |
| 292 | struct drm_i915_private *dev_priv = dev->dev_private; | 348 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 349 | int dpll_a_reg, fpa0_reg, fpa1_reg; | ||
| 350 | int dpll_b_reg, fpb0_reg, fpb1_reg; | ||
| 293 | 351 | ||
| 294 | if (drm_core_check_feature(dev, DRIVER_MODESET)) | 352 | if (drm_core_check_feature(dev, DRIVER_MODESET)) |
| 295 | return; | 353 | return; |
| 296 | 354 | ||
| 355 | if (IS_IGDNG(dev)) { | ||
| 356 | dpll_a_reg = PCH_DPLL_A; | ||
| 357 | dpll_b_reg = PCH_DPLL_B; | ||
| 358 | fpa0_reg = PCH_FPA0; | ||
| 359 | fpb0_reg = PCH_FPB0; | ||
| 360 | fpa1_reg = PCH_FPA1; | ||
| 361 | fpb1_reg = PCH_FPB1; | ||
| 362 | } else { | ||
| 363 | dpll_a_reg = DPLL_A; | ||
| 364 | dpll_b_reg = DPLL_B; | ||
| 365 | fpa0_reg = FPA0; | ||
| 366 | fpb0_reg = FPB0; | ||
| 367 | fpa1_reg = FPA1; | ||
| 368 | fpb1_reg = FPB1; | ||
| 369 | } | ||
| 370 | |||
| 297 | /* Pipe & plane A info */ | 371 | /* Pipe & plane A info */ |
| 298 | /* Prime the clock */ | 372 | /* Prime the clock */ |
| 299 | if (dev_priv->saveDPLL_A & DPLL_VCO_ENABLE) { | 373 | if (dev_priv->saveDPLL_A & DPLL_VCO_ENABLE) { |
| 300 | I915_WRITE(DPLL_A, dev_priv->saveDPLL_A & | 374 | I915_WRITE(dpll_a_reg, dev_priv->saveDPLL_A & |
| 301 | ~DPLL_VCO_ENABLE); | 375 | ~DPLL_VCO_ENABLE); |
| 302 | DRM_UDELAY(150); | 376 | DRM_UDELAY(150); |
| 303 | } | 377 | } |
| 304 | I915_WRITE(FPA0, dev_priv->saveFPA0); | 378 | I915_WRITE(fpa0_reg, dev_priv->saveFPA0); |
| 305 | I915_WRITE(FPA1, dev_priv->saveFPA1); | 379 | I915_WRITE(fpa1_reg, dev_priv->saveFPA1); |
| 306 | /* Actually enable it */ | 380 | /* Actually enable it */ |
| 307 | I915_WRITE(DPLL_A, dev_priv->saveDPLL_A); | 381 | I915_WRITE(dpll_a_reg, dev_priv->saveDPLL_A); |
| 308 | DRM_UDELAY(150); | 382 | DRM_UDELAY(150); |
| 309 | if (IS_I965G(dev)) | 383 | if (IS_I965G(dev) && !IS_IGDNG(dev)) |
| 310 | I915_WRITE(DPLL_A_MD, dev_priv->saveDPLL_A_MD); | 384 | I915_WRITE(DPLL_A_MD, dev_priv->saveDPLL_A_MD); |
| 311 | DRM_UDELAY(150); | 385 | DRM_UDELAY(150); |
| 312 | 386 | ||
| @@ -317,7 +391,24 @@ static void i915_restore_modeset_reg(struct drm_device *dev) | |||
| 317 | I915_WRITE(VTOTAL_A, dev_priv->saveVTOTAL_A); | 391 | I915_WRITE(VTOTAL_A, dev_priv->saveVTOTAL_A); |
| 318 | I915_WRITE(VBLANK_A, dev_priv->saveVBLANK_A); | 392 | I915_WRITE(VBLANK_A, dev_priv->saveVBLANK_A); |
| 319 | I915_WRITE(VSYNC_A, dev_priv->saveVSYNC_A); | 393 | I915_WRITE(VSYNC_A, dev_priv->saveVSYNC_A); |
| 320 | I915_WRITE(BCLRPAT_A, dev_priv->saveBCLRPAT_A); | 394 | if (!IS_IGDNG(dev)) |
| 395 | I915_WRITE(BCLRPAT_A, dev_priv->saveBCLRPAT_A); | ||
| 396 | |||
| 397 | if (IS_IGDNG(dev)) { | ||
| 398 | I915_WRITE(FDI_RXA_CTL, dev_priv->saveFDI_RXA_CTL); | ||
| 399 | I915_WRITE(FDI_TXA_CTL, dev_priv->saveFDI_TXA_CTL); | ||
| 400 | |||
| 401 | I915_WRITE(PFA_CTL_1, dev_priv->savePFA_CTL_1); | ||
| 402 | I915_WRITE(PFA_WIN_SZ, dev_priv->savePFA_WIN_SZ); | ||
| 403 | I915_WRITE(PFA_WIN_POS, dev_priv->savePFA_WIN_POS); | ||
| 404 | |||
| 405 | I915_WRITE(TRANS_HTOTAL_A, dev_priv->saveTRANS_HTOTAL_A); | ||
| 406 | I915_WRITE(TRANS_HBLANK_A, dev_priv->saveTRANS_HBLANK_A); | ||
| 407 | I915_WRITE(TRANS_HSYNC_A, dev_priv->saveTRANS_HSYNC_A); | ||
| 408 | I915_WRITE(TRANS_VTOTAL_A, dev_priv->saveTRANS_VTOTAL_A); | ||
| 409 | I915_WRITE(TRANS_VBLANK_A, dev_priv->saveTRANS_VBLANK_A); | ||
| 410 | I915_WRITE(TRANS_VSYNC_A, dev_priv->saveTRANS_VSYNC_A); | ||
| 411 | } | ||
| 321 | 412 | ||
| 322 | /* Restore plane info */ | 413 | /* Restore plane info */ |
| 323 | I915_WRITE(DSPASIZE, dev_priv->saveDSPASIZE); | 414 | I915_WRITE(DSPASIZE, dev_priv->saveDSPASIZE); |
| @@ -339,14 +430,14 @@ static void i915_restore_modeset_reg(struct drm_device *dev) | |||
| 339 | 430 | ||
| 340 | /* Pipe & plane B info */ | 431 | /* Pipe & plane B info */ |
| 341 | if (dev_priv->saveDPLL_B & DPLL_VCO_ENABLE) { | 432 | if (dev_priv->saveDPLL_B & DPLL_VCO_ENABLE) { |
| 342 | I915_WRITE(DPLL_B, dev_priv->saveDPLL_B & | 433 | I915_WRITE(dpll_b_reg, dev_priv->saveDPLL_B & |
| 343 | ~DPLL_VCO_ENABLE); | 434 | ~DPLL_VCO_ENABLE); |
| 344 | DRM_UDELAY(150); | 435 | DRM_UDELAY(150); |
| 345 | } | 436 | } |
| 346 | I915_WRITE(FPB0, dev_priv->saveFPB0); | 437 | I915_WRITE(fpb0_reg, dev_priv->saveFPB0); |
| 347 | I915_WRITE(FPB1, dev_priv->saveFPB1); | 438 | I915_WRITE(fpb1_reg, dev_priv->saveFPB1); |
| 348 | /* Actually enable it */ | 439 | /* Actually enable it */ |
| 349 | I915_WRITE(DPLL_B, dev_priv->saveDPLL_B); | 440 | I915_WRITE(dpll_b_reg, dev_priv->saveDPLL_B); |
| 350 | DRM_UDELAY(150); | 441 | DRM_UDELAY(150); |
| 351 | if (IS_I965G(dev)) | 442 | if (IS_I965G(dev)) |
| 352 | I915_WRITE(DPLL_B_MD, dev_priv->saveDPLL_B_MD); | 443 | I915_WRITE(DPLL_B_MD, dev_priv->saveDPLL_B_MD); |
| @@ -359,7 +450,24 @@ static void i915_restore_modeset_reg(struct drm_device *dev) | |||
| 359 | I915_WRITE(VTOTAL_B, dev_priv->saveVTOTAL_B); | 450 | I915_WRITE(VTOTAL_B, dev_priv->saveVTOTAL_B); |
| 360 | I915_WRITE(VBLANK_B, dev_priv->saveVBLANK_B); | 451 | I915_WRITE(VBLANK_B, dev_priv->saveVBLANK_B); |
| 361 | I915_WRITE(VSYNC_B, dev_priv->saveVSYNC_B); | 452 | I915_WRITE(VSYNC_B, dev_priv->saveVSYNC_B); |
| 362 | I915_WRITE(BCLRPAT_B, dev_priv->saveBCLRPAT_B); | 453 | if (!IS_IGDNG(dev)) |
| 454 | I915_WRITE(BCLRPAT_B, dev_priv->saveBCLRPAT_B); | ||
| 455 | |||
| 456 | if (IS_IGDNG(dev)) { | ||
| 457 | I915_WRITE(FDI_RXB_CTL, dev_priv->saveFDI_RXB_CTL); | ||
| 458 | I915_WRITE(FDI_TXB_CTL, dev_priv->saveFDI_TXB_CTL); | ||
| 459 | |||
| 460 | I915_WRITE(PFB_CTL_1, dev_priv->savePFB_CTL_1); | ||
| 461 | I915_WRITE(PFB_WIN_SZ, dev_priv->savePFB_WIN_SZ); | ||
| 462 | I915_WRITE(PFB_WIN_POS, dev_priv->savePFB_WIN_POS); | ||
| 463 | |||
| 464 | I915_WRITE(TRANS_HTOTAL_B, dev_priv->saveTRANS_HTOTAL_B); | ||
| 465 | I915_WRITE(TRANS_HBLANK_B, dev_priv->saveTRANS_HBLANK_B); | ||
| 466 | I915_WRITE(TRANS_HSYNC_B, dev_priv->saveTRANS_HSYNC_B); | ||
| 467 | I915_WRITE(TRANS_VTOTAL_B, dev_priv->saveTRANS_VTOTAL_B); | ||
| 468 | I915_WRITE(TRANS_VBLANK_B, dev_priv->saveTRANS_VBLANK_B); | ||
| 469 | I915_WRITE(TRANS_VSYNC_B, dev_priv->saveTRANS_VSYNC_B); | ||
| 470 | } | ||
| 363 | 471 | ||
| 364 | /* Restore plane info */ | 472 | /* Restore plane info */ |
| 365 | I915_WRITE(DSPBSIZE, dev_priv->saveDSPBSIZE); | 473 | I915_WRITE(DSPBSIZE, dev_priv->saveDSPBSIZE); |
| @@ -404,21 +512,43 @@ void i915_save_display(struct drm_device *dev) | |||
| 404 | dev_priv->saveCURSIZE = I915_READ(CURSIZE); | 512 | dev_priv->saveCURSIZE = I915_READ(CURSIZE); |
| 405 | 513 | ||
| 406 | /* CRT state */ | 514 | /* CRT state */ |
| 407 | dev_priv->saveADPA = I915_READ(ADPA); | 515 | if (IS_IGDNG(dev)) { |
| 516 | dev_priv->saveADPA = I915_READ(PCH_ADPA); | ||
| 517 | } else { | ||
| 518 | dev_priv->saveADPA = I915_READ(ADPA); | ||
| 519 | } | ||
| 408 | 520 | ||
| 409 | /* LVDS state */ | 521 | /* LVDS state */ |
| 410 | dev_priv->savePP_CONTROL = I915_READ(PP_CONTROL); | 522 | if (IS_IGDNG(dev)) { |
| 411 | dev_priv->savePFIT_PGM_RATIOS = I915_READ(PFIT_PGM_RATIOS); | 523 | dev_priv->savePP_CONTROL = I915_READ(PCH_PP_CONTROL); |
| 412 | dev_priv->saveBLC_PWM_CTL = I915_READ(BLC_PWM_CTL); | 524 | dev_priv->saveBLC_PWM_CTL = I915_READ(BLC_PWM_PCH_CTL1); |
| 413 | if (IS_I965G(dev)) | 525 | dev_priv->saveBLC_PWM_CTL2 = I915_READ(BLC_PWM_PCH_CTL2); |
| 414 | dev_priv->saveBLC_PWM_CTL2 = I915_READ(BLC_PWM_CTL2); | 526 | dev_priv->saveBLC_CPU_PWM_CTL = I915_READ(BLC_PWM_CPU_CTL); |
| 415 | if (IS_MOBILE(dev) && !IS_I830(dev)) | 527 | dev_priv->saveBLC_CPU_PWM_CTL2 = I915_READ(BLC_PWM_CPU_CTL2); |
| 416 | dev_priv->saveLVDS = I915_READ(LVDS); | 528 | dev_priv->saveLVDS = I915_READ(PCH_LVDS); |
| 417 | if (!IS_I830(dev) && !IS_845G(dev)) | 529 | } else { |
| 530 | dev_priv->savePP_CONTROL = I915_READ(PP_CONTROL); | ||
| 531 | dev_priv->savePFIT_PGM_RATIOS = I915_READ(PFIT_PGM_RATIOS); | ||
| 532 | dev_priv->saveBLC_PWM_CTL = I915_READ(BLC_PWM_CTL); | ||
| 533 | dev_priv->saveBLC_HIST_CTL = I915_READ(BLC_HIST_CTL); | ||
| 534 | if (IS_I965G(dev)) | ||
| 535 | dev_priv->saveBLC_PWM_CTL2 = I915_READ(BLC_PWM_CTL2); | ||
| 536 | if (IS_MOBILE(dev) && !IS_I830(dev)) | ||
| 537 | dev_priv->saveLVDS = I915_READ(LVDS); | ||
| 538 | } | ||
| 539 | |||
| 540 | if (!IS_I830(dev) && !IS_845G(dev) && !IS_IGDNG(dev)) | ||
| 418 | dev_priv->savePFIT_CONTROL = I915_READ(PFIT_CONTROL); | 541 | dev_priv->savePFIT_CONTROL = I915_READ(PFIT_CONTROL); |
| 419 | dev_priv->savePP_ON_DELAYS = I915_READ(PP_ON_DELAYS); | 542 | |
| 420 | dev_priv->savePP_OFF_DELAYS = I915_READ(PP_OFF_DELAYS); | 543 | if (IS_IGDNG(dev)) { |
| 421 | dev_priv->savePP_DIVISOR = I915_READ(PP_DIVISOR); | 544 | dev_priv->savePP_ON_DELAYS = I915_READ(PCH_PP_ON_DELAYS); |
| 545 | dev_priv->savePP_OFF_DELAYS = I915_READ(PCH_PP_OFF_DELAYS); | ||
| 546 | dev_priv->savePP_DIVISOR = I915_READ(PCH_PP_DIVISOR); | ||
| 547 | } else { | ||
| 548 | dev_priv->savePP_ON_DELAYS = I915_READ(PP_ON_DELAYS); | ||
| 549 | dev_priv->savePP_OFF_DELAYS = I915_READ(PP_OFF_DELAYS); | ||
| 550 | dev_priv->savePP_DIVISOR = I915_READ(PP_DIVISOR); | ||
| 551 | } | ||
| 422 | 552 | ||
| 423 | /* Display Port state */ | 553 | /* Display Port state */ |
| 424 | if (SUPPORTS_INTEGRATED_DP(dev)) { | 554 | if (SUPPORTS_INTEGRATED_DP(dev)) { |
| @@ -437,16 +567,23 @@ void i915_save_display(struct drm_device *dev) | |||
| 437 | /* FIXME: save TV & SDVO state */ | 567 | /* FIXME: save TV & SDVO state */ |
| 438 | 568 | ||
| 439 | /* FBC state */ | 569 | /* FBC state */ |
| 440 | dev_priv->saveFBC_CFB_BASE = I915_READ(FBC_CFB_BASE); | 570 | if (IS_GM45(dev)) { |
| 441 | dev_priv->saveFBC_LL_BASE = I915_READ(FBC_LL_BASE); | 571 | dev_priv->saveDPFC_CB_BASE = I915_READ(DPFC_CB_BASE); |
| 442 | dev_priv->saveFBC_CONTROL2 = I915_READ(FBC_CONTROL2); | 572 | } else { |
| 443 | dev_priv->saveFBC_CONTROL = I915_READ(FBC_CONTROL); | 573 | dev_priv->saveFBC_CFB_BASE = I915_READ(FBC_CFB_BASE); |
| 574 | dev_priv->saveFBC_LL_BASE = I915_READ(FBC_LL_BASE); | ||
| 575 | dev_priv->saveFBC_CONTROL2 = I915_READ(FBC_CONTROL2); | ||
| 576 | dev_priv->saveFBC_CONTROL = I915_READ(FBC_CONTROL); | ||
| 577 | } | ||
| 444 | 578 | ||
| 445 | /* VGA state */ | 579 | /* VGA state */ |
| 446 | dev_priv->saveVGA0 = I915_READ(VGA0); | 580 | dev_priv->saveVGA0 = I915_READ(VGA0); |
| 447 | dev_priv->saveVGA1 = I915_READ(VGA1); | 581 | dev_priv->saveVGA1 = I915_READ(VGA1); |
| 448 | dev_priv->saveVGA_PD = I915_READ(VGA_PD); | 582 | dev_priv->saveVGA_PD = I915_READ(VGA_PD); |
| 449 | dev_priv->saveVGACNTRL = I915_READ(VGACNTRL); | 583 | if (IS_IGDNG(dev)) |
| 584 | dev_priv->saveVGACNTRL = I915_READ(CPU_VGACNTRL); | ||
| 585 | else | ||
| 586 | dev_priv->saveVGACNTRL = I915_READ(VGACNTRL); | ||
| 450 | 587 | ||
| 451 | i915_save_vga(dev); | 588 | i915_save_vga(dev); |
| 452 | } | 589 | } |
| @@ -485,22 +622,41 @@ void i915_restore_display(struct drm_device *dev) | |||
| 485 | I915_WRITE(CURSIZE, dev_priv->saveCURSIZE); | 622 | I915_WRITE(CURSIZE, dev_priv->saveCURSIZE); |
| 486 | 623 | ||
| 487 | /* CRT state */ | 624 | /* CRT state */ |
| 488 | I915_WRITE(ADPA, dev_priv->saveADPA); | 625 | if (IS_IGDNG(dev)) |
| 626 | I915_WRITE(PCH_ADPA, dev_priv->saveADPA); | ||
| 627 | else | ||
| 628 | I915_WRITE(ADPA, dev_priv->saveADPA); | ||
| 489 | 629 | ||
| 490 | /* LVDS state */ | 630 | /* LVDS state */ |
| 491 | if (IS_I965G(dev)) | 631 | if (IS_I965G(dev) && !IS_IGDNG(dev)) |
| 492 | I915_WRITE(BLC_PWM_CTL2, dev_priv->saveBLC_PWM_CTL2); | 632 | I915_WRITE(BLC_PWM_CTL2, dev_priv->saveBLC_PWM_CTL2); |
| 493 | if (IS_MOBILE(dev) && !IS_I830(dev)) | 633 | |
| 634 | if (IS_IGDNG(dev)) { | ||
| 635 | I915_WRITE(PCH_LVDS, dev_priv->saveLVDS); | ||
| 636 | } else if (IS_MOBILE(dev) && !IS_I830(dev)) | ||
| 494 | I915_WRITE(LVDS, dev_priv->saveLVDS); | 637 | I915_WRITE(LVDS, dev_priv->saveLVDS); |
| 495 | if (!IS_I830(dev) && !IS_845G(dev)) | 638 | |
| 639 | if (!IS_I830(dev) && !IS_845G(dev) && !IS_IGDNG(dev)) | ||
| 496 | I915_WRITE(PFIT_CONTROL, dev_priv->savePFIT_CONTROL); | 640 | I915_WRITE(PFIT_CONTROL, dev_priv->savePFIT_CONTROL); |
| 497 | 641 | ||
| 498 | I915_WRITE(PFIT_PGM_RATIOS, dev_priv->savePFIT_PGM_RATIOS); | 642 | if (IS_IGDNG(dev)) { |
| 499 | I915_WRITE(BLC_PWM_CTL, dev_priv->saveBLC_PWM_CTL); | 643 | I915_WRITE(BLC_PWM_PCH_CTL1, dev_priv->saveBLC_PWM_CTL); |
| 500 | I915_WRITE(PP_ON_DELAYS, dev_priv->savePP_ON_DELAYS); | 644 | I915_WRITE(BLC_PWM_PCH_CTL2, dev_priv->saveBLC_PWM_CTL2); |
| 501 | I915_WRITE(PP_OFF_DELAYS, dev_priv->savePP_OFF_DELAYS); | 645 | I915_WRITE(BLC_PWM_CPU_CTL, dev_priv->saveBLC_CPU_PWM_CTL); |
| 502 | I915_WRITE(PP_DIVISOR, dev_priv->savePP_DIVISOR); | 646 | I915_WRITE(BLC_PWM_CPU_CTL2, dev_priv->saveBLC_CPU_PWM_CTL2); |
| 503 | I915_WRITE(PP_CONTROL, dev_priv->savePP_CONTROL); | 647 | I915_WRITE(PCH_PP_ON_DELAYS, dev_priv->savePP_ON_DELAYS); |
| 648 | I915_WRITE(PCH_PP_OFF_DELAYS, dev_priv->savePP_OFF_DELAYS); | ||
| 649 | I915_WRITE(PCH_PP_DIVISOR, dev_priv->savePP_DIVISOR); | ||
| 650 | I915_WRITE(PCH_PP_CONTROL, dev_priv->savePP_CONTROL); | ||
| 651 | } else { | ||
| 652 | I915_WRITE(PFIT_PGM_RATIOS, dev_priv->savePFIT_PGM_RATIOS); | ||
| 653 | I915_WRITE(BLC_PWM_CTL, dev_priv->saveBLC_PWM_CTL); | ||
| 654 | I915_WRITE(BLC_HIST_CTL, dev_priv->saveBLC_HIST_CTL); | ||
| 655 | I915_WRITE(PP_ON_DELAYS, dev_priv->savePP_ON_DELAYS); | ||
| 656 | I915_WRITE(PP_OFF_DELAYS, dev_priv->savePP_OFF_DELAYS); | ||
| 657 | I915_WRITE(PP_DIVISOR, dev_priv->savePP_DIVISOR); | ||
| 658 | I915_WRITE(PP_CONTROL, dev_priv->savePP_CONTROL); | ||
| 659 | } | ||
| 504 | 660 | ||
| 505 | /* Display Port state */ | 661 | /* Display Port state */ |
| 506 | if (SUPPORTS_INTEGRATED_DP(dev)) { | 662 | if (SUPPORTS_INTEGRATED_DP(dev)) { |
| @@ -511,13 +667,22 @@ void i915_restore_display(struct drm_device *dev) | |||
| 511 | /* FIXME: restore TV & SDVO state */ | 667 | /* FIXME: restore TV & SDVO state */ |
| 512 | 668 | ||
| 513 | /* FBC info */ | 669 | /* FBC info */ |
| 514 | I915_WRITE(FBC_CFB_BASE, dev_priv->saveFBC_CFB_BASE); | 670 | if (IS_GM45(dev)) { |
| 515 | I915_WRITE(FBC_LL_BASE, dev_priv->saveFBC_LL_BASE); | 671 | g4x_disable_fbc(dev); |
| 516 | I915_WRITE(FBC_CONTROL2, dev_priv->saveFBC_CONTROL2); | 672 | I915_WRITE(DPFC_CB_BASE, dev_priv->saveDPFC_CB_BASE); |
| 517 | I915_WRITE(FBC_CONTROL, dev_priv->saveFBC_CONTROL); | 673 | } else { |
| 674 | i8xx_disable_fbc(dev); | ||
| 675 | I915_WRITE(FBC_CFB_BASE, dev_priv->saveFBC_CFB_BASE); | ||
| 676 | I915_WRITE(FBC_LL_BASE, dev_priv->saveFBC_LL_BASE); | ||
| 677 | I915_WRITE(FBC_CONTROL2, dev_priv->saveFBC_CONTROL2); | ||
| 678 | I915_WRITE(FBC_CONTROL, dev_priv->saveFBC_CONTROL); | ||
| 679 | } | ||
| 518 | 680 | ||
| 519 | /* VGA state */ | 681 | /* VGA state */ |
| 520 | I915_WRITE(VGACNTRL, dev_priv->saveVGACNTRL); | 682 | if (IS_IGDNG(dev)) |
| 683 | I915_WRITE(CPU_VGACNTRL, dev_priv->saveVGACNTRL); | ||
| 684 | else | ||
| 685 | I915_WRITE(VGACNTRL, dev_priv->saveVGACNTRL); | ||
| 521 | I915_WRITE(VGA0, dev_priv->saveVGA0); | 686 | I915_WRITE(VGA0, dev_priv->saveVGA0); |
| 522 | I915_WRITE(VGA1, dev_priv->saveVGA1); | 687 | I915_WRITE(VGA1, dev_priv->saveVGA1); |
| 523 | I915_WRITE(VGA_PD, dev_priv->saveVGA_PD); | 688 | I915_WRITE(VGA_PD, dev_priv->saveVGA_PD); |
| @@ -543,8 +708,17 @@ int i915_save_state(struct drm_device *dev) | |||
| 543 | i915_save_display(dev); | 708 | i915_save_display(dev); |
| 544 | 709 | ||
| 545 | /* Interrupt state */ | 710 | /* Interrupt state */ |
| 546 | dev_priv->saveIER = I915_READ(IER); | 711 | if (IS_IGDNG(dev)) { |
| 547 | dev_priv->saveIMR = I915_READ(IMR); | 712 | dev_priv->saveDEIER = I915_READ(DEIER); |
| 713 | dev_priv->saveDEIMR = I915_READ(DEIMR); | ||
| 714 | dev_priv->saveGTIER = I915_READ(GTIER); | ||
| 715 | dev_priv->saveGTIMR = I915_READ(GTIMR); | ||
| 716 | dev_priv->saveFDI_RXA_IMR = I915_READ(FDI_RXA_IMR); | ||
| 717 | dev_priv->saveFDI_RXB_IMR = I915_READ(FDI_RXB_IMR); | ||
| 718 | } else { | ||
| 719 | dev_priv->saveIER = I915_READ(IER); | ||
| 720 | dev_priv->saveIMR = I915_READ(IMR); | ||
| 721 | } | ||
| 548 | 722 | ||
| 549 | /* Clock gating state */ | 723 | /* Clock gating state */ |
| 550 | dev_priv->saveD_STATE = I915_READ(D_STATE); | 724 | dev_priv->saveD_STATE = I915_READ(D_STATE); |
| @@ -609,8 +783,17 @@ int i915_restore_state(struct drm_device *dev) | |||
| 609 | i915_restore_display(dev); | 783 | i915_restore_display(dev); |
| 610 | 784 | ||
| 611 | /* Interrupt state */ | 785 | /* Interrupt state */ |
| 612 | I915_WRITE (IER, dev_priv->saveIER); | 786 | if (IS_IGDNG(dev)) { |
| 613 | I915_WRITE (IMR, dev_priv->saveIMR); | 787 | I915_WRITE(DEIER, dev_priv->saveDEIER); |
| 788 | I915_WRITE(DEIMR, dev_priv->saveDEIMR); | ||
| 789 | I915_WRITE(GTIER, dev_priv->saveGTIER); | ||
| 790 | I915_WRITE(GTIMR, dev_priv->saveGTIMR); | ||
| 791 | I915_WRITE(FDI_RXA_IMR, dev_priv->saveFDI_RXA_IMR); | ||
| 792 | I915_WRITE(FDI_RXB_IMR, dev_priv->saveFDI_RXB_IMR); | ||
| 793 | } else { | ||
| 794 | I915_WRITE (IER, dev_priv->saveIER); | ||
| 795 | I915_WRITE (IMR, dev_priv->saveIMR); | ||
| 796 | } | ||
| 614 | 797 | ||
| 615 | /* Clock gating state */ | 798 | /* Clock gating state */ |
| 616 | I915_WRITE (D_STATE, dev_priv->saveD_STATE); | 799 | I915_WRITE (D_STATE, dev_priv->saveD_STATE); |
diff --git a/drivers/gpu/drm/i915/intel_bios.c b/drivers/gpu/drm/i915/intel_bios.c index 4337414846b6..96cd256e60e6 100644 --- a/drivers/gpu/drm/i915/intel_bios.c +++ b/drivers/gpu/drm/i915/intel_bios.c | |||
| @@ -351,20 +351,18 @@ parse_driver_features(struct drm_i915_private *dev_priv, | |||
| 351 | struct drm_device *dev = dev_priv->dev; | 351 | struct drm_device *dev = dev_priv->dev; |
| 352 | struct bdb_driver_features *driver; | 352 | struct bdb_driver_features *driver; |
| 353 | 353 | ||
| 354 | /* set default for chips without eDP */ | ||
| 355 | if (!SUPPORTS_EDP(dev)) { | ||
| 356 | dev_priv->edp_support = 0; | ||
| 357 | return; | ||
| 358 | } | ||
| 359 | |||
| 360 | driver = find_section(bdb, BDB_DRIVER_FEATURES); | 354 | driver = find_section(bdb, BDB_DRIVER_FEATURES); |
| 361 | if (!driver) | 355 | if (!driver) |
| 362 | return; | 356 | return; |
| 363 | 357 | ||
| 364 | if (driver->lvds_config == BDB_DRIVER_FEATURE_EDP) | 358 | if (driver && SUPPORTS_EDP(dev) && |
| 359 | driver->lvds_config == BDB_DRIVER_FEATURE_EDP) { | ||
| 365 | dev_priv->edp_support = 1; | 360 | dev_priv->edp_support = 1; |
| 361 | } else { | ||
| 362 | dev_priv->edp_support = 0; | ||
| 363 | } | ||
| 366 | 364 | ||
| 367 | if (driver->dual_frequency) | 365 | if (driver && driver->dual_frequency) |
| 368 | dev_priv->render_reclock_avail = true; | 366 | dev_priv->render_reclock_avail = true; |
| 369 | } | 367 | } |
| 370 | 368 | ||
diff --git a/drivers/gpu/drm/i915/intel_display.c b/drivers/gpu/drm/i915/intel_display.c index 3c14240cc002..3ba6546b7c7f 100644 --- a/drivers/gpu/drm/i915/intel_display.c +++ b/drivers/gpu/drm/i915/intel_display.c | |||
| @@ -943,6 +943,7 @@ intel_find_pll_g4x_dp(const intel_limit_t *limit, struct drm_crtc *crtc, | |||
| 943 | clock.m = 5 * (clock.m1 + 2) + (clock.m2 + 2); | 943 | clock.m = 5 * (clock.m1 + 2) + (clock.m2 + 2); |
| 944 | clock.p = (clock.p1 * clock.p2); | 944 | clock.p = (clock.p1 * clock.p2); |
| 945 | clock.dot = 96000 * clock.m / (clock.n + 2) / clock.p; | 945 | clock.dot = 96000 * clock.m / (clock.n + 2) / clock.p; |
| 946 | clock.vco = 0; | ||
| 946 | memcpy(best_clock, &clock, sizeof(intel_clock_t)); | 947 | memcpy(best_clock, &clock, sizeof(intel_clock_t)); |
| 947 | return true; | 948 | return true; |
| 948 | } | 949 | } |
| @@ -1260,9 +1261,11 @@ intel_pipe_set_base(struct drm_crtc *crtc, int x, int y, | |||
| 1260 | return ret; | 1261 | return ret; |
| 1261 | } | 1262 | } |
| 1262 | 1263 | ||
| 1263 | /* Pre-i965 needs to install a fence for tiled scan-out */ | 1264 | /* Install a fence for tiled scan-out. Pre-i965 always needs a fence, |
| 1264 | if (!IS_I965G(dev) && | 1265 | * whereas 965+ only requires a fence if using framebuffer compression. |
| 1265 | obj_priv->fence_reg == I915_FENCE_REG_NONE && | 1266 | * For simplicity, we always install a fence as the cost is not that onerous. |
| 1267 | */ | ||
| 1268 | if (obj_priv->fence_reg == I915_FENCE_REG_NONE && | ||
| 1266 | obj_priv->tiling_mode != I915_TILING_NONE) { | 1269 | obj_priv->tiling_mode != I915_TILING_NONE) { |
| 1267 | ret = i915_gem_object_get_fence_reg(obj); | 1270 | ret = i915_gem_object_get_fence_reg(obj); |
| 1268 | if (ret != 0) { | 1271 | if (ret != 0) { |
| @@ -1513,7 +1516,7 @@ static void igdng_crtc_dpms(struct drm_crtc *crtc, int mode) | |||
| 1513 | /* Enable panel fitting for LVDS */ | 1516 | /* Enable panel fitting for LVDS */ |
| 1514 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) { | 1517 | if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) { |
| 1515 | temp = I915_READ(pf_ctl_reg); | 1518 | temp = I915_READ(pf_ctl_reg); |
| 1516 | I915_WRITE(pf_ctl_reg, temp | PF_ENABLE); | 1519 | I915_WRITE(pf_ctl_reg, temp | PF_ENABLE | PF_FILTER_MED_3x3); |
| 1517 | 1520 | ||
| 1518 | /* currently full aspect */ | 1521 | /* currently full aspect */ |
| 1519 | I915_WRITE(pf_win_pos, 0); | 1522 | I915_WRITE(pf_win_pos, 0); |
| @@ -1801,6 +1804,8 @@ static void i9xx_crtc_dpms(struct drm_crtc *crtc, int mode) | |||
| 1801 | case DRM_MODE_DPMS_ON: | 1804 | case DRM_MODE_DPMS_ON: |
| 1802 | case DRM_MODE_DPMS_STANDBY: | 1805 | case DRM_MODE_DPMS_STANDBY: |
| 1803 | case DRM_MODE_DPMS_SUSPEND: | 1806 | case DRM_MODE_DPMS_SUSPEND: |
| 1807 | intel_update_watermarks(dev); | ||
| 1808 | |||
| 1804 | /* Enable the DPLL */ | 1809 | /* Enable the DPLL */ |
| 1805 | temp = I915_READ(dpll_reg); | 1810 | temp = I915_READ(dpll_reg); |
| 1806 | if ((temp & DPLL_VCO_ENABLE) == 0) { | 1811 | if ((temp & DPLL_VCO_ENABLE) == 0) { |
| @@ -1838,7 +1843,6 @@ static void i9xx_crtc_dpms(struct drm_crtc *crtc, int mode) | |||
| 1838 | 1843 | ||
| 1839 | /* Give the overlay scaler a chance to enable if it's on this pipe */ | 1844 | /* Give the overlay scaler a chance to enable if it's on this pipe */ |
| 1840 | //intel_crtc_dpms_video(crtc, true); TODO | 1845 | //intel_crtc_dpms_video(crtc, true); TODO |
| 1841 | intel_update_watermarks(dev); | ||
| 1842 | break; | 1846 | break; |
| 1843 | case DRM_MODE_DPMS_OFF: | 1847 | case DRM_MODE_DPMS_OFF: |
| 1844 | intel_update_watermarks(dev); | 1848 | intel_update_watermarks(dev); |
| @@ -2082,7 +2086,7 @@ fdi_reduce_ratio(u32 *num, u32 *den) | |||
| 2082 | #define LINK_N 0x80000 | 2086 | #define LINK_N 0x80000 |
| 2083 | 2087 | ||
| 2084 | static void | 2088 | static void |
| 2085 | igdng_compute_m_n(int bytes_per_pixel, int nlanes, | 2089 | igdng_compute_m_n(int bits_per_pixel, int nlanes, |
| 2086 | int pixel_clock, int link_clock, | 2090 | int pixel_clock, int link_clock, |
| 2087 | struct fdi_m_n *m_n) | 2091 | struct fdi_m_n *m_n) |
| 2088 | { | 2092 | { |
| @@ -2092,7 +2096,8 @@ igdng_compute_m_n(int bytes_per_pixel, int nlanes, | |||
| 2092 | 2096 | ||
| 2093 | temp = (u64) DATA_N * pixel_clock; | 2097 | temp = (u64) DATA_N * pixel_clock; |
| 2094 | temp = div_u64(temp, link_clock); | 2098 | temp = div_u64(temp, link_clock); |
| 2095 | m_n->gmch_m = div_u64(temp * bytes_per_pixel, nlanes); | 2099 | m_n->gmch_m = div_u64(temp * bits_per_pixel, nlanes); |
| 2100 | m_n->gmch_m >>= 3; /* convert to bytes_per_pixel */ | ||
| 2096 | m_n->gmch_n = DATA_N; | 2101 | m_n->gmch_n = DATA_N; |
| 2097 | fdi_reduce_ratio(&m_n->gmch_m, &m_n->gmch_n); | 2102 | fdi_reduce_ratio(&m_n->gmch_m, &m_n->gmch_n); |
| 2098 | 2103 | ||
| @@ -2140,6 +2145,13 @@ static struct intel_watermark_params igd_cursor_hplloff_wm = { | |||
| 2140 | IGD_CURSOR_GUARD_WM, | 2145 | IGD_CURSOR_GUARD_WM, |
| 2141 | IGD_FIFO_LINE_SIZE | 2146 | IGD_FIFO_LINE_SIZE |
| 2142 | }; | 2147 | }; |
| 2148 | static struct intel_watermark_params g4x_wm_info = { | ||
| 2149 | G4X_FIFO_SIZE, | ||
| 2150 | G4X_MAX_WM, | ||
| 2151 | G4X_MAX_WM, | ||
| 2152 | 2, | ||
| 2153 | G4X_FIFO_LINE_SIZE, | ||
| 2154 | }; | ||
| 2143 | static struct intel_watermark_params i945_wm_info = { | 2155 | static struct intel_watermark_params i945_wm_info = { |
| 2144 | I945_FIFO_SIZE, | 2156 | I945_FIFO_SIZE, |
| 2145 | I915_MAX_WM, | 2157 | I915_MAX_WM, |
| @@ -2430,17 +2442,74 @@ static int i830_get_fifo_size(struct drm_device *dev, int plane) | |||
| 2430 | return size; | 2442 | return size; |
| 2431 | } | 2443 | } |
| 2432 | 2444 | ||
| 2433 | static void g4x_update_wm(struct drm_device *dev, int unused, int unused2, | 2445 | static void g4x_update_wm(struct drm_device *dev, int planea_clock, |
| 2434 | int unused3, int unused4) | 2446 | int planeb_clock, int sr_hdisplay, int pixel_size) |
| 2435 | { | 2447 | { |
| 2436 | struct drm_i915_private *dev_priv = dev->dev_private; | 2448 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2437 | u32 fw_blc_self = I915_READ(FW_BLC_SELF); | 2449 | int total_size, cacheline_size; |
| 2450 | int planea_wm, planeb_wm, cursora_wm, cursorb_wm, cursor_sr; | ||
| 2451 | struct intel_watermark_params planea_params, planeb_params; | ||
| 2452 | unsigned long line_time_us; | ||
| 2453 | int sr_clock, sr_entries = 0, entries_required; | ||
| 2438 | 2454 | ||
| 2439 | if (i915_powersave) | 2455 | /* Create copies of the base settings for each pipe */ |
| 2440 | fw_blc_self |= FW_BLC_SELF_EN; | 2456 | planea_params = planeb_params = g4x_wm_info; |
| 2441 | else | 2457 | |
| 2442 | fw_blc_self &= ~FW_BLC_SELF_EN; | 2458 | /* Grab a couple of global values before we overwrite them */ |
| 2443 | I915_WRITE(FW_BLC_SELF, fw_blc_self); | 2459 | total_size = planea_params.fifo_size; |
| 2460 | cacheline_size = planea_params.cacheline_size; | ||
| 2461 | |||
| 2462 | /* | ||
| 2463 | * Note: we need to make sure we don't overflow for various clock & | ||
| 2464 | * latency values. | ||
| 2465 | * clocks go from a few thousand to several hundred thousand. | ||
| 2466 | * latency is usually a few thousand | ||
| 2467 | */ | ||
| 2468 | entries_required = ((planea_clock / 1000) * pixel_size * latency_ns) / | ||
| 2469 | 1000; | ||
| 2470 | entries_required /= G4X_FIFO_LINE_SIZE; | ||
| 2471 | planea_wm = entries_required + planea_params.guard_size; | ||
| 2472 | |||
| 2473 | entries_required = ((planeb_clock / 1000) * pixel_size * latency_ns) / | ||
| 2474 | 1000; | ||
| 2475 | entries_required /= G4X_FIFO_LINE_SIZE; | ||
| 2476 | planeb_wm = entries_required + planeb_params.guard_size; | ||
| 2477 | |||
| 2478 | cursora_wm = cursorb_wm = 16; | ||
| 2479 | cursor_sr = 32; | ||
| 2480 | |||
| 2481 | DRM_DEBUG("FIFO watermarks - A: %d, B: %d\n", planea_wm, planeb_wm); | ||
| 2482 | |||
| 2483 | /* Calc sr entries for one plane configs */ | ||
| 2484 | if (sr_hdisplay && (!planea_clock || !planeb_clock)) { | ||
| 2485 | /* self-refresh has much higher latency */ | ||
| 2486 | const static int sr_latency_ns = 12000; | ||
| 2487 | |||
| 2488 | sr_clock = planea_clock ? planea_clock : planeb_clock; | ||
| 2489 | line_time_us = ((sr_hdisplay * 1000) / sr_clock); | ||
| 2490 | |||
| 2491 | /* Use ns/us then divide to preserve precision */ | ||
| 2492 | sr_entries = (((sr_latency_ns / line_time_us) + 1) * | ||
| 2493 | pixel_size * sr_hdisplay) / 1000; | ||
| 2494 | sr_entries = roundup(sr_entries / cacheline_size, 1); | ||
| 2495 | DRM_DEBUG("self-refresh entries: %d\n", sr_entries); | ||
| 2496 | I915_WRITE(FW_BLC_SELF, FW_BLC_SELF_EN); | ||
| 2497 | } | ||
| 2498 | |||
| 2499 | DRM_DEBUG("Setting FIFO watermarks - A: %d, B: %d, SR %d\n", | ||
| 2500 | planea_wm, planeb_wm, sr_entries); | ||
| 2501 | |||
| 2502 | planea_wm &= 0x3f; | ||
| 2503 | planeb_wm &= 0x3f; | ||
| 2504 | |||
| 2505 | I915_WRITE(DSPFW1, (sr_entries << DSPFW_SR_SHIFT) | | ||
| 2506 | (cursorb_wm << DSPFW_CURSORB_SHIFT) | | ||
| 2507 | (planeb_wm << DSPFW_PLANEB_SHIFT) | planea_wm); | ||
| 2508 | I915_WRITE(DSPFW2, (I915_READ(DSPFW2) & DSPFW_CURSORA_MASK) | | ||
| 2509 | (cursora_wm << DSPFW_CURSORA_SHIFT)); | ||
| 2510 | /* HPLL off in SR has some issues on G4x... disable it */ | ||
| 2511 | I915_WRITE(DSPFW3, (I915_READ(DSPFW3) & ~DSPFW_HPLL_SR_EN) | | ||
| 2512 | (cursor_sr << DSPFW_CURSOR_SR_SHIFT)); | ||
| 2444 | } | 2513 | } |
| 2445 | 2514 | ||
| 2446 | static void i965_update_wm(struct drm_device *dev, int unused, int unused2, | 2515 | static void i965_update_wm(struct drm_device *dev, int unused, int unused2, |
| @@ -2586,6 +2655,9 @@ static void intel_update_watermarks(struct drm_device *dev) | |||
| 2586 | unsigned long planea_clock = 0, planeb_clock = 0, sr_clock = 0; | 2655 | unsigned long planea_clock = 0, planeb_clock = 0, sr_clock = 0; |
| 2587 | int enabled = 0, pixel_size = 0; | 2656 | int enabled = 0, pixel_size = 0; |
| 2588 | 2657 | ||
| 2658 | if (!dev_priv->display.update_wm) | ||
| 2659 | return; | ||
| 2660 | |||
| 2589 | /* Get the clock config from both planes */ | 2661 | /* Get the clock config from both planes */ |
| 2590 | list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) { | 2662 | list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) { |
| 2591 | intel_crtc = to_intel_crtc(crtc); | 2663 | intel_crtc = to_intel_crtc(crtc); |
| @@ -2763,7 +2835,7 @@ static int intel_crtc_mode_set(struct drm_crtc *crtc, | |||
| 2763 | 2835 | ||
| 2764 | /* FDI link */ | 2836 | /* FDI link */ |
| 2765 | if (IS_IGDNG(dev)) { | 2837 | if (IS_IGDNG(dev)) { |
| 2766 | int lane, link_bw; | 2838 | int lane, link_bw, bpp; |
| 2767 | /* eDP doesn't require FDI link, so just set DP M/N | 2839 | /* eDP doesn't require FDI link, so just set DP M/N |
| 2768 | according to current link config */ | 2840 | according to current link config */ |
| 2769 | if (is_edp) { | 2841 | if (is_edp) { |
| @@ -2782,10 +2854,72 @@ static int intel_crtc_mode_set(struct drm_crtc *crtc, | |||
| 2782 | lane = 4; | 2854 | lane = 4; |
| 2783 | link_bw = 270000; | 2855 | link_bw = 270000; |
| 2784 | } | 2856 | } |
| 2785 | igdng_compute_m_n(3, lane, target_clock, | 2857 | |
| 2858 | /* determine panel color depth */ | ||
| 2859 | temp = I915_READ(pipeconf_reg); | ||
| 2860 | |||
| 2861 | switch (temp & PIPE_BPC_MASK) { | ||
| 2862 | case PIPE_8BPC: | ||
| 2863 | bpp = 24; | ||
| 2864 | break; | ||
| 2865 | case PIPE_10BPC: | ||
| 2866 | bpp = 30; | ||
| 2867 | break; | ||
| 2868 | case PIPE_6BPC: | ||
| 2869 | bpp = 18; | ||
| 2870 | break; | ||
| 2871 | case PIPE_12BPC: | ||
| 2872 | bpp = 36; | ||
| 2873 | break; | ||
| 2874 | default: | ||
| 2875 | DRM_ERROR("unknown pipe bpc value\n"); | ||
| 2876 | bpp = 24; | ||
| 2877 | } | ||
| 2878 | |||
| 2879 | igdng_compute_m_n(bpp, lane, target_clock, | ||
| 2786 | link_bw, &m_n); | 2880 | link_bw, &m_n); |
| 2787 | } | 2881 | } |
| 2788 | 2882 | ||
| 2883 | /* Ironlake: try to setup display ref clock before DPLL | ||
| 2884 | * enabling. This is only under driver's control after | ||
| 2885 | * PCH B stepping, previous chipset stepping should be | ||
| 2886 | * ignoring this setting. | ||
| 2887 | */ | ||
| 2888 | if (IS_IGDNG(dev)) { | ||
| 2889 | temp = I915_READ(PCH_DREF_CONTROL); | ||
| 2890 | /* Always enable nonspread source */ | ||
| 2891 | temp &= ~DREF_NONSPREAD_SOURCE_MASK; | ||
| 2892 | temp |= DREF_NONSPREAD_SOURCE_ENABLE; | ||
| 2893 | I915_WRITE(PCH_DREF_CONTROL, temp); | ||
| 2894 | POSTING_READ(PCH_DREF_CONTROL); | ||
| 2895 | |||
| 2896 | temp &= ~DREF_SSC_SOURCE_MASK; | ||
| 2897 | temp |= DREF_SSC_SOURCE_ENABLE; | ||
| 2898 | I915_WRITE(PCH_DREF_CONTROL, temp); | ||
| 2899 | POSTING_READ(PCH_DREF_CONTROL); | ||
| 2900 | |||
| 2901 | udelay(200); | ||
| 2902 | |||
| 2903 | if (is_edp) { | ||
| 2904 | if (dev_priv->lvds_use_ssc) { | ||
| 2905 | temp |= DREF_SSC1_ENABLE; | ||
| 2906 | I915_WRITE(PCH_DREF_CONTROL, temp); | ||
| 2907 | POSTING_READ(PCH_DREF_CONTROL); | ||
| 2908 | |||
| 2909 | udelay(200); | ||
| 2910 | |||
| 2911 | temp &= ~DREF_CPU_SOURCE_OUTPUT_MASK; | ||
| 2912 | temp |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD; | ||
| 2913 | I915_WRITE(PCH_DREF_CONTROL, temp); | ||
| 2914 | POSTING_READ(PCH_DREF_CONTROL); | ||
| 2915 | } else { | ||
| 2916 | temp |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD; | ||
| 2917 | I915_WRITE(PCH_DREF_CONTROL, temp); | ||
| 2918 | POSTING_READ(PCH_DREF_CONTROL); | ||
| 2919 | } | ||
| 2920 | } | ||
| 2921 | } | ||
| 2922 | |||
| 2789 | if (IS_IGD(dev)) { | 2923 | if (IS_IGD(dev)) { |
| 2790 | fp = (1 << clock.n) << 16 | clock.m1 << 8 | clock.m2; | 2924 | fp = (1 << clock.n) << 16 | clock.m1 << 8 | clock.m2; |
| 2791 | if (has_reduced_clock) | 2925 | if (has_reduced_clock) |
| @@ -2936,6 +3070,8 @@ static int intel_crtc_mode_set(struct drm_crtc *crtc, | |||
| 2936 | 3070 | ||
| 2937 | lvds = I915_READ(lvds_reg); | 3071 | lvds = I915_READ(lvds_reg); |
| 2938 | lvds |= LVDS_PORT_EN | LVDS_A0A2_CLKA_POWER_UP | LVDS_PIPEB_SELECT; | 3072 | lvds |= LVDS_PORT_EN | LVDS_A0A2_CLKA_POWER_UP | LVDS_PIPEB_SELECT; |
| 3073 | /* set the corresponsding LVDS_BORDER bit */ | ||
| 3074 | lvds |= dev_priv->lvds_border_bits; | ||
| 2939 | /* Set the B0-B3 data pairs corresponding to whether we're going to | 3075 | /* Set the B0-B3 data pairs corresponding to whether we're going to |
| 2940 | * set the DPLLs for dual-channel mode or not. | 3076 | * set the DPLLs for dual-channel mode or not. |
| 2941 | */ | 3077 | */ |
| @@ -4124,7 +4260,9 @@ void intel_init_clock_gating(struct drm_device *dev) | |||
| 4124 | * Disable clock gating reported to work incorrectly according to the | 4260 | * Disable clock gating reported to work incorrectly according to the |
| 4125 | * specs, but enable as much else as we can. | 4261 | * specs, but enable as much else as we can. |
| 4126 | */ | 4262 | */ |
| 4127 | if (IS_G4X(dev)) { | 4263 | if (IS_IGDNG(dev)) { |
| 4264 | return; | ||
| 4265 | } else if (IS_G4X(dev)) { | ||
| 4128 | uint32_t dspclk_gate; | 4266 | uint32_t dspclk_gate; |
| 4129 | I915_WRITE(RENCLK_GATE_D1, 0); | 4267 | I915_WRITE(RENCLK_GATE_D1, 0); |
| 4130 | I915_WRITE(RENCLK_GATE_D2, VF_UNIT_CLOCK_GATE_DISABLE | | 4268 | I915_WRITE(RENCLK_GATE_D2, VF_UNIT_CLOCK_GATE_DISABLE | |
| @@ -4212,7 +4350,9 @@ static void intel_init_display(struct drm_device *dev) | |||
| 4212 | i830_get_display_clock_speed; | 4350 | i830_get_display_clock_speed; |
| 4213 | 4351 | ||
| 4214 | /* For FIFO watermark updates */ | 4352 | /* For FIFO watermark updates */ |
| 4215 | if (IS_G4X(dev)) | 4353 | if (IS_IGDNG(dev)) |
| 4354 | dev_priv->display.update_wm = NULL; | ||
| 4355 | else if (IS_G4X(dev)) | ||
| 4216 | dev_priv->display.update_wm = g4x_update_wm; | 4356 | dev_priv->display.update_wm = g4x_update_wm; |
| 4217 | else if (IS_I965G(dev)) | 4357 | else if (IS_I965G(dev)) |
| 4218 | dev_priv->display.update_wm = i965_update_wm; | 4358 | dev_priv->display.update_wm = i965_update_wm; |
diff --git a/drivers/gpu/drm/i915/intel_dp.c b/drivers/gpu/drm/i915/intel_dp.c index f4856a510476..d83447557f9b 100644 --- a/drivers/gpu/drm/i915/intel_dp.c +++ b/drivers/gpu/drm/i915/intel_dp.c | |||
| @@ -400,7 +400,7 @@ intel_dp_i2c_init(struct intel_output *intel_output, const char *name) | |||
| 400 | { | 400 | { |
| 401 | struct intel_dp_priv *dp_priv = intel_output->dev_priv; | 401 | struct intel_dp_priv *dp_priv = intel_output->dev_priv; |
| 402 | 402 | ||
| 403 | DRM_ERROR("i2c_init %s\n", name); | 403 | DRM_DEBUG_KMS("i2c_init %s\n", name); |
| 404 | dp_priv->algo.running = false; | 404 | dp_priv->algo.running = false; |
| 405 | dp_priv->algo.address = 0; | 405 | dp_priv->algo.address = 0; |
| 406 | dp_priv->algo.aux_ch = intel_dp_i2c_aux_ch; | 406 | dp_priv->algo.aux_ch = intel_dp_i2c_aux_ch; |
diff --git a/drivers/gpu/drm/i915/intel_lvds.c b/drivers/gpu/drm/i915/intel_lvds.c index 98ae3d73577e..05598ae10c4b 100644 --- a/drivers/gpu/drm/i915/intel_lvds.c +++ b/drivers/gpu/drm/i915/intel_lvds.c | |||
| @@ -380,7 +380,7 @@ static bool intel_lvds_mode_fixup(struct drm_encoder *encoder, | |||
| 380 | adjusted_mode->crtc_vblank_start + vsync_pos; | 380 | adjusted_mode->crtc_vblank_start + vsync_pos; |
| 381 | /* keep the vsync width constant */ | 381 | /* keep the vsync width constant */ |
| 382 | adjusted_mode->crtc_vsync_end = | 382 | adjusted_mode->crtc_vsync_end = |
| 383 | adjusted_mode->crtc_vblank_start + vsync_width; | 383 | adjusted_mode->crtc_vsync_start + vsync_width; |
| 384 | border = 1; | 384 | border = 1; |
| 385 | break; | 385 | break; |
| 386 | case DRM_MODE_SCALE_ASPECT: | 386 | case DRM_MODE_SCALE_ASPECT: |
| @@ -526,6 +526,14 @@ out: | |||
| 526 | lvds_priv->pfit_control = pfit_control; | 526 | lvds_priv->pfit_control = pfit_control; |
| 527 | lvds_priv->pfit_pgm_ratios = pfit_pgm_ratios; | 527 | lvds_priv->pfit_pgm_ratios = pfit_pgm_ratios; |
| 528 | /* | 528 | /* |
| 529 | * When there exists the border, it means that the LVDS_BORDR | ||
| 530 | * should be enabled. | ||
| 531 | */ | ||
| 532 | if (border) | ||
| 533 | dev_priv->lvds_border_bits |= LVDS_BORDER_ENABLE; | ||
| 534 | else | ||
| 535 | dev_priv->lvds_border_bits &= ~(LVDS_BORDER_ENABLE); | ||
| 536 | /* | ||
| 529 | * XXX: It would be nice to support lower refresh rates on the | 537 | * XXX: It would be nice to support lower refresh rates on the |
| 530 | * panels to reduce power consumption, and perhaps match the | 538 | * panels to reduce power consumption, and perhaps match the |
| 531 | * user's requested refresh rate. | 539 | * user's requested refresh rate. |
| @@ -656,6 +664,15 @@ static int intel_lvds_get_modes(struct drm_connector *connector) | |||
| 656 | return 0; | 664 | return 0; |
| 657 | } | 665 | } |
| 658 | 666 | ||
| 667 | /* | ||
| 668 | * Lid events. Note the use of 'modeset_on_lid': | ||
| 669 | * - we set it on lid close, and reset it on open | ||
| 670 | * - we use it as a "only once" bit (ie we ignore | ||
| 671 | * duplicate events where it was already properly | ||
| 672 | * set/reset) | ||
| 673 | * - the suspend/resume paths will also set it to | ||
| 674 | * zero, since they restore the mode ("lid open"). | ||
| 675 | */ | ||
| 659 | static int intel_lid_notify(struct notifier_block *nb, unsigned long val, | 676 | static int intel_lid_notify(struct notifier_block *nb, unsigned long val, |
| 660 | void *unused) | 677 | void *unused) |
| 661 | { | 678 | { |
| @@ -663,13 +680,19 @@ static int intel_lid_notify(struct notifier_block *nb, unsigned long val, | |||
| 663 | container_of(nb, struct drm_i915_private, lid_notifier); | 680 | container_of(nb, struct drm_i915_private, lid_notifier); |
| 664 | struct drm_device *dev = dev_priv->dev; | 681 | struct drm_device *dev = dev_priv->dev; |
| 665 | 682 | ||
| 666 | if (acpi_lid_open() && !dev_priv->suspended) { | 683 | if (!acpi_lid_open()) { |
| 667 | mutex_lock(&dev->mode_config.mutex); | 684 | dev_priv->modeset_on_lid = 1; |
| 668 | drm_helper_resume_force_mode(dev); | 685 | return NOTIFY_OK; |
| 669 | mutex_unlock(&dev->mode_config.mutex); | ||
| 670 | } | 686 | } |
| 671 | 687 | ||
| 672 | drm_sysfs_hotplug_event(dev_priv->dev); | 688 | if (!dev_priv->modeset_on_lid) |
| 689 | return NOTIFY_OK; | ||
| 690 | |||
| 691 | dev_priv->modeset_on_lid = 0; | ||
| 692 | |||
| 693 | mutex_lock(&dev->mode_config.mutex); | ||
| 694 | drm_helper_resume_force_mode(dev); | ||
| 695 | mutex_unlock(&dev->mode_config.mutex); | ||
| 673 | 696 | ||
| 674 | return NOTIFY_OK; | 697 | return NOTIFY_OK; |
| 675 | } | 698 | } |
diff --git a/drivers/i2c/busses/i2c-imx.c b/drivers/i2c/busses/i2c-imx.c index 4afba3ec2a61..e3654d683e15 100644 --- a/drivers/i2c/busses/i2c-imx.c +++ b/drivers/i2c/busses/i2c-imx.c | |||
| @@ -120,19 +120,26 @@ struct imx_i2c_struct { | |||
| 120 | wait_queue_head_t queue; | 120 | wait_queue_head_t queue; |
| 121 | unsigned long i2csr; | 121 | unsigned long i2csr; |
| 122 | unsigned int disable_delay; | 122 | unsigned int disable_delay; |
| 123 | int stopped; | ||
| 124 | unsigned int ifdr; /* IMX_I2C_IFDR */ | ||
| 123 | }; | 125 | }; |
| 124 | 126 | ||
| 125 | /** Functions for IMX I2C adapter driver *************************************** | 127 | /** Functions for IMX I2C adapter driver *************************************** |
| 126 | *******************************************************************************/ | 128 | *******************************************************************************/ |
| 127 | 129 | ||
| 128 | static int i2c_imx_bus_busy(struct imx_i2c_struct *i2c_imx) | 130 | static int i2c_imx_bus_busy(struct imx_i2c_struct *i2c_imx, int for_busy) |
| 129 | { | 131 | { |
| 130 | unsigned long orig_jiffies = jiffies; | 132 | unsigned long orig_jiffies = jiffies; |
| 133 | unsigned int temp; | ||
| 131 | 134 | ||
| 132 | dev_dbg(&i2c_imx->adapter.dev, "<%s>\n", __func__); | 135 | dev_dbg(&i2c_imx->adapter.dev, "<%s>\n", __func__); |
| 133 | 136 | ||
| 134 | /* wait for bus not busy */ | 137 | while (1) { |
| 135 | while (readb(i2c_imx->base + IMX_I2C_I2SR) & I2SR_IBB) { | 138 | temp = readb(i2c_imx->base + IMX_I2C_I2SR); |
| 139 | if (for_busy && (temp & I2SR_IBB)) | ||
| 140 | break; | ||
| 141 | if (!for_busy && !(temp & I2SR_IBB)) | ||
| 142 | break; | ||
| 136 | if (signal_pending(current)) { | 143 | if (signal_pending(current)) { |
| 137 | dev_dbg(&i2c_imx->adapter.dev, | 144 | dev_dbg(&i2c_imx->adapter.dev, |
| 138 | "<%s> I2C Interrupted\n", __func__); | 145 | "<%s> I2C Interrupted\n", __func__); |
| @@ -179,41 +186,62 @@ static int i2c_imx_acked(struct imx_i2c_struct *i2c_imx) | |||
| 179 | return 0; | 186 | return 0; |
| 180 | } | 187 | } |
| 181 | 188 | ||
| 182 | static void i2c_imx_start(struct imx_i2c_struct *i2c_imx) | 189 | static int i2c_imx_start(struct imx_i2c_struct *i2c_imx) |
| 183 | { | 190 | { |
| 184 | unsigned int temp = 0; | 191 | unsigned int temp = 0; |
| 192 | int result; | ||
| 185 | 193 | ||
| 186 | dev_dbg(&i2c_imx->adapter.dev, "<%s>\n", __func__); | 194 | dev_dbg(&i2c_imx->adapter.dev, "<%s>\n", __func__); |
| 187 | 195 | ||
| 196 | clk_enable(i2c_imx->clk); | ||
| 197 | writeb(i2c_imx->ifdr, i2c_imx->base + IMX_I2C_IFDR); | ||
| 188 | /* Enable I2C controller */ | 198 | /* Enable I2C controller */ |
| 199 | writeb(0, i2c_imx->base + IMX_I2C_I2SR); | ||
| 189 | writeb(I2CR_IEN, i2c_imx->base + IMX_I2C_I2CR); | 200 | writeb(I2CR_IEN, i2c_imx->base + IMX_I2C_I2CR); |
| 201 | |||
| 202 | /* Wait controller to be stable */ | ||
| 203 | udelay(50); | ||
| 204 | |||
| 190 | /* Start I2C transaction */ | 205 | /* Start I2C transaction */ |
| 191 | temp = readb(i2c_imx->base + IMX_I2C_I2CR); | 206 | temp = readb(i2c_imx->base + IMX_I2C_I2CR); |
| 192 | temp |= I2CR_MSTA; | 207 | temp |= I2CR_MSTA; |
| 193 | writeb(temp, i2c_imx->base + IMX_I2C_I2CR); | 208 | writeb(temp, i2c_imx->base + IMX_I2C_I2CR); |
| 209 | result = i2c_imx_bus_busy(i2c_imx, 1); | ||
| 210 | if (result) | ||
| 211 | return result; | ||
| 212 | i2c_imx->stopped = 0; | ||
| 213 | |||
| 194 | temp |= I2CR_IIEN | I2CR_MTX | I2CR_TXAK; | 214 | temp |= I2CR_IIEN | I2CR_MTX | I2CR_TXAK; |
| 195 | writeb(temp, i2c_imx->base + IMX_I2C_I2CR); | 215 | writeb(temp, i2c_imx->base + IMX_I2C_I2CR); |
| 216 | return result; | ||
| 196 | } | 217 | } |
| 197 | 218 | ||
| 198 | static void i2c_imx_stop(struct imx_i2c_struct *i2c_imx) | 219 | static void i2c_imx_stop(struct imx_i2c_struct *i2c_imx) |
| 199 | { | 220 | { |
| 200 | unsigned int temp = 0; | 221 | unsigned int temp = 0; |
| 201 | 222 | ||
| 202 | /* Stop I2C transaction */ | 223 | if (!i2c_imx->stopped) { |
| 203 | dev_dbg(&i2c_imx->adapter.dev, "<%s>\n", __func__); | 224 | /* Stop I2C transaction */ |
| 204 | temp = readb(i2c_imx->base + IMX_I2C_I2CR); | 225 | dev_dbg(&i2c_imx->adapter.dev, "<%s>\n", __func__); |
| 205 | temp &= ~I2CR_MSTA; | 226 | temp = readb(i2c_imx->base + IMX_I2C_I2CR); |
| 206 | writeb(temp, i2c_imx->base + IMX_I2C_I2CR); | 227 | temp &= ~(I2CR_MSTA | I2CR_MTX); |
| 207 | /* setup chip registers to defaults */ | 228 | writeb(temp, i2c_imx->base + IMX_I2C_I2CR); |
| 208 | writeb(I2CR_IEN, i2c_imx->base + IMX_I2C_I2CR); | 229 | i2c_imx->stopped = 1; |
| 209 | writeb(0, i2c_imx->base + IMX_I2C_I2SR); | 230 | } |
| 210 | /* | 231 | if (cpu_is_mx1()) { |
| 211 | * This delay caused by an i.MXL hardware bug. | 232 | /* |
| 212 | * If no (or too short) delay, no "STOP" bit will be generated. | 233 | * This delay caused by an i.MXL hardware bug. |
| 213 | */ | 234 | * If no (or too short) delay, no "STOP" bit will be generated. |
| 214 | udelay(i2c_imx->disable_delay); | 235 | */ |
| 236 | udelay(i2c_imx->disable_delay); | ||
| 237 | } | ||
| 238 | |||
| 239 | if (!i2c_imx->stopped) | ||
| 240 | i2c_imx_bus_busy(i2c_imx, 0); | ||
| 241 | |||
| 215 | /* Disable I2C controller */ | 242 | /* Disable I2C controller */ |
| 216 | writeb(0, i2c_imx->base + IMX_I2C_I2CR); | 243 | writeb(0, i2c_imx->base + IMX_I2C_I2CR); |
| 244 | clk_disable(i2c_imx->clk); | ||
| 217 | } | 245 | } |
| 218 | 246 | ||
| 219 | static void __init i2c_imx_set_clk(struct imx_i2c_struct *i2c_imx, | 247 | static void __init i2c_imx_set_clk(struct imx_i2c_struct *i2c_imx, |
| @@ -233,8 +261,8 @@ static void __init i2c_imx_set_clk(struct imx_i2c_struct *i2c_imx, | |||
| 233 | else | 261 | else |
| 234 | for (i = 0; i2c_clk_div[i][0] < div; i++); | 262 | for (i = 0; i2c_clk_div[i][0] < div; i++); |
| 235 | 263 | ||
| 236 | /* Write divider value to register */ | 264 | /* Store divider value */ |
| 237 | writeb(i2c_clk_div[i][1], i2c_imx->base + IMX_I2C_IFDR); | 265 | i2c_imx->ifdr = i2c_clk_div[i][1]; |
| 238 | 266 | ||
| 239 | /* | 267 | /* |
| 240 | * There dummy delay is calculated. | 268 | * There dummy delay is calculated. |
| @@ -341,11 +369,15 @@ static int i2c_imx_read(struct imx_i2c_struct *i2c_imx, struct i2c_msg *msgs) | |||
| 341 | if (result) | 369 | if (result) |
| 342 | return result; | 370 | return result; |
| 343 | if (i == (msgs->len - 1)) { | 371 | if (i == (msgs->len - 1)) { |
| 372 | /* It must generate STOP before read I2DR to prevent | ||
| 373 | controller from generating another clock cycle */ | ||
| 344 | dev_dbg(&i2c_imx->adapter.dev, | 374 | dev_dbg(&i2c_imx->adapter.dev, |
| 345 | "<%s> clear MSTA\n", __func__); | 375 | "<%s> clear MSTA\n", __func__); |
| 346 | temp = readb(i2c_imx->base + IMX_I2C_I2CR); | 376 | temp = readb(i2c_imx->base + IMX_I2C_I2CR); |
| 347 | temp &= ~I2CR_MSTA; | 377 | temp &= ~(I2CR_MSTA | I2CR_MTX); |
| 348 | writeb(temp, i2c_imx->base + IMX_I2C_I2CR); | 378 | writeb(temp, i2c_imx->base + IMX_I2C_I2CR); |
| 379 | i2c_imx_bus_busy(i2c_imx, 0); | ||
| 380 | i2c_imx->stopped = 1; | ||
| 349 | } else if (i == (msgs->len - 2)) { | 381 | } else if (i == (msgs->len - 2)) { |
| 350 | dev_dbg(&i2c_imx->adapter.dev, | 382 | dev_dbg(&i2c_imx->adapter.dev, |
| 351 | "<%s> set TXAK\n", __func__); | 383 | "<%s> set TXAK\n", __func__); |
| @@ -370,14 +402,11 @@ static int i2c_imx_xfer(struct i2c_adapter *adapter, | |||
| 370 | 402 | ||
| 371 | dev_dbg(&i2c_imx->adapter.dev, "<%s>\n", __func__); | 403 | dev_dbg(&i2c_imx->adapter.dev, "<%s>\n", __func__); |
| 372 | 404 | ||
| 373 | /* Check if i2c bus is not busy */ | 405 | /* Start I2C transfer */ |
| 374 | result = i2c_imx_bus_busy(i2c_imx); | 406 | result = i2c_imx_start(i2c_imx); |
| 375 | if (result) | 407 | if (result) |
| 376 | goto fail0; | 408 | goto fail0; |
| 377 | 409 | ||
| 378 | /* Start I2C transfer */ | ||
| 379 | i2c_imx_start(i2c_imx); | ||
| 380 | |||
| 381 | /* read/write data */ | 410 | /* read/write data */ |
| 382 | for (i = 0; i < num; i++) { | 411 | for (i = 0; i < num; i++) { |
| 383 | if (i) { | 412 | if (i) { |
| @@ -386,6 +415,9 @@ static int i2c_imx_xfer(struct i2c_adapter *adapter, | |||
| 386 | temp = readb(i2c_imx->base + IMX_I2C_I2CR); | 415 | temp = readb(i2c_imx->base + IMX_I2C_I2CR); |
| 387 | temp |= I2CR_RSTA; | 416 | temp |= I2CR_RSTA; |
| 388 | writeb(temp, i2c_imx->base + IMX_I2C_I2CR); | 417 | writeb(temp, i2c_imx->base + IMX_I2C_I2CR); |
| 418 | result = i2c_imx_bus_busy(i2c_imx, 1); | ||
| 419 | if (result) | ||
| 420 | goto fail0; | ||
| 389 | } | 421 | } |
| 390 | dev_dbg(&i2c_imx->adapter.dev, | 422 | dev_dbg(&i2c_imx->adapter.dev, |
| 391 | "<%s> transfer message: %d\n", __func__, i); | 423 | "<%s> transfer message: %d\n", __func__, i); |
| @@ -500,7 +532,6 @@ static int __init i2c_imx_probe(struct platform_device *pdev) | |||
| 500 | dev_err(&pdev->dev, "can't get I2C clock\n"); | 532 | dev_err(&pdev->dev, "can't get I2C clock\n"); |
| 501 | goto fail3; | 533 | goto fail3; |
| 502 | } | 534 | } |
| 503 | clk_enable(i2c_imx->clk); | ||
| 504 | 535 | ||
| 505 | /* Request IRQ */ | 536 | /* Request IRQ */ |
| 506 | ret = request_irq(i2c_imx->irq, i2c_imx_isr, 0, pdev->name, i2c_imx); | 537 | ret = request_irq(i2c_imx->irq, i2c_imx_isr, 0, pdev->name, i2c_imx); |
| @@ -549,7 +580,6 @@ static int __init i2c_imx_probe(struct platform_device *pdev) | |||
| 549 | fail5: | 580 | fail5: |
| 550 | free_irq(i2c_imx->irq, i2c_imx); | 581 | free_irq(i2c_imx->irq, i2c_imx); |
| 551 | fail4: | 582 | fail4: |
| 552 | clk_disable(i2c_imx->clk); | ||
| 553 | clk_put(i2c_imx->clk); | 583 | clk_put(i2c_imx->clk); |
| 554 | fail3: | 584 | fail3: |
| 555 | release_mem_region(i2c_imx->res->start, resource_size(res)); | 585 | release_mem_region(i2c_imx->res->start, resource_size(res)); |
| @@ -586,8 +616,6 @@ static int __exit i2c_imx_remove(struct platform_device *pdev) | |||
| 586 | if (pdata && pdata->exit) | 616 | if (pdata && pdata->exit) |
| 587 | pdata->exit(&pdev->dev); | 617 | pdata->exit(&pdev->dev); |
| 588 | 618 | ||
| 589 | /* Disable I2C clock */ | ||
| 590 | clk_disable(i2c_imx->clk); | ||
| 591 | clk_put(i2c_imx->clk); | 619 | clk_put(i2c_imx->clk); |
| 592 | 620 | ||
| 593 | release_mem_region(i2c_imx->res->start, resource_size(i2c_imx->res)); | 621 | release_mem_region(i2c_imx->res->start, resource_size(i2c_imx->res)); |
diff --git a/drivers/i2c/busses/i2c-mpc.c b/drivers/i2c/busses/i2c-mpc.c index d325e86e3103..f627001108b8 100644 --- a/drivers/i2c/busses/i2c-mpc.c +++ b/drivers/i2c/busses/i2c-mpc.c | |||
| @@ -365,9 +365,6 @@ static int mpc_write(struct mpc_i2c *i2c, int target, | |||
| 365 | unsigned timeout = i2c->adap.timeout; | 365 | unsigned timeout = i2c->adap.timeout; |
| 366 | u32 flags = restart ? CCR_RSTA : 0; | 366 | u32 flags = restart ? CCR_RSTA : 0; |
| 367 | 367 | ||
| 368 | /* Start with MEN */ | ||
| 369 | if (!restart) | ||
| 370 | writeccr(i2c, CCR_MEN); | ||
| 371 | /* Start as master */ | 368 | /* Start as master */ |
| 372 | writeccr(i2c, CCR_MIEN | CCR_MEN | CCR_MSTA | CCR_MTX | flags); | 369 | writeccr(i2c, CCR_MIEN | CCR_MEN | CCR_MSTA | CCR_MTX | flags); |
| 373 | /* Write target byte */ | 370 | /* Write target byte */ |
| @@ -396,9 +393,6 @@ static int mpc_read(struct mpc_i2c *i2c, int target, | |||
| 396 | int i, result; | 393 | int i, result; |
| 397 | u32 flags = restart ? CCR_RSTA : 0; | 394 | u32 flags = restart ? CCR_RSTA : 0; |
| 398 | 395 | ||
| 399 | /* Start with MEN */ | ||
| 400 | if (!restart) | ||
| 401 | writeccr(i2c, CCR_MEN); | ||
| 402 | /* Switch to read - restart */ | 396 | /* Switch to read - restart */ |
| 403 | writeccr(i2c, CCR_MIEN | CCR_MEN | CCR_MSTA | CCR_MTX | flags); | 397 | writeccr(i2c, CCR_MIEN | CCR_MEN | CCR_MSTA | CCR_MTX | flags); |
| 404 | /* Write target address byte - this time with the read flag set */ | 398 | /* Write target address byte - this time with the read flag set */ |
| @@ -425,9 +419,9 @@ static int mpc_read(struct mpc_i2c *i2c, int target, | |||
| 425 | /* Generate txack on next to last byte */ | 419 | /* Generate txack on next to last byte */ |
| 426 | if (i == length - 2) | 420 | if (i == length - 2) |
| 427 | writeccr(i2c, CCR_MIEN | CCR_MEN | CCR_MSTA | CCR_TXAK); | 421 | writeccr(i2c, CCR_MIEN | CCR_MEN | CCR_MSTA | CCR_TXAK); |
| 428 | /* Generate stop on last byte */ | 422 | /* Do not generate stop on last byte */ |
| 429 | if (i == length - 1) | 423 | if (i == length - 1) |
| 430 | writeccr(i2c, CCR_MIEN | CCR_MEN | CCR_TXAK); | 424 | writeccr(i2c, CCR_MIEN | CCR_MEN | CCR_MSTA | CCR_MTX); |
| 431 | data[i] = readb(i2c->base + MPC_I2C_DR); | 425 | data[i] = readb(i2c->base + MPC_I2C_DR); |
| 432 | } | 426 | } |
| 433 | 427 | ||
diff --git a/drivers/input/keyboard/atkbd.c b/drivers/input/keyboard/atkbd.c index a6512372c7a3..4452eabbee6d 100644 --- a/drivers/input/keyboard/atkbd.c +++ b/drivers/input/keyboard/atkbd.c | |||
| @@ -233,6 +233,7 @@ struct atkbd { | |||
| 233 | */ | 233 | */ |
| 234 | static void (*atkbd_platform_fixup)(struct atkbd *, const void *data); | 234 | static void (*atkbd_platform_fixup)(struct atkbd *, const void *data); |
| 235 | static void *atkbd_platform_fixup_data; | 235 | static void *atkbd_platform_fixup_data; |
| 236 | static unsigned int (*atkbd_platform_scancode_fixup)(struct atkbd *, unsigned int); | ||
| 236 | 237 | ||
| 237 | static ssize_t atkbd_attr_show_helper(struct device *dev, char *buf, | 238 | static ssize_t atkbd_attr_show_helper(struct device *dev, char *buf, |
| 238 | ssize_t (*handler)(struct atkbd *, char *)); | 239 | ssize_t (*handler)(struct atkbd *, char *)); |
| @@ -393,6 +394,9 @@ static irqreturn_t atkbd_interrupt(struct serio *serio, unsigned char data, | |||
| 393 | 394 | ||
| 394 | input_event(dev, EV_MSC, MSC_RAW, code); | 395 | input_event(dev, EV_MSC, MSC_RAW, code); |
| 395 | 396 | ||
| 397 | if (atkbd_platform_scancode_fixup) | ||
| 398 | code = atkbd_platform_scancode_fixup(atkbd, code); | ||
| 399 | |||
| 396 | if (atkbd->translated) { | 400 | if (atkbd->translated) { |
| 397 | 401 | ||
| 398 | if (atkbd->emul || atkbd_need_xlate(atkbd->xl_bit, code)) { | 402 | if (atkbd->emul || atkbd_need_xlate(atkbd->xl_bit, code)) { |
| @@ -923,6 +927,22 @@ static unsigned int atkbd_volume_forced_release_keys[] = { | |||
| 923 | }; | 927 | }; |
| 924 | 928 | ||
| 925 | /* | 929 | /* |
| 930 | * OQO 01+ multimedia keys (64--66) generate e0 6x upon release whereas | ||
| 931 | * they should be generating e4-e6 (0x80 | code). | ||
| 932 | */ | ||
| 933 | static unsigned int atkbd_oqo_01plus_scancode_fixup(struct atkbd *atkbd, | ||
| 934 | unsigned int code) | ||
| 935 | { | ||
| 936 | if (atkbd->translated && atkbd->emul == 1 && | ||
| 937 | (code == 0x64 || code == 0x65 || code == 0x66)) { | ||
| 938 | atkbd->emul = 0; | ||
| 939 | code |= 0x80; | ||
| 940 | } | ||
| 941 | |||
| 942 | return code; | ||
| 943 | } | ||
| 944 | |||
| 945 | /* | ||
| 926 | * atkbd_set_keycode_table() initializes keyboard's keycode table | 946 | * atkbd_set_keycode_table() initializes keyboard's keycode table |
| 927 | * according to the selected scancode set | 947 | * according to the selected scancode set |
| 928 | */ | 948 | */ |
| @@ -1527,6 +1547,13 @@ static int __init atkbd_setup_forced_release(const struct dmi_system_id *id) | |||
| 1527 | return 0; | 1547 | return 0; |
| 1528 | } | 1548 | } |
| 1529 | 1549 | ||
| 1550 | static int __init atkbd_setup_scancode_fixup(const struct dmi_system_id *id) | ||
| 1551 | { | ||
| 1552 | atkbd_platform_scancode_fixup = id->driver_data; | ||
| 1553 | |||
| 1554 | return 0; | ||
| 1555 | } | ||
| 1556 | |||
| 1530 | static struct dmi_system_id atkbd_dmi_quirk_table[] __initdata = { | 1557 | static struct dmi_system_id atkbd_dmi_quirk_table[] __initdata = { |
| 1531 | { | 1558 | { |
| 1532 | .ident = "Dell Laptop", | 1559 | .ident = "Dell Laptop", |
| @@ -1663,6 +1690,15 @@ static struct dmi_system_id atkbd_dmi_quirk_table[] __initdata = { | |||
| 1663 | .callback = atkbd_setup_forced_release, | 1690 | .callback = atkbd_setup_forced_release, |
| 1664 | .driver_data = atkdb_soltech_ta12_forced_release_keys, | 1691 | .driver_data = atkdb_soltech_ta12_forced_release_keys, |
| 1665 | }, | 1692 | }, |
| 1693 | { | ||
| 1694 | .ident = "OQO Model 01+", | ||
| 1695 | .matches = { | ||
| 1696 | DMI_MATCH(DMI_SYS_VENDOR, "OQO"), | ||
| 1697 | DMI_MATCH(DMI_PRODUCT_NAME, "ZEPTO"), | ||
| 1698 | }, | ||
| 1699 | .callback = atkbd_setup_scancode_fixup, | ||
| 1700 | .driver_data = atkbd_oqo_01plus_scancode_fixup, | ||
| 1701 | }, | ||
| 1666 | { } | 1702 | { } |
| 1667 | }; | 1703 | }; |
| 1668 | 1704 | ||
diff --git a/drivers/input/keyboard/gpio_keys.c b/drivers/input/keyboard/gpio_keys.c index a88aff3816a0..77d130914259 100644 --- a/drivers/input/keyboard/gpio_keys.c +++ b/drivers/input/keyboard/gpio_keys.c | |||
| @@ -147,6 +147,7 @@ static int __devinit gpio_keys_probe(struct platform_device *pdev) | |||
| 147 | } | 147 | } |
| 148 | 148 | ||
| 149 | error = request_irq(irq, gpio_keys_isr, | 149 | error = request_irq(irq, gpio_keys_isr, |
| 150 | IRQF_SHARED | | ||
| 150 | IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING, | 151 | IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING, |
| 151 | button->desc ? button->desc : "gpio_keys", | 152 | button->desc ? button->desc : "gpio_keys", |
| 152 | bdata); | 153 | bdata); |
diff --git a/drivers/input/misc/Kconfig b/drivers/input/misc/Kconfig index 02f4f8f1db6f..a9bb2544b2de 100644 --- a/drivers/input/misc/Kconfig +++ b/drivers/input/misc/Kconfig | |||
| @@ -227,6 +227,7 @@ config INPUT_WINBOND_CIR | |||
| 227 | depends on X86 && PNP | 227 | depends on X86 && PNP |
| 228 | select NEW_LEDS | 228 | select NEW_LEDS |
| 229 | select LEDS_CLASS | 229 | select LEDS_CLASS |
| 230 | select LEDS_TRIGGERS | ||
| 230 | select BITREVERSE | 231 | select BITREVERSE |
| 231 | help | 232 | help |
| 232 | Say Y here if you want to use the IR remote functionality found | 233 | Say Y here if you want to use the IR remote functionality found |
diff --git a/drivers/input/serio/i8042.c b/drivers/input/serio/i8042.c index a31578170ccc..1df02d25aca5 100644 --- a/drivers/input/serio/i8042.c +++ b/drivers/input/serio/i8042.c | |||
| @@ -836,17 +836,32 @@ static int i8042_controller_selftest(void) | |||
| 836 | static int i8042_controller_init(void) | 836 | static int i8042_controller_init(void) |
| 837 | { | 837 | { |
| 838 | unsigned long flags; | 838 | unsigned long flags; |
| 839 | int n = 0; | ||
| 840 | unsigned char ctr[2]; | ||
| 839 | 841 | ||
| 840 | /* | 842 | /* |
| 841 | * Save the CTR for restoral on unload / reboot. | 843 | * Save the CTR for restore on unload / reboot. |
| 842 | */ | 844 | */ |
| 843 | 845 | ||
| 844 | if (i8042_command(&i8042_ctr, I8042_CMD_CTL_RCTR)) { | 846 | do { |
| 845 | printk(KERN_ERR "i8042.c: Can't read CTR while initializing i8042.\n"); | 847 | if (n >= 10) { |
| 846 | return -EIO; | 848 | printk(KERN_ERR |
| 847 | } | 849 | "i8042.c: Unable to get stable CTR read.\n"); |
| 850 | return -EIO; | ||
| 851 | } | ||
| 852 | |||
| 853 | if (n != 0) | ||
| 854 | udelay(50); | ||
| 855 | |||
| 856 | if (i8042_command(&ctr[n++ % 2], I8042_CMD_CTL_RCTR)) { | ||
| 857 | printk(KERN_ERR | ||
| 858 | "i8042.c: Can't read CTR while initializing i8042.\n"); | ||
| 859 | return -EIO; | ||
| 860 | } | ||
| 848 | 861 | ||
| 849 | i8042_initial_ctr = i8042_ctr; | 862 | } while (n < 2 || ctr[0] != ctr[1]); |
| 863 | |||
| 864 | i8042_initial_ctr = i8042_ctr = ctr[0]; | ||
| 850 | 865 | ||
| 851 | /* | 866 | /* |
| 852 | * Disable the keyboard interface and interrupt. | 867 | * Disable the keyboard interface and interrupt. |
| @@ -895,6 +910,12 @@ static int i8042_controller_init(void) | |||
| 895 | return -EIO; | 910 | return -EIO; |
| 896 | } | 911 | } |
| 897 | 912 | ||
| 913 | /* | ||
| 914 | * Flush whatever accumulated while we were disabling keyboard port. | ||
| 915 | */ | ||
| 916 | |||
| 917 | i8042_flush(); | ||
| 918 | |||
| 898 | return 0; | 919 | return 0; |
| 899 | } | 920 | } |
| 900 | 921 | ||
| @@ -914,7 +935,7 @@ static void i8042_controller_reset(void) | |||
| 914 | i8042_ctr |= I8042_CTR_KBDDIS | I8042_CTR_AUXDIS; | 935 | i8042_ctr |= I8042_CTR_KBDDIS | I8042_CTR_AUXDIS; |
| 915 | i8042_ctr &= ~(I8042_CTR_KBDINT | I8042_CTR_AUXINT); | 936 | i8042_ctr &= ~(I8042_CTR_KBDINT | I8042_CTR_AUXINT); |
| 916 | 937 | ||
| 917 | if (i8042_command(&i8042_initial_ctr, I8042_CMD_CTL_WCTR)) | 938 | if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR)) |
| 918 | printk(KERN_WARNING "i8042.c: Can't write CTR while resetting.\n"); | 939 | printk(KERN_WARNING "i8042.c: Can't write CTR while resetting.\n"); |
| 919 | 940 | ||
| 920 | /* | 941 | /* |
diff --git a/drivers/md/Makefile b/drivers/md/Makefile index 1dc4185bd781..e355e7f6a536 100644 --- a/drivers/md/Makefile +++ b/drivers/md/Makefile | |||
| @@ -46,7 +46,7 @@ obj-$(CONFIG_DM_LOG_USERSPACE) += dm-log-userspace.o | |||
| 46 | obj-$(CONFIG_DM_ZERO) += dm-zero.o | 46 | obj-$(CONFIG_DM_ZERO) += dm-zero.o |
| 47 | 47 | ||
| 48 | quiet_cmd_unroll = UNROLL $@ | 48 | quiet_cmd_unroll = UNROLL $@ |
| 49 | cmd_unroll = $(PERL) $(srctree)/$(src)/unroll.pl $(UNROLL) \ | 49 | cmd_unroll = $(AWK) -f$(srctree)/$(src)/unroll.awk -vN=$(UNROLL) \ |
| 50 | < $< > $@ || ( rm -f $@ && exit 1 ) | 50 | < $< > $@ || ( rm -f $@ && exit 1 ) |
| 51 | 51 | ||
| 52 | ifeq ($(CONFIG_ALTIVEC),y) | 52 | ifeq ($(CONFIG_ALTIVEC),y) |
| @@ -59,56 +59,56 @@ endif | |||
| 59 | 59 | ||
| 60 | targets += raid6int1.c | 60 | targets += raid6int1.c |
| 61 | $(obj)/raid6int1.c: UNROLL := 1 | 61 | $(obj)/raid6int1.c: UNROLL := 1 |
| 62 | $(obj)/raid6int1.c: $(src)/raid6int.uc $(src)/unroll.pl FORCE | 62 | $(obj)/raid6int1.c: $(src)/raid6int.uc $(src)/unroll.awk FORCE |
| 63 | $(call if_changed,unroll) | 63 | $(call if_changed,unroll) |
| 64 | 64 | ||
| 65 | targets += raid6int2.c | 65 | targets += raid6int2.c |
| 66 | $(obj)/raid6int2.c: UNROLL := 2 | 66 | $(obj)/raid6int2.c: UNROLL := 2 |
| 67 | $(obj)/raid6int2.c: $(src)/raid6int.uc $(src)/unroll.pl FORCE | 67 | $(obj)/raid6int2.c: $(src)/raid6int.uc $(src)/unroll.awk FORCE |
| 68 | $(call if_changed,unroll) | 68 | $(call if_changed,unroll) |
| 69 | 69 | ||
| 70 | targets += raid6int4.c | 70 | targets += raid6int4.c |
| 71 | $(obj)/raid6int4.c: UNROLL := 4 | 71 | $(obj)/raid6int4.c: UNROLL := 4 |
| 72 | $(obj)/raid6int4.c: $(src)/raid6int.uc $(src)/unroll.pl FORCE | 72 | $(obj)/raid6int4.c: $(src)/raid6int.uc $(src)/unroll.awk FORCE |
| 73 | $(call if_changed,unroll) | 73 | $(call if_changed,unroll) |
| 74 | 74 | ||
| 75 | targets += raid6int8.c | 75 | targets += raid6int8.c |
| 76 | $(obj)/raid6int8.c: UNROLL := 8 | 76 | $(obj)/raid6int8.c: UNROLL := 8 |
| 77 | $(obj)/raid6int8.c: $(src)/raid6int.uc $(src)/unroll.pl FORCE | 77 | $(obj)/raid6int8.c: $(src)/raid6int.uc $(src)/unroll.awk FORCE |
| 78 | $(call if_changed,unroll) | 78 | $(call if_changed,unroll) |
| 79 | 79 | ||
| 80 | targets += raid6int16.c | 80 | targets += raid6int16.c |
| 81 | $(obj)/raid6int16.c: UNROLL := 16 | 81 | $(obj)/raid6int16.c: UNROLL := 16 |
| 82 | $(obj)/raid6int16.c: $(src)/raid6int.uc $(src)/unroll.pl FORCE | 82 | $(obj)/raid6int16.c: $(src)/raid6int.uc $(src)/unroll.awk FORCE |
| 83 | $(call if_changed,unroll) | 83 | $(call if_changed,unroll) |
| 84 | 84 | ||
| 85 | targets += raid6int32.c | 85 | targets += raid6int32.c |
| 86 | $(obj)/raid6int32.c: UNROLL := 32 | 86 | $(obj)/raid6int32.c: UNROLL := 32 |
| 87 | $(obj)/raid6int32.c: $(src)/raid6int.uc $(src)/unroll.pl FORCE | 87 | $(obj)/raid6int32.c: $(src)/raid6int.uc $(src)/unroll.awk FORCE |
| 88 | $(call if_changed,unroll) | 88 | $(call if_changed,unroll) |
| 89 | 89 | ||
| 90 | CFLAGS_raid6altivec1.o += $(altivec_flags) | 90 | CFLAGS_raid6altivec1.o += $(altivec_flags) |
| 91 | targets += raid6altivec1.c | 91 | targets += raid6altivec1.c |
| 92 | $(obj)/raid6altivec1.c: UNROLL := 1 | 92 | $(obj)/raid6altivec1.c: UNROLL := 1 |
| 93 | $(obj)/raid6altivec1.c: $(src)/raid6altivec.uc $(src)/unroll.pl FORCE | 93 | $(obj)/raid6altivec1.c: $(src)/raid6altivec.uc $(src)/unroll.awk FORCE |
| 94 | $(call if_changed,unroll) | 94 | $(call if_changed,unroll) |
| 95 | 95 | ||
| 96 | CFLAGS_raid6altivec2.o += $(altivec_flags) | 96 | CFLAGS_raid6altivec2.o += $(altivec_flags) |
| 97 | targets += raid6altivec2.c | 97 | targets += raid6altivec2.c |
| 98 | $(obj)/raid6altivec2.c: UNROLL := 2 | 98 | $(obj)/raid6altivec2.c: UNROLL := 2 |
| 99 | $(obj)/raid6altivec2.c: $(src)/raid6altivec.uc $(src)/unroll.pl FORCE | 99 | $(obj)/raid6altivec2.c: $(src)/raid6altivec.uc $(src)/unroll.awk FORCE |
| 100 | $(call if_changed,unroll) | 100 | $(call if_changed,unroll) |
| 101 | 101 | ||
| 102 | CFLAGS_raid6altivec4.o += $(altivec_flags) | 102 | CFLAGS_raid6altivec4.o += $(altivec_flags) |
| 103 | targets += raid6altivec4.c | 103 | targets += raid6altivec4.c |
| 104 | $(obj)/raid6altivec4.c: UNROLL := 4 | 104 | $(obj)/raid6altivec4.c: UNROLL := 4 |
| 105 | $(obj)/raid6altivec4.c: $(src)/raid6altivec.uc $(src)/unroll.pl FORCE | 105 | $(obj)/raid6altivec4.c: $(src)/raid6altivec.uc $(src)/unroll.awk FORCE |
| 106 | $(call if_changed,unroll) | 106 | $(call if_changed,unroll) |
| 107 | 107 | ||
| 108 | CFLAGS_raid6altivec8.o += $(altivec_flags) | 108 | CFLAGS_raid6altivec8.o += $(altivec_flags) |
| 109 | targets += raid6altivec8.c | 109 | targets += raid6altivec8.c |
| 110 | $(obj)/raid6altivec8.c: UNROLL := 8 | 110 | $(obj)/raid6altivec8.c: UNROLL := 8 |
| 111 | $(obj)/raid6altivec8.c: $(src)/raid6altivec.uc $(src)/unroll.pl FORCE | 111 | $(obj)/raid6altivec8.c: $(src)/raid6altivec.uc $(src)/unroll.awk FORCE |
| 112 | $(call if_changed,unroll) | 112 | $(call if_changed,unroll) |
| 113 | 113 | ||
| 114 | quiet_cmd_mktable = TABLE $@ | 114 | quiet_cmd_mktable = TABLE $@ |
diff --git a/drivers/md/bitmap.c b/drivers/md/bitmap.c index 6986b0059d23..60e2b322db11 100644 --- a/drivers/md/bitmap.c +++ b/drivers/md/bitmap.c | |||
| @@ -1624,10 +1624,11 @@ int bitmap_create(mddev_t *mddev) | |||
| 1624 | bitmap->offset = mddev->bitmap_offset; | 1624 | bitmap->offset = mddev->bitmap_offset; |
| 1625 | if (file) { | 1625 | if (file) { |
| 1626 | get_file(file); | 1626 | get_file(file); |
| 1627 | do_sync_mapping_range(file->f_mapping, 0, LLONG_MAX, | 1627 | /* As future accesses to this file will use bmap, |
| 1628 | SYNC_FILE_RANGE_WAIT_BEFORE | | 1628 | * and bypass the page cache, we must sync the file |
| 1629 | SYNC_FILE_RANGE_WRITE | | 1629 | * first. |
| 1630 | SYNC_FILE_RANGE_WAIT_AFTER); | 1630 | */ |
| 1631 | vfs_fsync(file, file->f_dentry, 1); | ||
| 1631 | } | 1632 | } |
| 1632 | /* read superblock from bitmap file (this sets bitmap->chunksize) */ | 1633 | /* read superblock from bitmap file (this sets bitmap->chunksize) */ |
| 1633 | err = bitmap_read_sb(bitmap); | 1634 | err = bitmap_read_sb(bitmap); |
diff --git a/drivers/md/md.c b/drivers/md/md.c index 26ba42a79129..10eb1fce975e 100644 --- a/drivers/md/md.c +++ b/drivers/md/md.c | |||
| @@ -2631,7 +2631,7 @@ static void analyze_sbs(mddev_t * mddev) | |||
| 2631 | rdev->desc_nr = i++; | 2631 | rdev->desc_nr = i++; |
| 2632 | rdev->raid_disk = rdev->desc_nr; | 2632 | rdev->raid_disk = rdev->desc_nr; |
| 2633 | set_bit(In_sync, &rdev->flags); | 2633 | set_bit(In_sync, &rdev->flags); |
| 2634 | } else if (rdev->raid_disk >= mddev->raid_disks) { | 2634 | } else if (rdev->raid_disk >= (mddev->raid_disks - min(0, mddev->delta_disks))) { |
| 2635 | rdev->raid_disk = -1; | 2635 | rdev->raid_disk = -1; |
| 2636 | clear_bit(In_sync, &rdev->flags); | 2636 | clear_bit(In_sync, &rdev->flags); |
| 2637 | } | 2637 | } |
diff --git a/drivers/md/raid1.c b/drivers/md/raid1.c index d1b9bd5fd4f6..a053423785c9 100644 --- a/drivers/md/raid1.c +++ b/drivers/md/raid1.c | |||
| @@ -64,7 +64,7 @@ static void * r1bio_pool_alloc(gfp_t gfp_flags, void *data) | |||
| 64 | 64 | ||
| 65 | /* allocate a r1bio with room for raid_disks entries in the bios array */ | 65 | /* allocate a r1bio with room for raid_disks entries in the bios array */ |
| 66 | r1_bio = kzalloc(size, gfp_flags); | 66 | r1_bio = kzalloc(size, gfp_flags); |
| 67 | if (!r1_bio) | 67 | if (!r1_bio && pi->mddev) |
| 68 | unplug_slaves(pi->mddev); | 68 | unplug_slaves(pi->mddev); |
| 69 | 69 | ||
| 70 | return r1_bio; | 70 | return r1_bio; |
| @@ -1683,6 +1683,7 @@ static void raid1d(mddev_t *mddev) | |||
| 1683 | generic_make_request(bio); | 1683 | generic_make_request(bio); |
| 1684 | } | 1684 | } |
| 1685 | } | 1685 | } |
| 1686 | cond_resched(); | ||
| 1686 | } | 1687 | } |
| 1687 | if (unplug) | 1688 | if (unplug) |
| 1688 | unplug_slaves(mddev); | 1689 | unplug_slaves(mddev); |
| @@ -1978,13 +1979,14 @@ static int run(mddev_t *mddev) | |||
| 1978 | conf->poolinfo = kmalloc(sizeof(*conf->poolinfo), GFP_KERNEL); | 1979 | conf->poolinfo = kmalloc(sizeof(*conf->poolinfo), GFP_KERNEL); |
| 1979 | if (!conf->poolinfo) | 1980 | if (!conf->poolinfo) |
| 1980 | goto out_no_mem; | 1981 | goto out_no_mem; |
| 1981 | conf->poolinfo->mddev = mddev; | 1982 | conf->poolinfo->mddev = NULL; |
| 1982 | conf->poolinfo->raid_disks = mddev->raid_disks; | 1983 | conf->poolinfo->raid_disks = mddev->raid_disks; |
| 1983 | conf->r1bio_pool = mempool_create(NR_RAID1_BIOS, r1bio_pool_alloc, | 1984 | conf->r1bio_pool = mempool_create(NR_RAID1_BIOS, r1bio_pool_alloc, |
| 1984 | r1bio_pool_free, | 1985 | r1bio_pool_free, |
| 1985 | conf->poolinfo); | 1986 | conf->poolinfo); |
| 1986 | if (!conf->r1bio_pool) | 1987 | if (!conf->r1bio_pool) |
| 1987 | goto out_no_mem; | 1988 | goto out_no_mem; |
| 1989 | conf->poolinfo->mddev = mddev; | ||
| 1988 | 1990 | ||
| 1989 | spin_lock_init(&conf->device_lock); | 1991 | spin_lock_init(&conf->device_lock); |
| 1990 | mddev->queue->queue_lock = &conf->device_lock; | 1992 | mddev->queue->queue_lock = &conf->device_lock; |
diff --git a/drivers/md/raid10.c b/drivers/md/raid10.c index 51c4c5c4d87a..c2cb7b87b440 100644 --- a/drivers/md/raid10.c +++ b/drivers/md/raid10.c | |||
| @@ -68,7 +68,7 @@ static void * r10bio_pool_alloc(gfp_t gfp_flags, void *data) | |||
| 68 | 68 | ||
| 69 | /* allocate a r10bio with room for raid_disks entries in the bios array */ | 69 | /* allocate a r10bio with room for raid_disks entries in the bios array */ |
| 70 | r10_bio = kzalloc(size, gfp_flags); | 70 | r10_bio = kzalloc(size, gfp_flags); |
| 71 | if (!r10_bio) | 71 | if (!r10_bio && conf->mddev) |
| 72 | unplug_slaves(conf->mddev); | 72 | unplug_slaves(conf->mddev); |
| 73 | 73 | ||
| 74 | return r10_bio; | 74 | return r10_bio; |
| @@ -1632,6 +1632,7 @@ static void raid10d(mddev_t *mddev) | |||
| 1632 | generic_make_request(bio); | 1632 | generic_make_request(bio); |
| 1633 | } | 1633 | } |
| 1634 | } | 1634 | } |
| 1635 | cond_resched(); | ||
| 1635 | } | 1636 | } |
| 1636 | if (unplug) | 1637 | if (unplug) |
| 1637 | unplug_slaves(mddev); | 1638 | unplug_slaves(mddev); |
| @@ -2095,7 +2096,6 @@ static int run(mddev_t *mddev) | |||
| 2095 | if (!conf->tmppage) | 2096 | if (!conf->tmppage) |
| 2096 | goto out_free_conf; | 2097 | goto out_free_conf; |
| 2097 | 2098 | ||
| 2098 | conf->mddev = mddev; | ||
| 2099 | conf->raid_disks = mddev->raid_disks; | 2099 | conf->raid_disks = mddev->raid_disks; |
| 2100 | conf->near_copies = nc; | 2100 | conf->near_copies = nc; |
| 2101 | conf->far_copies = fc; | 2101 | conf->far_copies = fc; |
| @@ -2132,6 +2132,7 @@ static int run(mddev_t *mddev) | |||
| 2132 | goto out_free_conf; | 2132 | goto out_free_conf; |
| 2133 | } | 2133 | } |
| 2134 | 2134 | ||
| 2135 | conf->mddev = mddev; | ||
| 2135 | spin_lock_init(&conf->device_lock); | 2136 | spin_lock_init(&conf->device_lock); |
| 2136 | mddev->queue->queue_lock = &conf->device_lock; | 2137 | mddev->queue->queue_lock = &conf->device_lock; |
| 2137 | 2138 | ||
diff --git a/drivers/md/raid5.c b/drivers/md/raid5.c index 94829804ab7f..81abefc172d9 100644 --- a/drivers/md/raid5.c +++ b/drivers/md/raid5.c | |||
| @@ -156,13 +156,16 @@ static inline int raid6_next_disk(int disk, int raid_disks) | |||
| 156 | static int raid6_idx_to_slot(int idx, struct stripe_head *sh, | 156 | static int raid6_idx_to_slot(int idx, struct stripe_head *sh, |
| 157 | int *count, int syndrome_disks) | 157 | int *count, int syndrome_disks) |
| 158 | { | 158 | { |
| 159 | int slot; | 159 | int slot = *count; |
| 160 | 160 | ||
| 161 | if (sh->ddf_layout) | ||
| 162 | (*count)++; | ||
| 161 | if (idx == sh->pd_idx) | 163 | if (idx == sh->pd_idx) |
| 162 | return syndrome_disks; | 164 | return syndrome_disks; |
| 163 | if (idx == sh->qd_idx) | 165 | if (idx == sh->qd_idx) |
| 164 | return syndrome_disks + 1; | 166 | return syndrome_disks + 1; |
| 165 | slot = (*count)++; | 167 | if (!sh->ddf_layout) |
| 168 | (*count)++; | ||
| 166 | return slot; | 169 | return slot; |
| 167 | } | 170 | } |
| 168 | 171 | ||
| @@ -717,7 +720,7 @@ static int set_syndrome_sources(struct page **srcs, struct stripe_head *sh) | |||
| 717 | int i; | 720 | int i; |
| 718 | 721 | ||
| 719 | for (i = 0; i < disks; i++) | 722 | for (i = 0; i < disks; i++) |
| 720 | srcs[i] = (void *)raid6_empty_zero_page; | 723 | srcs[i] = NULL; |
| 721 | 724 | ||
| 722 | count = 0; | 725 | count = 0; |
| 723 | i = d0_idx; | 726 | i = d0_idx; |
| @@ -727,9 +730,8 @@ static int set_syndrome_sources(struct page **srcs, struct stripe_head *sh) | |||
| 727 | srcs[slot] = sh->dev[i].page; | 730 | srcs[slot] = sh->dev[i].page; |
| 728 | i = raid6_next_disk(i, disks); | 731 | i = raid6_next_disk(i, disks); |
| 729 | } while (i != d0_idx); | 732 | } while (i != d0_idx); |
| 730 | BUG_ON(count != syndrome_disks); | ||
| 731 | 733 | ||
| 732 | return count; | 734 | return syndrome_disks; |
| 733 | } | 735 | } |
| 734 | 736 | ||
| 735 | static struct dma_async_tx_descriptor * | 737 | static struct dma_async_tx_descriptor * |
| @@ -814,7 +816,7 @@ ops_run_compute6_2(struct stripe_head *sh, struct raid5_percpu *percpu) | |||
| 814 | * slot number conversion for 'faila' and 'failb' | 816 | * slot number conversion for 'faila' and 'failb' |
| 815 | */ | 817 | */ |
| 816 | for (i = 0; i < disks ; i++) | 818 | for (i = 0; i < disks ; i++) |
| 817 | blocks[i] = (void *)raid6_empty_zero_page; | 819 | blocks[i] = NULL; |
| 818 | count = 0; | 820 | count = 0; |
| 819 | i = d0_idx; | 821 | i = d0_idx; |
| 820 | do { | 822 | do { |
| @@ -828,7 +830,6 @@ ops_run_compute6_2(struct stripe_head *sh, struct raid5_percpu *percpu) | |||
| 828 | failb = slot; | 830 | failb = slot; |
| 829 | i = raid6_next_disk(i, disks); | 831 | i = raid6_next_disk(i, disks); |
| 830 | } while (i != d0_idx); | 832 | } while (i != d0_idx); |
| 831 | BUG_ON(count != syndrome_disks); | ||
| 832 | 833 | ||
| 833 | BUG_ON(faila == failb); | 834 | BUG_ON(faila == failb); |
| 834 | if (failb < faila) | 835 | if (failb < faila) |
| @@ -845,7 +846,7 @@ ops_run_compute6_2(struct stripe_head *sh, struct raid5_percpu *percpu) | |||
| 845 | init_async_submit(&submit, ASYNC_TX_FENCE, NULL, | 846 | init_async_submit(&submit, ASYNC_TX_FENCE, NULL, |
| 846 | ops_complete_compute, sh, | 847 | ops_complete_compute, sh, |
| 847 | to_addr_conv(sh, percpu)); | 848 | to_addr_conv(sh, percpu)); |
| 848 | return async_gen_syndrome(blocks, 0, count+2, | 849 | return async_gen_syndrome(blocks, 0, syndrome_disks+2, |
| 849 | STRIPE_SIZE, &submit); | 850 | STRIPE_SIZE, &submit); |
| 850 | } else { | 851 | } else { |
| 851 | struct page *dest; | 852 | struct page *dest; |
| @@ -1139,7 +1140,7 @@ static void ops_run_check_pq(struct stripe_head *sh, struct raid5_percpu *percpu | |||
| 1139 | &sh->ops.zero_sum_result, percpu->spare_page, &submit); | 1140 | &sh->ops.zero_sum_result, percpu->spare_page, &submit); |
| 1140 | } | 1141 | } |
| 1141 | 1142 | ||
| 1142 | static void raid_run_ops(struct stripe_head *sh, unsigned long ops_request) | 1143 | static void __raid_run_ops(struct stripe_head *sh, unsigned long ops_request) |
| 1143 | { | 1144 | { |
| 1144 | int overlap_clear = 0, i, disks = sh->disks; | 1145 | int overlap_clear = 0, i, disks = sh->disks; |
| 1145 | struct dma_async_tx_descriptor *tx = NULL; | 1146 | struct dma_async_tx_descriptor *tx = NULL; |
| @@ -1204,22 +1205,55 @@ static void raid_run_ops(struct stripe_head *sh, unsigned long ops_request) | |||
| 1204 | put_cpu(); | 1205 | put_cpu(); |
| 1205 | } | 1206 | } |
| 1206 | 1207 | ||
| 1208 | #ifdef CONFIG_MULTICORE_RAID456 | ||
| 1209 | static void async_run_ops(void *param, async_cookie_t cookie) | ||
| 1210 | { | ||
| 1211 | struct stripe_head *sh = param; | ||
| 1212 | unsigned long ops_request = sh->ops.request; | ||
| 1213 | |||
| 1214 | clear_bit_unlock(STRIPE_OPS_REQ_PENDING, &sh->state); | ||
| 1215 | wake_up(&sh->ops.wait_for_ops); | ||
| 1216 | |||
| 1217 | __raid_run_ops(sh, ops_request); | ||
| 1218 | release_stripe(sh); | ||
| 1219 | } | ||
| 1220 | |||
| 1221 | static void raid_run_ops(struct stripe_head *sh, unsigned long ops_request) | ||
| 1222 | { | ||
| 1223 | /* since handle_stripe can be called outside of raid5d context | ||
| 1224 | * we need to ensure sh->ops.request is de-staged before another | ||
| 1225 | * request arrives | ||
| 1226 | */ | ||
| 1227 | wait_event(sh->ops.wait_for_ops, | ||
| 1228 | !test_and_set_bit_lock(STRIPE_OPS_REQ_PENDING, &sh->state)); | ||
| 1229 | sh->ops.request = ops_request; | ||
| 1230 | |||
| 1231 | atomic_inc(&sh->count); | ||
| 1232 | async_schedule(async_run_ops, sh); | ||
| 1233 | } | ||
| 1234 | #else | ||
| 1235 | #define raid_run_ops __raid_run_ops | ||
| 1236 | #endif | ||
| 1237 | |||
| 1207 | static int grow_one_stripe(raid5_conf_t *conf) | 1238 | static int grow_one_stripe(raid5_conf_t *conf) |
| 1208 | { | 1239 | { |
| 1209 | struct stripe_head *sh; | 1240 | struct stripe_head *sh; |
| 1241 | int disks = max(conf->raid_disks, conf->previous_raid_disks); | ||
| 1210 | sh = kmem_cache_alloc(conf->slab_cache, GFP_KERNEL); | 1242 | sh = kmem_cache_alloc(conf->slab_cache, GFP_KERNEL); |
| 1211 | if (!sh) | 1243 | if (!sh) |
| 1212 | return 0; | 1244 | return 0; |
| 1213 | memset(sh, 0, sizeof(*sh) + (conf->raid_disks-1)*sizeof(struct r5dev)); | 1245 | memset(sh, 0, sizeof(*sh) + (disks-1)*sizeof(struct r5dev)); |
| 1214 | sh->raid_conf = conf; | 1246 | sh->raid_conf = conf; |
| 1215 | spin_lock_init(&sh->lock); | 1247 | spin_lock_init(&sh->lock); |
| 1248 | #ifdef CONFIG_MULTICORE_RAID456 | ||
| 1249 | init_waitqueue_head(&sh->ops.wait_for_ops); | ||
| 1250 | #endif | ||
| 1216 | 1251 | ||
| 1217 | if (grow_buffers(sh, conf->raid_disks)) { | 1252 | if (grow_buffers(sh, disks)) { |
| 1218 | shrink_buffers(sh, conf->raid_disks); | 1253 | shrink_buffers(sh, disks); |
| 1219 | kmem_cache_free(conf->slab_cache, sh); | 1254 | kmem_cache_free(conf->slab_cache, sh); |
| 1220 | return 0; | 1255 | return 0; |
| 1221 | } | 1256 | } |
| 1222 | sh->disks = conf->raid_disks; | ||
| 1223 | /* we just created an active stripe so... */ | 1257 | /* we just created an active stripe so... */ |
| 1224 | atomic_set(&sh->count, 1); | 1258 | atomic_set(&sh->count, 1); |
| 1225 | atomic_inc(&conf->active_stripes); | 1259 | atomic_inc(&conf->active_stripes); |
| @@ -1231,7 +1265,7 @@ static int grow_one_stripe(raid5_conf_t *conf) | |||
| 1231 | static int grow_stripes(raid5_conf_t *conf, int num) | 1265 | static int grow_stripes(raid5_conf_t *conf, int num) |
| 1232 | { | 1266 | { |
| 1233 | struct kmem_cache *sc; | 1267 | struct kmem_cache *sc; |
| 1234 | int devs = conf->raid_disks; | 1268 | int devs = max(conf->raid_disks, conf->previous_raid_disks); |
| 1235 | 1269 | ||
| 1236 | sprintf(conf->cache_name[0], | 1270 | sprintf(conf->cache_name[0], |
| 1237 | "raid%d-%s", conf->level, mdname(conf->mddev)); | 1271 | "raid%d-%s", conf->level, mdname(conf->mddev)); |
| @@ -1329,6 +1363,9 @@ static int resize_stripes(raid5_conf_t *conf, int newsize) | |||
| 1329 | 1363 | ||
| 1330 | nsh->raid_conf = conf; | 1364 | nsh->raid_conf = conf; |
| 1331 | spin_lock_init(&nsh->lock); | 1365 | spin_lock_init(&nsh->lock); |
| 1366 | #ifdef CONFIG_MULTICORE_RAID456 | ||
| 1367 | init_waitqueue_head(&nsh->ops.wait_for_ops); | ||
| 1368 | #endif | ||
| 1332 | 1369 | ||
| 1333 | list_add(&nsh->lru, &newstripes); | 1370 | list_add(&nsh->lru, &newstripes); |
| 1334 | } | 1371 | } |
| @@ -1899,10 +1936,15 @@ static sector_t compute_blocknr(struct stripe_head *sh, int i, int previous) | |||
| 1899 | case ALGORITHM_PARITY_N: | 1936 | case ALGORITHM_PARITY_N: |
| 1900 | break; | 1937 | break; |
| 1901 | case ALGORITHM_ROTATING_N_CONTINUE: | 1938 | case ALGORITHM_ROTATING_N_CONTINUE: |
| 1939 | /* Like left_symmetric, but P is before Q */ | ||
| 1902 | if (sh->pd_idx == 0) | 1940 | if (sh->pd_idx == 0) |
| 1903 | i--; /* P D D D Q */ | 1941 | i--; /* P D D D Q */ |
| 1904 | else if (i > sh->pd_idx) | 1942 | else { |
| 1905 | i -= 2; /* D D Q P D */ | 1943 | /* D D Q P D */ |
| 1944 | if (i < sh->pd_idx) | ||
| 1945 | i += raid_disks; | ||
| 1946 | i -= (sh->pd_idx + 1); | ||
| 1947 | } | ||
| 1906 | break; | 1948 | break; |
| 1907 | case ALGORITHM_LEFT_ASYMMETRIC_6: | 1949 | case ALGORITHM_LEFT_ASYMMETRIC_6: |
| 1908 | case ALGORITHM_RIGHT_ASYMMETRIC_6: | 1950 | case ALGORITHM_RIGHT_ASYMMETRIC_6: |
| @@ -2896,7 +2938,7 @@ static void handle_stripe_expansion(raid5_conf_t *conf, struct stripe_head *sh, | |||
| 2896 | * | 2938 | * |
| 2897 | */ | 2939 | */ |
| 2898 | 2940 | ||
| 2899 | static bool handle_stripe5(struct stripe_head *sh) | 2941 | static void handle_stripe5(struct stripe_head *sh) |
| 2900 | { | 2942 | { |
| 2901 | raid5_conf_t *conf = sh->raid_conf; | 2943 | raid5_conf_t *conf = sh->raid_conf; |
| 2902 | int disks = sh->disks, i; | 2944 | int disks = sh->disks, i; |
| @@ -3167,11 +3209,9 @@ static bool handle_stripe5(struct stripe_head *sh) | |||
| 3167 | ops_run_io(sh, &s); | 3209 | ops_run_io(sh, &s); |
| 3168 | 3210 | ||
| 3169 | return_io(return_bi); | 3211 | return_io(return_bi); |
| 3170 | |||
| 3171 | return blocked_rdev == NULL; | ||
| 3172 | } | 3212 | } |
| 3173 | 3213 | ||
| 3174 | static bool handle_stripe6(struct stripe_head *sh) | 3214 | static void handle_stripe6(struct stripe_head *sh) |
| 3175 | { | 3215 | { |
| 3176 | raid5_conf_t *conf = sh->raid_conf; | 3216 | raid5_conf_t *conf = sh->raid_conf; |
| 3177 | int disks = sh->disks; | 3217 | int disks = sh->disks; |
| @@ -3455,17 +3495,14 @@ static bool handle_stripe6(struct stripe_head *sh) | |||
| 3455 | ops_run_io(sh, &s); | 3495 | ops_run_io(sh, &s); |
| 3456 | 3496 | ||
| 3457 | return_io(return_bi); | 3497 | return_io(return_bi); |
| 3458 | |||
| 3459 | return blocked_rdev == NULL; | ||
| 3460 | } | 3498 | } |
| 3461 | 3499 | ||
| 3462 | /* returns true if the stripe was handled */ | 3500 | static void handle_stripe(struct stripe_head *sh) |
| 3463 | static bool handle_stripe(struct stripe_head *sh) | ||
| 3464 | { | 3501 | { |
| 3465 | if (sh->raid_conf->level == 6) | 3502 | if (sh->raid_conf->level == 6) |
| 3466 | return handle_stripe6(sh); | 3503 | handle_stripe6(sh); |
| 3467 | else | 3504 | else |
| 3468 | return handle_stripe5(sh); | 3505 | handle_stripe5(sh); |
| 3469 | } | 3506 | } |
| 3470 | 3507 | ||
| 3471 | static void raid5_activate_delayed(raid5_conf_t *conf) | 3508 | static void raid5_activate_delayed(raid5_conf_t *conf) |
| @@ -3503,9 +3540,10 @@ static void unplug_slaves(mddev_t *mddev) | |||
| 3503 | { | 3540 | { |
| 3504 | raid5_conf_t *conf = mddev->private; | 3541 | raid5_conf_t *conf = mddev->private; |
| 3505 | int i; | 3542 | int i; |
| 3543 | int devs = max(conf->raid_disks, conf->previous_raid_disks); | ||
| 3506 | 3544 | ||
| 3507 | rcu_read_lock(); | 3545 | rcu_read_lock(); |
| 3508 | for (i = 0; i < conf->raid_disks; i++) { | 3546 | for (i = 0; i < devs; i++) { |
| 3509 | mdk_rdev_t *rdev = rcu_dereference(conf->disks[i].rdev); | 3547 | mdk_rdev_t *rdev = rcu_dereference(conf->disks[i].rdev); |
| 3510 | if (rdev && !test_bit(Faulty, &rdev->flags) && atomic_read(&rdev->nr_pending)) { | 3548 | if (rdev && !test_bit(Faulty, &rdev->flags) && atomic_read(&rdev->nr_pending)) { |
| 3511 | struct request_queue *r_queue = bdev_get_queue(rdev->bdev); | 3549 | struct request_queue *r_queue = bdev_get_queue(rdev->bdev); |
| @@ -4277,9 +4315,7 @@ static inline sector_t sync_request(mddev_t *mddev, sector_t sector_nr, int *ski | |||
| 4277 | clear_bit(STRIPE_INSYNC, &sh->state); | 4315 | clear_bit(STRIPE_INSYNC, &sh->state); |
| 4278 | spin_unlock(&sh->lock); | 4316 | spin_unlock(&sh->lock); |
| 4279 | 4317 | ||
| 4280 | /* wait for any blocked device to be handled */ | 4318 | handle_stripe(sh); |
| 4281 | while (unlikely(!handle_stripe(sh))) | ||
| 4282 | ; | ||
| 4283 | release_stripe(sh); | 4319 | release_stripe(sh); |
| 4284 | 4320 | ||
| 4285 | return STRIPE_SECTORS; | 4321 | return STRIPE_SECTORS; |
| @@ -4349,37 +4385,6 @@ static int retry_aligned_read(raid5_conf_t *conf, struct bio *raid_bio) | |||
| 4349 | return handled; | 4385 | return handled; |
| 4350 | } | 4386 | } |
| 4351 | 4387 | ||
| 4352 | #ifdef CONFIG_MULTICORE_RAID456 | ||
| 4353 | static void __process_stripe(void *param, async_cookie_t cookie) | ||
| 4354 | { | ||
| 4355 | struct stripe_head *sh = param; | ||
| 4356 | |||
| 4357 | handle_stripe(sh); | ||
| 4358 | release_stripe(sh); | ||
| 4359 | } | ||
| 4360 | |||
| 4361 | static void process_stripe(struct stripe_head *sh, struct list_head *domain) | ||
| 4362 | { | ||
| 4363 | async_schedule_domain(__process_stripe, sh, domain); | ||
| 4364 | } | ||
| 4365 | |||
| 4366 | static void synchronize_stripe_processing(struct list_head *domain) | ||
| 4367 | { | ||
| 4368 | async_synchronize_full_domain(domain); | ||
| 4369 | } | ||
| 4370 | #else | ||
| 4371 | static void process_stripe(struct stripe_head *sh, struct list_head *domain) | ||
| 4372 | { | ||
| 4373 | handle_stripe(sh); | ||
| 4374 | release_stripe(sh); | ||
| 4375 | cond_resched(); | ||
| 4376 | } | ||
| 4377 | |||
| 4378 | static void synchronize_stripe_processing(struct list_head *domain) | ||
| 4379 | { | ||
| 4380 | } | ||
| 4381 | #endif | ||
| 4382 | |||
| 4383 | 4388 | ||
| 4384 | /* | 4389 | /* |
| 4385 | * This is our raid5 kernel thread. | 4390 | * This is our raid5 kernel thread. |
| @@ -4393,7 +4398,6 @@ static void raid5d(mddev_t *mddev) | |||
| 4393 | struct stripe_head *sh; | 4398 | struct stripe_head *sh; |
| 4394 | raid5_conf_t *conf = mddev->private; | 4399 | raid5_conf_t *conf = mddev->private; |
| 4395 | int handled; | 4400 | int handled; |
| 4396 | LIST_HEAD(raid_domain); | ||
| 4397 | 4401 | ||
| 4398 | pr_debug("+++ raid5d active\n"); | 4402 | pr_debug("+++ raid5d active\n"); |
| 4399 | 4403 | ||
| @@ -4430,7 +4434,9 @@ static void raid5d(mddev_t *mddev) | |||
| 4430 | spin_unlock_irq(&conf->device_lock); | 4434 | spin_unlock_irq(&conf->device_lock); |
| 4431 | 4435 | ||
| 4432 | handled++; | 4436 | handled++; |
| 4433 | process_stripe(sh, &raid_domain); | 4437 | handle_stripe(sh); |
| 4438 | release_stripe(sh); | ||
| 4439 | cond_resched(); | ||
| 4434 | 4440 | ||
| 4435 | spin_lock_irq(&conf->device_lock); | 4441 | spin_lock_irq(&conf->device_lock); |
| 4436 | } | 4442 | } |
| @@ -4438,7 +4444,6 @@ static void raid5d(mddev_t *mddev) | |||
| 4438 | 4444 | ||
| 4439 | spin_unlock_irq(&conf->device_lock); | 4445 | spin_unlock_irq(&conf->device_lock); |
| 4440 | 4446 | ||
| 4441 | synchronize_stripe_processing(&raid_domain); | ||
| 4442 | async_tx_issue_pending_all(); | 4447 | async_tx_issue_pending_all(); |
| 4443 | unplug_slaves(mddev); | 4448 | unplug_slaves(mddev); |
| 4444 | 4449 | ||
| @@ -4558,13 +4563,9 @@ raid5_size(mddev_t *mddev, sector_t sectors, int raid_disks) | |||
| 4558 | 4563 | ||
| 4559 | if (!sectors) | 4564 | if (!sectors) |
| 4560 | sectors = mddev->dev_sectors; | 4565 | sectors = mddev->dev_sectors; |
| 4561 | if (!raid_disks) { | 4566 | if (!raid_disks) |
| 4562 | /* size is defined by the smallest of previous and new size */ | 4567 | /* size is defined by the smallest of previous and new size */ |
| 4563 | if (conf->raid_disks < conf->previous_raid_disks) | 4568 | raid_disks = min(conf->raid_disks, conf->previous_raid_disks); |
| 4564 | raid_disks = conf->raid_disks; | ||
| 4565 | else | ||
| 4566 | raid_disks = conf->previous_raid_disks; | ||
| 4567 | } | ||
| 4568 | 4569 | ||
| 4569 | sectors &= ~((sector_t)mddev->chunk_sectors - 1); | 4570 | sectors &= ~((sector_t)mddev->chunk_sectors - 1); |
| 4570 | sectors &= ~((sector_t)mddev->new_chunk_sectors - 1); | 4571 | sectors &= ~((sector_t)mddev->new_chunk_sectors - 1); |
| @@ -4665,7 +4666,7 @@ static int raid5_alloc_percpu(raid5_conf_t *conf) | |||
| 4665 | } | 4666 | } |
| 4666 | per_cpu_ptr(conf->percpu, cpu)->spare_page = spare_page; | 4667 | per_cpu_ptr(conf->percpu, cpu)->spare_page = spare_page; |
| 4667 | } | 4668 | } |
| 4668 | scribble = kmalloc(scribble_len(conf->raid_disks), GFP_KERNEL); | 4669 | scribble = kmalloc(conf->scribble_len, GFP_KERNEL); |
| 4669 | if (!scribble) { | 4670 | if (!scribble) { |
| 4670 | err = -ENOMEM; | 4671 | err = -ENOMEM; |
| 4671 | break; | 4672 | break; |
| @@ -4686,7 +4687,7 @@ static int raid5_alloc_percpu(raid5_conf_t *conf) | |||
| 4686 | static raid5_conf_t *setup_conf(mddev_t *mddev) | 4687 | static raid5_conf_t *setup_conf(mddev_t *mddev) |
| 4687 | { | 4688 | { |
| 4688 | raid5_conf_t *conf; | 4689 | raid5_conf_t *conf; |
| 4689 | int raid_disk, memory; | 4690 | int raid_disk, memory, max_disks; |
| 4690 | mdk_rdev_t *rdev; | 4691 | mdk_rdev_t *rdev; |
| 4691 | struct disk_info *disk; | 4692 | struct disk_info *disk; |
| 4692 | 4693 | ||
| @@ -4722,15 +4723,28 @@ static raid5_conf_t *setup_conf(mddev_t *mddev) | |||
| 4722 | conf = kzalloc(sizeof(raid5_conf_t), GFP_KERNEL); | 4723 | conf = kzalloc(sizeof(raid5_conf_t), GFP_KERNEL); |
| 4723 | if (conf == NULL) | 4724 | if (conf == NULL) |
| 4724 | goto abort; | 4725 | goto abort; |
| 4726 | spin_lock_init(&conf->device_lock); | ||
| 4727 | init_waitqueue_head(&conf->wait_for_stripe); | ||
| 4728 | init_waitqueue_head(&conf->wait_for_overlap); | ||
| 4729 | INIT_LIST_HEAD(&conf->handle_list); | ||
| 4730 | INIT_LIST_HEAD(&conf->hold_list); | ||
| 4731 | INIT_LIST_HEAD(&conf->delayed_list); | ||
| 4732 | INIT_LIST_HEAD(&conf->bitmap_list); | ||
| 4733 | INIT_LIST_HEAD(&conf->inactive_list); | ||
| 4734 | atomic_set(&conf->active_stripes, 0); | ||
| 4735 | atomic_set(&conf->preread_active_stripes, 0); | ||
| 4736 | atomic_set(&conf->active_aligned_reads, 0); | ||
| 4737 | conf->bypass_threshold = BYPASS_THRESHOLD; | ||
| 4725 | 4738 | ||
| 4726 | conf->raid_disks = mddev->raid_disks; | 4739 | conf->raid_disks = mddev->raid_disks; |
| 4727 | conf->scribble_len = scribble_len(conf->raid_disks); | ||
| 4728 | if (mddev->reshape_position == MaxSector) | 4740 | if (mddev->reshape_position == MaxSector) |
| 4729 | conf->previous_raid_disks = mddev->raid_disks; | 4741 | conf->previous_raid_disks = mddev->raid_disks; |
| 4730 | else | 4742 | else |
| 4731 | conf->previous_raid_disks = mddev->raid_disks - mddev->delta_disks; | 4743 | conf->previous_raid_disks = mddev->raid_disks - mddev->delta_disks; |
| 4744 | max_disks = max(conf->raid_disks, conf->previous_raid_disks); | ||
| 4745 | conf->scribble_len = scribble_len(max_disks); | ||
| 4732 | 4746 | ||
| 4733 | conf->disks = kzalloc(conf->raid_disks * sizeof(struct disk_info), | 4747 | conf->disks = kzalloc(max_disks * sizeof(struct disk_info), |
| 4734 | GFP_KERNEL); | 4748 | GFP_KERNEL); |
| 4735 | if (!conf->disks) | 4749 | if (!conf->disks) |
| 4736 | goto abort; | 4750 | goto abort; |
| @@ -4744,24 +4758,11 @@ static raid5_conf_t *setup_conf(mddev_t *mddev) | |||
| 4744 | if (raid5_alloc_percpu(conf) != 0) | 4758 | if (raid5_alloc_percpu(conf) != 0) |
| 4745 | goto abort; | 4759 | goto abort; |
| 4746 | 4760 | ||
| 4747 | spin_lock_init(&conf->device_lock); | ||
| 4748 | init_waitqueue_head(&conf->wait_for_stripe); | ||
| 4749 | init_waitqueue_head(&conf->wait_for_overlap); | ||
| 4750 | INIT_LIST_HEAD(&conf->handle_list); | ||
| 4751 | INIT_LIST_HEAD(&conf->hold_list); | ||
| 4752 | INIT_LIST_HEAD(&conf->delayed_list); | ||
| 4753 | INIT_LIST_HEAD(&conf->bitmap_list); | ||
| 4754 | INIT_LIST_HEAD(&conf->inactive_list); | ||
| 4755 | atomic_set(&conf->active_stripes, 0); | ||
| 4756 | atomic_set(&conf->preread_active_stripes, 0); | ||
| 4757 | atomic_set(&conf->active_aligned_reads, 0); | ||
| 4758 | conf->bypass_threshold = BYPASS_THRESHOLD; | ||
| 4759 | |||
| 4760 | pr_debug("raid5: run(%s) called.\n", mdname(mddev)); | 4761 | pr_debug("raid5: run(%s) called.\n", mdname(mddev)); |
| 4761 | 4762 | ||
| 4762 | list_for_each_entry(rdev, &mddev->disks, same_set) { | 4763 | list_for_each_entry(rdev, &mddev->disks, same_set) { |
| 4763 | raid_disk = rdev->raid_disk; | 4764 | raid_disk = rdev->raid_disk; |
| 4764 | if (raid_disk >= conf->raid_disks | 4765 | if (raid_disk >= max_disks |
| 4765 | || raid_disk < 0) | 4766 | || raid_disk < 0) |
| 4766 | continue; | 4767 | continue; |
| 4767 | disk = conf->disks + raid_disk; | 4768 | disk = conf->disks + raid_disk; |
| @@ -4793,7 +4794,7 @@ static raid5_conf_t *setup_conf(mddev_t *mddev) | |||
| 4793 | } | 4794 | } |
| 4794 | 4795 | ||
| 4795 | memory = conf->max_nr_stripes * (sizeof(struct stripe_head) + | 4796 | memory = conf->max_nr_stripes * (sizeof(struct stripe_head) + |
| 4796 | conf->raid_disks * ((sizeof(struct bio) + PAGE_SIZE))) / 1024; | 4797 | max_disks * ((sizeof(struct bio) + PAGE_SIZE))) / 1024; |
| 4797 | if (grow_stripes(conf, conf->max_nr_stripes)) { | 4798 | if (grow_stripes(conf, conf->max_nr_stripes)) { |
| 4798 | printk(KERN_ERR | 4799 | printk(KERN_ERR |
| 4799 | "raid5: couldn't allocate %dkB for buffers\n", memory); | 4800 | "raid5: couldn't allocate %dkB for buffers\n", memory); |
| @@ -4918,7 +4919,8 @@ static int run(mddev_t *mddev) | |||
| 4918 | test_bit(In_sync, &rdev->flags)) | 4919 | test_bit(In_sync, &rdev->flags)) |
| 4919 | working_disks++; | 4920 | working_disks++; |
| 4920 | 4921 | ||
| 4921 | mddev->degraded = conf->raid_disks - working_disks; | 4922 | mddev->degraded = (max(conf->raid_disks, conf->previous_raid_disks) |
| 4923 | - working_disks); | ||
| 4922 | 4924 | ||
| 4923 | if (mddev->degraded > conf->max_degraded) { | 4925 | if (mddev->degraded > conf->max_degraded) { |
| 4924 | printk(KERN_ERR "raid5: not enough operational devices for %s" | 4926 | printk(KERN_ERR "raid5: not enough operational devices for %s" |
diff --git a/drivers/md/raid5.h b/drivers/md/raid5.h index 2390e0e83daf..dd708359b451 100644 --- a/drivers/md/raid5.h +++ b/drivers/md/raid5.h | |||
| @@ -214,12 +214,20 @@ struct stripe_head { | |||
| 214 | int disks; /* disks in stripe */ | 214 | int disks; /* disks in stripe */ |
| 215 | enum check_states check_state; | 215 | enum check_states check_state; |
| 216 | enum reconstruct_states reconstruct_state; | 216 | enum reconstruct_states reconstruct_state; |
| 217 | /* stripe_operations | 217 | /** |
| 218 | * struct stripe_operations | ||
| 218 | * @target - STRIPE_OP_COMPUTE_BLK target | 219 | * @target - STRIPE_OP_COMPUTE_BLK target |
| 220 | * @target2 - 2nd compute target in the raid6 case | ||
| 221 | * @zero_sum_result - P and Q verification flags | ||
| 222 | * @request - async service request flags for raid_run_ops | ||
| 219 | */ | 223 | */ |
| 220 | struct stripe_operations { | 224 | struct stripe_operations { |
| 221 | int target, target2; | 225 | int target, target2; |
| 222 | enum sum_check_flags zero_sum_result; | 226 | enum sum_check_flags zero_sum_result; |
| 227 | #ifdef CONFIG_MULTICORE_RAID456 | ||
| 228 | unsigned long request; | ||
| 229 | wait_queue_head_t wait_for_ops; | ||
| 230 | #endif | ||
| 223 | } ops; | 231 | } ops; |
| 224 | struct r5dev { | 232 | struct r5dev { |
| 225 | struct bio req; | 233 | struct bio req; |
| @@ -294,6 +302,8 @@ struct r6_state { | |||
| 294 | #define STRIPE_FULL_WRITE 13 /* all blocks are set to be overwritten */ | 302 | #define STRIPE_FULL_WRITE 13 /* all blocks are set to be overwritten */ |
| 295 | #define STRIPE_BIOFILL_RUN 14 | 303 | #define STRIPE_BIOFILL_RUN 14 |
| 296 | #define STRIPE_COMPUTE_RUN 15 | 304 | #define STRIPE_COMPUTE_RUN 15 |
| 305 | #define STRIPE_OPS_REQ_PENDING 16 | ||
| 306 | |||
| 297 | /* | 307 | /* |
| 298 | * Operation request flags | 308 | * Operation request flags |
| 299 | */ | 309 | */ |
| @@ -478,7 +488,7 @@ static inline int algorithm_valid_raid6(int layout) | |||
| 478 | { | 488 | { |
| 479 | return (layout >= 0 && layout <= 5) | 489 | return (layout >= 0 && layout <= 5) |
| 480 | || | 490 | || |
| 481 | (layout == 8 || layout == 10) | 491 | (layout >= 8 && layout <= 10) |
| 482 | || | 492 | || |
| 483 | (layout >= 16 && layout <= 20); | 493 | (layout >= 16 && layout <= 20); |
| 484 | } | 494 | } |
diff --git a/drivers/md/raid6altivec.uc b/drivers/md/raid6altivec.uc index 699dfeee4944..2654d5c854be 100644 --- a/drivers/md/raid6altivec.uc +++ b/drivers/md/raid6altivec.uc | |||
| @@ -15,7 +15,7 @@ | |||
| 15 | * | 15 | * |
| 16 | * $#-way unrolled portable integer math RAID-6 instruction set | 16 | * $#-way unrolled portable integer math RAID-6 instruction set |
| 17 | * | 17 | * |
| 18 | * This file is postprocessed using unroll.pl | 18 | * This file is postprocessed using unroll.awk |
| 19 | * | 19 | * |
| 20 | * <benh> hpa: in process, | 20 | * <benh> hpa: in process, |
| 21 | * you can just "steal" the vec unit with enable_kernel_altivec() (but | 21 | * you can just "steal" the vec unit with enable_kernel_altivec() (but |
diff --git a/drivers/md/raid6int.uc b/drivers/md/raid6int.uc index f9bf9cba357f..d1e276a14fab 100644 --- a/drivers/md/raid6int.uc +++ b/drivers/md/raid6int.uc | |||
| @@ -15,7 +15,7 @@ | |||
| 15 | * | 15 | * |
| 16 | * $#-way unrolled portable integer math RAID-6 instruction set | 16 | * $#-way unrolled portable integer math RAID-6 instruction set |
| 17 | * | 17 | * |
| 18 | * This file is postprocessed using unroll.pl | 18 | * This file is postprocessed using unroll.awk |
| 19 | */ | 19 | */ |
| 20 | 20 | ||
| 21 | #include <linux/raid/pq.h> | 21 | #include <linux/raid/pq.h> |
diff --git a/drivers/md/raid6test/Makefile b/drivers/md/raid6test/Makefile index 58ffdf4f5161..2874cbef529d 100644 --- a/drivers/md/raid6test/Makefile +++ b/drivers/md/raid6test/Makefile | |||
| @@ -7,7 +7,7 @@ CC = gcc | |||
| 7 | OPTFLAGS = -O2 # Adjust as desired | 7 | OPTFLAGS = -O2 # Adjust as desired |
| 8 | CFLAGS = -I.. -I ../../../include -g $(OPTFLAGS) | 8 | CFLAGS = -I.. -I ../../../include -g $(OPTFLAGS) |
| 9 | LD = ld | 9 | LD = ld |
| 10 | PERL = perl | 10 | AWK = awk |
| 11 | AR = ar | 11 | AR = ar |
| 12 | RANLIB = ranlib | 12 | RANLIB = ranlib |
| 13 | 13 | ||
| @@ -35,35 +35,35 @@ raid6.a: raid6int1.o raid6int2.o raid6int4.o raid6int8.o raid6int16.o \ | |||
| 35 | raid6test: test.c raid6.a | 35 | raid6test: test.c raid6.a |
| 36 | $(CC) $(CFLAGS) -o raid6test $^ | 36 | $(CC) $(CFLAGS) -o raid6test $^ |
| 37 | 37 | ||
| 38 | raid6altivec1.c: raid6altivec.uc ../unroll.pl | 38 | raid6altivec1.c: raid6altivec.uc ../unroll.awk |
| 39 | $(PERL) ../unroll.pl 1 < raid6altivec.uc > $@ | 39 | $(AWK) ../unroll.awk -vN=1 < raid6altivec.uc > $@ |
| 40 | 40 | ||
| 41 | raid6altivec2.c: raid6altivec.uc ../unroll.pl | 41 | raid6altivec2.c: raid6altivec.uc ../unroll.awk |
| 42 | $(PERL) ../unroll.pl 2 < raid6altivec.uc > $@ | 42 | $(AWK) ../unroll.awk -vN=2 < raid6altivec.uc > $@ |
| 43 | 43 | ||
| 44 | raid6altivec4.c: raid6altivec.uc ../unroll.pl | 44 | raid6altivec4.c: raid6altivec.uc ../unroll.awk |
| 45 | $(PERL) ../unroll.pl 4 < raid6altivec.uc > $@ | 45 | $(AWK) ../unroll.awk -vN=4 < raid6altivec.uc > $@ |
| 46 | 46 | ||
| 47 | raid6altivec8.c: raid6altivec.uc ../unroll.pl | 47 | raid6altivec8.c: raid6altivec.uc ../unroll.awk |
| 48 | $(PERL) ../unroll.pl 8 < raid6altivec.uc > $@ | 48 | $(AWK) ../unroll.awk -vN=8 < raid6altivec.uc > $@ |
| 49 | 49 | ||
| 50 | raid6int1.c: raid6int.uc ../unroll.pl | 50 | raid6int1.c: raid6int.uc ../unroll.awk |
| 51 | $(PERL) ../unroll.pl 1 < raid6int.uc > $@ | 51 | $(AWK) ../unroll.awk -vN=1 < raid6int.uc > $@ |
| 52 | 52 | ||
| 53 | raid6int2.c: raid6int.uc ../unroll.pl | 53 | raid6int2.c: raid6int.uc ../unroll.awk |
| 54 | $(PERL) ../unroll.pl 2 < raid6int.uc > $@ | 54 | $(AWK) ../unroll.awk -vN=2 < raid6int.uc > $@ |
| 55 | 55 | ||
| 56 | raid6int4.c: raid6int.uc ../unroll.pl | 56 | raid6int4.c: raid6int.uc ../unroll.awk |
| 57 | $(PERL) ../unroll.pl 4 < raid6int.uc > $@ | 57 | $(AWK) ../unroll.awk -vN=4 < raid6int.uc > $@ |
| 58 | 58 | ||
| 59 | raid6int8.c: raid6int.uc ../unroll.pl | 59 | raid6int8.c: raid6int.uc ../unroll.awk |
| 60 | $(PERL) ../unroll.pl 8 < raid6int.uc > $@ | 60 | $(AWK) ../unroll.awk -vN=8 < raid6int.uc > $@ |
| 61 | 61 | ||
| 62 | raid6int16.c: raid6int.uc ../unroll.pl | 62 | raid6int16.c: raid6int.uc ../unroll.awk |
| 63 | $(PERL) ../unroll.pl 16 < raid6int.uc > $@ | 63 | $(AWK) ../unroll.awk -vN=16 < raid6int.uc > $@ |
| 64 | 64 | ||
| 65 | raid6int32.c: raid6int.uc ../unroll.pl | 65 | raid6int32.c: raid6int.uc ../unroll.awk |
| 66 | $(PERL) ../unroll.pl 32 < raid6int.uc > $@ | 66 | $(AWK) ../unroll.awk -vN=32 < raid6int.uc > $@ |
| 67 | 67 | ||
| 68 | raid6tables.c: mktables | 68 | raid6tables.c: mktables |
| 69 | ./mktables > raid6tables.c | 69 | ./mktables > raid6tables.c |
diff --git a/drivers/md/unroll.awk b/drivers/md/unroll.awk new file mode 100644 index 000000000000..c6aa03631df8 --- /dev/null +++ b/drivers/md/unroll.awk | |||
| @@ -0,0 +1,20 @@ | |||
| 1 | |||
| 2 | # This filter requires one command line option of form -vN=n | ||
| 3 | # where n must be a decimal number. | ||
| 4 | # | ||
| 5 | # Repeat each input line containing $$ n times, replacing $$ with 0...n-1. | ||
| 6 | # Replace each $# with n, and each $* with a single $. | ||
| 7 | |||
| 8 | BEGIN { | ||
| 9 | n = N + 0 | ||
| 10 | } | ||
| 11 | { | ||
| 12 | if (/\$\$/) { rep = n } else { rep = 1 } | ||
| 13 | for (i = 0; i < rep; ++i) { | ||
| 14 | tmp = $0 | ||
| 15 | gsub(/\$\$/, i, tmp) | ||
| 16 | gsub(/\$\#/, n, tmp) | ||
| 17 | gsub(/\$\*/, "$", tmp) | ||
| 18 | print tmp | ||
| 19 | } | ||
| 20 | } | ||
diff --git a/drivers/md/unroll.pl b/drivers/md/unroll.pl deleted file mode 100644 index 3acc710a20ea..000000000000 --- a/drivers/md/unroll.pl +++ /dev/null | |||
| @@ -1,24 +0,0 @@ | |||
| 1 | #!/usr/bin/perl | ||
| 2 | # | ||
| 3 | # Take a piece of C code and for each line which contains the sequence $$ | ||
| 4 | # repeat n times with $ replaced by 0...n-1; the sequence $# is replaced | ||
| 5 | # by the unrolling factor, and $* with a single $ | ||
| 6 | # | ||
| 7 | |||
| 8 | ($n) = @ARGV; | ||
| 9 | $n += 0; | ||
| 10 | |||
| 11 | while ( defined($line = <STDIN>) ) { | ||
| 12 | if ( $line =~ /\$\$/ ) { | ||
| 13 | $rep = $n; | ||
| 14 | } else { | ||
| 15 | $rep = 1; | ||
| 16 | } | ||
| 17 | for ( $i = 0 ; $i < $rep ; $i++ ) { | ||
| 18 | $tmp = $line; | ||
| 19 | $tmp =~ s/\$\$/$i/g; | ||
| 20 | $tmp =~ s/\$\#/$n/g; | ||
| 21 | $tmp =~ s/\$\*/\$/g; | ||
| 22 | print $tmp; | ||
| 23 | } | ||
| 24 | } | ||
diff --git a/drivers/misc/sgi-gru/gruprocfs.c b/drivers/misc/sgi-gru/gruprocfs.c index ccd4408a26c7..3f2375c5ba5b 100644 --- a/drivers/misc/sgi-gru/gruprocfs.c +++ b/drivers/misc/sgi-gru/gruprocfs.c | |||
| @@ -161,14 +161,15 @@ static int options_show(struct seq_file *s, void *p) | |||
| 161 | static ssize_t options_write(struct file *file, const char __user *userbuf, | 161 | static ssize_t options_write(struct file *file, const char __user *userbuf, |
| 162 | size_t count, loff_t *data) | 162 | size_t count, loff_t *data) |
| 163 | { | 163 | { |
| 164 | unsigned long val; | 164 | char buf[20]; |
| 165 | char buf[80]; | ||
| 166 | 165 | ||
| 167 | if (strncpy_from_user(buf, userbuf, sizeof(buf) - 1) < 0) | 166 | if (count >= sizeof(buf)) |
| 167 | return -EINVAL; | ||
| 168 | if (copy_from_user(buf, userbuf, count)) | ||
| 168 | return -EFAULT; | 169 | return -EFAULT; |
| 169 | buf[count - 1] = '\0'; | 170 | buf[count] = '\0'; |
| 170 | if (!strict_strtoul(buf, 10, &val)) | 171 | if (strict_strtoul(buf, 0, &gru_options)) |
| 171 | gru_options = val; | 172 | return -EINVAL; |
| 172 | 173 | ||
| 173 | return count; | 174 | return count; |
| 174 | } | 175 | } |
diff --git a/drivers/net/e100.c b/drivers/net/e100.c index 5d2f48f02251..3c29a20b751e 100644 --- a/drivers/net/e100.c +++ b/drivers/net/e100.c | |||
| @@ -1427,19 +1427,31 @@ static int e100_phy_init(struct nic *nic) | |||
| 1427 | } else | 1427 | } else |
| 1428 | DPRINTK(HW, DEBUG, "phy_addr = %d\n", nic->mii.phy_id); | 1428 | DPRINTK(HW, DEBUG, "phy_addr = %d\n", nic->mii.phy_id); |
| 1429 | 1429 | ||
| 1430 | /* Isolate all the PHY ids */ | ||
| 1431 | for (addr = 0; addr < 32; addr++) | ||
| 1432 | mdio_write(netdev, addr, MII_BMCR, BMCR_ISOLATE); | ||
| 1433 | /* Select the discovered PHY */ | ||
| 1434 | bmcr &= ~BMCR_ISOLATE; | ||
| 1435 | mdio_write(netdev, nic->mii.phy_id, MII_BMCR, bmcr); | ||
| 1436 | |||
| 1437 | /* Get phy ID */ | 1430 | /* Get phy ID */ |
| 1438 | id_lo = mdio_read(netdev, nic->mii.phy_id, MII_PHYSID1); | 1431 | id_lo = mdio_read(netdev, nic->mii.phy_id, MII_PHYSID1); |
| 1439 | id_hi = mdio_read(netdev, nic->mii.phy_id, MII_PHYSID2); | 1432 | id_hi = mdio_read(netdev, nic->mii.phy_id, MII_PHYSID2); |
| 1440 | nic->phy = (u32)id_hi << 16 | (u32)id_lo; | 1433 | nic->phy = (u32)id_hi << 16 | (u32)id_lo; |
| 1441 | DPRINTK(HW, DEBUG, "phy ID = 0x%08X\n", nic->phy); | 1434 | DPRINTK(HW, DEBUG, "phy ID = 0x%08X\n", nic->phy); |
| 1442 | 1435 | ||
| 1436 | /* Select the phy and isolate the rest */ | ||
| 1437 | for (addr = 0; addr < 32; addr++) { | ||
| 1438 | if (addr != nic->mii.phy_id) { | ||
| 1439 | mdio_write(netdev, addr, MII_BMCR, BMCR_ISOLATE); | ||
| 1440 | } else if (nic->phy != phy_82552_v) { | ||
| 1441 | bmcr = mdio_read(netdev, addr, MII_BMCR); | ||
| 1442 | mdio_write(netdev, addr, MII_BMCR, | ||
| 1443 | bmcr & ~BMCR_ISOLATE); | ||
| 1444 | } | ||
| 1445 | } | ||
| 1446 | /* | ||
| 1447 | * Workaround for 82552: | ||
| 1448 | * Clear the ISOLATE bit on selected phy_id last (mirrored on all | ||
| 1449 | * other phy_id's) using bmcr value from addr discovery loop above. | ||
| 1450 | */ | ||
| 1451 | if (nic->phy == phy_82552_v) | ||
| 1452 | mdio_write(netdev, nic->mii.phy_id, MII_BMCR, | ||
| 1453 | bmcr & ~BMCR_ISOLATE); | ||
| 1454 | |||
| 1443 | /* Handle National tx phys */ | 1455 | /* Handle National tx phys */ |
| 1444 | #define NCS_PHY_MODEL_MASK 0xFFF0FFFF | 1456 | #define NCS_PHY_MODEL_MASK 0xFFF0FFFF |
| 1445 | if ((nic->phy & NCS_PHY_MODEL_MASK) == phy_nsc_tx) { | 1457 | if ((nic->phy & NCS_PHY_MODEL_MASK) == phy_nsc_tx) { |
diff --git a/drivers/net/e1000e/defines.h b/drivers/net/e1000e/defines.h index c0f185beb8bc..1190167a8b3d 100644 --- a/drivers/net/e1000e/defines.h +++ b/drivers/net/e1000e/defines.h | |||
| @@ -76,6 +76,7 @@ | |||
| 76 | /* Extended Device Control */ | 76 | /* Extended Device Control */ |
| 77 | #define E1000_CTRL_EXT_SDP7_DATA 0x00000080 /* Value of SW Definable Pin 7 */ | 77 | #define E1000_CTRL_EXT_SDP7_DATA 0x00000080 /* Value of SW Definable Pin 7 */ |
| 78 | #define E1000_CTRL_EXT_EE_RST 0x00002000 /* Reinitialize from EEPROM */ | 78 | #define E1000_CTRL_EXT_EE_RST 0x00002000 /* Reinitialize from EEPROM */ |
| 79 | #define E1000_CTRL_EXT_SPD_BYPS 0x00008000 /* Speed Select Bypass */ | ||
| 79 | #define E1000_CTRL_EXT_RO_DIS 0x00020000 /* Relaxed Ordering disable */ | 80 | #define E1000_CTRL_EXT_RO_DIS 0x00020000 /* Relaxed Ordering disable */ |
| 80 | #define E1000_CTRL_EXT_DMA_DYN_CLK_EN 0x00080000 /* DMA Dynamic Clock Gating */ | 81 | #define E1000_CTRL_EXT_DMA_DYN_CLK_EN 0x00080000 /* DMA Dynamic Clock Gating */ |
| 81 | #define E1000_CTRL_EXT_LINK_MODE_MASK 0x00C00000 | 82 | #define E1000_CTRL_EXT_LINK_MODE_MASK 0x00C00000 |
| @@ -347,6 +348,7 @@ | |||
| 347 | /* Extended Configuration Control and Size */ | 348 | /* Extended Configuration Control and Size */ |
| 348 | #define E1000_EXTCNF_CTRL_MDIO_SW_OWNERSHIP 0x00000020 | 349 | #define E1000_EXTCNF_CTRL_MDIO_SW_OWNERSHIP 0x00000020 |
| 349 | #define E1000_EXTCNF_CTRL_LCD_WRITE_ENABLE 0x00000001 | 350 | #define E1000_EXTCNF_CTRL_LCD_WRITE_ENABLE 0x00000001 |
| 351 | #define E1000_EXTCNF_CTRL_OEM_WRITE_ENABLE 0x00000008 | ||
| 350 | #define E1000_EXTCNF_CTRL_SWFLAG 0x00000020 | 352 | #define E1000_EXTCNF_CTRL_SWFLAG 0x00000020 |
| 351 | #define E1000_EXTCNF_SIZE_EXT_PCIE_LENGTH_MASK 0x00FF0000 | 353 | #define E1000_EXTCNF_SIZE_EXT_PCIE_LENGTH_MASK 0x00FF0000 |
| 352 | #define E1000_EXTCNF_SIZE_EXT_PCIE_LENGTH_SHIFT 16 | 354 | #define E1000_EXTCNF_SIZE_EXT_PCIE_LENGTH_SHIFT 16 |
diff --git a/drivers/net/e1000e/e1000.h b/drivers/net/e1000e/e1000.h index 405a144ebcad..189dfa2d6c76 100644 --- a/drivers/net/e1000e/e1000.h +++ b/drivers/net/e1000e/e1000.h | |||
| @@ -141,6 +141,20 @@ struct e1000_info; | |||
| 141 | #define HV_TNCRS_UPPER PHY_REG(778, 29) /* Transmit with no CRS */ | 141 | #define HV_TNCRS_UPPER PHY_REG(778, 29) /* Transmit with no CRS */ |
| 142 | #define HV_TNCRS_LOWER PHY_REG(778, 30) | 142 | #define HV_TNCRS_LOWER PHY_REG(778, 30) |
| 143 | 143 | ||
| 144 | /* BM PHY Copper Specific Status */ | ||
| 145 | #define BM_CS_STATUS 17 | ||
| 146 | #define BM_CS_STATUS_LINK_UP 0x0400 | ||
| 147 | #define BM_CS_STATUS_RESOLVED 0x0800 | ||
| 148 | #define BM_CS_STATUS_SPEED_MASK 0xC000 | ||
| 149 | #define BM_CS_STATUS_SPEED_1000 0x8000 | ||
| 150 | |||
| 151 | /* 82577 Mobile Phy Status Register */ | ||
| 152 | #define HV_M_STATUS 26 | ||
| 153 | #define HV_M_STATUS_AUTONEG_COMPLETE 0x1000 | ||
| 154 | #define HV_M_STATUS_SPEED_MASK 0x0300 | ||
| 155 | #define HV_M_STATUS_SPEED_1000 0x0200 | ||
| 156 | #define HV_M_STATUS_LINK_UP 0x0040 | ||
| 157 | |||
| 144 | enum e1000_boards { | 158 | enum e1000_boards { |
| 145 | board_82571, | 159 | board_82571, |
| 146 | board_82572, | 160 | board_82572, |
diff --git a/drivers/net/e1000e/hw.h b/drivers/net/e1000e/hw.h index 7b05cf47f7f5..aaea41ef794d 100644 --- a/drivers/net/e1000e/hw.h +++ b/drivers/net/e1000e/hw.h | |||
| @@ -903,6 +903,7 @@ struct e1000_shadow_ram { | |||
| 903 | struct e1000_dev_spec_ich8lan { | 903 | struct e1000_dev_spec_ich8lan { |
| 904 | bool kmrn_lock_loss_workaround_enabled; | 904 | bool kmrn_lock_loss_workaround_enabled; |
| 905 | struct e1000_shadow_ram shadow_ram[E1000_ICH8_SHADOW_RAM_WORDS]; | 905 | struct e1000_shadow_ram shadow_ram[E1000_ICH8_SHADOW_RAM_WORDS]; |
| 906 | bool nvm_k1_enabled; | ||
| 906 | }; | 907 | }; |
| 907 | 908 | ||
| 908 | struct e1000_hw { | 909 | struct e1000_hw { |
diff --git a/drivers/net/e1000e/ich8lan.c b/drivers/net/e1000e/ich8lan.c index b6388b9535fd..51ddb04ab195 100644 --- a/drivers/net/e1000e/ich8lan.c +++ b/drivers/net/e1000e/ich8lan.c | |||
| @@ -124,11 +124,25 @@ | |||
| 124 | 124 | ||
| 125 | #define SW_FLAG_TIMEOUT 1000 /* SW Semaphore flag timeout in milliseconds */ | 125 | #define SW_FLAG_TIMEOUT 1000 /* SW Semaphore flag timeout in milliseconds */ |
| 126 | 126 | ||
| 127 | /* SMBus Address Phy Register */ | ||
| 128 | #define HV_SMB_ADDR PHY_REG(768, 26) | ||
| 129 | #define HV_SMB_ADDR_PEC_EN 0x0200 | ||
| 130 | #define HV_SMB_ADDR_VALID 0x0080 | ||
| 131 | |||
| 132 | /* Strapping Option Register - RO */ | ||
| 133 | #define E1000_STRAP 0x0000C | ||
| 134 | #define E1000_STRAP_SMBUS_ADDRESS_MASK 0x00FE0000 | ||
| 135 | #define E1000_STRAP_SMBUS_ADDRESS_SHIFT 17 | ||
| 136 | |||
| 127 | /* OEM Bits Phy Register */ | 137 | /* OEM Bits Phy Register */ |
| 128 | #define HV_OEM_BITS PHY_REG(768, 25) | 138 | #define HV_OEM_BITS PHY_REG(768, 25) |
| 129 | #define HV_OEM_BITS_LPLU 0x0004 /* Low Power Link Up */ | 139 | #define HV_OEM_BITS_LPLU 0x0004 /* Low Power Link Up */ |
| 140 | #define HV_OEM_BITS_GBE_DIS 0x0040 /* Gigabit Disable */ | ||
| 130 | #define HV_OEM_BITS_RESTART_AN 0x0400 /* Restart Auto-negotiation */ | 141 | #define HV_OEM_BITS_RESTART_AN 0x0400 /* Restart Auto-negotiation */ |
| 131 | 142 | ||
| 143 | #define E1000_NVM_K1_CONFIG 0x1B /* NVM K1 Config Word */ | ||
| 144 | #define E1000_NVM_K1_ENABLE 0x1 /* NVM Enable K1 bit */ | ||
| 145 | |||
| 132 | /* ICH GbE Flash Hardware Sequencing Flash Status Register bit breakdown */ | 146 | /* ICH GbE Flash Hardware Sequencing Flash Status Register bit breakdown */ |
| 133 | /* Offset 04h HSFSTS */ | 147 | /* Offset 04h HSFSTS */ |
| 134 | union ich8_hws_flash_status { | 148 | union ich8_hws_flash_status { |
| @@ -208,6 +222,9 @@ static s32 e1000_cleanup_led_pchlan(struct e1000_hw *hw); | |||
| 208 | static s32 e1000_led_on_pchlan(struct e1000_hw *hw); | 222 | static s32 e1000_led_on_pchlan(struct e1000_hw *hw); |
| 209 | static s32 e1000_led_off_pchlan(struct e1000_hw *hw); | 223 | static s32 e1000_led_off_pchlan(struct e1000_hw *hw); |
| 210 | static s32 e1000_set_lplu_state_pchlan(struct e1000_hw *hw, bool active); | 224 | static s32 e1000_set_lplu_state_pchlan(struct e1000_hw *hw, bool active); |
| 225 | static void e1000_lan_init_done_ich8lan(struct e1000_hw *hw); | ||
| 226 | static s32 e1000_k1_gig_workaround_hv(struct e1000_hw *hw, bool link); | ||
| 227 | static s32 e1000_configure_k1_ich8lan(struct e1000_hw *hw, bool k1_enable); | ||
| 211 | 228 | ||
| 212 | static inline u16 __er16flash(struct e1000_hw *hw, unsigned long reg) | 229 | static inline u16 __er16flash(struct e1000_hw *hw, unsigned long reg) |
| 213 | { | 230 | { |
| @@ -483,14 +500,6 @@ static s32 e1000_check_for_copper_link_ich8lan(struct e1000_hw *hw) | |||
| 483 | goto out; | 500 | goto out; |
| 484 | } | 501 | } |
| 485 | 502 | ||
| 486 | if (hw->mac.type == e1000_pchlan) { | ||
| 487 | ret_val = e1000e_write_kmrn_reg(hw, | ||
| 488 | E1000_KMRNCTRLSTA_K1_CONFIG, | ||
| 489 | E1000_KMRNCTRLSTA_K1_ENABLE); | ||
| 490 | if (ret_val) | ||
| 491 | goto out; | ||
| 492 | } | ||
| 493 | |||
| 494 | /* | 503 | /* |
| 495 | * First we want to see if the MII Status Register reports | 504 | * First we want to see if the MII Status Register reports |
| 496 | * link. If so, then we want to get the current speed/duplex | 505 | * link. If so, then we want to get the current speed/duplex |
| @@ -500,6 +509,12 @@ static s32 e1000_check_for_copper_link_ich8lan(struct e1000_hw *hw) | |||
| 500 | if (ret_val) | 509 | if (ret_val) |
| 501 | goto out; | 510 | goto out; |
| 502 | 511 | ||
| 512 | if (hw->mac.type == e1000_pchlan) { | ||
| 513 | ret_val = e1000_k1_gig_workaround_hv(hw, link); | ||
| 514 | if (ret_val) | ||
| 515 | goto out; | ||
| 516 | } | ||
| 517 | |||
| 503 | if (!link) | 518 | if (!link) |
| 504 | goto out; /* No link detected */ | 519 | goto out; /* No link detected */ |
| 505 | 520 | ||
| @@ -794,6 +809,326 @@ static s32 e1000_phy_force_speed_duplex_ich8lan(struct e1000_hw *hw) | |||
| 794 | } | 809 | } |
| 795 | 810 | ||
| 796 | /** | 811 | /** |
| 812 | * e1000_sw_lcd_config_ich8lan - SW-based LCD Configuration | ||
| 813 | * @hw: pointer to the HW structure | ||
| 814 | * | ||
| 815 | * SW should configure the LCD from the NVM extended configuration region | ||
| 816 | * as a workaround for certain parts. | ||
| 817 | **/ | ||
| 818 | static s32 e1000_sw_lcd_config_ich8lan(struct e1000_hw *hw) | ||
| 819 | { | ||
| 820 | struct e1000_phy_info *phy = &hw->phy; | ||
| 821 | u32 i, data, cnf_size, cnf_base_addr, sw_cfg_mask; | ||
| 822 | s32 ret_val; | ||
| 823 | u16 word_addr, reg_data, reg_addr, phy_page = 0; | ||
| 824 | |||
| 825 | ret_val = hw->phy.ops.acquire_phy(hw); | ||
| 826 | if (ret_val) | ||
| 827 | return ret_val; | ||
| 828 | |||
| 829 | /* | ||
| 830 | * Initialize the PHY from the NVM on ICH platforms. This | ||
| 831 | * is needed due to an issue where the NVM configuration is | ||
| 832 | * not properly autoloaded after power transitions. | ||
| 833 | * Therefore, after each PHY reset, we will load the | ||
| 834 | * configuration data out of the NVM manually. | ||
| 835 | */ | ||
| 836 | if ((hw->mac.type == e1000_ich8lan && phy->type == e1000_phy_igp_3) || | ||
| 837 | (hw->mac.type == e1000_pchlan)) { | ||
| 838 | struct e1000_adapter *adapter = hw->adapter; | ||
| 839 | |||
| 840 | /* Check if SW needs to configure the PHY */ | ||
| 841 | if ((adapter->pdev->device == E1000_DEV_ID_ICH8_IGP_M_AMT) || | ||
| 842 | (adapter->pdev->device == E1000_DEV_ID_ICH8_IGP_M) || | ||
| 843 | (hw->mac.type == e1000_pchlan)) | ||
| 844 | sw_cfg_mask = E1000_FEXTNVM_SW_CONFIG_ICH8M; | ||
| 845 | else | ||
| 846 | sw_cfg_mask = E1000_FEXTNVM_SW_CONFIG; | ||
| 847 | |||
| 848 | data = er32(FEXTNVM); | ||
| 849 | if (!(data & sw_cfg_mask)) | ||
| 850 | goto out; | ||
| 851 | |||
| 852 | /* Wait for basic configuration completes before proceeding */ | ||
| 853 | e1000_lan_init_done_ich8lan(hw); | ||
| 854 | |||
| 855 | /* | ||
| 856 | * Make sure HW does not configure LCD from PHY | ||
| 857 | * extended configuration before SW configuration | ||
| 858 | */ | ||
| 859 | data = er32(EXTCNF_CTRL); | ||
| 860 | if (data & E1000_EXTCNF_CTRL_LCD_WRITE_ENABLE) | ||
| 861 | goto out; | ||
| 862 | |||
| 863 | cnf_size = er32(EXTCNF_SIZE); | ||
| 864 | cnf_size &= E1000_EXTCNF_SIZE_EXT_PCIE_LENGTH_MASK; | ||
| 865 | cnf_size >>= E1000_EXTCNF_SIZE_EXT_PCIE_LENGTH_SHIFT; | ||
| 866 | if (!cnf_size) | ||
| 867 | goto out; | ||
| 868 | |||
| 869 | cnf_base_addr = data & E1000_EXTCNF_CTRL_EXT_CNF_POINTER_MASK; | ||
| 870 | cnf_base_addr >>= E1000_EXTCNF_CTRL_EXT_CNF_POINTER_SHIFT; | ||
| 871 | |||
| 872 | if (!(data & E1000_EXTCNF_CTRL_OEM_WRITE_ENABLE) && | ||
| 873 | (hw->mac.type == e1000_pchlan)) { | ||
| 874 | /* | ||
| 875 | * HW configures the SMBus address and LEDs when the | ||
| 876 | * OEM and LCD Write Enable bits are set in the NVM. | ||
| 877 | * When both NVM bits are cleared, SW will configure | ||
| 878 | * them instead. | ||
| 879 | */ | ||
| 880 | data = er32(STRAP); | ||
| 881 | data &= E1000_STRAP_SMBUS_ADDRESS_MASK; | ||
| 882 | reg_data = data >> E1000_STRAP_SMBUS_ADDRESS_SHIFT; | ||
| 883 | reg_data |= HV_SMB_ADDR_PEC_EN | HV_SMB_ADDR_VALID; | ||
| 884 | ret_val = e1000_write_phy_reg_hv_locked(hw, HV_SMB_ADDR, | ||
| 885 | reg_data); | ||
| 886 | if (ret_val) | ||
| 887 | goto out; | ||
| 888 | |||
| 889 | data = er32(LEDCTL); | ||
| 890 | ret_val = e1000_write_phy_reg_hv_locked(hw, | ||
| 891 | HV_LED_CONFIG, | ||
| 892 | (u16)data); | ||
| 893 | if (ret_val) | ||
| 894 | goto out; | ||
| 895 | } | ||
| 896 | /* Configure LCD from extended configuration region. */ | ||
| 897 | |||
| 898 | /* cnf_base_addr is in DWORD */ | ||
| 899 | word_addr = (u16)(cnf_base_addr << 1); | ||
| 900 | |||
| 901 | for (i = 0; i < cnf_size; i++) { | ||
| 902 | ret_val = e1000_read_nvm(hw, (word_addr + i * 2), 1, | ||
| 903 | ®_data); | ||
| 904 | if (ret_val) | ||
| 905 | goto out; | ||
| 906 | |||
| 907 | ret_val = e1000_read_nvm(hw, (word_addr + i * 2 + 1), | ||
| 908 | 1, ®_addr); | ||
| 909 | if (ret_val) | ||
| 910 | goto out; | ||
| 911 | |||
| 912 | /* Save off the PHY page for future writes. */ | ||
| 913 | if (reg_addr == IGP01E1000_PHY_PAGE_SELECT) { | ||
| 914 | phy_page = reg_data; | ||
| 915 | continue; | ||
| 916 | } | ||
| 917 | |||
| 918 | reg_addr &= PHY_REG_MASK; | ||
| 919 | reg_addr |= phy_page; | ||
| 920 | |||
| 921 | ret_val = phy->ops.write_phy_reg_locked(hw, | ||
| 922 | (u32)reg_addr, | ||
| 923 | reg_data); | ||
| 924 | if (ret_val) | ||
| 925 | goto out; | ||
| 926 | } | ||
| 927 | } | ||
| 928 | |||
| 929 | out: | ||
| 930 | hw->phy.ops.release_phy(hw); | ||
| 931 | return ret_val; | ||
| 932 | } | ||
| 933 | |||
| 934 | /** | ||
| 935 | * e1000_k1_gig_workaround_hv - K1 Si workaround | ||
| 936 | * @hw: pointer to the HW structure | ||
| 937 | * @link: link up bool flag | ||
| 938 | * | ||
| 939 | * If K1 is enabled for 1Gbps, the MAC might stall when transitioning | ||
| 940 | * from a lower speed. This workaround disables K1 whenever link is at 1Gig | ||
| 941 | * If link is down, the function will restore the default K1 setting located | ||
| 942 | * in the NVM. | ||
| 943 | **/ | ||
| 944 | static s32 e1000_k1_gig_workaround_hv(struct e1000_hw *hw, bool link) | ||
| 945 | { | ||
| 946 | s32 ret_val = 0; | ||
| 947 | u16 status_reg = 0; | ||
| 948 | bool k1_enable = hw->dev_spec.ich8lan.nvm_k1_enabled; | ||
| 949 | |||
| 950 | if (hw->mac.type != e1000_pchlan) | ||
| 951 | goto out; | ||
| 952 | |||
| 953 | /* Wrap the whole flow with the sw flag */ | ||
| 954 | ret_val = hw->phy.ops.acquire_phy(hw); | ||
| 955 | if (ret_val) | ||
| 956 | goto out; | ||
| 957 | |||
| 958 | /* Disable K1 when link is 1Gbps, otherwise use the NVM setting */ | ||
| 959 | if (link) { | ||
| 960 | if (hw->phy.type == e1000_phy_82578) { | ||
| 961 | ret_val = hw->phy.ops.read_phy_reg_locked(hw, | ||
| 962 | BM_CS_STATUS, | ||
| 963 | &status_reg); | ||
| 964 | if (ret_val) | ||
| 965 | goto release; | ||
| 966 | |||
| 967 | status_reg &= BM_CS_STATUS_LINK_UP | | ||
| 968 | BM_CS_STATUS_RESOLVED | | ||
| 969 | BM_CS_STATUS_SPEED_MASK; | ||
| 970 | |||
| 971 | if (status_reg == (BM_CS_STATUS_LINK_UP | | ||
| 972 | BM_CS_STATUS_RESOLVED | | ||
| 973 | BM_CS_STATUS_SPEED_1000)) | ||
| 974 | k1_enable = false; | ||
| 975 | } | ||
| 976 | |||
| 977 | if (hw->phy.type == e1000_phy_82577) { | ||
| 978 | ret_val = hw->phy.ops.read_phy_reg_locked(hw, | ||
| 979 | HV_M_STATUS, | ||
| 980 | &status_reg); | ||
| 981 | if (ret_val) | ||
| 982 | goto release; | ||
| 983 | |||
| 984 | status_reg &= HV_M_STATUS_LINK_UP | | ||
| 985 | HV_M_STATUS_AUTONEG_COMPLETE | | ||
| 986 | HV_M_STATUS_SPEED_MASK; | ||
| 987 | |||
| 988 | if (status_reg == (HV_M_STATUS_LINK_UP | | ||
| 989 | HV_M_STATUS_AUTONEG_COMPLETE | | ||
| 990 | HV_M_STATUS_SPEED_1000)) | ||
| 991 | k1_enable = false; | ||
| 992 | } | ||
| 993 | |||
| 994 | /* Link stall fix for link up */ | ||
| 995 | ret_val = hw->phy.ops.write_phy_reg_locked(hw, PHY_REG(770, 19), | ||
| 996 | 0x0100); | ||
| 997 | if (ret_val) | ||
| 998 | goto release; | ||
| 999 | |||
| 1000 | } else { | ||
| 1001 | /* Link stall fix for link down */ | ||
| 1002 | ret_val = hw->phy.ops.write_phy_reg_locked(hw, PHY_REG(770, 19), | ||
| 1003 | 0x4100); | ||
| 1004 | if (ret_val) | ||
| 1005 | goto release; | ||
| 1006 | } | ||
| 1007 | |||
| 1008 | ret_val = e1000_configure_k1_ich8lan(hw, k1_enable); | ||
| 1009 | |||
| 1010 | release: | ||
| 1011 | hw->phy.ops.release_phy(hw); | ||
| 1012 | out: | ||
| 1013 | return ret_val; | ||
| 1014 | } | ||
| 1015 | |||
| 1016 | /** | ||
| 1017 | * e1000_configure_k1_ich8lan - Configure K1 power state | ||
| 1018 | * @hw: pointer to the HW structure | ||
| 1019 | * @enable: K1 state to configure | ||
| 1020 | * | ||
| 1021 | * Configure the K1 power state based on the provided parameter. | ||
| 1022 | * Assumes semaphore already acquired. | ||
| 1023 | * | ||
| 1024 | * Success returns 0, Failure returns -E1000_ERR_PHY (-2) | ||
| 1025 | **/ | ||
| 1026 | static s32 e1000_configure_k1_ich8lan(struct e1000_hw *hw, bool k1_enable) | ||
| 1027 | { | ||
| 1028 | s32 ret_val = 0; | ||
| 1029 | u32 ctrl_reg = 0; | ||
| 1030 | u32 ctrl_ext = 0; | ||
| 1031 | u32 reg = 0; | ||
| 1032 | u16 kmrn_reg = 0; | ||
| 1033 | |||
| 1034 | ret_val = e1000e_read_kmrn_reg_locked(hw, | ||
| 1035 | E1000_KMRNCTRLSTA_K1_CONFIG, | ||
| 1036 | &kmrn_reg); | ||
| 1037 | if (ret_val) | ||
| 1038 | goto out; | ||
| 1039 | |||
| 1040 | if (k1_enable) | ||
| 1041 | kmrn_reg |= E1000_KMRNCTRLSTA_K1_ENABLE; | ||
| 1042 | else | ||
| 1043 | kmrn_reg &= ~E1000_KMRNCTRLSTA_K1_ENABLE; | ||
| 1044 | |||
| 1045 | ret_val = e1000e_write_kmrn_reg_locked(hw, | ||
| 1046 | E1000_KMRNCTRLSTA_K1_CONFIG, | ||
| 1047 | kmrn_reg); | ||
| 1048 | if (ret_val) | ||
| 1049 | goto out; | ||
| 1050 | |||
| 1051 | udelay(20); | ||
| 1052 | ctrl_ext = er32(CTRL_EXT); | ||
| 1053 | ctrl_reg = er32(CTRL); | ||
| 1054 | |||
| 1055 | reg = ctrl_reg & ~(E1000_CTRL_SPD_1000 | E1000_CTRL_SPD_100); | ||
| 1056 | reg |= E1000_CTRL_FRCSPD; | ||
| 1057 | ew32(CTRL, reg); | ||
| 1058 | |||
| 1059 | ew32(CTRL_EXT, ctrl_ext | E1000_CTRL_EXT_SPD_BYPS); | ||
| 1060 | udelay(20); | ||
| 1061 | ew32(CTRL, ctrl_reg); | ||
| 1062 | ew32(CTRL_EXT, ctrl_ext); | ||
| 1063 | udelay(20); | ||
| 1064 | |||
| 1065 | out: | ||
| 1066 | return ret_val; | ||
| 1067 | } | ||
| 1068 | |||
| 1069 | /** | ||
| 1070 | * e1000_oem_bits_config_ich8lan - SW-based LCD Configuration | ||
| 1071 | * @hw: pointer to the HW structure | ||
| 1072 | * @d0_state: boolean if entering d0 or d3 device state | ||
| 1073 | * | ||
| 1074 | * SW will configure Gbe Disable and LPLU based on the NVM. The four bits are | ||
| 1075 | * collectively called OEM bits. The OEM Write Enable bit and SW Config bit | ||
| 1076 | * in NVM determines whether HW should configure LPLU and Gbe Disable. | ||
| 1077 | **/ | ||
| 1078 | static s32 e1000_oem_bits_config_ich8lan(struct e1000_hw *hw, bool d0_state) | ||
| 1079 | { | ||
| 1080 | s32 ret_val = 0; | ||
| 1081 | u32 mac_reg; | ||
| 1082 | u16 oem_reg; | ||
| 1083 | |||
| 1084 | if (hw->mac.type != e1000_pchlan) | ||
| 1085 | return ret_val; | ||
| 1086 | |||
| 1087 | ret_val = hw->phy.ops.acquire_phy(hw); | ||
| 1088 | if (ret_val) | ||
| 1089 | return ret_val; | ||
| 1090 | |||
| 1091 | mac_reg = er32(EXTCNF_CTRL); | ||
| 1092 | if (mac_reg & E1000_EXTCNF_CTRL_OEM_WRITE_ENABLE) | ||
| 1093 | goto out; | ||
| 1094 | |||
| 1095 | mac_reg = er32(FEXTNVM); | ||
| 1096 | if (!(mac_reg & E1000_FEXTNVM_SW_CONFIG_ICH8M)) | ||
| 1097 | goto out; | ||
| 1098 | |||
| 1099 | mac_reg = er32(PHY_CTRL); | ||
| 1100 | |||
| 1101 | ret_val = hw->phy.ops.read_phy_reg_locked(hw, HV_OEM_BITS, &oem_reg); | ||
| 1102 | if (ret_val) | ||
| 1103 | goto out; | ||
| 1104 | |||
| 1105 | oem_reg &= ~(HV_OEM_BITS_GBE_DIS | HV_OEM_BITS_LPLU); | ||
| 1106 | |||
| 1107 | if (d0_state) { | ||
| 1108 | if (mac_reg & E1000_PHY_CTRL_GBE_DISABLE) | ||
| 1109 | oem_reg |= HV_OEM_BITS_GBE_DIS; | ||
| 1110 | |||
| 1111 | if (mac_reg & E1000_PHY_CTRL_D0A_LPLU) | ||
| 1112 | oem_reg |= HV_OEM_BITS_LPLU; | ||
| 1113 | } else { | ||
| 1114 | if (mac_reg & E1000_PHY_CTRL_NOND0A_GBE_DISABLE) | ||
| 1115 | oem_reg |= HV_OEM_BITS_GBE_DIS; | ||
| 1116 | |||
| 1117 | if (mac_reg & E1000_PHY_CTRL_NOND0A_LPLU) | ||
| 1118 | oem_reg |= HV_OEM_BITS_LPLU; | ||
| 1119 | } | ||
| 1120 | /* Restart auto-neg to activate the bits */ | ||
| 1121 | oem_reg |= HV_OEM_BITS_RESTART_AN; | ||
| 1122 | ret_val = hw->phy.ops.write_phy_reg_locked(hw, HV_OEM_BITS, oem_reg); | ||
| 1123 | |||
| 1124 | out: | ||
| 1125 | hw->phy.ops.release_phy(hw); | ||
| 1126 | |||
| 1127 | return ret_val; | ||
| 1128 | } | ||
| 1129 | |||
| 1130 | |||
| 1131 | /** | ||
| 797 | * e1000_hv_phy_workarounds_ich8lan - A series of Phy workarounds to be | 1132 | * e1000_hv_phy_workarounds_ich8lan - A series of Phy workarounds to be |
| 798 | * done after every PHY reset. | 1133 | * done after every PHY reset. |
| 799 | **/ | 1134 | **/ |
| @@ -833,10 +1168,20 @@ static s32 e1000_hv_phy_workarounds_ich8lan(struct e1000_hw *hw) | |||
| 833 | ret_val = hw->phy.ops.acquire_phy(hw); | 1168 | ret_val = hw->phy.ops.acquire_phy(hw); |
| 834 | if (ret_val) | 1169 | if (ret_val) |
| 835 | return ret_val; | 1170 | return ret_val; |
| 1171 | |||
| 836 | hw->phy.addr = 1; | 1172 | hw->phy.addr = 1; |
| 837 | e1000e_write_phy_reg_mdic(hw, IGP01E1000_PHY_PAGE_SELECT, 0); | 1173 | ret_val = e1000e_write_phy_reg_mdic(hw, IGP01E1000_PHY_PAGE_SELECT, 0); |
| 1174 | if (ret_val) | ||
| 1175 | goto out; | ||
| 838 | hw->phy.ops.release_phy(hw); | 1176 | hw->phy.ops.release_phy(hw); |
| 839 | 1177 | ||
| 1178 | /* | ||
| 1179 | * Configure the K1 Si workaround during phy reset assuming there is | ||
| 1180 | * link so that it disables K1 if link is in 1Gbps. | ||
| 1181 | */ | ||
| 1182 | ret_val = e1000_k1_gig_workaround_hv(hw, true); | ||
| 1183 | |||
| 1184 | out: | ||
| 840 | return ret_val; | 1185 | return ret_val; |
| 841 | } | 1186 | } |
| 842 | 1187 | ||
| @@ -882,11 +1227,8 @@ static void e1000_lan_init_done_ich8lan(struct e1000_hw *hw) | |||
| 882 | **/ | 1227 | **/ |
| 883 | static s32 e1000_phy_hw_reset_ich8lan(struct e1000_hw *hw) | 1228 | static s32 e1000_phy_hw_reset_ich8lan(struct e1000_hw *hw) |
| 884 | { | 1229 | { |
| 885 | struct e1000_phy_info *phy = &hw->phy; | 1230 | s32 ret_val = 0; |
| 886 | u32 i; | 1231 | u16 reg; |
| 887 | u32 data, cnf_size, cnf_base_addr, sw_cfg_mask; | ||
| 888 | s32 ret_val; | ||
| 889 | u16 reg, word_addr, reg_data, reg_addr, phy_page = 0; | ||
| 890 | 1232 | ||
| 891 | ret_val = e1000e_phy_hw_reset_generic(hw); | 1233 | ret_val = e1000e_phy_hw_reset_generic(hw); |
| 892 | if (ret_val) | 1234 | if (ret_val) |
| @@ -905,81 +1247,16 @@ static s32 e1000_phy_hw_reset_ich8lan(struct e1000_hw *hw) | |||
| 905 | if (hw->mac.type == e1000_pchlan) | 1247 | if (hw->mac.type == e1000_pchlan) |
| 906 | e1e_rphy(hw, BM_WUC, ®); | 1248 | e1e_rphy(hw, BM_WUC, ®); |
| 907 | 1249 | ||
| 908 | /* | 1250 | /* Configure the LCD with the extended configuration region in NVM */ |
| 909 | * Initialize the PHY from the NVM on ICH platforms. This | 1251 | ret_val = e1000_sw_lcd_config_ich8lan(hw); |
| 910 | * is needed due to an issue where the NVM configuration is | 1252 | if (ret_val) |
| 911 | * not properly autoloaded after power transitions. | 1253 | goto out; |
| 912 | * Therefore, after each PHY reset, we will load the | ||
| 913 | * configuration data out of the NVM manually. | ||
| 914 | */ | ||
| 915 | if (hw->mac.type == e1000_ich8lan && phy->type == e1000_phy_igp_3) { | ||
| 916 | struct e1000_adapter *adapter = hw->adapter; | ||
| 917 | |||
| 918 | /* Check if SW needs configure the PHY */ | ||
| 919 | if ((adapter->pdev->device == E1000_DEV_ID_ICH8_IGP_M_AMT) || | ||
| 920 | (adapter->pdev->device == E1000_DEV_ID_ICH8_IGP_M)) | ||
| 921 | sw_cfg_mask = E1000_FEXTNVM_SW_CONFIG_ICH8M; | ||
| 922 | else | ||
| 923 | sw_cfg_mask = E1000_FEXTNVM_SW_CONFIG; | ||
| 924 | |||
| 925 | data = er32(FEXTNVM); | ||
| 926 | if (!(data & sw_cfg_mask)) | ||
| 927 | return 0; | ||
| 928 | |||
| 929 | /* Wait for basic configuration completes before proceeding */ | ||
| 930 | e1000_lan_init_done_ich8lan(hw); | ||
| 931 | |||
| 932 | /* | ||
| 933 | * Make sure HW does not configure LCD from PHY | ||
| 934 | * extended configuration before SW configuration | ||
| 935 | */ | ||
| 936 | data = er32(EXTCNF_CTRL); | ||
| 937 | if (data & E1000_EXTCNF_CTRL_LCD_WRITE_ENABLE) | ||
| 938 | return 0; | ||
| 939 | |||
| 940 | cnf_size = er32(EXTCNF_SIZE); | ||
| 941 | cnf_size &= E1000_EXTCNF_SIZE_EXT_PCIE_LENGTH_MASK; | ||
| 942 | cnf_size >>= E1000_EXTCNF_SIZE_EXT_PCIE_LENGTH_SHIFT; | ||
| 943 | if (!cnf_size) | ||
| 944 | return 0; | ||
| 945 | |||
| 946 | cnf_base_addr = data & E1000_EXTCNF_CTRL_EXT_CNF_POINTER_MASK; | ||
| 947 | cnf_base_addr >>= E1000_EXTCNF_CTRL_EXT_CNF_POINTER_SHIFT; | ||
| 948 | |||
| 949 | /* Configure LCD from extended configuration region. */ | ||
| 950 | |||
| 951 | /* cnf_base_addr is in DWORD */ | ||
| 952 | word_addr = (u16)(cnf_base_addr << 1); | ||
| 953 | |||
| 954 | for (i = 0; i < cnf_size; i++) { | ||
| 955 | ret_val = e1000_read_nvm(hw, | ||
| 956 | (word_addr + i * 2), | ||
| 957 | 1, | ||
| 958 | ®_data); | ||
| 959 | if (ret_val) | ||
| 960 | return ret_val; | ||
| 961 | |||
| 962 | ret_val = e1000_read_nvm(hw, | ||
| 963 | (word_addr + i * 2 + 1), | ||
| 964 | 1, | ||
| 965 | ®_addr); | ||
| 966 | if (ret_val) | ||
| 967 | return ret_val; | ||
| 968 | |||
| 969 | /* Save off the PHY page for future writes. */ | ||
| 970 | if (reg_addr == IGP01E1000_PHY_PAGE_SELECT) { | ||
| 971 | phy_page = reg_data; | ||
| 972 | continue; | ||
| 973 | } | ||
| 974 | |||
| 975 | reg_addr |= phy_page; | ||
| 976 | 1254 | ||
| 977 | ret_val = e1e_wphy(hw, (u32)reg_addr, reg_data); | 1255 | /* Configure the LCD with the OEM bits in NVM */ |
| 978 | if (ret_val) | 1256 | if (hw->mac.type == e1000_pchlan) |
| 979 | return ret_val; | 1257 | ret_val = e1000_oem_bits_config_ich8lan(hw, true); |
| 980 | } | ||
| 981 | } | ||
| 982 | 1258 | ||
| 1259 | out: | ||
| 983 | return 0; | 1260 | return 0; |
| 984 | } | 1261 | } |
| 985 | 1262 | ||
| @@ -2306,6 +2583,7 @@ static s32 e1000_get_bus_info_ich8lan(struct e1000_hw *hw) | |||
| 2306 | **/ | 2583 | **/ |
| 2307 | static s32 e1000_reset_hw_ich8lan(struct e1000_hw *hw) | 2584 | static s32 e1000_reset_hw_ich8lan(struct e1000_hw *hw) |
| 2308 | { | 2585 | { |
| 2586 | struct e1000_dev_spec_ich8lan *dev_spec = &hw->dev_spec.ich8lan; | ||
| 2309 | u16 reg; | 2587 | u16 reg; |
| 2310 | u32 ctrl, icr, kab; | 2588 | u32 ctrl, icr, kab; |
| 2311 | s32 ret_val; | 2589 | s32 ret_val; |
| @@ -2341,6 +2619,18 @@ static s32 e1000_reset_hw_ich8lan(struct e1000_hw *hw) | |||
| 2341 | ew32(PBS, E1000_PBS_16K); | 2619 | ew32(PBS, E1000_PBS_16K); |
| 2342 | } | 2620 | } |
| 2343 | 2621 | ||
| 2622 | if (hw->mac.type == e1000_pchlan) { | ||
| 2623 | /* Save the NVM K1 bit setting*/ | ||
| 2624 | ret_val = e1000_read_nvm(hw, E1000_NVM_K1_CONFIG, 1, ®); | ||
| 2625 | if (ret_val) | ||
| 2626 | return ret_val; | ||
| 2627 | |||
| 2628 | if (reg & E1000_NVM_K1_ENABLE) | ||
| 2629 | dev_spec->nvm_k1_enabled = true; | ||
| 2630 | else | ||
| 2631 | dev_spec->nvm_k1_enabled = false; | ||
| 2632 | } | ||
| 2633 | |||
| 2344 | ctrl = er32(CTRL); | 2634 | ctrl = er32(CTRL); |
| 2345 | 2635 | ||
| 2346 | if (!e1000_check_reset_block(hw)) { | 2636 | if (!e1000_check_reset_block(hw)) { |
| @@ -2386,6 +2676,15 @@ static s32 e1000_reset_hw_ich8lan(struct e1000_hw *hw) | |||
| 2386 | if (hw->mac.type == e1000_pchlan) | 2676 | if (hw->mac.type == e1000_pchlan) |
| 2387 | e1e_rphy(hw, BM_WUC, ®); | 2677 | e1e_rphy(hw, BM_WUC, ®); |
| 2388 | 2678 | ||
| 2679 | ret_val = e1000_sw_lcd_config_ich8lan(hw); | ||
| 2680 | if (ret_val) | ||
| 2681 | goto out; | ||
| 2682 | |||
| 2683 | if (hw->mac.type == e1000_pchlan) { | ||
| 2684 | ret_val = e1000_oem_bits_config_ich8lan(hw, true); | ||
| 2685 | if (ret_val) | ||
| 2686 | goto out; | ||
| 2687 | } | ||
| 2389 | /* | 2688 | /* |
| 2390 | * For PCH, this write will make sure that any noise | 2689 | * For PCH, this write will make sure that any noise |
| 2391 | * will be detected as a CRC error and be dropped rather than show up | 2690 | * will be detected as a CRC error and be dropped rather than show up |
| @@ -2404,6 +2703,7 @@ static s32 e1000_reset_hw_ich8lan(struct e1000_hw *hw) | |||
| 2404 | if (hw->mac.type == e1000_pchlan) | 2703 | if (hw->mac.type == e1000_pchlan) |
| 2405 | ret_val = e1000_hv_phy_workarounds_ich8lan(hw); | 2704 | ret_val = e1000_hv_phy_workarounds_ich8lan(hw); |
| 2406 | 2705 | ||
| 2706 | out: | ||
| 2407 | return ret_val; | 2707 | return ret_val; |
| 2408 | } | 2708 | } |
| 2409 | 2709 | ||
| @@ -2708,14 +3008,6 @@ static s32 e1000_get_link_up_info_ich8lan(struct e1000_hw *hw, u16 *speed, | |||
| 2708 | if (ret_val) | 3008 | if (ret_val) |
| 2709 | return ret_val; | 3009 | return ret_val; |
| 2710 | 3010 | ||
| 2711 | if ((hw->mac.type == e1000_pchlan) && (*speed == SPEED_1000)) { | ||
| 2712 | ret_val = e1000e_write_kmrn_reg(hw, | ||
| 2713 | E1000_KMRNCTRLSTA_K1_CONFIG, | ||
| 2714 | E1000_KMRNCTRLSTA_K1_DISABLE); | ||
| 2715 | if (ret_val) | ||
| 2716 | return ret_val; | ||
| 2717 | } | ||
| 2718 | |||
| 2719 | if ((hw->mac.type == e1000_ich8lan) && | 3011 | if ((hw->mac.type == e1000_ich8lan) && |
| 2720 | (hw->phy.type == e1000_phy_igp_3) && | 3012 | (hw->phy.type == e1000_phy_igp_3) && |
| 2721 | (*speed == SPEED_1000)) { | 3013 | (*speed == SPEED_1000)) { |
diff --git a/drivers/net/e1000e/phy.c b/drivers/net/e1000e/phy.c index f9d33ab05e97..03175b3a2c9e 100644 --- a/drivers/net/e1000e/phy.c +++ b/drivers/net/e1000e/phy.c | |||
| @@ -95,13 +95,6 @@ static const u16 e1000_igp_2_cable_length_table[] = | |||
| 95 | /* BM PHY Copper Specific Control 1 */ | 95 | /* BM PHY Copper Specific Control 1 */ |
| 96 | #define BM_CS_CTRL1 16 | 96 | #define BM_CS_CTRL1 16 |
| 97 | 97 | ||
| 98 | /* BM PHY Copper Specific Status */ | ||
| 99 | #define BM_CS_STATUS 17 | ||
| 100 | #define BM_CS_STATUS_LINK_UP 0x0400 | ||
| 101 | #define BM_CS_STATUS_RESOLVED 0x0800 | ||
| 102 | #define BM_CS_STATUS_SPEED_MASK 0xC000 | ||
| 103 | #define BM_CS_STATUS_SPEED_1000 0x8000 | ||
| 104 | |||
| 105 | #define HV_MUX_DATA_CTRL PHY_REG(776, 16) | 98 | #define HV_MUX_DATA_CTRL PHY_REG(776, 16) |
| 106 | #define HV_MUX_DATA_CTRL_GEN_TO_MAC 0x0400 | 99 | #define HV_MUX_DATA_CTRL_GEN_TO_MAC 0x0400 |
| 107 | #define HV_MUX_DATA_CTRL_FORCE_SPEED 0x0004 | 100 | #define HV_MUX_DATA_CTRL_FORCE_SPEED 0x0004 |
| @@ -563,7 +556,7 @@ s32 e1000e_read_kmrn_reg(struct e1000_hw *hw, u32 offset, u16 *data) | |||
| 563 | } | 556 | } |
| 564 | 557 | ||
| 565 | /** | 558 | /** |
| 566 | * e1000_read_kmrn_reg_locked - Read kumeran register | 559 | * e1000e_read_kmrn_reg_locked - Read kumeran register |
| 567 | * @hw: pointer to the HW structure | 560 | * @hw: pointer to the HW structure |
| 568 | * @offset: register offset to be read | 561 | * @offset: register offset to be read |
| 569 | * @data: pointer to the read data | 562 | * @data: pointer to the read data |
| @@ -572,7 +565,7 @@ s32 e1000e_read_kmrn_reg(struct e1000_hw *hw, u32 offset, u16 *data) | |||
| 572 | * information retrieved is stored in data. | 565 | * information retrieved is stored in data. |
| 573 | * Assumes semaphore already acquired. | 566 | * Assumes semaphore already acquired. |
| 574 | **/ | 567 | **/ |
| 575 | s32 e1000_read_kmrn_reg_locked(struct e1000_hw *hw, u32 offset, u16 *data) | 568 | s32 e1000e_read_kmrn_reg_locked(struct e1000_hw *hw, u32 offset, u16 *data) |
| 576 | { | 569 | { |
| 577 | return __e1000_read_kmrn_reg(hw, offset, data, true); | 570 | return __e1000_read_kmrn_reg(hw, offset, data, true); |
| 578 | } | 571 | } |
| @@ -631,7 +624,7 @@ s32 e1000e_write_kmrn_reg(struct e1000_hw *hw, u32 offset, u16 data) | |||
| 631 | } | 624 | } |
| 632 | 625 | ||
| 633 | /** | 626 | /** |
| 634 | * e1000_write_kmrn_reg_locked - Write kumeran register | 627 | * e1000e_write_kmrn_reg_locked - Write kumeran register |
| 635 | * @hw: pointer to the HW structure | 628 | * @hw: pointer to the HW structure |
| 636 | * @offset: register offset to write to | 629 | * @offset: register offset to write to |
| 637 | * @data: data to write at register offset | 630 | * @data: data to write at register offset |
| @@ -639,7 +632,7 @@ s32 e1000e_write_kmrn_reg(struct e1000_hw *hw, u32 offset, u16 data) | |||
| 639 | * Write the data to PHY register at the offset using the kumeran interface. | 632 | * Write the data to PHY register at the offset using the kumeran interface. |
| 640 | * Assumes semaphore already acquired. | 633 | * Assumes semaphore already acquired. |
| 641 | **/ | 634 | **/ |
| 642 | s32 e1000_write_kmrn_reg_locked(struct e1000_hw *hw, u32 offset, u16 data) | 635 | s32 e1000e_write_kmrn_reg_locked(struct e1000_hw *hw, u32 offset, u16 data) |
| 643 | { | 636 | { |
| 644 | return __e1000_write_kmrn_reg(hw, offset, data, true); | 637 | return __e1000_write_kmrn_reg(hw, offset, data, true); |
| 645 | } | 638 | } |
diff --git a/drivers/net/pcmcia/pcnet_cs.c b/drivers/net/pcmcia/pcnet_cs.c index bd3447f04902..94c9ad2746bc 100644 --- a/drivers/net/pcmcia/pcnet_cs.c +++ b/drivers/net/pcmcia/pcnet_cs.c | |||
| @@ -1760,7 +1760,7 @@ static struct pcmcia_device_id pcnet_ids[] = { | |||
| 1760 | PCMCIA_DEVICE_CIS_MANF_CARD(0xc00f, 0x0002, "cis/LA-PCM.cis"), | 1760 | PCMCIA_DEVICE_CIS_MANF_CARD(0xc00f, 0x0002, "cis/LA-PCM.cis"), |
| 1761 | PCMCIA_DEVICE_CIS_PROD_ID12("KTI", "PE520 PLUS", 0xad180345, 0x9d58d392, "PE520.cis"), | 1761 | PCMCIA_DEVICE_CIS_PROD_ID12("KTI", "PE520 PLUS", 0xad180345, 0x9d58d392, "PE520.cis"), |
| 1762 | PCMCIA_DEVICE_CIS_PROD_ID12("NDC", "Ethernet", 0x01c43ae1, 0x00b2e941, "cis/NE2K.cis"), | 1762 | PCMCIA_DEVICE_CIS_PROD_ID12("NDC", "Ethernet", 0x01c43ae1, 0x00b2e941, "cis/NE2K.cis"), |
| 1763 | PCMCIA_DEVICE_CIS_PROD_ID12("PMX ", "PE-200", 0x34f3f1c8, 0x10b59f8c, "PE-200.cis"), | 1763 | PCMCIA_DEVICE_CIS_PROD_ID12("PMX ", "PE-200", 0x34f3f1c8, 0x10b59f8c, "cis/PE-200.cis"), |
| 1764 | PCMCIA_DEVICE_CIS_PROD_ID12("TAMARACK", "Ethernet", 0xcf434fba, 0x00b2e941, "cis/tamarack.cis"), | 1764 | PCMCIA_DEVICE_CIS_PROD_ID12("TAMARACK", "Ethernet", 0xcf434fba, 0x00b2e941, "cis/tamarack.cis"), |
| 1765 | PCMCIA_DEVICE_PROD_ID12("Ethernet", "CF Size PC Card", 0x00b2e941, 0x43ac239b), | 1765 | PCMCIA_DEVICE_PROD_ID12("Ethernet", "CF Size PC Card", 0x00b2e941, 0x43ac239b), |
| 1766 | PCMCIA_DEVICE_PROD_ID123("Fast Ethernet", "CF Size PC Card", "1.0", | 1766 | PCMCIA_DEVICE_PROD_ID123("Fast Ethernet", "CF Size PC Card", "1.0", |
diff --git a/drivers/net/r8169.c b/drivers/net/r8169.c index f98ef523f525..fa4935678488 100644 --- a/drivers/net/r8169.c +++ b/drivers/net/r8169.c | |||
| @@ -3379,7 +3379,7 @@ static u16 rtl_rw_cpluscmd(void __iomem *ioaddr) | |||
| 3379 | static void rtl_set_rx_max_size(void __iomem *ioaddr, unsigned int rx_buf_sz) | 3379 | static void rtl_set_rx_max_size(void __iomem *ioaddr, unsigned int rx_buf_sz) |
| 3380 | { | 3380 | { |
| 3381 | /* Low hurts. Let's disable the filtering. */ | 3381 | /* Low hurts. Let's disable the filtering. */ |
| 3382 | RTL_W16(RxMaxSize, rx_buf_sz); | 3382 | RTL_W16(RxMaxSize, rx_buf_sz + 1); |
| 3383 | } | 3383 | } |
| 3384 | 3384 | ||
| 3385 | static void rtl8169_set_magic_reg(void __iomem *ioaddr, unsigned mac_version) | 3385 | static void rtl8169_set_magic_reg(void __iomem *ioaddr, unsigned mac_version) |
diff --git a/drivers/net/sky2.c b/drivers/net/sky2.c index 2ab5c39f33ca..6a10d7ba5877 100644 --- a/drivers/net/sky2.c +++ b/drivers/net/sky2.c | |||
| @@ -4538,6 +4538,8 @@ static int __devinit sky2_probe(struct pci_dev *pdev, | |||
| 4538 | goto err_out_free_netdev; | 4538 | goto err_out_free_netdev; |
| 4539 | } | 4539 | } |
| 4540 | 4540 | ||
| 4541 | netif_carrier_off(dev); | ||
| 4542 | |||
| 4541 | netif_napi_add(dev, &hw->napi, sky2_poll, NAPI_WEIGHT); | 4543 | netif_napi_add(dev, &hw->napi, sky2_poll, NAPI_WEIGHT); |
| 4542 | 4544 | ||
| 4543 | err = request_irq(pdev->irq, sky2_intr, | 4545 | err = request_irq(pdev->irq, sky2_intr, |
diff --git a/drivers/net/tokenring/ibmtr.c b/drivers/net/tokenring/ibmtr.c index 36cb2423bcf1..75fa32e34fd0 100644 --- a/drivers/net/tokenring/ibmtr.c +++ b/drivers/net/tokenring/ibmtr.c | |||
| @@ -1144,9 +1144,16 @@ static void dir_open_adapter (struct net_device *dev) | |||
| 1144 | } else { | 1144 | } else { |
| 1145 | char **prphase = printphase; | 1145 | char **prphase = printphase; |
| 1146 | char **prerror = printerror; | 1146 | char **prerror = printerror; |
| 1147 | int pnr = err / 16 - 1; | ||
| 1148 | int enr = err % 16 - 1; | ||
| 1147 | DPRINTK("TR Adapter misc open failure, error code = "); | 1149 | DPRINTK("TR Adapter misc open failure, error code = "); |
| 1148 | printk("0x%x, Phase: %s, Error: %s\n", | 1150 | if (pnr < 0 || pnr >= ARRAY_SIZE(printphase) || |
| 1149 | err, prphase[err/16 -1], prerror[err%16 -1]); | 1151 | enr < 0 || |
| 1152 | enr >= ARRAY_SIZE(printerror)) | ||
| 1153 | printk("0x%x, invalid Phase/Error.", err); | ||
| 1154 | else | ||
| 1155 | printk("0x%x, Phase: %s, Error: %s\n", err, | ||
| 1156 | prphase[pnr], prerror[enr]); | ||
| 1150 | printk(" retrying after %ds delay...\n", | 1157 | printk(" retrying after %ds delay...\n", |
| 1151 | TR_RETRY_INTERVAL/HZ); | 1158 | TR_RETRY_INTERVAL/HZ); |
| 1152 | } | 1159 | } |
diff --git a/drivers/net/usb/rndis_host.c b/drivers/net/usb/rndis_host.c index 0caa8008c51c..f56dec6119c3 100644 --- a/drivers/net/usb/rndis_host.c +++ b/drivers/net/usb/rndis_host.c | |||
| @@ -362,12 +362,12 @@ generic_rndis_bind(struct usbnet *dev, struct usb_interface *intf, int flags) | |||
| 362 | retval = -EINVAL; | 362 | retval = -EINVAL; |
| 363 | goto halt_fail_and_release; | 363 | goto halt_fail_and_release; |
| 364 | } | 364 | } |
| 365 | dev->hard_mtu = tmp; | ||
| 366 | net->mtu = dev->hard_mtu - net->hard_header_len; | ||
| 367 | dev_warn(&intf->dev, | 365 | dev_warn(&intf->dev, |
| 368 | "dev can't take %u byte packets (max %u), " | 366 | "dev can't take %u byte packets (max %u), " |
| 369 | "adjusting MTU to %u\n", | 367 | "adjusting MTU to %u\n", |
| 370 | dev->hard_mtu, tmp, net->mtu); | 368 | dev->hard_mtu, tmp, tmp - net->hard_header_len); |
| 369 | dev->hard_mtu = tmp; | ||
| 370 | net->mtu = dev->hard_mtu - net->hard_header_len; | ||
| 371 | } | 371 | } |
| 372 | 372 | ||
| 373 | /* REVISIT: peripheral "alignment" request is ignored ... */ | 373 | /* REVISIT: peripheral "alignment" request is ignored ... */ |
diff --git a/drivers/net/wireless/ath/ath9k/rc.c b/drivers/net/wireless/ath/ath9k/rc.c index 16a271787b85..1895d63aad0a 100644 --- a/drivers/net/wireless/ath/ath9k/rc.c +++ b/drivers/net/wireless/ath/ath9k/rc.c | |||
| @@ -679,7 +679,7 @@ static u8 ath_rc_get_highest_rix(struct ath_softc *sc, | |||
| 679 | return rate; | 679 | return rate; |
| 680 | 680 | ||
| 681 | if (rate_table->info[rate].valid_single_stream && | 681 | if (rate_table->info[rate].valid_single_stream && |
| 682 | !(ath_rc_priv->ht_cap & WLAN_RC_DS_FLAG)); | 682 | !(ath_rc_priv->ht_cap & WLAN_RC_DS_FLAG)) |
| 683 | return rate; | 683 | return rate; |
| 684 | 684 | ||
| 685 | /* This should not happen */ | 685 | /* This should not happen */ |
diff --git a/drivers/net/wireless/b43/dma.c b/drivers/net/wireless/b43/dma.c index 8701034569fa..de4e804bedf0 100644 --- a/drivers/net/wireless/b43/dma.c +++ b/drivers/net/wireless/b43/dma.c | |||
| @@ -1157,8 +1157,9 @@ struct b43_dmaring *parse_cookie(struct b43_wldev *dev, u16 cookie, int *slot) | |||
| 1157 | } | 1157 | } |
| 1158 | 1158 | ||
| 1159 | static int dma_tx_fragment(struct b43_dmaring *ring, | 1159 | static int dma_tx_fragment(struct b43_dmaring *ring, |
| 1160 | struct sk_buff *skb) | 1160 | struct sk_buff **in_skb) |
| 1161 | { | 1161 | { |
| 1162 | struct sk_buff *skb = *in_skb; | ||
| 1162 | const struct b43_dma_ops *ops = ring->ops; | 1163 | const struct b43_dma_ops *ops = ring->ops; |
| 1163 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); | 1164 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); |
| 1164 | u8 *header; | 1165 | u8 *header; |
| @@ -1224,8 +1225,14 @@ static int dma_tx_fragment(struct b43_dmaring *ring, | |||
| 1224 | } | 1225 | } |
| 1225 | 1226 | ||
| 1226 | memcpy(skb_put(bounce_skb, skb->len), skb->data, skb->len); | 1227 | memcpy(skb_put(bounce_skb, skb->len), skb->data, skb->len); |
| 1228 | memcpy(bounce_skb->cb, skb->cb, sizeof(skb->cb)); | ||
| 1229 | bounce_skb->dev = skb->dev; | ||
| 1230 | skb_set_queue_mapping(bounce_skb, skb_get_queue_mapping(skb)); | ||
| 1231 | info = IEEE80211_SKB_CB(bounce_skb); | ||
| 1232 | |||
| 1227 | dev_kfree_skb_any(skb); | 1233 | dev_kfree_skb_any(skb); |
| 1228 | skb = bounce_skb; | 1234 | skb = bounce_skb; |
| 1235 | *in_skb = bounce_skb; | ||
| 1229 | meta->skb = skb; | 1236 | meta->skb = skb; |
| 1230 | meta->dmaaddr = map_descbuffer(ring, skb->data, skb->len, 1); | 1237 | meta->dmaaddr = map_descbuffer(ring, skb->data, skb->len, 1); |
| 1231 | if (b43_dma_mapping_error(ring, meta->dmaaddr, skb->len, 1)) { | 1238 | if (b43_dma_mapping_error(ring, meta->dmaaddr, skb->len, 1)) { |
| @@ -1355,7 +1362,11 @@ int b43_dma_tx(struct b43_wldev *dev, struct sk_buff *skb) | |||
| 1355 | * static, so we don't need to store it per frame. */ | 1362 | * static, so we don't need to store it per frame. */ |
| 1356 | ring->queue_prio = skb_get_queue_mapping(skb); | 1363 | ring->queue_prio = skb_get_queue_mapping(skb); |
| 1357 | 1364 | ||
| 1358 | err = dma_tx_fragment(ring, skb); | 1365 | /* dma_tx_fragment might reallocate the skb, so invalidate pointers pointing |
| 1366 | * into the skb data or cb now. */ | ||
| 1367 | hdr = NULL; | ||
| 1368 | info = NULL; | ||
| 1369 | err = dma_tx_fragment(ring, &skb); | ||
| 1359 | if (unlikely(err == -ENOKEY)) { | 1370 | if (unlikely(err == -ENOKEY)) { |
| 1360 | /* Drop this packet, as we don't have the encryption key | 1371 | /* Drop this packet, as we don't have the encryption key |
| 1361 | * anymore and must not transmit it unencrypted. */ | 1372 | * anymore and must not transmit it unencrypted. */ |
diff --git a/drivers/net/wireless/ipw2x00/ipw2100.c b/drivers/net/wireless/ipw2x00/ipw2100.c index 240cff1e6979..a741d37fd96f 100644 --- a/drivers/net/wireless/ipw2x00/ipw2100.c +++ b/drivers/net/wireless/ipw2x00/ipw2100.c | |||
| @@ -6325,8 +6325,10 @@ static int ipw2100_pci_init_one(struct pci_dev *pci_dev, | |||
| 6325 | 6325 | ||
| 6326 | fail: | 6326 | fail: |
| 6327 | if (dev) { | 6327 | if (dev) { |
| 6328 | if (registered) | 6328 | if (registered) { |
| 6329 | unregister_ieee80211(priv->ieee); | ||
| 6329 | unregister_netdev(dev); | 6330 | unregister_netdev(dev); |
| 6331 | } | ||
| 6330 | 6332 | ||
| 6331 | ipw2100_hw_stop_adapter(priv); | 6333 | ipw2100_hw_stop_adapter(priv); |
| 6332 | 6334 | ||
| @@ -6383,6 +6385,7 @@ static void __devexit ipw2100_pci_remove_one(struct pci_dev *pci_dev) | |||
| 6383 | /* Unregister the device first - this results in close() | 6385 | /* Unregister the device first - this results in close() |
| 6384 | * being called if the device is open. If we free storage | 6386 | * being called if the device is open. If we free storage |
| 6385 | * first, then close() will crash. */ | 6387 | * first, then close() will crash. */ |
| 6388 | unregister_ieee80211(priv->ieee); | ||
| 6386 | unregister_netdev(dev); | 6389 | unregister_netdev(dev); |
| 6387 | 6390 | ||
| 6388 | /* ipw2100_down will ensure that there is no more pending work | 6391 | /* ipw2100_down will ensure that there is no more pending work |
diff --git a/drivers/net/wireless/ipw2x00/ipw2200.c b/drivers/net/wireless/ipw2x00/ipw2200.c index 827824d45de9..9b0f2c0646e0 100644 --- a/drivers/net/wireless/ipw2x00/ipw2200.c +++ b/drivers/net/wireless/ipw2x00/ipw2200.c | |||
| @@ -11822,6 +11822,7 @@ static int __devinit ipw_pci_probe(struct pci_dev *pdev, | |||
| 11822 | if (err) { | 11822 | if (err) { |
| 11823 | IPW_ERROR("Failed to register promiscuous network " | 11823 | IPW_ERROR("Failed to register promiscuous network " |
| 11824 | "device (error %d).\n", err); | 11824 | "device (error %d).\n", err); |
| 11825 | unregister_ieee80211(priv->ieee); | ||
| 11825 | unregister_netdev(priv->net_dev); | 11826 | unregister_netdev(priv->net_dev); |
| 11826 | goto out_remove_sysfs; | 11827 | goto out_remove_sysfs; |
| 11827 | } | 11828 | } |
| @@ -11872,6 +11873,7 @@ static void __devexit ipw_pci_remove(struct pci_dev *pdev) | |||
| 11872 | 11873 | ||
| 11873 | mutex_unlock(&priv->mutex); | 11874 | mutex_unlock(&priv->mutex); |
| 11874 | 11875 | ||
| 11876 | unregister_ieee80211(priv->ieee); | ||
| 11875 | unregister_netdev(priv->net_dev); | 11877 | unregister_netdev(priv->net_dev); |
| 11876 | 11878 | ||
| 11877 | if (priv->rxq) { | 11879 | if (priv->rxq) { |
diff --git a/drivers/net/wireless/ipw2x00/libipw.h b/drivers/net/wireless/ipw2x00/libipw.h index bf45391172f3..f42ade6c2d3e 100644 --- a/drivers/net/wireless/ipw2x00/libipw.h +++ b/drivers/net/wireless/ipw2x00/libipw.h | |||
| @@ -1020,6 +1020,7 @@ static inline int libipw_is_cck_rate(u8 rate) | |||
| 1020 | /* ieee80211.c */ | 1020 | /* ieee80211.c */ |
| 1021 | extern void free_ieee80211(struct net_device *dev, int monitor); | 1021 | extern void free_ieee80211(struct net_device *dev, int monitor); |
| 1022 | extern struct net_device *alloc_ieee80211(int sizeof_priv, int monitor); | 1022 | extern struct net_device *alloc_ieee80211(int sizeof_priv, int monitor); |
| 1023 | extern void unregister_ieee80211(struct libipw_device *ieee); | ||
| 1023 | extern int libipw_change_mtu(struct net_device *dev, int new_mtu); | 1024 | extern int libipw_change_mtu(struct net_device *dev, int new_mtu); |
| 1024 | 1025 | ||
| 1025 | extern void libipw_networks_age(struct libipw_device *ieee, | 1026 | extern void libipw_networks_age(struct libipw_device *ieee, |
diff --git a/drivers/net/wireless/ipw2x00/libipw_module.c b/drivers/net/wireless/ipw2x00/libipw_module.c index a0e9f6aed7da..be5b809ec97a 100644 --- a/drivers/net/wireless/ipw2x00/libipw_module.c +++ b/drivers/net/wireless/ipw2x00/libipw_module.c | |||
| @@ -235,16 +235,19 @@ void free_ieee80211(struct net_device *dev, int monitor) | |||
| 235 | libipw_networks_free(ieee); | 235 | libipw_networks_free(ieee); |
| 236 | 236 | ||
| 237 | /* free cfg80211 resources */ | 237 | /* free cfg80211 resources */ |
| 238 | if (!monitor) { | 238 | if (!monitor) |
| 239 | wiphy_unregister(ieee->wdev.wiphy); | ||
| 240 | kfree(ieee->a_band.channels); | ||
| 241 | kfree(ieee->bg_band.channels); | ||
| 242 | wiphy_free(ieee->wdev.wiphy); | 239 | wiphy_free(ieee->wdev.wiphy); |
| 243 | } | ||
| 244 | 240 | ||
| 245 | free_netdev(dev); | 241 | free_netdev(dev); |
| 246 | } | 242 | } |
| 247 | 243 | ||
| 244 | void unregister_ieee80211(struct libipw_device *ieee) | ||
| 245 | { | ||
| 246 | wiphy_unregister(ieee->wdev.wiphy); | ||
| 247 | kfree(ieee->a_band.channels); | ||
| 248 | kfree(ieee->bg_band.channels); | ||
| 249 | } | ||
| 250 | |||
| 248 | #ifdef CONFIG_LIBIPW_DEBUG | 251 | #ifdef CONFIG_LIBIPW_DEBUG |
| 249 | 252 | ||
| 250 | static int debug = 0; | 253 | static int debug = 0; |
| @@ -330,3 +333,4 @@ module_init(libipw_init); | |||
| 330 | 333 | ||
| 331 | EXPORT_SYMBOL(alloc_ieee80211); | 334 | EXPORT_SYMBOL(alloc_ieee80211); |
| 332 | EXPORT_SYMBOL(free_ieee80211); | 335 | EXPORT_SYMBOL(free_ieee80211); |
| 336 | EXPORT_SYMBOL(unregister_ieee80211); | ||
diff --git a/drivers/net/wireless/libertas/if_usb.c b/drivers/net/wireless/libertas/if_usb.c index 92bc8c5f1ca2..3fac4efa5ac8 100644 --- a/drivers/net/wireless/libertas/if_usb.c +++ b/drivers/net/wireless/libertas/if_usb.c | |||
| @@ -508,7 +508,7 @@ static int __if_usb_submit_rx_urb(struct if_usb_card *cardp, | |||
| 508 | /* Fill the receive configuration URB and initialise the Rx call back */ | 508 | /* Fill the receive configuration URB and initialise the Rx call back */ |
| 509 | usb_fill_bulk_urb(cardp->rx_urb, cardp->udev, | 509 | usb_fill_bulk_urb(cardp->rx_urb, cardp->udev, |
| 510 | usb_rcvbulkpipe(cardp->udev, cardp->ep_in), | 510 | usb_rcvbulkpipe(cardp->udev, cardp->ep_in), |
| 511 | (void *) (skb->tail + (size_t) IPFIELD_ALIGN_OFFSET), | 511 | skb->data + IPFIELD_ALIGN_OFFSET, |
| 512 | MRVDRV_ETH_RX_PACKET_BUFFER_SIZE, callbackfn, | 512 | MRVDRV_ETH_RX_PACKET_BUFFER_SIZE, callbackfn, |
| 513 | cardp); | 513 | cardp); |
| 514 | 514 | ||
diff --git a/drivers/net/wireless/rt2x00/rt73usb.c b/drivers/net/wireless/rt2x00/rt73usb.c index b8f5ee33445e..14e7bb210075 100644 --- a/drivers/net/wireless/rt2x00/rt73usb.c +++ b/drivers/net/wireless/rt2x00/rt73usb.c | |||
| @@ -2389,10 +2389,13 @@ static struct usb_device_id rt73usb_device_table[] = { | |||
| 2389 | { USB_DEVICE(0x13b1, 0x0023), USB_DEVICE_DATA(&rt73usb_ops) }, | 2389 | { USB_DEVICE(0x13b1, 0x0023), USB_DEVICE_DATA(&rt73usb_ops) }, |
| 2390 | { USB_DEVICE(0x13b1, 0x0028), USB_DEVICE_DATA(&rt73usb_ops) }, | 2390 | { USB_DEVICE(0x13b1, 0x0028), USB_DEVICE_DATA(&rt73usb_ops) }, |
| 2391 | /* MSI */ | 2391 | /* MSI */ |
| 2392 | { USB_DEVICE(0x0db0, 0x4600), USB_DEVICE_DATA(&rt73usb_ops) }, | ||
| 2392 | { USB_DEVICE(0x0db0, 0x6877), USB_DEVICE_DATA(&rt73usb_ops) }, | 2393 | { USB_DEVICE(0x0db0, 0x6877), USB_DEVICE_DATA(&rt73usb_ops) }, |
| 2393 | { USB_DEVICE(0x0db0, 0x6874), USB_DEVICE_DATA(&rt73usb_ops) }, | 2394 | { USB_DEVICE(0x0db0, 0x6874), USB_DEVICE_DATA(&rt73usb_ops) }, |
| 2394 | { USB_DEVICE(0x0db0, 0xa861), USB_DEVICE_DATA(&rt73usb_ops) }, | 2395 | { USB_DEVICE(0x0db0, 0xa861), USB_DEVICE_DATA(&rt73usb_ops) }, |
| 2395 | { USB_DEVICE(0x0db0, 0xa874), USB_DEVICE_DATA(&rt73usb_ops) }, | 2396 | { USB_DEVICE(0x0db0, 0xa874), USB_DEVICE_DATA(&rt73usb_ops) }, |
| 2397 | /* Ovislink */ | ||
| 2398 | { USB_DEVICE(0x1b75, 0x7318), USB_DEVICE_DATA(&rt73usb_ops) }, | ||
| 2396 | /* Ralink */ | 2399 | /* Ralink */ |
| 2397 | { USB_DEVICE(0x04bb, 0x093d), USB_DEVICE_DATA(&rt73usb_ops) }, | 2400 | { USB_DEVICE(0x04bb, 0x093d), USB_DEVICE_DATA(&rt73usb_ops) }, |
| 2398 | { USB_DEVICE(0x148f, 0x2573), USB_DEVICE_DATA(&rt73usb_ops) }, | 2401 | { USB_DEVICE(0x148f, 0x2573), USB_DEVICE_DATA(&rt73usb_ops) }, |
| @@ -2420,6 +2423,8 @@ static struct usb_device_id rt73usb_device_table[] = { | |||
| 2420 | /* Planex */ | 2423 | /* Planex */ |
| 2421 | { USB_DEVICE(0x2019, 0xab01), USB_DEVICE_DATA(&rt73usb_ops) }, | 2424 | { USB_DEVICE(0x2019, 0xab01), USB_DEVICE_DATA(&rt73usb_ops) }, |
| 2422 | { USB_DEVICE(0x2019, 0xab50), USB_DEVICE_DATA(&rt73usb_ops) }, | 2425 | { USB_DEVICE(0x2019, 0xab50), USB_DEVICE_DATA(&rt73usb_ops) }, |
| 2426 | /* WideTell */ | ||
| 2427 | { USB_DEVICE(0x7167, 0x3840), USB_DEVICE_DATA(&rt73usb_ops) }, | ||
| 2423 | /* Zcom */ | 2428 | /* Zcom */ |
| 2424 | { USB_DEVICE(0x0cde, 0x001c), USB_DEVICE_DATA(&rt73usb_ops) }, | 2429 | { USB_DEVICE(0x0cde, 0x001c), USB_DEVICE_DATA(&rt73usb_ops) }, |
| 2425 | /* ZyXEL */ | 2430 | /* ZyXEL */ |
diff --git a/drivers/pcmcia/cs.c b/drivers/pcmcia/cs.c index 934d4bee39a0..698d75cda084 100644 --- a/drivers/pcmcia/cs.c +++ b/drivers/pcmcia/cs.c | |||
| @@ -98,10 +98,13 @@ EXPORT_SYMBOL(pcmcia_socket_list_rwsem); | |||
| 98 | * These functions check for the appropriate struct pcmcia_soket arrays, | 98 | * These functions check for the appropriate struct pcmcia_soket arrays, |
| 99 | * and pass them to the low-level functions pcmcia_{suspend,resume}_socket | 99 | * and pass them to the low-level functions pcmcia_{suspend,resume}_socket |
| 100 | */ | 100 | */ |
| 101 | static int socket_early_resume(struct pcmcia_socket *skt); | ||
| 102 | static int socket_late_resume(struct pcmcia_socket *skt); | ||
| 101 | static int socket_resume(struct pcmcia_socket *skt); | 103 | static int socket_resume(struct pcmcia_socket *skt); |
| 102 | static int socket_suspend(struct pcmcia_socket *skt); | 104 | static int socket_suspend(struct pcmcia_socket *skt); |
| 103 | 105 | ||
| 104 | int pcmcia_socket_dev_suspend(struct device *dev) | 106 | static void pcmcia_socket_dev_run(struct device *dev, |
| 107 | int (*cb)(struct pcmcia_socket *)) | ||
| 105 | { | 108 | { |
| 106 | struct pcmcia_socket *socket; | 109 | struct pcmcia_socket *socket; |
| 107 | 110 | ||
| @@ -110,29 +113,34 @@ int pcmcia_socket_dev_suspend(struct device *dev) | |||
| 110 | if (socket->dev.parent != dev) | 113 | if (socket->dev.parent != dev) |
| 111 | continue; | 114 | continue; |
| 112 | mutex_lock(&socket->skt_mutex); | 115 | mutex_lock(&socket->skt_mutex); |
| 113 | socket_suspend(socket); | 116 | cb(socket); |
| 114 | mutex_unlock(&socket->skt_mutex); | 117 | mutex_unlock(&socket->skt_mutex); |
| 115 | } | 118 | } |
| 116 | up_read(&pcmcia_socket_list_rwsem); | 119 | up_read(&pcmcia_socket_list_rwsem); |
| 120 | } | ||
| 117 | 121 | ||
| 122 | int pcmcia_socket_dev_suspend(struct device *dev) | ||
| 123 | { | ||
| 124 | pcmcia_socket_dev_run(dev, socket_suspend); | ||
| 118 | return 0; | 125 | return 0; |
| 119 | } | 126 | } |
| 120 | EXPORT_SYMBOL(pcmcia_socket_dev_suspend); | 127 | EXPORT_SYMBOL(pcmcia_socket_dev_suspend); |
| 121 | 128 | ||
| 122 | int pcmcia_socket_dev_resume(struct device *dev) | 129 | void pcmcia_socket_dev_early_resume(struct device *dev) |
| 123 | { | 130 | { |
| 124 | struct pcmcia_socket *socket; | 131 | pcmcia_socket_dev_run(dev, socket_early_resume); |
| 132 | } | ||
| 133 | EXPORT_SYMBOL(pcmcia_socket_dev_early_resume); | ||
| 125 | 134 | ||
| 126 | down_read(&pcmcia_socket_list_rwsem); | 135 | void pcmcia_socket_dev_late_resume(struct device *dev) |
| 127 | list_for_each_entry(socket, &pcmcia_socket_list, socket_list) { | 136 | { |
| 128 | if (socket->dev.parent != dev) | 137 | pcmcia_socket_dev_run(dev, socket_late_resume); |
| 129 | continue; | 138 | } |
| 130 | mutex_lock(&socket->skt_mutex); | 139 | EXPORT_SYMBOL(pcmcia_socket_dev_late_resume); |
| 131 | socket_resume(socket); | ||
| 132 | mutex_unlock(&socket->skt_mutex); | ||
| 133 | } | ||
| 134 | up_read(&pcmcia_socket_list_rwsem); | ||
| 135 | 140 | ||
| 141 | int pcmcia_socket_dev_resume(struct device *dev) | ||
| 142 | { | ||
| 143 | pcmcia_socket_dev_run(dev, socket_resume); | ||
| 136 | return 0; | 144 | return 0; |
| 137 | } | 145 | } |
| 138 | EXPORT_SYMBOL(pcmcia_socket_dev_resume); | 146 | EXPORT_SYMBOL(pcmcia_socket_dev_resume); |
| @@ -546,29 +554,24 @@ static int socket_suspend(struct pcmcia_socket *skt) | |||
| 546 | return 0; | 554 | return 0; |
| 547 | } | 555 | } |
| 548 | 556 | ||
| 549 | /* | 557 | static int socket_early_resume(struct pcmcia_socket *skt) |
| 550 | * Resume a socket. If a card is present, verify its CIS against | ||
| 551 | * our cached copy. If they are different, the card has been | ||
| 552 | * replaced, and we need to tell the drivers. | ||
| 553 | */ | ||
| 554 | static int socket_resume(struct pcmcia_socket *skt) | ||
| 555 | { | 558 | { |
| 556 | int ret; | ||
| 557 | |||
| 558 | if (!(skt->state & SOCKET_SUSPEND)) | ||
| 559 | return -EBUSY; | ||
| 560 | |||
| 561 | skt->socket = dead_socket; | 559 | skt->socket = dead_socket; |
| 562 | skt->ops->init(skt); | 560 | skt->ops->init(skt); |
| 563 | skt->ops->set_socket(skt, &skt->socket); | 561 | skt->ops->set_socket(skt, &skt->socket); |
| 562 | if (skt->state & SOCKET_PRESENT) | ||
| 563 | skt->resume_status = socket_setup(skt, resume_delay); | ||
| 564 | return 0; | ||
| 565 | } | ||
| 564 | 566 | ||
| 567 | static int socket_late_resume(struct pcmcia_socket *skt) | ||
| 568 | { | ||
| 565 | if (!(skt->state & SOCKET_PRESENT)) { | 569 | if (!(skt->state & SOCKET_PRESENT)) { |
| 566 | skt->state &= ~SOCKET_SUSPEND; | 570 | skt->state &= ~SOCKET_SUSPEND; |
| 567 | return socket_insert(skt); | 571 | return socket_insert(skt); |
| 568 | } | 572 | } |
| 569 | 573 | ||
| 570 | ret = socket_setup(skt, resume_delay); | 574 | if (skt->resume_status == 0) { |
| 571 | if (ret == 0) { | ||
| 572 | /* | 575 | /* |
| 573 | * FIXME: need a better check here for cardbus cards. | 576 | * FIXME: need a better check here for cardbus cards. |
| 574 | */ | 577 | */ |
| @@ -596,6 +599,20 @@ static int socket_resume(struct pcmcia_socket *skt) | |||
| 596 | return 0; | 599 | return 0; |
| 597 | } | 600 | } |
| 598 | 601 | ||
| 602 | /* | ||
| 603 | * Resume a socket. If a card is present, verify its CIS against | ||
| 604 | * our cached copy. If they are different, the card has been | ||
| 605 | * replaced, and we need to tell the drivers. | ||
| 606 | */ | ||
| 607 | static int socket_resume(struct pcmcia_socket *skt) | ||
| 608 | { | ||
| 609 | if (!(skt->state & SOCKET_SUSPEND)) | ||
| 610 | return -EBUSY; | ||
| 611 | |||
| 612 | socket_early_resume(skt); | ||
| 613 | return socket_late_resume(skt); | ||
| 614 | } | ||
| 615 | |||
| 599 | static void socket_remove(struct pcmcia_socket *skt) | 616 | static void socket_remove(struct pcmcia_socket *skt) |
| 600 | { | 617 | { |
| 601 | dev_printk(KERN_NOTICE, &skt->dev, | 618 | dev_printk(KERN_NOTICE, &skt->dev, |
diff --git a/drivers/pcmcia/yenta_socket.c b/drivers/pcmcia/yenta_socket.c index abe0e44c6e9e..8be4cc447a17 100644 --- a/drivers/pcmcia/yenta_socket.c +++ b/drivers/pcmcia/yenta_socket.c | |||
| @@ -1275,16 +1275,26 @@ static int yenta_dev_resume_noirq(struct device *dev) | |||
| 1275 | if (socket->type && socket->type->restore_state) | 1275 | if (socket->type && socket->type->restore_state) |
| 1276 | socket->type->restore_state(socket); | 1276 | socket->type->restore_state(socket); |
| 1277 | 1277 | ||
| 1278 | return pcmcia_socket_dev_resume(dev); | 1278 | pcmcia_socket_dev_early_resume(dev); |
| 1279 | return 0; | ||
| 1280 | } | ||
| 1281 | |||
| 1282 | static int yenta_dev_resume(struct device *dev) | ||
| 1283 | { | ||
| 1284 | pcmcia_socket_dev_late_resume(dev); | ||
| 1285 | return 0; | ||
| 1279 | } | 1286 | } |
| 1280 | 1287 | ||
| 1281 | static struct dev_pm_ops yenta_pm_ops = { | 1288 | static struct dev_pm_ops yenta_pm_ops = { |
| 1282 | .suspend_noirq = yenta_dev_suspend_noirq, | 1289 | .suspend_noirq = yenta_dev_suspend_noirq, |
| 1283 | .resume_noirq = yenta_dev_resume_noirq, | 1290 | .resume_noirq = yenta_dev_resume_noirq, |
| 1291 | .resume = yenta_dev_resume, | ||
| 1284 | .freeze_noirq = yenta_dev_suspend_noirq, | 1292 | .freeze_noirq = yenta_dev_suspend_noirq, |
| 1285 | .thaw_noirq = yenta_dev_resume_noirq, | 1293 | .thaw_noirq = yenta_dev_resume_noirq, |
| 1294 | .thaw = yenta_dev_resume, | ||
| 1286 | .poweroff_noirq = yenta_dev_suspend_noirq, | 1295 | .poweroff_noirq = yenta_dev_suspend_noirq, |
| 1287 | .restore_noirq = yenta_dev_resume_noirq, | 1296 | .restore_noirq = yenta_dev_resume_noirq, |
| 1297 | .restore = yenta_dev_resume, | ||
| 1288 | }; | 1298 | }; |
| 1289 | 1299 | ||
| 1290 | #define YENTA_PM_OPS (¥ta_pm_ops) | 1300 | #define YENTA_PM_OPS (¥ta_pm_ops) |
diff --git a/drivers/s390/char/sclp_async.c b/drivers/s390/char/sclp_async.c index a4f68e5b9c96..b44462a6c6d3 100644 --- a/drivers/s390/char/sclp_async.c +++ b/drivers/s390/char/sclp_async.c | |||
| @@ -26,7 +26,6 @@ static struct sclp_async_sccb *sccb; | |||
| 26 | static int sclp_async_send_wait(char *message); | 26 | static int sclp_async_send_wait(char *message); |
| 27 | static struct ctl_table_header *callhome_sysctl_header; | 27 | static struct ctl_table_header *callhome_sysctl_header; |
| 28 | static DEFINE_SPINLOCK(sclp_async_lock); | 28 | static DEFINE_SPINLOCK(sclp_async_lock); |
| 29 | static char nodename[64]; | ||
| 30 | #define SCLP_NORMAL_WRITE 0x00 | 29 | #define SCLP_NORMAL_WRITE 0x00 |
| 31 | 30 | ||
| 32 | struct async_evbuf { | 31 | struct async_evbuf { |
| @@ -52,9 +51,10 @@ static struct sclp_register sclp_async_register = { | |||
| 52 | static int call_home_on_panic(struct notifier_block *self, | 51 | static int call_home_on_panic(struct notifier_block *self, |
| 53 | unsigned long event, void *data) | 52 | unsigned long event, void *data) |
| 54 | { | 53 | { |
| 55 | strncat(data, nodename, strlen(nodename)); | 54 | strncat(data, init_utsname()->nodename, |
| 56 | sclp_async_send_wait(data); | 55 | sizeof(init_utsname()->nodename)); |
| 57 | return NOTIFY_DONE; | 56 | sclp_async_send_wait(data); |
| 57 | return NOTIFY_DONE; | ||
| 58 | } | 58 | } |
| 59 | 59 | ||
| 60 | static struct notifier_block call_home_panic_nb = { | 60 | static struct notifier_block call_home_panic_nb = { |
| @@ -68,15 +68,14 @@ static int proc_handler_callhome(struct ctl_table *ctl, int write, | |||
| 68 | { | 68 | { |
| 69 | unsigned long val; | 69 | unsigned long val; |
| 70 | int len, rc; | 70 | int len, rc; |
| 71 | char buf[2]; | 71 | char buf[3]; |
| 72 | 72 | ||
| 73 | if (!*count | (*ppos && !write)) { | 73 | if (!*count || (*ppos && !write)) { |
| 74 | *count = 0; | 74 | *count = 0; |
| 75 | return 0; | 75 | return 0; |
| 76 | } | 76 | } |
| 77 | if (!write) { | 77 | if (!write) { |
| 78 | len = sprintf(buf, "%d\n", callhome_enabled); | 78 | len = snprintf(buf, sizeof(buf), "%d\n", callhome_enabled); |
| 79 | buf[len] = '\0'; | ||
| 80 | rc = copy_to_user(buffer, buf, sizeof(buf)); | 79 | rc = copy_to_user(buffer, buf, sizeof(buf)); |
| 81 | if (rc != 0) | 80 | if (rc != 0) |
| 82 | return -EFAULT; | 81 | return -EFAULT; |
| @@ -171,39 +170,29 @@ static int __init sclp_async_init(void) | |||
| 171 | rc = sclp_register(&sclp_async_register); | 170 | rc = sclp_register(&sclp_async_register); |
| 172 | if (rc) | 171 | if (rc) |
| 173 | return rc; | 172 | return rc; |
| 174 | callhome_sysctl_header = register_sysctl_table(kern_dir_table); | 173 | rc = -EOPNOTSUPP; |
| 175 | if (!callhome_sysctl_header) { | 174 | if (!(sclp_async_register.sclp_receive_mask & EVTYP_ASYNC_MASK)) |
| 176 | rc = -ENOMEM; | ||
| 177 | goto out_sclp; | ||
| 178 | } | ||
| 179 | if (!(sclp_async_register.sclp_receive_mask & EVTYP_ASYNC_MASK)) { | ||
| 180 | rc = -EOPNOTSUPP; | ||
| 181 | goto out_sclp; | 175 | goto out_sclp; |
| 182 | } | ||
| 183 | rc = -ENOMEM; | 176 | rc = -ENOMEM; |
| 177 | callhome_sysctl_header = register_sysctl_table(kern_dir_table); | ||
| 178 | if (!callhome_sysctl_header) | ||
| 179 | goto out_sclp; | ||
| 184 | request = kzalloc(sizeof(struct sclp_req), GFP_KERNEL); | 180 | request = kzalloc(sizeof(struct sclp_req), GFP_KERNEL); |
| 185 | if (!request) | ||
| 186 | goto out_sys; | ||
| 187 | sccb = (struct sclp_async_sccb *) get_zeroed_page(GFP_KERNEL | GFP_DMA); | 181 | sccb = (struct sclp_async_sccb *) get_zeroed_page(GFP_KERNEL | GFP_DMA); |
| 188 | if (!sccb) | 182 | if (!request || !sccb) |
| 189 | goto out_mem; | 183 | goto out_mem; |
| 190 | rc = atomic_notifier_chain_register(&panic_notifier_list, | 184 | rc = atomic_notifier_chain_register(&panic_notifier_list, |
| 191 | &call_home_panic_nb); | 185 | &call_home_panic_nb); |
| 192 | if (rc) | 186 | if (!rc) |
| 193 | goto out_mem; | 187 | goto out; |
| 194 | |||
| 195 | strncpy(nodename, init_utsname()->nodename, 64); | ||
| 196 | return 0; | ||
| 197 | |||
| 198 | out_mem: | 188 | out_mem: |
| 199 | kfree(request); | 189 | kfree(request); |
| 200 | free_page((unsigned long) sccb); | 190 | free_page((unsigned long) sccb); |
| 201 | out_sys: | ||
| 202 | unregister_sysctl_table(callhome_sysctl_header); | 191 | unregister_sysctl_table(callhome_sysctl_header); |
| 203 | out_sclp: | 192 | out_sclp: |
| 204 | sclp_unregister(&sclp_async_register); | 193 | sclp_unregister(&sclp_async_register); |
| 194 | out: | ||
| 205 | return rc; | 195 | return rc; |
| 206 | |||
| 207 | } | 196 | } |
| 208 | module_init(sclp_async_init); | 197 | module_init(sclp_async_init); |
| 209 | 198 | ||
diff --git a/drivers/s390/net/smsgiucv.c b/drivers/s390/net/smsgiucv.c index 102000d1af6f..3012355f8304 100644 --- a/drivers/s390/net/smsgiucv.c +++ b/drivers/s390/net/smsgiucv.c | |||
| @@ -158,7 +158,12 @@ static int smsg_pm_restore_thaw(struct device *dev) | |||
| 158 | smsg_path->flags = 0; | 158 | smsg_path->flags = 0; |
| 159 | rc = iucv_path_connect(smsg_path, &smsg_handler, "*MSG ", | 159 | rc = iucv_path_connect(smsg_path, &smsg_handler, "*MSG ", |
| 160 | NULL, NULL, NULL); | 160 | NULL, NULL, NULL); |
| 161 | printk(KERN_ERR "iucv_path_connect returned with rc %i\n", rc); | 161 | #ifdef CONFIG_PM_DEBUG |
| 162 | if (rc) | ||
| 163 | printk(KERN_ERR | ||
| 164 | "iucv_path_connect returned with rc %i\n", rc); | ||
| 165 | #endif | ||
| 166 | cpcmd("SET SMSG IUCV", NULL, 0, NULL); | ||
| 162 | } | 167 | } |
| 163 | return 0; | 168 | return 0; |
| 164 | } | 169 | } |
diff --git a/drivers/scsi/dpt_i2o.c b/drivers/scsi/dpt_i2o.c index 7d1aac31ec8d..496764349c41 100644 --- a/drivers/scsi/dpt_i2o.c +++ b/drivers/scsi/dpt_i2o.c | |||
| @@ -1919,7 +1919,7 @@ static int adpt_i2o_passthru(adpt_hba* pHba, u32 __user *arg) | |||
| 1919 | size = size>>16; | 1919 | size = size>>16; |
| 1920 | size *= 4; | 1920 | size *= 4; |
| 1921 | if (size > MAX_MESSAGE_SIZE) { | 1921 | if (size > MAX_MESSAGE_SIZE) { |
| 1922 | rcode = EINVAL; | 1922 | rcode = -EINVAL; |
| 1923 | goto cleanup; | 1923 | goto cleanup; |
| 1924 | } | 1924 | } |
| 1925 | /* Copy in the user's I2O command */ | 1925 | /* Copy in the user's I2O command */ |
diff --git a/drivers/serial/serial_cs.c b/drivers/serial/serial_cs.c index ff4617e21426..7c7914f5fa02 100644 --- a/drivers/serial/serial_cs.c +++ b/drivers/serial/serial_cs.c | |||
| @@ -879,10 +879,10 @@ static struct pcmcia_device_id serial_ids[] = { | |||
| 879 | PCMCIA_MFC_DEVICE_CIS_MANF_CARD(1, 0x0175, 0x0000, "cis/DP83903.cis"), | 879 | PCMCIA_MFC_DEVICE_CIS_MANF_CARD(1, 0x0175, 0x0000, "cis/DP83903.cis"), |
| 880 | PCMCIA_MFC_DEVICE_CIS_MANF_CARD(1, 0x0101, 0x0035, "cis/3CXEM556.cis"), | 880 | PCMCIA_MFC_DEVICE_CIS_MANF_CARD(1, 0x0101, 0x0035, "cis/3CXEM556.cis"), |
| 881 | PCMCIA_MFC_DEVICE_CIS_MANF_CARD(1, 0x0101, 0x003d, "cis/3CXEM556.cis"), | 881 | PCMCIA_MFC_DEVICE_CIS_MANF_CARD(1, 0x0101, 0x003d, "cis/3CXEM556.cis"), |
| 882 | PCMCIA_DEVICE_CIS_PROD_ID12("Sierra Wireless", "AC850", 0xd85f6206, 0x42a2c018, "SW_8xx_SER.cis"), /* Sierra Wireless AC850 3G Network Adapter R1 */ | 882 | PCMCIA_DEVICE_CIS_PROD_ID12("Sierra Wireless", "AC850", 0xd85f6206, 0x42a2c018, "cis/SW_8xx_SER.cis"), /* Sierra Wireless AC850 3G Network Adapter R1 */ |
| 883 | PCMCIA_DEVICE_CIS_MANF_CARD(0x0192, 0x0710, "SW_7xx_SER.cis"), /* Sierra Wireless AC710/AC750 GPRS Network Adapter R1 */ | 883 | PCMCIA_DEVICE_CIS_PROD_ID12("Sierra Wireless", "AC710/AC750", 0xd85f6206, 0x761b11e0, "cis/SW_7xx_SER.cis"), /* Sierra Wireless AC710/AC750 GPRS Network Adapter R1 */ |
| 884 | PCMCIA_DEVICE_CIS_MANF_CARD(0x0192, 0xa555, "SW_555_SER.cis"), /* Sierra Aircard 555 CDMA 1xrtt Modem -- pre update */ | 884 | PCMCIA_DEVICE_CIS_MANF_CARD(0x0192, 0xa555, "cis/SW_555_SER.cis"), /* Sierra Aircard 555 CDMA 1xrtt Modem -- pre update */ |
| 885 | PCMCIA_DEVICE_CIS_MANF_CARD(0x013f, 0xa555, "SW_555_SER.cis"), /* Sierra Aircard 555 CDMA 1xrtt Modem -- post update */ | 885 | PCMCIA_DEVICE_CIS_MANF_CARD(0x013f, 0xa555, "cis/SW_555_SER.cis"), /* Sierra Aircard 555 CDMA 1xrtt Modem -- post update */ |
| 886 | PCMCIA_DEVICE_CIS_PROD_ID12("MultiTech", "PCMCIA 56K DataFax", 0x842047ee, 0xc2efcf03, "cis/MT5634ZLX.cis"), | 886 | PCMCIA_DEVICE_CIS_PROD_ID12("MultiTech", "PCMCIA 56K DataFax", 0x842047ee, 0xc2efcf03, "cis/MT5634ZLX.cis"), |
| 887 | PCMCIA_DEVICE_CIS_PROD_ID12("ADVANTECH", "COMpad-32/85B-2", 0x96913a85, 0x27ab5437, "cis/COMpad2.cis"), | 887 | PCMCIA_DEVICE_CIS_PROD_ID12("ADVANTECH", "COMpad-32/85B-2", 0x96913a85, 0x27ab5437, "cis/COMpad2.cis"), |
| 888 | PCMCIA_DEVICE_CIS_PROD_ID12("ADVANTECH", "COMpad-32/85B-4", 0x96913a85, 0xcec8f102, "cis/COMpad4.cis"), | 888 | PCMCIA_DEVICE_CIS_PROD_ID12("ADVANTECH", "COMpad-32/85B-4", 0x96913a85, 0xcec8f102, "cis/COMpad4.cis"), |
diff --git a/drivers/staging/Kconfig b/drivers/staging/Kconfig index 7df3ba4f1f4d..d21b3469f6d7 100644 --- a/drivers/staging/Kconfig +++ b/drivers/staging/Kconfig | |||
| @@ -93,8 +93,6 @@ source "drivers/staging/dst/Kconfig" | |||
| 93 | 93 | ||
| 94 | source "drivers/staging/pohmelfs/Kconfig" | 94 | source "drivers/staging/pohmelfs/Kconfig" |
| 95 | 95 | ||
| 96 | source "drivers/staging/stlc45xx/Kconfig" | ||
| 97 | |||
| 98 | source "drivers/staging/b3dfg/Kconfig" | 96 | source "drivers/staging/b3dfg/Kconfig" |
| 99 | 97 | ||
| 100 | source "drivers/staging/phison/Kconfig" | 98 | source "drivers/staging/phison/Kconfig" |
diff --git a/drivers/staging/Makefile b/drivers/staging/Makefile index 747571172269..8cbf1aebea2e 100644 --- a/drivers/staging/Makefile +++ b/drivers/staging/Makefile | |||
| @@ -29,7 +29,6 @@ obj-$(CONFIG_ANDROID) += android/ | |||
| 29 | obj-$(CONFIG_ANDROID) += dream/ | 29 | obj-$(CONFIG_ANDROID) += dream/ |
| 30 | obj-$(CONFIG_DST) += dst/ | 30 | obj-$(CONFIG_DST) += dst/ |
| 31 | obj-$(CONFIG_POHMELFS) += pohmelfs/ | 31 | obj-$(CONFIG_POHMELFS) += pohmelfs/ |
| 32 | obj-$(CONFIG_STLC45XX) += stlc45xx/ | ||
| 33 | obj-$(CONFIG_B3DFG) += b3dfg/ | 32 | obj-$(CONFIG_B3DFG) += b3dfg/ |
| 34 | obj-$(CONFIG_IDE_PHISON) += phison/ | 33 | obj-$(CONFIG_IDE_PHISON) += phison/ |
| 35 | obj-$(CONFIG_PLAN9AUTH) += p9auth/ | 34 | obj-$(CONFIG_PLAN9AUTH) += p9auth/ |
diff --git a/drivers/staging/android/Kconfig b/drivers/staging/android/Kconfig index 247194992374..eb675635ae60 100644 --- a/drivers/staging/android/Kconfig +++ b/drivers/staging/android/Kconfig | |||
| @@ -2,6 +2,7 @@ menu "Android" | |||
| 2 | 2 | ||
| 3 | config ANDROID | 3 | config ANDROID |
| 4 | bool "Android Drivers" | 4 | bool "Android Drivers" |
| 5 | depends on BROKEN | ||
| 5 | default N | 6 | default N |
| 6 | ---help--- | 7 | ---help--- |
| 7 | Enable support for various drivers needed on the Android platform | 8 | Enable support for various drivers needed on the Android platform |
diff --git a/drivers/staging/hv/ChannelMgmt.h b/drivers/staging/hv/ChannelMgmt.h index a839d8fe6cec..fa973d86b624 100644 --- a/drivers/staging/hv/ChannelMgmt.h +++ b/drivers/staging/hv/ChannelMgmt.h | |||
| @@ -26,6 +26,7 @@ | |||
| 26 | #define _CHANNEL_MGMT_H_ | 26 | #define _CHANNEL_MGMT_H_ |
| 27 | 27 | ||
| 28 | #include <linux/list.h> | 28 | #include <linux/list.h> |
| 29 | #include <linux/timer.h> | ||
| 29 | #include "RingBuffer.h" | 30 | #include "RingBuffer.h" |
| 30 | #include "VmbusChannelInterface.h" | 31 | #include "VmbusChannelInterface.h" |
| 31 | #include "VmbusPacketFormat.h" | 32 | #include "VmbusPacketFormat.h" |
| @@ -54,7 +55,7 @@ enum vmbus_channel_message_type { | |||
| 54 | ChannelMessageViewRangeRemove = 18, | 55 | ChannelMessageViewRangeRemove = 18, |
| 55 | #endif | 56 | #endif |
| 56 | ChannelMessageCount | 57 | ChannelMessageCount |
| 57 | } __attribute__((packed)); | 58 | }; |
| 58 | 59 | ||
| 59 | struct vmbus_channel_message_header { | 60 | struct vmbus_channel_message_header { |
| 60 | enum vmbus_channel_message_type MessageType; | 61 | enum vmbus_channel_message_type MessageType; |
diff --git a/drivers/staging/hv/NetVsc.c b/drivers/staging/hv/NetVsc.c index 1610b845198f..d384c0ddf069 100644 --- a/drivers/staging/hv/NetVsc.c +++ b/drivers/staging/hv/NetVsc.c | |||
| @@ -1052,7 +1052,7 @@ static void NetVscOnReceive(struct hv_device *Device, | |||
| 1052 | */ | 1052 | */ |
| 1053 | spin_lock_irqsave(&netDevice->receive_packet_list_lock, flags); | 1053 | spin_lock_irqsave(&netDevice->receive_packet_list_lock, flags); |
| 1054 | while (!list_empty(&netDevice->ReceivePacketList)) { | 1054 | while (!list_empty(&netDevice->ReceivePacketList)) { |
| 1055 | list_move_tail(&netDevice->ReceivePacketList, &listHead); | 1055 | list_move_tail(netDevice->ReceivePacketList.next, &listHead); |
| 1056 | if (++count == vmxferpagePacket->RangeCount + 1) | 1056 | if (++count == vmxferpagePacket->RangeCount + 1) |
| 1057 | break; | 1057 | break; |
| 1058 | } | 1058 | } |
| @@ -1071,7 +1071,7 @@ static void NetVscOnReceive(struct hv_device *Device, | |||
| 1071 | /* Return it to the freelist */ | 1071 | /* Return it to the freelist */ |
| 1072 | spin_lock_irqsave(&netDevice->receive_packet_list_lock, flags); | 1072 | spin_lock_irqsave(&netDevice->receive_packet_list_lock, flags); |
| 1073 | for (i = count; i != 0; i--) { | 1073 | for (i = count; i != 0; i--) { |
| 1074 | list_move_tail(&listHead, | 1074 | list_move_tail(listHead.next, |
| 1075 | &netDevice->ReceivePacketList); | 1075 | &netDevice->ReceivePacketList); |
| 1076 | } | 1076 | } |
| 1077 | spin_unlock_irqrestore(&netDevice->receive_packet_list_lock, | 1077 | spin_unlock_irqrestore(&netDevice->receive_packet_list_lock, |
| @@ -1085,8 +1085,7 @@ static void NetVscOnReceive(struct hv_device *Device, | |||
| 1085 | } | 1085 | } |
| 1086 | 1086 | ||
| 1087 | /* Remove the 1st packet to represent the xfer page packet itself */ | 1087 | /* Remove the 1st packet to represent the xfer page packet itself */ |
| 1088 | xferpagePacket = list_entry(&listHead, struct xferpage_packet, | 1088 | xferpagePacket = (struct xferpage_packet*)listHead.next; |
| 1089 | ListEntry); | ||
| 1090 | list_del(&xferpagePacket->ListEntry); | 1089 | list_del(&xferpagePacket->ListEntry); |
| 1091 | 1090 | ||
| 1092 | /* This is how much we can satisfy */ | 1091 | /* This is how much we can satisfy */ |
| @@ -1102,8 +1101,7 @@ static void NetVscOnReceive(struct hv_device *Device, | |||
| 1102 | 1101 | ||
| 1103 | /* Each range represents 1 RNDIS pkt that contains 1 ethernet frame */ | 1102 | /* Each range represents 1 RNDIS pkt that contains 1 ethernet frame */ |
| 1104 | for (i = 0; i < (count - 1); i++) { | 1103 | for (i = 0; i < (count - 1); i++) { |
| 1105 | netvscPacket = list_entry(&listHead, struct hv_netvsc_packet, | 1104 | netvscPacket = (struct hv_netvsc_packet*)listHead.next; |
| 1106 | ListEntry); | ||
| 1107 | list_del(&netvscPacket->ListEntry); | 1105 | list_del(&netvscPacket->ListEntry); |
| 1108 | 1106 | ||
| 1109 | /* Initialize the netvsc packet */ | 1107 | /* Initialize the netvsc packet */ |
diff --git a/drivers/staging/hv/TODO b/drivers/staging/hv/TODO index 4d390b237742..dbfbde937a66 100644 --- a/drivers/staging/hv/TODO +++ b/drivers/staging/hv/TODO | |||
| @@ -1,11 +1,17 @@ | |||
| 1 | TODO: | 1 | TODO: |
| 2 | - fix remaining checkpatch warnings and errors | 2 | - fix remaining checkpatch warnings and errors |
| 3 | - use of /** when it is not a kerneldoc header | ||
| 3 | - remove RingBuffer.c to us in-kernel ringbuffer functions instead. | 4 | - remove RingBuffer.c to us in-kernel ringbuffer functions instead. |
| 4 | - audit the vmbus to verify it is working properly with the | 5 | - audit the vmbus to verify it is working properly with the |
| 5 | driver model | 6 | driver model |
| 7 | - convert vmbus driver interface function pointer tables | ||
| 8 | to constant, a.k.a vmbus_ops | ||
| 6 | - see if the vmbus can be merged with the other virtual busses | 9 | - see if the vmbus can be merged with the other virtual busses |
| 7 | in the kernel | 10 | in the kernel |
| 8 | - audit the network driver | 11 | - audit the network driver |
| 12 | - use existing net_device_stats struct in network device | ||
| 13 | - checking for carrier inside open is wrong, network device API | ||
| 14 | confusion?? | ||
| 9 | - audit the block driver | 15 | - audit the block driver |
| 10 | - audit the scsi driver | 16 | - audit the scsi driver |
| 11 | 17 | ||
diff --git a/drivers/staging/hv/osd.h b/drivers/staging/hv/osd.h index 9504604c72bd..ce064e8ea644 100644 --- a/drivers/staging/hv/osd.h +++ b/drivers/staging/hv/osd.h | |||
| @@ -25,6 +25,7 @@ | |||
| 25 | #ifndef _OSD_H_ | 25 | #ifndef _OSD_H_ |
| 26 | #define _OSD_H_ | 26 | #define _OSD_H_ |
| 27 | 27 | ||
| 28 | #include <linux/workqueue.h> | ||
| 28 | 29 | ||
| 29 | /* Defines */ | 30 | /* Defines */ |
| 30 | #define ALIGN_UP(value, align) (((value) & (align-1)) ? \ | 31 | #define ALIGN_UP(value, align) (((value) & (align-1)) ? \ |
diff --git a/drivers/staging/hv/vmbus_drv.c b/drivers/staging/hv/vmbus_drv.c index 582318f10222..894eecfc63ca 100644 --- a/drivers/staging/hv/vmbus_drv.c +++ b/drivers/staging/hv/vmbus_drv.c | |||
| @@ -507,12 +507,12 @@ static struct hv_device *vmbus_child_device_create(struct hv_guid *type, | |||
| 507 | 507 | ||
| 508 | child_device_obj = &child_device_ctx->device_obj; | 508 | child_device_obj = &child_device_ctx->device_obj; |
| 509 | child_device_obj->context = context; | 509 | child_device_obj->context = context; |
| 510 | memcpy(&child_device_obj->deviceType, &type, sizeof(struct hv_guid)); | 510 | memcpy(&child_device_obj->deviceType, type, sizeof(struct hv_guid)); |
| 511 | memcpy(&child_device_obj->deviceInstance, &instance, | 511 | memcpy(&child_device_obj->deviceInstance, instance, |
| 512 | sizeof(struct hv_guid)); | 512 | sizeof(struct hv_guid)); |
| 513 | 513 | ||
| 514 | memcpy(&child_device_ctx->class_id, &type, sizeof(struct hv_guid)); | 514 | memcpy(&child_device_ctx->class_id, type, sizeof(struct hv_guid)); |
| 515 | memcpy(&child_device_ctx->device_id, &instance, sizeof(struct hv_guid)); | 515 | memcpy(&child_device_ctx->device_id, instance, sizeof(struct hv_guid)); |
| 516 | 516 | ||
| 517 | DPRINT_EXIT(VMBUS_DRV); | 517 | DPRINT_EXIT(VMBUS_DRV); |
| 518 | 518 | ||
| @@ -537,18 +537,7 @@ static int vmbus_child_device_register(struct hv_device *root_device_obj, | |||
| 537 | DPRINT_DBG(VMBUS_DRV, "child device (%p) registering", | 537 | DPRINT_DBG(VMBUS_DRV, "child device (%p) registering", |
| 538 | child_device_ctx); | 538 | child_device_ctx); |
| 539 | 539 | ||
| 540 | /* Make sure we are not registered already */ | 540 | /* Set the device name. Otherwise, device_register() will fail. */ |
| 541 | if (strlen(dev_name(&child_device_ctx->device)) != 0) { | ||
| 542 | DPRINT_ERR(VMBUS_DRV, | ||
| 543 | "child device (%p) already registered - busid %s", | ||
| 544 | child_device_ctx, | ||
| 545 | dev_name(&child_device_ctx->device)); | ||
| 546 | |||
| 547 | ret = -1; | ||
| 548 | goto Cleanup; | ||
| 549 | } | ||
| 550 | |||
| 551 | /* Set the device bus id. Otherwise, device_register()will fail. */ | ||
| 552 | dev_set_name(&child_device_ctx->device, "vmbus_0_%d", | 541 | dev_set_name(&child_device_ctx->device, "vmbus_0_%d", |
| 553 | atomic_inc_return(&device_num)); | 542 | atomic_inc_return(&device_num)); |
| 554 | 543 | ||
| @@ -573,7 +562,6 @@ static int vmbus_child_device_register(struct hv_device *root_device_obj, | |||
| 573 | DPRINT_INFO(VMBUS_DRV, "child device (%p) registered", | 562 | DPRINT_INFO(VMBUS_DRV, "child device (%p) registered", |
| 574 | &child_device_ctx->device); | 563 | &child_device_ctx->device); |
| 575 | 564 | ||
| 576 | Cleanup: | ||
| 577 | DPRINT_EXIT(VMBUS_DRV); | 565 | DPRINT_EXIT(VMBUS_DRV); |
| 578 | 566 | ||
| 579 | return ret; | 567 | return ret; |
| @@ -623,8 +611,6 @@ static void vmbus_child_device_destroy(struct hv_device *device_obj) | |||
| 623 | static int vmbus_uevent(struct device *device, struct kobj_uevent_env *env) | 611 | static int vmbus_uevent(struct device *device, struct kobj_uevent_env *env) |
| 624 | { | 612 | { |
| 625 | struct device_context *device_ctx = device_to_device_context(device); | 613 | struct device_context *device_ctx = device_to_device_context(device); |
| 626 | int i = 0; | ||
| 627 | int len = 0; | ||
| 628 | int ret; | 614 | int ret; |
| 629 | 615 | ||
| 630 | DPRINT_ENTER(VMBUS_DRV); | 616 | DPRINT_ENTER(VMBUS_DRV); |
| @@ -644,8 +630,6 @@ static int vmbus_uevent(struct device *device, struct kobj_uevent_env *env) | |||
| 644 | device_ctx->class_id.data[14], | 630 | device_ctx->class_id.data[14], |
| 645 | device_ctx->class_id.data[15]); | 631 | device_ctx->class_id.data[15]); |
| 646 | 632 | ||
| 647 | env->envp_idx = i; | ||
| 648 | env->buflen = len; | ||
| 649 | ret = add_uevent_var(env, "VMBUS_DEVICE_CLASS_GUID={" | 633 | ret = add_uevent_var(env, "VMBUS_DEVICE_CLASS_GUID={" |
| 650 | "%02x%02x%02x%02x-%02x%02x-%02x%02x-" | 634 | "%02x%02x%02x%02x-%02x%02x-%02x%02x-" |
| 651 | "%02x%02x%02x%02x%02x%02x%02x%02x}", | 635 | "%02x%02x%02x%02x%02x%02x%02x%02x}", |
| @@ -691,8 +675,6 @@ static int vmbus_uevent(struct device *device, struct kobj_uevent_env *env) | |||
| 691 | if (ret) | 675 | if (ret) |
| 692 | return ret; | 676 | return ret; |
| 693 | 677 | ||
| 694 | env->envp[env->envp_idx] = NULL; | ||
| 695 | |||
| 696 | DPRINT_EXIT(VMBUS_DRV); | 678 | DPRINT_EXIT(VMBUS_DRV); |
| 697 | 679 | ||
| 698 | return 0; | 680 | return 0; |
diff --git a/drivers/staging/otus/Kconfig b/drivers/staging/otus/Kconfig index d549d08fd495..f6cc2625e341 100644 --- a/drivers/staging/otus/Kconfig +++ b/drivers/staging/otus/Kconfig | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | config OTUS | 1 | config OTUS |
| 2 | tristate "Atheros OTUS 802.11n USB wireless support" | 2 | tristate "Atheros OTUS 802.11n USB wireless support" |
| 3 | depends on USB && WLAN_80211 && MAC80211 | 3 | depends on USB && WLAN && MAC80211 |
| 4 | default N | 4 | default N |
| 5 | ---help--- | 5 | ---help--- |
| 6 | Enable support for Atheros 802.11n USB hardware: | 6 | Enable support for Atheros 802.11n USB hardware: |
diff --git a/drivers/staging/panel/panel.c b/drivers/staging/panel/panel.c index dd7d3fde9699..4ce399b6d237 100644 --- a/drivers/staging/panel/panel.c +++ b/drivers/staging/panel/panel.c | |||
| @@ -2071,11 +2071,15 @@ static void panel_detach(struct parport *port) | |||
| 2071 | return; | 2071 | return; |
| 2072 | } | 2072 | } |
| 2073 | 2073 | ||
| 2074 | if (keypad_enabled && keypad_initialized) | 2074 | if (keypad_enabled && keypad_initialized) { |
| 2075 | misc_deregister(&keypad_dev); | 2075 | misc_deregister(&keypad_dev); |
| 2076 | keypad_initialized = 0; | ||
| 2077 | } | ||
| 2076 | 2078 | ||
| 2077 | if (lcd_enabled && lcd_initialized) | 2079 | if (lcd_enabled && lcd_initialized) { |
| 2078 | misc_deregister(&lcd_dev); | 2080 | misc_deregister(&lcd_dev); |
| 2081 | lcd_initialized = 0; | ||
| 2082 | } | ||
| 2079 | 2083 | ||
| 2080 | parport_release(pprt); | 2084 | parport_release(pprt); |
| 2081 | parport_unregister_device(pprt); | 2085 | parport_unregister_device(pprt); |
| @@ -2211,13 +2215,16 @@ static void __exit panel_cleanup_module(void) | |||
| 2211 | del_timer(&scan_timer); | 2215 | del_timer(&scan_timer); |
| 2212 | 2216 | ||
| 2213 | if (pprt != NULL) { | 2217 | if (pprt != NULL) { |
| 2214 | if (keypad_enabled) | 2218 | if (keypad_enabled) { |
| 2215 | misc_deregister(&keypad_dev); | 2219 | misc_deregister(&keypad_dev); |
| 2220 | keypad_initialized = 0; | ||
| 2221 | } | ||
| 2216 | 2222 | ||
| 2217 | if (lcd_enabled) { | 2223 | if (lcd_enabled) { |
| 2218 | panel_lcd_print("\x0cLCD driver " PANEL_VERSION | 2224 | panel_lcd_print("\x0cLCD driver " PANEL_VERSION |
| 2219 | "\nunloaded.\x1b[Lc\x1b[Lb\x1b[L-"); | 2225 | "\nunloaded.\x1b[Lc\x1b[Lb\x1b[L-"); |
| 2220 | misc_deregister(&lcd_dev); | 2226 | misc_deregister(&lcd_dev); |
| 2227 | lcd_initialized = 0; | ||
| 2221 | } | 2228 | } |
| 2222 | 2229 | ||
| 2223 | /* TODO: free all input signals */ | 2230 | /* TODO: free all input signals */ |
diff --git a/drivers/staging/rt2860/Kconfig b/drivers/staging/rt2860/Kconfig index 7f44e5e72463..efe38e25c5ed 100644 --- a/drivers/staging/rt2860/Kconfig +++ b/drivers/staging/rt2860/Kconfig | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | config RT2860 | 1 | config RT2860 |
| 2 | tristate "Ralink 2860 wireless support" | 2 | tristate "Ralink 2860 wireless support" |
| 3 | depends on PCI && X86 && WLAN_80211 | 3 | depends on PCI && X86 && WLAN |
| 4 | ---help--- | 4 | ---help--- |
| 5 | This is an experimental driver for the Ralink 2860 wireless chip. | 5 | This is an experimental driver for the Ralink 2860 wireless chip. |
diff --git a/drivers/staging/rt2870/Kconfig b/drivers/staging/rt2870/Kconfig index 76841f6dea93..aea5c8221810 100644 --- a/drivers/staging/rt2870/Kconfig +++ b/drivers/staging/rt2870/Kconfig | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | config RT2870 | 1 | config RT2870 |
| 2 | tristate "Ralink 2870/3070 wireless support" | 2 | tristate "Ralink 2870/3070 wireless support" |
| 3 | depends on USB && X86 && WLAN_80211 | 3 | depends on USB && X86 && WLAN |
| 4 | ---help--- | 4 | ---help--- |
| 5 | This is an experimental driver for the Ralink xx70 wireless chips. | 5 | This is an experimental driver for the Ralink xx70 wireless chips. |
diff --git a/drivers/staging/rt3090/Kconfig b/drivers/staging/rt3090/Kconfig index 255e8eaa4836..2b3f745d72b7 100644 --- a/drivers/staging/rt3090/Kconfig +++ b/drivers/staging/rt3090/Kconfig | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | config RT3090 | 1 | config RT3090 |
| 2 | tristate "Ralink 3090 wireless support" | 2 | tristate "Ralink 3090 wireless support" |
| 3 | depends on PCI && X86 && WLAN_80211 | 3 | depends on PCI && X86 && WLAN |
| 4 | ---help--- | 4 | ---help--- |
| 5 | This is an experimental driver for the Ralink 3090 wireless chip. | 5 | This is an experimental driver for the Ralink 3090 wireless chip. |
diff --git a/drivers/staging/rtl8187se/Kconfig b/drivers/staging/rtl8187se/Kconfig index 236e42725447..203c79b8180f 100644 --- a/drivers/staging/rtl8187se/Kconfig +++ b/drivers/staging/rtl8187se/Kconfig | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | config RTL8187SE | 1 | config RTL8187SE |
| 2 | tristate "RealTek RTL8187SE Wireless LAN NIC driver" | 2 | tristate "RealTek RTL8187SE Wireless LAN NIC driver" |
| 3 | depends on PCI | 3 | depends on PCI && WLAN |
| 4 | depends on WIRELESS_EXT | 4 | depends on WIRELESS_EXT |
| 5 | default N | 5 | default N |
| 6 | ---help--- | 6 | ---help--- |
diff --git a/drivers/staging/rtl8187se/ieee80211/ieee80211_crypt.c b/drivers/staging/rtl8187se/ieee80211/ieee80211_crypt.c index 013c3e19ae25..4c5d63fd5833 100644 --- a/drivers/staging/rtl8187se/ieee80211/ieee80211_crypt.c +++ b/drivers/staging/rtl8187se/ieee80211/ieee80211_crypt.c | |||
| @@ -53,10 +53,8 @@ void ieee80211_crypt_deinit_entries(struct ieee80211_device *ieee, | |||
| 53 | 53 | ||
| 54 | list_del(ptr); | 54 | list_del(ptr); |
| 55 | 55 | ||
| 56 | if (entry->ops) { | 56 | if (entry->ops) |
| 57 | entry->ops->deinit(entry->priv); | 57 | entry->ops->deinit(entry->priv); |
| 58 | module_put(entry->ops->owner); | ||
| 59 | } | ||
| 60 | kfree(entry); | 58 | kfree(entry); |
| 61 | } | 59 | } |
| 62 | } | 60 | } |
diff --git a/drivers/staging/rtl8187se/ieee80211/ieee80211_module.c b/drivers/staging/rtl8187se/ieee80211/ieee80211_module.c index 6fbe4890cb66..18392fce487d 100644 --- a/drivers/staging/rtl8187se/ieee80211/ieee80211_module.c +++ b/drivers/staging/rtl8187se/ieee80211/ieee80211_module.c | |||
| @@ -189,10 +189,8 @@ void free_ieee80211(struct net_device *dev) | |||
| 189 | for (i = 0; i < WEP_KEYS; i++) { | 189 | for (i = 0; i < WEP_KEYS; i++) { |
| 190 | struct ieee80211_crypt_data *crypt = ieee->crypt[i]; | 190 | struct ieee80211_crypt_data *crypt = ieee->crypt[i]; |
| 191 | if (crypt) { | 191 | if (crypt) { |
| 192 | if (crypt->ops) { | 192 | if (crypt->ops) |
| 193 | crypt->ops->deinit(crypt->priv); | 193 | crypt->ops->deinit(crypt->priv); |
| 194 | module_put(crypt->ops->owner); | ||
| 195 | } | ||
| 196 | kfree(crypt); | 194 | kfree(crypt); |
| 197 | ieee->crypt[i] = NULL; | 195 | ieee->crypt[i] = NULL; |
| 198 | } | 196 | } |
diff --git a/drivers/staging/rtl8187se/ieee80211/ieee80211_softmac.c b/drivers/staging/rtl8187se/ieee80211/ieee80211_softmac.c index 59b2ab48cdcf..334e4c7ec61b 100644 --- a/drivers/staging/rtl8187se/ieee80211/ieee80211_softmac.c +++ b/drivers/staging/rtl8187se/ieee80211/ieee80211_softmac.c | |||
| @@ -2839,16 +2839,12 @@ static int ieee80211_wpa_set_encryption(struct ieee80211_device *ieee, | |||
| 2839 | goto skip_host_crypt; | 2839 | goto skip_host_crypt; |
| 2840 | 2840 | ||
| 2841 | ops = ieee80211_get_crypto_ops(param->u.crypt.alg); | 2841 | ops = ieee80211_get_crypto_ops(param->u.crypt.alg); |
| 2842 | if (ops == NULL && strcmp(param->u.crypt.alg, "WEP") == 0) { | 2842 | if (ops == NULL && strcmp(param->u.crypt.alg, "WEP") == 0) |
| 2843 | request_module("ieee80211_crypt_wep"); | ||
| 2844 | ops = ieee80211_get_crypto_ops(param->u.crypt.alg); | 2843 | ops = ieee80211_get_crypto_ops(param->u.crypt.alg); |
| 2845 | } else if (ops == NULL && strcmp(param->u.crypt.alg, "TKIP") == 0) { | 2844 | else if (ops == NULL && strcmp(param->u.crypt.alg, "TKIP") == 0) |
| 2846 | request_module("ieee80211_crypt_tkip"); | ||
| 2847 | ops = ieee80211_get_crypto_ops(param->u.crypt.alg); | 2845 | ops = ieee80211_get_crypto_ops(param->u.crypt.alg); |
| 2848 | } else if (ops == NULL && strcmp(param->u.crypt.alg, "CCMP") == 0) { | 2846 | else if (ops == NULL && strcmp(param->u.crypt.alg, "CCMP") == 0) |
| 2849 | request_module("ieee80211_crypt_ccmp"); | ||
| 2850 | ops = ieee80211_get_crypto_ops(param->u.crypt.alg); | 2847 | ops = ieee80211_get_crypto_ops(param->u.crypt.alg); |
| 2851 | } | ||
| 2852 | if (ops == NULL) { | 2848 | if (ops == NULL) { |
| 2853 | printk("unknown crypto alg '%s'\n", param->u.crypt.alg); | 2849 | printk("unknown crypto alg '%s'\n", param->u.crypt.alg); |
| 2854 | param->u.crypt.err = IEEE_CRYPT_ERR_UNKNOWN_ALG; | 2850 | param->u.crypt.err = IEEE_CRYPT_ERR_UNKNOWN_ALG; |
| @@ -2869,7 +2865,7 @@ static int ieee80211_wpa_set_encryption(struct ieee80211_device *ieee, | |||
| 2869 | } | 2865 | } |
| 2870 | memset(new_crypt, 0, sizeof(struct ieee80211_crypt_data)); | 2866 | memset(new_crypt, 0, sizeof(struct ieee80211_crypt_data)); |
| 2871 | new_crypt->ops = ops; | 2867 | new_crypt->ops = ops; |
| 2872 | if (new_crypt->ops && try_module_get(new_crypt->ops->owner)) | 2868 | if (new_crypt->ops) |
| 2873 | new_crypt->priv = | 2869 | new_crypt->priv = |
| 2874 | new_crypt->ops->init(param->u.crypt.idx); | 2870 | new_crypt->ops->init(param->u.crypt.idx); |
| 2875 | 2871 | ||
diff --git a/drivers/staging/rtl8187se/ieee80211/ieee80211_wx.c b/drivers/staging/rtl8187se/ieee80211/ieee80211_wx.c index 8d8bdd0a130e..a08b97a09512 100644 --- a/drivers/staging/rtl8187se/ieee80211/ieee80211_wx.c +++ b/drivers/staging/rtl8187se/ieee80211/ieee80211_wx.c | |||
| @@ -331,12 +331,10 @@ int ieee80211_wx_set_encode(struct ieee80211_device *ieee, | |||
| 331 | return -ENOMEM; | 331 | return -ENOMEM; |
| 332 | memset(new_crypt, 0, sizeof(struct ieee80211_crypt_data)); | 332 | memset(new_crypt, 0, sizeof(struct ieee80211_crypt_data)); |
| 333 | new_crypt->ops = ieee80211_get_crypto_ops("WEP"); | 333 | new_crypt->ops = ieee80211_get_crypto_ops("WEP"); |
| 334 | if (!new_crypt->ops) { | 334 | if (!new_crypt->ops) |
| 335 | request_module("ieee80211_crypt_wep"); | ||
| 336 | new_crypt->ops = ieee80211_get_crypto_ops("WEP"); | 335 | new_crypt->ops = ieee80211_get_crypto_ops("WEP"); |
| 337 | } | ||
| 338 | 336 | ||
| 339 | if (new_crypt->ops && try_module_get(new_crypt->ops->owner)) | 337 | if (new_crypt->ops) |
| 340 | new_crypt->priv = new_crypt->ops->init(key); | 338 | new_crypt->priv = new_crypt->ops->init(key); |
| 341 | 339 | ||
| 342 | if (!new_crypt->ops || !new_crypt->priv) { | 340 | if (!new_crypt->ops || !new_crypt->priv) { |
| @@ -483,7 +481,7 @@ int ieee80211_wx_set_encode_ext(struct ieee80211_device *ieee, | |||
| 483 | struct iw_encode_ext *ext = (struct iw_encode_ext *)extra; | 481 | struct iw_encode_ext *ext = (struct iw_encode_ext *)extra; |
| 484 | int i, idx, ret = 0; | 482 | int i, idx, ret = 0; |
| 485 | int group_key = 0; | 483 | int group_key = 0; |
| 486 | const char *alg, *module; | 484 | const char *alg; |
| 487 | struct ieee80211_crypto_ops *ops; | 485 | struct ieee80211_crypto_ops *ops; |
| 488 | struct ieee80211_crypt_data **crypt; | 486 | struct ieee80211_crypt_data **crypt; |
| 489 | 487 | ||
| @@ -539,15 +537,12 @@ int ieee80211_wx_set_encode_ext(struct ieee80211_device *ieee, | |||
| 539 | switch (ext->alg) { | 537 | switch (ext->alg) { |
| 540 | case IW_ENCODE_ALG_WEP: | 538 | case IW_ENCODE_ALG_WEP: |
| 541 | alg = "WEP"; | 539 | alg = "WEP"; |
| 542 | module = "ieee80211_crypt_wep"; | ||
| 543 | break; | 540 | break; |
| 544 | case IW_ENCODE_ALG_TKIP: | 541 | case IW_ENCODE_ALG_TKIP: |
| 545 | alg = "TKIP"; | 542 | alg = "TKIP"; |
| 546 | module = "ieee80211_crypt_tkip"; | ||
| 547 | break; | 543 | break; |
| 548 | case IW_ENCODE_ALG_CCMP: | 544 | case IW_ENCODE_ALG_CCMP: |
| 549 | alg = "CCMP"; | 545 | alg = "CCMP"; |
| 550 | module = "ieee80211_crypt_ccmp"; | ||
| 551 | break; | 546 | break; |
| 552 | default: | 547 | default: |
| 553 | IEEE80211_DEBUG_WX("%s: unknown crypto alg %d\n", | 548 | IEEE80211_DEBUG_WX("%s: unknown crypto alg %d\n", |
| @@ -558,10 +553,8 @@ int ieee80211_wx_set_encode_ext(struct ieee80211_device *ieee, | |||
| 558 | // printk("8-09-08-9=====>%s, alg name:%s\n",__func__, alg); | 553 | // printk("8-09-08-9=====>%s, alg name:%s\n",__func__, alg); |
| 559 | 554 | ||
| 560 | ops = ieee80211_get_crypto_ops(alg); | 555 | ops = ieee80211_get_crypto_ops(alg); |
| 561 | if (ops == NULL) { | 556 | if (ops == NULL) |
| 562 | request_module(module); | ||
| 563 | ops = ieee80211_get_crypto_ops(alg); | 557 | ops = ieee80211_get_crypto_ops(alg); |
| 564 | } | ||
| 565 | if (ops == NULL) { | 558 | if (ops == NULL) { |
| 566 | IEEE80211_DEBUG_WX("%s: unknown crypto alg %d\n", | 559 | IEEE80211_DEBUG_WX("%s: unknown crypto alg %d\n", |
| 567 | dev->name, ext->alg); | 560 | dev->name, ext->alg); |
| @@ -581,7 +574,7 @@ int ieee80211_wx_set_encode_ext(struct ieee80211_device *ieee, | |||
| 581 | goto done; | 574 | goto done; |
| 582 | } | 575 | } |
| 583 | new_crypt->ops = ops; | 576 | new_crypt->ops = ops; |
| 584 | if (new_crypt->ops && try_module_get(new_crypt->ops->owner)) | 577 | if (new_crypt->ops) |
| 585 | new_crypt->priv = new_crypt->ops->init(idx); | 578 | new_crypt->priv = new_crypt->ops->init(idx); |
| 586 | if (new_crypt->priv == NULL) { | 579 | if (new_crypt->priv == NULL) { |
| 587 | kfree(new_crypt); | 580 | kfree(new_crypt); |
diff --git a/drivers/staging/rtl8192e/Kconfig b/drivers/staging/rtl8192e/Kconfig index 3100aa58c940..37e4fde45073 100644 --- a/drivers/staging/rtl8192e/Kconfig +++ b/drivers/staging/rtl8192e/Kconfig | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | config RTL8192E | 1 | config RTL8192E |
| 2 | tristate "RealTek RTL8192E Wireless LAN NIC driver" | 2 | tristate "RealTek RTL8192E Wireless LAN NIC driver" |
| 3 | depends on PCI | 3 | depends on PCI && WLAN |
| 4 | depends on WIRELESS_EXT | 4 | depends on WIRELESS_EXT |
| 5 | default N | 5 | default N |
| 6 | ---help--- | 6 | ---help--- |
diff --git a/drivers/staging/rtl8192e/ieee80211/ieee80211_crypt.c b/drivers/staging/rtl8192e/ieee80211/ieee80211_crypt.c index 1a8ea8a40c3c..b1c54932da3e 100644 --- a/drivers/staging/rtl8192e/ieee80211/ieee80211_crypt.c +++ b/drivers/staging/rtl8192e/ieee80211/ieee80211_crypt.c | |||
| @@ -53,14 +53,8 @@ void ieee80211_crypt_deinit_entries(struct ieee80211_device *ieee, | |||
| 53 | 53 | ||
| 54 | list_del(ptr); | 54 | list_del(ptr); |
| 55 | 55 | ||
| 56 | if (entry->ops) { | 56 | if (entry->ops) |
| 57 | entry->ops->deinit(entry->priv); | 57 | entry->ops->deinit(entry->priv); |
| 58 | #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,0) | ||
| 59 | module_put(entry->ops->owner); | ||
| 60 | #else | ||
| 61 | __MOD_DEC_USE_COUNT(entry->ops->owner); | ||
| 62 | #endif | ||
| 63 | } | ||
| 64 | kfree(entry); | 58 | kfree(entry); |
| 65 | } | 59 | } |
| 66 | } | 60 | } |
diff --git a/drivers/staging/rtl8192e/ieee80211/ieee80211_module.c b/drivers/staging/rtl8192e/ieee80211/ieee80211_module.c index 16256a31f993..12c2a18e1fa2 100644 --- a/drivers/staging/rtl8192e/ieee80211/ieee80211_module.c +++ b/drivers/staging/rtl8192e/ieee80211/ieee80211_module.c | |||
| @@ -242,14 +242,8 @@ void free_ieee80211(struct net_device *dev) | |||
| 242 | for (i = 0; i < WEP_KEYS; i++) { | 242 | for (i = 0; i < WEP_KEYS; i++) { |
| 243 | struct ieee80211_crypt_data *crypt = ieee->crypt[i]; | 243 | struct ieee80211_crypt_data *crypt = ieee->crypt[i]; |
| 244 | if (crypt) { | 244 | if (crypt) { |
| 245 | if (crypt->ops) { | 245 | if (crypt->ops) |
| 246 | crypt->ops->deinit(crypt->priv); | 246 | crypt->ops->deinit(crypt->priv); |
| 247 | #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,0) | ||
| 248 | module_put(crypt->ops->owner); | ||
| 249 | #else | ||
| 250 | __MOD_DEC_USE_COUNT(crypt->ops->owner); | ||
| 251 | #endif | ||
| 252 | } | ||
| 253 | kfree(crypt); | 247 | kfree(crypt); |
| 254 | ieee->crypt[i] = NULL; | 248 | ieee->crypt[i] = NULL; |
| 255 | } | 249 | } |
diff --git a/drivers/staging/rtl8192e/ieee80211/ieee80211_softmac.c b/drivers/staging/rtl8192e/ieee80211/ieee80211_softmac.c index 2fc04df872ca..eae7c4579a68 100644 --- a/drivers/staging/rtl8192e/ieee80211/ieee80211_softmac.c +++ b/drivers/staging/rtl8192e/ieee80211/ieee80211_softmac.c | |||
| @@ -3284,17 +3284,14 @@ static int ieee80211_wpa_set_encryption(struct ieee80211_device *ieee, | |||
| 3284 | goto skip_host_crypt; | 3284 | goto skip_host_crypt; |
| 3285 | 3285 | ||
| 3286 | ops = ieee80211_get_crypto_ops(param->u.crypt.alg); | 3286 | ops = ieee80211_get_crypto_ops(param->u.crypt.alg); |
| 3287 | if (ops == NULL && strcmp(param->u.crypt.alg, "WEP") == 0) { | 3287 | if (ops == NULL && strcmp(param->u.crypt.alg, "WEP") == 0) |
| 3288 | request_module("ieee80211_crypt_wep"); | ||
| 3289 | ops = ieee80211_get_crypto_ops(param->u.crypt.alg); | 3288 | ops = ieee80211_get_crypto_ops(param->u.crypt.alg); |
| 3290 | //set WEP40 first, it will be modified according to WEP104 or WEP40 at other place | 3289 | /* set WEP40 first, it will be modified according to WEP104 or |
| 3291 | } else if (ops == NULL && strcmp(param->u.crypt.alg, "TKIP") == 0) { | 3290 | * WEP40 at other place */ |
| 3292 | request_module("ieee80211_crypt_tkip"); | 3291 | else if (ops == NULL && strcmp(param->u.crypt.alg, "TKIP") == 0) |
| 3293 | ops = ieee80211_get_crypto_ops(param->u.crypt.alg); | 3292 | ops = ieee80211_get_crypto_ops(param->u.crypt.alg); |
| 3294 | } else if (ops == NULL && strcmp(param->u.crypt.alg, "CCMP") == 0) { | 3293 | else if (ops == NULL && strcmp(param->u.crypt.alg, "CCMP") == 0) |
| 3295 | request_module("ieee80211_crypt_ccmp"); | ||
| 3296 | ops = ieee80211_get_crypto_ops(param->u.crypt.alg); | 3294 | ops = ieee80211_get_crypto_ops(param->u.crypt.alg); |
| 3297 | } | ||
| 3298 | if (ops == NULL) { | 3295 | if (ops == NULL) { |
| 3299 | printk("unknown crypto alg '%s'\n", param->u.crypt.alg); | 3296 | printk("unknown crypto alg '%s'\n", param->u.crypt.alg); |
| 3300 | param->u.crypt.err = IEEE_CRYPT_ERR_UNKNOWN_ALG; | 3297 | param->u.crypt.err = IEEE_CRYPT_ERR_UNKNOWN_ALG; |
| @@ -3315,11 +3312,7 @@ static int ieee80211_wpa_set_encryption(struct ieee80211_device *ieee, | |||
| 3315 | } | 3312 | } |
| 3316 | memset(new_crypt, 0, sizeof(struct ieee80211_crypt_data)); | 3313 | memset(new_crypt, 0, sizeof(struct ieee80211_crypt_data)); |
| 3317 | new_crypt->ops = ops; | 3314 | new_crypt->ops = ops; |
| 3318 | #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,0) | 3315 | if (new_crypt->ops) |
| 3319 | if (new_crypt->ops && try_module_get(new_crypt->ops->owner)) | ||
| 3320 | #else | ||
| 3321 | if (new_crypt->ops && try_inc_mod_count(new_crypt->ops->owner)) | ||
| 3322 | #endif | ||
| 3323 | new_crypt->priv = | 3316 | new_crypt->priv = |
| 3324 | new_crypt->ops->init(param->u.crypt.idx); | 3317 | new_crypt->ops->init(param->u.crypt.idx); |
| 3325 | 3318 | ||
diff --git a/drivers/staging/rtl8192e/ieee80211/ieee80211_wx.c b/drivers/staging/rtl8192e/ieee80211/ieee80211_wx.c index 223483126b0e..4e34a1f4c66b 100644 --- a/drivers/staging/rtl8192e/ieee80211/ieee80211_wx.c +++ b/drivers/staging/rtl8192e/ieee80211/ieee80211_wx.c | |||
| @@ -482,15 +482,9 @@ int ieee80211_wx_set_encode(struct ieee80211_device *ieee, | |||
| 482 | return -ENOMEM; | 482 | return -ENOMEM; |
| 483 | memset(new_crypt, 0, sizeof(struct ieee80211_crypt_data)); | 483 | memset(new_crypt, 0, sizeof(struct ieee80211_crypt_data)); |
| 484 | new_crypt->ops = ieee80211_get_crypto_ops("WEP"); | 484 | new_crypt->ops = ieee80211_get_crypto_ops("WEP"); |
| 485 | if (!new_crypt->ops) { | 485 | if (!new_crypt->ops) |
| 486 | request_module("ieee80211_crypt_wep"); | ||
| 487 | new_crypt->ops = ieee80211_get_crypto_ops("WEP"); | 486 | new_crypt->ops = ieee80211_get_crypto_ops("WEP"); |
| 488 | } | 487 | if (new_crypt->ops) |
| 489 | #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,0) | ||
| 490 | if (new_crypt->ops && try_module_get(new_crypt->ops->owner)) | ||
| 491 | #else | ||
| 492 | if (new_crypt->ops && try_inc_mod_count(new_crypt->ops->owner)) | ||
| 493 | #endif | ||
| 494 | new_crypt->priv = new_crypt->ops->init(key); | 488 | new_crypt->priv = new_crypt->ops->init(key); |
| 495 | 489 | ||
| 496 | if (!new_crypt->ops || !new_crypt->priv) { | 490 | if (!new_crypt->ops || !new_crypt->priv) { |
| @@ -644,7 +638,7 @@ int ieee80211_wx_set_encode_ext(struct ieee80211_device *ieee, | |||
| 644 | struct iw_encode_ext *ext = (struct iw_encode_ext *)extra; | 638 | struct iw_encode_ext *ext = (struct iw_encode_ext *)extra; |
| 645 | int i, idx; | 639 | int i, idx; |
| 646 | int group_key = 0; | 640 | int group_key = 0; |
| 647 | const char *alg, *module; | 641 | const char *alg; |
| 648 | struct ieee80211_crypto_ops *ops; | 642 | struct ieee80211_crypto_ops *ops; |
| 649 | struct ieee80211_crypt_data **crypt; | 643 | struct ieee80211_crypt_data **crypt; |
| 650 | 644 | ||
| @@ -711,15 +705,12 @@ int ieee80211_wx_set_encode_ext(struct ieee80211_device *ieee, | |||
| 711 | switch (ext->alg) { | 705 | switch (ext->alg) { |
| 712 | case IW_ENCODE_ALG_WEP: | 706 | case IW_ENCODE_ALG_WEP: |
| 713 | alg = "WEP"; | 707 | alg = "WEP"; |
| 714 | module = "ieee80211_crypt_wep"; | ||
| 715 | break; | 708 | break; |
| 716 | case IW_ENCODE_ALG_TKIP: | 709 | case IW_ENCODE_ALG_TKIP: |
| 717 | alg = "TKIP"; | 710 | alg = "TKIP"; |
| 718 | module = "ieee80211_crypt_tkip"; | ||
| 719 | break; | 711 | break; |
| 720 | case IW_ENCODE_ALG_CCMP: | 712 | case IW_ENCODE_ALG_CCMP: |
| 721 | alg = "CCMP"; | 713 | alg = "CCMP"; |
| 722 | module = "ieee80211_crypt_ccmp"; | ||
| 723 | break; | 714 | break; |
| 724 | default: | 715 | default: |
| 725 | IEEE80211_DEBUG_WX("%s: unknown crypto alg %d\n", | 716 | IEEE80211_DEBUG_WX("%s: unknown crypto alg %d\n", |
| @@ -730,10 +721,8 @@ int ieee80211_wx_set_encode_ext(struct ieee80211_device *ieee, | |||
| 730 | printk("alg name:%s\n",alg); | 721 | printk("alg name:%s\n",alg); |
| 731 | 722 | ||
| 732 | ops = ieee80211_get_crypto_ops(alg); | 723 | ops = ieee80211_get_crypto_ops(alg); |
| 733 | if (ops == NULL) { | 724 | if (ops == NULL) |
| 734 | request_module(module); | ||
| 735 | ops = ieee80211_get_crypto_ops(alg); | 725 | ops = ieee80211_get_crypto_ops(alg); |
| 736 | } | ||
| 737 | if (ops == NULL) { | 726 | if (ops == NULL) { |
| 738 | IEEE80211_DEBUG_WX("%s: unknown crypto alg %d\n", | 727 | IEEE80211_DEBUG_WX("%s: unknown crypto alg %d\n", |
| 739 | dev->name, ext->alg); | 728 | dev->name, ext->alg); |
| @@ -758,7 +747,7 @@ int ieee80211_wx_set_encode_ext(struct ieee80211_device *ieee, | |||
| 758 | goto done; | 747 | goto done; |
| 759 | } | 748 | } |
| 760 | new_crypt->ops = ops; | 749 | new_crypt->ops = ops; |
| 761 | if (new_crypt->ops && try_module_get(new_crypt->ops->owner)) | 750 | if (new_crypt->ops) |
| 762 | new_crypt->priv = new_crypt->ops->init(idx); | 751 | new_crypt->priv = new_crypt->ops->init(idx); |
| 763 | if (new_crypt->priv == NULL) { | 752 | if (new_crypt->priv == NULL) { |
| 764 | kfree(new_crypt); | 753 | kfree(new_crypt); |
diff --git a/drivers/staging/rtl8192su/Kconfig b/drivers/staging/rtl8192su/Kconfig index 770f41280f21..b8c95f942069 100644 --- a/drivers/staging/rtl8192su/Kconfig +++ b/drivers/staging/rtl8192su/Kconfig | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | config RTL8192SU | 1 | config RTL8192SU |
| 2 | tristate "RealTek RTL8192SU Wireless LAN NIC driver" | 2 | tristate "RealTek RTL8192SU Wireless LAN NIC driver" |
| 3 | depends on PCI | 3 | depends on PCI && WLAN |
| 4 | depends on WIRELESS_EXT | 4 | depends on WIRELESS_EXT |
| 5 | default N | 5 | default N |
| 6 | ---help--- | 6 | ---help--- |
diff --git a/drivers/staging/rtl8192su/ieee80211/ieee80211_crypt.c b/drivers/staging/rtl8192su/ieee80211/ieee80211_crypt.c index d76a54d59d2f..521e7b989934 100644 --- a/drivers/staging/rtl8192su/ieee80211/ieee80211_crypt.c +++ b/drivers/staging/rtl8192su/ieee80211/ieee80211_crypt.c | |||
| @@ -53,10 +53,8 @@ void ieee80211_crypt_deinit_entries(struct ieee80211_device *ieee, | |||
| 53 | 53 | ||
| 54 | list_del(ptr); | 54 | list_del(ptr); |
| 55 | 55 | ||
| 56 | if (entry->ops) { | 56 | if (entry->ops) |
| 57 | entry->ops->deinit(entry->priv); | 57 | entry->ops->deinit(entry->priv); |
| 58 | module_put(entry->ops->owner); | ||
| 59 | } | ||
| 60 | kfree(entry); | 58 | kfree(entry); |
| 61 | } | 59 | } |
| 62 | } | 60 | } |
diff --git a/drivers/staging/rtl8192su/ieee80211/ieee80211_module.c b/drivers/staging/rtl8192su/ieee80211/ieee80211_module.c index 68dc8fa094cc..c3383bb8b760 100644 --- a/drivers/staging/rtl8192su/ieee80211/ieee80211_module.c +++ b/drivers/staging/rtl8192su/ieee80211/ieee80211_module.c | |||
| @@ -216,10 +216,8 @@ void free_ieee80211(struct net_device *dev) | |||
| 216 | for (i = 0; i < WEP_KEYS; i++) { | 216 | for (i = 0; i < WEP_KEYS; i++) { |
| 217 | struct ieee80211_crypt_data *crypt = ieee->crypt[i]; | 217 | struct ieee80211_crypt_data *crypt = ieee->crypt[i]; |
| 218 | if (crypt) { | 218 | if (crypt) { |
| 219 | if (crypt->ops) { | 219 | if (crypt->ops) |
| 220 | crypt->ops->deinit(crypt->priv); | 220 | crypt->ops->deinit(crypt->priv); |
| 221 | module_put(crypt->ops->owner); | ||
| 222 | } | ||
| 223 | kfree(crypt); | 221 | kfree(crypt); |
| 224 | ieee->crypt[i] = NULL; | 222 | ieee->crypt[i] = NULL; |
| 225 | } | 223 | } |
diff --git a/drivers/staging/rtl8192su/ieee80211/ieee80211_softmac.c b/drivers/staging/rtl8192su/ieee80211/ieee80211_softmac.c index c64ae03f68a0..fd8e11252f1b 100644 --- a/drivers/staging/rtl8192su/ieee80211/ieee80211_softmac.c +++ b/drivers/staging/rtl8192su/ieee80211/ieee80211_softmac.c | |||
| @@ -3026,17 +3026,14 @@ static int ieee80211_wpa_set_encryption(struct ieee80211_device *ieee, | |||
| 3026 | goto skip_host_crypt; | 3026 | goto skip_host_crypt; |
| 3027 | 3027 | ||
| 3028 | ops = ieee80211_get_crypto_ops(param->u.crypt.alg); | 3028 | ops = ieee80211_get_crypto_ops(param->u.crypt.alg); |
| 3029 | if (ops == NULL && strcmp(param->u.crypt.alg, "WEP") == 0) { | 3029 | if (ops == NULL && strcmp(param->u.crypt.alg, "WEP") == 0) |
| 3030 | request_module("ieee80211_crypt_wep"); | ||
| 3031 | ops = ieee80211_get_crypto_ops(param->u.crypt.alg); | 3030 | ops = ieee80211_get_crypto_ops(param->u.crypt.alg); |
| 3032 | //set WEP40 first, it will be modified according to WEP104 or WEP40 at other place | 3031 | /* set WEP40 first, it will be modified according to WEP104 or |
| 3033 | } else if (ops == NULL && strcmp(param->u.crypt.alg, "TKIP") == 0) { | 3032 | * WEP40 at other place */ |
| 3034 | request_module("ieee80211_crypt_tkip"); | 3033 | else if (ops == NULL && strcmp(param->u.crypt.alg, "TKIP") == 0) |
| 3035 | ops = ieee80211_get_crypto_ops(param->u.crypt.alg); | 3034 | ops = ieee80211_get_crypto_ops(param->u.crypt.alg); |
| 3036 | } else if (ops == NULL && strcmp(param->u.crypt.alg, "CCMP") == 0) { | 3035 | else if (ops == NULL && strcmp(param->u.crypt.alg, "CCMP") == 0) |
| 3037 | request_module("ieee80211_crypt_ccmp"); | ||
| 3038 | ops = ieee80211_get_crypto_ops(param->u.crypt.alg); | 3036 | ops = ieee80211_get_crypto_ops(param->u.crypt.alg); |
| 3039 | } | ||
| 3040 | if (ops == NULL) { | 3037 | if (ops == NULL) { |
| 3041 | printk("unknown crypto alg '%s'\n", param->u.crypt.alg); | 3038 | printk("unknown crypto alg '%s'\n", param->u.crypt.alg); |
| 3042 | param->u.crypt.err = IEEE_CRYPT_ERR_UNKNOWN_ALG; | 3039 | param->u.crypt.err = IEEE_CRYPT_ERR_UNKNOWN_ALG; |
| @@ -3058,7 +3055,7 @@ static int ieee80211_wpa_set_encryption(struct ieee80211_device *ieee, | |||
| 3058 | memset(new_crypt, 0, sizeof(struct ieee80211_crypt_data)); | 3055 | memset(new_crypt, 0, sizeof(struct ieee80211_crypt_data)); |
| 3059 | new_crypt->ops = ops; | 3056 | new_crypt->ops = ops; |
| 3060 | 3057 | ||
| 3061 | if (new_crypt->ops && try_module_get(new_crypt->ops->owner)) | 3058 | if (new_crypt->ops) |
| 3062 | new_crypt->priv = | 3059 | new_crypt->priv = |
| 3063 | new_crypt->ops->init(param->u.crypt.idx); | 3060 | new_crypt->ops->init(param->u.crypt.idx); |
| 3064 | 3061 | ||
diff --git a/drivers/staging/rtl8192su/ieee80211/ieee80211_wx.c b/drivers/staging/rtl8192su/ieee80211/ieee80211_wx.c index 107759024335..6146c6435dde 100644 --- a/drivers/staging/rtl8192su/ieee80211/ieee80211_wx.c +++ b/drivers/staging/rtl8192su/ieee80211/ieee80211_wx.c | |||
| @@ -358,11 +358,9 @@ int ieee80211_wx_set_encode(struct ieee80211_device *ieee, | |||
| 358 | return -ENOMEM; | 358 | return -ENOMEM; |
| 359 | memset(new_crypt, 0, sizeof(struct ieee80211_crypt_data)); | 359 | memset(new_crypt, 0, sizeof(struct ieee80211_crypt_data)); |
| 360 | new_crypt->ops = ieee80211_get_crypto_ops("WEP"); | 360 | new_crypt->ops = ieee80211_get_crypto_ops("WEP"); |
| 361 | if (!new_crypt->ops) { | 361 | if (!new_crypt->ops) |
| 362 | request_module("ieee80211_crypt_wep"); | ||
| 363 | new_crypt->ops = ieee80211_get_crypto_ops("WEP"); | 362 | new_crypt->ops = ieee80211_get_crypto_ops("WEP"); |
| 364 | } | 363 | if (new_crypt->ops) |
| 365 | if (new_crypt->ops && try_module_get(new_crypt->ops->owner)) | ||
| 366 | new_crypt->priv = new_crypt->ops->init(key); | 364 | new_crypt->priv = new_crypt->ops->init(key); |
| 367 | 365 | ||
| 368 | if (!new_crypt->ops || !new_crypt->priv) { | 366 | if (!new_crypt->ops || !new_crypt->priv) { |
| @@ -507,7 +505,7 @@ int ieee80211_wx_set_encode_ext(struct ieee80211_device *ieee, | |||
| 507 | struct iw_encode_ext *ext = (struct iw_encode_ext *)extra; | 505 | struct iw_encode_ext *ext = (struct iw_encode_ext *)extra; |
| 508 | int i, idx; | 506 | int i, idx; |
| 509 | int group_key = 0; | 507 | int group_key = 0; |
| 510 | const char *alg, *module; | 508 | const char *alg; |
| 511 | struct ieee80211_crypto_ops *ops; | 509 | struct ieee80211_crypto_ops *ops; |
| 512 | struct ieee80211_crypt_data **crypt; | 510 | struct ieee80211_crypt_data **crypt; |
| 513 | 511 | ||
| @@ -570,15 +568,12 @@ int ieee80211_wx_set_encode_ext(struct ieee80211_device *ieee, | |||
| 570 | switch (ext->alg) { | 568 | switch (ext->alg) { |
| 571 | case IW_ENCODE_ALG_WEP: | 569 | case IW_ENCODE_ALG_WEP: |
| 572 | alg = "WEP"; | 570 | alg = "WEP"; |
| 573 | module = "ieee80211_crypt_wep"; | ||
| 574 | break; | 571 | break; |
| 575 | case IW_ENCODE_ALG_TKIP: | 572 | case IW_ENCODE_ALG_TKIP: |
| 576 | alg = "TKIP"; | 573 | alg = "TKIP"; |
| 577 | module = "ieee80211_crypt_tkip"; | ||
| 578 | break; | 574 | break; |
| 579 | case IW_ENCODE_ALG_CCMP: | 575 | case IW_ENCODE_ALG_CCMP: |
| 580 | alg = "CCMP"; | 576 | alg = "CCMP"; |
| 581 | module = "ieee80211_crypt_ccmp"; | ||
| 582 | break; | 577 | break; |
| 583 | default: | 578 | default: |
| 584 | IEEE80211_DEBUG_WX("%s: unknown crypto alg %d\n", | 579 | IEEE80211_DEBUG_WX("%s: unknown crypto alg %d\n", |
| @@ -589,10 +584,8 @@ int ieee80211_wx_set_encode_ext(struct ieee80211_device *ieee, | |||
| 589 | printk("alg name:%s\n",alg); | 584 | printk("alg name:%s\n",alg); |
| 590 | 585 | ||
| 591 | ops = ieee80211_get_crypto_ops(alg); | 586 | ops = ieee80211_get_crypto_ops(alg); |
| 592 | if (ops == NULL) { | 587 | if (ops == NULL) |
| 593 | request_module("%s", module); | ||
| 594 | ops = ieee80211_get_crypto_ops(alg); | 588 | ops = ieee80211_get_crypto_ops(alg); |
| 595 | } | ||
| 596 | if (ops == NULL) { | 589 | if (ops == NULL) { |
| 597 | IEEE80211_DEBUG_WX("%s: unknown crypto alg %d\n", | 590 | IEEE80211_DEBUG_WX("%s: unknown crypto alg %d\n", |
| 598 | dev->name, ext->alg); | 591 | dev->name, ext->alg); |
| @@ -612,7 +605,7 @@ int ieee80211_wx_set_encode_ext(struct ieee80211_device *ieee, | |||
| 612 | goto done; | 605 | goto done; |
| 613 | } | 606 | } |
| 614 | new_crypt->ops = ops; | 607 | new_crypt->ops = ops; |
| 615 | if (new_crypt->ops && try_module_get(new_crypt->ops->owner)) | 608 | if (new_crypt->ops) |
| 616 | new_crypt->priv = new_crypt->ops->init(idx); | 609 | new_crypt->priv = new_crypt->ops->init(idx); |
| 617 | if (new_crypt->priv == NULL) { | 610 | if (new_crypt->priv == NULL) { |
| 618 | kfree(new_crypt); | 611 | kfree(new_crypt); |
diff --git a/drivers/staging/stlc45xx/Kconfig b/drivers/staging/stlc45xx/Kconfig deleted file mode 100644 index 947fb75a9c68..000000000000 --- a/drivers/staging/stlc45xx/Kconfig +++ /dev/null | |||
| @@ -1,8 +0,0 @@ | |||
| 1 | config STLC45XX | ||
| 2 | tristate "stlc4550/4560 support" | ||
| 3 | depends on MAC80211 && WLAN_80211 && SPI_MASTER && GENERIC_HARDIRQS | ||
| 4 | ---help--- | ||
| 5 | This is a driver for stlc4550 and stlc4560 chipsets. | ||
| 6 | |||
| 7 | To compile this driver as a module, choose M here: the module will be | ||
| 8 | called stlc45xx. If unsure, say N. | ||
diff --git a/drivers/staging/stlc45xx/Makefile b/drivers/staging/stlc45xx/Makefile deleted file mode 100644 index 7ee32903055a..000000000000 --- a/drivers/staging/stlc45xx/Makefile +++ /dev/null | |||
| @@ -1 +0,0 @@ | |||
| 1 | obj-$(CONFIG_STLC45XX) += stlc45xx.o | ||
diff --git a/drivers/staging/stlc45xx/stlc45xx.c b/drivers/staging/stlc45xx/stlc45xx.c deleted file mode 100644 index be99eb33d817..000000000000 --- a/drivers/staging/stlc45xx/stlc45xx.c +++ /dev/null | |||
| @@ -1,2594 +0,0 @@ | |||
| 1 | /* | ||
| 2 | * This file is part of stlc45xx | ||
| 3 | * | ||
| 4 | * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies). | ||
| 5 | * | ||
| 6 | * Contact: Kalle Valo <kalle.valo@nokia.com> | ||
| 7 | * | ||
| 8 | * This program is free software; you can redistribute it and/or | ||
| 9 | * modify it under the terms of the GNU General Public License | ||
| 10 | * version 2 as published by the Free Software Foundation. | ||
| 11 | * | ||
| 12 | * This program is distributed in the hope that it will be useful, but | ||
| 13 | * WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
| 15 | * General Public License for more details. | ||
| 16 | * | ||
| 17 | * You should have received a copy of the GNU General Public License | ||
| 18 | * along with this program; if not, write to the Free Software | ||
| 19 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA | ||
| 20 | * 02110-1301 USA | ||
| 21 | * | ||
| 22 | */ | ||
| 23 | |||
| 24 | #include "stlc45xx.h" | ||
| 25 | |||
| 26 | #include <linux/module.h> | ||
| 27 | #include <linux/platform_device.h> | ||
| 28 | #include <linux/interrupt.h> | ||
| 29 | #include <linux/firmware.h> | ||
| 30 | #include <linux/delay.h> | ||
| 31 | #include <linux/irq.h> | ||
| 32 | #include <linux/spi/spi.h> | ||
| 33 | #include <linux/etherdevice.h> | ||
| 34 | #include <linux/gpio.h> | ||
| 35 | #include <linux/moduleparam.h> | ||
| 36 | |||
| 37 | #include "stlc45xx_lmac.h" | ||
| 38 | |||
| 39 | /* | ||
| 40 | * gpios should be handled in board files and provided via platform data, | ||
| 41 | * but because it's currently impossible for stlc45xx to have a header file | ||
| 42 | * in include/linux, let's use module paramaters for now | ||
| 43 | */ | ||
| 44 | static int stlc45xx_gpio_power = 97; | ||
| 45 | module_param(stlc45xx_gpio_power, int, 0444); | ||
| 46 | MODULE_PARM_DESC(stlc45xx_gpio_power, "stlc45xx gpio number for power line"); | ||
| 47 | |||
| 48 | static int stlc45xx_gpio_irq = 87; | ||
| 49 | module_param(stlc45xx_gpio_irq, int, 0444); | ||
| 50 | MODULE_PARM_DESC(stlc45xx_gpio_irq, "stlc45xx gpio number for irq line"); | ||
| 51 | |||
| 52 | static const u8 default_cal_channels[] = { | ||
| 53 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 54 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6c, 0x09, | ||
| 55 | 0x00, 0x00, 0xc9, 0xff, 0xd8, 0xff, 0x00, 0x00, 0x00, 0x01, 0x10, | ||
| 56 | 0x01, 0x10, 0x01, 0x10, 0x01, 0x10, 0x01, 0xe0, 0x00, 0xe0, 0x00, | ||
| 57 | 0xe0, 0x00, 0xe0, 0x00, 0xd0, 0x00, 0xd0, 0x00, 0xd0, 0x00, 0xd0, | ||
| 58 | 0x00, 0x54, 0x01, 0xab, 0xf6, 0xc0, 0x42, 0xc0, 0x42, 0xc0, 0x42, | ||
| 59 | 0xc0, 0x42, 0x00, 0xcb, 0x00, 0xcb, 0x00, 0xcb, 0x00, 0xcb, 0x00, | ||
| 60 | 0xcb, 0x00, 0xcb, 0x00, 0xcb, 0x00, 0xcb, 0x22, 0x01, 0x37, 0xa9, | ||
| 61 | 0xc0, 0x33, 0xc0, 0x33, 0xc0, 0x33, 0xc0, 0x33, 0x00, 0xbc, 0x00, | ||
| 62 | 0xbc, 0x00, 0xbc, 0x00, 0xbc, 0x00, 0xbc, 0x00, 0xbc, 0x00, 0xbc, | ||
| 63 | 0x00, 0xbc, 0xfb, 0x00, 0xca, 0x79, 0xc0, 0x2b, 0xc0, 0x2b, 0xc0, | ||
| 64 | 0x2b, 0xc0, 0x2b, 0x00, 0xb4, 0x00, 0xb4, 0x00, 0xb4, 0x00, 0xb4, | ||
| 65 | 0x00, 0xb4, 0x00, 0xb4, 0x00, 0xb4, 0x00, 0xb4, 0xd0, 0x00, 0x5d, | ||
| 66 | 0x54, 0xc0, 0x21, 0xc0, 0x21, 0xc0, 0x21, 0xc0, 0x21, 0x00, 0xaa, | ||
| 67 | 0x00, 0xaa, 0x00, 0xaa, 0x00, 0xaa, 0x00, 0xaa, 0x00, 0xaa, 0x00, | ||
| 68 | 0xaa, 0x00, 0xaa, 0xa7, 0x00, 0xa9, 0x3d, 0xc0, 0x17, 0xc0, 0x17, | ||
| 69 | 0xc0, 0x17, 0xc0, 0x17, 0x00, 0xa0, 0x00, 0xa0, 0x00, 0xa0, 0x00, | ||
| 70 | 0xa0, 0x00, 0xa0, 0x00, 0xa0, 0x00, 0xa0, 0x00, 0xa0, 0x7a, 0x00, | ||
| 71 | 0x06, 0x2c, 0xc0, 0x0d, 0xc0, 0x0d, 0xc0, 0x0d, 0xc0, 0x0d, 0x00, | ||
| 72 | 0x96, 0x00, 0x96, 0x00, 0x96, 0x00, 0x96, 0x00, 0x96, 0x00, 0x96, | ||
| 73 | 0x00, 0x96, 0x00, 0x96, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 74 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 75 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 76 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 77 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 78 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 79 | 0x00, 0x00, 0x06, 0x80, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 80 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 81 | 0x00, 0x00, 0x00, 0x00, 0x71, 0x09, 0x00, 0x00, 0xc9, 0xff, 0xd8, | ||
| 82 | 0xff, 0x00, 0x00, 0x00, 0x01, 0x10, 0x01, 0x10, 0x01, 0x10, 0x01, | ||
| 83 | 0x10, 0x01, 0xf0, 0x00, 0xf0, 0x00, 0xf0, 0x00, 0xf0, 0x00, 0xd0, | ||
| 84 | 0x00, 0xd0, 0x00, 0xd0, 0x00, 0xd0, 0x00, 0x54, 0x01, 0xab, 0xf6, | ||
| 85 | 0xc0, 0x42, 0xc0, 0x42, 0xc0, 0x42, 0xc0, 0x42, 0x00, 0xcb, 0x00, | ||
| 86 | 0xcb, 0x00, 0xcb, 0x00, 0xcb, 0x00, 0xcb, 0x00, 0xcb, 0x00, 0xcb, | ||
| 87 | 0x00, 0xcb, 0x22, 0x01, 0x37, 0xa9, 0xc0, 0x33, 0xc0, 0x33, 0xc0, | ||
| 88 | 0x33, 0xc0, 0x33, 0x00, 0xbc, 0x00, 0xbc, 0x00, 0xbc, 0x00, 0xbc, | ||
| 89 | 0x00, 0xbc, 0x00, 0xbc, 0x00, 0xbc, 0x00, 0xbc, 0xfb, 0x00, 0xca, | ||
| 90 | 0x79, 0xc0, 0x2b, 0xc0, 0x2b, 0xc0, 0x2b, 0xc0, 0x2b, 0x00, 0xb4, | ||
| 91 | 0x00, 0xb4, 0x00, 0xb4, 0x00, 0xb4, 0x00, 0xb4, 0x00, 0xb4, 0x00, | ||
| 92 | 0xb4, 0x00, 0xb4, 0xd0, 0x00, 0x5d, 0x54, 0xc0, 0x21, 0xc0, 0x21, | ||
| 93 | 0xc0, 0x21, 0xc0, 0x21, 0x00, 0xaa, 0x00, 0xaa, 0x00, 0xaa, 0x00, | ||
| 94 | 0xaa, 0x00, 0xaa, 0x00, 0xaa, 0x00, 0xaa, 0x00, 0xaa, 0xa7, 0x00, | ||
| 95 | 0xa9, 0x3d, 0xc0, 0x17, 0xc0, 0x17, 0xc0, 0x17, 0xc0, 0x17, 0x00, | ||
| 96 | 0xa0, 0x00, 0xa0, 0x00, 0xa0, 0x00, 0xa0, 0x00, 0xa0, 0x00, 0xa0, | ||
| 97 | 0x00, 0xa0, 0x00, 0xa0, 0x7a, 0x00, 0x06, 0x2c, 0xc0, 0x0d, 0xc0, | ||
| 98 | 0x0d, 0xc0, 0x0d, 0xc0, 0x0d, 0x00, 0x96, 0x00, 0x96, 0x00, 0x96, | ||
| 99 | 0x00, 0x96, 0x00, 0x96, 0x00, 0x96, 0x00, 0x96, 0x00, 0x96, 0x00, | ||
| 100 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 101 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 102 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 103 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 104 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 105 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x80, 0x80, | ||
| 106 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 107 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x76, | ||
| 108 | 0x09, 0x00, 0x00, 0xc9, 0xff, 0xd8, 0xff, 0x00, 0x00, 0x00, 0x01, | ||
| 109 | 0x10, 0x01, 0x10, 0x01, 0x10, 0x01, 0x10, 0x01, 0xf0, 0x00, 0xf0, | ||
| 110 | 0x00, 0xf0, 0x00, 0xf0, 0x00, 0xd0, 0x00, 0xd0, 0x00, 0xd0, 0x00, | ||
| 111 | 0xd0, 0x00, 0x54, 0x01, 0xab, 0xf6, 0xc0, 0x42, 0xc0, 0x42, 0xc0, | ||
| 112 | 0x42, 0xc0, 0x42, 0x00, 0xcb, 0x00, 0xcb, 0x00, 0xcb, 0x00, 0xcb, | ||
| 113 | 0x00, 0xcb, 0x00, 0xcb, 0x00, 0xcb, 0x00, 0xcb, 0x22, 0x01, 0x37, | ||
| 114 | 0xa9, 0xc0, 0x33, 0xc0, 0x33, 0xc0, 0x33, 0xc0, 0x33, 0x00, 0xbc, | ||
| 115 | 0x00, 0xbc, 0x00, 0xbc, 0x00, 0xbc, 0x00, 0xbc, 0x00, 0xbc, 0x00, | ||
| 116 | 0xbc, 0x00, 0xbc, 0xfb, 0x00, 0xca, 0x79, 0xc0, 0x2b, 0xc0, 0x2b, | ||
| 117 | 0xc0, 0x2b, 0xc0, 0x2b, 0x00, 0xb4, 0x00, 0xb4, 0x00, 0xb4, 0x00, | ||
| 118 | 0xb4, 0x00, 0xb4, 0x00, 0xb4, 0x00, 0xb4, 0x00, 0xb4, 0xd0, 0x00, | ||
| 119 | 0x5d, 0x54, 0xc0, 0x21, 0xc0, 0x21, 0xc0, 0x21, 0xc0, 0x21, 0x00, | ||
| 120 | 0xaa, 0x00, 0xaa, 0x00, 0xaa, 0x00, 0xaa, 0x00, 0xaa, 0x00, 0xaa, | ||
| 121 | 0x00, 0xaa, 0x00, 0xaa, 0xa7, 0x00, 0xa9, 0x3d, 0xc0, 0x17, 0xc0, | ||
| 122 | 0x17, 0xc0, 0x17, 0xc0, 0x17, 0x00, 0xa0, 0x00, 0xa0, 0x00, 0xa0, | ||
| 123 | 0x00, 0xa0, 0x00, 0xa0, 0x00, 0xa0, 0x00, 0xa0, 0x00, 0xa0, 0x7a, | ||
| 124 | 0x00, 0x06, 0x2c, 0xc0, 0x0d, 0xc0, 0x0d, 0xc0, 0x0d, 0xc0, 0x0d, | ||
| 125 | 0x00, 0x96, 0x00, 0x96, 0x00, 0x96, 0x00, 0x96, 0x00, 0x96, 0x00, | ||
| 126 | 0x96, 0x00, 0x96, 0x00, 0x96, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 127 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 128 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 129 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 130 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 131 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 132 | 0x00, 0x00, 0x00, 0x06, 0x80, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 133 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 134 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x7b, 0x09, 0x00, 0x00, 0xc9, 0xff, | ||
| 135 | 0xd8, 0xff, 0x00, 0x00, 0x00, 0x01, 0x10, 0x01, 0x10, 0x01, 0x10, | ||
| 136 | 0x01, 0x10, 0x01, 0xf0, 0x00, 0xf0, 0x00, 0xf0, 0x00, 0xf0, 0x00, | ||
| 137 | 0xd0, 0x00, 0xd0, 0x00, 0xd0, 0x00, 0xd0, 0x00, 0x54, 0x01, 0xab, | ||
| 138 | 0xf6, 0xc0, 0x42, 0xc0, 0x42, 0xc0, 0x42, 0xc0, 0x42, 0x00, 0xcb, | ||
| 139 | 0x00, 0xcb, 0x00, 0xcb, 0x00, 0xcb, 0x00, 0xcb, 0x00, 0xcb, 0x00, | ||
| 140 | 0xcb, 0x00, 0xcb, 0x22, 0x01, 0x37, 0xa9, 0xc0, 0x33, 0xc0, 0x33, | ||
| 141 | 0xc0, 0x33, 0xc0, 0x33, 0x00, 0xbc, 0x00, 0xbc, 0x00, 0xbc, 0x00, | ||
| 142 | 0xbc, 0x00, 0xbc, 0x00, 0xbc, 0x00, 0xbc, 0x00, 0xbc, 0xfb, 0x00, | ||
| 143 | 0xca, 0x79, 0xc0, 0x2b, 0xc0, 0x2b, 0xc0, 0x2b, 0xc0, 0x2b, 0x00, | ||
| 144 | 0xb4, 0x00, 0xb4, 0x00, 0xb4, 0x00, 0xb4, 0x00, 0xb4, 0x00, 0xb4, | ||
| 145 | 0x00, 0xb4, 0x00, 0xb4, 0xd0, 0x00, 0x5d, 0x54, 0xc0, 0x21, 0xc0, | ||
| 146 | 0x21, 0xc0, 0x21, 0xc0, 0x21, 0x00, 0xaa, 0x00, 0xaa, 0x00, 0xaa, | ||
| 147 | 0x00, 0xaa, 0x00, 0xaa, 0x00, 0xaa, 0x00, 0xaa, 0x00, 0xaa, 0xa7, | ||
| 148 | 0x00, 0xa9, 0x3d, 0xc0, 0x17, 0xc0, 0x17, 0xc0, 0x17, 0xc0, 0x17, | ||
| 149 | 0x00, 0xa0, 0x00, 0xa0, 0x00, 0xa0, 0x00, 0xa0, 0x00, 0xa0, 0x00, | ||
| 150 | 0xa0, 0x00, 0xa0, 0x00, 0xa0, 0x7a, 0x00, 0x06, 0x2c, 0xc0, 0x0d, | ||
| 151 | 0xc0, 0x0d, 0xc0, 0x0d, 0xc0, 0x0d, 0x00, 0x96, 0x00, 0x96, 0x00, | ||
| 152 | 0x96, 0x00, 0x96, 0x00, 0x96, 0x00, 0x96, 0x00, 0x96, 0x00, 0x96, | ||
| 153 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 154 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 155 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 156 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 157 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 158 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x80, | ||
| 159 | 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 160 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 161 | 0x80, 0x09, 0x00, 0x00, 0xc9, 0xff, 0xd8, 0xff, 0x00, 0x00, 0x00, | ||
| 162 | 0x01, 0x10, 0x01, 0x10, 0x01, 0x10, 0x01, 0x10, 0x01, 0xf0, 0x00, | ||
| 163 | 0xf0, 0x00, 0xf0, 0x00, 0xf0, 0x00, 0xd0, 0x00, 0xd0, 0x00, 0xd0, | ||
| 164 | 0x00, 0xd0, 0x00, 0x54, 0x01, 0xab, 0xf6, 0xc0, 0x42, 0xc0, 0x42, | ||
| 165 | 0xc0, 0x42, 0xc0, 0x42, 0x00, 0xcb, 0x00, 0xcb, 0x00, 0xcb, 0x00, | ||
| 166 | 0xcb, 0x00, 0xcb, 0x00, 0xcb, 0x00, 0xcb, 0x00, 0xcb, 0x22, 0x01, | ||
| 167 | 0x37, 0xa9, 0xc0, 0x33, 0xc0, 0x33, 0xc0, 0x33, 0xc0, 0x33, 0x00, | ||
| 168 | 0xbc, 0x00, 0xbc, 0x00, 0xbc, 0x00, 0xbc, 0x00, 0xbc, 0x00, 0xbc, | ||
| 169 | 0x00, 0xbc, 0x00, 0xbc, 0xfb, 0x00, 0xca, 0x79, 0xc0, 0x2b, 0xc0, | ||
| 170 | 0x2b, 0xc0, 0x2b, 0xc0, 0x2b, 0x00, 0xb4, 0x00, 0xb4, 0x00, 0xb4, | ||
| 171 | 0x00, 0xb4, 0x00, 0xb4, 0x00, 0xb4, 0x00, 0xb4, 0x00, 0xb4, 0xd0, | ||
| 172 | 0x00, 0x5d, 0x54, 0xc0, 0x21, 0xc0, 0x21, 0xc0, 0x21, 0xc0, 0x21, | ||
| 173 | 0x00, 0xaa, 0x00, 0xaa, 0x00, 0xaa, 0x00, 0xaa, 0x00, 0xaa, 0x00, | ||
| 174 | 0xaa, 0x00, 0xaa, 0x00, 0xaa, 0xa7, 0x00, 0xa9, 0x3d, 0xc0, 0x17, | ||
| 175 | 0xc0, 0x17, 0xc0, 0x17, 0xc0, 0x17, 0x00, 0xa0, 0x00, 0xa0, 0x00, | ||
| 176 | 0xa0, 0x00, 0xa0, 0x00, 0xa0, 0x00, 0xa0, 0x00, 0xa0, 0x00, 0xa0, | ||
| 177 | 0x7a, 0x00, 0x06, 0x2c, 0xc0, 0x0d, 0xc0, 0x0d, 0xc0, 0x0d, 0xc0, | ||
| 178 | 0x0d, 0x00, 0x96, 0x00, 0x96, 0x00, 0x96, 0x00, 0x96, 0x00, 0x96, | ||
| 179 | 0x00, 0x96, 0x00, 0x96, 0x00, 0x96, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 180 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 181 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 182 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 183 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 184 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 185 | 0x00, 0x00, 0x00, 0x00, 0x06, 0x80, 0x80, 0x00, 0x00, 0x00, 0x00, | ||
| 186 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 187 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x85, 0x09, 0x00, 0x00, 0xc9, | ||
| 188 | 0xff, 0xd8, 0xff, 0x00, 0x00, 0x00, 0x01, 0x10, 0x01, 0x10, 0x01, | ||
| 189 | 0x10, 0x01, 0x10, 0x01, 0xf0, 0x00, 0xf0, 0x00, 0xf0, 0x00, 0xf0, | ||
| 190 | 0x00, 0xd0, 0x00, 0xd0, 0x00, 0xd0, 0x00, 0xd0, 0x00, 0x54, 0x01, | ||
| 191 | 0xab, 0xf6, 0xc0, 0x42, 0xc0, 0x42, 0xc0, 0x42, 0xc0, 0x42, 0x00, | ||
| 192 | 0xcb, 0x00, 0xcb, 0x00, 0xcb, 0x00, 0xcb, 0x00, 0xcb, 0x00, 0xcb, | ||
| 193 | 0x00, 0xcb, 0x00, 0xcb, 0x22, 0x01, 0x37, 0xa9, 0xc0, 0x33, 0xc0, | ||
| 194 | 0x33, 0xc0, 0x33, 0xc0, 0x33, 0x00, 0xbc, 0x00, 0xbc, 0x00, 0xbc, | ||
| 195 | 0x00, 0xbc, 0x00, 0xbc, 0x00, 0xbc, 0x00, 0xbc, 0x00, 0xbc, 0xfb, | ||
| 196 | 0x00, 0xca, 0x79, 0xc0, 0x2b, 0xc0, 0x2b, 0xc0, 0x2b, 0xc0, 0x2b, | ||
| 197 | 0x00, 0xb4, 0x00, 0xb4, 0x00, 0xb4, 0x00, 0xb4, 0x00, 0xb4, 0x00, | ||
| 198 | 0xb4, 0x00, 0xb4, 0x00, 0xb4, 0xd0, 0x00, 0x5d, 0x54, 0xc0, 0x21, | ||
| 199 | 0xc0, 0x21, 0xc0, 0x21, 0xc0, 0x21, 0x00, 0xaa, 0x00, 0xaa, 0x00, | ||
| 200 | 0xaa, 0x00, 0xaa, 0x00, 0xaa, 0x00, 0xaa, 0x00, 0xaa, 0x00, 0xaa, | ||
| 201 | 0xa7, 0x00, 0xa9, 0x3d, 0xc0, 0x17, 0xc0, 0x17, 0xc0, 0x17, 0xc0, | ||
| 202 | 0x17, 0x00, 0xa0, 0x00, 0xa0, 0x00, 0xa0, 0x00, 0xa0, 0x00, 0xa0, | ||
| 203 | 0x00, 0xa0, 0x00, 0xa0, 0x00, 0xa0, 0x7a, 0x00, 0x06, 0x2c, 0xc0, | ||
| 204 | 0x0d, 0xc0, 0x0d, 0xc0, 0x0d, 0xc0, 0x0d, 0x00, 0x96, 0x00, 0x96, | ||
| 205 | 0x00, 0x96, 0x00, 0x96, 0x00, 0x96, 0x00, 0x96, 0x00, 0x96, 0x00, | ||
| 206 | 0x96, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 207 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 208 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 209 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 210 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 211 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, | ||
| 212 | 0x80, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 213 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 214 | 0x00, 0x8a, 0x09, 0x00, 0x00, 0xc9, 0xff, 0xd8, 0xff, 0x00, 0x00, | ||
| 215 | 0x00, 0x01, 0x10, 0x01, 0x10, 0x01, 0x10, 0x01, 0x10, 0x01, 0xf0, | ||
| 216 | 0x00, 0xf0, 0x00, 0xf0, 0x00, 0xf0, 0x00, 0xd0, 0x00, 0xd0, 0x00, | ||
| 217 | 0xd0, 0x00, 0xd0, 0x00, 0x54, 0x01, 0xab, 0xf6, 0xc0, 0x42, 0xc0, | ||
| 218 | 0x42, 0xc0, 0x42, 0xc0, 0x42, 0x00, 0xcb, 0x00, 0xcb, 0x00, 0xcb, | ||
| 219 | 0x00, 0xcb, 0x00, 0xcb, 0x00, 0xcb, 0x00, 0xcb, 0x00, 0xcb, 0x22, | ||
| 220 | 0x01, 0x37, 0xa9, 0xc0, 0x33, 0xc0, 0x33, 0xc0, 0x33, 0xc0, 0x33, | ||
| 221 | 0x00, 0xbc, 0x00, 0xbc, 0x00, 0xbc, 0x00, 0xbc, 0x00, 0xbc, 0x00, | ||
| 222 | 0xbc, 0x00, 0xbc, 0x00, 0xbc, 0xfb, 0x00, 0xca, 0x79, 0xc0, 0x2b, | ||
| 223 | 0xc0, 0x2b, 0xc0, 0x2b, 0xc0, 0x2b, 0x00, 0xb4, 0x00, 0xb4, 0x00, | ||
| 224 | 0xb4, 0x00, 0xb4, 0x00, 0xb4, 0x00, 0xb4, 0x00, 0xb4, 0x00, 0xb4, | ||
| 225 | 0xd0, 0x00, 0x5d, 0x54, 0xc0, 0x21, 0xc0, 0x21, 0xc0, 0x21, 0xc0, | ||
| 226 | 0x21, 0x00, 0xaa, 0x00, 0xaa, 0x00, 0xaa, 0x00, 0xaa, 0x00, 0xaa, | ||
| 227 | 0x00, 0xaa, 0x00, 0xaa, 0x00, 0xaa, 0xa7, 0x00, 0xa9, 0x3d, 0xc0, | ||
| 228 | 0x17, 0xc0, 0x17, 0xc0, 0x17, 0xc0, 0x17, 0x00, 0xa0, 0x00, 0xa0, | ||
| 229 | 0x00, 0xa0, 0x00, 0xa0, 0x00, 0xa0, 0x00, 0xa0, 0x00, 0xa0, 0x00, | ||
| 230 | 0xa0, 0x7a, 0x00, 0x06, 0x2c, 0xc0, 0x0d, 0xc0, 0x0d, 0xc0, 0x0d, | ||
| 231 | 0xc0, 0x0d, 0x00, 0x96, 0x00, 0x96, 0x00, 0x96, 0x00, 0x96, 0x00, | ||
| 232 | 0x96, 0x00, 0x96, 0x00, 0x96, 0x00, 0x96, 0x00, 0x00, 0x00, 0x00, | ||
| 233 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 234 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 235 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 236 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 237 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 238 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x80, 0x80, 0x00, 0x00, 0x00, | ||
| 239 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 240 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8f, 0x09, 0x00, 0x00, | ||
| 241 | 0xc9, 0xff, 0xd8, 0xff, 0x00, 0x00, 0x00, 0x01, 0x10, 0x01, 0x10, | ||
| 242 | 0x01, 0x10, 0x01, 0x10, 0x01, 0xf0, 0x00, 0xf0, 0x00, 0xf0, 0x00, | ||
| 243 | 0xf0, 0x00, 0xd0, 0x00, 0xd0, 0x00, 0xd0, 0x00, 0xd0, 0x00, 0x54, | ||
| 244 | 0x01, 0xab, 0xf6, 0xc0, 0x42, 0xc0, 0x42, 0xc0, 0x42, 0xc0, 0x42, | ||
| 245 | 0x00, 0xcb, 0x00, 0xcb, 0x00, 0xcb, 0x00, 0xcb, 0x00, 0xcb, 0x00, | ||
| 246 | 0xcb, 0x00, 0xcb, 0x00, 0xcb, 0x22, 0x01, 0x37, 0xa9, 0xc0, 0x33, | ||
| 247 | 0xc0, 0x33, 0xc0, 0x33, 0xc0, 0x33, 0x00, 0xbc, 0x00, 0xbc, 0x00, | ||
| 248 | 0xbc, 0x00, 0xbc, 0x00, 0xbc, 0x00, 0xbc, 0x00, 0xbc, 0x00, 0xbc, | ||
| 249 | 0xfb, 0x00, 0xca, 0x79, 0xc0, 0x2b, 0xc0, 0x2b, 0xc0, 0x2b, 0xc0, | ||
| 250 | 0x2b, 0x00, 0xb4, 0x00, 0xb4, 0x00, 0xb4, 0x00, 0xb4, 0x00, 0xb4, | ||
| 251 | 0x00, 0xb4, 0x00, 0xb4, 0x00, 0xb4, 0xd0, 0x00, 0x5d, 0x54, 0xc0, | ||
| 252 | 0x21, 0xc0, 0x21, 0xc0, 0x21, 0xc0, 0x21, 0x00, 0xaa, 0x00, 0xaa, | ||
| 253 | 0x00, 0xaa, 0x00, 0xaa, 0x00, 0xaa, 0x00, 0xaa, 0x00, 0xaa, 0x00, | ||
| 254 | 0xaa, 0xa7, 0x00, 0xa9, 0x3d, 0xc0, 0x17, 0xc0, 0x17, 0xc0, 0x17, | ||
| 255 | 0xc0, 0x17, 0x00, 0xa0, 0x00, 0xa0, 0x00, 0xa0, 0x00, 0xa0, 0x00, | ||
| 256 | 0xa0, 0x00, 0xa0, 0x00, 0xa0, 0x00, 0xa0, 0x7a, 0x00, 0x06, 0x2c, | ||
| 257 | 0xc0, 0x0d, 0xc0, 0x0d, 0xc0, 0x0d, 0xc0, 0x0d, 0x00, 0x96, 0x00, | ||
| 258 | 0x96, 0x00, 0x96, 0x00, 0x96, 0x00, 0x96, 0x00, 0x96, 0x00, 0x96, | ||
| 259 | 0x00, 0x96, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 260 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 261 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 262 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 263 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 264 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 265 | 0x06, 0x80, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 266 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 267 | 0x00, 0x00, 0x94, 0x09, 0x00, 0x00, 0xc9, 0xff, 0xd8, 0xff, 0x00, | ||
| 268 | 0x00, 0x00, 0x01, 0x10, 0x01, 0x10, 0x01, 0x10, 0x01, 0x10, 0x01, | ||
| 269 | 0xf0, 0x00, 0xf0, 0x00, 0xf0, 0x00, 0xf0, 0x00, 0xd0, 0x00, 0xd0, | ||
| 270 | 0x00, 0xd0, 0x00, 0xd0, 0x00, 0x54, 0x01, 0xab, 0xf6, 0xc0, 0x42, | ||
| 271 | 0xc0, 0x42, 0xc0, 0x42, 0xc0, 0x42, 0x00, 0xcb, 0x00, 0xcb, 0x00, | ||
| 272 | 0xcb, 0x00, 0xcb, 0x00, 0xcb, 0x00, 0xcb, 0x00, 0xcb, 0x00, 0xcb, | ||
| 273 | 0x22, 0x01, 0x37, 0xa9, 0xc0, 0x33, 0xc0, 0x33, 0xc0, 0x33, 0xc0, | ||
| 274 | 0x33, 0x00, 0xbc, 0x00, 0xbc, 0x00, 0xbc, 0x00, 0xbc, 0x00, 0xbc, | ||
| 275 | 0x00, 0xbc, 0x00, 0xbc, 0x00, 0xbc, 0xfb, 0x00, 0xca, 0x79, 0xc0, | ||
| 276 | 0x2b, 0xc0, 0x2b, 0xc0, 0x2b, 0xc0, 0x2b, 0x00, 0xb4, 0x00, 0xb4, | ||
| 277 | 0x00, 0xb4, 0x00, 0xb4, 0x00, 0xb4, 0x00, 0xb4, 0x00, 0xb4, 0x00, | ||
| 278 | 0xb4, 0xd0, 0x00, 0x5d, 0x54, 0xc0, 0x21, 0xc0, 0x21, 0xc0, 0x21, | ||
| 279 | 0xc0, 0x21, 0x00, 0xaa, 0x00, 0xaa, 0x00, 0xaa, 0x00, 0xaa, 0x00, | ||
| 280 | 0xaa, 0x00, 0xaa, 0x00, 0xaa, 0x00, 0xaa, 0xa7, 0x00, 0xa9, 0x3d, | ||
| 281 | 0xc0, 0x17, 0xc0, 0x17, 0xc0, 0x17, 0xc0, 0x17, 0x00, 0xa0, 0x00, | ||
| 282 | 0xa0, 0x00, 0xa0, 0x00, 0xa0, 0x00, 0xa0, 0x00, 0xa0, 0x00, 0xa0, | ||
| 283 | 0x00, 0xa0, 0x7a, 0x00, 0x06, 0x2c, 0xc0, 0x0d, 0xc0, 0x0d, 0xc0, | ||
| 284 | 0x0d, 0xc0, 0x0d, 0x00, 0x96, 0x00, 0x96, 0x00, 0x96, 0x00, 0x96, | ||
| 285 | 0x00, 0x96, 0x00, 0x96, 0x00, 0x96, 0x00, 0x96, 0x00, 0x00, 0x00, | ||
| 286 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 287 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 288 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 289 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 290 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 291 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x80, 0x80, 0x00, 0x00, | ||
| 292 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 293 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x99, 0x09, 0x00, | ||
| 294 | 0x00, 0xc9, 0xff, 0xd8, 0xff, 0x00, 0x00, 0x00, 0x01, 0x10, 0x01, | ||
| 295 | 0x10, 0x01, 0x10, 0x01, 0x10, 0x01, 0xf0, 0x00, 0xf0, 0x00, 0xf0, | ||
| 296 | 0x00, 0xf0, 0x00, 0xd0, 0x00, 0xd0, 0x00, 0xd0, 0x00, 0xd0, 0x00, | ||
| 297 | 0x54, 0x01, 0xab, 0xf6, 0xc0, 0x42, 0xc0, 0x42, 0xc0, 0x42, 0xc0, | ||
| 298 | 0x42, 0x00, 0xcb, 0x00, 0xcb, 0x00, 0xcb, 0x00, 0xcb, 0x00, 0xcb, | ||
| 299 | 0x00, 0xcb, 0x00, 0xcb, 0x00, 0xcb, 0x22, 0x01, 0x37, 0xa9, 0xc0, | ||
| 300 | 0x33, 0xc0, 0x33, 0xc0, 0x33, 0xc0, 0x33, 0x00, 0xbc, 0x00, 0xbc, | ||
| 301 | 0x00, 0xbc, 0x00, 0xbc, 0x00, 0xbc, 0x00, 0xbc, 0x00, 0xbc, 0x00, | ||
| 302 | 0xbc, 0xfb, 0x00, 0xca, 0x79, 0xc0, 0x2b, 0xc0, 0x2b, 0xc0, 0x2b, | ||
| 303 | 0xc0, 0x2b, 0x00, 0xb4, 0x00, 0xb4, 0x00, 0xb4, 0x00, 0xb4, 0x00, | ||
| 304 | 0xb4, 0x00, 0xb4, 0x00, 0xb4, 0x00, 0xb4, 0xd0, 0x00, 0x5d, 0x54, | ||
| 305 | 0xc0, 0x21, 0xc0, 0x21, 0xc0, 0x21, 0xc0, 0x21, 0x00, 0xaa, 0x00, | ||
| 306 | 0xaa, 0x00, 0xaa, 0x00, 0xaa, 0x00, 0xaa, 0x00, 0xaa, 0x00, 0xaa, | ||
| 307 | 0x00, 0xaa, 0xa7, 0x00, 0xa9, 0x3d, 0xc0, 0x17, 0xc0, 0x17, 0xc0, | ||
| 308 | 0x17, 0xc0, 0x17, 0x00, 0xa0, 0x00, 0xa0, 0x00, 0xa0, 0x00, 0xa0, | ||
| 309 | 0x00, 0xa0, 0x00, 0xa0, 0x00, 0xa0, 0x00, 0xa0, 0x7a, 0x00, 0x06, | ||
| 310 | 0x2c, 0xc0, 0x0d, 0xc0, 0x0d, 0xc0, 0x0d, 0xc0, 0x0d, 0x00, 0x96, | ||
| 311 | 0x00, 0x96, 0x00, 0x96, 0x00, 0x96, 0x00, 0x96, 0x00, 0x96, 0x00, | ||
| 312 | 0x96, 0x00, 0x96, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 313 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 314 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 315 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 316 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 317 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 318 | 0x00, 0x06, 0x80, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 319 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 320 | 0x00, 0x00, 0x00, 0x9e, 0x09, 0x00, 0x00, 0xc9, 0xff, 0xd8, 0xff, | ||
| 321 | 0x00, 0x00, 0x00, 0x01, 0x10, 0x01, 0x10, 0x01, 0x10, 0x01, 0x10, | ||
| 322 | 0x01, 0xf0, 0x00, 0xf0, 0x00, 0xf0, 0x00, 0xf0, 0x00, 0xd0, 0x00, | ||
| 323 | 0xd0, 0x00, 0xd0, 0x00, 0xd0, 0x00, 0x54, 0x01, 0xab, 0xf6, 0xc0, | ||
| 324 | 0x42, 0xc0, 0x42, 0xc0, 0x42, 0xc0, 0x42, 0x00, 0xcb, 0x00, 0xcb, | ||
| 325 | 0x00, 0xcb, 0x00, 0xcb, 0x00, 0xcb, 0x00, 0xcb, 0x00, 0xcb, 0x00, | ||
| 326 | 0xcb, 0x22, 0x01, 0x37, 0xa9, 0xc0, 0x33, 0xc0, 0x33, 0xc0, 0x33, | ||
| 327 | 0xc0, 0x33, 0x00, 0xbc, 0x00, 0xbc, 0x00, 0xbc, 0x00, 0xbc, 0x00, | ||
| 328 | 0xbc, 0x00, 0xbc, 0x00, 0xbc, 0x00, 0xbc, 0xfb, 0x00, 0xca, 0x79, | ||
| 329 | 0xc0, 0x2b, 0xc0, 0x2b, 0xc0, 0x2b, 0xc0, 0x2b, 0x00, 0xb4, 0x00, | ||
| 330 | 0xb4, 0x00, 0xb4, 0x00, 0xb4, 0x00, 0xb4, 0x00, 0xb4, 0x00, 0xb4, | ||
| 331 | 0x00, 0xb4, 0xd0, 0x00, 0x5d, 0x54, 0xc0, 0x21, 0xc0, 0x21, 0xc0, | ||
| 332 | 0x21, 0xc0, 0x21, 0x00, 0xaa, 0x00, 0xaa, 0x00, 0xaa, 0x00, 0xaa, | ||
| 333 | 0x00, 0xaa, 0x00, 0xaa, 0x00, 0xaa, 0x00, 0xaa, 0xa7, 0x00, 0xa9, | ||
| 334 | 0x3d, 0xc0, 0x17, 0xc0, 0x17, 0xc0, 0x17, 0xc0, 0x17, 0x00, 0xa0, | ||
| 335 | 0x00, 0xa0, 0x00, 0xa0, 0x00, 0xa0, 0x00, 0xa0, 0x00, 0xa0, 0x00, | ||
| 336 | 0xa0, 0x00, 0xa0, 0x7a, 0x00, 0x06, 0x2c, 0xc0, 0x0d, 0xc0, 0x0d, | ||
| 337 | 0xc0, 0x0d, 0xc0, 0x0d, 0x00, 0x96, 0x00, 0x96, 0x00, 0x96, 0x00, | ||
| 338 | 0x96, 0x00, 0x96, 0x00, 0x96, 0x00, 0x96, 0x00, 0x96, 0x00, 0x00, | ||
| 339 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 340 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 341 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 342 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 343 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 344 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x80, 0x80, 0x00, | ||
| 345 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 346 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 347 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 348 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 349 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 350 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 351 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 352 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 353 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 354 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 355 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 356 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 357 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 358 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 359 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 360 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 361 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 362 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 363 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 364 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 365 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 366 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 367 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 368 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 369 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 370 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 371 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 372 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 373 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 374 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 375 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 376 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 377 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 378 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 379 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 380 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 381 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 382 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 383 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 384 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 385 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 386 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 387 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 388 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 389 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 390 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 391 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 392 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 393 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 394 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 395 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 396 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 397 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 398 | 0x00 }; | ||
| 399 | |||
| 400 | static const u8 default_cal_rssi[] = { | ||
| 401 | 0x0a, 0x01, 0x72, 0xfe, 0x1a, 0x00, 0x00, 0x00, 0x0a, 0x01, 0x72, | ||
| 402 | 0xfe, 0x1a, 0x00, 0x00, 0x00, 0x0a, 0x01, 0x72, 0xfe, 0x1a, 0x00, | ||
| 403 | 0x00, 0x00, 0x0a, 0x01, 0x72, 0xfe, 0x1a, 0x00, 0x00, 0x00, 0x0a, | ||
| 404 | 0x01, 0x72, 0xfe, 0x1a, 0x00, 0x00, 0x00, 0x0a, 0x01, 0x72, 0xfe, | ||
| 405 | 0x1a, 0x00, 0x00, 0x00, 0x0a, 0x01, 0x72, 0xfe, 0x1a, 0x00, 0x00, | ||
| 406 | 0x00, 0x0a, 0x01, 0x72, 0xfe, 0x1a, 0x00, 0x00, 0x00, 0x0a, 0x01, | ||
| 407 | 0x72, 0xfe, 0x1a, 0x00, 0x00, 0x00, 0x0a, 0x01, 0x72, 0xfe, 0x1a, | ||
| 408 | 0x00, 0x00, 0x00, 0x0a, 0x01, 0x72, 0xfe, 0x1a, 0x00, 0x00, 0x00, | ||
| 409 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 410 | 0x00, 0x00, 0x00, 0x00, 0x00 }; | ||
| 411 | |||
| 412 | static void stlc45xx_tx_edcf(struct stlc45xx *stlc); | ||
| 413 | static void stlc45xx_tx_setup(struct stlc45xx *stlc); | ||
| 414 | static void stlc45xx_tx_scan(struct stlc45xx *stlc); | ||
| 415 | static void stlc45xx_tx_psm(struct stlc45xx *stlc, bool enable); | ||
| 416 | static int stlc45xx_tx_nullfunc(struct stlc45xx *stlc, bool powersave); | ||
| 417 | static int stlc45xx_tx_pspoll(struct stlc45xx *stlc, bool powersave); | ||
| 418 | |||
| 419 | static ssize_t stlc45xx_sysfs_show_cal_rssi(struct device *dev, | ||
| 420 | struct device_attribute *attr, | ||
| 421 | char *buf) | ||
| 422 | { | ||
| 423 | struct stlc45xx *stlc = dev_get_drvdata(dev); | ||
| 424 | ssize_t len; | ||
| 425 | |||
| 426 | stlc45xx_debug(DEBUG_FUNC, "%s", __func__); | ||
| 427 | |||
| 428 | len = PAGE_SIZE; | ||
| 429 | |||
| 430 | mutex_lock(&stlc->mutex); | ||
| 431 | |||
| 432 | if (stlc->cal_rssi) | ||
| 433 | hex_dump_to_buffer(stlc->cal_rssi, RSSI_CAL_ARRAY_LEN, 16, | ||
| 434 | 2, buf, len, 0); | ||
| 435 | mutex_unlock(&stlc->mutex); | ||
| 436 | |||
| 437 | len = strlen(buf); | ||
| 438 | |||
| 439 | return len; | ||
| 440 | } | ||
| 441 | |||
| 442 | static ssize_t stlc45xx_sysfs_store_cal_rssi(struct device *dev, | ||
| 443 | struct device_attribute *attr, | ||
| 444 | const char *buf, size_t count) | ||
| 445 | { | ||
| 446 | struct stlc45xx *stlc = dev_get_drvdata(dev); | ||
| 447 | |||
| 448 | stlc45xx_debug(DEBUG_FUNC, "%s", __func__); | ||
| 449 | |||
| 450 | mutex_lock(&stlc->mutex); | ||
| 451 | |||
| 452 | if (count != RSSI_CAL_ARRAY_LEN) { | ||
| 453 | stlc45xx_error("invalid cal_rssi length: %zu", count); | ||
| 454 | count = 0; | ||
| 455 | goto out_unlock; | ||
| 456 | } | ||
| 457 | |||
| 458 | kfree(stlc->cal_rssi); | ||
| 459 | |||
| 460 | stlc->cal_rssi = kmemdup(buf, RSSI_CAL_ARRAY_LEN, GFP_KERNEL); | ||
| 461 | |||
| 462 | if (!stlc->cal_rssi) { | ||
| 463 | stlc45xx_error("failed to allocate memory for cal_rssi"); | ||
| 464 | count = 0; | ||
| 465 | goto out_unlock; | ||
| 466 | } | ||
| 467 | |||
| 468 | out_unlock: | ||
| 469 | mutex_unlock(&stlc->mutex); | ||
| 470 | |||
| 471 | return count; | ||
| 472 | } | ||
| 473 | |||
| 474 | static ssize_t stlc45xx_sysfs_show_cal_channels(struct device *dev, | ||
| 475 | struct device_attribute *attr, | ||
| 476 | char *buf) | ||
| 477 | { | ||
| 478 | struct stlc45xx *stlc = dev_get_drvdata(dev); | ||
| 479 | ssize_t len; | ||
| 480 | |||
| 481 | stlc45xx_debug(DEBUG_FUNC, "%s", __func__); | ||
| 482 | |||
| 483 | len = PAGE_SIZE; | ||
| 484 | |||
| 485 | mutex_lock(&stlc->mutex); | ||
| 486 | |||
| 487 | if (stlc->cal_channels) | ||
| 488 | hex_dump_to_buffer(stlc->cal_channels, CHANNEL_CAL_ARRAY_LEN, | ||
| 489 | 16, 2, buf, len, 0); | ||
| 490 | |||
| 491 | mutex_unlock(&stlc->mutex); | ||
| 492 | |||
| 493 | len = strlen(buf); | ||
| 494 | |||
| 495 | return len; | ||
| 496 | } | ||
| 497 | |||
| 498 | static ssize_t stlc45xx_sysfs_store_cal_channels(struct device *dev, | ||
| 499 | struct device_attribute *attr, | ||
| 500 | const char *buf, size_t count) | ||
| 501 | { | ||
| 502 | struct stlc45xx *stlc = dev_get_drvdata(dev); | ||
| 503 | |||
| 504 | stlc45xx_debug(DEBUG_FUNC, "%s", __func__); | ||
| 505 | |||
| 506 | mutex_lock(&stlc->mutex); | ||
| 507 | |||
| 508 | if (count != CHANNEL_CAL_ARRAY_LEN) { | ||
| 509 | stlc45xx_error("invalid cal_channels size: %zu ", count); | ||
| 510 | count = 0; | ||
| 511 | goto out_unlock; | ||
| 512 | } | ||
| 513 | |||
| 514 | kfree(stlc->cal_channels); | ||
| 515 | |||
| 516 | stlc->cal_channels = kmemdup(buf, count, GFP_KERNEL); | ||
| 517 | |||
| 518 | if (!stlc->cal_channels) { | ||
| 519 | stlc45xx_error("failed to allocate memory for cal_channels"); | ||
| 520 | count = 0; | ||
| 521 | goto out_unlock; | ||
| 522 | } | ||
| 523 | |||
| 524 | out_unlock: | ||
| 525 | mutex_unlock(&stlc->mutex); | ||
| 526 | |||
| 527 | return count; | ||
| 528 | } | ||
| 529 | |||
| 530 | static ssize_t stlc45xx_sysfs_show_tx_buf(struct device *dev, | ||
| 531 | struct device_attribute *attr, | ||
| 532 | char *buf) | ||
| 533 | { | ||
| 534 | struct stlc45xx *stlc = dev_get_drvdata(dev); | ||
| 535 | struct txbuffer *entry; | ||
| 536 | ssize_t len = 0; | ||
| 537 | |||
| 538 | stlc45xx_debug(DEBUG_FUNC, "%s()", __func__); | ||
| 539 | |||
| 540 | mutex_lock(&stlc->mutex); | ||
| 541 | |||
| 542 | list_for_each_entry(entry, &stlc->tx_sent, tx_list) { | ||
| 543 | len += sprintf(buf + len, "0x%x: 0x%x-0x%x\n", | ||
| 544 | entry->handle, entry->start, | ||
| 545 | entry->end); | ||
| 546 | } | ||
| 547 | |||
| 548 | mutex_unlock(&stlc->mutex); | ||
| 549 | |||
| 550 | return len; | ||
| 551 | } | ||
| 552 | |||
| 553 | static DEVICE_ATTR(cal_rssi, S_IRUGO | S_IWUSR, | ||
| 554 | stlc45xx_sysfs_show_cal_rssi, | ||
| 555 | stlc45xx_sysfs_store_cal_rssi); | ||
| 556 | static DEVICE_ATTR(cal_channels, S_IRUGO | S_IWUSR, | ||
| 557 | stlc45xx_sysfs_show_cal_channels, | ||
| 558 | stlc45xx_sysfs_store_cal_channels); | ||
| 559 | static DEVICE_ATTR(tx_buf, S_IRUGO, stlc45xx_sysfs_show_tx_buf, NULL); | ||
| 560 | |||
| 561 | static void stlc45xx_spi_read(struct stlc45xx *stlc, unsigned long addr, | ||
| 562 | void *buf, size_t len) | ||
| 563 | { | ||
| 564 | struct spi_transfer t[2]; | ||
| 565 | struct spi_message m; | ||
| 566 | |||
| 567 | /* We first push the address */ | ||
| 568 | addr = (addr << 8) | ADDR_READ_BIT_15; | ||
| 569 | |||
| 570 | spi_message_init(&m); | ||
| 571 | memset(t, 0, sizeof(t)); | ||
| 572 | |||
| 573 | t[0].tx_buf = &addr; | ||
| 574 | t[0].len = 2; | ||
| 575 | spi_message_add_tail(&t[0], &m); | ||
| 576 | |||
| 577 | t[1].rx_buf = buf; | ||
| 578 | t[1].len = len; | ||
| 579 | spi_message_add_tail(&t[1], &m); | ||
| 580 | |||
| 581 | spi_sync(stlc->spi, &m); | ||
| 582 | } | ||
| 583 | |||
| 584 | |||
| 585 | static void stlc45xx_spi_write(struct stlc45xx *stlc, unsigned long addr, | ||
| 586 | void *buf, size_t len) | ||
| 587 | { | ||
| 588 | struct spi_transfer t[3]; | ||
| 589 | struct spi_message m; | ||
| 590 | u16 last_word; | ||
| 591 | |||
| 592 | /* We first push the address */ | ||
| 593 | addr = addr << 8; | ||
| 594 | |||
| 595 | spi_message_init(&m); | ||
| 596 | memset(t, 0, sizeof(t)); | ||
| 597 | |||
| 598 | t[0].tx_buf = &addr; | ||
| 599 | t[0].len = 2; | ||
| 600 | spi_message_add_tail(&t[0], &m); | ||
| 601 | |||
| 602 | t[1].tx_buf = buf; | ||
| 603 | t[1].len = len; | ||
| 604 | spi_message_add_tail(&t[1], &m); | ||
| 605 | |||
| 606 | if (len % 2) { | ||
| 607 | last_word = ((u8 *)buf)[len - 1]; | ||
| 608 | |||
| 609 | t[2].tx_buf = &last_word; | ||
| 610 | t[2].len = 2; | ||
| 611 | spi_message_add_tail(&t[2], &m); | ||
| 612 | } | ||
| 613 | |||
| 614 | spi_sync(stlc->spi, &m); | ||
| 615 | } | ||
| 616 | |||
| 617 | static u16 stlc45xx_read16(struct stlc45xx *stlc, unsigned long addr) | ||
| 618 | { | ||
| 619 | u16 val; | ||
| 620 | |||
| 621 | stlc45xx_spi_read(stlc, addr, &val, sizeof(val)); | ||
| 622 | |||
| 623 | return val; | ||
| 624 | } | ||
| 625 | |||
| 626 | static u32 stlc45xx_read32(struct stlc45xx *stlc, unsigned long addr) | ||
| 627 | { | ||
| 628 | u32 val; | ||
| 629 | |||
| 630 | stlc45xx_spi_read(stlc, addr, &val, sizeof(val)); | ||
| 631 | |||
| 632 | return val; | ||
| 633 | } | ||
| 634 | |||
| 635 | static void stlc45xx_write16(struct stlc45xx *stlc, unsigned long addr, u16 val) | ||
| 636 | { | ||
| 637 | stlc45xx_spi_write(stlc, addr, &val, sizeof(val)); | ||
| 638 | } | ||
| 639 | |||
| 640 | static void stlc45xx_write32(struct stlc45xx *stlc, unsigned long addr, u32 val) | ||
| 641 | { | ||
| 642 | stlc45xx_spi_write(stlc, addr, &val, sizeof(val)); | ||
| 643 | } | ||
| 644 | |||
| 645 | struct stlc45xx_spi_reg { | ||
| 646 | u16 address; | ||
| 647 | u16 length; | ||
| 648 | char *name; | ||
| 649 | }; | ||
| 650 | |||
| 651 | /* caller must hold tx_lock */ | ||
| 652 | static void stlc45xx_txbuffer_dump(struct stlc45xx *stlc) | ||
| 653 | { | ||
| 654 | struct txbuffer *txbuffer; | ||
| 655 | char *buf, *pos; | ||
| 656 | int buf_len, l, count; | ||
| 657 | |||
| 658 | if (!(DEBUG_LEVEL & DEBUG_TXBUFFER)) | ||
| 659 | return; | ||
| 660 | |||
| 661 | stlc45xx_debug(DEBUG_FUNC, "%s()", __func__); | ||
| 662 | |||
| 663 | buf_len = 500; | ||
| 664 | buf = kmalloc(buf_len, GFP_ATOMIC); | ||
| 665 | if (!buf) | ||
| 666 | return; | ||
| 667 | |||
| 668 | pos = buf; | ||
| 669 | count = 0; | ||
| 670 | |||
| 671 | list_for_each_entry(txbuffer, &stlc->txbuffer, buffer_list) { | ||
| 672 | l = snprintf(pos, buf_len, "0x%x-0x%x,", | ||
| 673 | txbuffer->start, txbuffer->end); | ||
| 674 | /* drop the null byte */ | ||
| 675 | pos += l; | ||
| 676 | buf_len -= l; | ||
| 677 | count++; | ||
| 678 | } | ||
| 679 | |||
| 680 | if (count == 0) | ||
| 681 | *pos = '\0'; | ||
| 682 | else | ||
| 683 | *--pos = '\0'; | ||
| 684 | |||
| 685 | stlc45xx_debug(DEBUG_TXBUFFER, "txbuffer: in buffer %d regions: %s", | ||
| 686 | count, buf); | ||
| 687 | |||
| 688 | kfree(buf); | ||
| 689 | } | ||
| 690 | |||
| 691 | /* caller must hold tx_lock */ | ||
| 692 | static int stlc45xx_txbuffer_find(struct stlc45xx *stlc, size_t len) | ||
| 693 | { | ||
| 694 | struct txbuffer *txbuffer; | ||
| 695 | int pos; | ||
| 696 | |||
| 697 | stlc45xx_debug(DEBUG_FUNC, "%s()", __func__); | ||
| 698 | |||
| 699 | pos = FIRMWARE_TXBUFFER_START; | ||
| 700 | |||
| 701 | if (list_empty(&stlc->txbuffer)) | ||
| 702 | goto out; | ||
| 703 | |||
| 704 | /* | ||
| 705 | * the entries in txbuffer must be in the same order as they are in | ||
| 706 | * the real buffer | ||
| 707 | */ | ||
| 708 | list_for_each_entry(txbuffer, &stlc->txbuffer, buffer_list) { | ||
| 709 | if (pos + len < txbuffer->start) | ||
| 710 | break; | ||
| 711 | pos = ALIGN(txbuffer->end + 1, 4); | ||
| 712 | } | ||
| 713 | |||
| 714 | if (pos + len > FIRMWARE_TXBUFFER_END) | ||
| 715 | /* not enough room */ | ||
| 716 | pos = -1; | ||
| 717 | |||
| 718 | stlc45xx_debug(DEBUG_TXBUFFER, "txbuffer: find %zu B: 0x%x", len, pos); | ||
| 719 | |||
| 720 | out: | ||
| 721 | return pos; | ||
| 722 | } | ||
| 723 | |||
| 724 | static int stlc45xx_txbuffer_add(struct stlc45xx *stlc, | ||
| 725 | struct txbuffer *txbuffer) | ||
| 726 | { | ||
| 727 | struct txbuffer *r, *prev = NULL; | ||
| 728 | |||
| 729 | if (list_empty(&stlc->txbuffer)) { | ||
| 730 | list_add(&txbuffer->buffer_list, &stlc->txbuffer); | ||
| 731 | return 0; | ||
| 732 | } | ||
| 733 | |||
| 734 | r = list_first_entry(&stlc->txbuffer, struct txbuffer, buffer_list); | ||
| 735 | |||
| 736 | if (txbuffer->start < r->start) { | ||
| 737 | /* add to the beginning of the list */ | ||
| 738 | list_add(&txbuffer->buffer_list, &stlc->txbuffer); | ||
| 739 | return 0; | ||
| 740 | } | ||
| 741 | |||
| 742 | prev = NULL; | ||
| 743 | list_for_each_entry(r, &stlc->txbuffer, buffer_list) { | ||
| 744 | /* skip first entry, we checked for that above */ | ||
| 745 | if (!prev) { | ||
| 746 | prev = r; | ||
| 747 | continue; | ||
| 748 | } | ||
| 749 | |||
| 750 | /* double-check overlaps */ | ||
| 751 | WARN_ON_ONCE(txbuffer->start >= r->start && | ||
| 752 | txbuffer->start <= r->end); | ||
| 753 | WARN_ON_ONCE(txbuffer->end >= r->start && | ||
| 754 | txbuffer->end <= r->end); | ||
| 755 | |||
| 756 | if (prev->end < txbuffer->start && | ||
| 757 | txbuffer->end < r->start) { | ||
| 758 | /* insert at this spot */ | ||
| 759 | list_add_tail(&txbuffer->buffer_list, &r->buffer_list); | ||
| 760 | return 0; | ||
| 761 | } | ||
| 762 | |||
| 763 | prev = r; | ||
| 764 | } | ||
| 765 | |||
| 766 | /* not found */ | ||
| 767 | list_add_tail(&txbuffer->buffer_list, &stlc->txbuffer); | ||
| 768 | |||
| 769 | return 0; | ||
| 770 | |||
| 771 | } | ||
| 772 | |||
| 773 | /* caller must hold tx_lock */ | ||
| 774 | static struct txbuffer *stlc45xx_txbuffer_alloc(struct stlc45xx *stlc, | ||
| 775 | size_t frame_len) | ||
| 776 | { | ||
| 777 | struct txbuffer *entry = NULL; | ||
| 778 | size_t len; | ||
| 779 | int pos; | ||
| 780 | |||
| 781 | stlc45xx_debug(DEBUG_FUNC, "%s()", __func__); | ||
| 782 | |||
| 783 | len = FIRMWARE_TXBUFFER_HEADER + frame_len + FIRMWARE_TXBUFFER_TRAILER; | ||
| 784 | pos = stlc45xx_txbuffer_find(stlc, len); | ||
| 785 | |||
| 786 | if (pos < 0) | ||
| 787 | return NULL; | ||
| 788 | |||
| 789 | WARN_ON_ONCE(pos + len > FIRMWARE_TXBUFFER_END); | ||
| 790 | WARN_ON_ONCE(pos < FIRMWARE_TXBUFFER_START); | ||
| 791 | |||
| 792 | entry = kmalloc(sizeof(*entry), GFP_ATOMIC); | ||
| 793 | entry->start = pos; | ||
| 794 | entry->frame_start = pos + FIRMWARE_TXBUFFER_HEADER; | ||
| 795 | entry->end = entry->start + len - 1; | ||
| 796 | |||
| 797 | stlc45xx_debug(DEBUG_TXBUFFER, "txbuffer: allocated 0x%x-0x%x", | ||
| 798 | entry->start, entry->end); | ||
| 799 | |||
| 800 | stlc45xx_txbuffer_add(stlc, entry); | ||
| 801 | |||
| 802 | stlc45xx_txbuffer_dump(stlc); | ||
| 803 | |||
| 804 | return entry; | ||
| 805 | } | ||
| 806 | |||
| 807 | /* caller must hold tx_lock */ | ||
| 808 | static void stlc45xx_txbuffer_free(struct stlc45xx *stlc, | ||
| 809 | struct txbuffer *txbuffer) | ||
| 810 | { | ||
| 811 | stlc45xx_debug(DEBUG_FUNC, "%s()", __func__); | ||
| 812 | |||
| 813 | stlc45xx_debug(DEBUG_TXBUFFER, "txbuffer: freed 0x%x-0x%x", | ||
| 814 | txbuffer->start, txbuffer->end); | ||
| 815 | |||
| 816 | list_del(&txbuffer->buffer_list); | ||
| 817 | kfree(txbuffer); | ||
| 818 | } | ||
| 819 | |||
| 820 | |||
| 821 | static int stlc45xx_wait_bit(struct stlc45xx *stlc, u16 reg, u32 mask, | ||
| 822 | u32 expected) | ||
| 823 | { | ||
| 824 | int i; | ||
| 825 | char buffer[4]; | ||
| 826 | |||
| 827 | for (i = 0; i < 2000; i++) { | ||
| 828 | stlc45xx_spi_read(stlc, reg, buffer, sizeof(buffer)); | ||
| 829 | if (((*(u32 *)buffer) & mask) == expected) | ||
| 830 | return 1; | ||
| 831 | msleep(1); | ||
| 832 | } | ||
| 833 | |||
| 834 | return 0; | ||
| 835 | } | ||
| 836 | |||
| 837 | static int stlc45xx_request_firmware(struct stlc45xx *stlc) | ||
| 838 | { | ||
| 839 | const struct firmware *fw; | ||
| 840 | int ret; | ||
| 841 | |||
| 842 | /* FIXME: should driver use it's own struct device? */ | ||
| 843 | ret = request_firmware(&fw, "3826.arm", &stlc->spi->dev); | ||
| 844 | |||
| 845 | if (ret < 0) { | ||
| 846 | stlc45xx_error("request_firmware() failed: %d", ret); | ||
| 847 | return ret; | ||
| 848 | } | ||
| 849 | |||
| 850 | if (fw->size % 4) { | ||
| 851 | stlc45xx_error("firmware size is not multiple of 32bit: %zu", | ||
| 852 | fw->size); | ||
| 853 | return -EILSEQ; /* Illegal byte sequence */; | ||
| 854 | } | ||
| 855 | |||
| 856 | if (fw->size < 1000) { | ||
| 857 | stlc45xx_error("firmware is too small: %zu", fw->size); | ||
| 858 | return -EILSEQ; | ||
| 859 | } | ||
| 860 | |||
| 861 | stlc->fw = kmemdup(fw->data, fw->size, GFP_KERNEL); | ||
| 862 | if (!stlc->fw) { | ||
| 863 | stlc45xx_error("could not allocate memory for firmware"); | ||
| 864 | return -ENOMEM; | ||
| 865 | } | ||
| 866 | |||
| 867 | stlc->fw_len = fw->size; | ||
| 868 | |||
| 869 | release_firmware(fw); | ||
| 870 | |||
| 871 | return 0; | ||
| 872 | } | ||
| 873 | |||
| 874 | static int stlc45xx_upload_firmware(struct stlc45xx *stlc) | ||
| 875 | { | ||
| 876 | struct s_dma_regs dma_regs; | ||
| 877 | unsigned long fw_len, fw_addr; | ||
| 878 | long _fw_len; | ||
| 879 | int ret; | ||
| 880 | |||
| 881 | stlc45xx_debug(DEBUG_FUNC, "%s", __func__); | ||
| 882 | |||
| 883 | if (!stlc->fw) { | ||
| 884 | ret = stlc45xx_request_firmware(stlc); | ||
| 885 | if (ret < 0) | ||
| 886 | return ret; | ||
| 887 | } | ||
| 888 | |||
| 889 | /* stop the device */ | ||
| 890 | stlc45xx_write16(stlc, SPI_ADRS_DEV_CTRL_STAT, | ||
| 891 | SPI_CTRL_STAT_HOST_OVERRIDE | SPI_CTRL_STAT_HOST_RESET | ||
| 892 | | SPI_CTRL_STAT_START_HALTED); | ||
| 893 | |||
| 894 | msleep(TARGET_BOOT_SLEEP); | ||
| 895 | |||
| 896 | stlc45xx_write16(stlc, SPI_ADRS_DEV_CTRL_STAT, | ||
| 897 | SPI_CTRL_STAT_HOST_OVERRIDE | ||
| 898 | | SPI_CTRL_STAT_START_HALTED); | ||
| 899 | |||
| 900 | msleep(TARGET_BOOT_SLEEP); | ||
| 901 | |||
| 902 | fw_addr = FIRMWARE_ADDRESS; | ||
| 903 | fw_len = stlc->fw_len; | ||
| 904 | |||
| 905 | while (fw_len > 0) { | ||
| 906 | _fw_len = (fw_len > SPI_MAX_PACKET_SIZE) | ||
| 907 | ? SPI_MAX_PACKET_SIZE : fw_len; | ||
| 908 | dma_regs.cmd = SPI_DMA_WRITE_CTRL_ENABLE; | ||
| 909 | dma_regs.len = cpu_to_le16(_fw_len); | ||
| 910 | dma_regs.addr = cpu_to_le32(fw_addr); | ||
| 911 | |||
| 912 | fw_len -= _fw_len; | ||
| 913 | fw_addr += _fw_len; | ||
| 914 | |||
| 915 | stlc45xx_write16(stlc, SPI_ADRS_DMA_WRITE_CTRL, dma_regs.cmd); | ||
| 916 | |||
| 917 | if (stlc45xx_wait_bit(stlc, SPI_ADRS_DMA_WRITE_CTRL, | ||
| 918 | HOST_ALLOWED, HOST_ALLOWED) == 0) { | ||
| 919 | stlc45xx_error("fw_upload not allowed to DMA write"); | ||
| 920 | return -EAGAIN; | ||
| 921 | } | ||
| 922 | |||
| 923 | stlc45xx_write16(stlc, SPI_ADRS_DMA_WRITE_LEN, dma_regs.len); | ||
| 924 | stlc45xx_write32(stlc, SPI_ADRS_DMA_WRITE_BASE, dma_regs.addr); | ||
| 925 | |||
| 926 | stlc45xx_spi_write(stlc, SPI_ADRS_DMA_DATA, stlc->fw, _fw_len); | ||
| 927 | |||
| 928 | /* FIXME: I think this doesn't work if firmware is large, | ||
| 929 | * this loop goes to second round. fw->data is not | ||
| 930 | * increased at all! */ | ||
| 931 | } | ||
| 932 | |||
| 933 | BUG_ON(fw_len != 0); | ||
| 934 | |||
| 935 | /* enable host interrupts */ | ||
| 936 | stlc45xx_write32(stlc, SPI_ADRS_HOST_INT_EN, SPI_HOST_INTS_DEFAULT); | ||
| 937 | |||
| 938 | /* boot the device */ | ||
| 939 | stlc45xx_write16(stlc, SPI_ADRS_DEV_CTRL_STAT, | ||
| 940 | SPI_CTRL_STAT_HOST_OVERRIDE | SPI_CTRL_STAT_HOST_RESET | ||
| 941 | | SPI_CTRL_STAT_RAM_BOOT); | ||
| 942 | |||
| 943 | msleep(TARGET_BOOT_SLEEP); | ||
| 944 | |||
| 945 | stlc45xx_write16(stlc, SPI_ADRS_DEV_CTRL_STAT, | ||
| 946 | SPI_CTRL_STAT_HOST_OVERRIDE | SPI_CTRL_STAT_RAM_BOOT); | ||
| 947 | msleep(TARGET_BOOT_SLEEP); | ||
| 948 | |||
| 949 | return 0; | ||
| 950 | } | ||
| 951 | |||
| 952 | /* caller must hold tx_lock */ | ||
| 953 | static void stlc45xx_check_txsent(struct stlc45xx *stlc) | ||
| 954 | { | ||
| 955 | struct txbuffer *entry, *n; | ||
| 956 | |||
| 957 | list_for_each_entry_safe(entry, n, &stlc->tx_sent, tx_list) { | ||
| 958 | if (time_after(jiffies, entry->lifetime)) { | ||
| 959 | if (net_ratelimit()) | ||
| 960 | stlc45xx_warning("frame 0x%x lifetime exceeded", | ||
| 961 | entry->start); | ||
| 962 | list_del(&entry->tx_list); | ||
| 963 | skb_pull(entry->skb, entry->header_len); | ||
| 964 | ieee80211_tx_status(stlc->hw, entry->skb); | ||
| 965 | stlc45xx_txbuffer_free(stlc, entry); | ||
| 966 | } | ||
| 967 | } | ||
| 968 | } | ||
| 969 | |||
| 970 | static void stlc45xx_power_off(struct stlc45xx *stlc) | ||
| 971 | { | ||
| 972 | disable_irq(gpio_to_irq(stlc45xx_gpio_irq)); | ||
| 973 | gpio_set_value(stlc45xx_gpio_power, 0); | ||
| 974 | } | ||
| 975 | |||
| 976 | static void stlc45xx_power_on(struct stlc45xx *stlc) | ||
| 977 | { | ||
| 978 | gpio_set_value(stlc45xx_gpio_power, 1); | ||
| 979 | enable_irq(gpio_to_irq(stlc45xx_gpio_irq)); | ||
| 980 | |||
| 981 | /* | ||
| 982 | * need to wait a while before device can be accessed, the length | ||
| 983 | * is just a guess | ||
| 984 | */ | ||
| 985 | msleep(10); | ||
| 986 | } | ||
| 987 | |||
| 988 | /* caller must hold tx_lock */ | ||
| 989 | static void stlc45xx_flush_queues(struct stlc45xx *stlc) | ||
| 990 | { | ||
| 991 | struct txbuffer *entry; | ||
| 992 | |||
| 993 | while (!list_empty(&stlc->tx_sent)) { | ||
| 994 | entry = list_first_entry(&stlc->tx_sent, | ||
| 995 | struct txbuffer, tx_list); | ||
| 996 | list_del(&entry->tx_list); | ||
| 997 | dev_kfree_skb(entry->skb); | ||
| 998 | stlc45xx_txbuffer_free(stlc, entry); | ||
| 999 | } | ||
| 1000 | |||
| 1001 | WARN_ON(!list_empty(&stlc->tx_sent)); | ||
| 1002 | |||
| 1003 | while (!list_empty(&stlc->tx_pending)) { | ||
| 1004 | entry = list_first_entry(&stlc->tx_pending, | ||
| 1005 | struct txbuffer, tx_list); | ||
| 1006 | list_del(&entry->tx_list); | ||
| 1007 | dev_kfree_skb(entry->skb); | ||
| 1008 | stlc45xx_txbuffer_free(stlc, entry); | ||
| 1009 | } | ||
| 1010 | |||
| 1011 | WARN_ON(!list_empty(&stlc->tx_pending)); | ||
| 1012 | WARN_ON(!list_empty(&stlc->txbuffer)); | ||
| 1013 | } | ||
| 1014 | |||
| 1015 | static void stlc45xx_work_reset(struct work_struct *work) | ||
| 1016 | { | ||
| 1017 | struct stlc45xx *stlc = container_of(work, struct stlc45xx, | ||
| 1018 | work_reset); | ||
| 1019 | |||
| 1020 | mutex_lock(&stlc->mutex); | ||
| 1021 | |||
| 1022 | if (stlc->fw_state != FW_STATE_RESET) | ||
| 1023 | goto out; | ||
| 1024 | |||
| 1025 | stlc45xx_power_off(stlc); | ||
| 1026 | |||
| 1027 | mutex_unlock(&stlc->mutex); | ||
| 1028 | |||
| 1029 | /* wait that all work_structs have finished, we can't hold | ||
| 1030 | * stlc->mutex to avoid deadlock */ | ||
| 1031 | cancel_work_sync(&stlc->work); | ||
| 1032 | |||
| 1033 | /* FIXME: find out good value to wait for chip power down */ | ||
| 1034 | msleep(100); | ||
| 1035 | |||
| 1036 | mutex_lock(&stlc->mutex); | ||
| 1037 | |||
| 1038 | /* FIXME: we should gracefully handle if the state has changed | ||
| 1039 | * after re-acquiring mutex */ | ||
| 1040 | WARN_ON(stlc->fw_state != FW_STATE_RESET); | ||
| 1041 | |||
| 1042 | spin_lock_bh(&stlc->tx_lock); | ||
| 1043 | stlc45xx_flush_queues(stlc); | ||
| 1044 | spin_unlock_bh(&stlc->tx_lock); | ||
| 1045 | |||
| 1046 | stlc->fw_state = FW_STATE_RESETTING; | ||
| 1047 | |||
| 1048 | stlc45xx_power_on(stlc); | ||
| 1049 | stlc45xx_upload_firmware(stlc); | ||
| 1050 | |||
| 1051 | out: | ||
| 1052 | mutex_unlock(&stlc->mutex); | ||
| 1053 | } | ||
| 1054 | |||
| 1055 | /* caller must hold mutex */ | ||
| 1056 | static void stlc45xx_reset(struct stlc45xx *stlc) | ||
| 1057 | { | ||
| 1058 | stlc45xx_warning("resetting firmware"); | ||
| 1059 | stlc->fw_state = FW_STATE_RESET; | ||
| 1060 | ieee80211_stop_queues(stlc->hw); | ||
| 1061 | queue_work(stlc->hw->workqueue, &stlc->work_reset); | ||
| 1062 | } | ||
| 1063 | |||
| 1064 | static void stlc45xx_work_tx_timeout(struct work_struct *work) | ||
| 1065 | { | ||
| 1066 | struct stlc45xx *stlc = container_of(work, struct stlc45xx, | ||
| 1067 | work_tx_timeout.work); | ||
| 1068 | |||
| 1069 | stlc45xx_warning("tx timeout"); | ||
| 1070 | |||
| 1071 | mutex_lock(&stlc->mutex); | ||
| 1072 | |||
| 1073 | if (stlc->fw_state != FW_STATE_READY) | ||
| 1074 | goto out; | ||
| 1075 | |||
| 1076 | stlc45xx_reset(stlc); | ||
| 1077 | |||
| 1078 | out: | ||
| 1079 | mutex_unlock(&stlc->mutex); | ||
| 1080 | } | ||
| 1081 | |||
| 1082 | static void stlc45xx_int_ack(struct stlc45xx *stlc, u32 val) | ||
| 1083 | { | ||
| 1084 | stlc45xx_debug(DEBUG_FUNC, "%s", __func__); | ||
| 1085 | |||
| 1086 | stlc45xx_write32(stlc, SPI_ADRS_HOST_INT_ACK, val); | ||
| 1087 | } | ||
| 1088 | |||
| 1089 | static void stlc45xx_wakeup(struct stlc45xx *stlc) | ||
| 1090 | { | ||
| 1091 | unsigned long timeout; | ||
| 1092 | u32 ints; | ||
| 1093 | |||
| 1094 | stlc45xx_debug(DEBUG_FUNC, "%s", __func__); | ||
| 1095 | |||
| 1096 | /* wake the chip */ | ||
| 1097 | stlc45xx_write32(stlc, SPI_ADRS_ARM_INTERRUPTS, SPI_TARGET_INT_WAKEUP); | ||
| 1098 | |||
| 1099 | /* And wait for the READY interrupt */ | ||
| 1100 | timeout = jiffies + HZ; | ||
| 1101 | |||
| 1102 | ints = stlc45xx_read32(stlc, SPI_ADRS_HOST_INTERRUPTS); | ||
| 1103 | while (!(ints & SPI_HOST_INT_READY)) { | ||
| 1104 | if (time_after(jiffies, timeout)) | ||
| 1105 | goto out; | ||
| 1106 | ints = stlc45xx_read32(stlc, SPI_ADRS_HOST_INTERRUPTS); | ||
| 1107 | } | ||
| 1108 | |||
| 1109 | stlc45xx_int_ack(stlc, SPI_HOST_INT_READY); | ||
| 1110 | |||
| 1111 | out: | ||
| 1112 | return; | ||
| 1113 | } | ||
| 1114 | |||
| 1115 | static void stlc45xx_sleep(struct stlc45xx *stlc) | ||
| 1116 | { | ||
| 1117 | stlc45xx_debug(DEBUG_FUNC, "%s", __func__); | ||
| 1118 | |||
| 1119 | stlc45xx_write32(stlc, SPI_ADRS_ARM_INTERRUPTS, SPI_TARGET_INT_SLEEP); | ||
| 1120 | } | ||
| 1121 | |||
| 1122 | static void stlc45xx_int_ready(struct stlc45xx *stlc) | ||
| 1123 | { | ||
| 1124 | stlc45xx_debug(DEBUG_FUNC, "%s", __func__); | ||
| 1125 | |||
| 1126 | stlc45xx_write32(stlc, SPI_ADRS_HOST_INT_EN, | ||
| 1127 | SPI_HOST_INT_UPDATE | SPI_HOST_INT_SW_UPDATE); | ||
| 1128 | |||
| 1129 | switch (stlc->fw_state) { | ||
| 1130 | case FW_STATE_BOOTING: | ||
| 1131 | stlc->fw_state = FW_STATE_READY; | ||
| 1132 | complete(&stlc->fw_comp); | ||
| 1133 | break; | ||
| 1134 | case FW_STATE_RESETTING: | ||
| 1135 | stlc->fw_state = FW_STATE_READY; | ||
| 1136 | |||
| 1137 | stlc45xx_tx_scan(stlc); | ||
| 1138 | stlc45xx_tx_setup(stlc); | ||
| 1139 | stlc45xx_tx_edcf(stlc); | ||
| 1140 | |||
| 1141 | ieee80211_wake_queues(stlc->hw); | ||
| 1142 | break; | ||
| 1143 | default: | ||
| 1144 | break; | ||
| 1145 | } | ||
| 1146 | } | ||
| 1147 | |||
| 1148 | static int stlc45xx_rx_txack(struct stlc45xx *stlc, struct sk_buff *skb) | ||
| 1149 | { | ||
| 1150 | struct ieee80211_tx_info *info; | ||
| 1151 | struct s_lm_control *control; | ||
| 1152 | struct s_lmo_tx *tx; | ||
| 1153 | struct txbuffer *entry; | ||
| 1154 | int found = 0; | ||
| 1155 | |||
| 1156 | stlc45xx_debug(DEBUG_FUNC, "%s", __func__); | ||
| 1157 | |||
| 1158 | control = (struct s_lm_control *) skb->data; | ||
| 1159 | tx = (struct s_lmo_tx *) (control + 1); | ||
| 1160 | |||
| 1161 | if (list_empty(&stlc->tx_sent)) { | ||
| 1162 | if (net_ratelimit()) | ||
| 1163 | stlc45xx_warning("no frames waiting for " | ||
| 1164 | "acknowledgement"); | ||
| 1165 | return -1; | ||
| 1166 | } | ||
| 1167 | |||
| 1168 | list_for_each_entry(entry, &stlc->tx_sent, tx_list) { | ||
| 1169 | if (control->handle == entry->handle) { | ||
| 1170 | found = 1; | ||
| 1171 | break; | ||
| 1172 | } | ||
| 1173 | } | ||
| 1174 | |||
| 1175 | if (!found) { | ||
| 1176 | if (net_ratelimit()) | ||
| 1177 | stlc45xx_warning("couldn't find frame for tx ack 0x%x", | ||
| 1178 | control->handle); | ||
| 1179 | return -1; | ||
| 1180 | } | ||
| 1181 | |||
| 1182 | stlc45xx_debug(DEBUG_TX, "TX ACK 0x%x", entry->handle); | ||
| 1183 | |||
| 1184 | if (entry->status_needed) { | ||
| 1185 | info = IEEE80211_SKB_CB(entry->skb); | ||
| 1186 | |||
| 1187 | if (!(tx->flags & LM_TX_FAILED)) { | ||
| 1188 | /* frame was acked */ | ||
| 1189 | info->flags |= IEEE80211_TX_STAT_ACK; | ||
| 1190 | info->status.ack_signal = tx->rcpi / 2 - 110; | ||
| 1191 | } | ||
| 1192 | |||
| 1193 | skb_pull(entry->skb, entry->header_len); | ||
| 1194 | |||
| 1195 | ieee80211_tx_status(stlc->hw, entry->skb); | ||
| 1196 | } | ||
| 1197 | |||
| 1198 | list_del(&entry->tx_list); | ||
| 1199 | |||
| 1200 | stlc45xx_check_txsent(stlc); | ||
| 1201 | if (list_empty(&stlc->tx_sent)) | ||
| 1202 | /* there are no pending frames, we can stop the tx timeout | ||
| 1203 | * timer */ | ||
| 1204 | cancel_delayed_work(&stlc->work_tx_timeout); | ||
| 1205 | |||
| 1206 | spin_lock_bh(&stlc->tx_lock); | ||
| 1207 | |||
| 1208 | stlc45xx_txbuffer_free(stlc, entry); | ||
| 1209 | |||
| 1210 | if (stlc->tx_queue_stopped && | ||
| 1211 | stlc45xx_txbuffer_find(stlc, MAX_FRAME_LEN) != -1) { | ||
| 1212 | stlc45xx_debug(DEBUG_QUEUE, "room in tx buffer, waking queues"); | ||
| 1213 | ieee80211_wake_queues(stlc->hw); | ||
| 1214 | stlc->tx_queue_stopped = 0; | ||
| 1215 | } | ||
| 1216 | |||
| 1217 | spin_unlock_bh(&stlc->tx_lock); | ||
| 1218 | |||
| 1219 | return 0; | ||
| 1220 | } | ||
| 1221 | |||
| 1222 | static int stlc45xx_rx_control(struct stlc45xx *stlc, struct sk_buff *skb) | ||
| 1223 | { | ||
| 1224 | struct s_lm_control *control; | ||
| 1225 | int ret = 0; | ||
| 1226 | |||
| 1227 | stlc45xx_debug(DEBUG_FUNC, "%s", __func__); | ||
| 1228 | |||
| 1229 | control = (struct s_lm_control *) skb->data; | ||
| 1230 | |||
| 1231 | switch (control->oid) { | ||
| 1232 | case LM_OID_TX: | ||
| 1233 | ret = stlc45xx_rx_txack(stlc, skb); | ||
| 1234 | break; | ||
| 1235 | case LM_OID_SETUP: | ||
| 1236 | case LM_OID_SCAN: | ||
| 1237 | case LM_OID_TRAP: | ||
| 1238 | case LM_OID_EDCF: | ||
| 1239 | case LM_OID_KEYCACHE: | ||
| 1240 | case LM_OID_PSM: | ||
| 1241 | case LM_OID_STATS: | ||
| 1242 | case LM_OID_LED: | ||
| 1243 | default: | ||
| 1244 | stlc45xx_warning("unhandled rx control oid %d\n", | ||
| 1245 | control->oid); | ||
| 1246 | break; | ||
| 1247 | } | ||
| 1248 | |||
| 1249 | dev_kfree_skb(skb); | ||
| 1250 | |||
| 1251 | return ret; | ||
| 1252 | } | ||
| 1253 | |||
| 1254 | /* copied from mac80211 */ | ||
| 1255 | static void stlc45xx_parse_elems(u8 *start, size_t len, | ||
| 1256 | struct stlc45xx_ie_tim **tim, | ||
| 1257 | size_t *tim_len) | ||
| 1258 | { | ||
| 1259 | size_t left = len; | ||
| 1260 | u8 *pos = start; | ||
| 1261 | |||
| 1262 | while (left >= 2) { | ||
| 1263 | u8 id, elen; | ||
| 1264 | |||
| 1265 | id = *pos++; | ||
| 1266 | elen = *pos++; | ||
| 1267 | left -= 2; | ||
| 1268 | |||
| 1269 | if (elen > left) | ||
| 1270 | return; | ||
| 1271 | |||
| 1272 | switch (id) { | ||
| 1273 | case WLAN_EID_TIM: | ||
| 1274 | *tim = (struct stlc45xx_ie_tim *) pos; | ||
| 1275 | *tim_len = elen; | ||
| 1276 | break; | ||
| 1277 | default: | ||
| 1278 | break; | ||
| 1279 | } | ||
| 1280 | |||
| 1281 | left -= elen; | ||
| 1282 | pos += elen; | ||
| 1283 | } | ||
| 1284 | } | ||
| 1285 | |||
| 1286 | /* | ||
| 1287 | * mac80211 doesn't have support for asking frames with PS-Poll, so let's | ||
| 1288 | * implement in the driver for now. We have to add support to mac80211 | ||
| 1289 | * later. | ||
| 1290 | */ | ||
| 1291 | static int stlc45xx_check_more_data(struct stlc45xx *stlc, struct sk_buff *skb) | ||
| 1292 | { | ||
| 1293 | struct s_lm_data_in *data = (struct s_lm_data_in *) skb->data; | ||
| 1294 | struct ieee80211_hdr *hdr; | ||
| 1295 | size_t len; | ||
| 1296 | u16 fc; | ||
| 1297 | |||
| 1298 | hdr = (void *) skb->data + sizeof(*data); | ||
| 1299 | len = skb->len - sizeof(*data); | ||
| 1300 | |||
| 1301 | /* minimum frame length is the null frame length 24 bytes */ | ||
| 1302 | if (len < 24) { | ||
| 1303 | stlc45xx_warning("invalid frame length when checking for " | ||
| 1304 | "more data"); | ||
| 1305 | return -EINVAL; | ||
| 1306 | } | ||
| 1307 | |||
| 1308 | fc = le16_to_cpu(hdr->frame_control); | ||
| 1309 | if (!(fc & IEEE80211_FCTL_FROMDS)) | ||
| 1310 | /* this is not from DS */ | ||
| 1311 | return 0; | ||
| 1312 | |||
| 1313 | if (compare_ether_addr(hdr->addr1, stlc->mac_addr) != 0) | ||
| 1314 | /* the frame was not for us */ | ||
| 1315 | return 0; | ||
| 1316 | |||
| 1317 | if (!(fc & IEEE80211_FCTL_MOREDATA)) { | ||
| 1318 | /* AP has no more frames buffered for us */ | ||
| 1319 | stlc45xx_debug(DEBUG_PSM, "all buffered frames retrieved"); | ||
| 1320 | stlc->pspolling = false; | ||
| 1321 | return 0; | ||
| 1322 | } | ||
| 1323 | |||
| 1324 | /* MOREDATA bit is set, let's ask for a new frame from the AP */ | ||
| 1325 | stlc45xx_tx_pspoll(stlc, stlc->psm); | ||
| 1326 | |||
| 1327 | return 0; | ||
| 1328 | } | ||
| 1329 | |||
| 1330 | /* | ||
| 1331 | * mac80211 cannot read TIM from beacons, so let's add a hack to the | ||
| 1332 | * driver. We have to add support to mac80211 later. | ||
| 1333 | */ | ||
| 1334 | static int stlc45xx_rx_data_beacon(struct stlc45xx *stlc, struct sk_buff *skb) | ||
| 1335 | { | ||
| 1336 | struct s_lm_data_in *data = (struct s_lm_data_in *) skb->data; | ||
| 1337 | size_t len = skb->len, tim_len = 0, baselen, pvbmap_len; | ||
| 1338 | struct ieee80211_mgmt *mgmt; | ||
| 1339 | struct stlc45xx_ie_tim *tim = NULL; | ||
| 1340 | int bmap_offset, index, aid_bit; | ||
| 1341 | |||
| 1342 | mgmt = (void *) skb->data + sizeof(*data); | ||
| 1343 | |||
| 1344 | baselen = (u8 *) mgmt->u.beacon.variable - (u8 *) mgmt; | ||
| 1345 | if (baselen > len) { | ||
| 1346 | stlc45xx_warning("invalid baselen in beacon"); | ||
| 1347 | return -EINVAL; | ||
| 1348 | } | ||
| 1349 | |||
| 1350 | stlc45xx_parse_elems(mgmt->u.beacon.variable, len - baselen, &tim, | ||
| 1351 | &tim_len); | ||
| 1352 | |||
| 1353 | if (!tim) { | ||
| 1354 | stlc45xx_warning("didn't find tim from a beacon"); | ||
| 1355 | return -EINVAL; | ||
| 1356 | } | ||
| 1357 | |||
| 1358 | bmap_offset = tim->bmap_control & 0xfe; | ||
| 1359 | index = stlc->aid / 8 - bmap_offset; | ||
| 1360 | |||
| 1361 | pvbmap_len = tim_len - 3; | ||
| 1362 | if (index > pvbmap_len) | ||
| 1363 | return -EINVAL; | ||
| 1364 | |||
| 1365 | aid_bit = !!(tim->pvbmap[index] & (1 << stlc->aid % 8)); | ||
| 1366 | |||
| 1367 | stlc45xx_debug(DEBUG_PSM, "fc 0x%x duration %d seq %d dtim %u " | ||
| 1368 | "bmap_control 0x%x aid_bit %d", | ||
| 1369 | mgmt->frame_control, mgmt->duration, mgmt->seq_ctrl >> 4, | ||
| 1370 | tim->dtim_count, tim->bmap_control, aid_bit); | ||
| 1371 | |||
| 1372 | if (!aid_bit) | ||
| 1373 | return 0; | ||
| 1374 | |||
| 1375 | stlc->pspolling = true; | ||
| 1376 | stlc45xx_tx_pspoll(stlc, stlc->psm); | ||
| 1377 | |||
| 1378 | return 0; | ||
| 1379 | } | ||
| 1380 | |||
| 1381 | static int stlc45xx_rx_data(struct stlc45xx *stlc, struct sk_buff *skb) | ||
| 1382 | { | ||
| 1383 | struct ieee80211_rx_status status; | ||
| 1384 | struct s_lm_data_in *data = (struct s_lm_data_in *) skb->data; | ||
| 1385 | int align = 0; | ||
| 1386 | u8 *p, align_len; | ||
| 1387 | u16 len; | ||
| 1388 | |||
| 1389 | stlc45xx_debug(DEBUG_FUNC, "%s", __func__); | ||
| 1390 | |||
| 1391 | if (stlc->psm) { | ||
| 1392 | if (data->flags & LM_IN_BEACON) | ||
| 1393 | stlc45xx_rx_data_beacon(stlc, skb); | ||
| 1394 | else if (stlc->pspolling && (data->flags & LM_IN_DATA)) | ||
| 1395 | stlc45xx_check_more_data(stlc, skb); | ||
| 1396 | } | ||
| 1397 | |||
| 1398 | memset(&status, 0, sizeof(status)); | ||
| 1399 | |||
| 1400 | status.freq = data->frequency; | ||
| 1401 | status.signal = data->rcpi / 2 - 110; | ||
| 1402 | |||
| 1403 | /* let's assume that maximum rcpi value is 140 (= 35 dBm) */ | ||
| 1404 | status.qual = data->rcpi * 100 / 140; | ||
| 1405 | |||
| 1406 | status.band = IEEE80211_BAND_2GHZ; | ||
| 1407 | |||
| 1408 | /* | ||
| 1409 | * FIXME: this gives warning from __ieee80211_rx() | ||
| 1410 | * | ||
| 1411 | * status.rate_idx = data->rate; | ||
| 1412 | */ | ||
| 1413 | |||
| 1414 | len = data->length; | ||
| 1415 | |||
| 1416 | if (data->flags & LM_FLAG_ALIGN) | ||
| 1417 | align = 1; | ||
| 1418 | |||
| 1419 | skb_pull(skb, sizeof(*data)); | ||
| 1420 | |||
| 1421 | if (align) { | ||
| 1422 | p = skb->data; | ||
| 1423 | align_len = *p; | ||
| 1424 | skb_pull(skb, align_len); | ||
| 1425 | } | ||
| 1426 | |||
| 1427 | skb_trim(skb, len); | ||
| 1428 | |||
| 1429 | stlc45xx_debug(DEBUG_RX, "rx data 0x%p %d B", skb->data, skb->len); | ||
| 1430 | stlc45xx_dump(DEBUG_RX_CONTENT, skb->data, skb->len); | ||
| 1431 | |||
| 1432 | memcpy(IEEE80211_SKB_RXCB(skb), &status, sizeof(status)); | ||
| 1433 | ieee80211_rx(stlc->hw, skb); | ||
| 1434 | |||
| 1435 | return 0; | ||
| 1436 | } | ||
| 1437 | |||
| 1438 | |||
| 1439 | |||
| 1440 | static int stlc45xx_rx(struct stlc45xx *stlc) | ||
| 1441 | { | ||
| 1442 | struct s_lm_control *control; | ||
| 1443 | struct sk_buff *skb; | ||
| 1444 | int ret; | ||
| 1445 | u16 len; | ||
| 1446 | |||
| 1447 | stlc45xx_debug(DEBUG_FUNC, "%s", __func__); | ||
| 1448 | |||
| 1449 | stlc45xx_wakeup(stlc); | ||
| 1450 | |||
| 1451 | /* dummy read to flush SPI DMA controller bug */ | ||
| 1452 | stlc45xx_read16(stlc, SPI_ADRS_GEN_PURP_1); | ||
| 1453 | |||
| 1454 | len = stlc45xx_read16(stlc, SPI_ADRS_DMA_DATA); | ||
| 1455 | |||
| 1456 | if (len == 0) { | ||
| 1457 | stlc45xx_warning("rx request of zero bytes"); | ||
| 1458 | return 0; | ||
| 1459 | } | ||
| 1460 | |||
| 1461 | skb = dev_alloc_skb(len); | ||
| 1462 | if (!skb) { | ||
| 1463 | stlc45xx_warning("could not alloc skb"); | ||
| 1464 | return 0; | ||
| 1465 | } | ||
| 1466 | |||
| 1467 | stlc45xx_spi_read(stlc, SPI_ADRS_DMA_DATA, skb_put(skb, len), len); | ||
| 1468 | |||
| 1469 | stlc45xx_sleep(stlc); | ||
| 1470 | |||
| 1471 | stlc45xx_debug(DEBUG_RX, "rx frame 0x%p %d B", skb->data, skb->len); | ||
| 1472 | stlc45xx_dump(DEBUG_RX_CONTENT, skb->data, skb->len); | ||
| 1473 | |||
| 1474 | control = (struct s_lm_control *) skb->data; | ||
| 1475 | |||
| 1476 | if (control->flags & LM_FLAG_CONTROL) | ||
| 1477 | ret = stlc45xx_rx_control(stlc, skb); | ||
| 1478 | else | ||
| 1479 | ret = stlc45xx_rx_data(stlc, skb); | ||
| 1480 | |||
| 1481 | return ret; | ||
| 1482 | } | ||
| 1483 | |||
| 1484 | |||
| 1485 | static irqreturn_t stlc45xx_interrupt(int irq, void *config) | ||
| 1486 | { | ||
| 1487 | struct spi_device *spi = config; | ||
| 1488 | struct stlc45xx *stlc = dev_get_drvdata(&spi->dev); | ||
| 1489 | |||
| 1490 | stlc45xx_debug(DEBUG_IRQ, "IRQ"); | ||
| 1491 | |||
| 1492 | queue_work(stlc->hw->workqueue, &stlc->work); | ||
| 1493 | |||
| 1494 | return IRQ_HANDLED; | ||
| 1495 | } | ||
| 1496 | |||
| 1497 | static int stlc45xx_tx_frame(struct stlc45xx *stlc, u32 address, | ||
| 1498 | void *buf, size_t len) | ||
| 1499 | { | ||
| 1500 | struct s_dma_regs dma_regs; | ||
| 1501 | unsigned long timeout; | ||
| 1502 | int ret = 0; | ||
| 1503 | u32 ints; | ||
| 1504 | |||
| 1505 | stlc->tx_frames++; | ||
| 1506 | |||
| 1507 | stlc45xx_debug(DEBUG_FUNC, "%s", __func__); | ||
| 1508 | |||
| 1509 | stlc45xx_debug(DEBUG_TX, "tx frame 0x%p %zu B", buf, len); | ||
| 1510 | stlc45xx_dump(DEBUG_TX_CONTENT, buf, len); | ||
| 1511 | |||
| 1512 | stlc45xx_wakeup(stlc); | ||
| 1513 | |||
| 1514 | dma_regs.cmd = SPI_DMA_WRITE_CTRL_ENABLE; | ||
| 1515 | dma_regs.len = cpu_to_le16(len); | ||
| 1516 | dma_regs.addr = cpu_to_le32(address); | ||
| 1517 | |||
| 1518 | stlc45xx_spi_write(stlc, SPI_ADRS_DMA_WRITE_CTRL, &dma_regs, | ||
| 1519 | sizeof(dma_regs)); | ||
| 1520 | |||
| 1521 | stlc45xx_spi_write(stlc, SPI_ADRS_DMA_DATA, buf, len); | ||
| 1522 | |||
| 1523 | timeout = jiffies + 2 * HZ; | ||
| 1524 | ints = stlc45xx_read32(stlc, SPI_ADRS_HOST_INTERRUPTS); | ||
| 1525 | while (!(ints & SPI_HOST_INT_WR_READY)) { | ||
| 1526 | if (time_after(jiffies, timeout)) { | ||
| 1527 | stlc45xx_warning("WR_READY timeout"); | ||
| 1528 | ret = -1; | ||
| 1529 | goto out; | ||
| 1530 | } | ||
| 1531 | ints = stlc45xx_read32(stlc, SPI_ADRS_HOST_INTERRUPTS); | ||
| 1532 | } | ||
| 1533 | |||
| 1534 | stlc45xx_int_ack(stlc, SPI_HOST_INT_WR_READY); | ||
| 1535 | |||
| 1536 | stlc45xx_sleep(stlc); | ||
| 1537 | |||
| 1538 | out: | ||
| 1539 | return ret; | ||
| 1540 | } | ||
| 1541 | |||
| 1542 | static int stlc45xx_wq_tx(struct stlc45xx *stlc) | ||
| 1543 | { | ||
| 1544 | struct txbuffer *entry; | ||
| 1545 | int ret = 0; | ||
| 1546 | |||
| 1547 | spin_lock_bh(&stlc->tx_lock); | ||
| 1548 | |||
| 1549 | while (!list_empty(&stlc->tx_pending)) { | ||
| 1550 | entry = list_entry(stlc->tx_pending.next, | ||
| 1551 | struct txbuffer, tx_list); | ||
| 1552 | |||
| 1553 | list_del_init(&entry->tx_list); | ||
| 1554 | |||
| 1555 | spin_unlock_bh(&stlc->tx_lock); | ||
| 1556 | |||
| 1557 | ret = stlc45xx_tx_frame(stlc, entry->frame_start, | ||
| 1558 | entry->skb->data, entry->skb->len); | ||
| 1559 | |||
| 1560 | spin_lock_bh(&stlc->tx_lock); | ||
| 1561 | |||
| 1562 | if (ret < 0) { | ||
| 1563 | /* frame transfer to firmware buffer failed */ | ||
| 1564 | /* FIXME: report this to mac80211 */ | ||
| 1565 | dev_kfree_skb(entry->skb); | ||
| 1566 | stlc45xx_txbuffer_free(stlc, entry); | ||
| 1567 | goto out; | ||
| 1568 | } | ||
| 1569 | |||
| 1570 | list_add(&entry->tx_list, &stlc->tx_sent); | ||
| 1571 | queue_delayed_work(stlc->hw->workqueue, | ||
| 1572 | &stlc->work_tx_timeout, | ||
| 1573 | msecs_to_jiffies(TX_TIMEOUT)); | ||
| 1574 | } | ||
| 1575 | |||
| 1576 | out: | ||
| 1577 | spin_unlock_bh(&stlc->tx_lock); | ||
| 1578 | return ret; | ||
| 1579 | } | ||
| 1580 | |||
| 1581 | static void stlc45xx_work(struct work_struct *work) | ||
| 1582 | { | ||
| 1583 | struct stlc45xx *stlc = container_of(work, struct stlc45xx, work); | ||
| 1584 | u32 ints; | ||
| 1585 | int ret; | ||
| 1586 | |||
| 1587 | stlc45xx_debug(DEBUG_FUNC, "%s", __func__); | ||
| 1588 | |||
| 1589 | mutex_lock(&stlc->mutex); | ||
| 1590 | |||
| 1591 | if (stlc->fw_state == FW_STATE_OFF && | ||
| 1592 | stlc->fw_state == FW_STATE_RESET) | ||
| 1593 | goto out; | ||
| 1594 | |||
| 1595 | ints = stlc45xx_read32(stlc, SPI_ADRS_HOST_INTERRUPTS); | ||
| 1596 | stlc45xx_debug(DEBUG_BH, "begin host_ints 0x%08x", ints); | ||
| 1597 | |||
| 1598 | if (ints & SPI_HOST_INT_READY) { | ||
| 1599 | stlc45xx_int_ready(stlc); | ||
| 1600 | stlc45xx_int_ack(stlc, SPI_HOST_INT_READY); | ||
| 1601 | } | ||
| 1602 | |||
| 1603 | if (stlc->fw_state != FW_STATE_READY) | ||
| 1604 | goto out; | ||
| 1605 | |||
| 1606 | if (ints & SPI_HOST_INT_UPDATE) { | ||
| 1607 | stlc45xx_int_ack(stlc, SPI_HOST_INT_UPDATE); | ||
| 1608 | ret = stlc45xx_rx(stlc); | ||
| 1609 | if (ret < 0) { | ||
| 1610 | stlc45xx_reset(stlc); | ||
| 1611 | goto out; | ||
| 1612 | } | ||
| 1613 | } | ||
| 1614 | if (ints & SPI_HOST_INT_SW_UPDATE) { | ||
| 1615 | stlc45xx_int_ack(stlc, SPI_HOST_INT_SW_UPDATE); | ||
| 1616 | ret = stlc45xx_rx(stlc); | ||
| 1617 | if (ret < 0) { | ||
| 1618 | stlc45xx_reset(stlc); | ||
| 1619 | goto out; | ||
| 1620 | } | ||
| 1621 | } | ||
| 1622 | |||
| 1623 | ret = stlc45xx_wq_tx(stlc); | ||
| 1624 | if (ret < 0) { | ||
| 1625 | stlc45xx_reset(stlc); | ||
| 1626 | goto out; | ||
| 1627 | } | ||
| 1628 | |||
| 1629 | ints = stlc45xx_read32(stlc, SPI_ADRS_HOST_INTERRUPTS); | ||
| 1630 | stlc45xx_debug(DEBUG_BH, "end host_ints 0x%08x", ints); | ||
| 1631 | |||
| 1632 | out: | ||
| 1633 | mutex_unlock(&stlc->mutex); | ||
| 1634 | } | ||
| 1635 | |||
| 1636 | static void stlc45xx_tx_edcf(struct stlc45xx *stlc) | ||
| 1637 | { | ||
| 1638 | struct s_lm_control *control; | ||
| 1639 | struct s_lmo_edcf *edcf; | ||
| 1640 | size_t len, edcf_len; | ||
| 1641 | |||
| 1642 | stlc45xx_debug(DEBUG_FUNC, "%s", __func__); | ||
| 1643 | |||
| 1644 | edcf_len = sizeof(*edcf); | ||
| 1645 | len = sizeof(*control) + edcf_len; | ||
| 1646 | control = kzalloc(len, GFP_KERNEL); | ||
| 1647 | edcf = (struct s_lmo_edcf *) (control + 1); | ||
| 1648 | |||
| 1649 | control->flags = LM_FLAG_CONTROL | LM_CTRL_OPSET; | ||
| 1650 | control->length = edcf_len; | ||
| 1651 | control->oid = LM_OID_EDCF; | ||
| 1652 | |||
| 1653 | edcf->slottime = 0x14; | ||
| 1654 | edcf->sifs = 10; | ||
| 1655 | edcf->eofpad = 6; | ||
| 1656 | edcf->maxburst = 1500; | ||
| 1657 | |||
| 1658 | edcf->queues[0].aifs = 2; | ||
| 1659 | edcf->queues[0].pad0 = 1; | ||
| 1660 | edcf->queues[0].cwmin = 3; | ||
| 1661 | edcf->queues[0].cwmax = 7; | ||
| 1662 | edcf->queues[0].txop = 47; | ||
| 1663 | edcf->queues[1].aifs = 2; | ||
| 1664 | edcf->queues[1].pad0 = 0; | ||
| 1665 | edcf->queues[1].cwmin = 7; | ||
| 1666 | edcf->queues[1].cwmax = 15; | ||
| 1667 | edcf->queues[1].txop = 94; | ||
| 1668 | edcf->queues[2].aifs = 3; | ||
| 1669 | edcf->queues[2].pad0 = 0; | ||
| 1670 | edcf->queues[2].cwmin = 15; | ||
| 1671 | edcf->queues[2].cwmax = 1023; | ||
| 1672 | edcf->queues[2].txop = 0; | ||
| 1673 | edcf->queues[3].aifs = 7; | ||
| 1674 | edcf->queues[3].pad0 = 0; | ||
| 1675 | edcf->queues[3].cwmin = 15; | ||
| 1676 | edcf->queues[3].cwmax = 1023; | ||
| 1677 | edcf->queues[3].txop = 0; | ||
| 1678 | edcf->queues[4].aifs = 13; | ||
| 1679 | edcf->queues[4].pad0 = 99; | ||
| 1680 | edcf->queues[4].cwmin = 3437; | ||
| 1681 | edcf->queues[4].cwmax = 512; | ||
| 1682 | edcf->queues[4].txop = 12; | ||
| 1683 | edcf->queues[5].aifs = 142; | ||
| 1684 | edcf->queues[5].pad0 = 109; | ||
| 1685 | edcf->queues[5].cwmin = 8756; | ||
| 1686 | edcf->queues[5].cwmax = 6; | ||
| 1687 | edcf->queues[5].txop = 0; | ||
| 1688 | edcf->queues[6].aifs = 4; | ||
| 1689 | edcf->queues[6].pad0 = 0; | ||
| 1690 | edcf->queues[6].cwmin = 0; | ||
| 1691 | edcf->queues[6].cwmax = 58705; | ||
| 1692 | edcf->queues[6].txop = 25716; | ||
| 1693 | edcf->queues[7].aifs = 0; | ||
| 1694 | edcf->queues[7].pad0 = 0; | ||
| 1695 | edcf->queues[7].cwmin = 0; | ||
| 1696 | edcf->queues[7].cwmax = 0; | ||
| 1697 | edcf->queues[7].txop = 0; | ||
| 1698 | |||
| 1699 | stlc45xx_tx_frame(stlc, FIRMWARE_CONFIG_START, control, len); | ||
| 1700 | |||
| 1701 | kfree(control); | ||
| 1702 | } | ||
| 1703 | |||
| 1704 | static void stlc45xx_tx_setup(struct stlc45xx *stlc) | ||
| 1705 | { | ||
| 1706 | struct s_lm_control *control; | ||
| 1707 | struct s_lmo_setup *setup; | ||
| 1708 | size_t len, setup_len; | ||
| 1709 | |||
| 1710 | stlc45xx_debug(DEBUG_FUNC, "%s", __func__); | ||
| 1711 | |||
| 1712 | setup_len = sizeof(*setup); | ||
| 1713 | len = sizeof(*control) + setup_len; | ||
| 1714 | control = kzalloc(len, GFP_KERNEL); | ||
| 1715 | setup = (struct s_lmo_setup *) (control + 1); | ||
| 1716 | |||
| 1717 | control->flags = LM_FLAG_CONTROL | LM_CTRL_OPSET; | ||
| 1718 | control->length = setup_len; | ||
| 1719 | control->oid = LM_OID_SETUP; | ||
| 1720 | |||
| 1721 | setup->flags = LM_SETUP_INFRA; | ||
| 1722 | setup->antenna = 2; | ||
| 1723 | setup->rx_align = 0; | ||
| 1724 | setup->rx_buffer = FIRMWARE_RXBUFFER_START; | ||
| 1725 | setup->rx_mtu = FIRMWARE_MTU; | ||
| 1726 | setup->frontend = 5; | ||
| 1727 | setup->timeout = 0; | ||
| 1728 | setup->truncate = 48896; | ||
| 1729 | setup->bratemask = 0xffffffff; | ||
| 1730 | setup->ref_clock = 644245094; | ||
| 1731 | setup->lpf_bandwidth = 65535; | ||
| 1732 | setup->osc_start_delay = 65535; | ||
| 1733 | |||
| 1734 | memcpy(setup->macaddr, stlc->mac_addr, ETH_ALEN); | ||
| 1735 | memcpy(setup->bssid, stlc->bssid, ETH_ALEN); | ||
| 1736 | |||
| 1737 | stlc45xx_tx_frame(stlc, FIRMWARE_CONFIG_START, control, len); | ||
| 1738 | |||
| 1739 | kfree(control); | ||
| 1740 | } | ||
| 1741 | |||
| 1742 | static void stlc45xx_tx_scan(struct stlc45xx *stlc) | ||
| 1743 | { | ||
| 1744 | struct s_lm_control *control; | ||
| 1745 | struct s_lmo_scan *scan; | ||
| 1746 | size_t len, scan_len; | ||
| 1747 | |||
| 1748 | stlc45xx_debug(DEBUG_FUNC, "%s", __func__); | ||
| 1749 | |||
| 1750 | scan_len = sizeof(*scan); | ||
| 1751 | len = sizeof(*control) + scan_len; | ||
| 1752 | control = kzalloc(len, GFP_KERNEL); | ||
| 1753 | scan = (struct s_lmo_scan *) (control + 1); | ||
| 1754 | |||
| 1755 | control->flags = LM_FLAG_CONTROL | LM_CTRL_OPSET; | ||
| 1756 | control->length = scan_len; | ||
| 1757 | control->oid = LM_OID_SCAN; | ||
| 1758 | |||
| 1759 | scan->flags = LM_SCAN_EXIT; | ||
| 1760 | scan->bratemask = 0x15f; | ||
| 1761 | scan->aloft[0] = 3; | ||
| 1762 | scan->aloft[1] = 3; | ||
| 1763 | scan->aloft[2] = 1; | ||
| 1764 | scan->aloft[3] = 0; | ||
| 1765 | scan->aloft[4] = 0; | ||
| 1766 | scan->aloft[5] = 0; | ||
| 1767 | scan->aloft[6] = 0; | ||
| 1768 | scan->aloft[7] = 0; | ||
| 1769 | |||
| 1770 | memcpy(&scan->rssical, &stlc->cal_rssi[(stlc->channel - 1) * | ||
| 1771 | RSSI_CAL_LEN], | ||
| 1772 | RSSI_CAL_LEN); | ||
| 1773 | memcpy(&scan->channel, &stlc->cal_channels[(stlc->channel - 1) * | ||
| 1774 | CHANNEL_CAL_LEN], | ||
| 1775 | CHANNEL_CAL_LEN); | ||
| 1776 | |||
| 1777 | stlc45xx_tx_frame(stlc, FIRMWARE_CONFIG_START, control, len); | ||
| 1778 | |||
| 1779 | kfree(control); | ||
| 1780 | } | ||
| 1781 | |||
| 1782 | /* | ||
| 1783 | * caller must hold mutex | ||
| 1784 | */ | ||
| 1785 | static int stlc45xx_tx_pspoll(struct stlc45xx *stlc, bool powersave) | ||
| 1786 | { | ||
| 1787 | struct ieee80211_hdr *pspoll; | ||
| 1788 | int payload_len, padding, i; | ||
| 1789 | struct s_lm_data_out *data; | ||
| 1790 | struct txbuffer *entry; | ||
| 1791 | struct sk_buff *skb; | ||
| 1792 | char *payload; | ||
| 1793 | u16 fc; | ||
| 1794 | |||
| 1795 | skb = dev_alloc_skb(stlc->hw->extra_tx_headroom + 16); | ||
| 1796 | if (!skb) { | ||
| 1797 | stlc45xx_warning("failed to allocate pspoll frame"); | ||
| 1798 | return -ENOMEM; | ||
| 1799 | } | ||
| 1800 | skb_reserve(skb, stlc->hw->extra_tx_headroom); | ||
| 1801 | |||
| 1802 | pspoll = (struct ieee80211_hdr *) skb_put(skb, 16); | ||
| 1803 | memset(pspoll, 0, 16); | ||
| 1804 | fc = IEEE80211_FTYPE_CTL | IEEE80211_STYPE_PSPOLL; | ||
| 1805 | if (powersave) | ||
| 1806 | fc |= IEEE80211_FCTL_PM; | ||
| 1807 | pspoll->frame_control = cpu_to_le16(fc); | ||
| 1808 | pspoll->duration_id = cpu_to_le16(stlc->aid); | ||
| 1809 | |||
| 1810 | /* aid in PS-Poll has its two MSBs each set to 1 */ | ||
| 1811 | pspoll->duration_id |= cpu_to_le16(1 << 15) | cpu_to_le16(1 << 14); | ||
| 1812 | |||
| 1813 | memcpy(pspoll->addr1, stlc->bssid, ETH_ALEN); | ||
| 1814 | memcpy(pspoll->addr2, stlc->mac_addr, ETH_ALEN); | ||
| 1815 | |||
| 1816 | stlc45xx_debug(DEBUG_PSM, "sending PS-Poll frame to %pM (powersave %d, " | ||
| 1817 | "fc 0x%x, aid %d)", pspoll->addr1, | ||
| 1818 | powersave, fc, stlc->aid); | ||
| 1819 | |||
| 1820 | spin_lock_bh(&stlc->tx_lock); | ||
| 1821 | |||
| 1822 | entry = stlc45xx_txbuffer_alloc(stlc, skb->len); | ||
| 1823 | |||
| 1824 | spin_unlock_bh(&stlc->tx_lock); | ||
| 1825 | |||
| 1826 | if (!entry) { | ||
| 1827 | /* | ||
| 1828 | * The queue should be stopped before the firmware buffer | ||
| 1829 | * is full, so firmware buffer should always have enough | ||
| 1830 | * space. | ||
| 1831 | * | ||
| 1832 | * But I'm too lazy and omit it for now. | ||
| 1833 | */ | ||
| 1834 | if (net_ratelimit()) | ||
| 1835 | stlc45xx_warning("firmware tx buffer full is full " | ||
| 1836 | "for null frame"); | ||
| 1837 | return -ENOSPC; | ||
| 1838 | } | ||
| 1839 | |||
| 1840 | payload = skb->data; | ||
| 1841 | payload_len = skb->len; | ||
| 1842 | padding = (int) (skb->data - sizeof(*data)) & 3; | ||
| 1843 | entry->header_len = sizeof(*data) + padding; | ||
| 1844 | |||
| 1845 | entry->skb = skb; | ||
| 1846 | entry->status_needed = false; | ||
| 1847 | entry->handle = (u32) skb; | ||
| 1848 | entry->lifetime = jiffies + msecs_to_jiffies(TX_FRAME_LIFETIME); | ||
| 1849 | |||
| 1850 | stlc45xx_debug(DEBUG_TX, "tx data 0x%x (0x%p payload %d B " | ||
| 1851 | "padding %d header_len %d)", | ||
| 1852 | entry->handle, payload, payload_len, padding, | ||
| 1853 | entry->header_len); | ||
| 1854 | stlc45xx_dump(DEBUG_TX_CONTENT, payload, payload_len); | ||
| 1855 | |||
| 1856 | data = (struct s_lm_data_out *) skb_push(skb, entry->header_len); | ||
| 1857 | |||
| 1858 | memset(data, 0, entry->header_len); | ||
| 1859 | |||
| 1860 | if (padding) | ||
| 1861 | data->flags = LM_FLAG_ALIGN; | ||
| 1862 | |||
| 1863 | data->flags = LM_OUT_BURST; | ||
| 1864 | data->length = payload_len; | ||
| 1865 | data->handle = entry->handle; | ||
| 1866 | data->aid = 1; | ||
| 1867 | data->rts_retries = 7; | ||
| 1868 | data->retries = 7; | ||
| 1869 | data->aloft_ctrl = 0; | ||
| 1870 | data->crypt_offset = 58; | ||
| 1871 | data->keytype = 0; | ||
| 1872 | data->keylen = 0; | ||
| 1873 | data->queue = LM_QUEUE_DATA3; | ||
| 1874 | data->backlog = 32; | ||
| 1875 | data->antenna = 2; | ||
| 1876 | data->cts = 3; | ||
| 1877 | data->power = 127; | ||
| 1878 | |||
| 1879 | for (i = 0; i < 8; i++) | ||
| 1880 | data->aloft[i] = 0; | ||
| 1881 | |||
| 1882 | /* | ||
| 1883 | * check if there's enough space in tx buffer | ||
| 1884 | * | ||
| 1885 | * FIXME: ignored for now | ||
| 1886 | */ | ||
| 1887 | |||
| 1888 | stlc45xx_tx_frame(stlc, entry->start, skb->data, skb->len); | ||
| 1889 | |||
| 1890 | list_add(&entry->tx_list, &stlc->tx_sent); | ||
| 1891 | |||
| 1892 | return 0; | ||
| 1893 | } | ||
| 1894 | |||
| 1895 | /* | ||
| 1896 | * caller must hold mutex | ||
| 1897 | * | ||
| 1898 | * shamelessly stolen from mac80211/ieee80211_send_nullfunc | ||
| 1899 | */ | ||
| 1900 | static int stlc45xx_tx_nullfunc(struct stlc45xx *stlc, bool powersave) | ||
| 1901 | { | ||
| 1902 | struct ieee80211_hdr *nullfunc; | ||
| 1903 | int payload_len, padding, i; | ||
| 1904 | struct s_lm_data_out *data; | ||
| 1905 | struct txbuffer *entry; | ||
| 1906 | struct sk_buff *skb; | ||
| 1907 | char *payload; | ||
| 1908 | u16 fc; | ||
| 1909 | |||
| 1910 | skb = dev_alloc_skb(stlc->hw->extra_tx_headroom + 24); | ||
| 1911 | if (!skb) { | ||
| 1912 | stlc45xx_warning("failed to allocate buffer for null frame\n"); | ||
| 1913 | return -ENOMEM; | ||
| 1914 | } | ||
| 1915 | skb_reserve(skb, stlc->hw->extra_tx_headroom); | ||
| 1916 | |||
| 1917 | nullfunc = (struct ieee80211_hdr *) skb_put(skb, 24); | ||
| 1918 | memset(nullfunc, 0, 24); | ||
| 1919 | fc = IEEE80211_FTYPE_DATA | IEEE80211_STYPE_NULLFUNC | | ||
| 1920 | IEEE80211_FCTL_TODS; | ||
| 1921 | |||
| 1922 | if (powersave) | ||
| 1923 | fc |= IEEE80211_FCTL_PM; | ||
| 1924 | |||
| 1925 | nullfunc->frame_control = cpu_to_le16(fc); | ||
| 1926 | memcpy(nullfunc->addr1, stlc->bssid, ETH_ALEN); | ||
| 1927 | memcpy(nullfunc->addr2, stlc->mac_addr, ETH_ALEN); | ||
| 1928 | memcpy(nullfunc->addr3, stlc->bssid, ETH_ALEN); | ||
| 1929 | |||
| 1930 | stlc45xx_debug(DEBUG_PSM, "sending Null frame to %pM (powersave %d, " | ||
| 1931 | "fc 0x%x)", nullfunc->addr1, powersave, fc); | ||
| 1932 | |||
| 1933 | spin_lock_bh(&stlc->tx_lock); | ||
| 1934 | |||
| 1935 | entry = stlc45xx_txbuffer_alloc(stlc, skb->len); | ||
| 1936 | |||
| 1937 | spin_unlock_bh(&stlc->tx_lock); | ||
| 1938 | |||
| 1939 | if (!entry) { | ||
| 1940 | /* | ||
| 1941 | * The queue should be stopped before the firmware buffer | ||
| 1942 | * is full, so firmware buffer should always have enough | ||
| 1943 | * space. | ||
| 1944 | * | ||
| 1945 | * But I'm too lazy and omit it for now. | ||
| 1946 | */ | ||
| 1947 | if (net_ratelimit()) | ||
| 1948 | stlc45xx_warning("firmware tx buffer full is full " | ||
| 1949 | "for null frame"); | ||
| 1950 | return -ENOSPC; | ||
| 1951 | } | ||
| 1952 | |||
| 1953 | payload = skb->data; | ||
| 1954 | payload_len = skb->len; | ||
| 1955 | padding = (int) (skb->data - sizeof(*data)) & 3; | ||
| 1956 | entry->header_len = sizeof(*data) + padding; | ||
| 1957 | |||
| 1958 | entry->skb = skb; | ||
| 1959 | entry->status_needed = false; | ||
| 1960 | entry->handle = (u32) skb; | ||
| 1961 | entry->lifetime = jiffies + msecs_to_jiffies(TX_FRAME_LIFETIME); | ||
| 1962 | |||
| 1963 | stlc45xx_debug(DEBUG_TX, "tx data 0x%x (0x%p payload %d B " | ||
| 1964 | "padding %d header_len %d)", | ||
| 1965 | entry->handle, payload, payload_len, padding, | ||
| 1966 | entry->header_len); | ||
| 1967 | stlc45xx_dump(DEBUG_TX_CONTENT, payload, payload_len); | ||
| 1968 | |||
| 1969 | data = (struct s_lm_data_out *) skb_push(skb, entry->header_len); | ||
| 1970 | |||
| 1971 | memset(data, 0, entry->header_len); | ||
| 1972 | |||
| 1973 | if (padding) | ||
| 1974 | data->flags = LM_FLAG_ALIGN; | ||
| 1975 | |||
| 1976 | data->flags = LM_OUT_BURST; | ||
| 1977 | data->length = payload_len; | ||
| 1978 | data->handle = entry->handle; | ||
| 1979 | data->aid = 1; | ||
| 1980 | data->rts_retries = 7; | ||
| 1981 | data->retries = 7; | ||
| 1982 | data->aloft_ctrl = 0; | ||
| 1983 | data->crypt_offset = 58; | ||
| 1984 | data->keytype = 0; | ||
| 1985 | data->keylen = 0; | ||
| 1986 | data->queue = LM_QUEUE_DATA3; | ||
| 1987 | data->backlog = 32; | ||
| 1988 | data->antenna = 2; | ||
| 1989 | data->cts = 3; | ||
| 1990 | data->power = 127; | ||
| 1991 | |||
| 1992 | for (i = 0; i < 8; i++) | ||
| 1993 | data->aloft[i] = 0; | ||
| 1994 | |||
| 1995 | /* | ||
| 1996 | * check if there's enough space in tx buffer | ||
| 1997 | * | ||
| 1998 | * FIXME: ignored for now | ||
| 1999 | */ | ||
| 2000 | |||
| 2001 | stlc45xx_tx_frame(stlc, entry->start, skb->data, skb->len); | ||
| 2002 | |||
| 2003 | list_add(&entry->tx_list, &stlc->tx_sent); | ||
| 2004 | |||
| 2005 | return 0; | ||
| 2006 | } | ||
| 2007 | |||
| 2008 | /* caller must hold mutex */ | ||
| 2009 | static void stlc45xx_tx_psm(struct stlc45xx *stlc, bool enable) | ||
| 2010 | { | ||
| 2011 | struct s_lm_control *control; | ||
| 2012 | struct s_lmo_psm *psm; | ||
| 2013 | size_t len, psm_len; | ||
| 2014 | |||
| 2015 | WARN_ON(!stlc->associated); | ||
| 2016 | WARN_ON(stlc->aid < 1); | ||
| 2017 | WARN_ON(stlc->aid > 2007); | ||
| 2018 | |||
| 2019 | psm_len = sizeof(*psm); | ||
| 2020 | len = sizeof(*control) + psm_len; | ||
| 2021 | control = kzalloc(len, GFP_KERNEL); | ||
| 2022 | psm = (struct s_lmo_psm *) (control + 1); | ||
| 2023 | |||
| 2024 | control->flags = LM_FLAG_CONTROL | LM_CTRL_OPSET; | ||
| 2025 | control->length = psm_len; | ||
| 2026 | control->oid = LM_OID_PSM; | ||
| 2027 | |||
| 2028 | if (enable) | ||
| 2029 | psm->flags |= LM_PSM; | ||
| 2030 | |||
| 2031 | psm->aid = stlc->aid; | ||
| 2032 | |||
| 2033 | psm->beacon_rcpi_skip_max = 60; | ||
| 2034 | |||
| 2035 | psm->intervals[0].interval = 1; | ||
| 2036 | psm->intervals[0].periods = 1; | ||
| 2037 | psm->intervals[1].interval = 1; | ||
| 2038 | psm->intervals[1].periods = 1; | ||
| 2039 | psm->intervals[2].interval = 1; | ||
| 2040 | psm->intervals[2].periods = 1; | ||
| 2041 | psm->intervals[3].interval = 1; | ||
| 2042 | psm->intervals[3].periods = 1; | ||
| 2043 | |||
| 2044 | psm->nr = 0; | ||
| 2045 | psm->exclude[0] = 0; | ||
| 2046 | |||
| 2047 | stlc45xx_debug(DEBUG_PSM, "sending LM_OID_PSM (aid %d, interval %d)", | ||
| 2048 | psm->aid, psm->intervals[0].interval); | ||
| 2049 | |||
| 2050 | stlc45xx_tx_frame(stlc, FIRMWARE_CONFIG_START, control, len); | ||
| 2051 | |||
| 2052 | kfree(control); | ||
| 2053 | } | ||
| 2054 | |||
| 2055 | static int stlc45xx_op_tx(struct ieee80211_hw *hw, struct sk_buff *skb) | ||
| 2056 | { | ||
| 2057 | struct stlc45xx *stlc = hw->priv; | ||
| 2058 | struct ieee80211_tx_info *info; | ||
| 2059 | struct ieee80211_rate *rate; | ||
| 2060 | int payload_len, padding, i; | ||
| 2061 | struct s_lm_data_out *data; | ||
| 2062 | struct txbuffer *entry; | ||
| 2063 | char *payload; | ||
| 2064 | |||
| 2065 | stlc45xx_debug(DEBUG_FUNC, "%s", __func__); | ||
| 2066 | |||
| 2067 | spin_lock_bh(&stlc->tx_lock); | ||
| 2068 | |||
| 2069 | entry = stlc45xx_txbuffer_alloc(stlc, skb->len); | ||
| 2070 | if (!entry) { | ||
| 2071 | /* the queue should be stopped before the firmware buffer | ||
| 2072 | * is full, so firmware buffer should always have enough | ||
| 2073 | * space */ | ||
| 2074 | if (net_ratelimit()) | ||
| 2075 | stlc45xx_warning("firmware buffer full"); | ||
| 2076 | spin_unlock_bh(&stlc->tx_lock); | ||
| 2077 | return NETDEV_TX_BUSY; | ||
| 2078 | } | ||
| 2079 | |||
| 2080 | info = IEEE80211_SKB_CB(skb); | ||
| 2081 | |||
| 2082 | payload = skb->data; | ||
| 2083 | payload_len = skb->len; | ||
| 2084 | padding = (int) (skb->data - sizeof(*data)) & 3; | ||
| 2085 | entry->header_len = sizeof(*data) + padding; | ||
| 2086 | |||
| 2087 | entry->skb = skb; | ||
| 2088 | entry->status_needed = true; | ||
| 2089 | entry->handle = (u32) skb; | ||
| 2090 | entry->lifetime = jiffies + msecs_to_jiffies(TX_FRAME_LIFETIME); | ||
| 2091 | |||
| 2092 | stlc45xx_debug(DEBUG_TX, "tx data 0x%x (0x%p payload %d B " | ||
| 2093 | "padding %d header_len %d)", | ||
| 2094 | entry->handle, payload, payload_len, padding, | ||
| 2095 | entry->header_len); | ||
| 2096 | stlc45xx_dump(DEBUG_TX_CONTENT, payload, payload_len); | ||
| 2097 | |||
| 2098 | data = (struct s_lm_data_out *) skb_push(skb, entry->header_len); | ||
| 2099 | |||
| 2100 | memset(data, 0, entry->header_len); | ||
| 2101 | |||
| 2102 | if (padding) | ||
| 2103 | data->flags = LM_FLAG_ALIGN; | ||
| 2104 | |||
| 2105 | data->flags = LM_OUT_BURST; | ||
| 2106 | data->length = payload_len; | ||
| 2107 | data->handle = entry->handle; | ||
| 2108 | data->aid = 1; | ||
| 2109 | data->rts_retries = 7; | ||
| 2110 | data->retries = 7; | ||
| 2111 | data->aloft_ctrl = 0; | ||
| 2112 | data->crypt_offset = 58; | ||
| 2113 | data->keytype = 0; | ||
| 2114 | data->keylen = 0; | ||
| 2115 | data->queue = 2; | ||
| 2116 | data->backlog = 32; | ||
| 2117 | data->antenna = 2; | ||
| 2118 | data->cts = 3; | ||
| 2119 | data->power = 127; | ||
| 2120 | |||
| 2121 | for (i = 0; i < 8; i++) { | ||
| 2122 | rate = ieee80211_get_tx_rate(stlc->hw, info); | ||
| 2123 | data->aloft[i] = rate->hw_value; | ||
| 2124 | } | ||
| 2125 | |||
| 2126 | list_add_tail(&entry->tx_list, &stlc->tx_pending); | ||
| 2127 | |||
| 2128 | /* check if there's enough space in tx buffer */ | ||
| 2129 | if (stlc45xx_txbuffer_find(stlc, MAX_FRAME_LEN) == -1) { | ||
| 2130 | stlc45xx_debug(DEBUG_QUEUE, "tx buffer full, stopping queues"); | ||
| 2131 | stlc->tx_queue_stopped = 1; | ||
| 2132 | ieee80211_stop_queues(stlc->hw); | ||
| 2133 | } | ||
| 2134 | |||
| 2135 | queue_work(stlc->hw->workqueue, &stlc->work); | ||
| 2136 | |||
| 2137 | spin_unlock_bh(&stlc->tx_lock); | ||
| 2138 | |||
| 2139 | return NETDEV_TX_OK; | ||
| 2140 | } | ||
| 2141 | |||
| 2142 | static int stlc45xx_op_start(struct ieee80211_hw *hw) | ||
| 2143 | { | ||
| 2144 | struct stlc45xx *stlc = hw->priv; | ||
| 2145 | unsigned long timeout; | ||
| 2146 | int ret = 0; | ||
| 2147 | |||
| 2148 | stlc45xx_debug(DEBUG_FUNC, "%s", __func__); | ||
| 2149 | |||
| 2150 | mutex_lock(&stlc->mutex); | ||
| 2151 | |||
| 2152 | stlc->fw_state = FW_STATE_BOOTING; | ||
| 2153 | stlc->channel = 1; | ||
| 2154 | |||
| 2155 | stlc45xx_power_on(stlc); | ||
| 2156 | |||
| 2157 | ret = stlc45xx_upload_firmware(stlc); | ||
| 2158 | if (ret < 0) { | ||
| 2159 | stlc45xx_power_off(stlc); | ||
| 2160 | goto out_unlock; | ||
| 2161 | } | ||
| 2162 | |||
| 2163 | stlc->tx_queue_stopped = 0; | ||
| 2164 | |||
| 2165 | mutex_unlock(&stlc->mutex); | ||
| 2166 | |||
| 2167 | timeout = msecs_to_jiffies(2000); | ||
| 2168 | timeout = wait_for_completion_interruptible_timeout(&stlc->fw_comp, | ||
| 2169 | timeout); | ||
| 2170 | if (!timeout) { | ||
| 2171 | stlc45xx_error("firmware boot failed"); | ||
| 2172 | stlc45xx_power_off(stlc); | ||
| 2173 | ret = -1; | ||
| 2174 | goto out; | ||
| 2175 | } | ||
| 2176 | |||
| 2177 | stlc45xx_debug(DEBUG_BOOT, "firmware booted"); | ||
| 2178 | |||
| 2179 | /* FIXME: should we take mutex just after wait_for_completion()? */ | ||
| 2180 | mutex_lock(&stlc->mutex); | ||
| 2181 | |||
| 2182 | WARN_ON(stlc->fw_state != FW_STATE_READY); | ||
| 2183 | |||
| 2184 | out_unlock: | ||
| 2185 | mutex_unlock(&stlc->mutex); | ||
| 2186 | |||
| 2187 | out: | ||
| 2188 | return ret; | ||
| 2189 | } | ||
| 2190 | |||
| 2191 | static void stlc45xx_op_stop(struct ieee80211_hw *hw) | ||
| 2192 | { | ||
| 2193 | struct stlc45xx *stlc = hw->priv; | ||
| 2194 | |||
| 2195 | stlc45xx_debug(DEBUG_FUNC, "%s", __func__); | ||
| 2196 | |||
| 2197 | mutex_lock(&stlc->mutex); | ||
| 2198 | |||
| 2199 | WARN_ON(stlc->fw_state != FW_STATE_READY); | ||
| 2200 | |||
| 2201 | stlc45xx_power_off(stlc); | ||
| 2202 | |||
| 2203 | /* FIXME: make sure that all work_structs have completed */ | ||
| 2204 | |||
| 2205 | spin_lock_bh(&stlc->tx_lock); | ||
| 2206 | stlc45xx_flush_queues(stlc); | ||
| 2207 | spin_unlock_bh(&stlc->tx_lock); | ||
| 2208 | |||
| 2209 | stlc->fw_state = FW_STATE_OFF; | ||
| 2210 | |||
| 2211 | mutex_unlock(&stlc->mutex); | ||
| 2212 | } | ||
| 2213 | |||
| 2214 | static int stlc45xx_op_add_interface(struct ieee80211_hw *hw, | ||
| 2215 | struct ieee80211_if_init_conf *conf) | ||
| 2216 | { | ||
| 2217 | struct stlc45xx *stlc = hw->priv; | ||
| 2218 | |||
| 2219 | stlc45xx_debug(DEBUG_FUNC, "%s", __func__); | ||
| 2220 | |||
| 2221 | switch (conf->type) { | ||
| 2222 | case NL80211_IFTYPE_STATION: | ||
| 2223 | break; | ||
| 2224 | default: | ||
| 2225 | return -EOPNOTSUPP; | ||
| 2226 | } | ||
| 2227 | |||
| 2228 | memcpy(stlc->mac_addr, conf->mac_addr, ETH_ALEN); | ||
| 2229 | |||
| 2230 | return 0; | ||
| 2231 | } | ||
| 2232 | |||
| 2233 | static void stlc45xx_op_remove_interface(struct ieee80211_hw *hw, | ||
| 2234 | struct ieee80211_if_init_conf *conf) | ||
| 2235 | { | ||
| 2236 | stlc45xx_debug(DEBUG_FUNC, "%s", __func__); | ||
| 2237 | } | ||
| 2238 | |||
| 2239 | static int stlc45xx_op_config(struct ieee80211_hw *hw, u32 changed) | ||
| 2240 | { | ||
| 2241 | struct stlc45xx *stlc = hw->priv; | ||
| 2242 | |||
| 2243 | stlc45xx_debug(DEBUG_FUNC, "%s", __func__); | ||
| 2244 | |||
| 2245 | mutex_lock(&stlc->mutex); | ||
| 2246 | |||
| 2247 | stlc->channel = hw->conf.channel->hw_value; | ||
| 2248 | stlc45xx_tx_scan(stlc); | ||
| 2249 | stlc45xx_tx_setup(stlc); | ||
| 2250 | stlc45xx_tx_edcf(stlc); | ||
| 2251 | |||
| 2252 | if ((hw->conf.flags & IEEE80211_CONF_PS) != stlc->psm) { | ||
| 2253 | stlc->psm = hw->conf.flags & IEEE80211_CONF_PS; | ||
| 2254 | if (stlc->associated) { | ||
| 2255 | stlc45xx_tx_psm(stlc, stlc->psm); | ||
| 2256 | stlc45xx_tx_nullfunc(stlc, stlc->psm); | ||
| 2257 | } | ||
| 2258 | } | ||
| 2259 | |||
| 2260 | mutex_unlock(&stlc->mutex); | ||
| 2261 | |||
| 2262 | return 0; | ||
| 2263 | } | ||
| 2264 | |||
| 2265 | static void stlc45xx_op_configure_filter(struct ieee80211_hw *hw, | ||
| 2266 | unsigned int changed_flags, | ||
| 2267 | unsigned int *total_flags, | ||
| 2268 | int mc_count, | ||
| 2269 | struct dev_addr_list *mc_list) | ||
| 2270 | { | ||
| 2271 | *total_flags = 0; | ||
| 2272 | } | ||
| 2273 | |||
| 2274 | static void stlc45xx_op_bss_info_changed(struct ieee80211_hw *hw, | ||
| 2275 | struct ieee80211_vif *vif, | ||
| 2276 | struct ieee80211_bss_conf *info, | ||
| 2277 | u32 changed) | ||
| 2278 | { | ||
| 2279 | struct stlc45xx *stlc = hw->priv; | ||
| 2280 | |||
| 2281 | stlc45xx_debug(DEBUG_FUNC, "%s", __func__); | ||
| 2282 | mutex_lock(&stlc->mutex); | ||
| 2283 | |||
| 2284 | memcpy(stlc->bssid, info->bssid, ETH_ALEN); | ||
| 2285 | stlc45xx_tx_setup(stlc); | ||
| 2286 | |||
| 2287 | mutex_unlock(&stlc->mutex); | ||
| 2288 | |||
| 2289 | if (changed & BSS_CHANGED_ASSOC) { | ||
| 2290 | stlc->associated = info->assoc; | ||
| 2291 | if (info->assoc) | ||
| 2292 | stlc->aid = info->aid; | ||
| 2293 | else | ||
| 2294 | stlc->aid = -1; | ||
| 2295 | |||
| 2296 | if (stlc->psm) { | ||
| 2297 | stlc45xx_tx_psm(stlc, stlc->psm); | ||
| 2298 | stlc45xx_tx_nullfunc(stlc, stlc->psm); | ||
| 2299 | } | ||
| 2300 | } | ||
| 2301 | } | ||
| 2302 | |||
| 2303 | |||
| 2304 | /* can't be const, mac80211 writes to this */ | ||
| 2305 | static struct ieee80211_rate stlc45xx_rates[] = { | ||
| 2306 | { .bitrate = 10, .hw_value = 0, .hw_value_short = 0, }, | ||
| 2307 | { .bitrate = 20, .hw_value = 1, .hw_value_short = 1, }, | ||
| 2308 | { .bitrate = 55, .hw_value = 2, .hw_value_short = 2, }, | ||
| 2309 | { .bitrate = 110, .hw_value = 3, .hw_value_short = 3, }, | ||
| 2310 | { .bitrate = 60, .hw_value = 4, .hw_value_short = 4, }, | ||
| 2311 | { .bitrate = 90, .hw_value = 5, .hw_value_short = 5, }, | ||
| 2312 | { .bitrate = 120, .hw_value = 6, .hw_value_short = 6, }, | ||
| 2313 | { .bitrate = 180, .hw_value = 7, .hw_value_short = 7, }, | ||
| 2314 | { .bitrate = 240, .hw_value = 8, .hw_value_short = 8, }, | ||
| 2315 | { .bitrate = 360, .hw_value = 9, .hw_value_short = 9, }, | ||
| 2316 | { .bitrate = 480, .hw_value = 10, .hw_value_short = 10, }, | ||
| 2317 | { .bitrate = 540, .hw_value = 11, .hw_value_short = 11, }, | ||
| 2318 | }; | ||
| 2319 | |||
| 2320 | /* can't be const, mac80211 writes to this */ | ||
| 2321 | static struct ieee80211_channel stlc45xx_channels[] = { | ||
| 2322 | { .hw_value = 1, .center_freq = 2412}, | ||
| 2323 | { .hw_value = 2, .center_freq = 2417}, | ||
| 2324 | { .hw_value = 3, .center_freq = 2422}, | ||
| 2325 | { .hw_value = 4, .center_freq = 2427}, | ||
| 2326 | { .hw_value = 5, .center_freq = 2432}, | ||
| 2327 | { .hw_value = 6, .center_freq = 2437}, | ||
| 2328 | { .hw_value = 7, .center_freq = 2442}, | ||
| 2329 | { .hw_value = 8, .center_freq = 2447}, | ||
| 2330 | { .hw_value = 9, .center_freq = 2452}, | ||
| 2331 | { .hw_value = 10, .center_freq = 2457}, | ||
| 2332 | { .hw_value = 11, .center_freq = 2462}, | ||
| 2333 | { .hw_value = 12, .center_freq = 2467}, | ||
| 2334 | { .hw_value = 13, .center_freq = 2472}, | ||
| 2335 | }; | ||
| 2336 | |||
| 2337 | /* can't be const, mac80211 writes to this */ | ||
| 2338 | static struct ieee80211_supported_band stlc45xx_band_2ghz = { | ||
| 2339 | .channels = stlc45xx_channels, | ||
| 2340 | .n_channels = ARRAY_SIZE(stlc45xx_channels), | ||
| 2341 | .bitrates = stlc45xx_rates, | ||
| 2342 | .n_bitrates = ARRAY_SIZE(stlc45xx_rates), | ||
| 2343 | }; | ||
| 2344 | |||
| 2345 | static const struct ieee80211_ops stlc45xx_ops = { | ||
| 2346 | .start = stlc45xx_op_start, | ||
| 2347 | .stop = stlc45xx_op_stop, | ||
| 2348 | .add_interface = stlc45xx_op_add_interface, | ||
| 2349 | .remove_interface = stlc45xx_op_remove_interface, | ||
| 2350 | .config = stlc45xx_op_config, | ||
| 2351 | .configure_filter = stlc45xx_op_configure_filter, | ||
| 2352 | .tx = stlc45xx_op_tx, | ||
| 2353 | .bss_info_changed = stlc45xx_op_bss_info_changed, | ||
| 2354 | }; | ||
| 2355 | |||
| 2356 | static int stlc45xx_register_mac80211(struct stlc45xx *stlc) | ||
| 2357 | { | ||
| 2358 | /* FIXME: SET_IEEE80211_PERM_ADDR() requires default_mac_addr | ||
| 2359 | to be non-const for some strange reason */ | ||
| 2360 | static u8 default_mac_addr[ETH_ALEN] = { | ||
| 2361 | 0x00, 0x02, 0xee, 0xc0, 0xff, 0xee | ||
| 2362 | }; | ||
| 2363 | int ret; | ||
| 2364 | |||
| 2365 | SET_IEEE80211_PERM_ADDR(stlc->hw, default_mac_addr); | ||
| 2366 | |||
| 2367 | ret = ieee80211_register_hw(stlc->hw); | ||
| 2368 | if (ret) { | ||
| 2369 | stlc45xx_error("unable to register mac80211 hw: %d", ret); | ||
| 2370 | return ret; | ||
| 2371 | } | ||
| 2372 | |||
| 2373 | return 0; | ||
| 2374 | } | ||
| 2375 | |||
| 2376 | static void stlc45xx_device_release(struct device *dev) | ||
| 2377 | { | ||
| 2378 | |||
| 2379 | } | ||
| 2380 | |||
| 2381 | static struct platform_device stlc45xx_device = { | ||
| 2382 | .name = "stlc45xx", | ||
| 2383 | .id = -1, | ||
| 2384 | |||
| 2385 | /* device model insists to have a release function */ | ||
| 2386 | .dev = { | ||
| 2387 | .release = stlc45xx_device_release, | ||
| 2388 | }, | ||
| 2389 | }; | ||
| 2390 | |||
| 2391 | static int __devinit stlc45xx_probe(struct spi_device *spi) | ||
| 2392 | { | ||
| 2393 | struct stlc45xx *stlc; | ||
| 2394 | struct ieee80211_hw *hw; | ||
| 2395 | int ret; | ||
| 2396 | |||
| 2397 | stlc45xx_debug(DEBUG_FUNC, "%s", __func__); | ||
| 2398 | |||
| 2399 | /* mac80211 alloc */ | ||
| 2400 | hw = ieee80211_alloc_hw(sizeof(*stlc), &stlc45xx_ops); | ||
| 2401 | if (!hw) { | ||
| 2402 | stlc45xx_error("could not alloc ieee80211_hw"); | ||
| 2403 | ret = -ENOMEM; | ||
| 2404 | goto out; | ||
| 2405 | } | ||
| 2406 | |||
| 2407 | /* mac80211 clears hw->priv */ | ||
| 2408 | stlc = hw->priv; | ||
| 2409 | |||
| 2410 | stlc->hw = hw; | ||
| 2411 | dev_set_drvdata(&spi->dev, stlc); | ||
| 2412 | stlc->spi = spi; | ||
| 2413 | |||
| 2414 | spi->bits_per_word = 16; | ||
| 2415 | spi->max_speed_hz = 24000000; | ||
| 2416 | |||
| 2417 | ret = spi_setup(spi); | ||
| 2418 | if (ret < 0) | ||
| 2419 | stlc45xx_error("spi_setup failed"); | ||
| 2420 | |||
| 2421 | ret = gpio_request(stlc45xx_gpio_power, "stlc45xx power"); | ||
| 2422 | if (ret < 0) { | ||
| 2423 | stlc45xx_error("power GPIO request failed: %d", ret); | ||
| 2424 | return ret; | ||
| 2425 | } | ||
| 2426 | |||
| 2427 | ret = gpio_request(stlc45xx_gpio_irq, "stlc45xx irq"); | ||
| 2428 | if (ret < 0) { | ||
| 2429 | stlc45xx_error("irq GPIO request failed: %d", ret); | ||
| 2430 | goto out; | ||
| 2431 | } | ||
| 2432 | |||
| 2433 | gpio_direction_output(stlc45xx_gpio_power, 0); | ||
| 2434 | gpio_direction_input(stlc45xx_gpio_irq); | ||
| 2435 | |||
| 2436 | ret = request_irq(gpio_to_irq(stlc45xx_gpio_irq), | ||
| 2437 | stlc45xx_interrupt, IRQF_DISABLED, "stlc45xx", | ||
| 2438 | stlc->spi); | ||
| 2439 | if (ret < 0) | ||
| 2440 | /* FIXME: handle the error */ | ||
| 2441 | stlc45xx_error("request_irq() failed"); | ||
| 2442 | |||
| 2443 | set_irq_type(gpio_to_irq(stlc45xx_gpio_irq), | ||
| 2444 | IRQ_TYPE_EDGE_RISING); | ||
| 2445 | |||
| 2446 | disable_irq(gpio_to_irq(stlc45xx_gpio_irq)); | ||
| 2447 | |||
| 2448 | ret = platform_device_register(&stlc45xx_device); | ||
| 2449 | if (ret) { | ||
| 2450 | stlc45xx_error("Couldn't register wlan_omap device."); | ||
| 2451 | return ret; | ||
| 2452 | } | ||
| 2453 | dev_set_drvdata(&stlc45xx_device.dev, stlc); | ||
| 2454 | |||
| 2455 | INIT_WORK(&stlc->work, stlc45xx_work); | ||
| 2456 | INIT_WORK(&stlc->work_reset, stlc45xx_work_reset); | ||
| 2457 | INIT_DELAYED_WORK(&stlc->work_tx_timeout, stlc45xx_work_tx_timeout); | ||
| 2458 | mutex_init(&stlc->mutex); | ||
| 2459 | init_completion(&stlc->fw_comp); | ||
| 2460 | spin_lock_init(&stlc->tx_lock); | ||
| 2461 | INIT_LIST_HEAD(&stlc->txbuffer); | ||
| 2462 | INIT_LIST_HEAD(&stlc->tx_pending); | ||
| 2463 | INIT_LIST_HEAD(&stlc->tx_sent); | ||
| 2464 | |||
| 2465 | hw->flags = IEEE80211_HW_RX_INCLUDES_FCS | | ||
| 2466 | IEEE80211_HW_SIGNAL_DBM | | ||
| 2467 | IEEE80211_HW_NOISE_DBM; | ||
| 2468 | /* four bytes for padding */ | ||
| 2469 | hw->extra_tx_headroom = sizeof(struct s_lm_data_out) + 4; | ||
| 2470 | |||
| 2471 | /* unit us */ | ||
| 2472 | hw->channel_change_time = 1000; | ||
| 2473 | |||
| 2474 | hw->wiphy->interface_modes = BIT(NL80211_IFTYPE_STATION); | ||
| 2475 | hw->wiphy->bands[IEEE80211_BAND_2GHZ] = &stlc45xx_band_2ghz; | ||
| 2476 | |||
| 2477 | SET_IEEE80211_DEV(hw, &spi->dev); | ||
| 2478 | |||
| 2479 | BUILD_BUG_ON(sizeof(default_cal_rssi) != RSSI_CAL_ARRAY_LEN); | ||
| 2480 | BUILD_BUG_ON(sizeof(default_cal_channels) != CHANNEL_CAL_ARRAY_LEN); | ||
| 2481 | |||
| 2482 | stlc->cal_rssi = kmemdup(default_cal_rssi, RSSI_CAL_ARRAY_LEN, | ||
| 2483 | GFP_KERNEL); | ||
| 2484 | stlc->cal_channels = kmemdup(default_cal_channels, | ||
| 2485 | CHANNEL_CAL_ARRAY_LEN, | ||
| 2486 | GFP_KERNEL); | ||
| 2487 | |||
| 2488 | ret = device_create_file(&stlc45xx_device.dev, &dev_attr_cal_rssi); | ||
| 2489 | if (ret < 0) { | ||
| 2490 | stlc45xx_error("failed to create sysfs file cal_rssi"); | ||
| 2491 | goto out; | ||
| 2492 | } | ||
| 2493 | |||
| 2494 | ret = device_create_file(&stlc45xx_device.dev, &dev_attr_cal_channels); | ||
| 2495 | if (ret < 0) { | ||
| 2496 | stlc45xx_error("failed to create sysfs file cal_channels"); | ||
| 2497 | goto out; | ||
| 2498 | } | ||
| 2499 | |||
| 2500 | ret = device_create_file(&stlc45xx_device.dev, &dev_attr_tx_buf); | ||
| 2501 | if (ret < 0) { | ||
| 2502 | stlc45xx_error("failed to create sysfs file tx_buf"); | ||
| 2503 | goto out; | ||
| 2504 | } | ||
| 2505 | |||
| 2506 | ret = stlc45xx_register_mac80211(stlc); | ||
| 2507 | if (ret < 0) | ||
| 2508 | goto out; | ||
| 2509 | |||
| 2510 | stlc45xx_info("v" DRIVER_VERSION " loaded"); | ||
| 2511 | |||
| 2512 | stlc45xx_info("config buffer 0x%x-0x%x", | ||
| 2513 | FIRMWARE_CONFIG_START, FIRMWARE_CONFIG_END); | ||
| 2514 | stlc45xx_info("tx 0x%x-0x%x, rx 0x%x-0x%x", | ||
| 2515 | FIRMWARE_TXBUFFER_START, FIRMWARE_TXBUFFER_END, | ||
| 2516 | FIRMWARE_RXBUFFER_START, FIRMWARE_RXBUFFER_END); | ||
| 2517 | |||
| 2518 | out: | ||
| 2519 | return ret; | ||
| 2520 | } | ||
| 2521 | |||
| 2522 | static int __devexit stlc45xx_remove(struct spi_device *spi) | ||
| 2523 | { | ||
| 2524 | struct stlc45xx *stlc = dev_get_drvdata(&spi->dev); | ||
| 2525 | |||
| 2526 | stlc45xx_debug(DEBUG_FUNC, "%s", __func__); | ||
| 2527 | |||
| 2528 | platform_device_unregister(&stlc45xx_device); | ||
| 2529 | |||
| 2530 | ieee80211_unregister_hw(stlc->hw); | ||
| 2531 | |||
| 2532 | free_irq(gpio_to_irq(stlc45xx_gpio_irq), spi); | ||
| 2533 | |||
| 2534 | gpio_free(stlc45xx_gpio_power); | ||
| 2535 | gpio_free(stlc45xx_gpio_irq); | ||
| 2536 | |||
| 2537 | /* FIXME: free cal_channels and cal_rssi? */ | ||
| 2538 | |||
| 2539 | kfree(stlc->fw); | ||
| 2540 | |||
| 2541 | mutex_destroy(&stlc->mutex); | ||
| 2542 | |||
| 2543 | /* frees also stlc */ | ||
| 2544 | ieee80211_free_hw(stlc->hw); | ||
| 2545 | stlc = NULL; | ||
| 2546 | |||
| 2547 | return 0; | ||
| 2548 | } | ||
| 2549 | |||
| 2550 | |||
| 2551 | static struct spi_driver stlc45xx_spi_driver = { | ||
| 2552 | .driver = { | ||
| 2553 | /* use cx3110x name because board-n800.c uses that for the | ||
| 2554 | * SPI port */ | ||
| 2555 | .name = "cx3110x", | ||
| 2556 | .bus = &spi_bus_type, | ||
| 2557 | .owner = THIS_MODULE, | ||
| 2558 | }, | ||
| 2559 | |||
| 2560 | .probe = stlc45xx_probe, | ||
| 2561 | .remove = __devexit_p(stlc45xx_remove), | ||
| 2562 | }; | ||
| 2563 | |||
| 2564 | static int __init stlc45xx_init(void) | ||
| 2565 | { | ||
| 2566 | int ret; | ||
| 2567 | |||
| 2568 | stlc45xx_debug(DEBUG_FUNC, "%s", __func__); | ||
| 2569 | |||
| 2570 | ret = spi_register_driver(&stlc45xx_spi_driver); | ||
| 2571 | if (ret < 0) { | ||
| 2572 | stlc45xx_error("failed to register SPI driver: %d", ret); | ||
| 2573 | goto out; | ||
| 2574 | } | ||
| 2575 | |||
| 2576 | out: | ||
| 2577 | return ret; | ||
| 2578 | } | ||
| 2579 | |||
| 2580 | static void __exit stlc45xx_exit(void) | ||
| 2581 | { | ||
| 2582 | stlc45xx_debug(DEBUG_FUNC, "%s", __func__); | ||
| 2583 | |||
| 2584 | spi_unregister_driver(&stlc45xx_spi_driver); | ||
| 2585 | |||
| 2586 | stlc45xx_info("unloaded"); | ||
| 2587 | } | ||
| 2588 | |||
| 2589 | module_init(stlc45xx_init); | ||
| 2590 | module_exit(stlc45xx_exit); | ||
| 2591 | |||
| 2592 | MODULE_LICENSE("GPL"); | ||
| 2593 | MODULE_AUTHOR("Kalle Valo <kalle.valo@nokia.com>"); | ||
| 2594 | MODULE_ALIAS("spi:cx3110x"); | ||
diff --git a/drivers/staging/stlc45xx/stlc45xx.h b/drivers/staging/stlc45xx/stlc45xx.h deleted file mode 100644 index ac96bbbde79f..000000000000 --- a/drivers/staging/stlc45xx/stlc45xx.h +++ /dev/null | |||
| @@ -1,283 +0,0 @@ | |||
| 1 | /* | ||
| 2 | * This file is part of stlc45xx | ||
| 3 | * | ||
| 4 | * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies). | ||
| 5 | * | ||
| 6 | * Contact: Kalle Valo <kalle.valo@nokia.com> | ||
| 7 | * | ||
| 8 | * This program is free software; you can redistribute it and/or | ||
| 9 | * modify it under the terms of the GNU General Public License | ||
| 10 | * version 2 as published by the Free Software Foundation. | ||
| 11 | * | ||
| 12 | * This program is distributed in the hope that it will be useful, but | ||
| 13 | * WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
| 15 | * General Public License for more details. | ||
| 16 | * | ||
| 17 | * You should have received a copy of the GNU General Public License | ||
| 18 | * along with this program; if not, write to the Free Software | ||
| 19 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA | ||
| 20 | * 02110-1301 USA | ||
| 21 | * | ||
| 22 | */ | ||
| 23 | |||
| 24 | #include <linux/mutex.h> | ||
| 25 | #include <linux/list.h> | ||
| 26 | #include <net/mac80211.h> | ||
| 27 | |||
| 28 | #include "stlc45xx_lmac.h" | ||
| 29 | |||
| 30 | #define DRIVER_NAME "stlc45xx" | ||
| 31 | #define DRIVER_VERSION "0.1.3" | ||
| 32 | |||
| 33 | #define DRIVER_PREFIX DRIVER_NAME ": " | ||
| 34 | |||
| 35 | enum { | ||
| 36 | DEBUG_NONE = 0, | ||
| 37 | DEBUG_FUNC = 1 << 0, | ||
| 38 | DEBUG_IRQ = 1 << 1, | ||
| 39 | DEBUG_BH = 1 << 2, | ||
| 40 | DEBUG_RX = 1 << 3, | ||
| 41 | DEBUG_RX_CONTENT = 1 << 5, | ||
| 42 | DEBUG_TX = 1 << 6, | ||
| 43 | DEBUG_TX_CONTENT = 1 << 8, | ||
| 44 | DEBUG_TXBUFFER = 1 << 9, | ||
| 45 | DEBUG_QUEUE = 1 << 10, | ||
| 46 | DEBUG_BOOT = 1 << 11, | ||
| 47 | DEBUG_PSM = 1 << 12, | ||
| 48 | DEBUG_ALL = ~0, | ||
| 49 | }; | ||
| 50 | |||
| 51 | #define DEBUG_LEVEL DEBUG_NONE | ||
| 52 | /* #define DEBUG_LEVEL DEBUG_ALL */ | ||
| 53 | /* #define DEBUG_LEVEL (DEBUG_TX | DEBUG_RX | DEBUG_IRQ) */ | ||
| 54 | /* #define DEBUG_LEVEL (DEBUG_TX | DEBUG_MEMREGION | DEBUG_QUEUE) */ | ||
| 55 | /* #define DEBUG_LEVEL (DEBUG_MEMREGION | DEBUG_QUEUE) */ | ||
| 56 | |||
| 57 | #define stlc45xx_error(fmt, arg...) \ | ||
| 58 | printk(KERN_ERR DRIVER_PREFIX "ERROR " fmt "\n", ##arg) | ||
| 59 | |||
| 60 | #define stlc45xx_warning(fmt, arg...) \ | ||
| 61 | printk(KERN_WARNING DRIVER_PREFIX "WARNING " fmt "\n", ##arg) | ||
| 62 | |||
| 63 | #define stlc45xx_info(fmt, arg...) \ | ||
| 64 | printk(KERN_INFO DRIVER_PREFIX fmt "\n", ##arg) | ||
| 65 | |||
| 66 | #define stlc45xx_debug(level, fmt, arg...) \ | ||
| 67 | do { \ | ||
| 68 | if (level & DEBUG_LEVEL) \ | ||
| 69 | printk(KERN_DEBUG DRIVER_PREFIX fmt "\n", ##arg); \ | ||
| 70 | } while (0) | ||
| 71 | |||
| 72 | #define stlc45xx_dump(level, buf, len) \ | ||
| 73 | do { \ | ||
| 74 | if (level & DEBUG_LEVEL) \ | ||
| 75 | print_hex_dump(KERN_DEBUG, "", DUMP_PREFIX_OFFSET, \ | ||
| 76 | 16, 1, buf, len, 1); \ | ||
| 77 | } while (0) | ||
| 78 | |||
| 79 | #define MAC2STR(a) ((a)[0], (a)[1], (a)[2], (a)[3], (a)[4], (a)[5]) | ||
| 80 | #define MACSTR "%02x:%02x:%02x:%02x:%02x:%02x" | ||
| 81 | |||
| 82 | /* Bit 15 is read/write bit; ON = READ, OFF = WRITE */ | ||
| 83 | #define ADDR_READ_BIT_15 0x8000 | ||
| 84 | |||
| 85 | #define SPI_ADRS_ARM_INTERRUPTS 0x00 | ||
| 86 | #define SPI_ADRS_ARM_INT_EN 0x04 | ||
| 87 | |||
| 88 | #define SPI_ADRS_HOST_INTERRUPTS 0x08 | ||
| 89 | #define SPI_ADRS_HOST_INT_EN 0x0c | ||
| 90 | #define SPI_ADRS_HOST_INT_ACK 0x10 | ||
| 91 | |||
| 92 | #define SPI_ADRS_GEN_PURP_1 0x14 | ||
| 93 | #define SPI_ADRS_GEN_PURP_2 0x18 | ||
| 94 | |||
| 95 | /* high word */ | ||
| 96 | #define SPI_ADRS_DEV_CTRL_STAT 0x26 | ||
| 97 | |||
| 98 | #define SPI_ADRS_DMA_DATA 0x28 | ||
| 99 | |||
| 100 | #define SPI_ADRS_DMA_WRITE_CTRL 0x2c | ||
| 101 | #define SPI_ADRS_DMA_WRITE_LEN 0x2e | ||
| 102 | #define SPI_ADRS_DMA_WRITE_BASE 0x30 | ||
| 103 | |||
| 104 | #define SPI_ADRS_DMA_READ_CTRL 0x34 | ||
| 105 | #define SPI_ADRS_DMA_READ_LEN 0x36 | ||
| 106 | #define SPI_ADRS_DMA_READ_BASE 0x38 | ||
| 107 | |||
| 108 | #define SPI_CTRL_STAT_HOST_OVERRIDE 0x8000 | ||
| 109 | #define SPI_CTRL_STAT_START_HALTED 0x4000 | ||
| 110 | #define SPI_CTRL_STAT_RAM_BOOT 0x2000 | ||
| 111 | #define SPI_CTRL_STAT_HOST_RESET 0x1000 | ||
| 112 | #define SPI_CTRL_STAT_HOST_CPU_EN 0x0800 | ||
| 113 | |||
| 114 | #define SPI_DMA_WRITE_CTRL_ENABLE 0x0001 | ||
| 115 | #define SPI_DMA_READ_CTRL_ENABLE 0x0001 | ||
| 116 | #define HOST_ALLOWED (1 << 7) | ||
| 117 | |||
| 118 | #define FIRMWARE_ADDRESS 0x20000 | ||
| 119 | |||
| 120 | #define SPI_TIMEOUT 100 /* msec */ | ||
| 121 | |||
| 122 | #define SPI_MAX_TX_PACKETS 32 | ||
| 123 | |||
| 124 | #define SPI_MAX_PACKET_SIZE 32767 | ||
| 125 | |||
| 126 | #define SPI_TARGET_INT_WAKEUP 0x00000001 | ||
| 127 | #define SPI_TARGET_INT_SLEEP 0x00000002 | ||
| 128 | #define SPI_TARGET_INT_RDDONE 0x00000004 | ||
| 129 | |||
| 130 | #define SPI_TARGET_INT_CTS 0x00004000 | ||
| 131 | #define SPI_TARGET_INT_DR 0x00008000 | ||
| 132 | |||
| 133 | #define SPI_HOST_INT_READY 0x00000001 | ||
| 134 | #define SPI_HOST_INT_WR_READY 0x00000002 | ||
| 135 | #define SPI_HOST_INT_SW_UPDATE 0x00000004 | ||
| 136 | #define SPI_HOST_INT_UPDATE 0x10000000 | ||
| 137 | |||
| 138 | /* clear to send */ | ||
| 139 | #define SPI_HOST_INT_CTS 0x00004000 | ||
| 140 | |||
| 141 | /* data ready */ | ||
| 142 | #define SPI_HOST_INT_DR 0x00008000 | ||
| 143 | |||
| 144 | #define SPI_HOST_INTS_DEFAULT \ | ||
| 145 | (SPI_HOST_INT_READY | SPI_HOST_INT_UPDATE | SPI_HOST_INT_SW_UPDATE) | ||
| 146 | |||
| 147 | #define TARGET_BOOT_SLEEP 50 | ||
| 148 | |||
| 149 | /* The firmware buffer is divided into three areas: | ||
| 150 | * | ||
| 151 | * o config area (for control commands) | ||
| 152 | * o tx buffer | ||
| 153 | * o rx buffer | ||
| 154 | */ | ||
| 155 | #define FIRMWARE_BUFFER_START 0x20200 | ||
| 156 | #define FIRMWARE_BUFFER_END 0x27c60 | ||
| 157 | #define FIRMWARE_BUFFER_LEN (FIRMWARE_BUFFER_END - FIRMWARE_BUFFER_START) | ||
| 158 | #define FIRMWARE_MTU 3240 | ||
| 159 | #define FIRMWARE_CONFIG_PAYLOAD_LEN 1024 | ||
| 160 | #define FIRMWARE_CONFIG_START FIRMWARE_BUFFER_START | ||
| 161 | #define FIRMWARE_CONFIG_LEN (sizeof(struct s_lm_control) + \ | ||
| 162 | FIRMWARE_CONFIG_PAYLOAD_LEN) | ||
| 163 | #define FIRMWARE_CONFIG_END (FIRMWARE_CONFIG_START + FIRMWARE_CONFIG_LEN - 1) | ||
| 164 | #define FIRMWARE_RXBUFFER_LEN (5 * FIRMWARE_MTU + 1024) | ||
| 165 | #define FIRMWARE_RXBUFFER_START (FIRMWARE_BUFFER_END - FIRMWARE_RXBUFFER_LEN) | ||
| 166 | #define FIRMWARE_RXBUFFER_END (FIRMWARE_RXBUFFER_START + \ | ||
| 167 | FIRMWARE_RXBUFFER_LEN - 1) | ||
| 168 | #define FIRMWARE_TXBUFFER_START (FIRMWARE_BUFFER_START + FIRMWARE_CONFIG_LEN) | ||
| 169 | #define FIRMWARE_TXBUFFER_LEN (FIRMWARE_BUFFER_LEN - FIRMWARE_CONFIG_LEN - \ | ||
| 170 | FIRMWARE_RXBUFFER_LEN) | ||
| 171 | #define FIRMWARE_TXBUFFER_END (FIRMWARE_TXBUFFER_START + \ | ||
| 172 | FIRMWARE_TXBUFFER_LEN - 1) | ||
| 173 | |||
| 174 | #define FIRMWARE_TXBUFFER_HEADER 100 | ||
| 175 | #define FIRMWARE_TXBUFFER_TRAILER 4 | ||
| 176 | |||
| 177 | /* FIXME: come up with a proper value */ | ||
| 178 | #define MAX_FRAME_LEN 2500 | ||
| 179 | |||
| 180 | /* unit is ms */ | ||
| 181 | #define TX_FRAME_LIFETIME 2000 | ||
| 182 | #define TX_TIMEOUT 4000 | ||
| 183 | |||
| 184 | #define SUPPORTED_CHANNELS 13 | ||
| 185 | |||
| 186 | /* FIXME */ | ||
| 187 | /* #define CHANNEL_CAL_LEN offsetof(struct s_lmo_scan, bratemask) - \ */ | ||
| 188 | /* offsetof(struct s_lmo_scan, channel) */ | ||
| 189 | #define CHANNEL_CAL_LEN 292 | ||
| 190 | #define CHANNEL_CAL_ARRAY_LEN (SUPPORTED_CHANNELS * CHANNEL_CAL_LEN) | ||
| 191 | /* FIXME */ | ||
| 192 | /* #define RSSI_CAL_LEN sizeof(struct s_lmo_scan) - \ */ | ||
| 193 | /* offsetof(struct s_lmo_scan, rssical) */ | ||
| 194 | #define RSSI_CAL_LEN 8 | ||
| 195 | #define RSSI_CAL_ARRAY_LEN (SUPPORTED_CHANNELS * RSSI_CAL_LEN) | ||
| 196 | |||
| 197 | struct s_dma_regs { | ||
| 198 | unsigned short cmd; | ||
| 199 | unsigned short len; | ||
| 200 | unsigned long addr; | ||
| 201 | }; | ||
| 202 | |||
| 203 | struct stlc45xx_ie_tim { | ||
| 204 | u8 dtim_count; | ||
| 205 | u8 dtim_period; | ||
| 206 | u8 bmap_control; | ||
| 207 | u8 pvbmap[251]; | ||
| 208 | }; | ||
| 209 | |||
| 210 | struct txbuffer { | ||
| 211 | /* can be removed when switched to skb queue */ | ||
| 212 | struct list_head tx_list; | ||
| 213 | |||
| 214 | struct list_head buffer_list; | ||
| 215 | |||
| 216 | int start; | ||
| 217 | int frame_start; | ||
| 218 | int end; | ||
| 219 | |||
| 220 | struct sk_buff *skb; | ||
| 221 | u32 handle; | ||
| 222 | |||
| 223 | bool status_needed; | ||
| 224 | |||
| 225 | int header_len; | ||
| 226 | |||
| 227 | /* unit jiffies */ | ||
| 228 | unsigned long lifetime; | ||
| 229 | }; | ||
| 230 | |||
| 231 | enum fw_state { | ||
| 232 | FW_STATE_OFF, | ||
| 233 | FW_STATE_BOOTING, | ||
| 234 | FW_STATE_READY, | ||
| 235 | FW_STATE_RESET, | ||
| 236 | FW_STATE_RESETTING, | ||
| 237 | }; | ||
| 238 | |||
| 239 | struct stlc45xx { | ||
| 240 | struct ieee80211_hw *hw; | ||
| 241 | struct spi_device *spi; | ||
| 242 | struct work_struct work; | ||
| 243 | struct work_struct work_reset; | ||
| 244 | struct delayed_work work_tx_timeout; | ||
| 245 | struct mutex mutex; | ||
| 246 | struct completion fw_comp; | ||
| 247 | |||
| 248 | |||
| 249 | u8 bssid[ETH_ALEN]; | ||
| 250 | u8 mac_addr[ETH_ALEN]; | ||
| 251 | int channel; | ||
| 252 | |||
| 253 | u8 *cal_rssi; | ||
| 254 | u8 *cal_channels; | ||
| 255 | |||
| 256 | enum fw_state fw_state; | ||
| 257 | |||
| 258 | spinlock_t tx_lock; | ||
| 259 | |||
| 260 | /* protected by tx_lock */ | ||
| 261 | struct list_head txbuffer; | ||
| 262 | |||
| 263 | /* protected by tx_lock */ | ||
| 264 | struct list_head tx_pending; | ||
| 265 | |||
| 266 | /* protected by tx_lock */ | ||
| 267 | int tx_queue_stopped; | ||
| 268 | |||
| 269 | /* protected by mutex */ | ||
| 270 | struct list_head tx_sent; | ||
| 271 | |||
| 272 | int tx_frames; | ||
| 273 | |||
| 274 | u8 *fw; | ||
| 275 | int fw_len; | ||
| 276 | |||
| 277 | bool psm; | ||
| 278 | bool associated; | ||
| 279 | int aid; | ||
| 280 | bool pspolling; | ||
| 281 | }; | ||
| 282 | |||
| 283 | |||
diff --git a/drivers/staging/stlc45xx/stlc45xx_lmac.h b/drivers/staging/stlc45xx/stlc45xx_lmac.h deleted file mode 100644 index af5db801347f..000000000000 --- a/drivers/staging/stlc45xx/stlc45xx_lmac.h +++ /dev/null | |||
| @@ -1,434 +0,0 @@ | |||
| 1 | /************************************************************************ | ||
| 2 | * This is the LMAC API interface header file for STLC4560. * | ||
| 3 | * Copyright (C) 2007 Conexant Systems, Inc. * | ||
| 4 | * This program is free software; you can redistribute it and/or * | ||
| 5 | * modify it under the terms of the GNU General Public License * | ||
| 6 | * as published by the Free Software Foundation; either version 2 * | ||
| 7 | * of the License, or (at your option) any later version. * | ||
| 8 | * * | ||
| 9 | * This program is distributed in the hope that it will be useful, * | ||
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of * | ||
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * | ||
| 12 | * GNU General Public License for more details. * | ||
| 13 | * * | ||
| 14 | * You should have received a copy of the GNU General Public License * | ||
| 15 | * along with this program. If not, see <http://www.gnu.org/licenses/>.* | ||
| 16 | *************************************************************************/ | ||
| 17 | |||
| 18 | #ifndef __lmac_h__ | ||
| 19 | #define __lmac_h__ | ||
| 20 | |||
| 21 | #define LM_TOP_VARIANT 0x0506 | ||
| 22 | #define LM_BOTTOM_VARIANT 0x0506 | ||
| 23 | |||
| 24 | /* | ||
| 25 | * LMAC - UMAC interface definition: | ||
| 26 | */ | ||
| 27 | |||
| 28 | #define LM_FLAG_CONTROL 0x8000 | ||
| 29 | #define LM_FLAG_ALIGN 0x4000 | ||
| 30 | |||
| 31 | #define LM_CTRL_OPSET 0x0001 | ||
| 32 | |||
| 33 | #define LM_OUT_PROMISC 0x0001 | ||
| 34 | #define LM_OUT_TIMESTAMP 0x0002 | ||
| 35 | #define LM_OUT_SEQNR 0x0004 | ||
| 36 | #define LM_OUT_BURST 0x0010 | ||
| 37 | #define LM_OUT_NOCANCEL 0x0020 | ||
| 38 | #define LM_OUT_CLEARTIM 0x0040 | ||
| 39 | #define LM_OUT_HITCHHIKE 0x0080 | ||
| 40 | #define LM_OUT_COMPRESS 0x0100 | ||
| 41 | #define LM_OUT_CONCAT 0x0200 | ||
| 42 | #define LM_OUT_PCS_ACCEPT 0x0400 | ||
| 43 | #define LM_OUT_WAITEOSP 0x0800 | ||
| 44 | |||
| 45 | |||
| 46 | #define LM_ALOFT_SP 0x10 | ||
| 47 | #define LM_ALOFT_CTS 0x20 | ||
| 48 | #define LM_ALOFT_RTS 0x40 | ||
| 49 | #define LM_ALOFT_MASK 0x1f | ||
| 50 | #define LM_ALOFT_RATE 0x0f | ||
| 51 | |||
| 52 | #define LM_IN_FCS_GOOD 0x0001 | ||
| 53 | #define LM_IN_MATCH_MAC 0x0002 | ||
| 54 | #define LM_IN_MCBC 0x0004 | ||
| 55 | #define LM_IN_BEACON 0x0008 | ||
| 56 | #define LM_IN_MATCH_BSS 0x0010 | ||
| 57 | #define LM_IN_BCAST_BSS 0x0020 | ||
| 58 | #define LM_IN_DATA 0x0040 | ||
| 59 | #define LM_IN_TRUNCATED 0x0080 | ||
| 60 | |||
| 61 | #define LM_IN_TRANSPARENT 0x0200 | ||
| 62 | |||
| 63 | #define LM_QUEUE_BEACON 0 | ||
| 64 | #define LM_QUEUE_SCAN 1 | ||
| 65 | #define LM_QUEUE_MGT 2 | ||
| 66 | #define LM_QUEUE_MCBC 3 | ||
| 67 | #define LM_QUEUE_DATA 4 | ||
| 68 | #define LM_QUEUE_DATA0 4 | ||
| 69 | #define LM_QUEUE_DATA1 5 | ||
| 70 | #define LM_QUEUE_DATA2 6 | ||
| 71 | #define LM_QUEUE_DATA3 7 | ||
| 72 | |||
| 73 | #define LM_SETUP_INFRA 0x0001 | ||
| 74 | #define LM_SETUP_IBSS 0x0002 | ||
| 75 | #define LM_SETUP_TRANSPARENT 0x0008 | ||
| 76 | #define LM_SETUP_PROMISCUOUS 0x0010 | ||
| 77 | #define LM_SETUP_HIBERNATE 0x0020 | ||
| 78 | #define LM_SETUP_NOACK 0x0040 | ||
| 79 | #define LM_SETUP_RX_DISABLED 0x0080 | ||
| 80 | |||
| 81 | #define LM_ANTENNA_0 0 | ||
| 82 | #define LM_ANTENNA_1 1 | ||
| 83 | #define LM_ANTENNA_DIVERSITY 2 | ||
| 84 | |||
| 85 | #define LM_TX_FAILED 0x0001 | ||
| 86 | #define LM_TX_PSM 0x0002 | ||
| 87 | #define LM_TX_PSM_CANCELLED 0x0004 | ||
| 88 | |||
| 89 | #define LM_SCAN_EXIT 0x0001 | ||
| 90 | #define LM_SCAN_TRAP 0x0002 | ||
| 91 | #define LM_SCAN_ACTIVE 0x0004 | ||
| 92 | #define LM_SCAN_FILTER 0x0008 | ||
| 93 | |||
| 94 | #define LM_PSM 0x0001 | ||
| 95 | #define LM_PSM_DTIM 0x0002 | ||
| 96 | #define LM_PSM_MCBC 0x0004 | ||
| 97 | #define LM_PSM_CHECKSUM 0x0008 | ||
| 98 | #define LM_PSM_SKIP_MORE_DATA 0x0010 | ||
| 99 | #define LM_PSM_BEACON_TIMEOUT 0x0020 | ||
| 100 | #define LM_PSM_HFOSLEEP 0x0040 | ||
| 101 | #define LM_PSM_AUTOSWITCH_SLEEP 0x0080 | ||
| 102 | #define LM_PSM_LPIT 0x0100 | ||
| 103 | #define LM_PSM_BF_UCAST_SKIP 0x0200 | ||
| 104 | #define LM_PSM_BF_MCAST_SKIP 0x0400 | ||
| 105 | |||
| 106 | /* hfosleep */ | ||
| 107 | #define LM_PSM_SLEEP_OPTION_MASK (LM_PSM_AUTOSWITCH_SLEEP | LM_PSM_HFOSLEEP) | ||
| 108 | #define LM_PSM_SLEEP_OPTION_SHIFT 6 | ||
| 109 | /* hfosleepend */ | ||
| 110 | #define LM_PSM_BF_OPTION_MASK (LM_PSM_BF_MCAST_SKIP | LM_PSM_BF_UCAST_SKIP) | ||
| 111 | #define LM_PSM_BF_OPTION_SHIFT 9 | ||
| 112 | |||
| 113 | |||
| 114 | #define LM_PRIVACC_WEP 0x01 | ||
| 115 | #define LM_PRIVACC_TKIP 0x02 | ||
| 116 | #define LM_PRIVACC_MICHAEL 0x04 | ||
| 117 | #define LM_PRIVACC_CCX_KP 0x08 | ||
| 118 | #define LM_PRIVACC_CCX_MIC 0x10 | ||
| 119 | #define LM_PRIVACC_AES_CCMP 0x20 | ||
| 120 | |||
| 121 | /* size of s_lm_descr in words */ | ||
| 122 | #define LM_DESCR_SIZE_WORDS 11 | ||
| 123 | |||
| 124 | #ifndef __ASSEMBLER__ | ||
| 125 | |||
| 126 | enum { | ||
| 127 | LM_MODE_CLIENT = 0, | ||
| 128 | LM_MODE_AP | ||
| 129 | }; | ||
| 130 | |||
| 131 | struct s_lm_descr { | ||
| 132 | uint16_t modes; | ||
| 133 | uint16_t flags; | ||
| 134 | uint32_t buffer_start; | ||
| 135 | uint32_t buffer_end; | ||
| 136 | uint8_t header; | ||
| 137 | uint8_t trailer; | ||
| 138 | uint8_t tx_queues; | ||
| 139 | uint8_t tx_depth; | ||
| 140 | uint8_t privacy; | ||
| 141 | uint8_t rx_keycache; | ||
| 142 | uint8_t tim_size; | ||
| 143 | uint8_t pad1; | ||
| 144 | uint8_t rates[16]; | ||
| 145 | uint32_t link; | ||
| 146 | uint16_t mtu; | ||
| 147 | }; | ||
| 148 | |||
| 149 | |||
| 150 | struct s_lm_control { | ||
| 151 | uint16_t flags; | ||
| 152 | uint16_t length; | ||
| 153 | uint32_t handle; | ||
| 154 | uint16_t oid; | ||
| 155 | uint16_t pad; | ||
| 156 | /* uint8_t data[]; */ | ||
| 157 | }; | ||
| 158 | |||
| 159 | enum { | ||
| 160 | LM_PRIV_NONE = 0, | ||
| 161 | LM_PRIV_WEP, | ||
| 162 | LM_PRIV_TKIP, | ||
| 163 | LM_PRIV_TKIPMICHAEL, | ||
| 164 | LM_PRIV_CCX_WEPMIC, | ||
| 165 | LM_PRIV_CCX_KPMIC, | ||
| 166 | LM_PRIV_CCX_KP, | ||
| 167 | LM_PRIV_AES_CCMP | ||
| 168 | }; | ||
| 169 | |||
| 170 | enum { | ||
| 171 | LM_DECRYPT_NONE, | ||
| 172 | LM_DECRYPT_OK, | ||
| 173 | LM_DECRYPT_NOKEY, | ||
| 174 | LM_DECRYPT_NOMICHAEL, | ||
| 175 | LM_DECRYPT_NOCKIPMIC, | ||
| 176 | LM_DECRYPT_FAIL_WEP, | ||
| 177 | LM_DECRYPT_FAIL_TKIP, | ||
| 178 | LM_DECRYPT_FAIL_MICHAEL, | ||
| 179 | LM_DECRYPT_FAIL_CKIPKP, | ||
| 180 | LM_DECRYPT_FAIL_CKIPMIC, | ||
| 181 | LM_DECRYPT_FAIL_AESCCMP | ||
| 182 | }; | ||
| 183 | |||
| 184 | struct s_lm_data_out { | ||
| 185 | uint16_t flags; | ||
| 186 | uint16_t length; | ||
| 187 | uint32_t handle; | ||
| 188 | uint16_t aid; | ||
| 189 | uint8_t rts_retries; | ||
| 190 | uint8_t retries; | ||
| 191 | uint8_t aloft[8]; | ||
| 192 | uint8_t aloft_ctrl; | ||
| 193 | uint8_t crypt_offset; | ||
| 194 | uint8_t keytype; | ||
| 195 | uint8_t keylen; | ||
| 196 | uint8_t key[16]; | ||
| 197 | uint8_t queue; | ||
| 198 | uint8_t backlog; | ||
| 199 | uint16_t durations[4]; | ||
| 200 | uint8_t antenna; | ||
| 201 | uint8_t cts; | ||
| 202 | int16_t power; | ||
| 203 | uint8_t pad[2]; | ||
| 204 | /*uint8_t data[];*/ | ||
| 205 | }; | ||
| 206 | |||
| 207 | #define LM_RCPI_INVALID (0xff) | ||
| 208 | |||
| 209 | struct s_lm_data_in { | ||
| 210 | uint16_t flags; | ||
| 211 | uint16_t length; | ||
| 212 | uint16_t frequency; | ||
| 213 | uint8_t antenna; | ||
| 214 | uint8_t rate; | ||
| 215 | uint8_t rcpi; | ||
| 216 | uint8_t sq; | ||
| 217 | uint8_t decrypt; | ||
| 218 | uint8_t rssi_raw; | ||
| 219 | uint32_t clock[2]; | ||
| 220 | /*uint8_t data[];*/ | ||
| 221 | }; | ||
| 222 | |||
| 223 | union u_lm_data { | ||
| 224 | struct s_lm_data_out out; | ||
| 225 | struct s_lm_data_in in; | ||
| 226 | }; | ||
| 227 | |||
| 228 | enum { | ||
| 229 | LM_OID_SETUP = 0, | ||
| 230 | LM_OID_SCAN = 1, | ||
| 231 | LM_OID_TRAP = 2, | ||
| 232 | LM_OID_EDCF = 3, | ||
| 233 | LM_OID_KEYCACHE = 4, | ||
| 234 | LM_OID_PSM = 6, | ||
| 235 | LM_OID_TXCANCEL = 7, | ||
| 236 | LM_OID_TX = 8, | ||
| 237 | LM_OID_BURST = 9, | ||
| 238 | LM_OID_STATS = 10, | ||
| 239 | LM_OID_LED = 13, | ||
| 240 | LM_OID_TIMER = 15, | ||
| 241 | LM_OID_NAV = 20, | ||
| 242 | LM_OID_PCS = 22, | ||
| 243 | LM_OID_BT_BALANCER = 28, | ||
| 244 | LM_OID_GROUP_ADDRESS_TABLE = 30, | ||
| 245 | LM_OID_ARPTABLE = 31, | ||
| 246 | LM_OID_BT_OPTIONS = 35 | ||
| 247 | }; | ||
| 248 | |||
| 249 | enum { | ||
| 250 | LM_FRONTEND_UNKNOWN = 0, | ||
| 251 | LM_FRONTEND_DUETTE3, | ||
| 252 | LM_FRONTEND_DUETTE2, | ||
| 253 | LM_FRONTEND_FRISBEE, | ||
| 254 | LM_FRONTEND_CROSSBOW, | ||
| 255 | LM_FRONTEND_LONGBOW | ||
| 256 | }; | ||
| 257 | |||
| 258 | |||
| 259 | #define INVALID_LPF_BANDWIDTH 0xffff | ||
| 260 | #define INVALID_OSC_START_DELAY 0xffff | ||
| 261 | |||
| 262 | struct s_lmo_setup { | ||
| 263 | uint16_t flags; | ||
| 264 | uint8_t macaddr[6]; | ||
| 265 | uint8_t bssid[6]; | ||
| 266 | uint8_t antenna; | ||
| 267 | uint8_t rx_align; | ||
| 268 | uint32_t rx_buffer; | ||
| 269 | uint16_t rx_mtu; | ||
| 270 | uint16_t frontend; | ||
| 271 | uint16_t timeout; | ||
| 272 | uint16_t truncate; | ||
| 273 | uint32_t bratemask; | ||
| 274 | uint8_t sbss_offset; | ||
| 275 | uint8_t mcast_window; | ||
| 276 | uint8_t rx_rssi_threshold; | ||
| 277 | uint8_t rx_ed_threshold; | ||
| 278 | uint32_t ref_clock; | ||
| 279 | uint16_t lpf_bandwidth; | ||
| 280 | uint16_t osc_start_delay; | ||
| 281 | }; | ||
| 282 | |||
| 283 | |||
| 284 | struct s_lmo_scan { | ||
| 285 | uint16_t flags; | ||
| 286 | uint16_t dwell; | ||
| 287 | uint8_t channel[292]; | ||
| 288 | uint32_t bratemask; | ||
| 289 | uint8_t aloft[8]; | ||
| 290 | uint8_t rssical[8]; | ||
| 291 | }; | ||
| 292 | |||
| 293 | |||
| 294 | enum { | ||
| 295 | LM_TRAP_SCAN = 0, | ||
| 296 | LM_TRAP_TIMER, | ||
| 297 | LM_TRAP_BEACON_TX, | ||
| 298 | LM_TRAP_FAA_RADIO_ON, | ||
| 299 | LM_TRAP_FAA_RADIO_OFF, | ||
| 300 | LM_TRAP_RADAR, | ||
| 301 | LM_TRAP_NO_BEACON, | ||
| 302 | LM_TRAP_TBTT, | ||
| 303 | LM_TRAP_SCO_ENTER, | ||
| 304 | LM_TRAP_SCO_EXIT | ||
| 305 | }; | ||
| 306 | |||
| 307 | struct s_lmo_trap { | ||
| 308 | uint16_t event; | ||
| 309 | uint16_t frequency; | ||
| 310 | }; | ||
| 311 | |||
| 312 | struct s_lmo_timer { | ||
| 313 | uint32_t interval; | ||
| 314 | }; | ||
| 315 | |||
| 316 | struct s_lmo_nav { | ||
| 317 | uint32_t period; | ||
| 318 | }; | ||
| 319 | |||
| 320 | |||
| 321 | struct s_lmo_edcf_queue; | ||
| 322 | |||
| 323 | struct s_lmo_edcf { | ||
| 324 | uint8_t flags; | ||
| 325 | uint8_t slottime; | ||
| 326 | uint8_t sifs; | ||
| 327 | uint8_t eofpad; | ||
| 328 | struct s_lmo_edcf_queue { | ||
| 329 | uint8_t aifs; | ||
| 330 | uint8_t pad0; | ||
| 331 | uint16_t cwmin; | ||
| 332 | uint16_t cwmax; | ||
| 333 | uint16_t txop; | ||
| 334 | } queues[8]; | ||
| 335 | uint8_t mapping[4]; | ||
| 336 | uint16_t maxburst; | ||
| 337 | uint16_t round_trip_delay; | ||
| 338 | }; | ||
| 339 | |||
| 340 | struct s_lmo_keycache { | ||
| 341 | uint8_t entry; | ||
| 342 | uint8_t keyid; | ||
| 343 | uint8_t address[6]; | ||
| 344 | uint8_t pad[2]; | ||
| 345 | uint8_t keytype; | ||
| 346 | uint8_t keylen; | ||
| 347 | uint8_t key[24]; | ||
| 348 | }; | ||
| 349 | |||
| 350 | |||
| 351 | struct s_lm_interval; | ||
| 352 | |||
| 353 | struct s_lmo_psm { | ||
| 354 | uint16_t flags; | ||
| 355 | uint16_t aid; | ||
| 356 | struct s_lm_interval { | ||
| 357 | uint16_t interval; | ||
| 358 | uint16_t periods; | ||
| 359 | } intervals[4]; | ||
| 360 | /* uint16_t pad; */ | ||
| 361 | uint8_t beacon_rcpi_skip_max; | ||
| 362 | uint8_t rcpi_delta_threshold; | ||
| 363 | uint8_t nr; | ||
| 364 | uint8_t exclude[1]; | ||
| 365 | }; | ||
| 366 | |||
| 367 | #define MC_FILTER_ADDRESS_NUM 4 | ||
| 368 | |||
| 369 | struct s_lmo_group_address_table { | ||
| 370 | uint16_t filter_enable; | ||
| 371 | uint16_t num_address; | ||
| 372 | uint8_t macaddr_list[MC_FILTER_ADDRESS_NUM][6]; | ||
| 373 | }; | ||
| 374 | |||
| 375 | struct s_lmo_txcancel { | ||
| 376 | uint32_t address[1]; | ||
| 377 | }; | ||
| 378 | |||
| 379 | |||
| 380 | struct s_lmo_tx { | ||
| 381 | uint8_t flags; | ||
| 382 | uint8_t retries; | ||
| 383 | uint8_t rcpi; | ||
| 384 | uint8_t sq; | ||
| 385 | uint16_t seqctrl; | ||
| 386 | uint8_t antenna; | ||
| 387 | uint8_t pad; | ||
| 388 | }; | ||
| 389 | |||
| 390 | struct s_lmo_burst { | ||
| 391 | uint8_t flags; | ||
| 392 | uint8_t queue; | ||
| 393 | uint8_t backlog; | ||
| 394 | uint8_t pad; | ||
| 395 | uint16_t durations[32]; | ||
| 396 | }; | ||
| 397 | |||
| 398 | struct s_lmo_stats { | ||
| 399 | uint32_t valid; | ||
| 400 | uint32_t fcs; | ||
| 401 | uint32_t abort; | ||
| 402 | uint32_t phyabort; | ||
| 403 | uint32_t rts_success; | ||
| 404 | uint32_t rts_fail; | ||
| 405 | uint32_t timestamp; | ||
| 406 | uint32_t time_tx; | ||
| 407 | uint32_t noisefloor; | ||
| 408 | uint32_t sample_noise[8]; | ||
| 409 | uint32_t sample_cca; | ||
| 410 | uint32_t sample_tx; | ||
| 411 | }; | ||
| 412 | |||
| 413 | |||
| 414 | struct s_lmo_led { | ||
| 415 | uint16_t flags; | ||
| 416 | uint16_t mask[2]; | ||
| 417 | uint16_t delay/*[2]*/; | ||
| 418 | }; | ||
| 419 | |||
| 420 | |||
| 421 | struct s_lmo_bt_balancer { | ||
| 422 | uint16_t prio_thresh; | ||
| 423 | uint16_t acl_thresh; | ||
| 424 | }; | ||
| 425 | |||
| 426 | |||
| 427 | struct s_lmo_arp_table { | ||
| 428 | uint16_t filter_enable; | ||
| 429 | uint32_t ipaddr; | ||
| 430 | }; | ||
| 431 | |||
| 432 | #endif /* __ASSEMBLER__ */ | ||
| 433 | |||
| 434 | #endif /* __lmac_h__ */ | ||
diff --git a/drivers/staging/vt6656/main_usb.c b/drivers/staging/vt6656/main_usb.c index 7f96bcaf1c60..05186110c029 100644 --- a/drivers/staging/vt6656/main_usb.c +++ b/drivers/staging/vt6656/main_usb.c | |||
| @@ -1332,7 +1332,6 @@ device_release_WPADEV(pDevice); | |||
| 1332 | free_netdev(pDevice->dev); | 1332 | free_netdev(pDevice->dev); |
| 1333 | } | 1333 | } |
| 1334 | 1334 | ||
| 1335 | kfree(pDevice); | ||
| 1336 | DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO "device_disconnect3.. \n"); | 1335 | DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO "device_disconnect3.. \n"); |
| 1337 | } | 1336 | } |
| 1338 | 1337 | ||
diff --git a/drivers/staging/winbond/Kconfig b/drivers/staging/winbond/Kconfig index 940460c39f36..132671d96d0d 100644 --- a/drivers/staging/winbond/Kconfig +++ b/drivers/staging/winbond/Kconfig | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | config W35UND | 1 | config W35UND |
| 2 | tristate "IS89C35 WLAN USB driver" | 2 | tristate "IS89C35 WLAN USB driver" |
| 3 | depends on MAC80211 && WLAN_80211 && USB && EXPERIMENTAL | 3 | depends on MAC80211 && WLAN && USB && EXPERIMENTAL |
| 4 | default n | 4 | default n |
| 5 | ---help--- | 5 | ---help--- |
| 6 | This is highly experimental driver for Winbond WIFI card. | 6 | This is highly experimental driver for Winbond WIFI card. |
diff --git a/drivers/staging/wlan-ng/Kconfig b/drivers/staging/wlan-ng/Kconfig index 9959b658c8cf..f44294b0d8dc 100644 --- a/drivers/staging/wlan-ng/Kconfig +++ b/drivers/staging/wlan-ng/Kconfig | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | config PRISM2_USB | 1 | config PRISM2_USB |
| 2 | tristate "Prism2.5/3 USB driver" | 2 | tristate "Prism2.5/3 USB driver" |
| 3 | depends on WLAN_80211 && USB && WIRELESS_EXT | 3 | depends on WLAN && USB && WIRELESS_EXT |
| 4 | default n | 4 | default n |
| 5 | ---help--- | 5 | ---help--- |
| 6 | This is the wlan-ng prism 2.5/3 USB driver for a wide range of | 6 | This is the wlan-ng prism 2.5/3 USB driver for a wide range of |
diff --git a/drivers/usb/gadget/fsl_udc_core.c b/drivers/usb/gadget/fsl_udc_core.c index 42a74b8a0bb8..fa3d142ba64d 100644 --- a/drivers/usb/gadget/fsl_udc_core.c +++ b/drivers/usb/gadget/fsl_udc_core.c | |||
| @@ -2139,7 +2139,7 @@ static int fsl_proc_read(char *page, char **start, off_t off, int count, | |||
| 2139 | static void fsl_udc_release(struct device *dev) | 2139 | static void fsl_udc_release(struct device *dev) |
| 2140 | { | 2140 | { |
| 2141 | complete(udc_controller->done); | 2141 | complete(udc_controller->done); |
| 2142 | dma_free_coherent(dev, udc_controller->ep_qh_size, | 2142 | dma_free_coherent(dev->parent, udc_controller->ep_qh_size, |
| 2143 | udc_controller->ep_qh, udc_controller->ep_qh_dma); | 2143 | udc_controller->ep_qh, udc_controller->ep_qh_dma); |
| 2144 | kfree(udc_controller); | 2144 | kfree(udc_controller); |
| 2145 | } | 2145 | } |
diff --git a/drivers/usb/host/r8a66597-hcd.c b/drivers/usb/host/r8a66597-hcd.c index 749b53742828..e33d36256350 100644 --- a/drivers/usb/host/r8a66597-hcd.c +++ b/drivers/usb/host/r8a66597-hcd.c | |||
| @@ -1003,19 +1003,20 @@ static void r8a66597_check_syssts(struct r8a66597 *r8a66597, int port, | |||
| 1003 | if (syssts == SE0) { | 1003 | if (syssts == SE0) { |
| 1004 | r8a66597_write(r8a66597, ~ATTCH, get_intsts_reg(port)); | 1004 | r8a66597_write(r8a66597, ~ATTCH, get_intsts_reg(port)); |
| 1005 | r8a66597_bset(r8a66597, ATTCHE, get_intenb_reg(port)); | 1005 | r8a66597_bset(r8a66597, ATTCHE, get_intenb_reg(port)); |
| 1006 | return; | 1006 | } else { |
| 1007 | } | 1007 | if (syssts == FS_JSTS) |
| 1008 | r8a66597_bset(r8a66597, HSE, get_syscfg_reg(port)); | ||
| 1009 | else if (syssts == LS_JSTS) | ||
| 1010 | r8a66597_bclr(r8a66597, HSE, get_syscfg_reg(port)); | ||
| 1008 | 1011 | ||
| 1009 | if (syssts == FS_JSTS) | 1012 | r8a66597_write(r8a66597, ~DTCH, get_intsts_reg(port)); |
| 1010 | r8a66597_bset(r8a66597, HSE, get_syscfg_reg(port)); | 1013 | r8a66597_bset(r8a66597, DTCHE, get_intenb_reg(port)); |
| 1011 | else if (syssts == LS_JSTS) | ||
| 1012 | r8a66597_bclr(r8a66597, HSE, get_syscfg_reg(port)); | ||
| 1013 | 1014 | ||
| 1014 | r8a66597_write(r8a66597, ~DTCH, get_intsts_reg(port)); | 1015 | if (r8a66597->bus_suspended) |
| 1015 | r8a66597_bset(r8a66597, DTCHE, get_intenb_reg(port)); | 1016 | usb_hcd_resume_root_hub(r8a66597_to_hcd(r8a66597)); |
| 1017 | } | ||
| 1016 | 1018 | ||
| 1017 | if (r8a66597->bus_suspended) | 1019 | usb_hcd_poll_rh_status(r8a66597_to_hcd(r8a66597)); |
| 1018 | usb_hcd_resume_root_hub(r8a66597_to_hcd(r8a66597)); | ||
| 1019 | } | 1020 | } |
| 1020 | 1021 | ||
| 1021 | /* this function must be called with interrupt disabled */ | 1022 | /* this function must be called with interrupt disabled */ |
| @@ -1024,6 +1025,8 @@ static void r8a66597_usb_connect(struct r8a66597 *r8a66597, int port) | |||
| 1024 | u16 speed = get_rh_usb_speed(r8a66597, port); | 1025 | u16 speed = get_rh_usb_speed(r8a66597, port); |
| 1025 | struct r8a66597_root_hub *rh = &r8a66597->root_hub[port]; | 1026 | struct r8a66597_root_hub *rh = &r8a66597->root_hub[port]; |
| 1026 | 1027 | ||
| 1028 | rh->port &= ~((1 << USB_PORT_FEAT_HIGHSPEED) | | ||
| 1029 | (1 << USB_PORT_FEAT_LOWSPEED)); | ||
| 1027 | if (speed == HSMODE) | 1030 | if (speed == HSMODE) |
| 1028 | rh->port |= (1 << USB_PORT_FEAT_HIGHSPEED); | 1031 | rh->port |= (1 << USB_PORT_FEAT_HIGHSPEED); |
| 1029 | else if (speed == LSMODE) | 1032 | else if (speed == LSMODE) |
diff --git a/drivers/usb/serial/option.c b/drivers/usb/serial/option.c index 65d96b214f95..cd44c68954df 100644 --- a/drivers/usb/serial/option.c +++ b/drivers/usb/serial/option.c | |||
| @@ -315,6 +315,9 @@ static int option_resume(struct usb_serial *serial); | |||
| 315 | #define QISDA_PRODUCT_H20_4515 0x4515 | 315 | #define QISDA_PRODUCT_H20_4515 0x4515 |
| 316 | #define QISDA_PRODUCT_H20_4519 0x4519 | 316 | #define QISDA_PRODUCT_H20_4519 0x4519 |
| 317 | 317 | ||
| 318 | /* TLAYTECH PRODUCTS */ | ||
| 319 | #define TLAYTECH_VENDOR_ID 0x20B9 | ||
| 320 | #define TLAYTECH_PRODUCT_TEU800 0x1682 | ||
| 318 | 321 | ||
| 319 | /* TOSHIBA PRODUCTS */ | 322 | /* TOSHIBA PRODUCTS */ |
| 320 | #define TOSHIBA_VENDOR_ID 0x0930 | 323 | #define TOSHIBA_VENDOR_ID 0x0930 |
| @@ -593,6 +596,7 @@ static struct usb_device_id option_ids[] = { | |||
| 593 | { USB_DEVICE_AND_INTERFACE_INFO(ALINK_VENDOR_ID, ALINK_PRODUCT_3GU, 0xff, 0xff, 0xff) }, | 596 | { USB_DEVICE_AND_INTERFACE_INFO(ALINK_VENDOR_ID, ALINK_PRODUCT_3GU, 0xff, 0xff, 0xff) }, |
| 594 | { USB_DEVICE(ALCATEL_VENDOR_ID, ALCATEL_PRODUCT_X060S) }, | 597 | { USB_DEVICE(ALCATEL_VENDOR_ID, ALCATEL_PRODUCT_X060S) }, |
| 595 | { USB_DEVICE(AIRPLUS_VENDOR_ID, AIRPLUS_PRODUCT_MCD650) }, | 598 | { USB_DEVICE(AIRPLUS_VENDOR_ID, AIRPLUS_PRODUCT_MCD650) }, |
| 599 | { USB_DEVICE(TLAYTECH_VENDOR_ID, TLAYTECH_PRODUCT_TEU800) }, | ||
| 596 | { } /* Terminating entry */ | 600 | { } /* Terminating entry */ |
| 597 | }; | 601 | }; |
| 598 | MODULE_DEVICE_TABLE(usb, option_ids); | 602 | MODULE_DEVICE_TABLE(usb, option_ids); |
diff --git a/drivers/usb/serial/sierra.c b/drivers/usb/serial/sierra.c index 45883988a005..5019325ba25d 100644 --- a/drivers/usb/serial/sierra.c +++ b/drivers/usb/serial/sierra.c | |||
| @@ -296,7 +296,6 @@ struct sierra_port_private { | |||
| 296 | int dsr_state; | 296 | int dsr_state; |
| 297 | int dcd_state; | 297 | int dcd_state; |
| 298 | int ri_state; | 298 | int ri_state; |
| 299 | |||
| 300 | unsigned int opened:1; | 299 | unsigned int opened:1; |
| 301 | }; | 300 | }; |
| 302 | 301 | ||
| @@ -306,6 +305,8 @@ static int sierra_send_setup(struct usb_serial_port *port) | |||
| 306 | struct sierra_port_private *portdata; | 305 | struct sierra_port_private *portdata; |
| 307 | __u16 interface = 0; | 306 | __u16 interface = 0; |
| 308 | int val = 0; | 307 | int val = 0; |
| 308 | int do_send = 0; | ||
| 309 | int retval; | ||
| 309 | 310 | ||
| 310 | dev_dbg(&port->dev, "%s\n", __func__); | 311 | dev_dbg(&port->dev, "%s\n", __func__); |
| 311 | 312 | ||
| @@ -324,10 +325,7 @@ static int sierra_send_setup(struct usb_serial_port *port) | |||
| 324 | */ | 325 | */ |
| 325 | if (port->interrupt_in_urb) { | 326 | if (port->interrupt_in_urb) { |
| 326 | /* send control message */ | 327 | /* send control message */ |
| 327 | return usb_control_msg(serial->dev, | 328 | do_send = 1; |
| 328 | usb_rcvctrlpipe(serial->dev, 0), | ||
| 329 | 0x22, 0x21, val, interface, | ||
| 330 | NULL, 0, USB_CTRL_SET_TIMEOUT); | ||
| 331 | } | 329 | } |
| 332 | } | 330 | } |
| 333 | 331 | ||
| @@ -339,12 +337,18 @@ static int sierra_send_setup(struct usb_serial_port *port) | |||
| 339 | interface = 1; | 337 | interface = 1; |
| 340 | else if (port->bulk_out_endpointAddress == 5) | 338 | else if (port->bulk_out_endpointAddress == 5) |
| 341 | interface = 2; | 339 | interface = 2; |
| 342 | return usb_control_msg(serial->dev, | 340 | |
| 343 | usb_rcvctrlpipe(serial->dev, 0), | 341 | do_send = 1; |
| 344 | 0x22, 0x21, val, interface, | ||
| 345 | NULL, 0, USB_CTRL_SET_TIMEOUT); | ||
| 346 | } | 342 | } |
| 347 | return 0; | 343 | if (!do_send) |
| 344 | return 0; | ||
| 345 | |||
| 346 | usb_autopm_get_interface(serial->interface); | ||
| 347 | retval = usb_control_msg(serial->dev, usb_rcvctrlpipe(serial->dev, 0), | ||
| 348 | 0x22, 0x21, val, interface, NULL, 0, USB_CTRL_SET_TIMEOUT); | ||
| 349 | usb_autopm_put_interface(serial->interface); | ||
| 350 | |||
| 351 | return retval; | ||
| 348 | } | 352 | } |
| 349 | 353 | ||
| 350 | static void sierra_set_termios(struct tty_struct *tty, | 354 | static void sierra_set_termios(struct tty_struct *tty, |
| @@ -773,8 +777,11 @@ static void sierra_close(struct usb_serial_port *port) | |||
| 773 | 777 | ||
| 774 | if (serial->dev) { | 778 | if (serial->dev) { |
| 775 | mutex_lock(&serial->disc_mutex); | 779 | mutex_lock(&serial->disc_mutex); |
| 776 | if (!serial->disconnected) | 780 | if (!serial->disconnected) { |
| 781 | serial->interface->needs_remote_wakeup = 0; | ||
| 782 | usb_autopm_get_interface(serial->interface); | ||
| 777 | sierra_send_setup(port); | 783 | sierra_send_setup(port); |
| 784 | } | ||
| 778 | mutex_unlock(&serial->disc_mutex); | 785 | mutex_unlock(&serial->disc_mutex); |
| 779 | spin_lock_irq(&intfdata->susp_lock); | 786 | spin_lock_irq(&intfdata->susp_lock); |
| 780 | portdata->opened = 0; | 787 | portdata->opened = 0; |
| @@ -788,8 +795,6 @@ static void sierra_close(struct usb_serial_port *port) | |||
| 788 | sierra_release_urb(portdata->in_urbs[i]); | 795 | sierra_release_urb(portdata->in_urbs[i]); |
| 789 | portdata->in_urbs[i] = NULL; | 796 | portdata->in_urbs[i] = NULL; |
| 790 | } | 797 | } |
| 791 | usb_autopm_get_interface(serial->interface); | ||
| 792 | serial->interface->needs_remote_wakeup = 0; | ||
| 793 | } | 798 | } |
| 794 | } | 799 | } |
| 795 | 800 | ||
| @@ -827,6 +832,8 @@ static int sierra_open(struct tty_struct *tty, struct usb_serial_port *port) | |||
| 827 | if (err) { | 832 | if (err) { |
| 828 | /* get rid of everything as in close */ | 833 | /* get rid of everything as in close */ |
| 829 | sierra_close(port); | 834 | sierra_close(port); |
| 835 | /* restore balance for autopm */ | ||
| 836 | usb_autopm_put_interface(serial->interface); | ||
| 830 | return err; | 837 | return err; |
| 831 | } | 838 | } |
| 832 | sierra_send_setup(port); | 839 | sierra_send_setup(port); |
| @@ -915,7 +922,7 @@ static void sierra_release(struct usb_serial *serial) | |||
| 915 | #ifdef CONFIG_PM | 922 | #ifdef CONFIG_PM |
| 916 | static void stop_read_write_urbs(struct usb_serial *serial) | 923 | static void stop_read_write_urbs(struct usb_serial *serial) |
| 917 | { | 924 | { |
| 918 | int i, j; | 925 | int i; |
| 919 | struct usb_serial_port *port; | 926 | struct usb_serial_port *port; |
| 920 | struct sierra_port_private *portdata; | 927 | struct sierra_port_private *portdata; |
| 921 | 928 | ||
| @@ -923,8 +930,7 @@ static void stop_read_write_urbs(struct usb_serial *serial) | |||
| 923 | for (i = 0; i < serial->num_ports; ++i) { | 930 | for (i = 0; i < serial->num_ports; ++i) { |
| 924 | port = serial->port[i]; | 931 | port = serial->port[i]; |
| 925 | portdata = usb_get_serial_port_data(port); | 932 | portdata = usb_get_serial_port_data(port); |
| 926 | for (j = 0; j < N_IN_URB; j++) | 933 | sierra_stop_rx_urbs(port); |
| 927 | usb_kill_urb(portdata->in_urbs[j]); | ||
| 928 | usb_kill_anchored_urbs(&portdata->active); | 934 | usb_kill_anchored_urbs(&portdata->active); |
| 929 | } | 935 | } |
| 930 | } | 936 | } |
diff --git a/firmware/Makefile b/firmware/Makefile index a6c7c3e47e42..f4ca0c7eb51c 100644 --- a/firmware/Makefile +++ b/firmware/Makefile | |||
| @@ -69,11 +69,13 @@ fw-shipped-$(CONFIG_E100) += e100/d101m_ucode.bin e100/d101s_ucode.bin \ | |||
| 69 | fw-shipped-$(CONFIG_MYRI_SBUS) += myricom/lanai.bin | 69 | fw-shipped-$(CONFIG_MYRI_SBUS) += myricom/lanai.bin |
| 70 | fw-shipped-$(CONFIG_PCMCIA_PCNET) += cis/LA-PCM.cis cis/PCMLM28.cis \ | 70 | fw-shipped-$(CONFIG_PCMCIA_PCNET) += cis/LA-PCM.cis cis/PCMLM28.cis \ |
| 71 | cis/DP83903.cis cis/NE2K.cis \ | 71 | cis/DP83903.cis cis/NE2K.cis \ |
| 72 | cis/tamarack.cis | 72 | cis/tamarack.cis cis/PE-200.cis |
| 73 | fw-shipped-$(CONFIG_PCMCIA_3C589) += cis/3CXEM556.cis | 73 | fw-shipped-$(CONFIG_PCMCIA_3C589) += cis/3CXEM556.cis |
| 74 | fw-shipped-$(CONFIG_PCMCIA_3C574) += cis/3CCFEM556.cis | 74 | fw-shipped-$(CONFIG_PCMCIA_3C574) += cis/3CCFEM556.cis |
| 75 | fw-shipped-$(CONFIG_SERIAL_8250_CS) += cis/MT5634ZLX.cis cis/RS-COM-2P.cis \ | 75 | fw-shipped-$(CONFIG_SERIAL_8250_CS) += cis/MT5634ZLX.cis cis/RS-COM-2P.cis \ |
| 76 | cis/COMpad2.cis cis/COMpad4.cis | 76 | cis/COMpad2.cis cis/COMpad4.cis \ |
| 77 | cis/SW_555_SER.cis cis/SW_7xx_SER.cis \ | ||
| 78 | cis/SW_8xx_SER.cis | ||
| 77 | fw-shipped-$(CONFIG_PCMCIA_SMC91C92) += ositech/Xilinx7OD.bin | 79 | fw-shipped-$(CONFIG_PCMCIA_SMC91C92) += ositech/Xilinx7OD.bin |
| 78 | fw-shipped-$(CONFIG_SCSI_ADVANSYS) += advansys/mcode.bin advansys/38C1600.bin \ | 80 | fw-shipped-$(CONFIG_SCSI_ADVANSYS) += advansys/mcode.bin advansys/38C1600.bin \ |
| 79 | advansys/3550.bin advansys/38C0800.bin | 81 | advansys/3550.bin advansys/38C0800.bin |
diff --git a/firmware/WHENCE b/firmware/WHENCE index c437e14f0b11..7a8adc06eb34 100644 --- a/firmware/WHENCE +++ b/firmware/WHENCE | |||
| @@ -600,6 +600,7 @@ File: cis/LA-PCM.cis | |||
| 600 | cis/DP83903.cis | 600 | cis/DP83903.cis |
| 601 | cis/NE2K.cis | 601 | cis/NE2K.cis |
| 602 | cis/tamarack.cis | 602 | cis/tamarack.cis |
| 603 | cis/PE-200.cis | ||
| 603 | 604 | ||
| 604 | Licence: GPL | 605 | Licence: GPL |
| 605 | 606 | ||
| @@ -633,6 +634,9 @@ File: cis/MT5634ZLX.cis | |||
| 633 | cis/RS-COM-2P.cis | 634 | cis/RS-COM-2P.cis |
| 634 | cis/COMpad2.cis | 635 | cis/COMpad2.cis |
| 635 | cis/COMpad4.cis | 636 | cis/COMpad4.cis |
| 637 | cis/SW_555_SER.cis | ||
| 638 | cis/SW_7xx_SER.cis | ||
| 639 | cis/SW_8xx_SER.cis | ||
| 636 | 640 | ||
| 637 | Licence: GPL | 641 | Licence: GPL |
| 638 | 642 | ||
diff --git a/firmware/cis/PE-200.cis.ihex b/firmware/cis/PE-200.cis.ihex new file mode 100644 index 000000000000..e6dbdab6eb79 --- /dev/null +++ b/firmware/cis/PE-200.cis.ihex | |||
| @@ -0,0 +1,9 @@ | |||
| 1 | :1000000001030000FF151E0401504D582020200060 | ||
| 2 | :1000100050452D3230300045544845524E4554002D | ||
| 3 | :1000200052303100FF210206031A050101000101CF | ||
| 4 | :100030001B0EC181190155E051000F100F30FFFF59 | ||
| 5 | :040040001400FF00A9 | ||
| 6 | :00000001FF | ||
| 7 | # | ||
| 8 | # Replacement CIS for PE-200 ethernet card | ||
| 9 | # | ||
diff --git a/firmware/cis/SW_555_SER.cis.ihex b/firmware/cis/SW_555_SER.cis.ihex new file mode 100644 index 000000000000..9b9348acee7b --- /dev/null +++ b/firmware/cis/SW_555_SER.cis.ihex | |||
| @@ -0,0 +1,12 @@ | |||
| 1 | :100000000101FF17034100FF20043F0110072102F7 | ||
| 2 | :100010000200152A070053696572726120576972E0 | ||
| 3 | :10002000656C657373004169724361726420353594 | ||
| 4 | :1000300035004135353500526576203100FF1A050F | ||
| 5 | :1000400001030007731B0BE00118A360F8030730DE | ||
| 6 | :10005000BC3F1B08A10108A360F802071B08A2010E | ||
| 7 | :1000600008A360E803071B08A30108A360E80207D0 | ||
| 8 | :0A0070001B04A40108231400FF0084 | ||
| 9 | :00000001FF | ||
| 10 | # | ||
| 11 | # Replacement CIS for AC555 provided by Sierra Wireless | ||
| 12 | # | ||
diff --git a/firmware/cis/SW_7xx_SER.cis.ihex b/firmware/cis/SW_7xx_SER.cis.ihex new file mode 100644 index 000000000000..11e44ad86437 --- /dev/null +++ b/firmware/cis/SW_7xx_SER.cis.ihex | |||
| @@ -0,0 +1,13 @@ | |||
| 1 | :100000000101FF17034100FF2004920110072102A4 | ||
| 2 | :1000100002001537070053696572726120576972D3 | ||
| 3 | :10002000656C6573730041433731302F4143373579 | ||
| 4 | :10003000300047505253204E6574776F726B2041E9 | ||
| 5 | :1000400064617074657200523100FF1A050103008B | ||
| 6 | :1000500007731B10E00119784D555D25A360F80367 | ||
| 7 | :100060000730BC861B08A10108A360F802071B0823 | ||
| 8 | :10007000A20108A360E803071B08A30108A360E826 | ||
| 9 | :0C00800002071B04A40108231400FF0069 | ||
| 10 | :00000001FF | ||
| 11 | # | ||
| 12 | # Replacement CIS for AC7xx provided by Sierra Wireless | ||
| 13 | # | ||
diff --git a/firmware/cis/SW_8xx_SER.cis.ihex b/firmware/cis/SW_8xx_SER.cis.ihex new file mode 100644 index 000000000000..bbcfe6348328 --- /dev/null +++ b/firmware/cis/SW_8xx_SER.cis.ihex | |||
| @@ -0,0 +1,13 @@ | |||
| 1 | :100000000101FF17034100FF2004920110072102A4 | ||
| 2 | :100010000200152F070053696572726120576972DB | ||
| 3 | :10002000656C657373004143383530003347204EAB | ||
| 4 | :100030006574776F726B20416461707465720052F1 | ||
| 5 | :100040003100FF1A0501030007731B10E001197846 | ||
| 6 | :100050004D555D25A360F8480730BC861B08A101FB | ||
| 7 | :1000600008A360F847071B08A20108A360E8480737 | ||
| 8 | :100070001B08A30108A360E847071B04A401082389 | ||
| 9 | :040080001400FF0069 | ||
| 10 | :00000001FF | ||
| 11 | # | ||
| 12 | # Replacement CIS for AC8xx provided by Sierra Wireless | ||
| 13 | # | ||
diff --git a/fs/9p/vfs_dir.c b/fs/9p/vfs_dir.c index 873cd31baa47..15cce53bf61e 100644 --- a/fs/9p/vfs_dir.c +++ b/fs/9p/vfs_dir.c | |||
| @@ -40,6 +40,24 @@ | |||
| 40 | #include "fid.h" | 40 | #include "fid.h" |
| 41 | 41 | ||
| 42 | /** | 42 | /** |
| 43 | * struct p9_rdir - readdir accounting | ||
| 44 | * @mutex: mutex protecting readdir | ||
| 45 | * @head: start offset of current dirread buffer | ||
| 46 | * @tail: end offset of current dirread buffer | ||
| 47 | * @buf: dirread buffer | ||
| 48 | * | ||
| 49 | * private structure for keeping track of readdir | ||
| 50 | * allocated on demand | ||
| 51 | */ | ||
| 52 | |||
| 53 | struct p9_rdir { | ||
| 54 | struct mutex mutex; | ||
| 55 | int head; | ||
| 56 | int tail; | ||
| 57 | uint8_t *buf; | ||
| 58 | }; | ||
| 59 | |||
| 60 | /** | ||
| 43 | * dt_type - return file type | 61 | * dt_type - return file type |
| 44 | * @mistat: mistat structure | 62 | * @mistat: mistat structure |
| 45 | * | 63 | * |
| @@ -70,56 +88,79 @@ static int v9fs_dir_readdir(struct file *filp, void *dirent, filldir_t filldir) | |||
| 70 | { | 88 | { |
| 71 | int over; | 89 | int over; |
| 72 | struct p9_wstat st; | 90 | struct p9_wstat st; |
| 73 | int err; | 91 | int err = 0; |
| 74 | struct p9_fid *fid; | 92 | struct p9_fid *fid; |
| 75 | int buflen; | 93 | int buflen; |
| 76 | char *statbuf; | 94 | int reclen = 0; |
| 77 | int n, i = 0; | 95 | struct p9_rdir *rdir; |
| 78 | 96 | ||
| 79 | P9_DPRINTK(P9_DEBUG_VFS, "name %s\n", filp->f_path.dentry->d_name.name); | 97 | P9_DPRINTK(P9_DEBUG_VFS, "name %s\n", filp->f_path.dentry->d_name.name); |
| 80 | fid = filp->private_data; | 98 | fid = filp->private_data; |
| 81 | 99 | ||
| 82 | buflen = fid->clnt->msize - P9_IOHDRSZ; | 100 | buflen = fid->clnt->msize - P9_IOHDRSZ; |
| 83 | statbuf = kmalloc(buflen, GFP_KERNEL); | 101 | |
| 84 | if (!statbuf) | 102 | /* allocate rdir on demand */ |
| 85 | return -ENOMEM; | 103 | if (!fid->rdir) { |
| 86 | 104 | rdir = kmalloc(sizeof(struct p9_rdir) + buflen, GFP_KERNEL); | |
| 87 | while (1) { | 105 | |
| 88 | err = v9fs_file_readn(filp, statbuf, NULL, buflen, | 106 | if (rdir == NULL) { |
| 89 | fid->rdir_fpos); | 107 | err = -ENOMEM; |
| 90 | if (err <= 0) | 108 | goto exit; |
| 91 | break; | 109 | } |
| 92 | 110 | spin_lock(&filp->f_dentry->d_lock); | |
| 93 | n = err; | 111 | if (!fid->rdir) { |
| 94 | while (i < n) { | 112 | rdir->buf = (uint8_t *)rdir + sizeof(struct p9_rdir); |
| 95 | err = p9stat_read(statbuf + i, buflen-i, &st, | 113 | mutex_init(&rdir->mutex); |
| 96 | fid->clnt->dotu); | 114 | rdir->head = rdir->tail = 0; |
| 115 | fid->rdir = (void *) rdir; | ||
| 116 | rdir = NULL; | ||
| 117 | } | ||
| 118 | spin_unlock(&filp->f_dentry->d_lock); | ||
| 119 | kfree(rdir); | ||
| 120 | } | ||
| 121 | rdir = (struct p9_rdir *) fid->rdir; | ||
| 122 | |||
| 123 | err = mutex_lock_interruptible(&rdir->mutex); | ||
| 124 | while (err == 0) { | ||
| 125 | if (rdir->tail == rdir->head) { | ||
| 126 | err = v9fs_file_readn(filp, rdir->buf, NULL, | ||
| 127 | buflen, filp->f_pos); | ||
| 128 | if (err <= 0) | ||
| 129 | goto unlock_and_exit; | ||
| 130 | |||
| 131 | rdir->head = 0; | ||
| 132 | rdir->tail = err; | ||
| 133 | } | ||
| 134 | |||
| 135 | while (rdir->head < rdir->tail) { | ||
| 136 | err = p9stat_read(rdir->buf + rdir->head, | ||
| 137 | buflen - rdir->head, &st, | ||
| 138 | fid->clnt->dotu); | ||
| 97 | if (err) { | 139 | if (err) { |
| 98 | P9_DPRINTK(P9_DEBUG_VFS, "returned %d\n", err); | 140 | P9_DPRINTK(P9_DEBUG_VFS, "returned %d\n", err); |
| 99 | err = -EIO; | 141 | err = -EIO; |
| 100 | p9stat_free(&st); | 142 | p9stat_free(&st); |
| 101 | goto free_and_exit; | 143 | goto unlock_and_exit; |
| 102 | } | 144 | } |
| 103 | 145 | reclen = st.size+2; | |
| 104 | i += st.size+2; | ||
| 105 | fid->rdir_fpos += st.size+2; | ||
| 106 | 146 | ||
| 107 | over = filldir(dirent, st.name, strlen(st.name), | 147 | over = filldir(dirent, st.name, strlen(st.name), |
| 108 | filp->f_pos, v9fs_qid2ino(&st.qid), dt_type(&st)); | 148 | filp->f_pos, v9fs_qid2ino(&st.qid), dt_type(&st)); |
| 109 | 149 | ||
| 110 | filp->f_pos += st.size+2; | ||
| 111 | |||
| 112 | p9stat_free(&st); | 150 | p9stat_free(&st); |
| 113 | 151 | ||
| 114 | if (over) { | 152 | if (over) { |
| 115 | err = 0; | 153 | err = 0; |
| 116 | goto free_and_exit; | 154 | goto unlock_and_exit; |
| 117 | } | 155 | } |
| 156 | rdir->head += reclen; | ||
| 157 | filp->f_pos += reclen; | ||
| 118 | } | 158 | } |
| 119 | } | 159 | } |
| 120 | 160 | ||
| 121 | free_and_exit: | 161 | unlock_and_exit: |
| 122 | kfree(statbuf); | 162 | mutex_unlock(&rdir->mutex); |
| 163 | exit: | ||
| 123 | return err; | 164 | return err; |
| 124 | } | 165 | } |
| 125 | 166 | ||
diff --git a/fs/9p/vfs_inode.c b/fs/9p/vfs_inode.c index 5947628aefef..18f74ec4dce9 100644 --- a/fs/9p/vfs_inode.c +++ b/fs/9p/vfs_inode.c | |||
| @@ -994,8 +994,7 @@ static int v9fs_readlink(struct dentry *dentry, char *buffer, int buflen) | |||
| 994 | P9_DPRINTK(P9_DEBUG_VFS, | 994 | P9_DPRINTK(P9_DEBUG_VFS, |
| 995 | "%s -> %s (%s)\n", dentry->d_name.name, st->extension, buffer); | 995 | "%s -> %s (%s)\n", dentry->d_name.name, st->extension, buffer); |
| 996 | 996 | ||
| 997 | retval = buflen; | 997 | retval = strnlen(buffer, buflen); |
| 998 | |||
| 999 | done: | 998 | done: |
| 1000 | kfree(st); | 999 | kfree(st); |
| 1001 | return retval; | 1000 | return retval; |
| @@ -1062,7 +1061,7 @@ static void *v9fs_vfs_follow_link(struct dentry *dentry, struct nameidata *nd) | |||
| 1062 | __putname(link); | 1061 | __putname(link); |
| 1063 | link = ERR_PTR(len); | 1062 | link = ERR_PTR(len); |
| 1064 | } else | 1063 | } else |
| 1065 | link[len] = 0; | 1064 | link[min(len, PATH_MAX-1)] = 0; |
| 1066 | } | 1065 | } |
| 1067 | nd_set_link(nd, link); | 1066 | nd_set_link(nd, link); |
| 1068 | 1067 | ||
| @@ -325,8 +325,16 @@ static void bio_fs_destructor(struct bio *bio) | |||
| 325 | * @gfp_mask: allocation mask to use | 325 | * @gfp_mask: allocation mask to use |
| 326 | * @nr_iovecs: number of iovecs | 326 | * @nr_iovecs: number of iovecs |
| 327 | * | 327 | * |
| 328 | * Allocate a new bio with @nr_iovecs bvecs. If @gfp_mask | 328 | * bio_alloc will allocate a bio and associated bio_vec array that can hold |
| 329 | * contains __GFP_WAIT, the allocation is guaranteed to succeed. | 329 | * at least @nr_iovecs entries. Allocations will be done from the |
| 330 | * fs_bio_set. Also see @bio_alloc_bioset and @bio_kmalloc. | ||
| 331 | * | ||
| 332 | * If %__GFP_WAIT is set, then bio_alloc will always be able to allocate | ||
| 333 | * a bio. This is due to the mempool guarantees. To make this work, callers | ||
| 334 | * must never allocate more than 1 bio at a time from this pool. Callers | ||
| 335 | * that need to allocate more than 1 bio must always submit the previously | ||
| 336 | * allocated bio for IO before attempting to allocate a new one. Failure to | ||
| 337 | * do so can cause livelocks under memory pressure. | ||
| 330 | * | 338 | * |
| 331 | * RETURNS: | 339 | * RETURNS: |
| 332 | * Pointer to new bio on success, NULL on failure. | 340 | * Pointer to new bio on success, NULL on failure. |
| @@ -350,21 +358,13 @@ static void bio_kmalloc_destructor(struct bio *bio) | |||
| 350 | } | 358 | } |
| 351 | 359 | ||
| 352 | /** | 360 | /** |
| 353 | * bio_alloc - allocate a bio for I/O | 361 | * bio_kmalloc - allocate a bio for I/O using kmalloc() |
| 354 | * @gfp_mask: the GFP_ mask given to the slab allocator | 362 | * @gfp_mask: the GFP_ mask given to the slab allocator |
| 355 | * @nr_iovecs: number of iovecs to pre-allocate | 363 | * @nr_iovecs: number of iovecs to pre-allocate |
| 356 | * | 364 | * |
| 357 | * Description: | 365 | * Description: |
| 358 | * bio_alloc will allocate a bio and associated bio_vec array that can hold | 366 | * Allocate a new bio with @nr_iovecs bvecs. If @gfp_mask contains |
| 359 | * at least @nr_iovecs entries. Allocations will be done from the | 367 | * %__GFP_WAIT, the allocation is guaranteed to succeed. |
| 360 | * fs_bio_set. Also see @bio_alloc_bioset. | ||
| 361 | * | ||
| 362 | * If %__GFP_WAIT is set, then bio_alloc will always be able to allocate | ||
| 363 | * a bio. This is due to the mempool guarantees. To make this work, callers | ||
| 364 | * must never allocate more than 1 bio at a time from this pool. Callers | ||
| 365 | * that need to allocate more than 1 bio must always submit the previously | ||
| 366 | * allocated bio for IO before attempting to allocate a new one. Failure to | ||
| 367 | * do so can cause livelocks under memory pressure. | ||
| 368 | * | 368 | * |
| 369 | **/ | 369 | **/ |
| 370 | struct bio *bio_kmalloc(gfp_t gfp_mask, int nr_iovecs) | 370 | struct bio *bio_kmalloc(gfp_t gfp_mask, int nr_iovecs) |
| @@ -407,7 +407,7 @@ EXPORT_SYMBOL(zero_fill_bio); | |||
| 407 | * | 407 | * |
| 408 | * Description: | 408 | * Description: |
| 409 | * Put a reference to a &struct bio, either one you have gotten with | 409 | * Put a reference to a &struct bio, either one you have gotten with |
| 410 | * bio_alloc or bio_get. The last put of a bio will free it. | 410 | * bio_alloc, bio_get or bio_clone. The last put of a bio will free it. |
| 411 | **/ | 411 | **/ |
| 412 | void bio_put(struct bio *bio) | 412 | void bio_put(struct bio *bio) |
| 413 | { | 413 | { |
diff --git a/fs/compat.c b/fs/compat.c index d576b552e8e2..6c19040ffeef 100644 --- a/fs/compat.c +++ b/fs/compat.c | |||
| @@ -1532,6 +1532,8 @@ int compat_do_execve(char * filename, | |||
| 1532 | if (retval < 0) | 1532 | if (retval < 0) |
| 1533 | goto out; | 1533 | goto out; |
| 1534 | 1534 | ||
| 1535 | current->stack_start = current->mm->start_stack; | ||
| 1536 | |||
| 1535 | /* execve succeeded */ | 1537 | /* execve succeeded */ |
| 1536 | current->fs->in_exec = 0; | 1538 | current->fs->in_exec = 0; |
| 1537 | current->in_execve = 0; | 1539 | current->in_execve = 0; |
diff --git a/fs/ext4/ext4.h b/fs/ext4/ext4.h index 984ca0cb38c3..00d153f2f261 100644 --- a/fs/ext4/ext4.h +++ b/fs/ext4/ext4.h | |||
| @@ -743,6 +743,7 @@ struct ext4_inode_info { | |||
| 743 | #define EXT4_MOUNT_QUOTA 0x80000 /* Some quota option set */ | 743 | #define EXT4_MOUNT_QUOTA 0x80000 /* Some quota option set */ |
| 744 | #define EXT4_MOUNT_USRQUOTA 0x100000 /* "old" user quota */ | 744 | #define EXT4_MOUNT_USRQUOTA 0x100000 /* "old" user quota */ |
| 745 | #define EXT4_MOUNT_GRPQUOTA 0x200000 /* "old" group quota */ | 745 | #define EXT4_MOUNT_GRPQUOTA 0x200000 /* "old" group quota */ |
| 746 | #define EXT4_MOUNT_JOURNAL_CHECKSUM 0x800000 /* Journal checksums */ | ||
| 746 | #define EXT4_MOUNT_JOURNAL_ASYNC_COMMIT 0x1000000 /* Journal Async Commit */ | 747 | #define EXT4_MOUNT_JOURNAL_ASYNC_COMMIT 0x1000000 /* Journal Async Commit */ |
| 747 | #define EXT4_MOUNT_I_VERSION 0x2000000 /* i_version support */ | 748 | #define EXT4_MOUNT_I_VERSION 0x2000000 /* i_version support */ |
| 748 | #define EXT4_MOUNT_DELALLOC 0x8000000 /* Delalloc support */ | 749 | #define EXT4_MOUNT_DELALLOC 0x8000000 /* Delalloc support */ |
diff --git a/fs/ext4/super.c b/fs/ext4/super.c index 312211ee05af..d4ca92aab514 100644 --- a/fs/ext4/super.c +++ b/fs/ext4/super.c | |||
| @@ -1300,9 +1300,11 @@ static int parse_options(char *options, struct super_block *sb, | |||
| 1300 | *journal_devnum = option; | 1300 | *journal_devnum = option; |
| 1301 | break; | 1301 | break; |
| 1302 | case Opt_journal_checksum: | 1302 | case Opt_journal_checksum: |
| 1303 | break; /* Kept for backwards compatibility */ | 1303 | set_opt(sbi->s_mount_opt, JOURNAL_CHECKSUM); |
| 1304 | break; | ||
| 1304 | case Opt_journal_async_commit: | 1305 | case Opt_journal_async_commit: |
| 1305 | set_opt(sbi->s_mount_opt, JOURNAL_ASYNC_COMMIT); | 1306 | set_opt(sbi->s_mount_opt, JOURNAL_ASYNC_COMMIT); |
| 1307 | set_opt(sbi->s_mount_opt, JOURNAL_CHECKSUM); | ||
| 1306 | break; | 1308 | break; |
| 1307 | case Opt_noload: | 1309 | case Opt_noload: |
| 1308 | set_opt(sbi->s_mount_opt, NOLOAD); | 1310 | set_opt(sbi->s_mount_opt, NOLOAD); |
| @@ -2759,14 +2761,20 @@ static int ext4_fill_super(struct super_block *sb, void *data, int silent) | |||
| 2759 | goto failed_mount4; | 2761 | goto failed_mount4; |
| 2760 | } | 2762 | } |
| 2761 | 2763 | ||
| 2762 | jbd2_journal_set_features(sbi->s_journal, | 2764 | if (test_opt(sb, JOURNAL_ASYNC_COMMIT)) { |
| 2763 | JBD2_FEATURE_COMPAT_CHECKSUM, 0, 0); | 2765 | jbd2_journal_set_features(sbi->s_journal, |
| 2764 | if (test_opt(sb, JOURNAL_ASYNC_COMMIT)) | 2766 | JBD2_FEATURE_COMPAT_CHECKSUM, 0, |
| 2765 | jbd2_journal_set_features(sbi->s_journal, 0, 0, | ||
| 2766 | JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT); | 2767 | JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT); |
| 2767 | else | 2768 | } else if (test_opt(sb, JOURNAL_CHECKSUM)) { |
| 2769 | jbd2_journal_set_features(sbi->s_journal, | ||
| 2770 | JBD2_FEATURE_COMPAT_CHECKSUM, 0, 0); | ||
| 2768 | jbd2_journal_clear_features(sbi->s_journal, 0, 0, | 2771 | jbd2_journal_clear_features(sbi->s_journal, 0, 0, |
| 2769 | JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT); | 2772 | JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT); |
| 2773 | } else { | ||
| 2774 | jbd2_journal_clear_features(sbi->s_journal, | ||
| 2775 | JBD2_FEATURE_COMPAT_CHECKSUM, 0, | ||
| 2776 | JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT); | ||
| 2777 | } | ||
| 2770 | 2778 | ||
| 2771 | /* We have now updated the journal if required, so we can | 2779 | /* We have now updated the journal if required, so we can |
| 2772 | * validate the data journaling mode. */ | 2780 | * validate the data journaling mode. */ |
diff --git a/fs/nilfs2/btnode.c b/fs/nilfs2/btnode.c index 5941958f1e47..84c25382f8e3 100644 --- a/fs/nilfs2/btnode.c +++ b/fs/nilfs2/btnode.c | |||
| @@ -87,6 +87,7 @@ int nilfs_btnode_submit_block(struct address_space *btnc, __u64 blocknr, | |||
| 87 | brelse(bh); | 87 | brelse(bh); |
| 88 | BUG(); | 88 | BUG(); |
| 89 | } | 89 | } |
| 90 | memset(bh->b_data, 0, 1 << inode->i_blkbits); | ||
| 90 | bh->b_bdev = NILFS_I_NILFS(inode)->ns_bdev; | 91 | bh->b_bdev = NILFS_I_NILFS(inode)->ns_bdev; |
| 91 | bh->b_blocknr = blocknr; | 92 | bh->b_blocknr = blocknr; |
| 92 | set_buffer_mapped(bh); | 93 | set_buffer_mapped(bh); |
| @@ -276,8 +277,7 @@ void nilfs_btnode_commit_change_key(struct address_space *btnc, | |||
| 276 | "invalid oldkey %lld (newkey=%lld)", | 277 | "invalid oldkey %lld (newkey=%lld)", |
| 277 | (unsigned long long)oldkey, | 278 | (unsigned long long)oldkey, |
| 278 | (unsigned long long)newkey); | 279 | (unsigned long long)newkey); |
| 279 | if (!test_set_buffer_dirty(obh) && TestSetPageDirty(opage)) | 280 | nilfs_btnode_mark_dirty(obh); |
| 280 | BUG(); | ||
| 281 | 281 | ||
| 282 | spin_lock_irq(&btnc->tree_lock); | 282 | spin_lock_irq(&btnc->tree_lock); |
| 283 | radix_tree_delete(&btnc->page_tree, oldkey); | 283 | radix_tree_delete(&btnc->page_tree, oldkey); |
diff --git a/fs/nilfs2/segment.c b/fs/nilfs2/segment.c index 683df89dbae5..6eff66a070d5 100644 --- a/fs/nilfs2/segment.c +++ b/fs/nilfs2/segment.c | |||
| @@ -2468,17 +2468,22 @@ static void nilfs_segctor_notify(struct nilfs_sc_info *sci, | |||
| 2468 | /* Clear requests (even when the construction failed) */ | 2468 | /* Clear requests (even when the construction failed) */ |
| 2469 | spin_lock(&sci->sc_state_lock); | 2469 | spin_lock(&sci->sc_state_lock); |
| 2470 | 2470 | ||
| 2471 | sci->sc_state &= ~NILFS_SEGCTOR_COMMIT; | ||
| 2472 | |||
| 2473 | if (req->mode == SC_LSEG_SR) { | 2471 | if (req->mode == SC_LSEG_SR) { |
| 2472 | sci->sc_state &= ~NILFS_SEGCTOR_COMMIT; | ||
| 2474 | sci->sc_seq_done = req->seq_accepted; | 2473 | sci->sc_seq_done = req->seq_accepted; |
| 2475 | nilfs_segctor_wakeup(sci, req->sc_err ? : req->sb_err); | 2474 | nilfs_segctor_wakeup(sci, req->sc_err ? : req->sb_err); |
| 2476 | sci->sc_flush_request = 0; | 2475 | sci->sc_flush_request = 0; |
| 2477 | } else if (req->mode == SC_FLUSH_FILE) | 2476 | } else { |
| 2478 | sci->sc_flush_request &= ~FLUSH_FILE_BIT; | 2477 | if (req->mode == SC_FLUSH_FILE) |
| 2479 | else if (req->mode == SC_FLUSH_DAT) | 2478 | sci->sc_flush_request &= ~FLUSH_FILE_BIT; |
| 2480 | sci->sc_flush_request &= ~FLUSH_DAT_BIT; | 2479 | else if (req->mode == SC_FLUSH_DAT) |
| 2480 | sci->sc_flush_request &= ~FLUSH_DAT_BIT; | ||
| 2481 | 2481 | ||
| 2482 | /* re-enable timer if checkpoint creation was not done */ | ||
| 2483 | if (sci->sc_timer && (sci->sc_state & NILFS_SEGCTOR_COMMIT) && | ||
| 2484 | time_before(jiffies, sci->sc_timer->expires)) | ||
| 2485 | add_timer(sci->sc_timer); | ||
| 2486 | } | ||
| 2482 | spin_unlock(&sci->sc_state_lock); | 2487 | spin_unlock(&sci->sc_state_lock); |
| 2483 | } | 2488 | } |
| 2484 | 2489 | ||
diff --git a/fs/sysfs/dir.c b/fs/sysfs/dir.c index 5fad489ce5bc..e0201837d244 100644 --- a/fs/sysfs/dir.c +++ b/fs/sysfs/dir.c | |||
| @@ -21,6 +21,7 @@ | |||
| 21 | #include <linux/completion.h> | 21 | #include <linux/completion.h> |
| 22 | #include <linux/mutex.h> | 22 | #include <linux/mutex.h> |
| 23 | #include <linux/slab.h> | 23 | #include <linux/slab.h> |
| 24 | #include <linux/security.h> | ||
| 24 | #include "sysfs.h" | 25 | #include "sysfs.h" |
| 25 | 26 | ||
| 26 | DEFINE_MUTEX(sysfs_mutex); | 27 | DEFINE_MUTEX(sysfs_mutex); |
| @@ -285,6 +286,9 @@ void release_sysfs_dirent(struct sysfs_dirent * sd) | |||
| 285 | sysfs_put(sd->s_symlink.target_sd); | 286 | sysfs_put(sd->s_symlink.target_sd); |
| 286 | if (sysfs_type(sd) & SYSFS_COPY_NAME) | 287 | if (sysfs_type(sd) & SYSFS_COPY_NAME) |
| 287 | kfree(sd->s_name); | 288 | kfree(sd->s_name); |
| 289 | if (sd->s_iattr && sd->s_iattr->ia_secdata) | ||
| 290 | security_release_secctx(sd->s_iattr->ia_secdata, | ||
| 291 | sd->s_iattr->ia_secdata_len); | ||
| 288 | kfree(sd->s_iattr); | 292 | kfree(sd->s_iattr); |
| 289 | sysfs_free_ino(sd->s_ino); | 293 | sysfs_free_ino(sd->s_ino); |
| 290 | kmem_cache_free(sysfs_dir_cachep, sd); | 294 | kmem_cache_free(sysfs_dir_cachep, sd); |
diff --git a/fs/xfs/linux-2.6/xfs_quotaops.c b/fs/xfs/linux-2.6/xfs_quotaops.c index 9e41f91aa269..3d4a0c84d634 100644 --- a/fs/xfs/linux-2.6/xfs_quotaops.c +++ b/fs/xfs/linux-2.6/xfs_quotaops.c | |||
| @@ -80,7 +80,7 @@ xfs_fs_set_xstate( | |||
| 80 | 80 | ||
| 81 | if (sb->s_flags & MS_RDONLY) | 81 | if (sb->s_flags & MS_RDONLY) |
| 82 | return -EROFS; | 82 | return -EROFS; |
| 83 | if (!XFS_IS_QUOTA_RUNNING(mp)) | 83 | if (op != Q_XQUOTARM && !XFS_IS_QUOTA_RUNNING(mp)) |
| 84 | return -ENOSYS; | 84 | return -ENOSYS; |
| 85 | if (!capable(CAP_SYS_ADMIN)) | 85 | if (!capable(CAP_SYS_ADMIN)) |
| 86 | return -EPERM; | 86 | return -EPERM; |
diff --git a/fs/xfs/xfs_ialloc.c b/fs/xfs/xfs_ialloc.c index ab64f3efb43b..0785797db828 100644 --- a/fs/xfs/xfs_ialloc.c +++ b/fs/xfs/xfs_ialloc.c | |||
| @@ -880,6 +880,7 @@ nextag: | |||
| 880 | * Not in range - save last search | 880 | * Not in range - save last search |
| 881 | * location and allocate a new inode | 881 | * location and allocate a new inode |
| 882 | */ | 882 | */ |
| 883 | xfs_btree_del_cursor(tcur, XFS_BTREE_NOERROR); | ||
| 883 | pag->pagl_leftrec = trec.ir_startino; | 884 | pag->pagl_leftrec = trec.ir_startino; |
| 884 | pag->pagl_rightrec = rec.ir_startino; | 885 | pag->pagl_rightrec = rec.ir_startino; |
| 885 | pag->pagl_pagino = pagino; | 886 | pag->pagl_pagino = pagino; |
diff --git a/include/linux/device.h b/include/linux/device.h index aca31bf7d8ed..2ea3e4921812 100644 --- a/include/linux/device.h +++ b/include/linux/device.h | |||
| @@ -124,7 +124,9 @@ struct device_driver { | |||
| 124 | struct bus_type *bus; | 124 | struct bus_type *bus; |
| 125 | 125 | ||
| 126 | struct module *owner; | 126 | struct module *owner; |
| 127 | const char *mod_name; /* used for built-in modules */ | 127 | const char *mod_name; /* used for built-in modules */ |
| 128 | |||
| 129 | bool suppress_bind_attrs; /* disables bind/unbind via sysfs */ | ||
| 128 | 130 | ||
| 129 | int (*probe) (struct device *dev); | 131 | int (*probe) (struct device *dev); |
| 130 | int (*remove) (struct device *dev); | 132 | int (*remove) (struct device *dev); |
diff --git a/include/linux/perf_event.h b/include/linux/perf_event.h index 2e6d95f97419..9e7012689a84 100644 --- a/include/linux/perf_event.h +++ b/include/linux/perf_event.h | |||
| @@ -471,8 +471,8 @@ struct hw_perf_event { | |||
| 471 | unsigned long event_base; | 471 | unsigned long event_base; |
| 472 | int idx; | 472 | int idx; |
| 473 | }; | 473 | }; |
| 474 | union { /* software */ | 474 | struct { /* software */ |
| 475 | atomic64_t count; | 475 | s64 remaining; |
| 476 | struct hrtimer hrtimer; | 476 | struct hrtimer hrtimer; |
| 477 | }; | 477 | }; |
| 478 | }; | 478 | }; |
diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h index df7b23ac66e6..bcdd6606f468 100644 --- a/include/linux/skbuff.h +++ b/include/linux/skbuff.h | |||
| @@ -354,8 +354,8 @@ struct sk_buff { | |||
| 354 | ipvs_property:1, | 354 | ipvs_property:1, |
| 355 | peeked:1, | 355 | peeked:1, |
| 356 | nf_trace:1; | 356 | nf_trace:1; |
| 357 | __be16 protocol:16; | ||
| 357 | kmemcheck_bitfield_end(flags1); | 358 | kmemcheck_bitfield_end(flags1); |
| 358 | __be16 protocol; | ||
| 359 | 359 | ||
| 360 | void (*destructor)(struct sk_buff *skb); | 360 | void (*destructor)(struct sk_buff *skb); |
| 361 | #if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE) | 361 | #if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE) |
| @@ -367,7 +367,6 @@ struct sk_buff { | |||
| 367 | #endif | 367 | #endif |
| 368 | 368 | ||
| 369 | int iif; | 369 | int iif; |
| 370 | __u16 queue_mapping; | ||
| 371 | #ifdef CONFIG_NET_SCHED | 370 | #ifdef CONFIG_NET_SCHED |
| 372 | __u16 tc_index; /* traffic control index */ | 371 | __u16 tc_index; /* traffic control index */ |
| 373 | #ifdef CONFIG_NET_CLS_ACT | 372 | #ifdef CONFIG_NET_CLS_ACT |
| @@ -376,6 +375,7 @@ struct sk_buff { | |||
| 376 | #endif | 375 | #endif |
| 377 | 376 | ||
| 378 | kmemcheck_bitfield_begin(flags2); | 377 | kmemcheck_bitfield_begin(flags2); |
| 378 | __u16 queue_mapping:16; | ||
| 379 | #ifdef CONFIG_IPV6_NDISC_NODETYPE | 379 | #ifdef CONFIG_IPV6_NDISC_NODETYPE |
| 380 | __u8 ndisc_nodetype:2; | 380 | __u8 ndisc_nodetype:2; |
| 381 | #endif | 381 | #endif |
| @@ -1757,6 +1757,8 @@ extern int skb_copy_datagram_const_iovec(const struct sk_buff *from, | |||
| 1757 | int to_offset, | 1757 | int to_offset, |
| 1758 | int size); | 1758 | int size); |
| 1759 | extern void skb_free_datagram(struct sock *sk, struct sk_buff *skb); | 1759 | extern void skb_free_datagram(struct sock *sk, struct sk_buff *skb); |
| 1760 | extern void skb_free_datagram_locked(struct sock *sk, | ||
| 1761 | struct sk_buff *skb); | ||
| 1760 | extern int skb_kill_datagram(struct sock *sk, struct sk_buff *skb, | 1762 | extern int skb_kill_datagram(struct sock *sk, struct sk_buff *skb, |
| 1761 | unsigned int flags); | 1763 | unsigned int flags); |
| 1762 | extern __wsum skb_checksum(const struct sk_buff *skb, int offset, | 1764 | extern __wsum skb_checksum(const struct sk_buff *skb, int offset, |
diff --git a/include/linux/trace_seq.h b/include/linux/trace_seq.h index c134dd1fe6b6..09077f6ed128 100644 --- a/include/linux/trace_seq.h +++ b/include/linux/trace_seq.h | |||
| @@ -7,7 +7,7 @@ | |||
| 7 | 7 | ||
| 8 | /* | 8 | /* |
| 9 | * Trace sequences are used to allow a function to call several other functions | 9 | * Trace sequences are used to allow a function to call several other functions |
| 10 | * to create a string of data to use (up to a max of PAGE_SIZE. | 10 | * to create a string of data to use (up to a max of PAGE_SIZE). |
| 11 | */ | 11 | */ |
| 12 | 12 | ||
| 13 | struct trace_seq { | 13 | struct trace_seq { |
diff --git a/include/net/9p/client.h b/include/net/9p/client.h index e26812274b75..fb00b329f0d3 100644 --- a/include/net/9p/client.h +++ b/include/net/9p/client.h | |||
| @@ -159,8 +159,7 @@ struct p9_client { | |||
| 159 | * @qid: the &p9_qid server identifier this handle points to | 159 | * @qid: the &p9_qid server identifier this handle points to |
| 160 | * @iounit: the server reported maximum transaction size for this file | 160 | * @iounit: the server reported maximum transaction size for this file |
| 161 | * @uid: the numeric uid of the local user who owns this handle | 161 | * @uid: the numeric uid of the local user who owns this handle |
| 162 | * @aux: transport specific information (unused?) | 162 | * @rdir: readdir accounting structure (allocated on demand) |
| 163 | * @rdir_fpos: tracks offset of file position when reading directory contents | ||
| 164 | * @flist: per-client-instance fid tracking | 163 | * @flist: per-client-instance fid tracking |
| 165 | * @dlist: per-dentry fid tracking | 164 | * @dlist: per-dentry fid tracking |
| 166 | * | 165 | * |
| @@ -174,9 +173,9 @@ struct p9_fid { | |||
| 174 | struct p9_qid qid; | 173 | struct p9_qid qid; |
| 175 | u32 iounit; | 174 | u32 iounit; |
| 176 | uid_t uid; | 175 | uid_t uid; |
| 177 | void *aux; | ||
| 178 | 176 | ||
| 179 | int rdir_fpos; | 177 | void *rdir; |
| 178 | |||
| 180 | struct list_head flist; | 179 | struct list_head flist; |
| 181 | struct list_head dlist; /* list of all fids attached to a dentry */ | 180 | struct list_head dlist; /* list of all fids attached to a dentry */ |
| 182 | }; | 181 | }; |
diff --git a/include/net/ip_fib.h b/include/net/ip_fib.h index ef91fe924ba4..4d22fabc7719 100644 --- a/include/net/ip_fib.h +++ b/include/net/ip_fib.h | |||
| @@ -210,7 +210,8 @@ extern struct fib_table *fib_get_table(struct net *net, u32 id); | |||
| 210 | extern const struct nla_policy rtm_ipv4_policy[]; | 210 | extern const struct nla_policy rtm_ipv4_policy[]; |
| 211 | extern void ip_fib_init(void); | 211 | extern void ip_fib_init(void); |
| 212 | extern int fib_validate_source(__be32 src, __be32 dst, u8 tos, int oif, | 212 | extern int fib_validate_source(__be32 src, __be32 dst, u8 tos, int oif, |
| 213 | struct net_device *dev, __be32 *spec_dst, u32 *itag); | 213 | struct net_device *dev, __be32 *spec_dst, |
| 214 | u32 *itag, u32 mark); | ||
| 214 | extern void fib_select_default(struct net *net, const struct flowi *flp, | 215 | extern void fib_select_default(struct net *net, const struct flowi *flp, |
| 215 | struct fib_result *res); | 216 | struct fib_result *res); |
| 216 | 217 | ||
diff --git a/include/pcmcia/ss.h b/include/pcmcia/ss.h index d696a692d94a..e0f6feb8588c 100644 --- a/include/pcmcia/ss.h +++ b/include/pcmcia/ss.h | |||
| @@ -262,6 +262,8 @@ struct pcmcia_socket { | |||
| 262 | struct device dev; | 262 | struct device dev; |
| 263 | /* data internal to the socket driver */ | 263 | /* data internal to the socket driver */ |
| 264 | void *driver_data; | 264 | void *driver_data; |
| 265 | /* status of the card during resume from a system sleep state */ | ||
| 266 | int resume_status; | ||
| 265 | }; | 267 | }; |
| 266 | 268 | ||
| 267 | 269 | ||
| @@ -280,6 +282,8 @@ extern struct pccard_resource_ops pccard_nonstatic_ops; | |||
| 280 | 282 | ||
| 281 | /* socket drivers are expected to use these callbacks in their .drv struct */ | 283 | /* socket drivers are expected to use these callbacks in their .drv struct */ |
| 282 | extern int pcmcia_socket_dev_suspend(struct device *dev); | 284 | extern int pcmcia_socket_dev_suspend(struct device *dev); |
| 285 | extern void pcmcia_socket_dev_early_resume(struct device *dev); | ||
| 286 | extern void pcmcia_socket_dev_late_resume(struct device *dev); | ||
| 283 | extern int pcmcia_socket_dev_resume(struct device *dev); | 287 | extern int pcmcia_socket_dev_resume(struct device *dev); |
| 284 | 288 | ||
| 285 | /* socket drivers use this callback in their IRQ handler */ | 289 | /* socket drivers use this callback in their IRQ handler */ |
diff --git a/kernel/fork.c b/kernel/fork.c index 4c20fff8c13a..166b8c49257c 100644 --- a/kernel/fork.c +++ b/kernel/fork.c | |||
| @@ -91,7 +91,7 @@ int nr_processes(void) | |||
| 91 | int cpu; | 91 | int cpu; |
| 92 | int total = 0; | 92 | int total = 0; |
| 93 | 93 | ||
| 94 | for_each_online_cpu(cpu) | 94 | for_each_possible_cpu(cpu) |
| 95 | total += per_cpu(process_counts, cpu); | 95 | total += per_cpu(process_counts, cpu); |
| 96 | 96 | ||
| 97 | return total; | 97 | return total; |
diff --git a/kernel/futex.c b/kernel/futex.c index 642f3bbaacc7..fb65e822fc41 100644 --- a/kernel/futex.c +++ b/kernel/futex.c | |||
| @@ -2127,7 +2127,7 @@ int handle_early_requeue_pi_wakeup(struct futex_hash_bucket *hb, | |||
| 2127 | plist_del(&q->list, &q->list.plist); | 2127 | plist_del(&q->list, &q->list.plist); |
| 2128 | 2128 | ||
| 2129 | /* Handle spurious wakeups gracefully */ | 2129 | /* Handle spurious wakeups gracefully */ |
| 2130 | ret = -EAGAIN; | 2130 | ret = -EWOULDBLOCK; |
| 2131 | if (timeout && !timeout->task) | 2131 | if (timeout && !timeout->task) |
| 2132 | ret = -ETIMEDOUT; | 2132 | ret = -ETIMEDOUT; |
| 2133 | else if (signal_pending(current)) | 2133 | else if (signal_pending(current)) |
| @@ -2208,7 +2208,6 @@ static int futex_wait_requeue_pi(u32 __user *uaddr, int fshared, | |||
| 2208 | debug_rt_mutex_init_waiter(&rt_waiter); | 2208 | debug_rt_mutex_init_waiter(&rt_waiter); |
| 2209 | rt_waiter.task = NULL; | 2209 | rt_waiter.task = NULL; |
| 2210 | 2210 | ||
| 2211 | retry: | ||
| 2212 | key2 = FUTEX_KEY_INIT; | 2211 | key2 = FUTEX_KEY_INIT; |
| 2213 | ret = get_futex_key(uaddr2, fshared, &key2, VERIFY_WRITE); | 2212 | ret = get_futex_key(uaddr2, fshared, &key2, VERIFY_WRITE); |
| 2214 | if (unlikely(ret != 0)) | 2213 | if (unlikely(ret != 0)) |
| @@ -2303,9 +2302,6 @@ out_put_keys: | |||
| 2303 | out_key2: | 2302 | out_key2: |
| 2304 | put_futex_key(fshared, &key2); | 2303 | put_futex_key(fshared, &key2); |
| 2305 | 2304 | ||
| 2306 | /* Spurious wakeup ? */ | ||
| 2307 | if (ret == -EAGAIN) | ||
| 2308 | goto retry; | ||
| 2309 | out: | 2305 | out: |
| 2310 | if (to) { | 2306 | if (to) { |
| 2311 | hrtimer_cancel(&to->timer); | 2307 | hrtimer_cancel(&to->timer); |
diff --git a/kernel/kthread.c b/kernel/kthread.c index 5fe709982caa..ab7ae57773e1 100644 --- a/kernel/kthread.c +++ b/kernel/kthread.c | |||
| @@ -150,29 +150,6 @@ struct task_struct *kthread_create(int (*threadfn)(void *data), | |||
| 150 | EXPORT_SYMBOL(kthread_create); | 150 | EXPORT_SYMBOL(kthread_create); |
| 151 | 151 | ||
| 152 | /** | 152 | /** |
| 153 | * kthread_bind - bind a just-created kthread to a cpu. | ||
| 154 | * @k: thread created by kthread_create(). | ||
| 155 | * @cpu: cpu (might not be online, must be possible) for @k to run on. | ||
| 156 | * | ||
| 157 | * Description: This function is equivalent to set_cpus_allowed(), | ||
| 158 | * except that @cpu doesn't need to be online, and the thread must be | ||
| 159 | * stopped (i.e., just returned from kthread_create()). | ||
| 160 | */ | ||
| 161 | void kthread_bind(struct task_struct *k, unsigned int cpu) | ||
| 162 | { | ||
| 163 | /* Must have done schedule() in kthread() before we set_task_cpu */ | ||
| 164 | if (!wait_task_inactive(k, TASK_UNINTERRUPTIBLE)) { | ||
| 165 | WARN_ON(1); | ||
| 166 | return; | ||
| 167 | } | ||
| 168 | set_task_cpu(k, cpu); | ||
| 169 | k->cpus_allowed = cpumask_of_cpu(cpu); | ||
| 170 | k->rt.nr_cpus_allowed = 1; | ||
| 171 | k->flags |= PF_THREAD_BOUND; | ||
| 172 | } | ||
| 173 | EXPORT_SYMBOL(kthread_bind); | ||
| 174 | |||
| 175 | /** | ||
| 176 | * kthread_stop - stop a thread created by kthread_create(). | 153 | * kthread_stop - stop a thread created by kthread_create(). |
| 177 | * @k: thread created by kthread_create(). | 154 | * @k: thread created by kthread_create(). |
| 178 | * | 155 | * |
diff --git a/kernel/perf_event.c b/kernel/perf_event.c index afb7ef3dbc44..7f29643c8985 100644 --- a/kernel/perf_event.c +++ b/kernel/perf_event.c | |||
| @@ -3959,8 +3959,9 @@ static enum hrtimer_restart perf_swevent_hrtimer(struct hrtimer *hrtimer) | |||
| 3959 | regs = task_pt_regs(current); | 3959 | regs = task_pt_regs(current); |
| 3960 | 3960 | ||
| 3961 | if (regs) { | 3961 | if (regs) { |
| 3962 | if (perf_event_overflow(event, 0, &data, regs)) | 3962 | if (!(event->attr.exclude_idle && current->pid == 0)) |
| 3963 | ret = HRTIMER_NORESTART; | 3963 | if (perf_event_overflow(event, 0, &data, regs)) |
| 3964 | ret = HRTIMER_NORESTART; | ||
| 3964 | } | 3965 | } |
| 3965 | 3966 | ||
| 3966 | period = max_t(u64, 10000, event->hw.sample_period); | 3967 | period = max_t(u64, 10000, event->hw.sample_period); |
| @@ -3969,6 +3970,42 @@ static enum hrtimer_restart perf_swevent_hrtimer(struct hrtimer *hrtimer) | |||
| 3969 | return ret; | 3970 | return ret; |
| 3970 | } | 3971 | } |
| 3971 | 3972 | ||
| 3973 | static void perf_swevent_start_hrtimer(struct perf_event *event) | ||
| 3974 | { | ||
| 3975 | struct hw_perf_event *hwc = &event->hw; | ||
| 3976 | |||
| 3977 | hrtimer_init(&hwc->hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL); | ||
| 3978 | hwc->hrtimer.function = perf_swevent_hrtimer; | ||
| 3979 | if (hwc->sample_period) { | ||
| 3980 | u64 period; | ||
| 3981 | |||
| 3982 | if (hwc->remaining) { | ||
| 3983 | if (hwc->remaining < 0) | ||
| 3984 | period = 10000; | ||
| 3985 | else | ||
| 3986 | period = hwc->remaining; | ||
| 3987 | hwc->remaining = 0; | ||
| 3988 | } else { | ||
| 3989 | period = max_t(u64, 10000, hwc->sample_period); | ||
| 3990 | } | ||
| 3991 | __hrtimer_start_range_ns(&hwc->hrtimer, | ||
| 3992 | ns_to_ktime(period), 0, | ||
| 3993 | HRTIMER_MODE_REL, 0); | ||
| 3994 | } | ||
| 3995 | } | ||
| 3996 | |||
| 3997 | static void perf_swevent_cancel_hrtimer(struct perf_event *event) | ||
| 3998 | { | ||
| 3999 | struct hw_perf_event *hwc = &event->hw; | ||
| 4000 | |||
| 4001 | if (hwc->sample_period) { | ||
| 4002 | ktime_t remaining = hrtimer_get_remaining(&hwc->hrtimer); | ||
| 4003 | hwc->remaining = ktime_to_ns(remaining); | ||
| 4004 | |||
| 4005 | hrtimer_cancel(&hwc->hrtimer); | ||
| 4006 | } | ||
| 4007 | } | ||
| 4008 | |||
| 3972 | /* | 4009 | /* |
| 3973 | * Software event: cpu wall time clock | 4010 | * Software event: cpu wall time clock |
| 3974 | */ | 4011 | */ |
| @@ -3991,22 +4028,14 @@ static int cpu_clock_perf_event_enable(struct perf_event *event) | |||
| 3991 | int cpu = raw_smp_processor_id(); | 4028 | int cpu = raw_smp_processor_id(); |
| 3992 | 4029 | ||
| 3993 | atomic64_set(&hwc->prev_count, cpu_clock(cpu)); | 4030 | atomic64_set(&hwc->prev_count, cpu_clock(cpu)); |
| 3994 | hrtimer_init(&hwc->hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL); | 4031 | perf_swevent_start_hrtimer(event); |
| 3995 | hwc->hrtimer.function = perf_swevent_hrtimer; | ||
| 3996 | if (hwc->sample_period) { | ||
| 3997 | u64 period = max_t(u64, 10000, hwc->sample_period); | ||
| 3998 | __hrtimer_start_range_ns(&hwc->hrtimer, | ||
| 3999 | ns_to_ktime(period), 0, | ||
| 4000 | HRTIMER_MODE_REL, 0); | ||
| 4001 | } | ||
| 4002 | 4032 | ||
| 4003 | return 0; | 4033 | return 0; |
| 4004 | } | 4034 | } |
| 4005 | 4035 | ||
| 4006 | static void cpu_clock_perf_event_disable(struct perf_event *event) | 4036 | static void cpu_clock_perf_event_disable(struct perf_event *event) |
| 4007 | { | 4037 | { |
| 4008 | if (event->hw.sample_period) | 4038 | perf_swevent_cancel_hrtimer(event); |
| 4009 | hrtimer_cancel(&event->hw.hrtimer); | ||
| 4010 | cpu_clock_perf_event_update(event); | 4039 | cpu_clock_perf_event_update(event); |
| 4011 | } | 4040 | } |
| 4012 | 4041 | ||
| @@ -4043,22 +4072,15 @@ static int task_clock_perf_event_enable(struct perf_event *event) | |||
| 4043 | now = event->ctx->time; | 4072 | now = event->ctx->time; |
| 4044 | 4073 | ||
| 4045 | atomic64_set(&hwc->prev_count, now); | 4074 | atomic64_set(&hwc->prev_count, now); |
| 4046 | hrtimer_init(&hwc->hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL); | 4075 | |
| 4047 | hwc->hrtimer.function = perf_swevent_hrtimer; | 4076 | perf_swevent_start_hrtimer(event); |
| 4048 | if (hwc->sample_period) { | ||
| 4049 | u64 period = max_t(u64, 10000, hwc->sample_period); | ||
| 4050 | __hrtimer_start_range_ns(&hwc->hrtimer, | ||
| 4051 | ns_to_ktime(period), 0, | ||
| 4052 | HRTIMER_MODE_REL, 0); | ||
| 4053 | } | ||
| 4054 | 4077 | ||
| 4055 | return 0; | 4078 | return 0; |
| 4056 | } | 4079 | } |
| 4057 | 4080 | ||
| 4058 | static void task_clock_perf_event_disable(struct perf_event *event) | 4081 | static void task_clock_perf_event_disable(struct perf_event *event) |
| 4059 | { | 4082 | { |
| 4060 | if (event->hw.sample_period) | 4083 | perf_swevent_cancel_hrtimer(event); |
| 4061 | hrtimer_cancel(&event->hw.hrtimer); | ||
| 4062 | task_clock_perf_event_update(event, event->ctx->time); | 4084 | task_clock_perf_event_update(event, event->ctx->time); |
| 4063 | 4085 | ||
| 4064 | } | 4086 | } |
diff --git a/kernel/power/hibernate.c b/kernel/power/hibernate.c index 04b3a83d686f..04a9e90d248f 100644 --- a/kernel/power/hibernate.c +++ b/kernel/power/hibernate.c | |||
| @@ -693,21 +693,22 @@ static int software_resume(void) | |||
| 693 | /* The snapshot device should not be opened while we're running */ | 693 | /* The snapshot device should not be opened while we're running */ |
| 694 | if (!atomic_add_unless(&snapshot_device_available, -1, 0)) { | 694 | if (!atomic_add_unless(&snapshot_device_available, -1, 0)) { |
| 695 | error = -EBUSY; | 695 | error = -EBUSY; |
| 696 | swsusp_close(FMODE_READ); | ||
| 696 | goto Unlock; | 697 | goto Unlock; |
| 697 | } | 698 | } |
| 698 | 699 | ||
| 699 | pm_prepare_console(); | 700 | pm_prepare_console(); |
| 700 | error = pm_notifier_call_chain(PM_RESTORE_PREPARE); | 701 | error = pm_notifier_call_chain(PM_RESTORE_PREPARE); |
| 701 | if (error) | 702 | if (error) |
| 702 | goto Finish; | 703 | goto close_finish; |
| 703 | 704 | ||
| 704 | error = usermodehelper_disable(); | 705 | error = usermodehelper_disable(); |
| 705 | if (error) | 706 | if (error) |
| 706 | goto Finish; | 707 | goto close_finish; |
| 707 | 708 | ||
| 708 | error = create_basic_memory_bitmaps(); | 709 | error = create_basic_memory_bitmaps(); |
| 709 | if (error) | 710 | if (error) |
| 710 | goto Finish; | 711 | goto close_finish; |
| 711 | 712 | ||
| 712 | pr_debug("PM: Preparing processes for restore.\n"); | 713 | pr_debug("PM: Preparing processes for restore.\n"); |
| 713 | error = prepare_processes(); | 714 | error = prepare_processes(); |
| @@ -719,6 +720,7 @@ static int software_resume(void) | |||
| 719 | pr_debug("PM: Reading hibernation image.\n"); | 720 | pr_debug("PM: Reading hibernation image.\n"); |
| 720 | 721 | ||
| 721 | error = swsusp_read(&flags); | 722 | error = swsusp_read(&flags); |
| 723 | swsusp_close(FMODE_READ); | ||
| 722 | if (!error) | 724 | if (!error) |
| 723 | hibernation_restore(flags & SF_PLATFORM_MODE); | 725 | hibernation_restore(flags & SF_PLATFORM_MODE); |
| 724 | 726 | ||
| @@ -737,6 +739,9 @@ static int software_resume(void) | |||
| 737 | mutex_unlock(&pm_mutex); | 739 | mutex_unlock(&pm_mutex); |
| 738 | pr_debug("PM: Resume from disk failed.\n"); | 740 | pr_debug("PM: Resume from disk failed.\n"); |
| 739 | return error; | 741 | return error; |
| 742 | close_finish: | ||
| 743 | swsusp_close(FMODE_READ); | ||
| 744 | goto Finish; | ||
| 740 | } | 745 | } |
| 741 | 746 | ||
| 742 | late_initcall(software_resume); | 747 | late_initcall(software_resume); |
diff --git a/kernel/power/swap.c b/kernel/power/swap.c index b101cdc4df3f..890f6b11b1d3 100644 --- a/kernel/power/swap.c +++ b/kernel/power/swap.c | |||
| @@ -314,7 +314,6 @@ static int save_image(struct swap_map_handle *handle, | |||
| 314 | { | 314 | { |
| 315 | unsigned int m; | 315 | unsigned int m; |
| 316 | int ret; | 316 | int ret; |
| 317 | int error = 0; | ||
| 318 | int nr_pages; | 317 | int nr_pages; |
| 319 | int err2; | 318 | int err2; |
| 320 | struct bio *bio; | 319 | struct bio *bio; |
| @@ -329,26 +328,27 @@ static int save_image(struct swap_map_handle *handle, | |||
| 329 | nr_pages = 0; | 328 | nr_pages = 0; |
| 330 | bio = NULL; | 329 | bio = NULL; |
| 331 | do_gettimeofday(&start); | 330 | do_gettimeofday(&start); |
| 332 | do { | 331 | while (1) { |
| 333 | ret = snapshot_read_next(snapshot, PAGE_SIZE); | 332 | ret = snapshot_read_next(snapshot, PAGE_SIZE); |
| 334 | if (ret > 0) { | 333 | if (ret <= 0) |
| 335 | error = swap_write_page(handle, data_of(*snapshot), | 334 | break; |
| 336 | &bio); | 335 | ret = swap_write_page(handle, data_of(*snapshot), &bio); |
| 337 | if (error) | 336 | if (ret) |
| 338 | break; | 337 | break; |
| 339 | if (!(nr_pages % m)) | 338 | if (!(nr_pages % m)) |
| 340 | printk("\b\b\b\b%3d%%", nr_pages / m); | 339 | printk("\b\b\b\b%3d%%", nr_pages / m); |
| 341 | nr_pages++; | 340 | nr_pages++; |
| 342 | } | 341 | } |
| 343 | } while (ret > 0); | ||
| 344 | err2 = wait_on_bio_chain(&bio); | 342 | err2 = wait_on_bio_chain(&bio); |
| 345 | do_gettimeofday(&stop); | 343 | do_gettimeofday(&stop); |
| 346 | if (!error) | 344 | if (!ret) |
| 347 | error = err2; | 345 | ret = err2; |
| 348 | if (!error) | 346 | if (!ret) |
| 349 | printk("\b\b\b\bdone\n"); | 347 | printk("\b\b\b\bdone\n"); |
| 348 | else | ||
| 349 | printk("\n"); | ||
| 350 | swsusp_show_speed(&start, &stop, nr_to_write, "Wrote"); | 350 | swsusp_show_speed(&start, &stop, nr_to_write, "Wrote"); |
| 351 | return error; | 351 | return ret; |
| 352 | } | 352 | } |
| 353 | 353 | ||
| 354 | /** | 354 | /** |
| @@ -536,7 +536,8 @@ static int load_image(struct swap_map_handle *handle, | |||
| 536 | snapshot_write_finalize(snapshot); | 536 | snapshot_write_finalize(snapshot); |
| 537 | if (!snapshot_image_loaded(snapshot)) | 537 | if (!snapshot_image_loaded(snapshot)) |
| 538 | error = -ENODATA; | 538 | error = -ENODATA; |
| 539 | } | 539 | } else |
| 540 | printk("\n"); | ||
| 540 | swsusp_show_speed(&start, &stop, nr_to_read, "Read"); | 541 | swsusp_show_speed(&start, &stop, nr_to_read, "Read"); |
| 541 | return error; | 542 | return error; |
| 542 | } | 543 | } |
| @@ -572,8 +573,6 @@ int swsusp_read(unsigned int *flags_p) | |||
| 572 | error = load_image(&handle, &snapshot, header->pages - 1); | 573 | error = load_image(&handle, &snapshot, header->pages - 1); |
| 573 | release_swap_reader(&handle); | 574 | release_swap_reader(&handle); |
| 574 | 575 | ||
| 575 | blkdev_put(resume_bdev, FMODE_READ); | ||
| 576 | |||
| 577 | if (!error) | 576 | if (!error) |
| 578 | pr_debug("PM: Image successfully loaded\n"); | 577 | pr_debug("PM: Image successfully loaded\n"); |
| 579 | else | 578 | else |
| @@ -596,7 +595,7 @@ int swsusp_check(void) | |||
| 596 | error = bio_read_page(swsusp_resume_block, | 595 | error = bio_read_page(swsusp_resume_block, |
| 597 | swsusp_header, NULL); | 596 | swsusp_header, NULL); |
| 598 | if (error) | 597 | if (error) |
| 599 | return error; | 598 | goto put; |
| 600 | 599 | ||
| 601 | if (!memcmp(SWSUSP_SIG, swsusp_header->sig, 10)) { | 600 | if (!memcmp(SWSUSP_SIG, swsusp_header->sig, 10)) { |
| 602 | memcpy(swsusp_header->sig, swsusp_header->orig_sig, 10); | 601 | memcpy(swsusp_header->sig, swsusp_header->orig_sig, 10); |
| @@ -604,8 +603,10 @@ int swsusp_check(void) | |||
| 604 | error = bio_write_page(swsusp_resume_block, | 603 | error = bio_write_page(swsusp_resume_block, |
| 605 | swsusp_header, NULL); | 604 | swsusp_header, NULL); |
| 606 | } else { | 605 | } else { |
| 607 | return -EINVAL; | 606 | error = -EINVAL; |
| 608 | } | 607 | } |
| 608 | |||
| 609 | put: | ||
| 609 | if (error) | 610 | if (error) |
| 610 | blkdev_put(resume_bdev, FMODE_READ); | 611 | blkdev_put(resume_bdev, FMODE_READ); |
| 611 | else | 612 | else |
diff --git a/kernel/sched.c b/kernel/sched.c index a455dca884a6..28dd4f490bfc 100644 --- a/kernel/sched.c +++ b/kernel/sched.c | |||
| @@ -1992,6 +1992,38 @@ static inline void check_class_changed(struct rq *rq, struct task_struct *p, | |||
| 1992 | p->sched_class->prio_changed(rq, p, oldprio, running); | 1992 | p->sched_class->prio_changed(rq, p, oldprio, running); |
| 1993 | } | 1993 | } |
| 1994 | 1994 | ||
| 1995 | /** | ||
| 1996 | * kthread_bind - bind a just-created kthread to a cpu. | ||
| 1997 | * @k: thread created by kthread_create(). | ||
| 1998 | * @cpu: cpu (might not be online, must be possible) for @k to run on. | ||
| 1999 | * | ||
| 2000 | * Description: This function is equivalent to set_cpus_allowed(), | ||
| 2001 | * except that @cpu doesn't need to be online, and the thread must be | ||
| 2002 | * stopped (i.e., just returned from kthread_create()). | ||
| 2003 | * | ||
| 2004 | * Function lives here instead of kthread.c because it messes with | ||
| 2005 | * scheduler internals which require locking. | ||
| 2006 | */ | ||
| 2007 | void kthread_bind(struct task_struct *p, unsigned int cpu) | ||
| 2008 | { | ||
| 2009 | struct rq *rq = cpu_rq(cpu); | ||
| 2010 | unsigned long flags; | ||
| 2011 | |||
| 2012 | /* Must have done schedule() in kthread() before we set_task_cpu */ | ||
| 2013 | if (!wait_task_inactive(p, TASK_UNINTERRUPTIBLE)) { | ||
| 2014 | WARN_ON(1); | ||
| 2015 | return; | ||
| 2016 | } | ||
| 2017 | |||
| 2018 | spin_lock_irqsave(&rq->lock, flags); | ||
| 2019 | set_task_cpu(p, cpu); | ||
| 2020 | p->cpus_allowed = cpumask_of_cpu(cpu); | ||
| 2021 | p->rt.nr_cpus_allowed = 1; | ||
| 2022 | p->flags |= PF_THREAD_BOUND; | ||
| 2023 | spin_unlock_irqrestore(&rq->lock, flags); | ||
| 2024 | } | ||
| 2025 | EXPORT_SYMBOL(kthread_bind); | ||
| 2026 | |||
| 1995 | #ifdef CONFIG_SMP | 2027 | #ifdef CONFIG_SMP |
| 1996 | /* | 2028 | /* |
| 1997 | * Is this task likely cache-hot: | 2029 | * Is this task likely cache-hot: |
| @@ -2004,7 +2036,7 @@ task_hot(struct task_struct *p, u64 now, struct sched_domain *sd) | |||
| 2004 | /* | 2036 | /* |
| 2005 | * Buddy candidates are cache hot: | 2037 | * Buddy candidates are cache hot: |
| 2006 | */ | 2038 | */ |
| 2007 | if (sched_feat(CACHE_HOT_BUDDY) && | 2039 | if (sched_feat(CACHE_HOT_BUDDY) && this_rq()->nr_running && |
| 2008 | (&p->se == cfs_rq_of(&p->se)->next || | 2040 | (&p->se == cfs_rq_of(&p->se)->next || |
| 2009 | &p->se == cfs_rq_of(&p->se)->last)) | 2041 | &p->se == cfs_rq_of(&p->se)->last)) |
| 2010 | return 1; | 2042 | return 1; |
| @@ -9532,13 +9564,13 @@ void __init sched_init(void) | |||
| 9532 | current->sched_class = &fair_sched_class; | 9564 | current->sched_class = &fair_sched_class; |
| 9533 | 9565 | ||
| 9534 | /* Allocate the nohz_cpu_mask if CONFIG_CPUMASK_OFFSTACK */ | 9566 | /* Allocate the nohz_cpu_mask if CONFIG_CPUMASK_OFFSTACK */ |
| 9535 | alloc_cpumask_var(&nohz_cpu_mask, GFP_NOWAIT); | 9567 | zalloc_cpumask_var(&nohz_cpu_mask, GFP_NOWAIT); |
| 9536 | #ifdef CONFIG_SMP | 9568 | #ifdef CONFIG_SMP |
| 9537 | #ifdef CONFIG_NO_HZ | 9569 | #ifdef CONFIG_NO_HZ |
| 9538 | alloc_cpumask_var(&nohz.cpu_mask, GFP_NOWAIT); | 9570 | zalloc_cpumask_var(&nohz.cpu_mask, GFP_NOWAIT); |
| 9539 | alloc_cpumask_var(&nohz.ilb_grp_nohz_mask, GFP_NOWAIT); | 9571 | alloc_cpumask_var(&nohz.ilb_grp_nohz_mask, GFP_NOWAIT); |
| 9540 | #endif | 9572 | #endif |
| 9541 | alloc_cpumask_var(&cpu_isolated_map, GFP_NOWAIT); | 9573 | zalloc_cpumask_var(&cpu_isolated_map, GFP_NOWAIT); |
| 9542 | #endif /* SMP */ | 9574 | #endif /* SMP */ |
| 9543 | 9575 | ||
| 9544 | perf_event_init(); | 9576 | perf_event_init(); |
diff --git a/kernel/sched_fair.c b/kernel/sched_fair.c index c32c3e643daa..37087a7fac22 100644 --- a/kernel/sched_fair.c +++ b/kernel/sched_fair.c | |||
| @@ -822,6 +822,26 @@ check_preempt_tick(struct cfs_rq *cfs_rq, struct sched_entity *curr) | |||
| 822 | * re-elected due to buddy favours. | 822 | * re-elected due to buddy favours. |
| 823 | */ | 823 | */ |
| 824 | clear_buddies(cfs_rq, curr); | 824 | clear_buddies(cfs_rq, curr); |
| 825 | return; | ||
| 826 | } | ||
| 827 | |||
| 828 | /* | ||
| 829 | * Ensure that a task that missed wakeup preemption by a | ||
| 830 | * narrow margin doesn't have to wait for a full slice. | ||
| 831 | * This also mitigates buddy induced latencies under load. | ||
| 832 | */ | ||
| 833 | if (!sched_feat(WAKEUP_PREEMPT)) | ||
| 834 | return; | ||
| 835 | |||
| 836 | if (delta_exec < sysctl_sched_min_granularity) | ||
| 837 | return; | ||
| 838 | |||
| 839 | if (cfs_rq->nr_running > 1) { | ||
| 840 | struct sched_entity *se = __pick_next_entity(cfs_rq); | ||
| 841 | s64 delta = curr->vruntime - se->vruntime; | ||
| 842 | |||
| 843 | if (delta > ideal_runtime) | ||
| 844 | resched_task(rq_of(cfs_rq)->curr); | ||
| 825 | } | 845 | } |
| 826 | } | 846 | } |
| 827 | 847 | ||
| @@ -861,21 +881,18 @@ wakeup_preempt_entity(struct sched_entity *curr, struct sched_entity *se); | |||
| 861 | static struct sched_entity *pick_next_entity(struct cfs_rq *cfs_rq) | 881 | static struct sched_entity *pick_next_entity(struct cfs_rq *cfs_rq) |
| 862 | { | 882 | { |
| 863 | struct sched_entity *se = __pick_next_entity(cfs_rq); | 883 | struct sched_entity *se = __pick_next_entity(cfs_rq); |
| 864 | struct sched_entity *buddy; | 884 | struct sched_entity *left = se; |
| 865 | 885 | ||
| 866 | if (cfs_rq->next) { | 886 | if (cfs_rq->next && wakeup_preempt_entity(cfs_rq->next, left) < 1) |
| 867 | buddy = cfs_rq->next; | 887 | se = cfs_rq->next; |
| 868 | cfs_rq->next = NULL; | ||
| 869 | if (wakeup_preempt_entity(buddy, se) < 1) | ||
| 870 | return buddy; | ||
| 871 | } | ||
| 872 | 888 | ||
| 873 | if (cfs_rq->last) { | 889 | /* |
| 874 | buddy = cfs_rq->last; | 890 | * Prefer last buddy, try to return the CPU to a preempted task. |
| 875 | cfs_rq->last = NULL; | 891 | */ |
| 876 | if (wakeup_preempt_entity(buddy, se) < 1) | 892 | if (cfs_rq->last && wakeup_preempt_entity(cfs_rq->last, left) < 1) |
| 877 | return buddy; | 893 | se = cfs_rq->last; |
| 878 | } | 894 | |
| 895 | clear_buddies(cfs_rq, se); | ||
| 879 | 896 | ||
| 880 | return se; | 897 | return se; |
| 881 | } | 898 | } |
| @@ -1577,6 +1594,7 @@ static void check_preempt_wakeup(struct rq *rq, struct task_struct *p, int wake_ | |||
| 1577 | struct sched_entity *se = &curr->se, *pse = &p->se; | 1594 | struct sched_entity *se = &curr->se, *pse = &p->se; |
| 1578 | struct cfs_rq *cfs_rq = task_cfs_rq(curr); | 1595 | struct cfs_rq *cfs_rq = task_cfs_rq(curr); |
| 1579 | int sync = wake_flags & WF_SYNC; | 1596 | int sync = wake_flags & WF_SYNC; |
| 1597 | int scale = cfs_rq->nr_running >= sched_nr_latency; | ||
| 1580 | 1598 | ||
| 1581 | update_curr(cfs_rq); | 1599 | update_curr(cfs_rq); |
| 1582 | 1600 | ||
| @@ -1591,18 +1609,7 @@ static void check_preempt_wakeup(struct rq *rq, struct task_struct *p, int wake_ | |||
| 1591 | if (unlikely(se == pse)) | 1609 | if (unlikely(se == pse)) |
| 1592 | return; | 1610 | return; |
| 1593 | 1611 | ||
| 1594 | /* | 1612 | if (sched_feat(NEXT_BUDDY) && scale && !(wake_flags & WF_FORK)) |
| 1595 | * Only set the backward buddy when the current task is still on the | ||
| 1596 | * rq. This can happen when a wakeup gets interleaved with schedule on | ||
| 1597 | * the ->pre_schedule() or idle_balance() point, either of which can | ||
| 1598 | * drop the rq lock. | ||
| 1599 | * | ||
| 1600 | * Also, during early boot the idle thread is in the fair class, for | ||
| 1601 | * obvious reasons its a bad idea to schedule back to the idle thread. | ||
| 1602 | */ | ||
| 1603 | if (sched_feat(LAST_BUDDY) && likely(se->on_rq && curr != rq->idle)) | ||
| 1604 | set_last_buddy(se); | ||
| 1605 | if (sched_feat(NEXT_BUDDY) && !(wake_flags & WF_FORK)) | ||
| 1606 | set_next_buddy(pse); | 1613 | set_next_buddy(pse); |
| 1607 | 1614 | ||
| 1608 | /* | 1615 | /* |
| @@ -1648,8 +1655,22 @@ static void check_preempt_wakeup(struct rq *rq, struct task_struct *p, int wake_ | |||
| 1648 | 1655 | ||
| 1649 | BUG_ON(!pse); | 1656 | BUG_ON(!pse); |
| 1650 | 1657 | ||
| 1651 | if (wakeup_preempt_entity(se, pse) == 1) | 1658 | if (wakeup_preempt_entity(se, pse) == 1) { |
| 1652 | resched_task(curr); | 1659 | resched_task(curr); |
| 1660 | /* | ||
| 1661 | * Only set the backward buddy when the current task is still | ||
| 1662 | * on the rq. This can happen when a wakeup gets interleaved | ||
| 1663 | * with schedule on the ->pre_schedule() or idle_balance() | ||
| 1664 | * point, either of which can * drop the rq lock. | ||
| 1665 | * | ||
| 1666 | * Also, during early boot the idle thread is in the fair class, | ||
| 1667 | * for obvious reasons its a bad idea to schedule back to it. | ||
| 1668 | */ | ||
| 1669 | if (unlikely(!se->on_rq || curr == rq->idle)) | ||
| 1670 | return; | ||
| 1671 | if (sched_feat(LAST_BUDDY) && scale && entity_is_task(se)) | ||
| 1672 | set_last_buddy(se); | ||
| 1673 | } | ||
| 1653 | } | 1674 | } |
| 1654 | 1675 | ||
| 1655 | static struct task_struct *pick_next_task_fair(struct rq *rq) | 1676 | static struct task_struct *pick_next_task_fair(struct rq *rq) |
diff --git a/kernel/trace/ftrace.c b/kernel/trace/ftrace.c index 37ba67e33265..6dc4e5ef7a01 100644 --- a/kernel/trace/ftrace.c +++ b/kernel/trace/ftrace.c | |||
| @@ -740,7 +740,7 @@ ftrace_profile_write(struct file *filp, const char __user *ubuf, | |||
| 740 | out: | 740 | out: |
| 741 | mutex_unlock(&ftrace_profile_lock); | 741 | mutex_unlock(&ftrace_profile_lock); |
| 742 | 742 | ||
| 743 | filp->f_pos += cnt; | 743 | *ppos += cnt; |
| 744 | 744 | ||
| 745 | return cnt; | 745 | return cnt; |
| 746 | } | 746 | } |
| @@ -2222,15 +2222,15 @@ ftrace_regex_write(struct file *file, const char __user *ubuf, | |||
| 2222 | ret = ftrace_process_regex(parser->buffer, | 2222 | ret = ftrace_process_regex(parser->buffer, |
| 2223 | parser->idx, enable); | 2223 | parser->idx, enable); |
| 2224 | if (ret) | 2224 | if (ret) |
| 2225 | goto out; | 2225 | goto out_unlock; |
| 2226 | 2226 | ||
| 2227 | trace_parser_clear(parser); | 2227 | trace_parser_clear(parser); |
| 2228 | } | 2228 | } |
| 2229 | 2229 | ||
| 2230 | ret = read; | 2230 | ret = read; |
| 2231 | 2231 | out_unlock: | |
| 2232 | mutex_unlock(&ftrace_regex_lock); | 2232 | mutex_unlock(&ftrace_regex_lock); |
| 2233 | out: | 2233 | |
| 2234 | return ret; | 2234 | return ret; |
| 2235 | } | 2235 | } |
| 2236 | 2236 | ||
diff --git a/kernel/trace/ring_buffer.c b/kernel/trace/ring_buffer.c index d4ff01970547..5dd017fea6f5 100644 --- a/kernel/trace/ring_buffer.c +++ b/kernel/trace/ring_buffer.c | |||
| @@ -483,7 +483,7 @@ struct ring_buffer_iter { | |||
| 483 | /* Up this if you want to test the TIME_EXTENTS and normalization */ | 483 | /* Up this if you want to test the TIME_EXTENTS and normalization */ |
| 484 | #define DEBUG_SHIFT 0 | 484 | #define DEBUG_SHIFT 0 |
| 485 | 485 | ||
| 486 | static inline u64 rb_time_stamp(struct ring_buffer *buffer, int cpu) | 486 | static inline u64 rb_time_stamp(struct ring_buffer *buffer) |
| 487 | { | 487 | { |
| 488 | /* shift to debug/test normalization and TIME_EXTENTS */ | 488 | /* shift to debug/test normalization and TIME_EXTENTS */ |
| 489 | return buffer->clock() << DEBUG_SHIFT; | 489 | return buffer->clock() << DEBUG_SHIFT; |
| @@ -494,7 +494,7 @@ u64 ring_buffer_time_stamp(struct ring_buffer *buffer, int cpu) | |||
| 494 | u64 time; | 494 | u64 time; |
| 495 | 495 | ||
| 496 | preempt_disable_notrace(); | 496 | preempt_disable_notrace(); |
| 497 | time = rb_time_stamp(buffer, cpu); | 497 | time = rb_time_stamp(buffer); |
| 498 | preempt_enable_no_resched_notrace(); | 498 | preempt_enable_no_resched_notrace(); |
| 499 | 499 | ||
| 500 | return time; | 500 | return time; |
| @@ -599,7 +599,7 @@ static struct list_head *rb_list_head(struct list_head *list) | |||
| 599 | } | 599 | } |
| 600 | 600 | ||
| 601 | /* | 601 | /* |
| 602 | * rb_is_head_page - test if the give page is the head page | 602 | * rb_is_head_page - test if the given page is the head page |
| 603 | * | 603 | * |
| 604 | * Because the reader may move the head_page pointer, we can | 604 | * Because the reader may move the head_page pointer, we can |
| 605 | * not trust what the head page is (it may be pointing to | 605 | * not trust what the head page is (it may be pointing to |
| @@ -1193,6 +1193,7 @@ rb_remove_pages(struct ring_buffer_per_cpu *cpu_buffer, unsigned nr_pages) | |||
| 1193 | atomic_inc(&cpu_buffer->record_disabled); | 1193 | atomic_inc(&cpu_buffer->record_disabled); |
| 1194 | synchronize_sched(); | 1194 | synchronize_sched(); |
| 1195 | 1195 | ||
| 1196 | spin_lock_irq(&cpu_buffer->reader_lock); | ||
| 1196 | rb_head_page_deactivate(cpu_buffer); | 1197 | rb_head_page_deactivate(cpu_buffer); |
| 1197 | 1198 | ||
| 1198 | for (i = 0; i < nr_pages; i++) { | 1199 | for (i = 0; i < nr_pages; i++) { |
| @@ -1207,6 +1208,7 @@ rb_remove_pages(struct ring_buffer_per_cpu *cpu_buffer, unsigned nr_pages) | |||
| 1207 | return; | 1208 | return; |
| 1208 | 1209 | ||
| 1209 | rb_reset_cpu(cpu_buffer); | 1210 | rb_reset_cpu(cpu_buffer); |
| 1211 | spin_unlock_irq(&cpu_buffer->reader_lock); | ||
| 1210 | 1212 | ||
| 1211 | rb_check_pages(cpu_buffer); | 1213 | rb_check_pages(cpu_buffer); |
| 1212 | 1214 | ||
| @@ -1868,7 +1870,7 @@ rb_move_tail(struct ring_buffer_per_cpu *cpu_buffer, | |||
| 1868 | * Nested commits always have zero deltas, so | 1870 | * Nested commits always have zero deltas, so |
| 1869 | * just reread the time stamp | 1871 | * just reread the time stamp |
| 1870 | */ | 1872 | */ |
| 1871 | *ts = rb_time_stamp(buffer, cpu_buffer->cpu); | 1873 | *ts = rb_time_stamp(buffer); |
| 1872 | next_page->page->time_stamp = *ts; | 1874 | next_page->page->time_stamp = *ts; |
| 1873 | } | 1875 | } |
| 1874 | 1876 | ||
| @@ -2111,7 +2113,7 @@ rb_reserve_next_event(struct ring_buffer *buffer, | |||
| 2111 | if (RB_WARN_ON(cpu_buffer, ++nr_loops > 1000)) | 2113 | if (RB_WARN_ON(cpu_buffer, ++nr_loops > 1000)) |
| 2112 | goto out_fail; | 2114 | goto out_fail; |
| 2113 | 2115 | ||
| 2114 | ts = rb_time_stamp(cpu_buffer->buffer, cpu_buffer->cpu); | 2116 | ts = rb_time_stamp(cpu_buffer->buffer); |
| 2115 | 2117 | ||
| 2116 | /* | 2118 | /* |
| 2117 | * Only the first commit can update the timestamp. | 2119 | * Only the first commit can update the timestamp. |
| @@ -2681,7 +2683,7 @@ unsigned long ring_buffer_entries(struct ring_buffer *buffer) | |||
| 2681 | EXPORT_SYMBOL_GPL(ring_buffer_entries); | 2683 | EXPORT_SYMBOL_GPL(ring_buffer_entries); |
| 2682 | 2684 | ||
| 2683 | /** | 2685 | /** |
| 2684 | * ring_buffer_overrun_cpu - get the number of overruns in buffer | 2686 | * ring_buffer_overruns - get the number of overruns in buffer |
| 2685 | * @buffer: The ring buffer | 2687 | * @buffer: The ring buffer |
| 2686 | * | 2688 | * |
| 2687 | * Returns the total number of overruns in the ring buffer | 2689 | * Returns the total number of overruns in the ring buffer |
diff --git a/kernel/trace/trace.c b/kernel/trace/trace.c index c820b0310a12..b20d3ec75de9 100644 --- a/kernel/trace/trace.c +++ b/kernel/trace/trace.c | |||
| @@ -2440,7 +2440,7 @@ tracing_trace_options_write(struct file *filp, const char __user *ubuf, | |||
| 2440 | return ret; | 2440 | return ret; |
| 2441 | } | 2441 | } |
| 2442 | 2442 | ||
| 2443 | filp->f_pos += cnt; | 2443 | *ppos += cnt; |
| 2444 | 2444 | ||
| 2445 | return cnt; | 2445 | return cnt; |
| 2446 | } | 2446 | } |
| @@ -2582,7 +2582,7 @@ tracing_ctrl_write(struct file *filp, const char __user *ubuf, | |||
| 2582 | } | 2582 | } |
| 2583 | mutex_unlock(&trace_types_lock); | 2583 | mutex_unlock(&trace_types_lock); |
| 2584 | 2584 | ||
| 2585 | filp->f_pos += cnt; | 2585 | *ppos += cnt; |
| 2586 | 2586 | ||
| 2587 | return cnt; | 2587 | return cnt; |
| 2588 | } | 2588 | } |
| @@ -2764,7 +2764,7 @@ tracing_set_trace_write(struct file *filp, const char __user *ubuf, | |||
| 2764 | if (err) | 2764 | if (err) |
| 2765 | return err; | 2765 | return err; |
| 2766 | 2766 | ||
| 2767 | filp->f_pos += ret; | 2767 | *ppos += ret; |
| 2768 | 2768 | ||
| 2769 | return ret; | 2769 | return ret; |
| 2770 | } | 2770 | } |
| @@ -3299,7 +3299,7 @@ tracing_entries_write(struct file *filp, const char __user *ubuf, | |||
| 3299 | } | 3299 | } |
| 3300 | } | 3300 | } |
| 3301 | 3301 | ||
| 3302 | filp->f_pos += cnt; | 3302 | *ppos += cnt; |
| 3303 | 3303 | ||
| 3304 | /* If check pages failed, return ENOMEM */ | 3304 | /* If check pages failed, return ENOMEM */ |
| 3305 | if (tracing_disabled) | 3305 | if (tracing_disabled) |
diff --git a/kernel/trace/trace_output.c b/kernel/trace/trace_output.c index ed17565826b0..b6c12c6a1bcd 100644 --- a/kernel/trace/trace_output.c +++ b/kernel/trace/trace_output.c | |||
| @@ -69,6 +69,9 @@ enum print_line_t trace_print_printk_msg_only(struct trace_iterator *iter) | |||
| 69 | * @s: trace sequence descriptor | 69 | * @s: trace sequence descriptor |
| 70 | * @fmt: printf format string | 70 | * @fmt: printf format string |
| 71 | * | 71 | * |
| 72 | * It returns 0 if the trace oversizes the buffer's free | ||
| 73 | * space, 1 otherwise. | ||
| 74 | * | ||
| 72 | * The tracer may use either sequence operations or its own | 75 | * The tracer may use either sequence operations or its own |
| 73 | * copy to user routines. To simplify formating of a trace | 76 | * copy to user routines. To simplify formating of a trace |
| 74 | * trace_seq_printf is used to store strings into a special | 77 | * trace_seq_printf is used to store strings into a special |
| @@ -95,7 +98,7 @@ trace_seq_printf(struct trace_seq *s, const char *fmt, ...) | |||
| 95 | 98 | ||
| 96 | s->len += ret; | 99 | s->len += ret; |
| 97 | 100 | ||
| 98 | return len; | 101 | return 1; |
| 99 | } | 102 | } |
| 100 | EXPORT_SYMBOL_GPL(trace_seq_printf); | 103 | EXPORT_SYMBOL_GPL(trace_seq_printf); |
| 101 | 104 | ||
diff --git a/lib/dma-debug.c b/lib/dma-debug.c index 58a9f9fc609a..ce6b7eabf674 100644 --- a/lib/dma-debug.c +++ b/lib/dma-debug.c | |||
| @@ -819,9 +819,11 @@ static void check_unmap(struct dma_debug_entry *ref) | |||
| 819 | err_printk(ref->dev, entry, "DMA-API: device driver frees " | 819 | err_printk(ref->dev, entry, "DMA-API: device driver frees " |
| 820 | "DMA memory with different CPU address " | 820 | "DMA memory with different CPU address " |
| 821 | "[device address=0x%016llx] [size=%llu bytes] " | 821 | "[device address=0x%016llx] [size=%llu bytes] " |
| 822 | "[cpu alloc address=%p] [cpu free address=%p]", | 822 | "[cpu alloc address=0x%016llx] " |
| 823 | "[cpu free address=0x%016llx]", | ||
| 823 | ref->dev_addr, ref->size, | 824 | ref->dev_addr, ref->size, |
| 824 | (void *)entry->paddr, (void *)ref->paddr); | 825 | (unsigned long long)entry->paddr, |
| 826 | (unsigned long long)ref->paddr); | ||
| 825 | } | 827 | } |
| 826 | 828 | ||
| 827 | if (ref->sg_call_ents && ref->type == dma_debug_sg && | 829 | if (ref->sg_call_ents && ref->type == dma_debug_sg && |
diff --git a/mm/backing-dev.c b/mm/backing-dev.c index 1065b715ef64..11aee09dd2a6 100644 --- a/mm/backing-dev.c +++ b/mm/backing-dev.c | |||
| @@ -628,6 +628,8 @@ static void bdi_prune_sb(struct backing_dev_info *bdi) | |||
| 628 | void bdi_unregister(struct backing_dev_info *bdi) | 628 | void bdi_unregister(struct backing_dev_info *bdi) |
| 629 | { | 629 | { |
| 630 | if (bdi->dev) { | 630 | if (bdi->dev) { |
| 631 | bdi_prune_sb(bdi); | ||
| 632 | |||
| 631 | if (!bdi_cap_flush_forker(bdi)) | 633 | if (!bdi_cap_flush_forker(bdi)) |
| 632 | bdi_wb_shutdown(bdi); | 634 | bdi_wb_shutdown(bdi); |
| 633 | bdi_debug_unregister(bdi); | 635 | bdi_debug_unregister(bdi); |
| @@ -697,7 +699,6 @@ void bdi_destroy(struct backing_dev_info *bdi) | |||
| 697 | spin_unlock(&inode_lock); | 699 | spin_unlock(&inode_lock); |
| 698 | } | 700 | } |
| 699 | 701 | ||
| 700 | bdi_prune_sb(bdi); | ||
| 701 | bdi_unregister(bdi); | 702 | bdi_unregister(bdi); |
| 702 | 703 | ||
| 703 | for (i = 0; i < NR_BDI_STAT_ITEMS; i++) | 704 | for (i = 0; i < NR_BDI_STAT_ITEMS; i++) |
diff --git a/mm/nommu.c b/mm/nommu.c index 5189b5aed8c0..9876fa0c3ad3 100644 --- a/mm/nommu.c +++ b/mm/nommu.c | |||
| @@ -1362,9 +1362,11 @@ share: | |||
| 1362 | error_just_free: | 1362 | error_just_free: |
| 1363 | up_write(&nommu_region_sem); | 1363 | up_write(&nommu_region_sem); |
| 1364 | error: | 1364 | error: |
| 1365 | fput(region->vm_file); | 1365 | if (region->vm_file) |
| 1366 | fput(region->vm_file); | ||
| 1366 | kmem_cache_free(vm_region_jar, region); | 1367 | kmem_cache_free(vm_region_jar, region); |
| 1367 | fput(vma->vm_file); | 1368 | if (vma->vm_file) |
| 1369 | fput(vma->vm_file); | ||
| 1368 | if (vma->vm_flags & VM_EXECUTABLE) | 1370 | if (vma->vm_flags & VM_EXECUTABLE) |
| 1369 | removed_exe_file_vma(vma->vm_mm); | 1371 | removed_exe_file_vma(vma->vm_mm); |
| 1370 | kmem_cache_free(vm_area_cachep, vma); | 1372 | kmem_cache_free(vm_area_cachep, vma); |
diff --git a/mm/swapfile.c b/mm/swapfile.c index a1bc6b9af9a2..9c590eef7912 100644 --- a/mm/swapfile.c +++ b/mm/swapfile.c | |||
| @@ -1151,8 +1151,7 @@ static int try_to_unuse(unsigned int type) | |||
| 1151 | } else | 1151 | } else |
| 1152 | retval = unuse_mm(mm, entry, page); | 1152 | retval = unuse_mm(mm, entry, page); |
| 1153 | 1153 | ||
| 1154 | if (set_start_mm && | 1154 | if (set_start_mm && *swap_map < swcount) { |
| 1155 | swap_count(*swap_map) < swcount) { | ||
| 1156 | mmput(new_start_mm); | 1155 | mmput(new_start_mm); |
| 1157 | atomic_inc(&mm->mm_users); | 1156 | atomic_inc(&mm->mm_users); |
| 1158 | new_start_mm = mm; | 1157 | new_start_mm = mm; |
diff --git a/net/9p/client.c b/net/9p/client.c index 5bf5f227dbe0..8af95b2dddd6 100644 --- a/net/9p/client.c +++ b/net/9p/client.c | |||
| @@ -582,11 +582,9 @@ static struct p9_fid *p9_fid_create(struct p9_client *clnt) | |||
| 582 | 582 | ||
| 583 | memset(&fid->qid, 0, sizeof(struct p9_qid)); | 583 | memset(&fid->qid, 0, sizeof(struct p9_qid)); |
| 584 | fid->mode = -1; | 584 | fid->mode = -1; |
| 585 | fid->rdir_fpos = 0; | ||
| 586 | fid->uid = current_fsuid(); | 585 | fid->uid = current_fsuid(); |
| 587 | fid->clnt = clnt; | 586 | fid->clnt = clnt; |
| 588 | fid->aux = NULL; | 587 | fid->rdir = NULL; |
| 589 | |||
| 590 | spin_lock_irqsave(&clnt->lock, flags); | 588 | spin_lock_irqsave(&clnt->lock, flags); |
| 591 | list_add(&fid->flist, &clnt->fidlist); | 589 | list_add(&fid->flist, &clnt->fidlist); |
| 592 | spin_unlock_irqrestore(&clnt->lock, flags); | 590 | spin_unlock_irqrestore(&clnt->lock, flags); |
| @@ -609,6 +607,7 @@ static void p9_fid_destroy(struct p9_fid *fid) | |||
| 609 | spin_lock_irqsave(&clnt->lock, flags); | 607 | spin_lock_irqsave(&clnt->lock, flags); |
| 610 | list_del(&fid->flist); | 608 | list_del(&fid->flist); |
| 611 | spin_unlock_irqrestore(&clnt->lock, flags); | 609 | spin_unlock_irqrestore(&clnt->lock, flags); |
| 610 | kfree(fid->rdir); | ||
| 612 | kfree(fid); | 611 | kfree(fid); |
| 613 | } | 612 | } |
| 614 | 613 | ||
diff --git a/net/core/datagram.c b/net/core/datagram.c index 1c6cf3a1a4f6..4ade3011bb3c 100644 --- a/net/core/datagram.c +++ b/net/core/datagram.c | |||
| @@ -224,6 +224,15 @@ void skb_free_datagram(struct sock *sk, struct sk_buff *skb) | |||
| 224 | consume_skb(skb); | 224 | consume_skb(skb); |
| 225 | sk_mem_reclaim_partial(sk); | 225 | sk_mem_reclaim_partial(sk); |
| 226 | } | 226 | } |
| 227 | EXPORT_SYMBOL(skb_free_datagram); | ||
| 228 | |||
| 229 | void skb_free_datagram_locked(struct sock *sk, struct sk_buff *skb) | ||
| 230 | { | ||
| 231 | lock_sock(sk); | ||
| 232 | skb_free_datagram(sk, skb); | ||
| 233 | release_sock(sk); | ||
| 234 | } | ||
| 235 | EXPORT_SYMBOL(skb_free_datagram_locked); | ||
| 227 | 236 | ||
| 228 | /** | 237 | /** |
| 229 | * skb_kill_datagram - Free a datagram skbuff forcibly | 238 | * skb_kill_datagram - Free a datagram skbuff forcibly |
| @@ -752,5 +761,4 @@ unsigned int datagram_poll(struct file *file, struct socket *sock, | |||
| 752 | EXPORT_SYMBOL(datagram_poll); | 761 | EXPORT_SYMBOL(datagram_poll); |
| 753 | EXPORT_SYMBOL(skb_copy_and_csum_datagram_iovec); | 762 | EXPORT_SYMBOL(skb_copy_and_csum_datagram_iovec); |
| 754 | EXPORT_SYMBOL(skb_copy_datagram_iovec); | 763 | EXPORT_SYMBOL(skb_copy_datagram_iovec); |
| 755 | EXPORT_SYMBOL(skb_free_datagram); | ||
| 756 | EXPORT_SYMBOL(skb_recv_datagram); | 764 | EXPORT_SYMBOL(skb_recv_datagram); |
diff --git a/net/ipv4/fib_frontend.c b/net/ipv4/fib_frontend.c index e2f950592566..aa00398be80e 100644 --- a/net/ipv4/fib_frontend.c +++ b/net/ipv4/fib_frontend.c | |||
| @@ -229,14 +229,17 @@ unsigned int inet_dev_addr_type(struct net *net, const struct net_device *dev, | |||
| 229 | */ | 229 | */ |
| 230 | 230 | ||
| 231 | int fib_validate_source(__be32 src, __be32 dst, u8 tos, int oif, | 231 | int fib_validate_source(__be32 src, __be32 dst, u8 tos, int oif, |
| 232 | struct net_device *dev, __be32 *spec_dst, u32 *itag) | 232 | struct net_device *dev, __be32 *spec_dst, |
| 233 | u32 *itag, u32 mark) | ||
| 233 | { | 234 | { |
| 234 | struct in_device *in_dev; | 235 | struct in_device *in_dev; |
| 235 | struct flowi fl = { .nl_u = { .ip4_u = | 236 | struct flowi fl = { .nl_u = { .ip4_u = |
| 236 | { .daddr = src, | 237 | { .daddr = src, |
| 237 | .saddr = dst, | 238 | .saddr = dst, |
| 238 | .tos = tos } }, | 239 | .tos = tos } }, |
| 240 | .mark = mark, | ||
| 239 | .iif = oif }; | 241 | .iif = oif }; |
| 242 | |||
| 240 | struct fib_result res; | 243 | struct fib_result res; |
| 241 | int no_addr, rpf; | 244 | int no_addr, rpf; |
| 242 | int ret; | 245 | int ret; |
diff --git a/net/ipv4/ip_gre.c b/net/ipv4/ip_gre.c index 41ada9904d31..143333852624 100644 --- a/net/ipv4/ip_gre.c +++ b/net/ipv4/ip_gre.c | |||
| @@ -1464,7 +1464,7 @@ static void ipgre_tap_setup(struct net_device *dev) | |||
| 1464 | 1464 | ||
| 1465 | ether_setup(dev); | 1465 | ether_setup(dev); |
| 1466 | 1466 | ||
| 1467 | dev->netdev_ops = &ipgre_netdev_ops; | 1467 | dev->netdev_ops = &ipgre_tap_netdev_ops; |
| 1468 | dev->destructor = free_netdev; | 1468 | dev->destructor = free_netdev; |
| 1469 | 1469 | ||
| 1470 | dev->iflink = 0; | 1470 | dev->iflink = 0; |
| @@ -1525,25 +1525,29 @@ static int ipgre_changelink(struct net_device *dev, struct nlattr *tb[], | |||
| 1525 | if (t->dev != dev) | 1525 | if (t->dev != dev) |
| 1526 | return -EEXIST; | 1526 | return -EEXIST; |
| 1527 | } else { | 1527 | } else { |
| 1528 | unsigned nflags = 0; | ||
| 1529 | |||
| 1530 | t = nt; | 1528 | t = nt; |
| 1531 | 1529 | ||
| 1532 | if (ipv4_is_multicast(p.iph.daddr)) | 1530 | if (dev->type != ARPHRD_ETHER) { |
| 1533 | nflags = IFF_BROADCAST; | 1531 | unsigned nflags = 0; |
| 1534 | else if (p.iph.daddr) | ||
| 1535 | nflags = IFF_POINTOPOINT; | ||
| 1536 | 1532 | ||
| 1537 | if ((dev->flags ^ nflags) & | 1533 | if (ipv4_is_multicast(p.iph.daddr)) |
| 1538 | (IFF_POINTOPOINT | IFF_BROADCAST)) | 1534 | nflags = IFF_BROADCAST; |
| 1539 | return -EINVAL; | 1535 | else if (p.iph.daddr) |
| 1536 | nflags = IFF_POINTOPOINT; | ||
| 1537 | |||
| 1538 | if ((dev->flags ^ nflags) & | ||
| 1539 | (IFF_POINTOPOINT | IFF_BROADCAST)) | ||
| 1540 | return -EINVAL; | ||
| 1541 | } | ||
| 1540 | 1542 | ||
| 1541 | ipgre_tunnel_unlink(ign, t); | 1543 | ipgre_tunnel_unlink(ign, t); |
| 1542 | t->parms.iph.saddr = p.iph.saddr; | 1544 | t->parms.iph.saddr = p.iph.saddr; |
| 1543 | t->parms.iph.daddr = p.iph.daddr; | 1545 | t->parms.iph.daddr = p.iph.daddr; |
| 1544 | t->parms.i_key = p.i_key; | 1546 | t->parms.i_key = p.i_key; |
| 1545 | memcpy(dev->dev_addr, &p.iph.saddr, 4); | 1547 | if (dev->type != ARPHRD_ETHER) { |
| 1546 | memcpy(dev->broadcast, &p.iph.daddr, 4); | 1548 | memcpy(dev->dev_addr, &p.iph.saddr, 4); |
| 1549 | memcpy(dev->broadcast, &p.iph.daddr, 4); | ||
| 1550 | } | ||
| 1547 | ipgre_tunnel_link(ign, t); | 1551 | ipgre_tunnel_link(ign, t); |
| 1548 | netdev_state_change(dev); | 1552 | netdev_state_change(dev); |
| 1549 | } | 1553 | } |
diff --git a/net/ipv4/route.c b/net/ipv4/route.c index bb4199252026..5b1050a5d874 100644 --- a/net/ipv4/route.c +++ b/net/ipv4/route.c | |||
| @@ -1854,7 +1854,7 @@ static int ip_route_input_mc(struct sk_buff *skb, __be32 daddr, __be32 saddr, | |||
| 1854 | goto e_inval; | 1854 | goto e_inval; |
| 1855 | spec_dst = inet_select_addr(dev, 0, RT_SCOPE_LINK); | 1855 | spec_dst = inet_select_addr(dev, 0, RT_SCOPE_LINK); |
| 1856 | } else if (fib_validate_source(saddr, 0, tos, 0, | 1856 | } else if (fib_validate_source(saddr, 0, tos, 0, |
| 1857 | dev, &spec_dst, &itag) < 0) | 1857 | dev, &spec_dst, &itag, 0) < 0) |
| 1858 | goto e_inval; | 1858 | goto e_inval; |
| 1859 | 1859 | ||
| 1860 | rth = dst_alloc(&ipv4_dst_ops); | 1860 | rth = dst_alloc(&ipv4_dst_ops); |
| @@ -1967,7 +1967,7 @@ static int __mkroute_input(struct sk_buff *skb, | |||
| 1967 | 1967 | ||
| 1968 | 1968 | ||
| 1969 | err = fib_validate_source(saddr, daddr, tos, FIB_RES_OIF(*res), | 1969 | err = fib_validate_source(saddr, daddr, tos, FIB_RES_OIF(*res), |
| 1970 | in_dev->dev, &spec_dst, &itag); | 1970 | in_dev->dev, &spec_dst, &itag, skb->mark); |
| 1971 | if (err < 0) { | 1971 | if (err < 0) { |
| 1972 | ip_handle_martian_source(in_dev->dev, in_dev, skb, daddr, | 1972 | ip_handle_martian_source(in_dev->dev, in_dev, skb, daddr, |
| 1973 | saddr); | 1973 | saddr); |
| @@ -2141,7 +2141,7 @@ static int ip_route_input_slow(struct sk_buff *skb, __be32 daddr, __be32 saddr, | |||
| 2141 | int result; | 2141 | int result; |
| 2142 | result = fib_validate_source(saddr, daddr, tos, | 2142 | result = fib_validate_source(saddr, daddr, tos, |
| 2143 | net->loopback_dev->ifindex, | 2143 | net->loopback_dev->ifindex, |
| 2144 | dev, &spec_dst, &itag); | 2144 | dev, &spec_dst, &itag, skb->mark); |
| 2145 | if (result < 0) | 2145 | if (result < 0) |
| 2146 | goto martian_source; | 2146 | goto martian_source; |
| 2147 | if (result) | 2147 | if (result) |
| @@ -2170,7 +2170,7 @@ brd_input: | |||
| 2170 | spec_dst = inet_select_addr(dev, 0, RT_SCOPE_LINK); | 2170 | spec_dst = inet_select_addr(dev, 0, RT_SCOPE_LINK); |
| 2171 | else { | 2171 | else { |
| 2172 | err = fib_validate_source(saddr, 0, tos, 0, dev, &spec_dst, | 2172 | err = fib_validate_source(saddr, 0, tos, 0, dev, &spec_dst, |
| 2173 | &itag); | 2173 | &itag, skb->mark); |
| 2174 | if (err < 0) | 2174 | if (err < 0) |
| 2175 | goto martian_source; | 2175 | goto martian_source; |
| 2176 | if (err) | 2176 | if (err) |
diff --git a/net/ipv4/udp.c b/net/ipv4/udp.c index d0d436d6216c..0fa9f70e4b19 100644 --- a/net/ipv4/udp.c +++ b/net/ipv4/udp.c | |||
| @@ -999,9 +999,7 @@ try_again: | |||
| 999 | err = ulen; | 999 | err = ulen; |
| 1000 | 1000 | ||
| 1001 | out_free: | 1001 | out_free: |
| 1002 | lock_sock(sk); | 1002 | skb_free_datagram_locked(sk, skb); |
| 1003 | skb_free_datagram(sk, skb); | ||
| 1004 | release_sock(sk); | ||
| 1005 | out: | 1003 | out: |
| 1006 | return err; | 1004 | return err; |
| 1007 | 1005 | ||
diff --git a/net/ipv6/udp.c b/net/ipv6/udp.c index 3a60f12b34ed..cf538ed5ef6a 100644 --- a/net/ipv6/udp.c +++ b/net/ipv6/udp.c | |||
| @@ -288,9 +288,7 @@ try_again: | |||
| 288 | err = ulen; | 288 | err = ulen; |
| 289 | 289 | ||
| 290 | out_free: | 290 | out_free: |
| 291 | lock_sock(sk); | 291 | skb_free_datagram_locked(sk, skb); |
| 292 | skb_free_datagram(sk, skb); | ||
| 293 | release_sock(sk); | ||
| 294 | out: | 292 | out: |
| 295 | return err; | 293 | return err; |
| 296 | 294 | ||
diff --git a/net/mac80211/agg-tx.c b/net/mac80211/agg-tx.c index bd765f30dba2..b09948ceec4a 100644 --- a/net/mac80211/agg-tx.c +++ b/net/mac80211/agg-tx.c | |||
| @@ -666,26 +666,25 @@ void ieee80211_process_addba_resp(struct ieee80211_local *local, | |||
| 666 | 666 | ||
| 667 | state = &sta->ampdu_mlme.tid_state_tx[tid]; | 667 | state = &sta->ampdu_mlme.tid_state_tx[tid]; |
| 668 | 668 | ||
| 669 | del_timer_sync(&sta->ampdu_mlme.tid_tx[tid]->addba_resp_timer); | ||
| 670 | |||
| 669 | spin_lock_bh(&sta->lock); | 671 | spin_lock_bh(&sta->lock); |
| 670 | 672 | ||
| 671 | if (!(*state & HT_ADDBA_REQUESTED_MSK)) { | 673 | if (!(*state & HT_ADDBA_REQUESTED_MSK)) |
| 672 | spin_unlock_bh(&sta->lock); | 674 | goto timer_still_needed; |
| 673 | return; | ||
| 674 | } | ||
| 675 | 675 | ||
| 676 | if (mgmt->u.action.u.addba_resp.dialog_token != | 676 | if (mgmt->u.action.u.addba_resp.dialog_token != |
| 677 | sta->ampdu_mlme.tid_tx[tid]->dialog_token) { | 677 | sta->ampdu_mlme.tid_tx[tid]->dialog_token) { |
| 678 | spin_unlock_bh(&sta->lock); | ||
| 679 | #ifdef CONFIG_MAC80211_HT_DEBUG | 678 | #ifdef CONFIG_MAC80211_HT_DEBUG |
| 680 | printk(KERN_DEBUG "wrong addBA response token, tid %d\n", tid); | 679 | printk(KERN_DEBUG "wrong addBA response token, tid %d\n", tid); |
| 681 | #endif /* CONFIG_MAC80211_HT_DEBUG */ | 680 | #endif /* CONFIG_MAC80211_HT_DEBUG */ |
| 682 | return; | 681 | goto timer_still_needed; |
| 683 | } | 682 | } |
| 684 | 683 | ||
| 685 | del_timer_sync(&sta->ampdu_mlme.tid_tx[tid]->addba_resp_timer); | ||
| 686 | #ifdef CONFIG_MAC80211_HT_DEBUG | 684 | #ifdef CONFIG_MAC80211_HT_DEBUG |
| 687 | printk(KERN_DEBUG "switched off addBA timer for tid %d \n", tid); | 685 | printk(KERN_DEBUG "switched off addBA timer for tid %d \n", tid); |
| 688 | #endif /* CONFIG_MAC80211_HT_DEBUG */ | 686 | #endif /* CONFIG_MAC80211_HT_DEBUG */ |
| 687 | |||
| 689 | if (le16_to_cpu(mgmt->u.action.u.addba_resp.status) | 688 | if (le16_to_cpu(mgmt->u.action.u.addba_resp.status) |
| 690 | == WLAN_STATUS_SUCCESS) { | 689 | == WLAN_STATUS_SUCCESS) { |
| 691 | u8 curstate = *state; | 690 | u8 curstate = *state; |
| @@ -699,5 +698,11 @@ void ieee80211_process_addba_resp(struct ieee80211_local *local, | |||
| 699 | } else { | 698 | } else { |
| 700 | ___ieee80211_stop_tx_ba_session(sta, tid, WLAN_BACK_INITIATOR); | 699 | ___ieee80211_stop_tx_ba_session(sta, tid, WLAN_BACK_INITIATOR); |
| 701 | } | 700 | } |
| 701 | |||
| 702 | goto out; | ||
| 703 | |||
| 704 | timer_still_needed: | ||
| 705 | add_timer(&sta->ampdu_mlme.tid_tx[tid]->addba_resp_timer); | ||
| 706 | out: | ||
| 702 | spin_unlock_bh(&sta->lock); | 707 | spin_unlock_bh(&sta->lock); |
| 703 | } | 708 | } |
diff --git a/net/mac80211/cfg.c b/net/mac80211/cfg.c index 5608f6c68413..7b5131bd6fa1 100644 --- a/net/mac80211/cfg.c +++ b/net/mac80211/cfg.c | |||
| @@ -72,6 +72,9 @@ static int ieee80211_change_iface(struct wiphy *wiphy, | |||
| 72 | struct ieee80211_sub_if_data *sdata; | 72 | struct ieee80211_sub_if_data *sdata; |
| 73 | int ret; | 73 | int ret; |
| 74 | 74 | ||
| 75 | if (netif_running(dev)) | ||
| 76 | return -EBUSY; | ||
| 77 | |||
| 75 | if (!nl80211_type_check(type)) | 78 | if (!nl80211_type_check(type)) |
| 76 | return -EINVAL; | 79 | return -EINVAL; |
| 77 | 80 | ||
| @@ -81,9 +84,6 @@ static int ieee80211_change_iface(struct wiphy *wiphy, | |||
| 81 | if (ret) | 84 | if (ret) |
| 82 | return ret; | 85 | return ret; |
| 83 | 86 | ||
| 84 | if (netif_running(sdata->dev)) | ||
| 85 | return -EBUSY; | ||
| 86 | |||
| 87 | if (ieee80211_vif_is_mesh(&sdata->vif) && params->mesh_id_len) | 87 | if (ieee80211_vif_is_mesh(&sdata->vif) && params->mesh_id_len) |
| 88 | ieee80211_sdata_set_mesh_id(sdata, | 88 | ieee80211_sdata_set_mesh_id(sdata, |
| 89 | params->mesh_id_len, | 89 | params->mesh_id_len, |
diff --git a/net/mac80211/ht.c b/net/mac80211/ht.c index 0891bfb06996..48ef1a282b91 100644 --- a/net/mac80211/ht.c +++ b/net/mac80211/ht.c | |||
| @@ -153,7 +153,7 @@ void ieee80211_process_delba(struct ieee80211_sub_if_data *sdata, | |||
| 153 | if (net_ratelimit()) | 153 | if (net_ratelimit()) |
| 154 | printk(KERN_DEBUG "delba from %pM (%s) tid %d reason code %d\n", | 154 | printk(KERN_DEBUG "delba from %pM (%s) tid %d reason code %d\n", |
| 155 | mgmt->sa, initiator ? "initiator" : "recipient", tid, | 155 | mgmt->sa, initiator ? "initiator" : "recipient", tid, |
| 156 | mgmt->u.action.u.delba.reason_code); | 156 | le16_to_cpu(mgmt->u.action.u.delba.reason_code)); |
| 157 | #endif /* CONFIG_MAC80211_HT_DEBUG */ | 157 | #endif /* CONFIG_MAC80211_HT_DEBUG */ |
| 158 | 158 | ||
| 159 | if (initiator == WLAN_BACK_INITIATOR) | 159 | if (initiator == WLAN_BACK_INITIATOR) |
diff --git a/net/mac80211/ibss.c b/net/mac80211/ibss.c index ca8ecce31d34..f1362f32c17d 100644 --- a/net/mac80211/ibss.c +++ b/net/mac80211/ibss.c | |||
| @@ -73,6 +73,7 @@ static void __ieee80211_sta_join_ibss(struct ieee80211_sub_if_data *sdata, | |||
| 73 | struct ieee80211_mgmt *mgmt; | 73 | struct ieee80211_mgmt *mgmt; |
| 74 | u8 *pos; | 74 | u8 *pos; |
| 75 | struct ieee80211_supported_band *sband; | 75 | struct ieee80211_supported_band *sband; |
| 76 | struct cfg80211_bss *bss; | ||
| 76 | u32 bss_change; | 77 | u32 bss_change; |
| 77 | u8 supp_rates[IEEE80211_MAX_SUPP_RATES]; | 78 | u8 supp_rates[IEEE80211_MAX_SUPP_RATES]; |
| 78 | 79 | ||
| @@ -177,8 +178,9 @@ static void __ieee80211_sta_join_ibss(struct ieee80211_sub_if_data *sdata, | |||
| 177 | mod_timer(&ifibss->timer, | 178 | mod_timer(&ifibss->timer, |
| 178 | round_jiffies(jiffies + IEEE80211_IBSS_MERGE_INTERVAL)); | 179 | round_jiffies(jiffies + IEEE80211_IBSS_MERGE_INTERVAL)); |
| 179 | 180 | ||
| 180 | cfg80211_inform_bss_frame(local->hw.wiphy, local->hw.conf.channel, | 181 | bss = cfg80211_inform_bss_frame(local->hw.wiphy, local->hw.conf.channel, |
| 181 | mgmt, skb->len, 0, GFP_KERNEL); | 182 | mgmt, skb->len, 0, GFP_KERNEL); |
| 183 | cfg80211_put_bss(bss); | ||
| 182 | cfg80211_ibss_joined(sdata->dev, ifibss->bssid, GFP_KERNEL); | 184 | cfg80211_ibss_joined(sdata->dev, ifibss->bssid, GFP_KERNEL); |
| 183 | } | 185 | } |
| 184 | 186 | ||
diff --git a/net/sunrpc/svcsock.c b/net/sunrpc/svcsock.c index ccc5e83cae5d..1c246a4f491e 100644 --- a/net/sunrpc/svcsock.c +++ b/net/sunrpc/svcsock.c | |||
| @@ -111,7 +111,7 @@ static void svc_release_skb(struct svc_rqst *rqstp) | |||
| 111 | rqstp->rq_xprt_ctxt = NULL; | 111 | rqstp->rq_xprt_ctxt = NULL; |
| 112 | 112 | ||
| 113 | dprintk("svc: service %p, releasing skb %p\n", rqstp, skb); | 113 | dprintk("svc: service %p, releasing skb %p\n", rqstp, skb); |
| 114 | skb_free_datagram(svsk->sk_sk, skb); | 114 | skb_free_datagram_locked(svsk->sk_sk, skb); |
| 115 | } | 115 | } |
| 116 | } | 116 | } |
| 117 | 117 | ||
| @@ -578,7 +578,7 @@ static int svc_udp_recvfrom(struct svc_rqst *rqstp) | |||
| 578 | "svc: received unknown control message %d/%d; " | 578 | "svc: received unknown control message %d/%d; " |
| 579 | "dropping RPC reply datagram\n", | 579 | "dropping RPC reply datagram\n", |
| 580 | cmh->cmsg_level, cmh->cmsg_type); | 580 | cmh->cmsg_level, cmh->cmsg_type); |
| 581 | skb_free_datagram(svsk->sk_sk, skb); | 581 | skb_free_datagram_locked(svsk->sk_sk, skb); |
| 582 | return 0; | 582 | return 0; |
| 583 | } | 583 | } |
| 584 | 584 | ||
| @@ -588,18 +588,18 @@ static int svc_udp_recvfrom(struct svc_rqst *rqstp) | |||
| 588 | if (csum_partial_copy_to_xdr(&rqstp->rq_arg, skb)) { | 588 | if (csum_partial_copy_to_xdr(&rqstp->rq_arg, skb)) { |
| 589 | local_bh_enable(); | 589 | local_bh_enable(); |
| 590 | /* checksum error */ | 590 | /* checksum error */ |
| 591 | skb_free_datagram(svsk->sk_sk, skb); | 591 | skb_free_datagram_locked(svsk->sk_sk, skb); |
| 592 | return 0; | 592 | return 0; |
| 593 | } | 593 | } |
| 594 | local_bh_enable(); | 594 | local_bh_enable(); |
| 595 | skb_free_datagram(svsk->sk_sk, skb); | 595 | skb_free_datagram_locked(svsk->sk_sk, skb); |
| 596 | } else { | 596 | } else { |
| 597 | /* we can use it in-place */ | 597 | /* we can use it in-place */ |
| 598 | rqstp->rq_arg.head[0].iov_base = skb->data + | 598 | rqstp->rq_arg.head[0].iov_base = skb->data + |
| 599 | sizeof(struct udphdr); | 599 | sizeof(struct udphdr); |
| 600 | rqstp->rq_arg.head[0].iov_len = len; | 600 | rqstp->rq_arg.head[0].iov_len = len; |
| 601 | if (skb_checksum_complete(skb)) { | 601 | if (skb_checksum_complete(skb)) { |
| 602 | skb_free_datagram(svsk->sk_sk, skb); | 602 | skb_free_datagram_locked(svsk->sk_sk, skb); |
| 603 | return 0; | 603 | return 0; |
| 604 | } | 604 | } |
| 605 | rqstp->rq_xprt_ctxt = skb; | 605 | rqstp->rq_xprt_ctxt = skb; |
diff --git a/net/wireless/sme.c b/net/wireless/sme.c index ece378d531ef..9f0b2800a9d7 100644 --- a/net/wireless/sme.c +++ b/net/wireless/sme.c | |||
| @@ -165,7 +165,7 @@ void cfg80211_conn_work(struct work_struct *work) | |||
| 165 | struct cfg80211_registered_device *rdev = | 165 | struct cfg80211_registered_device *rdev = |
| 166 | container_of(work, struct cfg80211_registered_device, conn_work); | 166 | container_of(work, struct cfg80211_registered_device, conn_work); |
| 167 | struct wireless_dev *wdev; | 167 | struct wireless_dev *wdev; |
| 168 | u8 bssid[ETH_ALEN]; | 168 | u8 bssid_buf[ETH_ALEN], *bssid = NULL; |
| 169 | 169 | ||
| 170 | rtnl_lock(); | 170 | rtnl_lock(); |
| 171 | cfg80211_lock_rdev(rdev); | 171 | cfg80211_lock_rdev(rdev); |
| @@ -181,7 +181,10 @@ void cfg80211_conn_work(struct work_struct *work) | |||
| 181 | wdev_unlock(wdev); | 181 | wdev_unlock(wdev); |
| 182 | continue; | 182 | continue; |
| 183 | } | 183 | } |
| 184 | memcpy(bssid, wdev->conn->params.bssid, ETH_ALEN); | 184 | if (wdev->conn->params.bssid) { |
| 185 | memcpy(bssid_buf, wdev->conn->params.bssid, ETH_ALEN); | ||
| 186 | bssid = bssid_buf; | ||
| 187 | } | ||
| 185 | if (cfg80211_conn_do_work(wdev)) | 188 | if (cfg80211_conn_do_work(wdev)) |
| 186 | __cfg80211_connect_result( | 189 | __cfg80211_connect_result( |
| 187 | wdev->netdev, bssid, | 190 | wdev->netdev, bssid, |
diff --git a/sound/core/pcm.c b/sound/core/pcm.c index 0c1440121c22..c69c60b2a48a 100644 --- a/sound/core/pcm.c +++ b/sound/core/pcm.c | |||
| @@ -953,11 +953,12 @@ static int snd_pcm_dev_register(struct snd_device *device) | |||
| 953 | struct snd_pcm_substream *substream; | 953 | struct snd_pcm_substream *substream; |
| 954 | struct snd_pcm_notify *notify; | 954 | struct snd_pcm_notify *notify; |
| 955 | char str[16]; | 955 | char str[16]; |
| 956 | struct snd_pcm *pcm = device->device_data; | 956 | struct snd_pcm *pcm; |
| 957 | struct device *dev; | 957 | struct device *dev; |
| 958 | 958 | ||
| 959 | if (snd_BUG_ON(!pcm || !device)) | 959 | if (snd_BUG_ON(!device || !device->device_data)) |
| 960 | return -ENXIO; | 960 | return -ENXIO; |
| 961 | pcm = device->device_data; | ||
| 961 | mutex_lock(®ister_mutex); | 962 | mutex_lock(®ister_mutex); |
| 962 | err = snd_pcm_add(pcm); | 963 | err = snd_pcm_add(pcm); |
| 963 | if (err) { | 964 | if (err) { |
diff --git a/sound/drivers/dummy.c b/sound/drivers/dummy.c index 6ba066c41d2e..252e04ce602f 100644 --- a/sound/drivers/dummy.c +++ b/sound/drivers/dummy.c | |||
| @@ -165,7 +165,7 @@ MODULE_PARM_DESC(enable, "Enable this dummy soundcard."); | |||
| 165 | module_param_array(pcm_devs, int, NULL, 0444); | 165 | module_param_array(pcm_devs, int, NULL, 0444); |
| 166 | MODULE_PARM_DESC(pcm_devs, "PCM devices # (0-4) for dummy driver."); | 166 | MODULE_PARM_DESC(pcm_devs, "PCM devices # (0-4) for dummy driver."); |
| 167 | module_param_array(pcm_substreams, int, NULL, 0444); | 167 | module_param_array(pcm_substreams, int, NULL, 0444); |
| 168 | MODULE_PARM_DESC(pcm_substreams, "PCM substreams # (1-16) for dummy driver."); | 168 | MODULE_PARM_DESC(pcm_substreams, "PCM substreams # (1-128) for dummy driver."); |
| 169 | //module_param_array(midi_devs, int, NULL, 0444); | 169 | //module_param_array(midi_devs, int, NULL, 0444); |
| 170 | //MODULE_PARM_DESC(midi_devs, "MIDI devices # (0-2) for dummy driver."); | 170 | //MODULE_PARM_DESC(midi_devs, "MIDI devices # (0-2) for dummy driver."); |
| 171 | module_param(fake_buffer, bool, 0444); | 171 | module_param(fake_buffer, bool, 0444); |
| @@ -808,8 +808,6 @@ static int __devinit snd_card_dummy_new_mixer(struct snd_dummy *dummy) | |||
| 808 | unsigned int idx; | 808 | unsigned int idx; |
| 809 | int err; | 809 | int err; |
| 810 | 810 | ||
| 811 | if (snd_BUG_ON(!dummy)) | ||
| 812 | return -EINVAL; | ||
| 813 | spin_lock_init(&dummy->mixer_lock); | 811 | spin_lock_init(&dummy->mixer_lock); |
| 814 | strcpy(card->mixername, "Dummy Mixer"); | 812 | strcpy(card->mixername, "Dummy Mixer"); |
| 815 | 813 | ||
diff --git a/sound/drivers/pcsp/pcsp_lib.c b/sound/drivers/pcsp/pcsp_lib.c index 84cc2658c05b..e1145ac6e908 100644 --- a/sound/drivers/pcsp/pcsp_lib.c +++ b/sound/drivers/pcsp/pcsp_lib.c | |||
| @@ -39,25 +39,20 @@ static DECLARE_TASKLET(pcsp_pcm_tasklet, pcsp_call_pcm_elapsed, 0); | |||
| 39 | /* write the port and returns the next expire time in ns; | 39 | /* write the port and returns the next expire time in ns; |
| 40 | * called at the trigger-start and in hrtimer callback | 40 | * called at the trigger-start and in hrtimer callback |
| 41 | */ | 41 | */ |
| 42 | static unsigned long pcsp_timer_update(struct hrtimer *handle) | 42 | static u64 pcsp_timer_update(struct snd_pcsp *chip) |
| 43 | { | 43 | { |
| 44 | unsigned char timer_cnt, val; | 44 | unsigned char timer_cnt, val; |
| 45 | u64 ns; | 45 | u64 ns; |
| 46 | struct snd_pcm_substream *substream; | 46 | struct snd_pcm_substream *substream; |
| 47 | struct snd_pcm_runtime *runtime; | 47 | struct snd_pcm_runtime *runtime; |
| 48 | struct snd_pcsp *chip = container_of(handle, struct snd_pcsp, timer); | ||
| 49 | unsigned long flags; | 48 | unsigned long flags; |
| 50 | 49 | ||
| 51 | if (chip->thalf) { | 50 | if (chip->thalf) { |
| 52 | outb(chip->val61, 0x61); | 51 | outb(chip->val61, 0x61); |
| 53 | chip->thalf = 0; | 52 | chip->thalf = 0; |
| 54 | if (!atomic_read(&chip->timer_active)) | ||
| 55 | return 0; | ||
| 56 | return chip->ns_rem; | 53 | return chip->ns_rem; |
| 57 | } | 54 | } |
| 58 | 55 | ||
| 59 | if (!atomic_read(&chip->timer_active)) | ||
| 60 | return 0; | ||
| 61 | substream = chip->playback_substream; | 56 | substream = chip->playback_substream; |
| 62 | if (!substream) | 57 | if (!substream) |
| 63 | return 0; | 58 | return 0; |
| @@ -88,24 +83,17 @@ static unsigned long pcsp_timer_update(struct hrtimer *handle) | |||
| 88 | return ns; | 83 | return ns; |
| 89 | } | 84 | } |
| 90 | 85 | ||
| 91 | enum hrtimer_restart pcsp_do_timer(struct hrtimer *handle) | 86 | static void pcsp_pointer_update(struct snd_pcsp *chip) |
| 92 | { | 87 | { |
| 93 | struct snd_pcsp *chip = container_of(handle, struct snd_pcsp, timer); | ||
| 94 | struct snd_pcm_substream *substream; | 88 | struct snd_pcm_substream *substream; |
| 95 | int periods_elapsed, pointer_update; | ||
| 96 | size_t period_bytes, buffer_bytes; | 89 | size_t period_bytes, buffer_bytes; |
| 97 | unsigned long ns; | 90 | int periods_elapsed; |
| 98 | unsigned long flags; | 91 | unsigned long flags; |
| 99 | 92 | ||
| 100 | pointer_update = !chip->thalf; | ||
| 101 | ns = pcsp_timer_update(handle); | ||
| 102 | if (!ns) | ||
| 103 | return HRTIMER_NORESTART; | ||
| 104 | |||
| 105 | /* update the playback position */ | 93 | /* update the playback position */ |
| 106 | substream = chip->playback_substream; | 94 | substream = chip->playback_substream; |
| 107 | if (!substream) | 95 | if (!substream) |
| 108 | return HRTIMER_NORESTART; | 96 | return; |
| 109 | 97 | ||
| 110 | period_bytes = snd_pcm_lib_period_bytes(substream); | 98 | period_bytes = snd_pcm_lib_period_bytes(substream); |
| 111 | buffer_bytes = snd_pcm_lib_buffer_bytes(substream); | 99 | buffer_bytes = snd_pcm_lib_buffer_bytes(substream); |
| @@ -134,6 +122,26 @@ enum hrtimer_restart pcsp_do_timer(struct hrtimer *handle) | |||
| 134 | 122 | ||
| 135 | if (periods_elapsed) | 123 | if (periods_elapsed) |
| 136 | tasklet_schedule(&pcsp_pcm_tasklet); | 124 | tasklet_schedule(&pcsp_pcm_tasklet); |
| 125 | } | ||
| 126 | |||
| 127 | enum hrtimer_restart pcsp_do_timer(struct hrtimer *handle) | ||
| 128 | { | ||
| 129 | struct snd_pcsp *chip = container_of(handle, struct snd_pcsp, timer); | ||
| 130 | int pointer_update; | ||
| 131 | u64 ns; | ||
| 132 | |||
| 133 | if (!atomic_read(&chip->timer_active) || !chip->playback_substream) | ||
| 134 | return HRTIMER_NORESTART; | ||
| 135 | |||
| 136 | pointer_update = !chip->thalf; | ||
| 137 | ns = pcsp_timer_update(chip); | ||
| 138 | if (!ns) { | ||
| 139 | printk(KERN_WARNING "PCSP: unexpected stop\n"); | ||
| 140 | return HRTIMER_NORESTART; | ||
| 141 | } | ||
| 142 | |||
| 143 | if (pointer_update) | ||
| 144 | pcsp_pointer_update(chip); | ||
| 137 | 145 | ||
| 138 | hrtimer_forward(handle, hrtimer_get_expires(handle), ns_to_ktime(ns)); | 146 | hrtimer_forward(handle, hrtimer_get_expires(handle), ns_to_ktime(ns)); |
| 139 | 147 | ||
| @@ -142,8 +150,6 @@ enum hrtimer_restart pcsp_do_timer(struct hrtimer *handle) | |||
| 142 | 150 | ||
| 143 | static int pcsp_start_playing(struct snd_pcsp *chip) | 151 | static int pcsp_start_playing(struct snd_pcsp *chip) |
| 144 | { | 152 | { |
| 145 | unsigned long ns; | ||
| 146 | |||
| 147 | #if PCSP_DEBUG | 153 | #if PCSP_DEBUG |
| 148 | printk(KERN_INFO "PCSP: start_playing called\n"); | 154 | printk(KERN_INFO "PCSP: start_playing called\n"); |
| 149 | #endif | 155 | #endif |
| @@ -159,11 +165,7 @@ static int pcsp_start_playing(struct snd_pcsp *chip) | |||
| 159 | atomic_set(&chip->timer_active, 1); | 165 | atomic_set(&chip->timer_active, 1); |
| 160 | chip->thalf = 0; | 166 | chip->thalf = 0; |
| 161 | 167 | ||
| 162 | ns = pcsp_timer_update(&pcsp_chip.timer); | 168 | hrtimer_start(&pcsp_chip.timer, ktime_set(0, 0), HRTIMER_MODE_REL); |
| 163 | if (!ns) | ||
| 164 | return -EIO; | ||
| 165 | |||
| 166 | hrtimer_start(&pcsp_chip.timer, ktime_set(0, ns), HRTIMER_MODE_REL); | ||
| 167 | return 0; | 169 | return 0; |
| 168 | } | 170 | } |
| 169 | 171 | ||
| @@ -232,21 +234,22 @@ static int snd_pcsp_playback_hw_free(struct snd_pcm_substream *substream) | |||
| 232 | static int snd_pcsp_playback_prepare(struct snd_pcm_substream *substream) | 234 | static int snd_pcsp_playback_prepare(struct snd_pcm_substream *substream) |
| 233 | { | 235 | { |
| 234 | struct snd_pcsp *chip = snd_pcm_substream_chip(substream); | 236 | struct snd_pcsp *chip = snd_pcm_substream_chip(substream); |
| 237 | pcsp_sync_stop(chip); | ||
| 238 | chip->playback_ptr = 0; | ||
| 239 | chip->period_ptr = 0; | ||
| 240 | chip->fmt_size = | ||
| 241 | snd_pcm_format_physical_width(substream->runtime->format) >> 3; | ||
| 242 | chip->is_signed = snd_pcm_format_signed(substream->runtime->format); | ||
| 235 | #if PCSP_DEBUG | 243 | #if PCSP_DEBUG |
| 236 | printk(KERN_INFO "PCSP: prepare called, " | 244 | printk(KERN_INFO "PCSP: prepare called, " |
| 237 | "size=%zi psize=%zi f=%zi f1=%i\n", | 245 | "size=%zi psize=%zi f=%zi f1=%i fsize=%i\n", |
| 238 | snd_pcm_lib_buffer_bytes(substream), | 246 | snd_pcm_lib_buffer_bytes(substream), |
| 239 | snd_pcm_lib_period_bytes(substream), | 247 | snd_pcm_lib_period_bytes(substream), |
| 240 | snd_pcm_lib_buffer_bytes(substream) / | 248 | snd_pcm_lib_buffer_bytes(substream) / |
| 241 | snd_pcm_lib_period_bytes(substream), | 249 | snd_pcm_lib_period_bytes(substream), |
| 242 | substream->runtime->periods); | 250 | substream->runtime->periods, |
| 251 | chip->fmt_size); | ||
| 243 | #endif | 252 | #endif |
| 244 | pcsp_sync_stop(chip); | ||
| 245 | chip->playback_ptr = 0; | ||
| 246 | chip->period_ptr = 0; | ||
| 247 | chip->fmt_size = | ||
| 248 | snd_pcm_format_physical_width(substream->runtime->format) >> 3; | ||
| 249 | chip->is_signed = snd_pcm_format_signed(substream->runtime->format); | ||
| 250 | return 0; | 253 | return 0; |
| 251 | } | 254 | } |
| 252 | 255 | ||
diff --git a/sound/drivers/pcsp/pcsp_mixer.c b/sound/drivers/pcsp/pcsp_mixer.c index 199b03377142..903bc846763f 100644 --- a/sound/drivers/pcsp/pcsp_mixer.c +++ b/sound/drivers/pcsp/pcsp_mixer.c | |||
| @@ -72,7 +72,7 @@ static int pcsp_treble_put(struct snd_kcontrol *kcontrol, | |||
| 72 | if (treble != chip->treble) { | 72 | if (treble != chip->treble) { |
| 73 | chip->treble = treble; | 73 | chip->treble = treble; |
| 74 | #if PCSP_DEBUG | 74 | #if PCSP_DEBUG |
| 75 | printk(KERN_INFO "PCSP: rate set to %i\n", PCSP_RATE()); | 75 | printk(KERN_INFO "PCSP: rate set to %li\n", PCSP_RATE()); |
| 76 | #endif | 76 | #endif |
| 77 | changed = 1; | 77 | changed = 1; |
| 78 | } | 78 | } |
diff --git a/sound/parisc/harmony.c b/sound/parisc/harmony.c index e924492df21d..f47f9e226b08 100644 --- a/sound/parisc/harmony.c +++ b/sound/parisc/harmony.c | |||
| @@ -624,6 +624,9 @@ snd_harmony_pcm_init(struct snd_harmony *h) | |||
| 624 | struct snd_pcm *pcm; | 624 | struct snd_pcm *pcm; |
| 625 | int err; | 625 | int err; |
| 626 | 626 | ||
| 627 | if (snd_BUG_ON(!h)) | ||
| 628 | return -EINVAL; | ||
| 629 | |||
| 627 | harmony_disable_interrupts(h); | 630 | harmony_disable_interrupts(h); |
| 628 | 631 | ||
| 629 | err = snd_pcm_new(h->card, "harmony", 0, 1, 1, &pcm); | 632 | err = snd_pcm_new(h->card, "harmony", 0, 1, 1, &pcm); |
| @@ -865,11 +868,12 @@ snd_harmony_mixer_reset(struct snd_harmony *h) | |||
| 865 | static int __devinit | 868 | static int __devinit |
| 866 | snd_harmony_mixer_init(struct snd_harmony *h) | 869 | snd_harmony_mixer_init(struct snd_harmony *h) |
| 867 | { | 870 | { |
| 868 | struct snd_card *card = h->card; | 871 | struct snd_card *card; |
| 869 | int idx, err; | 872 | int idx, err; |
| 870 | 873 | ||
| 871 | if (snd_BUG_ON(!h)) | 874 | if (snd_BUG_ON(!h)) |
| 872 | return -EINVAL; | 875 | return -EINVAL; |
| 876 | card = h->card; | ||
| 873 | strcpy(card->mixername, "Harmony Gain control interface"); | 877 | strcpy(card->mixername, "Harmony Gain control interface"); |
| 874 | 878 | ||
| 875 | for (idx = 0; idx < HARMONY_CONTROLS; idx++) { | 879 | for (idx = 0; idx < HARMONY_CONTROLS; idx++) { |
diff --git a/sound/pci/Kconfig b/sound/pci/Kconfig index fb5ee3cc3968..75c602b5b132 100644 --- a/sound/pci/Kconfig +++ b/sound/pci/Kconfig | |||
| @@ -259,7 +259,6 @@ config SND_CS5530 | |||
| 259 | 259 | ||
| 260 | config SND_CS5535AUDIO | 260 | config SND_CS5535AUDIO |
| 261 | tristate "CS5535/CS5536 Audio" | 261 | tristate "CS5535/CS5536 Audio" |
| 262 | depends on X86 && !X86_64 | ||
| 263 | select SND_PCM | 262 | select SND_PCM |
| 264 | select SND_AC97_CODEC | 263 | select SND_AC97_CODEC |
| 265 | help | 264 | help |
diff --git a/sound/pci/ali5451/ali5451.c b/sound/pci/ali5451/ali5451.c index b458d208720b..aaf4da68969c 100644 --- a/sound/pci/ali5451/ali5451.c +++ b/sound/pci/ali5451/ali5451.c | |||
| @@ -973,7 +973,7 @@ static void snd_ali_free_voice(struct snd_ali * codec, | |||
| 973 | void *private_data; | 973 | void *private_data; |
| 974 | 974 | ||
| 975 | snd_ali_printk("free_voice: channel=%d\n",pvoice->number); | 975 | snd_ali_printk("free_voice: channel=%d\n",pvoice->number); |
| 976 | if (pvoice == NULL || !pvoice->use) | 976 | if (!pvoice->use) |
| 977 | return; | 977 | return; |
| 978 | snd_ali_clear_voices(codec, pvoice->number, pvoice->number); | 978 | snd_ali_clear_voices(codec, pvoice->number, pvoice->number); |
| 979 | spin_lock_irq(&codec->voice_alloc); | 979 | spin_lock_irq(&codec->voice_alloc); |
diff --git a/sound/pci/hda/hda_intel.c b/sound/pci/hda/hda_intel.c index c9ad182e1b4b..e340792f6cb3 100644 --- a/sound/pci/hda/hda_intel.c +++ b/sound/pci/hda/hda_intel.c | |||
| @@ -2674,6 +2674,7 @@ static struct pci_device_id azx_ids[] = { | |||
| 2674 | { PCI_DEVICE(0x10de, 0x044b), .driver_data = AZX_DRIVER_NVIDIA }, | 2674 | { PCI_DEVICE(0x10de, 0x044b), .driver_data = AZX_DRIVER_NVIDIA }, |
| 2675 | { PCI_DEVICE(0x10de, 0x055c), .driver_data = AZX_DRIVER_NVIDIA }, | 2675 | { PCI_DEVICE(0x10de, 0x055c), .driver_data = AZX_DRIVER_NVIDIA }, |
| 2676 | { PCI_DEVICE(0x10de, 0x055d), .driver_data = AZX_DRIVER_NVIDIA }, | 2676 | { PCI_DEVICE(0x10de, 0x055d), .driver_data = AZX_DRIVER_NVIDIA }, |
| 2677 | { PCI_DEVICE(0x10de, 0x0590), .driver_data = AZX_DRIVER_NVIDIA }, | ||
| 2677 | { PCI_DEVICE(0x10de, 0x0774), .driver_data = AZX_DRIVER_NVIDIA }, | 2678 | { PCI_DEVICE(0x10de, 0x0774), .driver_data = AZX_DRIVER_NVIDIA }, |
| 2678 | { PCI_DEVICE(0x10de, 0x0775), .driver_data = AZX_DRIVER_NVIDIA }, | 2679 | { PCI_DEVICE(0x10de, 0x0775), .driver_data = AZX_DRIVER_NVIDIA }, |
| 2679 | { PCI_DEVICE(0x10de, 0x0776), .driver_data = AZX_DRIVER_NVIDIA }, | 2680 | { PCI_DEVICE(0x10de, 0x0776), .driver_data = AZX_DRIVER_NVIDIA }, |
diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c index c08ca660daba..ff20048504b6 100644 --- a/sound/pci/hda/patch_realtek.c +++ b/sound/pci/hda/patch_realtek.c | |||
| @@ -965,6 +965,8 @@ static void alc_automute_pin(struct hda_codec *codec) | |||
| 965 | unsigned int nid = spec->autocfg.hp_pins[0]; | 965 | unsigned int nid = spec->autocfg.hp_pins[0]; |
| 966 | int i; | 966 | int i; |
| 967 | 967 | ||
| 968 | if (!nid) | ||
| 969 | return; | ||
| 968 | pincap = snd_hda_query_pin_caps(codec, nid); | 970 | pincap = snd_hda_query_pin_caps(codec, nid); |
| 969 | if (pincap & AC_PINCAP_TRIG_REQ) /* need trigger? */ | 971 | if (pincap & AC_PINCAP_TRIG_REQ) /* need trigger? */ |
| 970 | snd_hda_codec_read(codec, nid, 0, AC_VERB_SET_PIN_SENSE, 0); | 972 | snd_hda_codec_read(codec, nid, 0, AC_VERB_SET_PIN_SENSE, 0); |
| @@ -12602,7 +12604,8 @@ static struct snd_pci_quirk alc268_cfg_tbl[] = { | |||
| 12602 | SND_PCI_QUIRK(0x1025, 0x015b, "Acer Aspire One", | 12604 | SND_PCI_QUIRK(0x1025, 0x015b, "Acer Aspire One", |
| 12603 | ALC268_ACER_ASPIRE_ONE), | 12605 | ALC268_ACER_ASPIRE_ONE), |
| 12604 | SND_PCI_QUIRK(0x1028, 0x0253, "Dell OEM", ALC268_DELL), | 12606 | SND_PCI_QUIRK(0x1028, 0x0253, "Dell OEM", ALC268_DELL), |
| 12605 | SND_PCI_QUIRK(0x1028, 0x02b0, "Dell Inspiron Mini9", ALC268_DELL), | 12607 | SND_PCI_QUIRK_MASK(0x1028, 0xfff0, 0x02b0, |
| 12608 | "Dell Inspiron Mini9/Vostro A90", ALC268_DELL), | ||
| 12606 | /* almost compatible with toshiba but with optional digital outs; | 12609 | /* almost compatible with toshiba but with optional digital outs; |
| 12607 | * auto-probing seems working fine | 12610 | * auto-probing seems working fine |
| 12608 | */ | 12611 | */ |
| @@ -17374,7 +17377,7 @@ static int alc662_auto_create_extra_out(struct hda_codec *codec, hda_nid_t pin, | |||
| 17374 | 17377 | ||
| 17375 | /* create playback/capture controls for input pins */ | 17378 | /* create playback/capture controls for input pins */ |
| 17376 | #define alc662_auto_create_input_ctls \ | 17379 | #define alc662_auto_create_input_ctls \ |
| 17377 | alc880_auto_create_input_ctls | 17380 | alc882_auto_create_input_ctls |
| 17378 | 17381 | ||
| 17379 | static void alc662_auto_set_output_and_unmute(struct hda_codec *codec, | 17382 | static void alc662_auto_set_output_and_unmute(struct hda_codec *codec, |
| 17380 | hda_nid_t nid, int pin_type, | 17383 | hda_nid_t nid, int pin_type, |
diff --git a/sound/pci/via82xx.c b/sound/pci/via82xx.c index 91683a349035..8a332d2f615c 100644 --- a/sound/pci/via82xx.c +++ b/sound/pci/via82xx.c | |||
| @@ -386,6 +386,7 @@ struct via82xx { | |||
| 386 | 386 | ||
| 387 | struct snd_pcm *pcms[2]; | 387 | struct snd_pcm *pcms[2]; |
| 388 | struct snd_rawmidi *rmidi; | 388 | struct snd_rawmidi *rmidi; |
| 389 | struct snd_kcontrol *dxs_controls[4]; | ||
| 389 | 390 | ||
| 390 | struct snd_ac97_bus *ac97_bus; | 391 | struct snd_ac97_bus *ac97_bus; |
| 391 | struct snd_ac97 *ac97; | 392 | struct snd_ac97 *ac97; |
| @@ -1216,9 +1217,9 @@ static int snd_via82xx_pcm_open(struct via82xx *chip, struct viadev *viadev, | |||
| 1216 | 1217 | ||
| 1217 | 1218 | ||
| 1218 | /* | 1219 | /* |
| 1219 | * open callback for playback on via686 and via823x DSX | 1220 | * open callback for playback on via686 |
| 1220 | */ | 1221 | */ |
| 1221 | static int snd_via82xx_playback_open(struct snd_pcm_substream *substream) | 1222 | static int snd_via686_playback_open(struct snd_pcm_substream *substream) |
| 1222 | { | 1223 | { |
| 1223 | struct via82xx *chip = snd_pcm_substream_chip(substream); | 1224 | struct via82xx *chip = snd_pcm_substream_chip(substream); |
| 1224 | struct viadev *viadev = &chip->devs[chip->playback_devno + substream->number]; | 1225 | struct viadev *viadev = &chip->devs[chip->playback_devno + substream->number]; |
| @@ -1230,6 +1231,32 @@ static int snd_via82xx_playback_open(struct snd_pcm_substream *substream) | |||
| 1230 | } | 1231 | } |
| 1231 | 1232 | ||
| 1232 | /* | 1233 | /* |
| 1234 | * open callback for playback on via823x DXS | ||
| 1235 | */ | ||
| 1236 | static int snd_via8233_playback_open(struct snd_pcm_substream *substream) | ||
| 1237 | { | ||
| 1238 | struct via82xx *chip = snd_pcm_substream_chip(substream); | ||
| 1239 | struct viadev *viadev; | ||
| 1240 | unsigned int stream; | ||
| 1241 | int err; | ||
| 1242 | |||
| 1243 | viadev = &chip->devs[chip->playback_devno + substream->number]; | ||
| 1244 | if ((err = snd_via82xx_pcm_open(chip, viadev, substream)) < 0) | ||
| 1245 | return err; | ||
| 1246 | stream = viadev->reg_offset / 0x10; | ||
| 1247 | if (chip->dxs_controls[stream]) { | ||
| 1248 | chip->playback_volume[stream][0] = 0; | ||
| 1249 | chip->playback_volume[stream][1] = 0; | ||
| 1250 | chip->dxs_controls[stream]->vd[0].access &= | ||
| 1251 | ~SNDRV_CTL_ELEM_ACCESS_INACTIVE; | ||
| 1252 | snd_ctl_notify(chip->card, SNDRV_CTL_EVENT_MASK_VALUE | | ||
| 1253 | SNDRV_CTL_EVENT_MASK_INFO, | ||
| 1254 | &chip->dxs_controls[stream]->id); | ||
| 1255 | } | ||
| 1256 | return 0; | ||
| 1257 | } | ||
| 1258 | |||
| 1259 | /* | ||
| 1233 | * open callback for playback on via823x multi-channel | 1260 | * open callback for playback on via823x multi-channel |
| 1234 | */ | 1261 | */ |
| 1235 | static int snd_via8233_multi_open(struct snd_pcm_substream *substream) | 1262 | static int snd_via8233_multi_open(struct snd_pcm_substream *substream) |
| @@ -1302,10 +1329,26 @@ static int snd_via82xx_pcm_close(struct snd_pcm_substream *substream) | |||
| 1302 | return 0; | 1329 | return 0; |
| 1303 | } | 1330 | } |
| 1304 | 1331 | ||
| 1332 | static int snd_via8233_playback_close(struct snd_pcm_substream *substream) | ||
| 1333 | { | ||
| 1334 | struct via82xx *chip = snd_pcm_substream_chip(substream); | ||
| 1335 | struct viadev *viadev = substream->runtime->private_data; | ||
| 1336 | unsigned int stream; | ||
| 1337 | |||
| 1338 | stream = viadev->reg_offset / 0x10; | ||
| 1339 | if (chip->dxs_controls[stream]) { | ||
| 1340 | chip->dxs_controls[stream]->vd[0].access |= | ||
| 1341 | SNDRV_CTL_ELEM_ACCESS_INACTIVE; | ||
| 1342 | snd_ctl_notify(chip->card, SNDRV_CTL_EVENT_MASK_INFO, | ||
| 1343 | &chip->dxs_controls[stream]->id); | ||
| 1344 | } | ||
| 1345 | return snd_via82xx_pcm_close(substream); | ||
| 1346 | } | ||
| 1347 | |||
| 1305 | 1348 | ||
| 1306 | /* via686 playback callbacks */ | 1349 | /* via686 playback callbacks */ |
| 1307 | static struct snd_pcm_ops snd_via686_playback_ops = { | 1350 | static struct snd_pcm_ops snd_via686_playback_ops = { |
| 1308 | .open = snd_via82xx_playback_open, | 1351 | .open = snd_via686_playback_open, |
| 1309 | .close = snd_via82xx_pcm_close, | 1352 | .close = snd_via82xx_pcm_close, |
| 1310 | .ioctl = snd_pcm_lib_ioctl, | 1353 | .ioctl = snd_pcm_lib_ioctl, |
| 1311 | .hw_params = snd_via82xx_hw_params, | 1354 | .hw_params = snd_via82xx_hw_params, |
| @@ -1331,8 +1374,8 @@ static struct snd_pcm_ops snd_via686_capture_ops = { | |||
| 1331 | 1374 | ||
| 1332 | /* via823x DSX playback callbacks */ | 1375 | /* via823x DSX playback callbacks */ |
| 1333 | static struct snd_pcm_ops snd_via8233_playback_ops = { | 1376 | static struct snd_pcm_ops snd_via8233_playback_ops = { |
| 1334 | .open = snd_via82xx_playback_open, | 1377 | .open = snd_via8233_playback_open, |
| 1335 | .close = snd_via82xx_pcm_close, | 1378 | .close = snd_via8233_playback_close, |
| 1336 | .ioctl = snd_pcm_lib_ioctl, | 1379 | .ioctl = snd_pcm_lib_ioctl, |
| 1337 | .hw_params = snd_via82xx_hw_params, | 1380 | .hw_params = snd_via82xx_hw_params, |
| 1338 | .hw_free = snd_via82xx_hw_free, | 1381 | .hw_free = snd_via82xx_hw_free, |
| @@ -1709,8 +1752,9 @@ static struct snd_kcontrol_new snd_via8233_dxs_volume_control __devinitdata = { | |||
| 1709 | .device = 0, | 1752 | .device = 0, |
| 1710 | /* .subdevice set later */ | 1753 | /* .subdevice set later */ |
| 1711 | .name = "PCM Playback Volume", | 1754 | .name = "PCM Playback Volume", |
| 1712 | .access = (SNDRV_CTL_ELEM_ACCESS_READWRITE | | 1755 | .access = SNDRV_CTL_ELEM_ACCESS_READWRITE | |
| 1713 | SNDRV_CTL_ELEM_ACCESS_TLV_READ), | 1756 | SNDRV_CTL_ELEM_ACCESS_TLV_READ | |
| 1757 | SNDRV_CTL_ELEM_ACCESS_INACTIVE, | ||
| 1714 | .info = snd_via8233_dxs_volume_info, | 1758 | .info = snd_via8233_dxs_volume_info, |
| 1715 | .get = snd_via8233_dxs_volume_get, | 1759 | .get = snd_via8233_dxs_volume_get, |
| 1716 | .put = snd_via8233_dxs_volume_put, | 1760 | .put = snd_via8233_dxs_volume_put, |
| @@ -1948,6 +1992,7 @@ static int __devinit snd_via8233_init_misc(struct via82xx *chip) | |||
| 1948 | err = snd_ctl_add(chip->card, kctl); | 1992 | err = snd_ctl_add(chip->card, kctl); |
| 1949 | if (err < 0) | 1993 | if (err < 0) |
| 1950 | return err; | 1994 | return err; |
| 1995 | chip->dxs_controls[i] = kctl; | ||
| 1951 | } | 1996 | } |
| 1952 | } | 1997 | } |
| 1953 | } | 1998 | } |
diff --git a/sound/pcmcia/pdaudiocf/pdaudiocf.c b/sound/pcmcia/pdaudiocf/pdaudiocf.c index 7dea74b71cf1..64b859925c0b 100644 --- a/sound/pcmcia/pdaudiocf/pdaudiocf.c +++ b/sound/pcmcia/pdaudiocf/pdaudiocf.c | |||
| @@ -217,20 +217,25 @@ static void snd_pdacf_detach(struct pcmcia_device *link) | |||
| 217 | * configuration callback | 217 | * configuration callback |
| 218 | */ | 218 | */ |
| 219 | 219 | ||
| 220 | #define CS_CHECK(fn, ret) \ | ||
| 221 | do { last_fn = (fn); if ((last_ret = (ret)) != 0) goto cs_failed; } while (0) | ||
| 222 | |||
| 223 | static int pdacf_config(struct pcmcia_device *link) | 220 | static int pdacf_config(struct pcmcia_device *link) |
| 224 | { | 221 | { |
| 225 | struct snd_pdacf *pdacf = link->priv; | 222 | struct snd_pdacf *pdacf = link->priv; |
| 226 | int last_fn, last_ret; | 223 | int ret; |
| 227 | 224 | ||
| 228 | snd_printdd(KERN_DEBUG "pdacf_config called\n"); | 225 | snd_printdd(KERN_DEBUG "pdacf_config called\n"); |
| 229 | link->conf.ConfigIndex = 0x5; | 226 | link->conf.ConfigIndex = 0x5; |
| 230 | 227 | ||
| 231 | CS_CHECK(RequestIO, pcmcia_request_io(link, &link->io)); | 228 | ret = pcmcia_request_io(link, &link->io); |
| 232 | CS_CHECK(RequestIRQ, pcmcia_request_irq(link, &link->irq)); | 229 | if (ret) |
| 233 | CS_CHECK(RequestConfiguration, pcmcia_request_configuration(link, &link->conf)); | 230 | goto failed; |
| 231 | |||
| 232 | ret = pcmcia_request_irq(link, &link->irq); | ||
| 233 | if (ret) | ||
| 234 | goto failed; | ||
| 235 | |||
| 236 | ret = pcmcia_request_configuration(link, &link->conf); | ||
| 237 | if (ret) | ||
| 238 | goto failed; | ||
| 234 | 239 | ||
| 235 | if (snd_pdacf_assign_resources(pdacf, link->io.BasePort1, link->irq.AssignedIRQ) < 0) | 240 | if (snd_pdacf_assign_resources(pdacf, link->io.BasePort1, link->irq.AssignedIRQ) < 0) |
| 236 | goto failed; | 241 | goto failed; |
| @@ -238,8 +243,6 @@ static int pdacf_config(struct pcmcia_device *link) | |||
| 238 | link->dev_node = &pdacf->node; | 243 | link->dev_node = &pdacf->node; |
| 239 | return 0; | 244 | return 0; |
| 240 | 245 | ||
| 241 | cs_failed: | ||
| 242 | cs_error(link, last_fn, last_ret); | ||
| 243 | failed: | 246 | failed: |
| 244 | pcmcia_disable_device(link); | 247 | pcmcia_disable_device(link); |
| 245 | return -ENODEV; | 248 | return -ENODEV; |
diff --git a/sound/pcmcia/vx/vxpocket.c b/sound/pcmcia/vx/vxpocket.c index 7445cc8a47d3..1492744ad67f 100644 --- a/sound/pcmcia/vx/vxpocket.c +++ b/sound/pcmcia/vx/vxpocket.c | |||
| @@ -213,14 +213,11 @@ static int snd_vxpocket_assign_resources(struct vx_core *chip, int port, int irq | |||
| 213 | * configuration callback | 213 | * configuration callback |
| 214 | */ | 214 | */ |
| 215 | 215 | ||
| 216 | #define CS_CHECK(fn, ret) \ | ||
| 217 | do { last_fn = (fn); if ((last_ret = (ret)) != 0) goto cs_failed; } while (0) | ||
| 218 | |||
| 219 | static int vxpocket_config(struct pcmcia_device *link) | 216 | static int vxpocket_config(struct pcmcia_device *link) |
| 220 | { | 217 | { |
| 221 | struct vx_core *chip = link->priv; | 218 | struct vx_core *chip = link->priv; |
| 222 | struct snd_vxpocket *vxp = (struct snd_vxpocket *)chip; | 219 | struct snd_vxpocket *vxp = (struct snd_vxpocket *)chip; |
| 223 | int last_fn, last_ret; | 220 | int ret; |
| 224 | 221 | ||
| 225 | snd_printdd(KERN_DEBUG "vxpocket_config called\n"); | 222 | snd_printdd(KERN_DEBUG "vxpocket_config called\n"); |
| 226 | 223 | ||
| @@ -235,9 +232,17 @@ static int vxpocket_config(struct pcmcia_device *link) | |||
| 235 | strcpy(chip->card->driver, vxp440_hw.name); | 232 | strcpy(chip->card->driver, vxp440_hw.name); |
| 236 | } | 233 | } |
| 237 | 234 | ||
| 238 | CS_CHECK(RequestIO, pcmcia_request_io(link, &link->io)); | 235 | ret = pcmcia_request_io(link, &link->io); |
| 239 | CS_CHECK(RequestIRQ, pcmcia_request_irq(link, &link->irq)); | 236 | if (ret) |
| 240 | CS_CHECK(RequestConfiguration, pcmcia_request_configuration(link, &link->conf)); | 237 | goto failed; |
| 238 | |||
| 239 | ret = pcmcia_request_irq(link, &link->irq); | ||
| 240 | if (ret) | ||
| 241 | goto failed; | ||
| 242 | |||
| 243 | ret = pcmcia_request_configuration(link, &link->conf); | ||
| 244 | if (ret) | ||
| 245 | goto failed; | ||
| 241 | 246 | ||
| 242 | chip->dev = &handle_to_dev(link); | 247 | chip->dev = &handle_to_dev(link); |
| 243 | snd_card_set_dev(chip->card, chip->dev); | 248 | snd_card_set_dev(chip->card, chip->dev); |
| @@ -248,8 +253,6 @@ static int vxpocket_config(struct pcmcia_device *link) | |||
| 248 | link->dev_node = &vxp->node; | 253 | link->dev_node = &vxp->node; |
| 249 | return 0; | 254 | return 0; |
| 250 | 255 | ||
| 251 | cs_failed: | ||
| 252 | cs_error(link, last_fn, last_ret); | ||
| 253 | failed: | 256 | failed: |
| 254 | pcmcia_disable_device(link); | 257 | pcmcia_disable_device(link); |
| 255 | return -ENODEV; | 258 | return -ENODEV; |
diff --git a/sound/soc/omap/Kconfig b/sound/soc/omap/Kconfig index 2dee9839be86..653a362425df 100644 --- a/sound/soc/omap/Kconfig +++ b/sound/soc/omap/Kconfig | |||
| @@ -21,7 +21,18 @@ config SND_OMAP_SOC_AMS_DELTA | |||
| 21 | select SND_OMAP_SOC_MCBSP | 21 | select SND_OMAP_SOC_MCBSP |
| 22 | select SND_SOC_CX20442 | 22 | select SND_SOC_CX20442 |
| 23 | help | 23 | help |
| 24 | Say Y if you want to add support for SoC audio on Amstrad Delta. | 24 | Say Y if you want to add support for SoC audio device connected to |
| 25 | a handset and a speakerphone found on Amstrad E3 (Delta) videophone. | ||
| 26 | |||
| 27 | Note that in order to get those devices fully supported, you have to | ||
| 28 | build the kernel with standard serial port driver included and | ||
| 29 | configured for at least 4 ports. Then, from userspace, you must load | ||
| 30 | a line discipline #19 on the modem (ttyS3) serial line. The simplest | ||
| 31 | way to achieve this is to install util-linux-ng and use the included | ||
| 32 | ldattach utility. This can be started automatically from udev, | ||
| 33 | a simple rule like this one should do the trick (it does for me): | ||
| 34 | ACTION=="add", KERNEL=="controlC0", \ | ||
| 35 | RUN+="/usr/sbin/ldattach 19 /dev/ttyS3" | ||
| 25 | 36 | ||
| 26 | config SND_OMAP_SOC_OSK5912 | 37 | config SND_OMAP_SOC_OSK5912 |
| 27 | tristate "SoC Audio support for omap osk5912" | 38 | tristate "SoC Audio support for omap osk5912" |
diff --git a/sound/soc/s3c24xx/s3c24xx-pcm.c b/sound/soc/s3c24xx/s3c24xx-pcm.c index 5cbbdc80fde3..1f35c6fcf5fd 100644 --- a/sound/soc/s3c24xx/s3c24xx-pcm.c +++ b/sound/soc/s3c24xx/s3c24xx-pcm.c | |||
| @@ -75,11 +75,19 @@ static void s3c24xx_pcm_enqueue(struct snd_pcm_substream *substream) | |||
| 75 | { | 75 | { |
| 76 | struct s3c24xx_runtime_data *prtd = substream->runtime->private_data; | 76 | struct s3c24xx_runtime_data *prtd = substream->runtime->private_data; |
| 77 | dma_addr_t pos = prtd->dma_pos; | 77 | dma_addr_t pos = prtd->dma_pos; |
| 78 | unsigned int limit; | ||
| 78 | int ret; | 79 | int ret; |
| 79 | 80 | ||
| 80 | pr_debug("Entered %s\n", __func__); | 81 | pr_debug("Entered %s\n", __func__); |
| 81 | 82 | ||
| 82 | while (prtd->dma_loaded < prtd->dma_limit) { | 83 | if (s3c_dma_has_circular()) { |
| 84 | limit = (prtd->dma_end - prtd->dma_start) / prtd->dma_period; | ||
| 85 | } else | ||
| 86 | limit = prtd->dma_limit; | ||
| 87 | |||
| 88 | pr_debug("%s: loaded %d, limit %d\n", __func__, prtd->dma_loaded, limit); | ||
| 89 | |||
| 90 | while (prtd->dma_loaded < limit) { | ||
| 83 | unsigned long len = prtd->dma_period; | 91 | unsigned long len = prtd->dma_period; |
| 84 | 92 | ||
| 85 | pr_debug("dma_loaded: %d\n", prtd->dma_loaded); | 93 | pr_debug("dma_loaded: %d\n", prtd->dma_loaded); |
| @@ -123,7 +131,7 @@ static void s3c24xx_audio_buffdone(struct s3c2410_dma_chan *channel, | |||
| 123 | snd_pcm_period_elapsed(substream); | 131 | snd_pcm_period_elapsed(substream); |
| 124 | 132 | ||
| 125 | spin_lock(&prtd->lock); | 133 | spin_lock(&prtd->lock); |
| 126 | if (prtd->state & ST_RUNNING) { | 134 | if (prtd->state & ST_RUNNING && !s3c_dma_has_circular()) { |
| 127 | prtd->dma_loaded--; | 135 | prtd->dma_loaded--; |
| 128 | s3c24xx_pcm_enqueue(substream); | 136 | s3c24xx_pcm_enqueue(substream); |
| 129 | } | 137 | } |
| @@ -164,6 +172,11 @@ static int s3c24xx_pcm_hw_params(struct snd_pcm_substream *substream, | |||
| 164 | printk(KERN_ERR "failed to get dma channel\n"); | 172 | printk(KERN_ERR "failed to get dma channel\n"); |
| 165 | return ret; | 173 | return ret; |
| 166 | } | 174 | } |
| 175 | |||
| 176 | /* use the circular buffering if we have it available. */ | ||
| 177 | if (s3c_dma_has_circular()) | ||
| 178 | s3c2410_dma_setflags(prtd->params->channel, | ||
| 179 | S3C2410_DMAF_CIRCULAR); | ||
| 167 | } | 180 | } |
| 168 | 181 | ||
| 169 | s3c2410_dma_set_buffdone_fn(prtd->params->channel, | 182 | s3c2410_dma_set_buffdone_fn(prtd->params->channel, |
diff --git a/sound/soc/soc-core.c b/sound/soc/soc-core.c index 7ff04ad2a97e..0a1b2f64bbee 100644 --- a/sound/soc/soc-core.c +++ b/sound/soc/soc-core.c | |||
| @@ -834,6 +834,9 @@ EXPORT_SYMBOL_GPL(snd_soc_resume_device); | |||
| 834 | #define soc_resume NULL | 834 | #define soc_resume NULL |
| 835 | #endif | 835 | #endif |
| 836 | 836 | ||
| 837 | static struct snd_soc_dai_ops null_dai_ops = { | ||
| 838 | }; | ||
| 839 | |||
| 837 | static void snd_soc_instantiate_card(struct snd_soc_card *card) | 840 | static void snd_soc_instantiate_card(struct snd_soc_card *card) |
| 838 | { | 841 | { |
| 839 | struct platform_device *pdev = container_of(card->dev, | 842 | struct platform_device *pdev = container_of(card->dev, |
| @@ -877,6 +880,11 @@ static void snd_soc_instantiate_card(struct snd_soc_card *card) | |||
| 877 | ac97 = 1; | 880 | ac97 = 1; |
| 878 | } | 881 | } |
| 879 | 882 | ||
| 883 | for (i = 0; i < card->num_links; i++) { | ||
| 884 | if (!card->dai_link[i].codec_dai->ops) | ||
| 885 | card->dai_link[i].codec_dai->ops = &null_dai_ops; | ||
| 886 | } | ||
| 887 | |||
| 880 | /* If we have AC97 in the system then don't wait for the | 888 | /* If we have AC97 in the system then don't wait for the |
| 881 | * codec. This will need revisiting if we have to handle | 889 | * codec. This will need revisiting if we have to handle |
| 882 | * systems with mixed AC97 and non-AC97 parts. Only check for | 890 | * systems with mixed AC97 and non-AC97 parts. Only check for |
| @@ -2329,9 +2337,6 @@ static int snd_soc_unregister_card(struct snd_soc_card *card) | |||
| 2329 | return 0; | 2337 | return 0; |
| 2330 | } | 2338 | } |
| 2331 | 2339 | ||
| 2332 | static struct snd_soc_dai_ops null_dai_ops = { | ||
| 2333 | }; | ||
| 2334 | |||
| 2335 | /** | 2340 | /** |
| 2336 | * snd_soc_register_dai - Register a DAI with the ASoC core | 2341 | * snd_soc_register_dai - Register a DAI with the ASoC core |
| 2337 | * | 2342 | * |
diff --git a/sound/soc/soc-dapm.c b/sound/soc/soc-dapm.c index 8de6f9dec4a2..d89f6dc00908 100644 --- a/sound/soc/soc-dapm.c +++ b/sound/soc/soc-dapm.c | |||
| @@ -2072,9 +2072,9 @@ int snd_soc_dapm_stream_event(struct snd_soc_codec *codec, | |||
| 2072 | } | 2072 | } |
| 2073 | } | 2073 | } |
| 2074 | } | 2074 | } |
| 2075 | mutex_unlock(&codec->mutex); | ||
| 2076 | 2075 | ||
| 2077 | dapm_power_widgets(codec, event); | 2076 | dapm_power_widgets(codec, event); |
| 2077 | mutex_unlock(&codec->mutex); | ||
| 2078 | dump_dapm(codec, __func__); | 2078 | dump_dapm(codec, __func__); |
| 2079 | return 0; | 2079 | return 0; |
| 2080 | } | 2080 | } |
diff --git a/sound/usb/caiaq/audio.c b/sound/usb/caiaq/audio.c index 121af0644fd9..86b2c3b92df5 100644 --- a/sound/usb/caiaq/audio.c +++ b/sound/usb/caiaq/audio.c | |||
| @@ -62,10 +62,14 @@ static void | |||
| 62 | activate_substream(struct snd_usb_caiaqdev *dev, | 62 | activate_substream(struct snd_usb_caiaqdev *dev, |
| 63 | struct snd_pcm_substream *sub) | 63 | struct snd_pcm_substream *sub) |
| 64 | { | 64 | { |
| 65 | spin_lock(&dev->spinlock); | ||
| 66 | |||
| 65 | if (sub->stream == SNDRV_PCM_STREAM_PLAYBACK) | 67 | if (sub->stream == SNDRV_PCM_STREAM_PLAYBACK) |
| 66 | dev->sub_playback[sub->number] = sub; | 68 | dev->sub_playback[sub->number] = sub; |
| 67 | else | 69 | else |
| 68 | dev->sub_capture[sub->number] = sub; | 70 | dev->sub_capture[sub->number] = sub; |
| 71 | |||
| 72 | spin_unlock(&dev->spinlock); | ||
| 69 | } | 73 | } |
| 70 | 74 | ||
| 71 | static void | 75 | static void |
| @@ -269,16 +273,22 @@ snd_usb_caiaq_pcm_pointer(struct snd_pcm_substream *sub) | |||
| 269 | { | 273 | { |
| 270 | int index = sub->number; | 274 | int index = sub->number; |
| 271 | struct snd_usb_caiaqdev *dev = snd_pcm_substream_chip(sub); | 275 | struct snd_usb_caiaqdev *dev = snd_pcm_substream_chip(sub); |
| 276 | snd_pcm_uframes_t ptr; | ||
| 277 | |||
| 278 | spin_lock(&dev->spinlock); | ||
| 272 | 279 | ||
| 273 | if (dev->input_panic || dev->output_panic) | 280 | if (dev->input_panic || dev->output_panic) |
| 274 | return SNDRV_PCM_POS_XRUN; | 281 | ptr = SNDRV_PCM_POS_XRUN; |
| 275 | 282 | ||
| 276 | if (sub->stream == SNDRV_PCM_STREAM_PLAYBACK) | 283 | if (sub->stream == SNDRV_PCM_STREAM_PLAYBACK) |
| 277 | return bytes_to_frames(sub->runtime, | 284 | ptr = bytes_to_frames(sub->runtime, |
| 278 | dev->audio_out_buf_pos[index]); | 285 | dev->audio_out_buf_pos[index]); |
| 279 | else | 286 | else |
| 280 | return bytes_to_frames(sub->runtime, | 287 | ptr = bytes_to_frames(sub->runtime, |
| 281 | dev->audio_in_buf_pos[index]); | 288 | dev->audio_in_buf_pos[index]); |
| 289 | |||
| 290 | spin_unlock(&dev->spinlock); | ||
| 291 | return ptr; | ||
| 282 | } | 292 | } |
| 283 | 293 | ||
| 284 | /* operators for both playback and capture */ | 294 | /* operators for both playback and capture */ |
diff --git a/sound/usb/caiaq/device.c b/sound/usb/caiaq/device.c index 83e6c1312d47..a3f02dd97440 100644 --- a/sound/usb/caiaq/device.c +++ b/sound/usb/caiaq/device.c | |||
| @@ -35,7 +35,7 @@ | |||
| 35 | #include "input.h" | 35 | #include "input.h" |
| 36 | 36 | ||
| 37 | MODULE_AUTHOR("Daniel Mack <daniel@caiaq.de>"); | 37 | MODULE_AUTHOR("Daniel Mack <daniel@caiaq.de>"); |
| 38 | MODULE_DESCRIPTION("caiaq USB audio, version 1.3.19"); | 38 | MODULE_DESCRIPTION("caiaq USB audio, version 1.3.20"); |
| 39 | MODULE_LICENSE("GPL"); | 39 | MODULE_LICENSE("GPL"); |
| 40 | MODULE_SUPPORTED_DEVICE("{{Native Instruments, RigKontrol2}," | 40 | MODULE_SUPPORTED_DEVICE("{{Native Instruments, RigKontrol2}," |
| 41 | "{Native Instruments, RigKontrol3}," | 41 | "{Native Instruments, RigKontrol3}," |
diff --git a/tools/perf/Makefile b/tools/perf/Makefile index 742a32eee8fc..7e190d522cd5 100644 --- a/tools/perf/Makefile +++ b/tools/perf/Makefile | |||
| @@ -177,8 +177,7 @@ endif | |||
| 177 | # Include saner warnings here, which can catch bugs: | 177 | # Include saner warnings here, which can catch bugs: |
| 178 | # | 178 | # |
| 179 | 179 | ||
| 180 | EXTRA_WARNINGS := -Wcast-align | 180 | EXTRA_WARNINGS := -Wformat |
| 181 | EXTRA_WARNINGS := $(EXTRA_WARNINGS) -Wformat | ||
| 182 | EXTRA_WARNINGS := $(EXTRA_WARNINGS) -Wformat-security | 181 | EXTRA_WARNINGS := $(EXTRA_WARNINGS) -Wformat-security |
| 183 | EXTRA_WARNINGS := $(EXTRA_WARNINGS) -Wformat-y2k | 182 | EXTRA_WARNINGS := $(EXTRA_WARNINGS) -Wformat-y2k |
| 184 | EXTRA_WARNINGS := $(EXTRA_WARNINGS) -Wshadow | 183 | EXTRA_WARNINGS := $(EXTRA_WARNINGS) -Wshadow |
| @@ -422,7 +421,11 @@ ifeq ($(uname_S),Darwin) | |||
| 422 | PTHREAD_LIBS = | 421 | PTHREAD_LIBS = |
| 423 | endif | 422 | endif |
| 424 | 423 | ||
| 425 | ifneq ($(shell sh -c "(echo '\#include <libelf.h>'; echo 'int main(void) { Elf * elf = elf_begin(0, ELF_C_READ_MMAP, 0); return (long)elf; }') | $(CC) -x c - $(ALL_CFLAGS) -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -o /dev/null $(ALL_LDFLAGS) > /dev/null 2>&1 && echo y"), y) | 424 | ifeq ($(shell sh -c "(echo '\#include <libelf.h>'; echo 'int main(void) { Elf * elf = elf_begin(0, ELF_C_READ, 0); return (long)elf; }') | $(CC) -x c - $(ALL_CFLAGS) -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -o /dev/null $(ALL_LDFLAGS) > /dev/null 2>&1 && echo y"), y) |
| 425 | ifneq ($(shell sh -c "(echo '\#include <libelf.h>'; echo 'int main(void) { Elf * elf = elf_begin(0, ELF_C_READ_MMAP, 0); return (long)elf; }') | $(CC) -x c - $(ALL_CFLAGS) -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -o /dev/null $(ALL_LDFLAGS) > /dev/null 2>&1 && echo y"), y) | ||
| 426 | BASIC_CFLAGS += -DLIBELF_NO_MMAP | ||
| 427 | endif | ||
| 428 | else | ||
| 426 | msg := $(error No libelf.h/libelf found, please install libelf-dev/elfutils-libelf-devel and glibc-dev[el]); | 429 | msg := $(error No libelf.h/libelf found, please install libelf-dev/elfutils-libelf-devel and glibc-dev[el]); |
| 427 | endif | 430 | endif |
| 428 | 431 | ||
diff --git a/tools/perf/util/symbol.c b/tools/perf/util/symbol.c index 47ea0609a760..226f44a2357d 100644 --- a/tools/perf/util/symbol.c +++ b/tools/perf/util/symbol.c | |||
| @@ -413,7 +413,7 @@ static int dso__synthesize_plt_symbols(struct dso *self, int v) | |||
| 413 | if (fd < 0) | 413 | if (fd < 0) |
| 414 | goto out; | 414 | goto out; |
| 415 | 415 | ||
| 416 | elf = elf_begin(fd, ELF_C_READ_MMAP, NULL); | 416 | elf = elf_begin(fd, PERF_ELF_C_READ_MMAP, NULL); |
| 417 | if (elf == NULL) | 417 | if (elf == NULL) |
| 418 | goto out_close; | 418 | goto out_close; |
| 419 | 419 | ||
| @@ -533,7 +533,7 @@ static int dso__load_sym(struct dso *self, int fd, const char *name, | |||
| 533 | Elf *elf; | 533 | Elf *elf; |
| 534 | int nr = 0, kernel = !strcmp("[kernel]", self->name); | 534 | int nr = 0, kernel = !strcmp("[kernel]", self->name); |
| 535 | 535 | ||
| 536 | elf = elf_begin(fd, ELF_C_READ_MMAP, NULL); | 536 | elf = elf_begin(fd, PERF_ELF_C_READ_MMAP, NULL); |
| 537 | if (elf == NULL) { | 537 | if (elf == NULL) { |
| 538 | if (v) | 538 | if (v) |
| 539 | fprintf(stderr, "%s: cannot read %s ELF file.\n", | 539 | fprintf(stderr, "%s: cannot read %s ELF file.\n", |
| @@ -675,7 +675,7 @@ static char *dso__read_build_id(struct dso *self, int v) | |||
| 675 | if (fd < 0) | 675 | if (fd < 0) |
| 676 | goto out; | 676 | goto out; |
| 677 | 677 | ||
| 678 | elf = elf_begin(fd, ELF_C_READ_MMAP, NULL); | 678 | elf = elf_begin(fd, PERF_ELF_C_READ_MMAP, NULL); |
| 679 | if (elf == NULL) { | 679 | if (elf == NULL) { |
| 680 | if (v) | 680 | if (v) |
| 681 | fprintf(stderr, "%s: cannot read %s ELF file.\n", | 681 | fprintf(stderr, "%s: cannot read %s ELF file.\n", |
diff --git a/tools/perf/util/symbol.h b/tools/perf/util/symbol.h index 6e8490716408..829da9edba64 100644 --- a/tools/perf/util/symbol.h +++ b/tools/perf/util/symbol.h | |||
| @@ -27,6 +27,16 @@ static inline char *bfd_demangle(void __used *v, const char __used *c, | |||
| 27 | #endif | 27 | #endif |
| 28 | #endif | 28 | #endif |
| 29 | 29 | ||
| 30 | /* | ||
| 31 | * libelf 0.8.x and earlier do not support ELF_C_READ_MMAP; | ||
| 32 | * for newer versions we can use mmap to reduce memory usage: | ||
| 33 | */ | ||
| 34 | #ifdef LIBELF_NO_MMAP | ||
| 35 | # define PERF_ELF_C_READ_MMAP ELF_C_READ | ||
| 36 | #else | ||
| 37 | # define PERF_ELF_C_READ_MMAP ELF_C_READ_MMAP | ||
| 38 | #endif | ||
| 39 | |||
| 30 | #ifndef DMGL_PARAMS | 40 | #ifndef DMGL_PARAMS |
| 31 | #define DMGL_PARAMS (1 << 0) /* Include function args */ | 41 | #define DMGL_PARAMS (1 << 0) /* Include function args */ |
| 32 | #define DMGL_ANSI (1 << 1) /* Include const, volatile, etc */ | 42 | #define DMGL_ANSI (1 << 1) /* Include const, volatile, etc */ |
