diff options
author | Ingo Molnar <mingo@elte.hu> | 2008-07-31 06:38:04 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-07-31 06:38:04 -0400 |
commit | 5fbf24659b75356e2142e1f1b88f67b34cbc3e75 (patch) | |
tree | 0e470e4cc89b72e3d74939f8c39396a6a0bebb3a | |
parent | d89961e2dc87b6e30b8e3f60bd2af5cd92cf4643 (diff) | |
parent | 6e86841d05f371b5b9b86ce76c02aaee83352298 (diff) |
Merge branch 'linus' into x86/xen
1011 files changed, 22281 insertions, 12753 deletions
diff --git a/Documentation/SubmittingPatches b/Documentation/SubmittingPatches index 118ca6e9404f..f79ad9ff6031 100644 --- a/Documentation/SubmittingPatches +++ b/Documentation/SubmittingPatches | |||
@@ -528,7 +528,33 @@ See more details on the proper patch format in the following | |||
528 | references. | 528 | references. |
529 | 529 | ||
530 | 530 | ||
531 | 16) Sending "git pull" requests (from Linus emails) | ||
531 | 532 | ||
533 | Please write the git repo address and branch name alone on the same line | ||
534 | so that I can't even by mistake pull from the wrong branch, and so | ||
535 | that a triple-click just selects the whole thing. | ||
536 | |||
537 | So the proper format is something along the lines of: | ||
538 | |||
539 | "Please pull from | ||
540 | |||
541 | git://jdelvare.pck.nerim.net/jdelvare-2.6 i2c-for-linus | ||
542 | |||
543 | to get these changes:" | ||
544 | |||
545 | so that I don't have to hunt-and-peck for the address and inevitably | ||
546 | get it wrong (actually, I've only gotten it wrong a few times, and | ||
547 | checking against the diffstat tells me when I get it wrong, but I'm | ||
548 | just a lot more comfortable when I don't have to "look for" the right | ||
549 | thing to pull, and double-check that I have the right branch-name). | ||
550 | |||
551 | |||
552 | Please use "git diff -M --stat --summary" to generate the diffstat: | ||
553 | the -M enables rename detection, and the summary enables a summary of | ||
554 | new/deleted or renamed files. | ||
555 | |||
556 | With rename detection, the statistics are rather different [...] | ||
557 | because git will notice that a fair number of the changes are renames. | ||
532 | 558 | ||
533 | ----------------------------------- | 559 | ----------------------------------- |
534 | SECTION 2 - HINTS, TIPS, AND TRICKS | 560 | SECTION 2 - HINTS, TIPS, AND TRICKS |
diff --git a/Documentation/feature-removal-schedule.txt b/Documentation/feature-removal-schedule.txt index 721c71b86e06..c23955404bf5 100644 --- a/Documentation/feature-removal-schedule.txt +++ b/Documentation/feature-removal-schedule.txt | |||
@@ -47,6 +47,30 @@ Who: Mauro Carvalho Chehab <mchehab@infradead.org> | |||
47 | 47 | ||
48 | --------------------------- | 48 | --------------------------- |
49 | 49 | ||
50 | What: old tuner-3036 i2c driver | ||
51 | When: 2.6.28 | ||
52 | Why: This driver is for VERY old i2c-over-parallel port teletext receiver | ||
53 | boxes. Rather then spending effort on converting this driver to V4L2, | ||
54 | and since it is extremely unlikely that anyone still uses one of these | ||
55 | devices, it was decided to drop it. | ||
56 | Who: Hans Verkuil <hverkuil@xs4all.nl> | ||
57 | Mauro Carvalho Chehab <mchehab@infradead.org> | ||
58 | |||
59 | --------------------------- | ||
60 | |||
61 | What: V4L2 dpc7146 driver | ||
62 | When: 2.6.28 | ||
63 | Why: Old driver for the dpc7146 demonstration board that is no longer | ||
64 | relevant. The last time this was tested on actual hardware was | ||
65 | probably around 2002. Since this is a driver for a demonstration | ||
66 | board the decision was made to remove it rather than spending a | ||
67 | lot of effort continually updating this driver to stay in sync | ||
68 | with the latest internal V4L2 or I2C API. | ||
69 | Who: Hans Verkuil <hverkuil@xs4all.nl> | ||
70 | Mauro Carvalho Chehab <mchehab@infradead.org> | ||
71 | |||
72 | --------------------------- | ||
73 | |||
50 | What: PCMCIA control ioctl (needed for pcmcia-cs [cardmgr, cardctl]) | 74 | What: PCMCIA control ioctl (needed for pcmcia-cs [cardmgr, cardctl]) |
51 | When: November 2005 | 75 | When: November 2005 |
52 | Files: drivers/pcmcia/: pcmcia_ioctl.c | 76 | Files: drivers/pcmcia/: pcmcia_ioctl.c |
diff --git a/Documentation/i2c/upgrading-clients b/Documentation/i2c/upgrading-clients new file mode 100644 index 000000000000..9a45f9bb6a25 --- /dev/null +++ b/Documentation/i2c/upgrading-clients | |||
@@ -0,0 +1,281 @@ | |||
1 | Upgrading I2C Drivers to the new 2.6 Driver Model | ||
2 | ================================================= | ||
3 | |||
4 | Ben Dooks <ben-linux@fluff.org> | ||
5 | |||
6 | Introduction | ||
7 | ------------ | ||
8 | |||
9 | This guide outlines how to alter existing Linux 2.6 client drivers from | ||
10 | the old to the new new binding methods. | ||
11 | |||
12 | |||
13 | Example old-style driver | ||
14 | ------------------------ | ||
15 | |||
16 | |||
17 | struct example_state { | ||
18 | struct i2c_client client; | ||
19 | .... | ||
20 | }; | ||
21 | |||
22 | static struct i2c_driver example_driver; | ||
23 | |||
24 | static unsigned short ignore[] = { I2C_CLIENT_END }; | ||
25 | static unsigned short normal_addr[] = { OUR_ADDR, I2C_CLIENT_END }; | ||
26 | |||
27 | I2C_CLIENT_INSMOD; | ||
28 | |||
29 | static int example_attach(struct i2c_adapter *adap, int addr, int kind) | ||
30 | { | ||
31 | struct example_state *state; | ||
32 | struct device *dev = &adap->dev; /* to use for dev_ reports */ | ||
33 | int ret; | ||
34 | |||
35 | state = kzalloc(sizeof(struct example_state), GFP_KERNEL); | ||
36 | if (state == NULL) { | ||
37 | dev_err(dev, "failed to create our state\n"); | ||
38 | return -ENOMEM; | ||
39 | } | ||
40 | |||
41 | example->client.addr = addr; | ||
42 | example->client.flags = 0; | ||
43 | example->client.adapter = adap; | ||
44 | |||
45 | i2c_set_clientdata(&state->i2c_client, state); | ||
46 | strlcpy(client->i2c_client.name, "example", I2C_NAME_SIZE); | ||
47 | |||
48 | ret = i2c_attach_client(&state->i2c_client); | ||
49 | if (ret < 0) { | ||
50 | dev_err(dev, "failed to attach client\n"); | ||
51 | kfree(state); | ||
52 | return ret; | ||
53 | } | ||
54 | |||
55 | dev = &state->i2c_client.dev; | ||
56 | |||
57 | /* rest of the initialisation goes here. */ | ||
58 | |||
59 | dev_info(dev, "example client created\n"); | ||
60 | |||
61 | return 0; | ||
62 | } | ||
63 | |||
64 | static int __devexit example_detach(struct i2c_client *client) | ||
65 | { | ||
66 | struct example_state *state = i2c_get_clientdata(client); | ||
67 | |||
68 | i2c_detach_client(client); | ||
69 | kfree(state); | ||
70 | return 0; | ||
71 | } | ||
72 | |||
73 | static int example_attach_adapter(struct i2c_adapter *adap) | ||
74 | { | ||
75 | return i2c_probe(adap, &addr_data, example_attach); | ||
76 | } | ||
77 | |||
78 | static struct i2c_driver example_driver = { | ||
79 | .driver = { | ||
80 | .owner = THIS_MODULE, | ||
81 | .name = "example", | ||
82 | }, | ||
83 | .attach_adapter = example_attach_adapter, | ||
84 | .detach_client = __devexit_p(example_detach), | ||
85 | .suspend = example_suspend, | ||
86 | .resume = example_resume, | ||
87 | }; | ||
88 | |||
89 | |||
90 | Updating the client | ||
91 | ------------------- | ||
92 | |||
93 | The new style binding model will check against a list of supported | ||
94 | devices and their associated address supplied by the code registering | ||
95 | the busses. This means that the driver .attach_adapter and | ||
96 | .detach_adapter methods can be removed, along with the addr_data, | ||
97 | as follows: | ||
98 | |||
99 | - static struct i2c_driver example_driver; | ||
100 | |||
101 | - static unsigned short ignore[] = { I2C_CLIENT_END }; | ||
102 | - static unsigned short normal_addr[] = { OUR_ADDR, I2C_CLIENT_END }; | ||
103 | |||
104 | - I2C_CLIENT_INSMOD; | ||
105 | |||
106 | - static int example_attach_adapter(struct i2c_adapter *adap) | ||
107 | - { | ||
108 | - return i2c_probe(adap, &addr_data, example_attach); | ||
109 | - } | ||
110 | |||
111 | static struct i2c_driver example_driver = { | ||
112 | - .attach_adapter = example_attach_adapter, | ||
113 | - .detach_client = __devexit_p(example_detach), | ||
114 | } | ||
115 | |||
116 | Add the probe and remove methods to the i2c_driver, as so: | ||
117 | |||
118 | static struct i2c_driver example_driver = { | ||
119 | + .probe = example_probe, | ||
120 | + .remove = __devexit_p(example_remove), | ||
121 | } | ||
122 | |||
123 | Change the example_attach method to accept the new parameters | ||
124 | which include the i2c_client that it will be working with: | ||
125 | |||
126 | - static int example_attach(struct i2c_adapter *adap, int addr, int kind) | ||
127 | + static int example_probe(struct i2c_client *client, | ||
128 | + const struct i2c_device_id *id) | ||
129 | |||
130 | Change the name of example_attach to example_probe to align it with the | ||
131 | i2c_driver entry names. The rest of the probe routine will now need to be | ||
132 | changed as the i2c_client has already been setup for use. | ||
133 | |||
134 | The necessary client fields have already been setup before | ||
135 | the probe function is called, so the following client setup | ||
136 | can be removed: | ||
137 | |||
138 | - example->client.addr = addr; | ||
139 | - example->client.flags = 0; | ||
140 | - example->client.adapter = adap; | ||
141 | - | ||
142 | - strlcpy(client->i2c_client.name, "example", I2C_NAME_SIZE); | ||
143 | |||
144 | The i2c_set_clientdata is now: | ||
145 | |||
146 | - i2c_set_clientdata(&state->client, state); | ||
147 | + i2c_set_clientdata(client, state); | ||
148 | |||
149 | The call to i2c_attach_client is no longer needed, if the probe | ||
150 | routine exits successfully, then the driver will be automatically | ||
151 | attached by the core. Change the probe routine as so: | ||
152 | |||
153 | - ret = i2c_attach_client(&state->i2c_client); | ||
154 | - if (ret < 0) { | ||
155 | - dev_err(dev, "failed to attach client\n"); | ||
156 | - kfree(state); | ||
157 | - return ret; | ||
158 | - } | ||
159 | |||
160 | |||
161 | Remove the storage of 'struct i2c_client' from the 'struct example_state' | ||
162 | as we are provided with the i2c_client in our example_probe. Instead we | ||
163 | store a pointer to it for when it is needed. | ||
164 | |||
165 | struct example_state { | ||
166 | - struct i2c_client client; | ||
167 | + struct i2c_client *client; | ||
168 | |||
169 | the new i2c client as so: | ||
170 | |||
171 | - struct device *dev = &adap->dev; /* to use for dev_ reports */ | ||
172 | + struct device *dev = &i2c_client->dev; /* to use for dev_ reports */ | ||
173 | |||
174 | And remove the change after our client is attached, as the driver no | ||
175 | longer needs to register a new client structure with the core: | ||
176 | |||
177 | - dev = &state->i2c_client.dev; | ||
178 | |||
179 | In the probe routine, ensure that the new state has the client stored | ||
180 | in it: | ||
181 | |||
182 | static int example_probe(struct i2c_client *i2c_client, | ||
183 | const struct i2c_device_id *id) | ||
184 | { | ||
185 | struct example_state *state; | ||
186 | struct device *dev = &i2c_client->dev; | ||
187 | int ret; | ||
188 | |||
189 | state = kzalloc(sizeof(struct example_state), GFP_KERNEL); | ||
190 | if (state == NULL) { | ||
191 | dev_err(dev, "failed to create our state\n"); | ||
192 | return -ENOMEM; | ||
193 | } | ||
194 | |||
195 | + state->client = i2c_client; | ||
196 | |||
197 | Update the detach method, by changing the name to _remove and | ||
198 | to delete the i2c_detach_client call. It is possible that you | ||
199 | can also remove the ret variable as it is not not needed for | ||
200 | any of the core functions. | ||
201 | |||
202 | - static int __devexit example_detach(struct i2c_client *client) | ||
203 | + static int __devexit example_remove(struct i2c_client *client) | ||
204 | { | ||
205 | struct example_state *state = i2c_get_clientdata(client); | ||
206 | |||
207 | - i2c_detach_client(client); | ||
208 | |||
209 | And finally ensure that we have the correct ID table for the i2c-core | ||
210 | and other utilities: | ||
211 | |||
212 | + struct i2c_device_id example_idtable[] = { | ||
213 | + { "example", 0 }, | ||
214 | + { } | ||
215 | +}; | ||
216 | + | ||
217 | +MODULE_DEVICE_TABLE(i2c, example_idtable); | ||
218 | |||
219 | static struct i2c_driver example_driver = { | ||
220 | .driver = { | ||
221 | .owner = THIS_MODULE, | ||
222 | .name = "example", | ||
223 | }, | ||
224 | + .id_table = example_ids, | ||
225 | |||
226 | |||
227 | Our driver should now look like this: | ||
228 | |||
229 | struct example_state { | ||
230 | struct i2c_client *client; | ||
231 | .... | ||
232 | }; | ||
233 | |||
234 | static int example_probe(struct i2c_client *client, | ||
235 | const struct i2c_device_id *id) | ||
236 | { | ||
237 | struct example_state *state; | ||
238 | struct device *dev = &client->dev; | ||
239 | |||
240 | state = kzalloc(sizeof(struct example_state), GFP_KERNEL); | ||
241 | if (state == NULL) { | ||
242 | dev_err(dev, "failed to create our state\n"); | ||
243 | return -ENOMEM; | ||
244 | } | ||
245 | |||
246 | state->client = client; | ||
247 | i2c_set_clientdata(client, state); | ||
248 | |||
249 | /* rest of the initialisation goes here. */ | ||
250 | |||
251 | dev_info(dev, "example client created\n"); | ||
252 | |||
253 | return 0; | ||
254 | } | ||
255 | |||
256 | static int __devexit example_remove(struct i2c_client *client) | ||
257 | { | ||
258 | struct example_state *state = i2c_get_clientdata(client); | ||
259 | |||
260 | kfree(state); | ||
261 | return 0; | ||
262 | } | ||
263 | |||
264 | static struct i2c_device_id example_idtable[] = { | ||
265 | { "example", 0 }, | ||
266 | { } | ||
267 | }; | ||
268 | |||
269 | MODULE_DEVICE_TABLE(i2c, example_idtable); | ||
270 | |||
271 | static struct i2c_driver example_driver = { | ||
272 | .driver = { | ||
273 | .owner = THIS_MODULE, | ||
274 | .name = "example", | ||
275 | }, | ||
276 | .id_table = example_idtable, | ||
277 | .probe = example_probe, | ||
278 | .remove = __devexit_p(example_remove), | ||
279 | .suspend = example_suspend, | ||
280 | .resume = example_resume, | ||
281 | }; | ||
diff --git a/Documentation/kdump/kdump.txt b/Documentation/kdump/kdump.txt index 9691c7f5166c..0705040531a5 100644 --- a/Documentation/kdump/kdump.txt +++ b/Documentation/kdump/kdump.txt | |||
@@ -65,26 +65,26 @@ Install kexec-tools | |||
65 | 65 | ||
66 | 2) Download the kexec-tools user-space package from the following URL: | 66 | 2) Download the kexec-tools user-space package from the following URL: |
67 | 67 | ||
68 | http://www.kernel.org/pub/linux/kernel/people/horms/kexec-tools/kexec-tools-testing.tar.gz | 68 | http://www.kernel.org/pub/linux/kernel/people/horms/kexec-tools/kexec-tools.tar.gz |
69 | 69 | ||
70 | This is a symlink to the latest version, which at the time of writing is | 70 | This is a symlink to the latest version. |
71 | 20061214, the only release of kexec-tools-testing so far. As other versions | ||
72 | are released, the older ones will remain available at | ||
73 | http://www.kernel.org/pub/linux/kernel/people/horms/kexec-tools/ | ||
74 | 71 | ||
75 | Note: Latest kexec-tools-testing git tree is available at | 72 | The latest kexec-tools git tree is available at: |
76 | 73 | ||
77 | git://git.kernel.org/pub/scm/linux/kernel/git/horms/kexec-tools-testing.git | 74 | git://git.kernel.org/pub/scm/linux/kernel/git/horms/kexec-tools.git |
78 | or | 75 | or |
79 | http://www.kernel.org/git/?p=linux/kernel/git/horms/kexec-tools-testing.git;a=summary | 76 | http://www.kernel.org/git/?p=linux/kernel/git/horms/kexec-tools.git |
77 | |||
78 | More information about kexec-tools can be found at | ||
79 | http://www.kernel.org/pub/linux/kernel/people/horms/kexec-tools/README.html | ||
80 | 80 | ||
81 | 3) Unpack the tarball with the tar command, as follows: | 81 | 3) Unpack the tarball with the tar command, as follows: |
82 | 82 | ||
83 | tar xvpzf kexec-tools-testing.tar.gz | 83 | tar xvpzf kexec-tools.tar.gz |
84 | 84 | ||
85 | 4) Change to the kexec-tools directory, as follows: | 85 | 4) Change to the kexec-tools directory, as follows: |
86 | 86 | ||
87 | cd kexec-tools-testing-VERSION | 87 | cd kexec-tools-VERSION |
88 | 88 | ||
89 | 5) Configure the package, as follows: | 89 | 5) Configure the package, as follows: |
90 | 90 | ||
diff --git a/Documentation/lguest/lguest.c b/Documentation/lguest/lguest.c index 82fafe0429fe..b88b0ea54e90 100644 --- a/Documentation/lguest/lguest.c +++ b/Documentation/lguest/lguest.c | |||
@@ -36,11 +36,13 @@ | |||
36 | #include <sched.h> | 36 | #include <sched.h> |
37 | #include <limits.h> | 37 | #include <limits.h> |
38 | #include <stddef.h> | 38 | #include <stddef.h> |
39 | #include <signal.h> | ||
39 | #include "linux/lguest_launcher.h" | 40 | #include "linux/lguest_launcher.h" |
40 | #include "linux/virtio_config.h" | 41 | #include "linux/virtio_config.h" |
41 | #include "linux/virtio_net.h" | 42 | #include "linux/virtio_net.h" |
42 | #include "linux/virtio_blk.h" | 43 | #include "linux/virtio_blk.h" |
43 | #include "linux/virtio_console.h" | 44 | #include "linux/virtio_console.h" |
45 | #include "linux/virtio_rng.h" | ||
44 | #include "linux/virtio_ring.h" | 46 | #include "linux/virtio_ring.h" |
45 | #include "asm-x86/bootparam.h" | 47 | #include "asm-x86/bootparam.h" |
46 | /*L:110 We can ignore the 39 include files we need for this program, but I do | 48 | /*L:110 We can ignore the 39 include files we need for this program, but I do |
@@ -64,8 +66,8 @@ typedef uint8_t u8; | |||
64 | #endif | 66 | #endif |
65 | /* We can have up to 256 pages for devices. */ | 67 | /* We can have up to 256 pages for devices. */ |
66 | #define DEVICE_PAGES 256 | 68 | #define DEVICE_PAGES 256 |
67 | /* This will occupy 2 pages: it must be a power of 2. */ | 69 | /* This will occupy 3 pages: it must be a power of 2. */ |
68 | #define VIRTQUEUE_NUM 128 | 70 | #define VIRTQUEUE_NUM 256 |
69 | 71 | ||
70 | /*L:120 verbose is both a global flag and a macro. The C preprocessor allows | 72 | /*L:120 verbose is both a global flag and a macro. The C preprocessor allows |
71 | * this, and although I wouldn't recommend it, it works quite nicely here. */ | 73 | * this, and although I wouldn't recommend it, it works quite nicely here. */ |
@@ -74,12 +76,19 @@ static bool verbose; | |||
74 | do { if (verbose) printf(args); } while(0) | 76 | do { if (verbose) printf(args); } while(0) |
75 | /*:*/ | 77 | /*:*/ |
76 | 78 | ||
77 | /* The pipe to send commands to the waker process */ | 79 | /* File descriptors for the Waker. */ |
78 | static int waker_fd; | 80 | struct { |
81 | int pipe[2]; | ||
82 | int lguest_fd; | ||
83 | } waker_fds; | ||
84 | |||
79 | /* The pointer to the start of guest memory. */ | 85 | /* The pointer to the start of guest memory. */ |
80 | static void *guest_base; | 86 | static void *guest_base; |
81 | /* The maximum guest physical address allowed, and maximum possible. */ | 87 | /* The maximum guest physical address allowed, and maximum possible. */ |
82 | static unsigned long guest_limit, guest_max; | 88 | static unsigned long guest_limit, guest_max; |
89 | /* The pipe for signal hander to write to. */ | ||
90 | static int timeoutpipe[2]; | ||
91 | static unsigned int timeout_usec = 500; | ||
83 | 92 | ||
84 | /* a per-cpu variable indicating whose vcpu is currently running */ | 93 | /* a per-cpu variable indicating whose vcpu is currently running */ |
85 | static unsigned int __thread cpu_id; | 94 | static unsigned int __thread cpu_id; |
@@ -155,11 +164,14 @@ struct virtqueue | |||
155 | /* Last available index we saw. */ | 164 | /* Last available index we saw. */ |
156 | u16 last_avail_idx; | 165 | u16 last_avail_idx; |
157 | 166 | ||
158 | /* The routine to call when the Guest pings us. */ | 167 | /* The routine to call when the Guest pings us, or timeout. */ |
159 | void (*handle_output)(int fd, struct virtqueue *me); | 168 | void (*handle_output)(int fd, struct virtqueue *me, bool timeout); |
160 | 169 | ||
161 | /* Outstanding buffers */ | 170 | /* Outstanding buffers */ |
162 | unsigned int inflight; | 171 | unsigned int inflight; |
172 | |||
173 | /* Is this blocked awaiting a timer? */ | ||
174 | bool blocked; | ||
163 | }; | 175 | }; |
164 | 176 | ||
165 | /* Remember the arguments to the program so we can "reboot" */ | 177 | /* Remember the arguments to the program so we can "reboot" */ |
@@ -190,6 +202,9 @@ static void *_convert(struct iovec *iov, size_t size, size_t align, | |||
190 | return iov->iov_base; | 202 | return iov->iov_base; |
191 | } | 203 | } |
192 | 204 | ||
205 | /* Wrapper for the last available index. Makes it easier to change. */ | ||
206 | #define lg_last_avail(vq) ((vq)->last_avail_idx) | ||
207 | |||
193 | /* The virtio configuration space is defined to be little-endian. x86 is | 208 | /* The virtio configuration space is defined to be little-endian. x86 is |
194 | * little-endian too, but it's nice to be explicit so we have these helpers. */ | 209 | * little-endian too, but it's nice to be explicit so we have these helpers. */ |
195 | #define cpu_to_le16(v16) (v16) | 210 | #define cpu_to_le16(v16) (v16) |
@@ -199,6 +214,33 @@ static void *_convert(struct iovec *iov, size_t size, size_t align, | |||
199 | #define le32_to_cpu(v32) (v32) | 214 | #define le32_to_cpu(v32) (v32) |
200 | #define le64_to_cpu(v64) (v64) | 215 | #define le64_to_cpu(v64) (v64) |
201 | 216 | ||
217 | /* Is this iovec empty? */ | ||
218 | static bool iov_empty(const struct iovec iov[], unsigned int num_iov) | ||
219 | { | ||
220 | unsigned int i; | ||
221 | |||
222 | for (i = 0; i < num_iov; i++) | ||
223 | if (iov[i].iov_len) | ||
224 | return false; | ||
225 | return true; | ||
226 | } | ||
227 | |||
228 | /* Take len bytes from the front of this iovec. */ | ||
229 | static void iov_consume(struct iovec iov[], unsigned num_iov, unsigned len) | ||
230 | { | ||
231 | unsigned int i; | ||
232 | |||
233 | for (i = 0; i < num_iov; i++) { | ||
234 | unsigned int used; | ||
235 | |||
236 | used = iov[i].iov_len < len ? iov[i].iov_len : len; | ||
237 | iov[i].iov_base += used; | ||
238 | iov[i].iov_len -= used; | ||
239 | len -= used; | ||
240 | } | ||
241 | assert(len == 0); | ||
242 | } | ||
243 | |||
202 | /* The device virtqueue descriptors are followed by feature bitmasks. */ | 244 | /* The device virtqueue descriptors are followed by feature bitmasks. */ |
203 | static u8 *get_feature_bits(struct device *dev) | 245 | static u8 *get_feature_bits(struct device *dev) |
204 | { | 246 | { |
@@ -254,6 +296,7 @@ static void *map_zeroed_pages(unsigned int num) | |||
254 | PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE, fd, 0); | 296 | PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE, fd, 0); |
255 | if (addr == MAP_FAILED) | 297 | if (addr == MAP_FAILED) |
256 | err(1, "Mmaping %u pages of /dev/zero", num); | 298 | err(1, "Mmaping %u pages of /dev/zero", num); |
299 | close(fd); | ||
257 | 300 | ||
258 | return addr; | 301 | return addr; |
259 | } | 302 | } |
@@ -540,69 +583,64 @@ static void add_device_fd(int fd) | |||
540 | * watch, but handing a file descriptor mask through to the kernel is fairly | 583 | * watch, but handing a file descriptor mask through to the kernel is fairly |
541 | * icky. | 584 | * icky. |
542 | * | 585 | * |
543 | * Instead, we fork off a process which watches the file descriptors and writes | 586 | * Instead, we clone off a thread which watches the file descriptors and writes |
544 | * the LHREQ_BREAK command to the /dev/lguest file descriptor to tell the Host | 587 | * the LHREQ_BREAK command to the /dev/lguest file descriptor to tell the Host |
545 | * stop running the Guest. This causes the Launcher to return from the | 588 | * stop running the Guest. This causes the Launcher to return from the |
546 | * /dev/lguest read with -EAGAIN, where it will write to /dev/lguest to reset | 589 | * /dev/lguest read with -EAGAIN, where it will write to /dev/lguest to reset |
547 | * the LHREQ_BREAK and wake us up again. | 590 | * the LHREQ_BREAK and wake us up again. |
548 | * | 591 | * |
549 | * This, of course, is merely a different *kind* of icky. | 592 | * This, of course, is merely a different *kind* of icky. |
593 | * | ||
594 | * Given my well-known antipathy to threads, I'd prefer to use processes. But | ||
595 | * it's easier to share Guest memory with threads, and trivial to share the | ||
596 | * devices.infds as the Launcher changes it. | ||
550 | */ | 597 | */ |
551 | static void wake_parent(int pipefd, int lguest_fd) | 598 | static int waker(void *unused) |
552 | { | 599 | { |
553 | /* Add the pipe from the Launcher to the fdset in the device_list, so | 600 | /* Close the write end of the pipe: only the Launcher has it open. */ |
554 | * we watch it, too. */ | 601 | close(waker_fds.pipe[1]); |
555 | add_device_fd(pipefd); | ||
556 | 602 | ||
557 | for (;;) { | 603 | for (;;) { |
558 | fd_set rfds = devices.infds; | 604 | fd_set rfds = devices.infds; |
559 | unsigned long args[] = { LHREQ_BREAK, 1 }; | 605 | unsigned long args[] = { LHREQ_BREAK, 1 }; |
606 | unsigned int maxfd = devices.max_infd; | ||
607 | |||
608 | /* We also listen to the pipe from the Launcher. */ | ||
609 | FD_SET(waker_fds.pipe[0], &rfds); | ||
610 | if (waker_fds.pipe[0] > maxfd) | ||
611 | maxfd = waker_fds.pipe[0]; | ||
560 | 612 | ||
561 | /* Wait until input is ready from one of the devices. */ | 613 | /* Wait until input is ready from one of the devices. */ |
562 | select(devices.max_infd+1, &rfds, NULL, NULL, NULL); | 614 | select(maxfd+1, &rfds, NULL, NULL, NULL); |
563 | /* Is it a message from the Launcher? */ | 615 | |
564 | if (FD_ISSET(pipefd, &rfds)) { | 616 | /* Message from Launcher? */ |
565 | int fd; | 617 | if (FD_ISSET(waker_fds.pipe[0], &rfds)) { |
566 | /* If read() returns 0, it means the Launcher has | 618 | char c; |
567 | * exited. We silently follow. */ | 619 | /* If this fails, then assume Launcher has exited. |
568 | if (read(pipefd, &fd, sizeof(fd)) == 0) | 620 | * Don't do anything on exit: we're just a thread! */ |
569 | exit(0); | 621 | if (read(waker_fds.pipe[0], &c, 1) != 1) |
570 | /* Otherwise it's telling us to change what file | 622 | _exit(0); |
571 | * descriptors we're to listen to. Positive means | 623 | continue; |
572 | * listen to a new one, negative means stop | 624 | } |
573 | * listening. */ | 625 | |
574 | if (fd >= 0) | 626 | /* Send LHREQ_BREAK command to snap the Launcher out of it. */ |
575 | FD_SET(fd, &devices.infds); | 627 | pwrite(waker_fds.lguest_fd, args, sizeof(args), cpu_id); |
576 | else | ||
577 | FD_CLR(-fd - 1, &devices.infds); | ||
578 | } else /* Send LHREQ_BREAK command. */ | ||
579 | pwrite(lguest_fd, args, sizeof(args), cpu_id); | ||
580 | } | 628 | } |
629 | return 0; | ||
581 | } | 630 | } |
582 | 631 | ||
583 | /* This routine just sets up a pipe to the Waker process. */ | 632 | /* This routine just sets up a pipe to the Waker process. */ |
584 | static int setup_waker(int lguest_fd) | 633 | static void setup_waker(int lguest_fd) |
585 | { | 634 | { |
586 | int pipefd[2], child; | 635 | /* This pipe is closed when Launcher dies, telling Waker. */ |
587 | 636 | if (pipe(waker_fds.pipe) != 0) | |
588 | /* We create a pipe to talk to the Waker, and also so it knows when the | 637 | err(1, "Creating pipe for Waker"); |
589 | * Launcher dies (and closes pipe). */ | ||
590 | pipe(pipefd); | ||
591 | child = fork(); | ||
592 | if (child == -1) | ||
593 | err(1, "forking"); | ||
594 | |||
595 | if (child == 0) { | ||
596 | /* We are the Waker: close the "writing" end of our copy of the | ||
597 | * pipe and start waiting for input. */ | ||
598 | close(pipefd[1]); | ||
599 | wake_parent(pipefd[0], lguest_fd); | ||
600 | } | ||
601 | /* Close the reading end of our copy of the pipe. */ | ||
602 | close(pipefd[0]); | ||
603 | 638 | ||
604 | /* Here is the fd used to talk to the waker. */ | 639 | /* Waker also needs to know the lguest fd */ |
605 | return pipefd[1]; | 640 | waker_fds.lguest_fd = lguest_fd; |
641 | |||
642 | if (clone(waker, malloc(4096) + 4096, CLONE_VM | SIGCHLD, NULL) == -1) | ||
643 | err(1, "Creating Waker"); | ||
606 | } | 644 | } |
607 | 645 | ||
608 | /* | 646 | /* |
@@ -661,19 +699,22 @@ static unsigned get_vq_desc(struct virtqueue *vq, | |||
661 | unsigned int *out_num, unsigned int *in_num) | 699 | unsigned int *out_num, unsigned int *in_num) |
662 | { | 700 | { |
663 | unsigned int i, head; | 701 | unsigned int i, head; |
702 | u16 last_avail; | ||
664 | 703 | ||
665 | /* Check it isn't doing very strange things with descriptor numbers. */ | 704 | /* Check it isn't doing very strange things with descriptor numbers. */ |
666 | if ((u16)(vq->vring.avail->idx - vq->last_avail_idx) > vq->vring.num) | 705 | last_avail = lg_last_avail(vq); |
706 | if ((u16)(vq->vring.avail->idx - last_avail) > vq->vring.num) | ||
667 | errx(1, "Guest moved used index from %u to %u", | 707 | errx(1, "Guest moved used index from %u to %u", |
668 | vq->last_avail_idx, vq->vring.avail->idx); | 708 | last_avail, vq->vring.avail->idx); |
669 | 709 | ||
670 | /* If there's nothing new since last we looked, return invalid. */ | 710 | /* If there's nothing new since last we looked, return invalid. */ |
671 | if (vq->vring.avail->idx == vq->last_avail_idx) | 711 | if (vq->vring.avail->idx == last_avail) |
672 | return vq->vring.num; | 712 | return vq->vring.num; |
673 | 713 | ||
674 | /* Grab the next descriptor number they're advertising, and increment | 714 | /* Grab the next descriptor number they're advertising, and increment |
675 | * the index we've seen. */ | 715 | * the index we've seen. */ |
676 | head = vq->vring.avail->ring[vq->last_avail_idx++ % vq->vring.num]; | 716 | head = vq->vring.avail->ring[last_avail % vq->vring.num]; |
717 | lg_last_avail(vq)++; | ||
677 | 718 | ||
678 | /* If their number is silly, that's a fatal mistake. */ | 719 | /* If their number is silly, that's a fatal mistake. */ |
679 | if (head >= vq->vring.num) | 720 | if (head >= vq->vring.num) |
@@ -821,8 +862,8 @@ static bool handle_console_input(int fd, struct device *dev) | |||
821 | unsigned long args[] = { LHREQ_BREAK, 0 }; | 862 | unsigned long args[] = { LHREQ_BREAK, 0 }; |
822 | /* Close the fd so Waker will know it has to | 863 | /* Close the fd so Waker will know it has to |
823 | * exit. */ | 864 | * exit. */ |
824 | close(waker_fd); | 865 | close(waker_fds.pipe[1]); |
825 | /* Just in case waker is blocked in BREAK, send | 866 | /* Just in case Waker is blocked in BREAK, send |
826 | * unbreak now. */ | 867 | * unbreak now. */ |
827 | write(fd, args, sizeof(args)); | 868 | write(fd, args, sizeof(args)); |
828 | exit(2); | 869 | exit(2); |
@@ -839,7 +880,7 @@ static bool handle_console_input(int fd, struct device *dev) | |||
839 | 880 | ||
840 | /* Handling output for console is simple: we just get all the output buffers | 881 | /* Handling output for console is simple: we just get all the output buffers |
841 | * and write them to stdout. */ | 882 | * and write them to stdout. */ |
842 | static void handle_console_output(int fd, struct virtqueue *vq) | 883 | static void handle_console_output(int fd, struct virtqueue *vq, bool timeout) |
843 | { | 884 | { |
844 | unsigned int head, out, in; | 885 | unsigned int head, out, in; |
845 | int len; | 886 | int len; |
@@ -854,6 +895,21 @@ static void handle_console_output(int fd, struct virtqueue *vq) | |||
854 | } | 895 | } |
855 | } | 896 | } |
856 | 897 | ||
898 | static void block_vq(struct virtqueue *vq) | ||
899 | { | ||
900 | struct itimerval itm; | ||
901 | |||
902 | vq->vring.used->flags |= VRING_USED_F_NO_NOTIFY; | ||
903 | vq->blocked = true; | ||
904 | |||
905 | itm.it_interval.tv_sec = 0; | ||
906 | itm.it_interval.tv_usec = 0; | ||
907 | itm.it_value.tv_sec = 0; | ||
908 | itm.it_value.tv_usec = timeout_usec; | ||
909 | |||
910 | setitimer(ITIMER_REAL, &itm, NULL); | ||
911 | } | ||
912 | |||
857 | /* | 913 | /* |
858 | * The Network | 914 | * The Network |
859 | * | 915 | * |
@@ -861,22 +917,34 @@ static void handle_console_output(int fd, struct virtqueue *vq) | |||
861 | * and write them (ignoring the first element) to this device's file descriptor | 917 | * and write them (ignoring the first element) to this device's file descriptor |
862 | * (/dev/net/tun). | 918 | * (/dev/net/tun). |
863 | */ | 919 | */ |
864 | static void handle_net_output(int fd, struct virtqueue *vq) | 920 | static void handle_net_output(int fd, struct virtqueue *vq, bool timeout) |
865 | { | 921 | { |
866 | unsigned int head, out, in; | 922 | unsigned int head, out, in, num = 0; |
867 | int len; | 923 | int len; |
868 | struct iovec iov[vq->vring.num]; | 924 | struct iovec iov[vq->vring.num]; |
925 | static int last_timeout_num; | ||
869 | 926 | ||
870 | /* Keep getting output buffers from the Guest until we run out. */ | 927 | /* Keep getting output buffers from the Guest until we run out. */ |
871 | while ((head = get_vq_desc(vq, iov, &out, &in)) != vq->vring.num) { | 928 | while ((head = get_vq_desc(vq, iov, &out, &in)) != vq->vring.num) { |
872 | if (in) | 929 | if (in) |
873 | errx(1, "Input buffers in output queue?"); | 930 | errx(1, "Input buffers in output queue?"); |
874 | /* Check header, but otherwise ignore it (we told the Guest we | 931 | len = writev(vq->dev->fd, iov, out); |
875 | * supported no features, so it shouldn't have anything | 932 | if (len < 0) |
876 | * interesting). */ | 933 | err(1, "Writing network packet to tun"); |
877 | (void)convert(&iov[0], struct virtio_net_hdr); | ||
878 | len = writev(vq->dev->fd, iov+1, out-1); | ||
879 | add_used_and_trigger(fd, vq, head, len); | 934 | add_used_and_trigger(fd, vq, head, len); |
935 | num++; | ||
936 | } | ||
937 | |||
938 | /* Block further kicks and set up a timer if we saw anything. */ | ||
939 | if (!timeout && num) | ||
940 | block_vq(vq); | ||
941 | |||
942 | if (timeout) { | ||
943 | if (num < last_timeout_num) | ||
944 | timeout_usec += 10; | ||
945 | else if (timeout_usec > 1) | ||
946 | timeout_usec--; | ||
947 | last_timeout_num = num; | ||
880 | } | 948 | } |
881 | } | 949 | } |
882 | 950 | ||
@@ -887,7 +955,6 @@ static bool handle_tun_input(int fd, struct device *dev) | |||
887 | unsigned int head, in_num, out_num; | 955 | unsigned int head, in_num, out_num; |
888 | int len; | 956 | int len; |
889 | struct iovec iov[dev->vq->vring.num]; | 957 | struct iovec iov[dev->vq->vring.num]; |
890 | struct virtio_net_hdr *hdr; | ||
891 | 958 | ||
892 | /* First we need a network buffer from the Guests's recv virtqueue. */ | 959 | /* First we need a network buffer from the Guests's recv virtqueue. */ |
893 | head = get_vq_desc(dev->vq, iov, &out_num, &in_num); | 960 | head = get_vq_desc(dev->vq, iov, &out_num, &in_num); |
@@ -896,25 +963,23 @@ static bool handle_tun_input(int fd, struct device *dev) | |||
896 | * early, the Guest won't be ready yet. Wait until the device | 963 | * early, the Guest won't be ready yet. Wait until the device |
897 | * status says it's ready. */ | 964 | * status says it's ready. */ |
898 | /* FIXME: Actually want DRIVER_ACTIVE here. */ | 965 | /* FIXME: Actually want DRIVER_ACTIVE here. */ |
899 | if (dev->desc->status & VIRTIO_CONFIG_S_DRIVER_OK) | 966 | |
900 | warn("network: no dma buffer!"); | 967 | /* Now tell it we want to know if new things appear. */ |
968 | dev->vq->vring.used->flags &= ~VRING_USED_F_NO_NOTIFY; | ||
969 | wmb(); | ||
970 | |||
901 | /* We'll turn this back on if input buffers are registered. */ | 971 | /* We'll turn this back on if input buffers are registered. */ |
902 | return false; | 972 | return false; |
903 | } else if (out_num) | 973 | } else if (out_num) |
904 | errx(1, "Output buffers in network recv queue?"); | 974 | errx(1, "Output buffers in network recv queue?"); |
905 | 975 | ||
906 | /* First element is the header: we set it to 0 (no features). */ | ||
907 | hdr = convert(&iov[0], struct virtio_net_hdr); | ||
908 | hdr->flags = 0; | ||
909 | hdr->gso_type = VIRTIO_NET_HDR_GSO_NONE; | ||
910 | |||
911 | /* Read the packet from the device directly into the Guest's buffer. */ | 976 | /* Read the packet from the device directly into the Guest's buffer. */ |
912 | len = readv(dev->fd, iov+1, in_num-1); | 977 | len = readv(dev->fd, iov, in_num); |
913 | if (len <= 0) | 978 | if (len <= 0) |
914 | err(1, "reading network"); | 979 | err(1, "reading network"); |
915 | 980 | ||
916 | /* Tell the Guest about the new packet. */ | 981 | /* Tell the Guest about the new packet. */ |
917 | add_used_and_trigger(fd, dev->vq, head, sizeof(*hdr) + len); | 982 | add_used_and_trigger(fd, dev->vq, head, len); |
918 | 983 | ||
919 | verbose("tun input packet len %i [%02x %02x] (%s)\n", len, | 984 | verbose("tun input packet len %i [%02x %02x] (%s)\n", len, |
920 | ((u8 *)iov[1].iov_base)[0], ((u8 *)iov[1].iov_base)[1], | 985 | ((u8 *)iov[1].iov_base)[0], ((u8 *)iov[1].iov_base)[1], |
@@ -927,11 +992,18 @@ static bool handle_tun_input(int fd, struct device *dev) | |||
927 | /*L:215 This is the callback attached to the network and console input | 992 | /*L:215 This is the callback attached to the network and console input |
928 | * virtqueues: it ensures we try again, in case we stopped console or net | 993 | * virtqueues: it ensures we try again, in case we stopped console or net |
929 | * delivery because Guest didn't have any buffers. */ | 994 | * delivery because Guest didn't have any buffers. */ |
930 | static void enable_fd(int fd, struct virtqueue *vq) | 995 | static void enable_fd(int fd, struct virtqueue *vq, bool timeout) |
931 | { | 996 | { |
932 | add_device_fd(vq->dev->fd); | 997 | add_device_fd(vq->dev->fd); |
933 | /* Tell waker to listen to it again */ | 998 | /* Snap the Waker out of its select loop. */ |
934 | write(waker_fd, &vq->dev->fd, sizeof(vq->dev->fd)); | 999 | write(waker_fds.pipe[1], "", 1); |
1000 | } | ||
1001 | |||
1002 | static void net_enable_fd(int fd, struct virtqueue *vq, bool timeout) | ||
1003 | { | ||
1004 | /* We don't need to know again when Guest refills receive buffer. */ | ||
1005 | vq->vring.used->flags |= VRING_USED_F_NO_NOTIFY; | ||
1006 | enable_fd(fd, vq, timeout); | ||
935 | } | 1007 | } |
936 | 1008 | ||
937 | /* When the Guest tells us they updated the status field, we handle it. */ | 1009 | /* When the Guest tells us they updated the status field, we handle it. */ |
@@ -951,7 +1023,7 @@ static void update_device_status(struct device *dev) | |||
951 | for (vq = dev->vq; vq; vq = vq->next) { | 1023 | for (vq = dev->vq; vq; vq = vq->next) { |
952 | memset(vq->vring.desc, 0, | 1024 | memset(vq->vring.desc, 0, |
953 | vring_size(vq->config.num, getpagesize())); | 1025 | vring_size(vq->config.num, getpagesize())); |
954 | vq->last_avail_idx = 0; | 1026 | lg_last_avail(vq) = 0; |
955 | } | 1027 | } |
956 | } else if (dev->desc->status & VIRTIO_CONFIG_S_FAILED) { | 1028 | } else if (dev->desc->status & VIRTIO_CONFIG_S_FAILED) { |
957 | warnx("Device %s configuration FAILED", dev->name); | 1029 | warnx("Device %s configuration FAILED", dev->name); |
@@ -960,10 +1032,10 @@ static void update_device_status(struct device *dev) | |||
960 | 1032 | ||
961 | verbose("Device %s OK: offered", dev->name); | 1033 | verbose("Device %s OK: offered", dev->name); |
962 | for (i = 0; i < dev->desc->feature_len; i++) | 1034 | for (i = 0; i < dev->desc->feature_len; i++) |
963 | verbose(" %08x", get_feature_bits(dev)[i]); | 1035 | verbose(" %02x", get_feature_bits(dev)[i]); |
964 | verbose(", accepted"); | 1036 | verbose(", accepted"); |
965 | for (i = 0; i < dev->desc->feature_len; i++) | 1037 | for (i = 0; i < dev->desc->feature_len; i++) |
966 | verbose(" %08x", get_feature_bits(dev) | 1038 | verbose(" %02x", get_feature_bits(dev) |
967 | [dev->desc->feature_len+i]); | 1039 | [dev->desc->feature_len+i]); |
968 | 1040 | ||
969 | if (dev->ready) | 1041 | if (dev->ready) |
@@ -1000,7 +1072,7 @@ static void handle_output(int fd, unsigned long addr) | |||
1000 | if (strcmp(vq->dev->name, "console") != 0) | 1072 | if (strcmp(vq->dev->name, "console") != 0) |
1001 | verbose("Output to %s\n", vq->dev->name); | 1073 | verbose("Output to %s\n", vq->dev->name); |
1002 | if (vq->handle_output) | 1074 | if (vq->handle_output) |
1003 | vq->handle_output(fd, vq); | 1075 | vq->handle_output(fd, vq, false); |
1004 | return; | 1076 | return; |
1005 | } | 1077 | } |
1006 | } | 1078 | } |
@@ -1014,6 +1086,29 @@ static void handle_output(int fd, unsigned long addr) | |||
1014 | strnlen(from_guest_phys(addr), guest_limit - addr)); | 1086 | strnlen(from_guest_phys(addr), guest_limit - addr)); |
1015 | } | 1087 | } |
1016 | 1088 | ||
1089 | static void handle_timeout(int fd) | ||
1090 | { | ||
1091 | char buf[32]; | ||
1092 | struct device *i; | ||
1093 | struct virtqueue *vq; | ||
1094 | |||
1095 | /* Clear the pipe */ | ||
1096 | read(timeoutpipe[0], buf, sizeof(buf)); | ||
1097 | |||
1098 | /* Check each device and virtqueue: flush blocked ones. */ | ||
1099 | for (i = devices.dev; i; i = i->next) { | ||
1100 | for (vq = i->vq; vq; vq = vq->next) { | ||
1101 | if (!vq->blocked) | ||
1102 | continue; | ||
1103 | |||
1104 | vq->vring.used->flags &= ~VRING_USED_F_NO_NOTIFY; | ||
1105 | vq->blocked = false; | ||
1106 | if (vq->handle_output) | ||
1107 | vq->handle_output(fd, vq, true); | ||
1108 | } | ||
1109 | } | ||
1110 | } | ||
1111 | |||
1017 | /* This is called when the Waker wakes us up: check for incoming file | 1112 | /* This is called when the Waker wakes us up: check for incoming file |
1018 | * descriptors. */ | 1113 | * descriptors. */ |
1019 | static void handle_input(int fd) | 1114 | static void handle_input(int fd) |
@@ -1024,16 +1119,20 @@ static void handle_input(int fd) | |||
1024 | for (;;) { | 1119 | for (;;) { |
1025 | struct device *i; | 1120 | struct device *i; |
1026 | fd_set fds = devices.infds; | 1121 | fd_set fds = devices.infds; |
1122 | int num; | ||
1027 | 1123 | ||
1124 | num = select(devices.max_infd+1, &fds, NULL, NULL, &poll); | ||
1125 | /* Could get interrupted */ | ||
1126 | if (num < 0) | ||
1127 | continue; | ||
1028 | /* If nothing is ready, we're done. */ | 1128 | /* If nothing is ready, we're done. */ |
1029 | if (select(devices.max_infd+1, &fds, NULL, NULL, &poll) == 0) | 1129 | if (num == 0) |
1030 | break; | 1130 | break; |
1031 | 1131 | ||
1032 | /* Otherwise, call the device(s) which have readable file | 1132 | /* Otherwise, call the device(s) which have readable file |
1033 | * descriptors and a method of handling them. */ | 1133 | * descriptors and a method of handling them. */ |
1034 | for (i = devices.dev; i; i = i->next) { | 1134 | for (i = devices.dev; i; i = i->next) { |
1035 | if (i->handle_input && FD_ISSET(i->fd, &fds)) { | 1135 | if (i->handle_input && FD_ISSET(i->fd, &fds)) { |
1036 | int dev_fd; | ||
1037 | if (i->handle_input(fd, i)) | 1136 | if (i->handle_input(fd, i)) |
1038 | continue; | 1137 | continue; |
1039 | 1138 | ||
@@ -1043,13 +1142,12 @@ static void handle_input(int fd) | |||
1043 | * buffers to deliver into. Console also uses | 1142 | * buffers to deliver into. Console also uses |
1044 | * it when it discovers that stdin is closed. */ | 1143 | * it when it discovers that stdin is closed. */ |
1045 | FD_CLR(i->fd, &devices.infds); | 1144 | FD_CLR(i->fd, &devices.infds); |
1046 | /* Tell waker to ignore it too, by sending a | ||
1047 | * negative fd number (-1, since 0 is a valid | ||
1048 | * FD number). */ | ||
1049 | dev_fd = -i->fd - 1; | ||
1050 | write(waker_fd, &dev_fd, sizeof(dev_fd)); | ||
1051 | } | 1145 | } |
1052 | } | 1146 | } |
1147 | |||
1148 | /* Is this the timeout fd? */ | ||
1149 | if (FD_ISSET(timeoutpipe[0], &fds)) | ||
1150 | handle_timeout(fd); | ||
1053 | } | 1151 | } |
1054 | } | 1152 | } |
1055 | 1153 | ||
@@ -1098,7 +1196,7 @@ static struct lguest_device_desc *new_dev_desc(u16 type) | |||
1098 | /* Each device descriptor is followed by the description of its virtqueues. We | 1196 | /* Each device descriptor is followed by the description of its virtqueues. We |
1099 | * specify how many descriptors the virtqueue is to have. */ | 1197 | * specify how many descriptors the virtqueue is to have. */ |
1100 | static void add_virtqueue(struct device *dev, unsigned int num_descs, | 1198 | static void add_virtqueue(struct device *dev, unsigned int num_descs, |
1101 | void (*handle_output)(int fd, struct virtqueue *me)) | 1199 | void (*handle_output)(int, struct virtqueue *, bool)) |
1102 | { | 1200 | { |
1103 | unsigned int pages; | 1201 | unsigned int pages; |
1104 | struct virtqueue **i, *vq = malloc(sizeof(*vq)); | 1202 | struct virtqueue **i, *vq = malloc(sizeof(*vq)); |
@@ -1114,6 +1212,7 @@ static void add_virtqueue(struct device *dev, unsigned int num_descs, | |||
1114 | vq->last_avail_idx = 0; | 1212 | vq->last_avail_idx = 0; |
1115 | vq->dev = dev; | 1213 | vq->dev = dev; |
1116 | vq->inflight = 0; | 1214 | vq->inflight = 0; |
1215 | vq->blocked = false; | ||
1117 | 1216 | ||
1118 | /* Initialize the configuration. */ | 1217 | /* Initialize the configuration. */ |
1119 | vq->config.num = num_descs; | 1218 | vq->config.num = num_descs; |
@@ -1246,6 +1345,24 @@ static void setup_console(void) | |||
1246 | } | 1345 | } |
1247 | /*:*/ | 1346 | /*:*/ |
1248 | 1347 | ||
1348 | static void timeout_alarm(int sig) | ||
1349 | { | ||
1350 | write(timeoutpipe[1], "", 1); | ||
1351 | } | ||
1352 | |||
1353 | static void setup_timeout(void) | ||
1354 | { | ||
1355 | if (pipe(timeoutpipe) != 0) | ||
1356 | err(1, "Creating timeout pipe"); | ||
1357 | |||
1358 | if (fcntl(timeoutpipe[1], F_SETFL, | ||
1359 | fcntl(timeoutpipe[1], F_GETFL) | O_NONBLOCK) != 0) | ||
1360 | err(1, "Making timeout pipe nonblocking"); | ||
1361 | |||
1362 | add_device_fd(timeoutpipe[0]); | ||
1363 | signal(SIGALRM, timeout_alarm); | ||
1364 | } | ||
1365 | |||
1249 | /*M:010 Inter-guest networking is an interesting area. Simplest is to have a | 1366 | /*M:010 Inter-guest networking is an interesting area. Simplest is to have a |
1250 | * --sharenet=<name> option which opens or creates a named pipe. This can be | 1367 | * --sharenet=<name> option which opens or creates a named pipe. This can be |
1251 | * used to send packets to another guest in a 1:1 manner. | 1368 | * used to send packets to another guest in a 1:1 manner. |
@@ -1264,10 +1381,25 @@ static void setup_console(void) | |||
1264 | 1381 | ||
1265 | static u32 str2ip(const char *ipaddr) | 1382 | static u32 str2ip(const char *ipaddr) |
1266 | { | 1383 | { |
1267 | unsigned int byte[4]; | 1384 | unsigned int b[4]; |
1268 | 1385 | ||
1269 | sscanf(ipaddr, "%u.%u.%u.%u", &byte[0], &byte[1], &byte[2], &byte[3]); | 1386 | if (sscanf(ipaddr, "%u.%u.%u.%u", &b[0], &b[1], &b[2], &b[3]) != 4) |
1270 | return (byte[0] << 24) | (byte[1] << 16) | (byte[2] << 8) | byte[3]; | 1387 | errx(1, "Failed to parse IP address '%s'", ipaddr); |
1388 | return (b[0] << 24) | (b[1] << 16) | (b[2] << 8) | b[3]; | ||
1389 | } | ||
1390 | |||
1391 | static void str2mac(const char *macaddr, unsigned char mac[6]) | ||
1392 | { | ||
1393 | unsigned int m[6]; | ||
1394 | if (sscanf(macaddr, "%02x:%02x:%02x:%02x:%02x:%02x", | ||
1395 | &m[0], &m[1], &m[2], &m[3], &m[4], &m[5]) != 6) | ||
1396 | errx(1, "Failed to parse mac address '%s'", macaddr); | ||
1397 | mac[0] = m[0]; | ||
1398 | mac[1] = m[1]; | ||
1399 | mac[2] = m[2]; | ||
1400 | mac[3] = m[3]; | ||
1401 | mac[4] = m[4]; | ||
1402 | mac[5] = m[5]; | ||
1271 | } | 1403 | } |
1272 | 1404 | ||
1273 | /* This code is "adapted" from libbridge: it attaches the Host end of the | 1405 | /* This code is "adapted" from libbridge: it attaches the Host end of the |
@@ -1288,6 +1420,7 @@ static void add_to_bridge(int fd, const char *if_name, const char *br_name) | |||
1288 | errx(1, "interface %s does not exist!", if_name); | 1420 | errx(1, "interface %s does not exist!", if_name); |
1289 | 1421 | ||
1290 | strncpy(ifr.ifr_name, br_name, IFNAMSIZ); | 1422 | strncpy(ifr.ifr_name, br_name, IFNAMSIZ); |
1423 | ifr.ifr_name[IFNAMSIZ-1] = '\0'; | ||
1291 | ifr.ifr_ifindex = ifidx; | 1424 | ifr.ifr_ifindex = ifidx; |
1292 | if (ioctl(fd, SIOCBRADDIF, &ifr) < 0) | 1425 | if (ioctl(fd, SIOCBRADDIF, &ifr) < 0) |
1293 | err(1, "can't add %s to bridge %s", if_name, br_name); | 1426 | err(1, "can't add %s to bridge %s", if_name, br_name); |
@@ -1296,64 +1429,90 @@ static void add_to_bridge(int fd, const char *if_name, const char *br_name) | |||
1296 | /* This sets up the Host end of the network device with an IP address, brings | 1429 | /* This sets up the Host end of the network device with an IP address, brings |
1297 | * it up so packets will flow, the copies the MAC address into the hwaddr | 1430 | * it up so packets will flow, the copies the MAC address into the hwaddr |
1298 | * pointer. */ | 1431 | * pointer. */ |
1299 | static void configure_device(int fd, const char *devname, u32 ipaddr, | 1432 | static void configure_device(int fd, const char *tapif, u32 ipaddr) |
1300 | unsigned char hwaddr[6]) | ||
1301 | { | 1433 | { |
1302 | struct ifreq ifr; | 1434 | struct ifreq ifr; |
1303 | struct sockaddr_in *sin = (struct sockaddr_in *)&ifr.ifr_addr; | 1435 | struct sockaddr_in *sin = (struct sockaddr_in *)&ifr.ifr_addr; |
1304 | 1436 | ||
1305 | /* Don't read these incantations. Just cut & paste them like I did! */ | ||
1306 | memset(&ifr, 0, sizeof(ifr)); | 1437 | memset(&ifr, 0, sizeof(ifr)); |
1307 | strcpy(ifr.ifr_name, devname); | 1438 | strcpy(ifr.ifr_name, tapif); |
1439 | |||
1440 | /* Don't read these incantations. Just cut & paste them like I did! */ | ||
1308 | sin->sin_family = AF_INET; | 1441 | sin->sin_family = AF_INET; |
1309 | sin->sin_addr.s_addr = htonl(ipaddr); | 1442 | sin->sin_addr.s_addr = htonl(ipaddr); |
1310 | if (ioctl(fd, SIOCSIFADDR, &ifr) != 0) | 1443 | if (ioctl(fd, SIOCSIFADDR, &ifr) != 0) |
1311 | err(1, "Setting %s interface address", devname); | 1444 | err(1, "Setting %s interface address", tapif); |
1312 | ifr.ifr_flags = IFF_UP; | 1445 | ifr.ifr_flags = IFF_UP; |
1313 | if (ioctl(fd, SIOCSIFFLAGS, &ifr) != 0) | 1446 | if (ioctl(fd, SIOCSIFFLAGS, &ifr) != 0) |
1314 | err(1, "Bringing interface %s up", devname); | 1447 | err(1, "Bringing interface %s up", tapif); |
1448 | } | ||
1449 | |||
1450 | static void get_mac(int fd, const char *tapif, unsigned char hwaddr[6]) | ||
1451 | { | ||
1452 | struct ifreq ifr; | ||
1453 | |||
1454 | memset(&ifr, 0, sizeof(ifr)); | ||
1455 | strcpy(ifr.ifr_name, tapif); | ||
1315 | 1456 | ||
1316 | /* SIOC stands for Socket I/O Control. G means Get (vs S for Set | 1457 | /* SIOC stands for Socket I/O Control. G means Get (vs S for Set |
1317 | * above). IF means Interface, and HWADDR is hardware address. | 1458 | * above). IF means Interface, and HWADDR is hardware address. |
1318 | * Simple! */ | 1459 | * Simple! */ |
1319 | if (ioctl(fd, SIOCGIFHWADDR, &ifr) != 0) | 1460 | if (ioctl(fd, SIOCGIFHWADDR, &ifr) != 0) |
1320 | err(1, "getting hw address for %s", devname); | 1461 | err(1, "getting hw address for %s", tapif); |
1321 | memcpy(hwaddr, ifr.ifr_hwaddr.sa_data, 6); | 1462 | memcpy(hwaddr, ifr.ifr_hwaddr.sa_data, 6); |
1322 | } | 1463 | } |
1323 | 1464 | ||
1324 | /*L:195 Our network is a Host<->Guest network. This can either use bridging or | 1465 | static int get_tun_device(char tapif[IFNAMSIZ]) |
1325 | * routing, but the principle is the same: it uses the "tun" device to inject | ||
1326 | * packets into the Host as if they came in from a normal network card. We | ||
1327 | * just shunt packets between the Guest and the tun device. */ | ||
1328 | static void setup_tun_net(const char *arg) | ||
1329 | { | 1466 | { |
1330 | struct device *dev; | ||
1331 | struct ifreq ifr; | 1467 | struct ifreq ifr; |
1332 | int netfd, ipfd; | 1468 | int netfd; |
1333 | u32 ip; | 1469 | |
1334 | const char *br_name = NULL; | 1470 | /* Start with this zeroed. Messy but sure. */ |
1335 | struct virtio_net_config conf; | 1471 | memset(&ifr, 0, sizeof(ifr)); |
1336 | 1472 | ||
1337 | /* We open the /dev/net/tun device and tell it we want a tap device. A | 1473 | /* We open the /dev/net/tun device and tell it we want a tap device. A |
1338 | * tap device is like a tun device, only somehow different. To tell | 1474 | * tap device is like a tun device, only somehow different. To tell |
1339 | * the truth, I completely blundered my way through this code, but it | 1475 | * the truth, I completely blundered my way through this code, but it |
1340 | * works now! */ | 1476 | * works now! */ |
1341 | netfd = open_or_die("/dev/net/tun", O_RDWR); | 1477 | netfd = open_or_die("/dev/net/tun", O_RDWR); |
1342 | memset(&ifr, 0, sizeof(ifr)); | 1478 | ifr.ifr_flags = IFF_TAP | IFF_NO_PI | IFF_VNET_HDR; |
1343 | ifr.ifr_flags = IFF_TAP | IFF_NO_PI; | ||
1344 | strcpy(ifr.ifr_name, "tap%d"); | 1479 | strcpy(ifr.ifr_name, "tap%d"); |
1345 | if (ioctl(netfd, TUNSETIFF, &ifr) != 0) | 1480 | if (ioctl(netfd, TUNSETIFF, &ifr) != 0) |
1346 | err(1, "configuring /dev/net/tun"); | 1481 | err(1, "configuring /dev/net/tun"); |
1482 | |||
1483 | if (ioctl(netfd, TUNSETOFFLOAD, | ||
1484 | TUN_F_CSUM|TUN_F_TSO4|TUN_F_TSO6|TUN_F_TSO_ECN) != 0) | ||
1485 | err(1, "Could not set features for tun device"); | ||
1486 | |||
1347 | /* We don't need checksums calculated for packets coming in this | 1487 | /* We don't need checksums calculated for packets coming in this |
1348 | * device: trust us! */ | 1488 | * device: trust us! */ |
1349 | ioctl(netfd, TUNSETNOCSUM, 1); | 1489 | ioctl(netfd, TUNSETNOCSUM, 1); |
1350 | 1490 | ||
1491 | memcpy(tapif, ifr.ifr_name, IFNAMSIZ); | ||
1492 | return netfd; | ||
1493 | } | ||
1494 | |||
1495 | /*L:195 Our network is a Host<->Guest network. This can either use bridging or | ||
1496 | * routing, but the principle is the same: it uses the "tun" device to inject | ||
1497 | * packets into the Host as if they came in from a normal network card. We | ||
1498 | * just shunt packets between the Guest and the tun device. */ | ||
1499 | static void setup_tun_net(char *arg) | ||
1500 | { | ||
1501 | struct device *dev; | ||
1502 | int netfd, ipfd; | ||
1503 | u32 ip = INADDR_ANY; | ||
1504 | bool bridging = false; | ||
1505 | char tapif[IFNAMSIZ], *p; | ||
1506 | struct virtio_net_config conf; | ||
1507 | |||
1508 | netfd = get_tun_device(tapif); | ||
1509 | |||
1351 | /* First we create a new network device. */ | 1510 | /* First we create a new network device. */ |
1352 | dev = new_device("net", VIRTIO_ID_NET, netfd, handle_tun_input); | 1511 | dev = new_device("net", VIRTIO_ID_NET, netfd, handle_tun_input); |
1353 | 1512 | ||
1354 | /* Network devices need a receive and a send queue, just like | 1513 | /* Network devices need a receive and a send queue, just like |
1355 | * console. */ | 1514 | * console. */ |
1356 | add_virtqueue(dev, VIRTQUEUE_NUM, enable_fd); | 1515 | add_virtqueue(dev, VIRTQUEUE_NUM, net_enable_fd); |
1357 | add_virtqueue(dev, VIRTQUEUE_NUM, handle_net_output); | 1516 | add_virtqueue(dev, VIRTQUEUE_NUM, handle_net_output); |
1358 | 1517 | ||
1359 | /* We need a socket to perform the magic network ioctls to bring up the | 1518 | /* We need a socket to perform the magic network ioctls to bring up the |
@@ -1364,28 +1523,56 @@ static void setup_tun_net(const char *arg) | |||
1364 | 1523 | ||
1365 | /* If the command line was --tunnet=bridge:<name> do bridging. */ | 1524 | /* If the command line was --tunnet=bridge:<name> do bridging. */ |
1366 | if (!strncmp(BRIDGE_PFX, arg, strlen(BRIDGE_PFX))) { | 1525 | if (!strncmp(BRIDGE_PFX, arg, strlen(BRIDGE_PFX))) { |
1367 | ip = INADDR_ANY; | 1526 | arg += strlen(BRIDGE_PFX); |
1368 | br_name = arg + strlen(BRIDGE_PFX); | 1527 | bridging = true; |
1369 | add_to_bridge(ipfd, ifr.ifr_name, br_name); | 1528 | } |
1370 | } else /* It is an IP address to set up the device with */ | 1529 | |
1530 | /* A mac address may follow the bridge name or IP address */ | ||
1531 | p = strchr(arg, ':'); | ||
1532 | if (p) { | ||
1533 | str2mac(p+1, conf.mac); | ||
1534 | *p = '\0'; | ||
1535 | } else { | ||
1536 | p = arg + strlen(arg); | ||
1537 | /* None supplied; query the randomly assigned mac. */ | ||
1538 | get_mac(ipfd, tapif, conf.mac); | ||
1539 | } | ||
1540 | |||
1541 | /* arg is now either an IP address or a bridge name */ | ||
1542 | if (bridging) | ||
1543 | add_to_bridge(ipfd, tapif, arg); | ||
1544 | else | ||
1371 | ip = str2ip(arg); | 1545 | ip = str2ip(arg); |
1372 | 1546 | ||
1373 | /* Set up the tun device, and get the mac address for the interface. */ | 1547 | /* Set up the tun device. */ |
1374 | configure_device(ipfd, ifr.ifr_name, ip, conf.mac); | 1548 | configure_device(ipfd, tapif, ip); |
1375 | 1549 | ||
1376 | /* Tell Guest what MAC address to use. */ | 1550 | /* Tell Guest what MAC address to use. */ |
1377 | add_feature(dev, VIRTIO_NET_F_MAC); | 1551 | add_feature(dev, VIRTIO_NET_F_MAC); |
1378 | add_feature(dev, VIRTIO_F_NOTIFY_ON_EMPTY); | 1552 | add_feature(dev, VIRTIO_F_NOTIFY_ON_EMPTY); |
1553 | /* Expect Guest to handle everything except UFO */ | ||
1554 | add_feature(dev, VIRTIO_NET_F_CSUM); | ||
1555 | add_feature(dev, VIRTIO_NET_F_GUEST_CSUM); | ||
1556 | add_feature(dev, VIRTIO_NET_F_MAC); | ||
1557 | add_feature(dev, VIRTIO_NET_F_GUEST_TSO4); | ||
1558 | add_feature(dev, VIRTIO_NET_F_GUEST_TSO6); | ||
1559 | add_feature(dev, VIRTIO_NET_F_GUEST_ECN); | ||
1560 | add_feature(dev, VIRTIO_NET_F_HOST_TSO4); | ||
1561 | add_feature(dev, VIRTIO_NET_F_HOST_TSO6); | ||
1562 | add_feature(dev, VIRTIO_NET_F_HOST_ECN); | ||
1379 | set_config(dev, sizeof(conf), &conf); | 1563 | set_config(dev, sizeof(conf), &conf); |
1380 | 1564 | ||
1381 | /* We don't need the socket any more; setup is done. */ | 1565 | /* We don't need the socket any more; setup is done. */ |
1382 | close(ipfd); | 1566 | close(ipfd); |
1383 | 1567 | ||
1384 | verbose("device %u: tun net %u.%u.%u.%u\n", | 1568 | devices.device_num++; |
1385 | devices.device_num++, | 1569 | |
1386 | (u8)(ip>>24),(u8)(ip>>16),(u8)(ip>>8),(u8)ip); | 1570 | if (bridging) |
1387 | if (br_name) | 1571 | verbose("device %u: tun %s attached to bridge: %s\n", |
1388 | verbose("attached to bridge: %s\n", br_name); | 1572 | devices.device_num, tapif, arg); |
1573 | else | ||
1574 | verbose("device %u: tun %s: %s\n", | ||
1575 | devices.device_num, tapif, arg); | ||
1389 | } | 1576 | } |
1390 | 1577 | ||
1391 | /* Our block (disk) device should be really simple: the Guest asks for a block | 1578 | /* Our block (disk) device should be really simple: the Guest asks for a block |
@@ -1550,7 +1737,7 @@ static bool handle_io_finish(int fd, struct device *dev) | |||
1550 | } | 1737 | } |
1551 | 1738 | ||
1552 | /* When the Guest submits some I/O, we just need to wake the I/O thread. */ | 1739 | /* When the Guest submits some I/O, we just need to wake the I/O thread. */ |
1553 | static void handle_virtblk_output(int fd, struct virtqueue *vq) | 1740 | static void handle_virtblk_output(int fd, struct virtqueue *vq, bool timeout) |
1554 | { | 1741 | { |
1555 | struct vblk_info *vblk = vq->dev->priv; | 1742 | struct vblk_info *vblk = vq->dev->priv; |
1556 | char c = 0; | 1743 | char c = 0; |
@@ -1621,6 +1808,64 @@ static void setup_block_file(const char *filename) | |||
1621 | verbose("device %u: virtblock %llu sectors\n", | 1808 | verbose("device %u: virtblock %llu sectors\n", |
1622 | devices.device_num, le64_to_cpu(conf.capacity)); | 1809 | devices.device_num, le64_to_cpu(conf.capacity)); |
1623 | } | 1810 | } |
1811 | |||
1812 | /* Our random number generator device reads from /dev/random into the Guest's | ||
1813 | * input buffers. The usual case is that the Guest doesn't want random numbers | ||
1814 | * and so has no buffers although /dev/random is still readable, whereas | ||
1815 | * console is the reverse. | ||
1816 | * | ||
1817 | * The same logic applies, however. */ | ||
1818 | static bool handle_rng_input(int fd, struct device *dev) | ||
1819 | { | ||
1820 | int len; | ||
1821 | unsigned int head, in_num, out_num, totlen = 0; | ||
1822 | struct iovec iov[dev->vq->vring.num]; | ||
1823 | |||
1824 | /* First we need a buffer from the Guests's virtqueue. */ | ||
1825 | head = get_vq_desc(dev->vq, iov, &out_num, &in_num); | ||
1826 | |||
1827 | /* If they're not ready for input, stop listening to this file | ||
1828 | * descriptor. We'll start again once they add an input buffer. */ | ||
1829 | if (head == dev->vq->vring.num) | ||
1830 | return false; | ||
1831 | |||
1832 | if (out_num) | ||
1833 | errx(1, "Output buffers in rng?"); | ||
1834 | |||
1835 | /* This is why we convert to iovecs: the readv() call uses them, and so | ||
1836 | * it reads straight into the Guest's buffer. We loop to make sure we | ||
1837 | * fill it. */ | ||
1838 | while (!iov_empty(iov, in_num)) { | ||
1839 | len = readv(dev->fd, iov, in_num); | ||
1840 | if (len <= 0) | ||
1841 | err(1, "Read from /dev/random gave %i", len); | ||
1842 | iov_consume(iov, in_num, len); | ||
1843 | totlen += len; | ||
1844 | } | ||
1845 | |||
1846 | /* Tell the Guest about the new input. */ | ||
1847 | add_used_and_trigger(fd, dev->vq, head, totlen); | ||
1848 | |||
1849 | /* Everything went OK! */ | ||
1850 | return true; | ||
1851 | } | ||
1852 | |||
1853 | /* And this creates a "hardware" random number device for the Guest. */ | ||
1854 | static void setup_rng(void) | ||
1855 | { | ||
1856 | struct device *dev; | ||
1857 | int fd; | ||
1858 | |||
1859 | fd = open_or_die("/dev/random", O_RDONLY); | ||
1860 | |||
1861 | /* The device responds to return from I/O thread. */ | ||
1862 | dev = new_device("rng", VIRTIO_ID_RNG, fd, handle_rng_input); | ||
1863 | |||
1864 | /* The device has one virtqueue, where the Guest places inbufs. */ | ||
1865 | add_virtqueue(dev, VIRTQUEUE_NUM, enable_fd); | ||
1866 | |||
1867 | verbose("device %u: rng\n", devices.device_num++); | ||
1868 | } | ||
1624 | /* That's the end of device setup. */ | 1869 | /* That's the end of device setup. */ |
1625 | 1870 | ||
1626 | /*L:230 Reboot is pretty easy: clean up and exec() the Launcher afresh. */ | 1871 | /*L:230 Reboot is pretty easy: clean up and exec() the Launcher afresh. */ |
@@ -1628,11 +1873,12 @@ static void __attribute__((noreturn)) restart_guest(void) | |||
1628 | { | 1873 | { |
1629 | unsigned int i; | 1874 | unsigned int i; |
1630 | 1875 | ||
1631 | /* Closing pipes causes the Waker thread and io_threads to die, and | 1876 | /* Since we don't track all open fds, we simply close everything beyond |
1632 | * closing /dev/lguest cleans up the Guest. Since we don't track all | 1877 | * stderr. */ |
1633 | * open fds, we simply close everything beyond stderr. */ | ||
1634 | for (i = 3; i < FD_SETSIZE; i++) | 1878 | for (i = 3; i < FD_SETSIZE; i++) |
1635 | close(i); | 1879 | close(i); |
1880 | |||
1881 | /* The exec automatically gets rid of the I/O and Waker threads. */ | ||
1636 | execv(main_args[0], main_args); | 1882 | execv(main_args[0], main_args); |
1637 | err(1, "Could not exec %s", main_args[0]); | 1883 | err(1, "Could not exec %s", main_args[0]); |
1638 | } | 1884 | } |
@@ -1663,7 +1909,7 @@ static void __attribute__((noreturn)) run_guest(int lguest_fd) | |||
1663 | /* ERESTART means that we need to reboot the guest */ | 1909 | /* ERESTART means that we need to reboot the guest */ |
1664 | } else if (errno == ERESTART) { | 1910 | } else if (errno == ERESTART) { |
1665 | restart_guest(); | 1911 | restart_guest(); |
1666 | /* EAGAIN means the Waker wanted us to look at some input. | 1912 | /* EAGAIN means a signal (timeout). |
1667 | * Anything else means a bug or incompatible change. */ | 1913 | * Anything else means a bug or incompatible change. */ |
1668 | } else if (errno != EAGAIN) | 1914 | } else if (errno != EAGAIN) |
1669 | err(1, "Running guest failed"); | 1915 | err(1, "Running guest failed"); |
@@ -1691,13 +1937,14 @@ static struct option opts[] = { | |||
1691 | { "verbose", 0, NULL, 'v' }, | 1937 | { "verbose", 0, NULL, 'v' }, |
1692 | { "tunnet", 1, NULL, 't' }, | 1938 | { "tunnet", 1, NULL, 't' }, |
1693 | { "block", 1, NULL, 'b' }, | 1939 | { "block", 1, NULL, 'b' }, |
1940 | { "rng", 0, NULL, 'r' }, | ||
1694 | { "initrd", 1, NULL, 'i' }, | 1941 | { "initrd", 1, NULL, 'i' }, |
1695 | { NULL }, | 1942 | { NULL }, |
1696 | }; | 1943 | }; |
1697 | static void usage(void) | 1944 | static void usage(void) |
1698 | { | 1945 | { |
1699 | errx(1, "Usage: lguest [--verbose] " | 1946 | errx(1, "Usage: lguest [--verbose] " |
1700 | "[--tunnet=(<ipaddr>|bridge:<bridgename>)\n" | 1947 | "[--tunnet=(<ipaddr>:<macaddr>|bridge:<bridgename>:<macaddr>)\n" |
1701 | "|--block=<filename>|--initrd=<filename>]...\n" | 1948 | "|--block=<filename>|--initrd=<filename>]...\n" |
1702 | "<mem-in-mb> vmlinux [args...]"); | 1949 | "<mem-in-mb> vmlinux [args...]"); |
1703 | } | 1950 | } |
@@ -1765,6 +2012,9 @@ int main(int argc, char *argv[]) | |||
1765 | case 'b': | 2012 | case 'b': |
1766 | setup_block_file(optarg); | 2013 | setup_block_file(optarg); |
1767 | break; | 2014 | break; |
2015 | case 'r': | ||
2016 | setup_rng(); | ||
2017 | break; | ||
1768 | case 'i': | 2018 | case 'i': |
1769 | initrd_name = optarg; | 2019 | initrd_name = optarg; |
1770 | break; | 2020 | break; |
@@ -1783,6 +2033,9 @@ int main(int argc, char *argv[]) | |||
1783 | /* We always have a console device */ | 2033 | /* We always have a console device */ |
1784 | setup_console(); | 2034 | setup_console(); |
1785 | 2035 | ||
2036 | /* We can timeout waiting for Guest network transmit. */ | ||
2037 | setup_timeout(); | ||
2038 | |||
1786 | /* Now we load the kernel */ | 2039 | /* Now we load the kernel */ |
1787 | start = load_kernel(open_or_die(argv[optind+1], O_RDONLY)); | 2040 | start = load_kernel(open_or_die(argv[optind+1], O_RDONLY)); |
1788 | 2041 | ||
@@ -1826,10 +2079,10 @@ int main(int argc, char *argv[]) | |||
1826 | * /dev/lguest file descriptor. */ | 2079 | * /dev/lguest file descriptor. */ |
1827 | lguest_fd = tell_kernel(pgdir, start); | 2080 | lguest_fd = tell_kernel(pgdir, start); |
1828 | 2081 | ||
1829 | /* We fork off a child process, which wakes the Launcher whenever one | 2082 | /* We clone off a thread, which wakes the Launcher whenever one of the |
1830 | * of the input file descriptors needs attention. We call this the | 2083 | * input file descriptors needs attention. We call this the Waker, and |
1831 | * Waker, and we'll cover it in a moment. */ | 2084 | * we'll cover it in a moment. */ |
1832 | waker_fd = setup_waker(lguest_fd); | 2085 | setup_waker(lguest_fd); |
1833 | 2086 | ||
1834 | /* Finally, run the Guest. This doesn't return. */ | 2087 | /* Finally, run the Guest. This doesn't return. */ |
1835 | run_guest(lguest_fd); | 2088 | run_guest(lguest_fd); |
diff --git a/Documentation/video4linux/CARDLIST.au0828 b/Documentation/video4linux/CARDLIST.au0828 index 86d1c8e7b18f..eedc399e8deb 100644 --- a/Documentation/video4linux/CARDLIST.au0828 +++ b/Documentation/video4linux/CARDLIST.au0828 | |||
@@ -2,3 +2,4 @@ | |||
2 | 1 -> Hauppauge HVR950Q (au0828) [2040:7200,2040:7210,2040:7217,2040:721b,2040:721f,2040:7280,0fd9:0008] | 2 | 1 -> Hauppauge HVR950Q (au0828) [2040:7200,2040:7210,2040:7217,2040:721b,2040:721f,2040:7280,0fd9:0008] |
3 | 2 -> Hauppauge HVR850 (au0828) [2040:7240] | 3 | 2 -> Hauppauge HVR850 (au0828) [2040:7240] |
4 | 3 -> DViCO FusionHDTV USB (au0828) [0fe9:d620] | 4 | 3 -> DViCO FusionHDTV USB (au0828) [0fe9:d620] |
5 | 4 -> Hauppauge HVR950Q rev xxF8 (au0828) [2040:7201,2040:7211,2040:7281] | ||
diff --git a/Documentation/video4linux/CARDLIST.em28xx b/Documentation/video4linux/CARDLIST.em28xx index 10591467ef16..89c7f32abf9f 100644 --- a/Documentation/video4linux/CARDLIST.em28xx +++ b/Documentation/video4linux/CARDLIST.em28xx | |||
@@ -1,11 +1,11 @@ | |||
1 | 0 -> Unknown EM2800 video grabber (em2800) [eb1a:2800] | 1 | 0 -> Unknown EM2800 video grabber (em2800) [eb1a:2800] |
2 | 1 -> Unknown EM2750/28xx video grabber (em2820/em2840) [eb1a:2750,eb1a:2820,eb1a:2821,eb1a:2860,eb1a:2861,eb1a:2870,eb1a:2881,eb1a:2883] | 2 | 1 -> Unknown EM2750/28xx video grabber (em2820/em2840) [eb1a:2820,eb1a:2821,eb1a:2860,eb1a:2861,eb1a:2870,eb1a:2881,eb1a:2883] |
3 | 2 -> Terratec Cinergy 250 USB (em2820/em2840) [0ccd:0036] | 3 | 2 -> Terratec Cinergy 250 USB (em2820/em2840) [0ccd:0036] |
4 | 3 -> Pinnacle PCTV USB 2 (em2820/em2840) [2304:0208] | 4 | 3 -> Pinnacle PCTV USB 2 (em2820/em2840) [2304:0208] |
5 | 4 -> Hauppauge WinTV USB 2 (em2820/em2840) [2040:4200,2040:4201] | 5 | 4 -> Hauppauge WinTV USB 2 (em2820/em2840) [2040:4200,2040:4201] |
6 | 5 -> MSI VOX USB 2.0 (em2820/em2840) | 6 | 5 -> MSI VOX USB 2.0 (em2820/em2840) |
7 | 6 -> Terratec Cinergy 200 USB (em2800) | 7 | 6 -> Terratec Cinergy 200 USB (em2800) |
8 | 7 -> Leadtek Winfast USB II (em2800) | 8 | 7 -> Leadtek Winfast USB II (em2800) [0413:6023] |
9 | 8 -> Kworld USB2800 (em2800) | 9 | 8 -> Kworld USB2800 (em2800) |
10 | 9 -> Pinnacle Dazzle DVC 90/DVC 100 (em2820/em2840) [2304:0207,2304:021a] | 10 | 9 -> Pinnacle Dazzle DVC 90/DVC 100 (em2820/em2840) [2304:0207,2304:021a] |
11 | 10 -> Hauppauge WinTV HVR 900 (em2880) [2040:6500] | 11 | 10 -> Hauppauge WinTV HVR 900 (em2880) [2040:6500] |
@@ -14,7 +14,46 @@ | |||
14 | 13 -> Terratec Prodigy XS (em2880) [0ccd:0047] | 14 | 13 -> Terratec Prodigy XS (em2880) [0ccd:0047] |
15 | 14 -> Pixelview Prolink PlayTV USB 2.0 (em2820/em2840) | 15 | 14 -> Pixelview Prolink PlayTV USB 2.0 (em2820/em2840) |
16 | 15 -> V-Gear PocketTV (em2800) | 16 | 15 -> V-Gear PocketTV (em2800) |
17 | 16 -> Hauppauge WinTV HVR 950 (em2880) [2040:6513,2040:6517,2040:651b,2040:651f] | 17 | 16 -> Hauppauge WinTV HVR 950 (em2883) [2040:6513,2040:6517,2040:651b,2040:651f] |
18 | 17 -> Pinnacle PCTV HD Pro Stick (em2880) [2304:0227] | 18 | 17 -> Pinnacle PCTV HD Pro Stick (em2880) [2304:0227] |
19 | 18 -> Hauppauge WinTV HVR 900 (R2) (em2880) [2040:6502] | 19 | 18 -> Hauppauge WinTV HVR 900 (R2) (em2880) [2040:6502] |
20 | 19 -> PointNix Intra-Oral Camera (em2860) | 20 | 19 -> PointNix Intra-Oral Camera (em2860) |
21 | 20 -> AMD ATI TV Wonder HD 600 (em2880) [0438:b002] | ||
22 | 21 -> eMPIA Technology, Inc. GrabBeeX+ Video Encoder (em2800) [eb1a:2801] | ||
23 | 22 -> Unknown EM2750/EM2751 webcam grabber (em2750) [eb1a:2750,eb1a:2751] | ||
24 | 23 -> Huaqi DLCW-130 (em2750) | ||
25 | 24 -> D-Link DUB-T210 TV Tuner (em2820/em2840) [2001:f112] | ||
26 | 25 -> Gadmei UTV310 (em2820/em2840) | ||
27 | 26 -> Hercules Smart TV USB 2.0 (em2820/em2840) | ||
28 | 27 -> Pinnacle PCTV USB 2 (Philips FM1216ME) (em2820/em2840) | ||
29 | 28 -> Leadtek Winfast USB II Deluxe (em2820/em2840) | ||
30 | 29 -> Pinnacle Dazzle DVC 100 (em2820/em2840) | ||
31 | 30 -> Videology 20K14XUSB USB2.0 (em2820/em2840) | ||
32 | 31 -> Usbgear VD204v9 (em2821) | ||
33 | 32 -> Supercomp USB 2.0 TV (em2821) | ||
34 | 33 -> SIIG AVTuner-PVR/Prolink PlayTV USB 2.0 (em2821) | ||
35 | 34 -> Terratec Cinergy A Hybrid XS (em2860) [0ccd:004f] | ||
36 | 35 -> Typhoon DVD Maker (em2860) | ||
37 | 36 -> NetGMBH Cam (em2860) | ||
38 | 37 -> Gadmei UTV330 (em2860) | ||
39 | 38 -> Yakumo MovieMixer (em2861) | ||
40 | 39 -> KWorld PVRTV 300U (em2861) [eb1a:e300] | ||
41 | 40 -> Plextor ConvertX PX-TV100U (em2861) [093b:a005] | ||
42 | 41 -> Kworld 350 U DVB-T (em2870) [eb1a:e350] | ||
43 | 42 -> Kworld 355 U DVB-T (em2870) [eb1a:e355,eb1a:e357] | ||
44 | 43 -> Terratec Cinergy T XS (em2870) [0ccd:0043] | ||
45 | 44 -> Terratec Cinergy T XS (MT2060) (em2870) | ||
46 | 45 -> Pinnacle PCTV DVB-T (em2870) | ||
47 | 46 -> Compro, VideoMate U3 (em2870) [185b:2870] | ||
48 | 47 -> KWorld DVB-T 305U (em2880) [eb1a:e305] | ||
49 | 48 -> KWorld DVB-T 310U (em2880) | ||
50 | 49 -> MSI DigiVox A/D (em2880) [eb1a:e310] | ||
51 | 50 -> MSI DigiVox A/D II (em2880) [eb1a:e320] | ||
52 | 51 -> Terratec Hybrid XS Secam (em2880) [0ccd:004c] | ||
53 | 52 -> DNT DA2 Hybrid (em2881) | ||
54 | 53 -> Pinnacle Hybrid Pro (em2881) | ||
55 | 54 -> Kworld VS-DVB-T 323UR (em2882) [eb1a:e323] | ||
56 | 55 -> Terratec Hybrid XS (em2882) (em2882) [0ccd:005e] | ||
57 | 56 -> Pinnacle Hybrid Pro (2) (em2882) [2304:0226] | ||
58 | 57 -> Kworld PlusTV HD Hybrid 330 (em2883) [eb1a:a316] | ||
59 | 58 -> Compro VideoMate ForYou/Stereo (em2820/em2840) [185b:2041] | ||
diff --git a/Documentation/video4linux/gspca.txt b/Documentation/video4linux/gspca.txt index 0c4880af57a3..bcaf4ab383be 100644 --- a/Documentation/video4linux/gspca.txt +++ b/Documentation/video4linux/gspca.txt | |||
@@ -1,4 +1,4 @@ | |||
1 | List of the webcams know by gspca. | 1 | List of the webcams known by gspca. |
2 | 2 | ||
3 | The modules are: | 3 | The modules are: |
4 | gspca_main main driver | 4 | gspca_main main driver |
diff --git a/MAINTAINERS b/MAINTAINERS index 03c5d6ccb9f8..deedc0d827b5 100644 --- a/MAINTAINERS +++ b/MAINTAINERS | |||
@@ -3796,6 +3796,12 @@ P: Ben Nizette | |||
3796 | M: bn@niasdigital.com | 3796 | M: bn@niasdigital.com |
3797 | S: Maintained | 3797 | S: Maintained |
3798 | 3798 | ||
3799 | SOC-CAMERA V4L2 SUBSYSTEM | ||
3800 | P: Guennadi Liakhovetski | ||
3801 | M: g.liakhovetski@gmx.de | ||
3802 | L: video4linux-list@redhat.com | ||
3803 | S: Maintained | ||
3804 | |||
3799 | SOFTWARE RAID (Multiple Disks) SUPPORT | 3805 | SOFTWARE RAID (Multiple Disks) SUPPORT |
3800 | P: Ingo Molnar | 3806 | P: Ingo Molnar |
3801 | M: mingo@redhat.com | 3807 | M: mingo@redhat.com |
@@ -1,7 +1,7 @@ | |||
1 | VERSION = 2 | 1 | VERSION = 2 |
2 | PATCHLEVEL = 6 | 2 | PATCHLEVEL = 6 |
3 | SUBLEVEL = 26 | 3 | SUBLEVEL = 27 |
4 | EXTRAVERSION = | 4 | EXTRAVERSION = -rc1 |
5 | NAME = Rotary Wombat | 5 | NAME = Rotary Wombat |
6 | 6 | ||
7 | # *DOCUMENTATION* | 7 | # *DOCUMENTATION* |
@@ -206,7 +206,11 @@ ifeq ($(ARCH),x86_64) | |||
206 | endif | 206 | endif |
207 | 207 | ||
208 | # Where to locate arch specific headers | 208 | # Where to locate arch specific headers |
209 | hdr-arch := $(SRCARCH) | 209 | ifeq ($(ARCH),sparc64) |
210 | hdr-arch := sparc | ||
211 | else | ||
212 | hdr-arch := $(SRCARCH) | ||
213 | endif | ||
210 | 214 | ||
211 | KCONFIG_CONFIG ?= .config | 215 | KCONFIG_CONFIG ?= .config |
212 | 216 | ||
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index c8f528284a94..257033c691f2 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig | |||
@@ -17,6 +17,7 @@ config ARM | |||
17 | select HAVE_KRETPROBES if (HAVE_KPROBES) | 17 | select HAVE_KRETPROBES if (HAVE_KPROBES) |
18 | select HAVE_FTRACE if (!XIP_KERNEL) | 18 | select HAVE_FTRACE if (!XIP_KERNEL) |
19 | select HAVE_DYNAMIC_FTRACE if (HAVE_FTRACE) | 19 | select HAVE_DYNAMIC_FTRACE if (HAVE_FTRACE) |
20 | select HAVE_GENERIC_DMA_COHERENT | ||
20 | help | 21 | help |
21 | The ARM series is a line of low-power-consumption RISC chip designs | 22 | The ARM series is a line of low-power-consumption RISC chip designs |
22 | licensed by ARM Ltd and targeted at embedded applications and | 23 | licensed by ARM Ltd and targeted at embedded applications and |
@@ -234,6 +235,7 @@ config ARCH_VERSATILE | |||
234 | config ARCH_AT91 | 235 | config ARCH_AT91 |
235 | bool "Atmel AT91" | 236 | bool "Atmel AT91" |
236 | select GENERIC_GPIO | 237 | select GENERIC_GPIO |
238 | select HAVE_CLK | ||
237 | help | 239 | help |
238 | This enables support for systems based on the Atmel AT91RM9200, | 240 | This enables support for systems based on the Atmel AT91RM9200, |
239 | AT91SAM9 and AT91CAP9 processors. | 241 | AT91SAM9 and AT91CAP9 processors. |
@@ -267,7 +269,6 @@ config ARCH_EP93XX | |||
267 | select ARM_VIC | 269 | select ARM_VIC |
268 | select GENERIC_GPIO | 270 | select GENERIC_GPIO |
269 | select HAVE_CLK | 271 | select HAVE_CLK |
270 | select HAVE_CLK | ||
271 | select ARCH_REQUIRE_GPIOLIB | 272 | select ARCH_REQUIRE_GPIOLIB |
272 | help | 273 | help |
273 | This enables support for the Cirrus EP93xx series of CPUs. | 274 | This enables support for the Cirrus EP93xx series of CPUs. |
diff --git a/arch/arm/mm/consistent.c b/arch/arm/mm/consistent.c index 333a82a3717e..db7b3e38ef1d 100644 --- a/arch/arm/mm/consistent.c +++ b/arch/arm/mm/consistent.c | |||
@@ -274,6 +274,11 @@ __dma_alloc(struct device *dev, size_t size, dma_addr_t *handle, gfp_t gfp, | |||
274 | void * | 274 | void * |
275 | dma_alloc_coherent(struct device *dev, size_t size, dma_addr_t *handle, gfp_t gfp) | 275 | dma_alloc_coherent(struct device *dev, size_t size, dma_addr_t *handle, gfp_t gfp) |
276 | { | 276 | { |
277 | void *memory; | ||
278 | |||
279 | if (dma_alloc_from_coherent(dev, size, handle, &memory)) | ||
280 | return memory; | ||
281 | |||
277 | if (arch_is_coherent()) { | 282 | if (arch_is_coherent()) { |
278 | void *virt; | 283 | void *virt; |
279 | 284 | ||
@@ -362,6 +367,9 @@ void dma_free_coherent(struct device *dev, size_t size, void *cpu_addr, dma_addr | |||
362 | 367 | ||
363 | WARN_ON(irqs_disabled()); | 368 | WARN_ON(irqs_disabled()); |
364 | 369 | ||
370 | if (dma_release_from_coherent(dev, get_order(size), cpu_addr)) | ||
371 | return; | ||
372 | |||
365 | if (arch_is_coherent()) { | 373 | if (arch_is_coherent()) { |
366 | kfree(cpu_addr); | 374 | kfree(cpu_addr); |
367 | return; | 375 | return; |
diff --git a/arch/cris/arch-v32/drivers/Kconfig b/arch/cris/arch-v32/drivers/Kconfig index 2a92cb1886ca..7a64fcef9d07 100644 --- a/arch/cris/arch-v32/drivers/Kconfig +++ b/arch/cris/arch-v32/drivers/Kconfig | |||
@@ -641,6 +641,7 @@ config PCI | |||
641 | bool | 641 | bool |
642 | depends on ETRAX_CARDBUS | 642 | depends on ETRAX_CARDBUS |
643 | default y | 643 | default y |
644 | select HAVE_GENERIC_DMA_COHERENT | ||
644 | 645 | ||
645 | config ETRAX_IOP_FW_LOAD | 646 | config ETRAX_IOP_FW_LOAD |
646 | tristate "IO-processor hotplug firmware loading support" | 647 | tristate "IO-processor hotplug firmware loading support" |
diff --git a/arch/cris/arch-v32/drivers/pci/dma.c b/arch/cris/arch-v32/drivers/pci/dma.c index e0364654fc44..fbe65954ee6c 100644 --- a/arch/cris/arch-v32/drivers/pci/dma.c +++ b/arch/cris/arch-v32/drivers/pci/dma.c | |||
@@ -15,35 +15,16 @@ | |||
15 | #include <linux/pci.h> | 15 | #include <linux/pci.h> |
16 | #include <asm/io.h> | 16 | #include <asm/io.h> |
17 | 17 | ||
18 | struct dma_coherent_mem { | ||
19 | void *virt_base; | ||
20 | u32 device_base; | ||
21 | int size; | ||
22 | int flags; | ||
23 | unsigned long *bitmap; | ||
24 | }; | ||
25 | |||
26 | void *dma_alloc_coherent(struct device *dev, size_t size, | 18 | void *dma_alloc_coherent(struct device *dev, size_t size, |
27 | dma_addr_t *dma_handle, gfp_t gfp) | 19 | dma_addr_t *dma_handle, gfp_t gfp) |
28 | { | 20 | { |
29 | void *ret; | 21 | void *ret; |
30 | struct dma_coherent_mem *mem = dev ? dev->dma_mem : NULL; | ||
31 | int order = get_order(size); | 22 | int order = get_order(size); |
32 | /* ignore region specifiers */ | 23 | /* ignore region specifiers */ |
33 | gfp &= ~(__GFP_DMA | __GFP_HIGHMEM); | 24 | gfp &= ~(__GFP_DMA | __GFP_HIGHMEM); |
34 | 25 | ||
35 | if (mem) { | 26 | if (dma_alloc_from_coherent(dev, size, dma_handle, &ret)) |
36 | int page = bitmap_find_free_region(mem->bitmap, mem->size, | 27 | return ret; |
37 | order); | ||
38 | if (page >= 0) { | ||
39 | *dma_handle = mem->device_base + (page << PAGE_SHIFT); | ||
40 | ret = mem->virt_base + (page << PAGE_SHIFT); | ||
41 | memset(ret, 0, size); | ||
42 | return ret; | ||
43 | } | ||
44 | if (mem->flags & DMA_MEMORY_EXCLUSIVE) | ||
45 | return NULL; | ||
46 | } | ||
47 | 28 | ||
48 | if (dev == NULL || (dev->coherent_dma_mask < 0xffffffff)) | 29 | if (dev == NULL || (dev->coherent_dma_mask < 0xffffffff)) |
49 | gfp |= GFP_DMA; | 30 | gfp |= GFP_DMA; |
@@ -60,90 +41,9 @@ void *dma_alloc_coherent(struct device *dev, size_t size, | |||
60 | void dma_free_coherent(struct device *dev, size_t size, | 41 | void dma_free_coherent(struct device *dev, size_t size, |
61 | void *vaddr, dma_addr_t dma_handle) | 42 | void *vaddr, dma_addr_t dma_handle) |
62 | { | 43 | { |
63 | struct dma_coherent_mem *mem = dev ? dev->dma_mem : NULL; | ||
64 | int order = get_order(size); | 44 | int order = get_order(size); |
65 | 45 | ||
66 | if (mem && vaddr >= mem->virt_base && vaddr < (mem->virt_base + (mem->size << PAGE_SHIFT))) { | 46 | if (!dma_release_from_coherent(dev, order, vaddr)) |
67 | int page = (vaddr - mem->virt_base) >> PAGE_SHIFT; | ||
68 | |||
69 | bitmap_release_region(mem->bitmap, page, order); | ||
70 | } else | ||
71 | free_pages((unsigned long)vaddr, order); | 47 | free_pages((unsigned long)vaddr, order); |
72 | } | 48 | } |
73 | 49 | ||
74 | int dma_declare_coherent_memory(struct device *dev, dma_addr_t bus_addr, | ||
75 | dma_addr_t device_addr, size_t size, int flags) | ||
76 | { | ||
77 | void __iomem *mem_base; | ||
78 | int pages = size >> PAGE_SHIFT; | ||
79 | int bitmap_size = BITS_TO_LONGS(pages) * sizeof(long); | ||
80 | |||
81 | if ((flags & (DMA_MEMORY_MAP | DMA_MEMORY_IO)) == 0) | ||
82 | goto out; | ||
83 | if (!size) | ||
84 | goto out; | ||
85 | if (dev->dma_mem) | ||
86 | goto out; | ||
87 | |||
88 | /* FIXME: this routine just ignores DMA_MEMORY_INCLUDES_CHILDREN */ | ||
89 | |||
90 | mem_base = ioremap(bus_addr, size); | ||
91 | if (!mem_base) | ||
92 | goto out; | ||
93 | |||
94 | dev->dma_mem = kzalloc(sizeof(struct dma_coherent_mem), GFP_KERNEL); | ||
95 | if (!dev->dma_mem) | ||
96 | goto iounmap_out; | ||
97 | dev->dma_mem->bitmap = kzalloc(bitmap_size, GFP_KERNEL); | ||
98 | if (!dev->dma_mem->bitmap) | ||
99 | goto free1_out; | ||
100 | |||
101 | dev->dma_mem->virt_base = mem_base; | ||
102 | dev->dma_mem->device_base = device_addr; | ||
103 | dev->dma_mem->size = pages; | ||
104 | dev->dma_mem->flags = flags; | ||
105 | |||
106 | if (flags & DMA_MEMORY_MAP) | ||
107 | return DMA_MEMORY_MAP; | ||
108 | |||
109 | return DMA_MEMORY_IO; | ||
110 | |||
111 | free1_out: | ||
112 | kfree(dev->dma_mem); | ||
113 | iounmap_out: | ||
114 | iounmap(mem_base); | ||
115 | out: | ||
116 | return 0; | ||
117 | } | ||
118 | EXPORT_SYMBOL(dma_declare_coherent_memory); | ||
119 | |||
120 | void dma_release_declared_memory(struct device *dev) | ||
121 | { | ||
122 | struct dma_coherent_mem *mem = dev->dma_mem; | ||
123 | |||
124 | if(!mem) | ||
125 | return; | ||
126 | dev->dma_mem = NULL; | ||
127 | iounmap(mem->virt_base); | ||
128 | kfree(mem->bitmap); | ||
129 | kfree(mem); | ||
130 | } | ||
131 | EXPORT_SYMBOL(dma_release_declared_memory); | ||
132 | |||
133 | void *dma_mark_declared_memory_occupied(struct device *dev, | ||
134 | dma_addr_t device_addr, size_t size) | ||
135 | { | ||
136 | struct dma_coherent_mem *mem = dev->dma_mem; | ||
137 | int pages = (size + (device_addr & ~PAGE_MASK) + PAGE_SIZE - 1) >> PAGE_SHIFT; | ||
138 | int pos, err; | ||
139 | |||
140 | if (!mem) | ||
141 | return ERR_PTR(-EINVAL); | ||
142 | |||
143 | pos = (device_addr - mem->device_base) >> PAGE_SHIFT; | ||
144 | err = bitmap_allocate_region(mem->bitmap, pos, get_order(pages)); | ||
145 | if (err != 0) | ||
146 | return ERR_PTR(err); | ||
147 | return mem->virt_base + (pos << PAGE_SHIFT); | ||
148 | } | ||
149 | EXPORT_SYMBOL(dma_mark_declared_memory_occupied); | ||
diff --git a/arch/powerpc/Kconfig b/arch/powerpc/Kconfig index fe88418167c5..587da5e0990f 100644 --- a/arch/powerpc/Kconfig +++ b/arch/powerpc/Kconfig | |||
@@ -117,6 +117,7 @@ config PPC | |||
117 | select HAVE_KPROBES | 117 | select HAVE_KPROBES |
118 | select HAVE_ARCH_KGDB | 118 | select HAVE_ARCH_KGDB |
119 | select HAVE_KRETPROBES | 119 | select HAVE_KRETPROBES |
120 | select HAVE_ARCH_TRACEHOOK | ||
120 | select HAVE_LMB | 121 | select HAVE_LMB |
121 | select HAVE_DMA_ATTRS if PPC64 | 122 | select HAVE_DMA_ATTRS if PPC64 |
122 | select USE_GENERIC_SMP_HELPERS if SMP | 123 | select USE_GENERIC_SMP_HELPERS if SMP |
diff --git a/arch/powerpc/kernel/entry_32.S b/arch/powerpc/kernel/entry_32.S index 81c8324a4a3c..1cbbf7033641 100644 --- a/arch/powerpc/kernel/entry_32.S +++ b/arch/powerpc/kernel/entry_32.S | |||
@@ -148,7 +148,7 @@ transfer_to_handler: | |||
148 | /* Check to see if the dbcr0 register is set up to debug. Use the | 148 | /* Check to see if the dbcr0 register is set up to debug. Use the |
149 | internal debug mode bit to do this. */ | 149 | internal debug mode bit to do this. */ |
150 | lwz r12,THREAD_DBCR0(r12) | 150 | lwz r12,THREAD_DBCR0(r12) |
151 | andis. r12,r12,(DBCR0_IDM | DBSR_DAC1R | DBSR_DAC1W)@h | 151 | andis. r12,r12,DBCR0_IDM@h |
152 | beq+ 3f | 152 | beq+ 3f |
153 | /* From user and task is ptraced - load up global dbcr0 */ | 153 | /* From user and task is ptraced - load up global dbcr0 */ |
154 | li r12,-1 /* clear all pending debug events */ | 154 | li r12,-1 /* clear all pending debug events */ |
@@ -292,7 +292,7 @@ syscall_exit_cont: | |||
292 | /* If the process has its own DBCR0 value, load it up. The internal | 292 | /* If the process has its own DBCR0 value, load it up. The internal |
293 | debug mode bit tells us that dbcr0 should be loaded. */ | 293 | debug mode bit tells us that dbcr0 should be loaded. */ |
294 | lwz r0,THREAD+THREAD_DBCR0(r2) | 294 | lwz r0,THREAD+THREAD_DBCR0(r2) |
295 | andis. r10,r0,(DBCR0_IDM | DBSR_DAC1R | DBSR_DAC1W)@h | 295 | andis. r10,r0,DBCR0_IDM@h |
296 | bnel- load_dbcr0 | 296 | bnel- load_dbcr0 |
297 | #endif | 297 | #endif |
298 | #ifdef CONFIG_44x | 298 | #ifdef CONFIG_44x |
@@ -343,7 +343,12 @@ syscall_dotrace: | |||
343 | stw r0,_TRAP(r1) | 343 | stw r0,_TRAP(r1) |
344 | addi r3,r1,STACK_FRAME_OVERHEAD | 344 | addi r3,r1,STACK_FRAME_OVERHEAD |
345 | bl do_syscall_trace_enter | 345 | bl do_syscall_trace_enter |
346 | lwz r0,GPR0(r1) /* Restore original registers */ | 346 | /* |
347 | * Restore argument registers possibly just changed. | ||
348 | * We use the return value of do_syscall_trace_enter | ||
349 | * for call number to look up in the table (r0). | ||
350 | */ | ||
351 | mr r0,r3 | ||
347 | lwz r3,GPR3(r1) | 352 | lwz r3,GPR3(r1) |
348 | lwz r4,GPR4(r1) | 353 | lwz r4,GPR4(r1) |
349 | lwz r5,GPR5(r1) | 354 | lwz r5,GPR5(r1) |
@@ -720,7 +725,7 @@ restore_user: | |||
720 | /* Check whether this process has its own DBCR0 value. The internal | 725 | /* Check whether this process has its own DBCR0 value. The internal |
721 | debug mode bit tells us that dbcr0 should be loaded. */ | 726 | debug mode bit tells us that dbcr0 should be loaded. */ |
722 | lwz r0,THREAD+THREAD_DBCR0(r2) | 727 | lwz r0,THREAD+THREAD_DBCR0(r2) |
723 | andis. r10,r0,(DBCR0_IDM | DBSR_DAC1R | DBSR_DAC1W)@h | 728 | andis. r10,r0,DBCR0_IDM@h |
724 | bnel- load_dbcr0 | 729 | bnel- load_dbcr0 |
725 | #endif | 730 | #endif |
726 | 731 | ||
@@ -1055,8 +1060,8 @@ do_user_signal: /* r10 contains MSR_KERNEL here */ | |||
1055 | SAVE_NVGPRS(r1) | 1060 | SAVE_NVGPRS(r1) |
1056 | rlwinm r3,r3,0,0,30 | 1061 | rlwinm r3,r3,0,0,30 |
1057 | stw r3,_TRAP(r1) | 1062 | stw r3,_TRAP(r1) |
1058 | 2: li r3,0 | 1063 | 2: addi r3,r1,STACK_FRAME_OVERHEAD |
1059 | addi r4,r1,STACK_FRAME_OVERHEAD | 1064 | mr r4,r9 |
1060 | bl do_signal | 1065 | bl do_signal |
1061 | REST_NVGPRS(r1) | 1066 | REST_NVGPRS(r1) |
1062 | b recheck | 1067 | b recheck |
diff --git a/arch/powerpc/kernel/entry_64.S b/arch/powerpc/kernel/entry_64.S index d7369243ae44..2d802e97097c 100644 --- a/arch/powerpc/kernel/entry_64.S +++ b/arch/powerpc/kernel/entry_64.S | |||
@@ -214,7 +214,12 @@ syscall_dotrace: | |||
214 | bl .save_nvgprs | 214 | bl .save_nvgprs |
215 | addi r3,r1,STACK_FRAME_OVERHEAD | 215 | addi r3,r1,STACK_FRAME_OVERHEAD |
216 | bl .do_syscall_trace_enter | 216 | bl .do_syscall_trace_enter |
217 | ld r0,GPR0(r1) /* Restore original registers */ | 217 | /* |
218 | * Restore argument registers possibly just changed. | ||
219 | * We use the return value of do_syscall_trace_enter | ||
220 | * for the call number to look up in the table (r0). | ||
221 | */ | ||
222 | mr r0,r3 | ||
218 | ld r3,GPR3(r1) | 223 | ld r3,GPR3(r1) |
219 | ld r4,GPR4(r1) | 224 | ld r4,GPR4(r1) |
220 | ld r5,GPR5(r1) | 225 | ld r5,GPR5(r1) |
@@ -638,8 +643,7 @@ user_work: | |||
638 | b .ret_from_except_lite | 643 | b .ret_from_except_lite |
639 | 644 | ||
640 | 1: bl .save_nvgprs | 645 | 1: bl .save_nvgprs |
641 | li r3,0 | 646 | addi r3,r1,STACK_FRAME_OVERHEAD |
642 | addi r4,r1,STACK_FRAME_OVERHEAD | ||
643 | bl .do_signal | 647 | bl .do_signal |
644 | b .ret_from_except | 648 | b .ret_from_except |
645 | 649 | ||
diff --git a/arch/powerpc/kernel/legacy_serial.c b/arch/powerpc/kernel/legacy_serial.c index 4d96e1db55ee..9ddfaef1a184 100644 --- a/arch/powerpc/kernel/legacy_serial.c +++ b/arch/powerpc/kernel/legacy_serial.c | |||
@@ -493,18 +493,18 @@ static int __init serial_dev_init(void) | |||
493 | device_initcall(serial_dev_init); | 493 | device_initcall(serial_dev_init); |
494 | 494 | ||
495 | 495 | ||
496 | #ifdef CONFIG_SERIAL_8250_CONSOLE | ||
496 | /* | 497 | /* |
497 | * This is called very early, as part of console_init() (typically just after | 498 | * This is called very early, as part of console_init() (typically just after |
498 | * time_init()). This function is respondible for trying to find a good | 499 | * time_init()). This function is respondible for trying to find a good |
499 | * default console on serial ports. It tries to match the open firmware | 500 | * default console on serial ports. It tries to match the open firmware |
500 | * default output with one of the available serial console drivers, either | 501 | * default output with one of the available serial console drivers that have |
501 | * one of the platform serial ports that have been probed earlier by | 502 | * been probed earlier by find_legacy_serial_ports() |
502 | * find_legacy_serial_ports() or some more platform specific ones. | ||
503 | */ | 503 | */ |
504 | static int __init check_legacy_serial_console(void) | 504 | static int __init check_legacy_serial_console(void) |
505 | { | 505 | { |
506 | struct device_node *prom_stdout = NULL; | 506 | struct device_node *prom_stdout = NULL; |
507 | int speed = 0, offset = 0; | 507 | int i, speed = 0, offset = 0; |
508 | const char *name; | 508 | const char *name; |
509 | const u32 *spd; | 509 | const u32 *spd; |
510 | 510 | ||
@@ -548,31 +548,20 @@ static int __init check_legacy_serial_console(void) | |||
548 | if (spd) | 548 | if (spd) |
549 | speed = *spd; | 549 | speed = *spd; |
550 | 550 | ||
551 | if (0) | 551 | if (strcmp(name, "serial") != 0) |
552 | ; | 552 | goto not_found; |
553 | #ifdef CONFIG_SERIAL_8250_CONSOLE | 553 | |
554 | else if (strcmp(name, "serial") == 0) { | 554 | /* Look for it in probed array */ |
555 | int i; | 555 | for (i = 0; i < legacy_serial_count; i++) { |
556 | /* Look for it in probed array */ | 556 | if (prom_stdout != legacy_serial_infos[i].np) |
557 | for (i = 0; i < legacy_serial_count; i++) { | 557 | continue; |
558 | if (prom_stdout != legacy_serial_infos[i].np) | 558 | offset = i; |
559 | continue; | 559 | speed = legacy_serial_infos[i].speed; |
560 | offset = i; | 560 | break; |
561 | speed = legacy_serial_infos[i].speed; | ||
562 | break; | ||
563 | } | ||
564 | if (i >= legacy_serial_count) | ||
565 | goto not_found; | ||
566 | } | 561 | } |
567 | #endif /* CONFIG_SERIAL_8250_CONSOLE */ | 562 | if (i >= legacy_serial_count) |
568 | #ifdef CONFIG_SERIAL_PMACZILOG_CONSOLE | ||
569 | else if (strcmp(name, "ch-a") == 0) | ||
570 | offset = 0; | ||
571 | else if (strcmp(name, "ch-b") == 0) | ||
572 | offset = 1; | ||
573 | #endif /* CONFIG_SERIAL_PMACZILOG_CONSOLE */ | ||
574 | else | ||
575 | goto not_found; | 563 | goto not_found; |
564 | |||
576 | of_node_put(prom_stdout); | 565 | of_node_put(prom_stdout); |
577 | 566 | ||
578 | DBG("Found serial console at ttyS%d\n", offset); | 567 | DBG("Found serial console at ttyS%d\n", offset); |
@@ -591,3 +580,4 @@ static int __init check_legacy_serial_console(void) | |||
591 | } | 580 | } |
592 | console_initcall(check_legacy_serial_console); | 581 | console_initcall(check_legacy_serial_console); |
593 | 582 | ||
583 | #endif /* CONFIG_SERIAL_8250_CONSOLE */ | ||
diff --git a/arch/powerpc/kernel/process.c b/arch/powerpc/kernel/process.c index db2497ccc111..e030f3bd5024 100644 --- a/arch/powerpc/kernel/process.c +++ b/arch/powerpc/kernel/process.c | |||
@@ -254,7 +254,7 @@ void do_dabr(struct pt_regs *regs, unsigned long address, | |||
254 | return; | 254 | return; |
255 | 255 | ||
256 | /* Clear the DAC and struct entries. One shot trigger */ | 256 | /* Clear the DAC and struct entries. One shot trigger */ |
257 | #if (defined(CONFIG_44x) || defined(CONFIG_BOOKE)) | 257 | #if defined(CONFIG_BOOKE) |
258 | mtspr(SPRN_DBCR0, mfspr(SPRN_DBCR0) & ~(DBSR_DAC1R | DBSR_DAC1W | 258 | mtspr(SPRN_DBCR0, mfspr(SPRN_DBCR0) & ~(DBSR_DAC1R | DBSR_DAC1W |
259 | | DBCR0_IDM)); | 259 | | DBCR0_IDM)); |
260 | #endif | 260 | #endif |
@@ -286,7 +286,7 @@ int set_dabr(unsigned long dabr) | |||
286 | mtspr(SPRN_DABR, dabr); | 286 | mtspr(SPRN_DABR, dabr); |
287 | #endif | 287 | #endif |
288 | 288 | ||
289 | #if defined(CONFIG_44x) || defined(CONFIG_BOOKE) | 289 | #if defined(CONFIG_BOOKE) |
290 | mtspr(SPRN_DAC1, dabr); | 290 | mtspr(SPRN_DAC1, dabr); |
291 | #endif | 291 | #endif |
292 | 292 | ||
@@ -373,7 +373,7 @@ struct task_struct *__switch_to(struct task_struct *prev, | |||
373 | if (unlikely(__get_cpu_var(current_dabr) != new->thread.dabr)) | 373 | if (unlikely(__get_cpu_var(current_dabr) != new->thread.dabr)) |
374 | set_dabr(new->thread.dabr); | 374 | set_dabr(new->thread.dabr); |
375 | 375 | ||
376 | #if defined(CONFIG_44x) || defined(CONFIG_BOOKE) | 376 | #if defined(CONFIG_BOOKE) |
377 | /* If new thread DAC (HW breakpoint) is the same then leave it */ | 377 | /* If new thread DAC (HW breakpoint) is the same then leave it */ |
378 | if (new->thread.dabr) | 378 | if (new->thread.dabr) |
379 | set_dabr(new->thread.dabr); | 379 | set_dabr(new->thread.dabr); |
@@ -568,7 +568,7 @@ void flush_thread(void) | |||
568 | current->thread.dabr = 0; | 568 | current->thread.dabr = 0; |
569 | set_dabr(0); | 569 | set_dabr(0); |
570 | 570 | ||
571 | #if defined(CONFIG_44x) || defined(CONFIG_BOOKE) | 571 | #if defined(CONFIG_BOOKE) |
572 | current->thread.dbcr0 &= ~(DBSR_DAC1R | DBSR_DAC1W); | 572 | current->thread.dbcr0 &= ~(DBSR_DAC1R | DBSR_DAC1W); |
573 | #endif | 573 | #endif |
574 | } | 574 | } |
diff --git a/arch/powerpc/kernel/prom_init.c b/arch/powerpc/kernel/prom_init.c index c4ab2195b9cb..b72849ac7db3 100644 --- a/arch/powerpc/kernel/prom_init.c +++ b/arch/powerpc/kernel/prom_init.c | |||
@@ -205,8 +205,6 @@ static int __initdata mem_reserve_cnt; | |||
205 | static cell_t __initdata regbuf[1024]; | 205 | static cell_t __initdata regbuf[1024]; |
206 | 206 | ||
207 | 207 | ||
208 | #define MAX_CPU_THREADS 2 | ||
209 | |||
210 | /* | 208 | /* |
211 | * Error results ... some OF calls will return "-1" on error, some | 209 | * Error results ... some OF calls will return "-1" on error, some |
212 | * will return 0, some will return either. To simplify, here are | 210 | * will return 0, some will return either. To simplify, here are |
@@ -1339,10 +1337,6 @@ static void __init prom_hold_cpus(void) | |||
1339 | unsigned int reg; | 1337 | unsigned int reg; |
1340 | phandle node; | 1338 | phandle node; |
1341 | char type[64]; | 1339 | char type[64]; |
1342 | int cpuid = 0; | ||
1343 | unsigned int interrupt_server[MAX_CPU_THREADS]; | ||
1344 | unsigned int cpu_threads, hw_cpu_num; | ||
1345 | int propsize; | ||
1346 | struct prom_t *_prom = &RELOC(prom); | 1340 | struct prom_t *_prom = &RELOC(prom); |
1347 | unsigned long *spinloop | 1341 | unsigned long *spinloop |
1348 | = (void *) LOW_ADDR(__secondary_hold_spinloop); | 1342 | = (void *) LOW_ADDR(__secondary_hold_spinloop); |
@@ -1386,7 +1380,6 @@ static void __init prom_hold_cpus(void) | |||
1386 | reg = -1; | 1380 | reg = -1; |
1387 | prom_getprop(node, "reg", ®, sizeof(reg)); | 1381 | prom_getprop(node, "reg", ®, sizeof(reg)); |
1388 | 1382 | ||
1389 | prom_debug("\ncpuid = 0x%x\n", cpuid); | ||
1390 | prom_debug("cpu hw idx = 0x%x\n", reg); | 1383 | prom_debug("cpu hw idx = 0x%x\n", reg); |
1391 | 1384 | ||
1392 | /* Init the acknowledge var which will be reset by | 1385 | /* Init the acknowledge var which will be reset by |
@@ -1395,28 +1388,9 @@ static void __init prom_hold_cpus(void) | |||
1395 | */ | 1388 | */ |
1396 | *acknowledge = (unsigned long)-1; | 1389 | *acknowledge = (unsigned long)-1; |
1397 | 1390 | ||
1398 | propsize = prom_getprop(node, "ibm,ppc-interrupt-server#s", | 1391 | if (reg != _prom->cpu) { |
1399 | &interrupt_server, | ||
1400 | sizeof(interrupt_server)); | ||
1401 | if (propsize < 0) { | ||
1402 | /* no property. old hardware has no SMT */ | ||
1403 | cpu_threads = 1; | ||
1404 | interrupt_server[0] = reg; /* fake it with phys id */ | ||
1405 | } else { | ||
1406 | /* We have a threaded processor */ | ||
1407 | cpu_threads = propsize / sizeof(u32); | ||
1408 | if (cpu_threads > MAX_CPU_THREADS) { | ||
1409 | prom_printf("SMT: too many threads!\n" | ||
1410 | "SMT: found %x, max is %x\n", | ||
1411 | cpu_threads, MAX_CPU_THREADS); | ||
1412 | cpu_threads = 1; /* ToDo: panic? */ | ||
1413 | } | ||
1414 | } | ||
1415 | |||
1416 | hw_cpu_num = interrupt_server[0]; | ||
1417 | if (hw_cpu_num != _prom->cpu) { | ||
1418 | /* Primary Thread of non-boot cpu */ | 1392 | /* Primary Thread of non-boot cpu */ |
1419 | prom_printf("%x : starting cpu hw idx %x... ", cpuid, reg); | 1393 | prom_printf("starting cpu hw idx %x... ", reg); |
1420 | call_prom("start-cpu", 3, 0, node, | 1394 | call_prom("start-cpu", 3, 0, node, |
1421 | secondary_hold, reg); | 1395 | secondary_hold, reg); |
1422 | 1396 | ||
@@ -1431,17 +1405,10 @@ static void __init prom_hold_cpus(void) | |||
1431 | } | 1405 | } |
1432 | #ifdef CONFIG_SMP | 1406 | #ifdef CONFIG_SMP |
1433 | else | 1407 | else |
1434 | prom_printf("%x : boot cpu %x\n", cpuid, reg); | 1408 | prom_printf("boot cpu hw idx %x\n", reg); |
1435 | #endif /* CONFIG_SMP */ | 1409 | #endif /* CONFIG_SMP */ |
1436 | |||
1437 | /* Reserve cpu #s for secondary threads. They start later. */ | ||
1438 | cpuid += cpu_threads; | ||
1439 | } | 1410 | } |
1440 | 1411 | ||
1441 | if (cpuid > NR_CPUS) | ||
1442 | prom_printf("WARNING: maximum CPUs (" __stringify(NR_CPUS) | ||
1443 | ") exceeded: ignoring extras\n"); | ||
1444 | |||
1445 | prom_debug("prom_hold_cpus: end...\n"); | 1412 | prom_debug("prom_hold_cpus: end...\n"); |
1446 | } | 1413 | } |
1447 | 1414 | ||
diff --git a/arch/powerpc/kernel/ptrace.c b/arch/powerpc/kernel/ptrace.c index a5d0e78779c8..6b66cd85b433 100644 --- a/arch/powerpc/kernel/ptrace.c +++ b/arch/powerpc/kernel/ptrace.c | |||
@@ -22,6 +22,7 @@ | |||
22 | #include <linux/errno.h> | 22 | #include <linux/errno.h> |
23 | #include <linux/ptrace.h> | 23 | #include <linux/ptrace.h> |
24 | #include <linux/regset.h> | 24 | #include <linux/regset.h> |
25 | #include <linux/tracehook.h> | ||
25 | #include <linux/elf.h> | 26 | #include <linux/elf.h> |
26 | #include <linux/user.h> | 27 | #include <linux/user.h> |
27 | #include <linux/security.h> | 28 | #include <linux/security.h> |
@@ -717,7 +718,7 @@ void user_disable_single_step(struct task_struct *task) | |||
717 | struct pt_regs *regs = task->thread.regs; | 718 | struct pt_regs *regs = task->thread.regs; |
718 | 719 | ||
719 | 720 | ||
720 | #if defined(CONFIG_44x) || defined(CONFIG_BOOKE) | 721 | #if defined(CONFIG_BOOKE) |
721 | /* If DAC then do not single step, skip */ | 722 | /* If DAC then do not single step, skip */ |
722 | if (task->thread.dabr) | 723 | if (task->thread.dabr) |
723 | return; | 724 | return; |
@@ -744,10 +745,11 @@ int ptrace_set_debugreg(struct task_struct *task, unsigned long addr, | |||
744 | if (addr > 0) | 745 | if (addr > 0) |
745 | return -EINVAL; | 746 | return -EINVAL; |
746 | 747 | ||
748 | /* The bottom 3 bits in dabr are flags */ | ||
747 | if ((data & ~0x7UL) >= TASK_SIZE) | 749 | if ((data & ~0x7UL) >= TASK_SIZE) |
748 | return -EIO; | 750 | return -EIO; |
749 | 751 | ||
750 | #ifdef CONFIG_PPC64 | 752 | #ifndef CONFIG_BOOKE |
751 | 753 | ||
752 | /* For processors using DABR (i.e. 970), the bottom 3 bits are flags. | 754 | /* For processors using DABR (i.e. 970), the bottom 3 bits are flags. |
753 | * It was assumed, on previous implementations, that 3 bits were | 755 | * It was assumed, on previous implementations, that 3 bits were |
@@ -769,7 +771,7 @@ int ptrace_set_debugreg(struct task_struct *task, unsigned long addr, | |||
769 | task->thread.dabr = data; | 771 | task->thread.dabr = data; |
770 | 772 | ||
771 | #endif | 773 | #endif |
772 | #if defined(CONFIG_44x) || defined(CONFIG_BOOKE) | 774 | #if defined(CONFIG_BOOKE) |
773 | 775 | ||
774 | /* As described above, it was assumed 3 bits were passed with the data | 776 | /* As described above, it was assumed 3 bits were passed with the data |
775 | * address, but we will assume only the mode bits will be passed | 777 | * address, but we will assume only the mode bits will be passed |
@@ -1013,31 +1015,24 @@ long arch_ptrace(struct task_struct *child, long request, long addr, long data) | |||
1013 | return ret; | 1015 | return ret; |
1014 | } | 1016 | } |
1015 | 1017 | ||
1016 | static void do_syscall_trace(void) | 1018 | /* |
1019 | * We must return the syscall number to actually look up in the table. | ||
1020 | * This can be -1L to skip running any syscall at all. | ||
1021 | */ | ||
1022 | long do_syscall_trace_enter(struct pt_regs *regs) | ||
1017 | { | 1023 | { |
1018 | /* the 0x80 provides a way for the tracing parent to distinguish | 1024 | long ret = 0; |
1019 | between a syscall stop and SIGTRAP delivery */ | ||
1020 | ptrace_notify(SIGTRAP | ((current->ptrace & PT_TRACESYSGOOD) | ||
1021 | ? 0x80 : 0)); | ||
1022 | |||
1023 | /* | ||
1024 | * this isn't the same as continuing with a signal, but it will do | ||
1025 | * for normal use. strace only continues with a signal if the | ||
1026 | * stopping signal is not SIGTRAP. -brl | ||
1027 | */ | ||
1028 | if (current->exit_code) { | ||
1029 | send_sig(current->exit_code, current, 1); | ||
1030 | current->exit_code = 0; | ||
1031 | } | ||
1032 | } | ||
1033 | 1025 | ||
1034 | void do_syscall_trace_enter(struct pt_regs *regs) | ||
1035 | { | ||
1036 | secure_computing(regs->gpr[0]); | 1026 | secure_computing(regs->gpr[0]); |
1037 | 1027 | ||
1038 | if (test_thread_flag(TIF_SYSCALL_TRACE) | 1028 | if (test_thread_flag(TIF_SYSCALL_TRACE) && |
1039 | && (current->ptrace & PT_PTRACED)) | 1029 | tracehook_report_syscall_entry(regs)) |
1040 | do_syscall_trace(); | 1030 | /* |
1031 | * Tracing decided this syscall should not happen. | ||
1032 | * We'll return a bogus call number to get an ENOSYS | ||
1033 | * error, but leave the original number in regs->gpr[0]. | ||
1034 | */ | ||
1035 | ret = -1L; | ||
1041 | 1036 | ||
1042 | if (unlikely(current->audit_context)) { | 1037 | if (unlikely(current->audit_context)) { |
1043 | #ifdef CONFIG_PPC64 | 1038 | #ifdef CONFIG_PPC64 |
@@ -1055,16 +1050,19 @@ void do_syscall_trace_enter(struct pt_regs *regs) | |||
1055 | regs->gpr[5] & 0xffffffff, | 1050 | regs->gpr[5] & 0xffffffff, |
1056 | regs->gpr[6] & 0xffffffff); | 1051 | regs->gpr[6] & 0xffffffff); |
1057 | } | 1052 | } |
1053 | |||
1054 | return ret ?: regs->gpr[0]; | ||
1058 | } | 1055 | } |
1059 | 1056 | ||
1060 | void do_syscall_trace_leave(struct pt_regs *regs) | 1057 | void do_syscall_trace_leave(struct pt_regs *regs) |
1061 | { | 1058 | { |
1059 | int step; | ||
1060 | |||
1062 | if (unlikely(current->audit_context)) | 1061 | if (unlikely(current->audit_context)) |
1063 | audit_syscall_exit((regs->ccr&0x10000000)?AUDITSC_FAILURE:AUDITSC_SUCCESS, | 1062 | audit_syscall_exit((regs->ccr&0x10000000)?AUDITSC_FAILURE:AUDITSC_SUCCESS, |
1064 | regs->result); | 1063 | regs->result); |
1065 | 1064 | ||
1066 | if ((test_thread_flag(TIF_SYSCALL_TRACE) | 1065 | step = test_thread_flag(TIF_SINGLESTEP); |
1067 | || test_thread_flag(TIF_SINGLESTEP)) | 1066 | if (step || test_thread_flag(TIF_SYSCALL_TRACE)) |
1068 | && (current->ptrace & PT_PTRACED)) | 1067 | tracehook_report_syscall_exit(regs, step); |
1069 | do_syscall_trace(); | ||
1070 | } | 1068 | } |
diff --git a/arch/powerpc/kernel/setup-common.c b/arch/powerpc/kernel/setup-common.c index 61a3f4132087..9cc5a52711e5 100644 --- a/arch/powerpc/kernel/setup-common.c +++ b/arch/powerpc/kernel/setup-common.c | |||
@@ -367,7 +367,6 @@ static void __init cpu_init_thread_core_maps(int tpc) | |||
367 | * setup_cpu_maps - initialize the following cpu maps: | 367 | * setup_cpu_maps - initialize the following cpu maps: |
368 | * cpu_possible_map | 368 | * cpu_possible_map |
369 | * cpu_present_map | 369 | * cpu_present_map |
370 | * cpu_sibling_map | ||
371 | * | 370 | * |
372 | * Having the possible map set up early allows us to restrict allocations | 371 | * Having the possible map set up early allows us to restrict allocations |
373 | * of things like irqstacks to num_possible_cpus() rather than NR_CPUS. | 372 | * of things like irqstacks to num_possible_cpus() rather than NR_CPUS. |
@@ -475,29 +474,6 @@ void __init smp_setup_cpu_maps(void) | |||
475 | */ | 474 | */ |
476 | cpu_init_thread_core_maps(nthreads); | 475 | cpu_init_thread_core_maps(nthreads); |
477 | } | 476 | } |
478 | |||
479 | /* | ||
480 | * Being that cpu_sibling_map is now a per_cpu array, then it cannot | ||
481 | * be initialized until the per_cpu areas have been created. This | ||
482 | * function is now called from setup_per_cpu_areas(). | ||
483 | */ | ||
484 | void __init smp_setup_cpu_sibling_map(void) | ||
485 | { | ||
486 | #ifdef CONFIG_PPC64 | ||
487 | int i, cpu, base; | ||
488 | |||
489 | for_each_possible_cpu(cpu) { | ||
490 | DBG("Sibling map for CPU %d:", cpu); | ||
491 | base = cpu_first_thread_in_core(cpu); | ||
492 | for (i = 0; i < threads_per_core; i++) { | ||
493 | cpu_set(base + i, per_cpu(cpu_sibling_map, cpu)); | ||
494 | DBG(" %d", base + i); | ||
495 | } | ||
496 | DBG("\n"); | ||
497 | } | ||
498 | |||
499 | #endif /* CONFIG_PPC64 */ | ||
500 | } | ||
501 | #endif /* CONFIG_SMP */ | 477 | #endif /* CONFIG_SMP */ |
502 | 478 | ||
503 | #ifdef CONFIG_PCSPKR_PLATFORM | 479 | #ifdef CONFIG_PCSPKR_PLATFORM |
diff --git a/arch/powerpc/kernel/setup_64.c b/arch/powerpc/kernel/setup_64.c index 04d8de9f0fc6..8b25f51f03bf 100644 --- a/arch/powerpc/kernel/setup_64.c +++ b/arch/powerpc/kernel/setup_64.c | |||
@@ -611,9 +611,6 @@ void __init setup_per_cpu_areas(void) | |||
611 | paca[i].data_offset = ptr - __per_cpu_start; | 611 | paca[i].data_offset = ptr - __per_cpu_start; |
612 | memcpy(ptr, __per_cpu_start, __per_cpu_end - __per_cpu_start); | 612 | memcpy(ptr, __per_cpu_start, __per_cpu_end - __per_cpu_start); |
613 | } | 613 | } |
614 | |||
615 | /* Now that per_cpu is setup, initialize cpu_sibling_map */ | ||
616 | smp_setup_cpu_sibling_map(); | ||
617 | } | 614 | } |
618 | #endif | 615 | #endif |
619 | 616 | ||
diff --git a/arch/powerpc/kernel/signal.c b/arch/powerpc/kernel/signal.c index 7aada783ec6a..a54405ebd7b0 100644 --- a/arch/powerpc/kernel/signal.c +++ b/arch/powerpc/kernel/signal.c | |||
@@ -9,7 +9,7 @@ | |||
9 | * this archive for more details. | 9 | * this archive for more details. |
10 | */ | 10 | */ |
11 | 11 | ||
12 | #include <linux/ptrace.h> | 12 | #include <linux/tracehook.h> |
13 | #include <linux/signal.h> | 13 | #include <linux/signal.h> |
14 | #include <asm/uaccess.h> | 14 | #include <asm/uaccess.h> |
15 | #include <asm/unistd.h> | 15 | #include <asm/unistd.h> |
@@ -112,7 +112,7 @@ static void check_syscall_restart(struct pt_regs *regs, struct k_sigaction *ka, | |||
112 | } | 112 | } |
113 | } | 113 | } |
114 | 114 | ||
115 | int do_signal(sigset_t *oldset, struct pt_regs *regs) | 115 | static int do_signal_pending(sigset_t *oldset, struct pt_regs *regs) |
116 | { | 116 | { |
117 | siginfo_t info; | 117 | siginfo_t info; |
118 | int signr; | 118 | int signr; |
@@ -147,7 +147,7 @@ int do_signal(sigset_t *oldset, struct pt_regs *regs) | |||
147 | */ | 147 | */ |
148 | if (current->thread.dabr) { | 148 | if (current->thread.dabr) { |
149 | set_dabr(current->thread.dabr); | 149 | set_dabr(current->thread.dabr); |
150 | #if defined(CONFIG_44x) || defined(CONFIG_BOOKE) | 150 | #if defined(CONFIG_BOOKE) |
151 | mtspr(SPRN_DBCR0, current->thread.dbcr0); | 151 | mtspr(SPRN_DBCR0, current->thread.dbcr0); |
152 | #endif | 152 | #endif |
153 | } | 153 | } |
@@ -177,11 +177,28 @@ int do_signal(sigset_t *oldset, struct pt_regs *regs) | |||
177 | * its frame, and we can clear the TLF_RESTORE_SIGMASK flag. | 177 | * its frame, and we can clear the TLF_RESTORE_SIGMASK flag. |
178 | */ | 178 | */ |
179 | current_thread_info()->local_flags &= ~_TLF_RESTORE_SIGMASK; | 179 | current_thread_info()->local_flags &= ~_TLF_RESTORE_SIGMASK; |
180 | |||
181 | /* | ||
182 | * Let tracing know that we've done the handler setup. | ||
183 | */ | ||
184 | tracehook_signal_handler(signr, &info, &ka, regs, | ||
185 | test_thread_flag(TIF_SINGLESTEP)); | ||
180 | } | 186 | } |
181 | 187 | ||
182 | return ret; | 188 | return ret; |
183 | } | 189 | } |
184 | 190 | ||
191 | void do_signal(struct pt_regs *regs, unsigned long thread_info_flags) | ||
192 | { | ||
193 | if (thread_info_flags & _TIF_SIGPENDING) | ||
194 | do_signal_pending(NULL, regs); | ||
195 | |||
196 | if (thread_info_flags & _TIF_NOTIFY_RESUME) { | ||
197 | clear_thread_flag(TIF_NOTIFY_RESUME); | ||
198 | tracehook_notify_resume(regs); | ||
199 | } | ||
200 | } | ||
201 | |||
185 | long sys_sigaltstack(const stack_t __user *uss, stack_t __user *uoss, | 202 | long sys_sigaltstack(const stack_t __user *uss, stack_t __user *uoss, |
186 | unsigned long r5, unsigned long r6, unsigned long r7, | 203 | unsigned long r5, unsigned long r6, unsigned long r7, |
187 | unsigned long r8, struct pt_regs *regs) | 204 | unsigned long r8, struct pt_regs *regs) |
diff --git a/arch/powerpc/kernel/smp.c b/arch/powerpc/kernel/smp.c index f5ae9fa222ea..5337ca7bb649 100644 --- a/arch/powerpc/kernel/smp.c +++ b/arch/powerpc/kernel/smp.c | |||
@@ -41,6 +41,7 @@ | |||
41 | #include <asm/smp.h> | 41 | #include <asm/smp.h> |
42 | #include <asm/time.h> | 42 | #include <asm/time.h> |
43 | #include <asm/machdep.h> | 43 | #include <asm/machdep.h> |
44 | #include <asm/cputhreads.h> | ||
44 | #include <asm/cputable.h> | 45 | #include <asm/cputable.h> |
45 | #include <asm/system.h> | 46 | #include <asm/system.h> |
46 | #include <asm/mpic.h> | 47 | #include <asm/mpic.h> |
@@ -62,10 +63,12 @@ struct thread_info *secondary_ti; | |||
62 | cpumask_t cpu_possible_map = CPU_MASK_NONE; | 63 | cpumask_t cpu_possible_map = CPU_MASK_NONE; |
63 | cpumask_t cpu_online_map = CPU_MASK_NONE; | 64 | cpumask_t cpu_online_map = CPU_MASK_NONE; |
64 | DEFINE_PER_CPU(cpumask_t, cpu_sibling_map) = CPU_MASK_NONE; | 65 | DEFINE_PER_CPU(cpumask_t, cpu_sibling_map) = CPU_MASK_NONE; |
66 | DEFINE_PER_CPU(cpumask_t, cpu_core_map) = CPU_MASK_NONE; | ||
65 | 67 | ||
66 | EXPORT_SYMBOL(cpu_online_map); | 68 | EXPORT_SYMBOL(cpu_online_map); |
67 | EXPORT_SYMBOL(cpu_possible_map); | 69 | EXPORT_SYMBOL(cpu_possible_map); |
68 | EXPORT_PER_CPU_SYMBOL(cpu_sibling_map); | 70 | EXPORT_PER_CPU_SYMBOL(cpu_sibling_map); |
71 | EXPORT_PER_CPU_SYMBOL(cpu_core_map); | ||
69 | 72 | ||
70 | /* SMP operations for this machine */ | 73 | /* SMP operations for this machine */ |
71 | struct smp_ops_t *smp_ops; | 74 | struct smp_ops_t *smp_ops; |
@@ -228,6 +231,8 @@ void __devinit smp_prepare_boot_cpu(void) | |||
228 | BUG_ON(smp_processor_id() != boot_cpuid); | 231 | BUG_ON(smp_processor_id() != boot_cpuid); |
229 | 232 | ||
230 | cpu_set(boot_cpuid, cpu_online_map); | 233 | cpu_set(boot_cpuid, cpu_online_map); |
234 | cpu_set(boot_cpuid, per_cpu(cpu_sibling_map, boot_cpuid)); | ||
235 | cpu_set(boot_cpuid, per_cpu(cpu_core_map, boot_cpuid)); | ||
231 | #ifdef CONFIG_PPC64 | 236 | #ifdef CONFIG_PPC64 |
232 | paca[boot_cpuid].__current = current; | 237 | paca[boot_cpuid].__current = current; |
233 | #endif | 238 | #endif |
@@ -375,11 +380,60 @@ int __cpuinit __cpu_up(unsigned int cpu) | |||
375 | return 0; | 380 | return 0; |
376 | } | 381 | } |
377 | 382 | ||
383 | /* Return the value of the reg property corresponding to the given | ||
384 | * logical cpu. | ||
385 | */ | ||
386 | int cpu_to_core_id(int cpu) | ||
387 | { | ||
388 | struct device_node *np; | ||
389 | const int *reg; | ||
390 | int id = -1; | ||
391 | |||
392 | np = of_get_cpu_node(cpu, NULL); | ||
393 | if (!np) | ||
394 | goto out; | ||
395 | |||
396 | reg = of_get_property(np, "reg", NULL); | ||
397 | if (!reg) | ||
398 | goto out; | ||
399 | |||
400 | id = *reg; | ||
401 | out: | ||
402 | of_node_put(np); | ||
403 | return id; | ||
404 | } | ||
405 | |||
406 | /* Must be called when no change can occur to cpu_present_map, | ||
407 | * i.e. during cpu online or offline. | ||
408 | */ | ||
409 | static struct device_node *cpu_to_l2cache(int cpu) | ||
410 | { | ||
411 | struct device_node *np; | ||
412 | const phandle *php; | ||
413 | phandle ph; | ||
414 | |||
415 | if (!cpu_present(cpu)) | ||
416 | return NULL; | ||
417 | |||
418 | np = of_get_cpu_node(cpu, NULL); | ||
419 | if (np == NULL) | ||
420 | return NULL; | ||
421 | |||
422 | php = of_get_property(np, "l2-cache", NULL); | ||
423 | if (php == NULL) | ||
424 | return NULL; | ||
425 | ph = *php; | ||
426 | of_node_put(np); | ||
427 | |||
428 | return of_find_node_by_phandle(ph); | ||
429 | } | ||
378 | 430 | ||
379 | /* Activate a secondary processor. */ | 431 | /* Activate a secondary processor. */ |
380 | int __devinit start_secondary(void *unused) | 432 | int __devinit start_secondary(void *unused) |
381 | { | 433 | { |
382 | unsigned int cpu = smp_processor_id(); | 434 | unsigned int cpu = smp_processor_id(); |
435 | struct device_node *l2_cache; | ||
436 | int i, base; | ||
383 | 437 | ||
384 | atomic_inc(&init_mm.mm_count); | 438 | atomic_inc(&init_mm.mm_count); |
385 | current->active_mm = &init_mm; | 439 | current->active_mm = &init_mm; |
@@ -400,6 +454,33 @@ int __devinit start_secondary(void *unused) | |||
400 | 454 | ||
401 | ipi_call_lock(); | 455 | ipi_call_lock(); |
402 | cpu_set(cpu, cpu_online_map); | 456 | cpu_set(cpu, cpu_online_map); |
457 | /* Update sibling maps */ | ||
458 | base = cpu_first_thread_in_core(cpu); | ||
459 | for (i = 0; i < threads_per_core; i++) { | ||
460 | if (cpu_is_offline(base + i)) | ||
461 | continue; | ||
462 | cpu_set(cpu, per_cpu(cpu_sibling_map, base + i)); | ||
463 | cpu_set(base + i, per_cpu(cpu_sibling_map, cpu)); | ||
464 | |||
465 | /* cpu_core_map should be a superset of | ||
466 | * cpu_sibling_map even if we don't have cache | ||
467 | * information, so update the former here, too. | ||
468 | */ | ||
469 | cpu_set(cpu, per_cpu(cpu_core_map, base +i)); | ||
470 | cpu_set(base + i, per_cpu(cpu_core_map, cpu)); | ||
471 | } | ||
472 | l2_cache = cpu_to_l2cache(cpu); | ||
473 | for_each_online_cpu(i) { | ||
474 | struct device_node *np = cpu_to_l2cache(i); | ||
475 | if (!np) | ||
476 | continue; | ||
477 | if (np == l2_cache) { | ||
478 | cpu_set(cpu, per_cpu(cpu_core_map, i)); | ||
479 | cpu_set(i, per_cpu(cpu_core_map, cpu)); | ||
480 | } | ||
481 | of_node_put(np); | ||
482 | } | ||
483 | of_node_put(l2_cache); | ||
403 | ipi_call_unlock(); | 484 | ipi_call_unlock(); |
404 | 485 | ||
405 | local_irq_enable(); | 486 | local_irq_enable(); |
@@ -437,10 +518,42 @@ void __init smp_cpus_done(unsigned int max_cpus) | |||
437 | #ifdef CONFIG_HOTPLUG_CPU | 518 | #ifdef CONFIG_HOTPLUG_CPU |
438 | int __cpu_disable(void) | 519 | int __cpu_disable(void) |
439 | { | 520 | { |
440 | if (smp_ops->cpu_disable) | 521 | struct device_node *l2_cache; |
441 | return smp_ops->cpu_disable(); | 522 | int cpu = smp_processor_id(); |
523 | int base, i; | ||
524 | int err; | ||
442 | 525 | ||
443 | return -ENOSYS; | 526 | if (!smp_ops->cpu_disable) |
527 | return -ENOSYS; | ||
528 | |||
529 | err = smp_ops->cpu_disable(); | ||
530 | if (err) | ||
531 | return err; | ||
532 | |||
533 | /* Update sibling maps */ | ||
534 | base = cpu_first_thread_in_core(cpu); | ||
535 | for (i = 0; i < threads_per_core; i++) { | ||
536 | cpu_clear(cpu, per_cpu(cpu_sibling_map, base + i)); | ||
537 | cpu_clear(base + i, per_cpu(cpu_sibling_map, cpu)); | ||
538 | cpu_clear(cpu, per_cpu(cpu_core_map, base +i)); | ||
539 | cpu_clear(base + i, per_cpu(cpu_core_map, cpu)); | ||
540 | } | ||
541 | |||
542 | l2_cache = cpu_to_l2cache(cpu); | ||
543 | for_each_present_cpu(i) { | ||
544 | struct device_node *np = cpu_to_l2cache(i); | ||
545 | if (!np) | ||
546 | continue; | ||
547 | if (np == l2_cache) { | ||
548 | cpu_clear(cpu, per_cpu(cpu_core_map, i)); | ||
549 | cpu_clear(i, per_cpu(cpu_core_map, cpu)); | ||
550 | } | ||
551 | of_node_put(np); | ||
552 | } | ||
553 | of_node_put(l2_cache); | ||
554 | |||
555 | |||
556 | return 0; | ||
444 | } | 557 | } |
445 | 558 | ||
446 | void __cpu_die(unsigned int cpu) | 559 | void __cpu_die(unsigned int cpu) |
diff --git a/arch/powerpc/kernel/stacktrace.c b/arch/powerpc/kernel/stacktrace.c index f2589645870a..b0dbb1daa4df 100644 --- a/arch/powerpc/kernel/stacktrace.c +++ b/arch/powerpc/kernel/stacktrace.c | |||
@@ -13,7 +13,6 @@ | |||
13 | #include <linux/module.h> | 13 | #include <linux/module.h> |
14 | #include <linux/sched.h> | 14 | #include <linux/sched.h> |
15 | #include <linux/stacktrace.h> | 15 | #include <linux/stacktrace.h> |
16 | #include <linux/module.h> | ||
17 | #include <asm/ptrace.h> | 16 | #include <asm/ptrace.h> |
18 | #include <asm/processor.h> | 17 | #include <asm/processor.h> |
19 | 18 | ||
diff --git a/arch/powerpc/kernel/sysfs.c b/arch/powerpc/kernel/sysfs.c index 800e5e9a087b..56d172d16e56 100644 --- a/arch/powerpc/kernel/sysfs.c +++ b/arch/powerpc/kernel/sysfs.c | |||
@@ -22,6 +22,8 @@ | |||
22 | 22 | ||
23 | static DEFINE_PER_CPU(struct cpu, cpu_devices); | 23 | static DEFINE_PER_CPU(struct cpu, cpu_devices); |
24 | 24 | ||
25 | static DEFINE_PER_CPU(struct kobject *, cache_toplevel); | ||
26 | |||
25 | /* SMT stuff */ | 27 | /* SMT stuff */ |
26 | 28 | ||
27 | #ifdef CONFIG_PPC_MULTIPLATFORM | 29 | #ifdef CONFIG_PPC_MULTIPLATFORM |
@@ -297,8 +299,289 @@ static struct sysdev_attribute pa6t_attrs[] = { | |||
297 | #endif /* CONFIG_DEBUG_KERNEL */ | 299 | #endif /* CONFIG_DEBUG_KERNEL */ |
298 | }; | 300 | }; |
299 | 301 | ||
302 | struct cache_desc { | ||
303 | struct kobject kobj; | ||
304 | struct cache_desc *next; | ||
305 | const char *type; /* Instruction, Data, or Unified */ | ||
306 | u32 size; /* total cache size in KB */ | ||
307 | u32 line_size; /* in bytes */ | ||
308 | u32 nr_sets; /* number of sets */ | ||
309 | u32 level; /* e.g. 1, 2, 3... */ | ||
310 | u32 associativity; /* e.g. 8-way... 0 is fully associative */ | ||
311 | }; | ||
312 | |||
313 | DEFINE_PER_CPU(struct cache_desc *, cache_desc); | ||
314 | |||
315 | static struct cache_desc *kobj_to_cache_desc(struct kobject *k) | ||
316 | { | ||
317 | return container_of(k, struct cache_desc, kobj); | ||
318 | } | ||
319 | |||
320 | static void cache_desc_release(struct kobject *k) | ||
321 | { | ||
322 | struct cache_desc *desc = kobj_to_cache_desc(k); | ||
323 | |||
324 | pr_debug("%s: releasing %s\n", __func__, kobject_name(k)); | ||
325 | |||
326 | if (desc->next) | ||
327 | kobject_put(&desc->next->kobj); | ||
328 | |||
329 | kfree(kobj_to_cache_desc(k)); | ||
330 | } | ||
331 | |||
332 | static ssize_t cache_desc_show(struct kobject *k, struct attribute *attr, char *buf) | ||
333 | { | ||
334 | struct kobj_attribute *kobj_attr; | ||
335 | |||
336 | kobj_attr = container_of(attr, struct kobj_attribute, attr); | ||
337 | |||
338 | return kobj_attr->show(k, kobj_attr, buf); | ||
339 | } | ||
340 | |||
341 | static struct sysfs_ops cache_desc_sysfs_ops = { | ||
342 | .show = cache_desc_show, | ||
343 | }; | ||
344 | |||
345 | static struct kobj_type cache_desc_type = { | ||
346 | .release = cache_desc_release, | ||
347 | .sysfs_ops = &cache_desc_sysfs_ops, | ||
348 | }; | ||
349 | |||
350 | static ssize_t cache_size_show(struct kobject *k, struct kobj_attribute *attr, char *buf) | ||
351 | { | ||
352 | struct cache_desc *cache = kobj_to_cache_desc(k); | ||
353 | |||
354 | return sprintf(buf, "%uK\n", cache->size); | ||
355 | } | ||
356 | |||
357 | static struct kobj_attribute cache_size_attr = | ||
358 | __ATTR(size, 0444, cache_size_show, NULL); | ||
359 | |||
360 | static ssize_t cache_line_size_show(struct kobject *k, struct kobj_attribute *attr, char *buf) | ||
361 | { | ||
362 | struct cache_desc *cache = kobj_to_cache_desc(k); | ||
363 | |||
364 | return sprintf(buf, "%u\n", cache->line_size); | ||
365 | } | ||
366 | |||
367 | static struct kobj_attribute cache_line_size_attr = | ||
368 | __ATTR(coherency_line_size, 0444, cache_line_size_show, NULL); | ||
369 | |||
370 | static ssize_t cache_nr_sets_show(struct kobject *k, struct kobj_attribute *attr, char *buf) | ||
371 | { | ||
372 | struct cache_desc *cache = kobj_to_cache_desc(k); | ||
373 | |||
374 | return sprintf(buf, "%u\n", cache->nr_sets); | ||
375 | } | ||
376 | |||
377 | static struct kobj_attribute cache_nr_sets_attr = | ||
378 | __ATTR(number_of_sets, 0444, cache_nr_sets_show, NULL); | ||
379 | |||
380 | static ssize_t cache_type_show(struct kobject *k, struct kobj_attribute *attr, char *buf) | ||
381 | { | ||
382 | struct cache_desc *cache = kobj_to_cache_desc(k); | ||
383 | |||
384 | return sprintf(buf, "%s\n", cache->type); | ||
385 | } | ||
386 | |||
387 | static struct kobj_attribute cache_type_attr = | ||
388 | __ATTR(type, 0444, cache_type_show, NULL); | ||
389 | |||
390 | static ssize_t cache_level_show(struct kobject *k, struct kobj_attribute *attr, char *buf) | ||
391 | { | ||
392 | struct cache_desc *cache = kobj_to_cache_desc(k); | ||
393 | |||
394 | return sprintf(buf, "%u\n", cache->level); | ||
395 | } | ||
396 | |||
397 | static struct kobj_attribute cache_level_attr = | ||
398 | __ATTR(level, 0444, cache_level_show, NULL); | ||
399 | |||
400 | static ssize_t cache_assoc_show(struct kobject *k, struct kobj_attribute *attr, char *buf) | ||
401 | { | ||
402 | struct cache_desc *cache = kobj_to_cache_desc(k); | ||
403 | |||
404 | return sprintf(buf, "%u\n", cache->associativity); | ||
405 | } | ||
406 | |||
407 | static struct kobj_attribute cache_assoc_attr = | ||
408 | __ATTR(ways_of_associativity, 0444, cache_assoc_show, NULL); | ||
409 | |||
410 | struct cache_desc_info { | ||
411 | const char *type; | ||
412 | const char *size_prop; | ||
413 | const char *line_size_prop; | ||
414 | const char *nr_sets_prop; | ||
415 | }; | ||
416 | |||
417 | /* PowerPC Processor binding says the [di]-cache-* must be equal on | ||
418 | * unified caches, so just use d-cache properties. */ | ||
419 | static struct cache_desc_info ucache_info = { | ||
420 | .type = "Unified", | ||
421 | .size_prop = "d-cache-size", | ||
422 | .line_size_prop = "d-cache-line-size", | ||
423 | .nr_sets_prop = "d-cache-sets", | ||
424 | }; | ||
300 | 425 | ||
301 | static void register_cpu_online(unsigned int cpu) | 426 | static struct cache_desc_info dcache_info = { |
427 | .type = "Data", | ||
428 | .size_prop = "d-cache-size", | ||
429 | .line_size_prop = "d-cache-line-size", | ||
430 | .nr_sets_prop = "d-cache-sets", | ||
431 | }; | ||
432 | |||
433 | static struct cache_desc_info icache_info = { | ||
434 | .type = "Instruction", | ||
435 | .size_prop = "i-cache-size", | ||
436 | .line_size_prop = "i-cache-line-size", | ||
437 | .nr_sets_prop = "i-cache-sets", | ||
438 | }; | ||
439 | |||
440 | static struct cache_desc * __cpuinit create_cache_desc(struct device_node *np, struct kobject *parent, int index, int level, struct cache_desc_info *info) | ||
441 | { | ||
442 | const u32 *cache_line_size; | ||
443 | struct cache_desc *new; | ||
444 | const u32 *cache_size; | ||
445 | const u32 *nr_sets; | ||
446 | int rc; | ||
447 | |||
448 | new = kzalloc(sizeof(*new), GFP_KERNEL); | ||
449 | if (!new) | ||
450 | return NULL; | ||
451 | |||
452 | rc = kobject_init_and_add(&new->kobj, &cache_desc_type, parent, | ||
453 | "index%d", index); | ||
454 | if (rc) | ||
455 | goto err; | ||
456 | |||
457 | /* type */ | ||
458 | new->type = info->type; | ||
459 | rc = sysfs_create_file(&new->kobj, &cache_type_attr.attr); | ||
460 | WARN_ON(rc); | ||
461 | |||
462 | /* level */ | ||
463 | new->level = level; | ||
464 | rc = sysfs_create_file(&new->kobj, &cache_level_attr.attr); | ||
465 | WARN_ON(rc); | ||
466 | |||
467 | /* size */ | ||
468 | cache_size = of_get_property(np, info->size_prop, NULL); | ||
469 | if (cache_size) { | ||
470 | new->size = *cache_size / 1024; | ||
471 | rc = sysfs_create_file(&new->kobj, | ||
472 | &cache_size_attr.attr); | ||
473 | WARN_ON(rc); | ||
474 | } | ||
475 | |||
476 | /* coherency_line_size */ | ||
477 | cache_line_size = of_get_property(np, info->line_size_prop, NULL); | ||
478 | if (cache_line_size) { | ||
479 | new->line_size = *cache_line_size; | ||
480 | rc = sysfs_create_file(&new->kobj, | ||
481 | &cache_line_size_attr.attr); | ||
482 | WARN_ON(rc); | ||
483 | } | ||
484 | |||
485 | /* number_of_sets */ | ||
486 | nr_sets = of_get_property(np, info->nr_sets_prop, NULL); | ||
487 | if (nr_sets) { | ||
488 | new->nr_sets = *nr_sets; | ||
489 | rc = sysfs_create_file(&new->kobj, | ||
490 | &cache_nr_sets_attr.attr); | ||
491 | WARN_ON(rc); | ||
492 | } | ||
493 | |||
494 | /* ways_of_associativity */ | ||
495 | if (new->nr_sets == 1) { | ||
496 | /* fully associative */ | ||
497 | new->associativity = 0; | ||
498 | goto create_assoc; | ||
499 | } | ||
500 | |||
501 | if (new->nr_sets && new->size && new->line_size) { | ||
502 | /* If we have values for all of these we can derive | ||
503 | * the associativity. */ | ||
504 | new->associativity = | ||
505 | ((new->size * 1024) / new->nr_sets) / new->line_size; | ||
506 | create_assoc: | ||
507 | rc = sysfs_create_file(&new->kobj, | ||
508 | &cache_assoc_attr.attr); | ||
509 | WARN_ON(rc); | ||
510 | } | ||
511 | |||
512 | return new; | ||
513 | err: | ||
514 | kfree(new); | ||
515 | return NULL; | ||
516 | } | ||
517 | |||
518 | static bool cache_is_unified(struct device_node *np) | ||
519 | { | ||
520 | return of_get_property(np, "cache-unified", NULL); | ||
521 | } | ||
522 | |||
523 | static struct cache_desc * __cpuinit create_cache_index_info(struct device_node *np, struct kobject *parent, int index, int level) | ||
524 | { | ||
525 | const phandle *next_cache_phandle; | ||
526 | struct device_node *next_cache; | ||
527 | struct cache_desc *new, **end; | ||
528 | |||
529 | pr_debug("%s(node = %s, index = %d)\n", __func__, np->full_name, index); | ||
530 | |||
531 | if (cache_is_unified(np)) { | ||
532 | new = create_cache_desc(np, parent, index, level, | ||
533 | &ucache_info); | ||
534 | } else { | ||
535 | new = create_cache_desc(np, parent, index, level, | ||
536 | &dcache_info); | ||
537 | if (new) { | ||
538 | index++; | ||
539 | new->next = create_cache_desc(np, parent, index, level, | ||
540 | &icache_info); | ||
541 | } | ||
542 | } | ||
543 | if (!new) | ||
544 | return NULL; | ||
545 | |||
546 | end = &new->next; | ||
547 | while (*end) | ||
548 | end = &(*end)->next; | ||
549 | |||
550 | next_cache_phandle = of_get_property(np, "l2-cache", NULL); | ||
551 | if (!next_cache_phandle) | ||
552 | goto out; | ||
553 | |||
554 | next_cache = of_find_node_by_phandle(*next_cache_phandle); | ||
555 | if (!next_cache) | ||
556 | goto out; | ||
557 | |||
558 | *end = create_cache_index_info(next_cache, parent, ++index, ++level); | ||
559 | |||
560 | of_node_put(next_cache); | ||
561 | out: | ||
562 | return new; | ||
563 | } | ||
564 | |||
565 | static void __cpuinit create_cache_info(struct sys_device *sysdev) | ||
566 | { | ||
567 | struct kobject *cache_toplevel; | ||
568 | struct device_node *np = NULL; | ||
569 | int cpu = sysdev->id; | ||
570 | |||
571 | cache_toplevel = kobject_create_and_add("cache", &sysdev->kobj); | ||
572 | if (!cache_toplevel) | ||
573 | return; | ||
574 | per_cpu(cache_toplevel, cpu) = cache_toplevel; | ||
575 | np = of_get_cpu_node(cpu, NULL); | ||
576 | if (np != NULL) { | ||
577 | per_cpu(cache_desc, cpu) = | ||
578 | create_cache_index_info(np, cache_toplevel, 0, 1); | ||
579 | of_node_put(np); | ||
580 | } | ||
581 | return; | ||
582 | } | ||
583 | |||
584 | static void __cpuinit register_cpu_online(unsigned int cpu) | ||
302 | { | 585 | { |
303 | struct cpu *c = &per_cpu(cpu_devices, cpu); | 586 | struct cpu *c = &per_cpu(cpu_devices, cpu); |
304 | struct sys_device *s = &c->sysdev; | 587 | struct sys_device *s = &c->sysdev; |
@@ -346,9 +629,33 @@ static void register_cpu_online(unsigned int cpu) | |||
346 | 629 | ||
347 | if (cpu_has_feature(CPU_FTR_DSCR)) | 630 | if (cpu_has_feature(CPU_FTR_DSCR)) |
348 | sysdev_create_file(s, &attr_dscr); | 631 | sysdev_create_file(s, &attr_dscr); |
632 | |||
633 | create_cache_info(s); | ||
349 | } | 634 | } |
350 | 635 | ||
351 | #ifdef CONFIG_HOTPLUG_CPU | 636 | #ifdef CONFIG_HOTPLUG_CPU |
637 | static void remove_cache_info(struct sys_device *sysdev) | ||
638 | { | ||
639 | struct kobject *cache_toplevel; | ||
640 | struct cache_desc *cache_desc; | ||
641 | int cpu = sysdev->id; | ||
642 | |||
643 | cache_desc = per_cpu(cache_desc, cpu); | ||
644 | if (cache_desc != NULL) { | ||
645 | sysfs_remove_file(&cache_desc->kobj, &cache_size_attr.attr); | ||
646 | sysfs_remove_file(&cache_desc->kobj, &cache_line_size_attr.attr); | ||
647 | sysfs_remove_file(&cache_desc->kobj, &cache_type_attr.attr); | ||
648 | sysfs_remove_file(&cache_desc->kobj, &cache_level_attr.attr); | ||
649 | sysfs_remove_file(&cache_desc->kobj, &cache_nr_sets_attr.attr); | ||
650 | sysfs_remove_file(&cache_desc->kobj, &cache_assoc_attr.attr); | ||
651 | |||
652 | kobject_put(&cache_desc->kobj); | ||
653 | } | ||
654 | cache_toplevel = per_cpu(cache_toplevel, cpu); | ||
655 | if (cache_toplevel != NULL) | ||
656 | kobject_put(cache_toplevel); | ||
657 | } | ||
658 | |||
352 | static void unregister_cpu_online(unsigned int cpu) | 659 | static void unregister_cpu_online(unsigned int cpu) |
353 | { | 660 | { |
354 | struct cpu *c = &per_cpu(cpu_devices, cpu); | 661 | struct cpu *c = &per_cpu(cpu_devices, cpu); |
@@ -399,6 +706,8 @@ static void unregister_cpu_online(unsigned int cpu) | |||
399 | 706 | ||
400 | if (cpu_has_feature(CPU_FTR_DSCR)) | 707 | if (cpu_has_feature(CPU_FTR_DSCR)) |
401 | sysdev_remove_file(s, &attr_dscr); | 708 | sysdev_remove_file(s, &attr_dscr); |
709 | |||
710 | remove_cache_info(s); | ||
402 | } | 711 | } |
403 | #endif /* CONFIG_HOTPLUG_CPU */ | 712 | #endif /* CONFIG_HOTPLUG_CPU */ |
404 | 713 | ||
diff --git a/arch/powerpc/kernel/vio.c b/arch/powerpc/kernel/vio.c index ade8aeaa2e70..22a3c33fd751 100644 --- a/arch/powerpc/kernel/vio.c +++ b/arch/powerpc/kernel/vio.c | |||
@@ -530,7 +530,7 @@ static dma_addr_t vio_dma_iommu_map_single(struct device *dev, void *vaddr, | |||
530 | } | 530 | } |
531 | 531 | ||
532 | ret = dma_iommu_ops.map_single(dev, vaddr, size, direction, attrs); | 532 | ret = dma_iommu_ops.map_single(dev, vaddr, size, direction, attrs); |
533 | if (unlikely(dma_mapping_error(ret))) { | 533 | if (unlikely(dma_mapping_error(dev, ret))) { |
534 | vio_cmo_dealloc(viodev, roundup(size, IOMMU_PAGE_SIZE)); | 534 | vio_cmo_dealloc(viodev, roundup(size, IOMMU_PAGE_SIZE)); |
535 | atomic_inc(&viodev->cmo.allocs_failed); | 535 | atomic_inc(&viodev->cmo.allocs_failed); |
536 | } | 536 | } |
@@ -1031,8 +1031,8 @@ void vio_cmo_set_dev_desired(struct vio_dev *viodev, size_t desired) {} | |||
1031 | static int vio_cmo_bus_probe(struct vio_dev *viodev) { return 0; } | 1031 | static int vio_cmo_bus_probe(struct vio_dev *viodev) { return 0; } |
1032 | static void vio_cmo_bus_remove(struct vio_dev *viodev) {} | 1032 | static void vio_cmo_bus_remove(struct vio_dev *viodev) {} |
1033 | static void vio_cmo_set_dma_ops(struct vio_dev *viodev) {} | 1033 | static void vio_cmo_set_dma_ops(struct vio_dev *viodev) {} |
1034 | static void vio_cmo_bus_init() {} | 1034 | static void vio_cmo_bus_init(void) {} |
1035 | static void vio_cmo_sysfs_init() { } | 1035 | static void vio_cmo_sysfs_init(void) { } |
1036 | #endif /* CONFIG_PPC_SMLPAR */ | 1036 | #endif /* CONFIG_PPC_SMLPAR */ |
1037 | EXPORT_SYMBOL(vio_cmo_entitlement_update); | 1037 | EXPORT_SYMBOL(vio_cmo_entitlement_update); |
1038 | EXPORT_SYMBOL(vio_cmo_set_dev_desired); | 1038 | EXPORT_SYMBOL(vio_cmo_set_dev_desired); |
diff --git a/arch/powerpc/mm/hugetlbpage.c b/arch/powerpc/mm/hugetlbpage.c index ed0aab0208a6..f1c2d55b4377 100644 --- a/arch/powerpc/mm/hugetlbpage.c +++ b/arch/powerpc/mm/hugetlbpage.c | |||
@@ -736,14 +736,21 @@ static int __init hugetlbpage_init(void) | |||
736 | 736 | ||
737 | if (!cpu_has_feature(CPU_FTR_16M_PAGE)) | 737 | if (!cpu_has_feature(CPU_FTR_16M_PAGE)) |
738 | return -ENODEV; | 738 | return -ENODEV; |
739 | |||
739 | /* Add supported huge page sizes. Need to change HUGE_MAX_HSTATE | 740 | /* Add supported huge page sizes. Need to change HUGE_MAX_HSTATE |
740 | * and adjust PTE_NONCACHE_NUM if the number of supported huge page | 741 | * and adjust PTE_NONCACHE_NUM if the number of supported huge page |
741 | * sizes changes. | 742 | * sizes changes. |
742 | */ | 743 | */ |
743 | set_huge_psize(MMU_PAGE_16M); | 744 | set_huge_psize(MMU_PAGE_16M); |
744 | set_huge_psize(MMU_PAGE_64K); | ||
745 | set_huge_psize(MMU_PAGE_16G); | 745 | set_huge_psize(MMU_PAGE_16G); |
746 | 746 | ||
747 | /* Temporarily disable support for 64K huge pages when 64K SPU local | ||
748 | * store support is enabled as the current implementation conflicts. | ||
749 | */ | ||
750 | #ifndef CONFIG_SPU_FS_64K_LS | ||
751 | set_huge_psize(MMU_PAGE_64K); | ||
752 | #endif | ||
753 | |||
747 | for (psize = 0; psize < MMU_PAGE_COUNT; ++psize) { | 754 | for (psize = 0; psize < MMU_PAGE_COUNT; ++psize) { |
748 | if (mmu_huge_psizes[psize]) { | 755 | if (mmu_huge_psizes[psize]) { |
749 | huge_pgtable_cache(psize) = kmem_cache_create( | 756 | huge_pgtable_cache(psize) = kmem_cache_create( |
diff --git a/arch/powerpc/platforms/powermac/setup.c b/arch/powerpc/platforms/powermac/setup.c index 31635446901a..88ccf3a08a9c 100644 --- a/arch/powerpc/platforms/powermac/setup.c +++ b/arch/powerpc/platforms/powermac/setup.c | |||
@@ -541,6 +541,78 @@ static int __init pmac_declare_of_platform_devices(void) | |||
541 | } | 541 | } |
542 | machine_device_initcall(powermac, pmac_declare_of_platform_devices); | 542 | machine_device_initcall(powermac, pmac_declare_of_platform_devices); |
543 | 543 | ||
544 | #ifdef CONFIG_SERIAL_PMACZILOG_CONSOLE | ||
545 | /* | ||
546 | * This is called very early, as part of console_init() (typically just after | ||
547 | * time_init()). This function is respondible for trying to find a good | ||
548 | * default console on serial ports. It tries to match the open firmware | ||
549 | * default output with one of the available serial console drivers. | ||
550 | */ | ||
551 | static int __init check_pmac_serial_console(void) | ||
552 | { | ||
553 | struct device_node *prom_stdout = NULL; | ||
554 | int offset = 0; | ||
555 | const char *name; | ||
556 | #ifdef CONFIG_SERIAL_PMACZILOG_TTYS | ||
557 | char *devname = "ttyS"; | ||
558 | #else | ||
559 | char *devname = "ttyPZ"; | ||
560 | #endif | ||
561 | |||
562 | pr_debug(" -> check_pmac_serial_console()\n"); | ||
563 | |||
564 | /* The user has requested a console so this is already set up. */ | ||
565 | if (strstr(boot_command_line, "console=")) { | ||
566 | pr_debug(" console was specified !\n"); | ||
567 | return -EBUSY; | ||
568 | } | ||
569 | |||
570 | if (!of_chosen) { | ||
571 | pr_debug(" of_chosen is NULL !\n"); | ||
572 | return -ENODEV; | ||
573 | } | ||
574 | |||
575 | /* We are getting a weird phandle from OF ... */ | ||
576 | /* ... So use the full path instead */ | ||
577 | name = of_get_property(of_chosen, "linux,stdout-path", NULL); | ||
578 | if (name == NULL) { | ||
579 | pr_debug(" no linux,stdout-path !\n"); | ||
580 | return -ENODEV; | ||
581 | } | ||
582 | prom_stdout = of_find_node_by_path(name); | ||
583 | if (!prom_stdout) { | ||
584 | pr_debug(" can't find stdout package %s !\n", name); | ||
585 | return -ENODEV; | ||
586 | } | ||
587 | pr_debug("stdout is %s\n", prom_stdout->full_name); | ||
588 | |||
589 | name = of_get_property(prom_stdout, "name", NULL); | ||
590 | if (!name) { | ||
591 | pr_debug(" stdout package has no name !\n"); | ||
592 | goto not_found; | ||
593 | } | ||
594 | |||
595 | if (strcmp(name, "ch-a") == 0) | ||
596 | offset = 0; | ||
597 | else if (strcmp(name, "ch-b") == 0) | ||
598 | offset = 1; | ||
599 | else | ||
600 | goto not_found; | ||
601 | of_node_put(prom_stdout); | ||
602 | |||
603 | pr_debug("Found serial console at %s%d\n", devname, offset); | ||
604 | |||
605 | return add_preferred_console(devname, offset, NULL); | ||
606 | |||
607 | not_found: | ||
608 | pr_debug("No preferred console found !\n"); | ||
609 | of_node_put(prom_stdout); | ||
610 | return -ENODEV; | ||
611 | } | ||
612 | console_initcall(check_pmac_serial_console); | ||
613 | |||
614 | #endif /* CONFIG_SERIAL_PMACZILOG_CONSOLE */ | ||
615 | |||
544 | /* | 616 | /* |
545 | * Called very early, MMU is off, device-tree isn't unflattened | 617 | * Called very early, MMU is off, device-tree isn't unflattened |
546 | */ | 618 | */ |
diff --git a/arch/powerpc/platforms/powermac/udbg_scc.c b/arch/powerpc/platforms/powermac/udbg_scc.c index 47de4d3fc167..572771fd8463 100644 --- a/arch/powerpc/platforms/powermac/udbg_scc.c +++ b/arch/powerpc/platforms/powermac/udbg_scc.c | |||
@@ -125,13 +125,23 @@ void udbg_scc_init(int force_scc) | |||
125 | out_8(sccc, 0xc0); | 125 | out_8(sccc, 0xc0); |
126 | 126 | ||
127 | /* If SCC was the OF output port, read the BRG value, else | 127 | /* If SCC was the OF output port, read the BRG value, else |
128 | * Setup for 57600 8N1 | 128 | * Setup for 38400 or 57600 8N1 depending on the machine |
129 | */ | 129 | */ |
130 | if (ch_def != NULL) { | 130 | if (ch_def != NULL) { |
131 | out_8(sccc, 13); | 131 | out_8(sccc, 13); |
132 | scc_inittab[1] = in_8(sccc); | 132 | scc_inittab[1] = in_8(sccc); |
133 | out_8(sccc, 12); | 133 | out_8(sccc, 12); |
134 | scc_inittab[3] = in_8(sccc); | 134 | scc_inittab[3] = in_8(sccc); |
135 | } else if (machine_is_compatible("RackMac1,1") | ||
136 | || machine_is_compatible("RackMac1,2") | ||
137 | || machine_is_compatible("MacRISC4")) { | ||
138 | /* Xserves and G5s default to 57600 */ | ||
139 | scc_inittab[1] = 0; | ||
140 | scc_inittab[3] = 0; | ||
141 | } else { | ||
142 | /* Others default to 38400 */ | ||
143 | scc_inittab[1] = 0; | ||
144 | scc_inittab[3] = 1; | ||
135 | } | 145 | } |
136 | 146 | ||
137 | for (i = 0; i < sizeof(scc_inittab); ++i) | 147 | for (i = 0; i < sizeof(scc_inittab); ++i) |
diff --git a/arch/powerpc/platforms/pseries/cmm.c b/arch/powerpc/platforms/pseries/cmm.c index c6b3be03168b..38fe32a7cc70 100644 --- a/arch/powerpc/platforms/pseries/cmm.c +++ b/arch/powerpc/platforms/pseries/cmm.c | |||
@@ -289,7 +289,9 @@ static int cmm_thread(void *dummy) | |||
289 | } | 289 | } |
290 | 290 | ||
291 | #define CMM_SHOW(name, format, args...) \ | 291 | #define CMM_SHOW(name, format, args...) \ |
292 | static ssize_t show_##name(struct sys_device *dev, char *buf) \ | 292 | static ssize_t show_##name(struct sys_device *dev, \ |
293 | struct sysdev_attribute *attr, \ | ||
294 | char *buf) \ | ||
293 | { \ | 295 | { \ |
294 | return sprintf(buf, format, ##args); \ | 296 | return sprintf(buf, format, ##args); \ |
295 | } \ | 297 | } \ |
@@ -298,12 +300,14 @@ static int cmm_thread(void *dummy) | |||
298 | CMM_SHOW(loaned_kb, "%lu\n", PAGES2KB(loaned_pages)); | 300 | CMM_SHOW(loaned_kb, "%lu\n", PAGES2KB(loaned_pages)); |
299 | CMM_SHOW(loaned_target_kb, "%lu\n", PAGES2KB(loaned_pages_target)); | 301 | CMM_SHOW(loaned_target_kb, "%lu\n", PAGES2KB(loaned_pages_target)); |
300 | 302 | ||
301 | static ssize_t show_oom_pages(struct sys_device *dev, char *buf) | 303 | static ssize_t show_oom_pages(struct sys_device *dev, |
304 | struct sysdev_attribute *attr, char *buf) | ||
302 | { | 305 | { |
303 | return sprintf(buf, "%lu\n", PAGES2KB(oom_freed_pages)); | 306 | return sprintf(buf, "%lu\n", PAGES2KB(oom_freed_pages)); |
304 | } | 307 | } |
305 | 308 | ||
306 | static ssize_t store_oom_pages(struct sys_device *dev, | 309 | static ssize_t store_oom_pages(struct sys_device *dev, |
310 | struct sysdev_attribute *attr, | ||
307 | const char *buf, size_t count) | 311 | const char *buf, size_t count) |
308 | { | 312 | { |
309 | unsigned long val = simple_strtoul (buf, NULL, 10); | 313 | unsigned long val = simple_strtoul (buf, NULL, 10); |
diff --git a/arch/s390/kernel/kprobes.c b/arch/s390/kernel/kprobes.c index 4f82e5b5f879..569079ec4ff0 100644 --- a/arch/s390/kernel/kprobes.c +++ b/arch/s390/kernel/kprobes.c | |||
@@ -197,7 +197,7 @@ void __kprobes arch_arm_kprobe(struct kprobe *p) | |||
197 | args.new = BREAKPOINT_INSTRUCTION; | 197 | args.new = BREAKPOINT_INSTRUCTION; |
198 | 198 | ||
199 | kcb->kprobe_status = KPROBE_SWAP_INST; | 199 | kcb->kprobe_status = KPROBE_SWAP_INST; |
200 | stop_machine_run(swap_instruction, &args, NR_CPUS); | 200 | stop_machine(swap_instruction, &args, NULL); |
201 | kcb->kprobe_status = status; | 201 | kcb->kprobe_status = status; |
202 | } | 202 | } |
203 | 203 | ||
@@ -212,7 +212,7 @@ void __kprobes arch_disarm_kprobe(struct kprobe *p) | |||
212 | args.new = p->opcode; | 212 | args.new = p->opcode; |
213 | 213 | ||
214 | kcb->kprobe_status = KPROBE_SWAP_INST; | 214 | kcb->kprobe_status = KPROBE_SWAP_INST; |
215 | stop_machine_run(swap_instruction, &args, NR_CPUS); | 215 | stop_machine(swap_instruction, &args, NULL); |
216 | kcb->kprobe_status = status; | 216 | kcb->kprobe_status = status; |
217 | } | 217 | } |
218 | 218 | ||
@@ -331,7 +331,7 @@ static int __kprobes kprobe_handler(struct pt_regs *regs) | |||
331 | * No kprobe at this address. The fault has not been | 331 | * No kprobe at this address. The fault has not been |
332 | * caused by a kprobe breakpoint. The race of breakpoint | 332 | * caused by a kprobe breakpoint. The race of breakpoint |
333 | * vs. kprobe remove does not exist because on s390 we | 333 | * vs. kprobe remove does not exist because on s390 we |
334 | * use stop_machine_run to arm/disarm the breakpoints. | 334 | * use stop_machine to arm/disarm the breakpoints. |
335 | */ | 335 | */ |
336 | goto no_kprobe; | 336 | goto no_kprobe; |
337 | 337 | ||
diff --git a/arch/sh/Kconfig b/arch/sh/Kconfig index 8879938f3356..0b88dc462d73 100644 --- a/arch/sh/Kconfig +++ b/arch/sh/Kconfig | |||
@@ -11,6 +11,7 @@ config SUPERH | |||
11 | select HAVE_CLK | 11 | select HAVE_CLK |
12 | select HAVE_IDE | 12 | select HAVE_IDE |
13 | select HAVE_OPROFILE | 13 | select HAVE_OPROFILE |
14 | select HAVE_GENERIC_DMA_COHERENT | ||
14 | help | 15 | help |
15 | The SuperH is a RISC processor targeted for use in embedded systems | 16 | The SuperH is a RISC processor targeted for use in embedded systems |
16 | and consumer electronics; it was also used in the Sega Dreamcast | 17 | and consumer electronics; it was also used in the Sega Dreamcast |
@@ -477,6 +478,10 @@ config SH_RTS7751R2D | |||
477 | Select RTS7751R2D if configuring for a Renesas Technology | 478 | Select RTS7751R2D if configuring for a Renesas Technology |
478 | Sales SH-Graphics board. | 479 | Sales SH-Graphics board. |
479 | 480 | ||
481 | config SH_RSK7203 | ||
482 | bool "RSK7203" | ||
483 | depends on CPU_SUBTYPE_SH7203 | ||
484 | |||
480 | config SH_SDK7780 | 485 | config SH_SDK7780 |
481 | bool "SDK7780R3" | 486 | bool "SDK7780R3" |
482 | depends on CPU_SUBTYPE_SH7780 | 487 | depends on CPU_SUBTYPE_SH7780 |
@@ -491,6 +496,21 @@ config SH_HIGHLANDER | |||
491 | select SYS_SUPPORTS_PCI | 496 | select SYS_SUPPORTS_PCI |
492 | select IO_TRAPPED | 497 | select IO_TRAPPED |
493 | 498 | ||
499 | config SH_SH7785LCR | ||
500 | bool "SH7785LCR" | ||
501 | depends on CPU_SUBTYPE_SH7785 | ||
502 | select SYS_SUPPORTS_PCI | ||
503 | select IO_TRAPPED | ||
504 | |||
505 | config SH_SH7785LCR_29BIT_PHYSMAPS | ||
506 | bool "SH7785LCR 29bit physmaps" | ||
507 | depends on SH_SH7785LCR | ||
508 | default y | ||
509 | help | ||
510 | This board has 2 physical memory maps. It can be changed with | ||
511 | DIP switch(S2-5). If you set the DIP switch for S2-5 = ON, | ||
512 | you can access all on-board device in 29bit address mode. | ||
513 | |||
494 | config SH_MIGOR | 514 | config SH_MIGOR |
495 | bool "Migo-R" | 515 | bool "Migo-R" |
496 | depends on CPU_SUBTYPE_SH7722 | 516 | depends on CPU_SUBTYPE_SH7722 |
@@ -498,6 +518,20 @@ config SH_MIGOR | |||
498 | Select Migo-R if configuring for the SH7722 Migo-R platform | 518 | Select Migo-R if configuring for the SH7722 Migo-R platform |
499 | by Renesas System Solutions Asia Pte. Ltd. | 519 | by Renesas System Solutions Asia Pte. Ltd. |
500 | 520 | ||
521 | config SH_AP325RXA | ||
522 | bool "AP-325RXA" | ||
523 | depends on CPU_SUBTYPE_SH7723 | ||
524 | help | ||
525 | Renesas "AP-325RXA" support. | ||
526 | Compatible with ALGO SYSTEM CO.,LTD. "AP-320A" | ||
527 | |||
528 | config SH_SH7763RDP | ||
529 | bool "SH7763RDP" | ||
530 | depends on CPU_SUBTYPE_SH7763 | ||
531 | help | ||
532 | Select SH7763RDP if configuring for a Renesas SH7763 | ||
533 | evaluation board. | ||
534 | |||
501 | config SH_EDOSK7705 | 535 | config SH_EDOSK7705 |
502 | bool "EDOSK7705" | 536 | bool "EDOSK7705" |
503 | depends on CPU_SUBTYPE_SH7705 | 537 | depends on CPU_SUBTYPE_SH7705 |
@@ -559,6 +593,7 @@ endmenu | |||
559 | source "arch/sh/boards/renesas/rts7751r2d/Kconfig" | 593 | source "arch/sh/boards/renesas/rts7751r2d/Kconfig" |
560 | source "arch/sh/boards/renesas/r7780rp/Kconfig" | 594 | source "arch/sh/boards/renesas/r7780rp/Kconfig" |
561 | source "arch/sh/boards/renesas/sdk7780/Kconfig" | 595 | source "arch/sh/boards/renesas/sdk7780/Kconfig" |
596 | source "arch/sh/boards/renesas/migor/Kconfig" | ||
562 | source "arch/sh/boards/magicpanelr2/Kconfig" | 597 | source "arch/sh/boards/magicpanelr2/Kconfig" |
563 | 598 | ||
564 | menu "Timer and clock configuration" | 599 | menu "Timer and clock configuration" |
diff --git a/arch/sh/Kconfig.debug b/arch/sh/Kconfig.debug index 0f4549860226..36f4b1f7066d 100644 --- a/arch/sh/Kconfig.debug +++ b/arch/sh/Kconfig.debug | |||
@@ -36,7 +36,8 @@ config EARLY_SCIF_CONSOLE_PORT | |||
36 | default "0xff804000" if CPU_SUBTYPE_MXG | 36 | default "0xff804000" if CPU_SUBTYPE_MXG |
37 | default "0xffc30000" if CPU_SUBTYPE_SHX3 | 37 | default "0xffc30000" if CPU_SUBTYPE_SHX3 |
38 | default "0xffe00000" if CPU_SUBTYPE_SH7780 || CPU_SUBTYPE_SH7763 || \ | 38 | default "0xffe00000" if CPU_SUBTYPE_SH7780 || CPU_SUBTYPE_SH7763 || \ |
39 | CPU_SUBTYPE_SH7722 || CPU_SUBTYPE_SH7366 | 39 | CPU_SUBTYPE_SH7722 || CPU_SUBTYPE_SH7366 || \ |
40 | CPU_SUBTYPE_SH7343 | ||
40 | default "0xffe80000" if CPU_SH4 | 41 | default "0xffe80000" if CPU_SH4 |
41 | default "0xffea0000" if CPU_SUBTYPE_SH7785 | 42 | default "0xffea0000" if CPU_SUBTYPE_SH7785 |
42 | default "0xfffe8000" if CPU_SUBTYPE_SH7203 | 43 | default "0xfffe8000" if CPU_SUBTYPE_SH7203 |
diff --git a/arch/sh/Makefile b/arch/sh/Makefile index fb7b1b15e392..c627e45c4df7 100644 --- a/arch/sh/Makefile +++ b/arch/sh/Makefile | |||
@@ -121,6 +121,10 @@ machdir-$(CONFIG_SH_HIGHLANDER) += renesas/r7780rp | |||
121 | machdir-$(CONFIG_SH_MIGOR) += renesas/migor | 121 | machdir-$(CONFIG_SH_MIGOR) += renesas/migor |
122 | machdir-$(CONFIG_SH_SDK7780) += renesas/sdk7780 | 122 | machdir-$(CONFIG_SH_SDK7780) += renesas/sdk7780 |
123 | machdir-$(CONFIG_SH_X3PROTO) += renesas/x3proto | 123 | machdir-$(CONFIG_SH_X3PROTO) += renesas/x3proto |
124 | machdir-$(CONFIG_SH_RSK7203) += renesas/rsk7203 | ||
125 | machdir-$(CONFIG_SH_AP325RXA) += renesas/ap325rxa | ||
126 | machdir-$(CONFIG_SH_SH7763RDP) += renesas/sh7763rdp | ||
127 | machdir-$(CONFIG_SH_SH7785LCR) += renesas/sh7785lcr | ||
124 | machdir-$(CONFIG_SH_SH4202_MICRODEV) += superh/microdev | 128 | machdir-$(CONFIG_SH_SH4202_MICRODEV) += superh/microdev |
125 | machdir-$(CONFIG_SH_LANDISK) += landisk | 129 | machdir-$(CONFIG_SH_LANDISK) += landisk |
126 | machdir-$(CONFIG_SH_TITAN) += titan | 130 | machdir-$(CONFIG_SH_TITAN) += titan |
diff --git a/arch/sh/boards/dreamcast/rtc.c b/arch/sh/boards/dreamcast/rtc.c index b3a876a3b859..a7433685798d 100644 --- a/arch/sh/boards/dreamcast/rtc.c +++ b/arch/sh/boards/dreamcast/rtc.c | |||
@@ -30,7 +30,7 @@ | |||
30 | * | 30 | * |
31 | * Grabs the current RTC seconds counter and adjusts it to the Unix Epoch. | 31 | * Grabs the current RTC seconds counter and adjusts it to the Unix Epoch. |
32 | */ | 32 | */ |
33 | void aica_rtc_gettimeofday(struct timespec *ts) | 33 | static void aica_rtc_gettimeofday(struct timespec *ts) |
34 | { | 34 | { |
35 | unsigned long val1, val2; | 35 | unsigned long val1, val2; |
36 | 36 | ||
@@ -54,7 +54,7 @@ void aica_rtc_gettimeofday(struct timespec *ts) | |||
54 | * | 54 | * |
55 | * Adjusts the given @tv to the AICA Epoch and sets the RTC seconds counter. | 55 | * Adjusts the given @tv to the AICA Epoch and sets the RTC seconds counter. |
56 | */ | 56 | */ |
57 | int aica_rtc_settimeofday(const time_t secs) | 57 | static int aica_rtc_settimeofday(const time_t secs) |
58 | { | 58 | { |
59 | unsigned long val1, val2; | 59 | unsigned long val1, val2; |
60 | unsigned long adj = secs + TWENTY_YEARS; | 60 | unsigned long adj = secs + TWENTY_YEARS; |
diff --git a/arch/sh/boards/renesas/ap325rxa/Makefile b/arch/sh/boards/renesas/ap325rxa/Makefile new file mode 100644 index 000000000000..f663768429f0 --- /dev/null +++ b/arch/sh/boards/renesas/ap325rxa/Makefile | |||
@@ -0,0 +1 @@ | |||
obj-y := setup.o | |||
diff --git a/arch/sh/boards/renesas/ap325rxa/setup.c b/arch/sh/boards/renesas/ap325rxa/setup.c new file mode 100644 index 000000000000..7fa74462bd9f --- /dev/null +++ b/arch/sh/boards/renesas/ap325rxa/setup.c | |||
@@ -0,0 +1,313 @@ | |||
1 | /* | ||
2 | * Renesas - AP-325RXA | ||
3 | * (Compatible with Algo System ., LTD. - AP-320A) | ||
4 | * | ||
5 | * Copyright (C) 2008 Renesas Solutions Corp. | ||
6 | * Author : Yusuke Goda <goda.yuske@renesas.com> | ||
7 | * | ||
8 | * This file is subject to the terms and conditions of the GNU General Public | ||
9 | * License. See the file "COPYING" in the main directory of this archive | ||
10 | * for more details. | ||
11 | */ | ||
12 | |||
13 | #include <linux/init.h> | ||
14 | #include <linux/device.h> | ||
15 | #include <linux/interrupt.h> | ||
16 | #include <linux/platform_device.h> | ||
17 | #include <linux/mtd/physmap.h> | ||
18 | #include <linux/delay.h> | ||
19 | #include <linux/i2c.h> | ||
20 | #include <linux/delay.h> | ||
21 | #include <linux/smc911x.h> | ||
22 | #include <media/soc_camera_platform.h> | ||
23 | #include <media/sh_mobile_ceu.h> | ||
24 | #include <asm/sh_mobile_lcdc.h> | ||
25 | #include <asm/io.h> | ||
26 | #include <asm/clock.h> | ||
27 | |||
28 | static struct smc911x_platdata smc911x_info = { | ||
29 | .flags = SMC911X_USE_32BIT, | ||
30 | .irq_flags = IRQF_TRIGGER_LOW, | ||
31 | }; | ||
32 | |||
33 | static struct resource smc9118_resources[] = { | ||
34 | [0] = { | ||
35 | .start = 0xb6080000, | ||
36 | .end = 0xb60fffff, | ||
37 | .flags = IORESOURCE_MEM, | ||
38 | }, | ||
39 | [1] = { | ||
40 | .start = 35, | ||
41 | .end = 35, | ||
42 | .flags = IORESOURCE_IRQ, | ||
43 | } | ||
44 | }; | ||
45 | |||
46 | static struct platform_device smc9118_device = { | ||
47 | .name = "smc911x", | ||
48 | .id = -1, | ||
49 | .num_resources = ARRAY_SIZE(smc9118_resources), | ||
50 | .resource = smc9118_resources, | ||
51 | .dev = { | ||
52 | .platform_data = &smc911x_info, | ||
53 | }, | ||
54 | }; | ||
55 | |||
56 | static struct mtd_partition ap325rxa_nor_flash_partitions[] = { | ||
57 | { | ||
58 | .name = "uboot", | ||
59 | .offset = 0, | ||
60 | .size = (1 * 1024 * 1024), | ||
61 | .mask_flags = MTD_WRITEABLE, /* Read-only */ | ||
62 | }, { | ||
63 | .name = "kernel", | ||
64 | .offset = MTDPART_OFS_APPEND, | ||
65 | .size = (2 * 1024 * 1024), | ||
66 | }, { | ||
67 | .name = "other", | ||
68 | .offset = MTDPART_OFS_APPEND, | ||
69 | .size = MTDPART_SIZ_FULL, | ||
70 | }, | ||
71 | }; | ||
72 | |||
73 | static struct physmap_flash_data ap325rxa_nor_flash_data = { | ||
74 | .width = 2, | ||
75 | .parts = ap325rxa_nor_flash_partitions, | ||
76 | .nr_parts = ARRAY_SIZE(ap325rxa_nor_flash_partitions), | ||
77 | }; | ||
78 | |||
79 | static struct resource ap325rxa_nor_flash_resources[] = { | ||
80 | [0] = { | ||
81 | .name = "NOR Flash", | ||
82 | .start = 0x00000000, | ||
83 | .end = 0x00ffffff, | ||
84 | .flags = IORESOURCE_MEM, | ||
85 | } | ||
86 | }; | ||
87 | |||
88 | static struct platform_device ap325rxa_nor_flash_device = { | ||
89 | .name = "physmap-flash", | ||
90 | .resource = ap325rxa_nor_flash_resources, | ||
91 | .num_resources = ARRAY_SIZE(ap325rxa_nor_flash_resources), | ||
92 | .dev = { | ||
93 | .platform_data = &ap325rxa_nor_flash_data, | ||
94 | }, | ||
95 | }; | ||
96 | |||
97 | #define FPGA_LCDREG 0xB4100180 | ||
98 | #define FPGA_BKLREG 0xB4100212 | ||
99 | #define FPGA_LCDREG_VAL 0x0018 | ||
100 | #define PORT_PHCR 0xA405010E | ||
101 | #define PORT_PLCR 0xA4050114 | ||
102 | #define PORT_PMCR 0xA4050116 | ||
103 | #define PORT_PRCR 0xA405011C | ||
104 | #define PORT_PSCR 0xA405011E | ||
105 | #define PORT_PZCR 0xA405014C | ||
106 | #define PORT_HIZCRA 0xA4050158 | ||
107 | #define PORT_MSELCRB 0xA4050182 | ||
108 | #define PORT_PSDR 0xA405013E | ||
109 | #define PORT_PZDR 0xA405016C | ||
110 | #define PORT_PSELD 0xA4050154 | ||
111 | |||
112 | static void ap320_wvga_power_on(void *board_data) | ||
113 | { | ||
114 | msleep(100); | ||
115 | |||
116 | /* ASD AP-320/325 LCD ON */ | ||
117 | ctrl_outw(FPGA_LCDREG_VAL, FPGA_LCDREG); | ||
118 | |||
119 | /* backlight */ | ||
120 | ctrl_outw((ctrl_inw(PORT_PSCR) & ~0x00C0) | 0x40, PORT_PSCR); | ||
121 | ctrl_outb(ctrl_inb(PORT_PSDR) & ~0x08, PORT_PSDR); | ||
122 | ctrl_outw(0x100, FPGA_BKLREG); | ||
123 | } | ||
124 | |||
125 | static struct sh_mobile_lcdc_info lcdc_info = { | ||
126 | .clock_source = LCDC_CLK_EXTERNAL, | ||
127 | .ch[0] = { | ||
128 | .chan = LCDC_CHAN_MAINLCD, | ||
129 | .bpp = 16, | ||
130 | .interface_type = RGB18, | ||
131 | .clock_divider = 1, | ||
132 | .lcd_cfg = { | ||
133 | .name = "LB070WV1", | ||
134 | .xres = 800, | ||
135 | .yres = 480, | ||
136 | .left_margin = 40, | ||
137 | .right_margin = 160, | ||
138 | .hsync_len = 8, | ||
139 | .upper_margin = 63, | ||
140 | .lower_margin = 80, | ||
141 | .vsync_len = 1, | ||
142 | .sync = 0, /* hsync and vsync are active low */ | ||
143 | }, | ||
144 | .board_cfg = { | ||
145 | .display_on = ap320_wvga_power_on, | ||
146 | }, | ||
147 | } | ||
148 | }; | ||
149 | |||
150 | static struct resource lcdc_resources[] = { | ||
151 | [0] = { | ||
152 | .name = "LCDC", | ||
153 | .start = 0xfe940000, /* P4-only space */ | ||
154 | .end = 0xfe941fff, | ||
155 | .flags = IORESOURCE_MEM, | ||
156 | }, | ||
157 | }; | ||
158 | |||
159 | static struct platform_device lcdc_device = { | ||
160 | .name = "sh_mobile_lcdc_fb", | ||
161 | .num_resources = ARRAY_SIZE(lcdc_resources), | ||
162 | .resource = lcdc_resources, | ||
163 | .dev = { | ||
164 | .platform_data = &lcdc_info, | ||
165 | }, | ||
166 | }; | ||
167 | |||
168 | static unsigned char camera_ncm03j_magic[] = | ||
169 | { | ||
170 | 0x87, 0x00, 0x88, 0x08, 0x89, 0x01, 0x8A, 0xE8, | ||
171 | 0x1D, 0x00, 0x1E, 0x8A, 0x21, 0x00, 0x33, 0x36, | ||
172 | 0x36, 0x60, 0x37, 0x08, 0x3B, 0x31, 0x44, 0x0F, | ||
173 | 0x46, 0xF0, 0x4B, 0x28, 0x4C, 0x21, 0x4D, 0x55, | ||
174 | 0x4E, 0x1B, 0x4F, 0xC7, 0x50, 0xFC, 0x51, 0x12, | ||
175 | 0x58, 0x02, 0x66, 0xC0, 0x67, 0x46, 0x6B, 0xA0, | ||
176 | 0x6C, 0x34, 0x7E, 0x25, 0x7F, 0x25, 0x8D, 0x0F, | ||
177 | 0x92, 0x40, 0x93, 0x04, 0x94, 0x26, 0x95, 0x0A, | ||
178 | 0x99, 0x03, 0x9A, 0xF0, 0x9B, 0x14, 0x9D, 0x7A, | ||
179 | 0xC5, 0x02, 0xD6, 0x07, 0x59, 0x00, 0x5A, 0x1A, | ||
180 | 0x5B, 0x2A, 0x5C, 0x37, 0x5D, 0x42, 0x5E, 0x56, | ||
181 | 0xC8, 0x00, 0xC9, 0x1A, 0xCA, 0x2A, 0xCB, 0x37, | ||
182 | 0xCC, 0x42, 0xCD, 0x56, 0xCE, 0x00, 0xCF, 0x1A, | ||
183 | 0xD0, 0x2A, 0xD1, 0x37, 0xD2, 0x42, 0xD3, 0x56, | ||
184 | 0x5F, 0x68, 0x60, 0x87, 0x61, 0xA3, 0x62, 0xBC, | ||
185 | 0x63, 0xD4, 0x64, 0xEA, 0xD6, 0x0F, | ||
186 | }; | ||
187 | |||
188 | static int camera_set_capture(struct soc_camera_platform_info *info, | ||
189 | int enable) | ||
190 | { | ||
191 | struct i2c_adapter *a = i2c_get_adapter(0); | ||
192 | struct i2c_msg msg; | ||
193 | int ret = 0; | ||
194 | int i; | ||
195 | |||
196 | if (!enable) | ||
197 | return 0; /* no disable for now */ | ||
198 | |||
199 | for (i = 0; i < ARRAY_SIZE(camera_ncm03j_magic); i += 2) { | ||
200 | u_int8_t buf[8]; | ||
201 | |||
202 | msg.addr = 0x6e; | ||
203 | msg.buf = buf; | ||
204 | msg.len = 2; | ||
205 | msg.flags = 0; | ||
206 | |||
207 | buf[0] = camera_ncm03j_magic[i]; | ||
208 | buf[1] = camera_ncm03j_magic[i + 1]; | ||
209 | |||
210 | ret = (ret < 0) ? ret : i2c_transfer(a, &msg, 1); | ||
211 | } | ||
212 | |||
213 | return ret; | ||
214 | } | ||
215 | |||
216 | static struct soc_camera_platform_info camera_info = { | ||
217 | .iface = 0, | ||
218 | .format_name = "UYVY", | ||
219 | .format_depth = 16, | ||
220 | .format = { | ||
221 | .pixelformat = V4L2_PIX_FMT_UYVY, | ||
222 | .colorspace = V4L2_COLORSPACE_SMPTE170M, | ||
223 | .width = 640, | ||
224 | .height = 480, | ||
225 | }, | ||
226 | .bus_param = SOCAM_PCLK_SAMPLE_RISING | SOCAM_HSYNC_ACTIVE_HIGH | | ||
227 | SOCAM_VSYNC_ACTIVE_HIGH | SOCAM_MASTER | SOCAM_DATAWIDTH_8, | ||
228 | .set_capture = camera_set_capture, | ||
229 | }; | ||
230 | |||
231 | static struct platform_device camera_device = { | ||
232 | .name = "soc_camera_platform", | ||
233 | .dev = { | ||
234 | .platform_data = &camera_info, | ||
235 | }, | ||
236 | }; | ||
237 | |||
238 | static struct sh_mobile_ceu_info sh_mobile_ceu_info = { | ||
239 | .flags = SOCAM_PCLK_SAMPLE_RISING | SOCAM_HSYNC_ACTIVE_HIGH | | ||
240 | SOCAM_VSYNC_ACTIVE_HIGH | SOCAM_MASTER | SOCAM_DATAWIDTH_8, | ||
241 | }; | ||
242 | |||
243 | static struct resource ceu_resources[] = { | ||
244 | [0] = { | ||
245 | .name = "CEU", | ||
246 | .start = 0xfe910000, | ||
247 | .end = 0xfe91009f, | ||
248 | .flags = IORESOURCE_MEM, | ||
249 | }, | ||
250 | [1] = { | ||
251 | .start = 52, | ||
252 | .flags = IORESOURCE_IRQ, | ||
253 | }, | ||
254 | [2] = { | ||
255 | /* place holder for contiguous memory */ | ||
256 | }, | ||
257 | }; | ||
258 | |||
259 | static struct platform_device ceu_device = { | ||
260 | .name = "sh_mobile_ceu", | ||
261 | .num_resources = ARRAY_SIZE(ceu_resources), | ||
262 | .resource = ceu_resources, | ||
263 | .dev = { | ||
264 | .platform_data = &sh_mobile_ceu_info, | ||
265 | }, | ||
266 | }; | ||
267 | |||
268 | static struct platform_device *ap325rxa_devices[] __initdata = { | ||
269 | &smc9118_device, | ||
270 | &ap325rxa_nor_flash_device, | ||
271 | &lcdc_device, | ||
272 | &ceu_device, | ||
273 | &camera_device, | ||
274 | }; | ||
275 | |||
276 | static struct i2c_board_info __initdata ap325rxa_i2c_devices[] = { | ||
277 | }; | ||
278 | |||
279 | static int __init ap325rxa_devices_setup(void) | ||
280 | { | ||
281 | clk_always_enable("mstp200"); /* LCDC */ | ||
282 | clk_always_enable("mstp203"); /* CEU */ | ||
283 | |||
284 | platform_resource_setup_memory(&ceu_device, "ceu", 4 << 20); | ||
285 | |||
286 | i2c_register_board_info(0, ap325rxa_i2c_devices, | ||
287 | ARRAY_SIZE(ap325rxa_i2c_devices)); | ||
288 | |||
289 | return platform_add_devices(ap325rxa_devices, | ||
290 | ARRAY_SIZE(ap325rxa_devices)); | ||
291 | } | ||
292 | device_initcall(ap325rxa_devices_setup); | ||
293 | |||
294 | static void __init ap325rxa_setup(char **cmdline_p) | ||
295 | { | ||
296 | /* LCDC configuration */ | ||
297 | ctrl_outw(ctrl_inw(PORT_PHCR) & ~0xffff, PORT_PHCR); | ||
298 | ctrl_outw(ctrl_inw(PORT_PLCR) & ~0xffff, PORT_PLCR); | ||
299 | ctrl_outw(ctrl_inw(PORT_PMCR) & ~0xffff, PORT_PMCR); | ||
300 | ctrl_outw(ctrl_inw(PORT_PRCR) & ~0x03ff, PORT_PRCR); | ||
301 | ctrl_outw(ctrl_inw(PORT_HIZCRA) & ~0x01C0, PORT_HIZCRA); | ||
302 | |||
303 | /* CEU */ | ||
304 | ctrl_outw(ctrl_inw(PORT_MSELCRB) & ~0x0001, PORT_MSELCRB); | ||
305 | ctrl_outw(ctrl_inw(PORT_PSELD) & ~0x0003, PORT_PSELD); | ||
306 | ctrl_outw((ctrl_inw(PORT_PZCR) & ~0xff00) | 0x5500, PORT_PZCR); | ||
307 | ctrl_outb((ctrl_inb(PORT_PZDR) & ~0xf0) | 0x20, PORT_PZDR); | ||
308 | } | ||
309 | |||
310 | static struct sh_machine_vector mv_ap325rxa __initmv = { | ||
311 | .mv_name = "AP-325RXA", | ||
312 | .mv_setup = ap325rxa_setup, | ||
313 | }; | ||
diff --git a/arch/sh/boards/renesas/migor/Kconfig b/arch/sh/boards/renesas/migor/Kconfig new file mode 100644 index 000000000000..a7b3b728ec3c --- /dev/null +++ b/arch/sh/boards/renesas/migor/Kconfig | |||
@@ -0,0 +1,15 @@ | |||
1 | if SH_MIGOR | ||
2 | |||
3 | choice | ||
4 | prompt "Migo-R LCD Panel Board Selection" | ||
5 | default SH_MIGOR_QVGA | ||
6 | |||
7 | config SH_MIGOR_QVGA | ||
8 | bool "QVGA (320x240)" | ||
9 | |||
10 | config SH_MIGOR_RTA_WVGA | ||
11 | bool "RTA WVGA (800x480)" | ||
12 | |||
13 | endchoice | ||
14 | |||
15 | endif | ||
diff --git a/arch/sh/boards/renesas/migor/Makefile b/arch/sh/boards/renesas/migor/Makefile index 77037567633b..5f231dd25c0e 100644 --- a/arch/sh/boards/renesas/migor/Makefile +++ b/arch/sh/boards/renesas/migor/Makefile | |||
@@ -1 +1,2 @@ | |||
1 | obj-y := setup.o | 1 | obj-y := setup.o |
2 | obj-$(CONFIG_SH_MIGOR_QVGA) += lcd_qvga.o | ||
diff --git a/arch/sh/boards/renesas/migor/lcd_qvga.c b/arch/sh/boards/renesas/migor/lcd_qvga.c new file mode 100644 index 000000000000..6e9609596448 --- /dev/null +++ b/arch/sh/boards/renesas/migor/lcd_qvga.c | |||
@@ -0,0 +1,165 @@ | |||
1 | /* | ||
2 | * Support for SuperH MigoR Quarter VGA LCD Panel | ||
3 | * | ||
4 | * Copyright (C) 2008 Magnus Damm | ||
5 | * | ||
6 | * Based on lcd_powertip.c from Kenati Technologies Pvt Ltd. | ||
7 | * Copyright (c) 2007 Ujjwal Pande <ujjwal@kenati.com>, | ||
8 | * | ||
9 | * This program is free software; you can redistribute it and/or modify | ||
10 | * it under the terms of the GNU General Public License version 2 as | ||
11 | * published by the Free Software Foundation. | ||
12 | */ | ||
13 | |||
14 | #include <linux/delay.h> | ||
15 | #include <linux/err.h> | ||
16 | #include <linux/fb.h> | ||
17 | #include <linux/init.h> | ||
18 | #include <linux/kernel.h> | ||
19 | #include <linux/module.h> | ||
20 | #include <asm/sh_mobile_lcdc.h> | ||
21 | #include <asm/migor.h> | ||
22 | |||
23 | /* LCD Module is a PH240320T according to board schematics. This module | ||
24 | * is made up of a 240x320 LCD hooked up to a R61505U (or HX8347-A01?) | ||
25 | * Driver IC. This IC is connected to the SH7722 built-in LCDC using a | ||
26 | * SYS-80 interface configured in 16 bit mode. | ||
27 | * | ||
28 | * Index 0: "Device Code Read" returns 0x1505. | ||
29 | */ | ||
30 | |||
31 | static void reset_lcd_module(void) | ||
32 | { | ||
33 | ctrl_outb(ctrl_inb(PORT_PHDR) & ~0x04, PORT_PHDR); | ||
34 | mdelay(2); | ||
35 | ctrl_outb(ctrl_inb(PORT_PHDR) | 0x04, PORT_PHDR); | ||
36 | mdelay(1); | ||
37 | } | ||
38 | |||
39 | /* DB0-DB7 are connected to D1-D8, and DB8-DB15 to D10-D17 */ | ||
40 | |||
41 | static unsigned long adjust_reg18(unsigned short data) | ||
42 | { | ||
43 | unsigned long tmp1, tmp2; | ||
44 | |||
45 | tmp1 = (data<<1 | 0x00000001) & 0x000001FF; | ||
46 | tmp2 = (data<<2 | 0x00000200) & 0x0003FE00; | ||
47 | return tmp1 | tmp2; | ||
48 | } | ||
49 | |||
50 | static void write_reg(void *sys_ops_handle, | ||
51 | struct sh_mobile_lcdc_sys_bus_ops *sys_ops, | ||
52 | unsigned short reg, unsigned short data) | ||
53 | { | ||
54 | sys_ops->write_index(sys_ops_handle, adjust_reg18(reg << 8 | data)); | ||
55 | } | ||
56 | |||
57 | static void write_reg16(void *sys_ops_handle, | ||
58 | struct sh_mobile_lcdc_sys_bus_ops *sys_ops, | ||
59 | unsigned short reg, unsigned short data) | ||
60 | { | ||
61 | sys_ops->write_index(sys_ops_handle, adjust_reg18(reg)); | ||
62 | sys_ops->write_data(sys_ops_handle, adjust_reg18(data)); | ||
63 | } | ||
64 | |||
65 | static unsigned long read_reg16(void *sys_ops_handle, | ||
66 | struct sh_mobile_lcdc_sys_bus_ops *sys_ops, | ||
67 | unsigned short reg) | ||
68 | { | ||
69 | unsigned long data; | ||
70 | |||
71 | sys_ops->write_index(sys_ops_handle, adjust_reg18(reg)); | ||
72 | data = sys_ops->read_data(sys_ops_handle); | ||
73 | return ((data >> 1) & 0xff) | ((data >> 2) & 0xff00); | ||
74 | } | ||
75 | |||
76 | static void migor_lcd_qvga_seq(void *sys_ops_handle, | ||
77 | struct sh_mobile_lcdc_sys_bus_ops *sys_ops, | ||
78 | unsigned short const *data, int no_data) | ||
79 | { | ||
80 | int i; | ||
81 | |||
82 | for (i = 0; i < no_data; i += 2) | ||
83 | write_reg16(sys_ops_handle, sys_ops, data[i], data[i + 1]); | ||
84 | } | ||
85 | |||
86 | static const unsigned short sync_data[] = { | ||
87 | 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, | ||
88 | }; | ||
89 | |||
90 | static const unsigned short magic0_data[] = { | ||
91 | 0x0060, 0x2700, 0x0008, 0x0808, 0x0090, 0x001A, 0x0007, 0x0001, | ||
92 | 0x0017, 0x0001, 0x0019, 0x0000, 0x0010, 0x17B0, 0x0011, 0x0116, | ||
93 | 0x0012, 0x0198, 0x0013, 0x1400, 0x0029, 0x000C, 0x0012, 0x01B8, | ||
94 | }; | ||
95 | |||
96 | static const unsigned short magic1_data[] = { | ||
97 | 0x0030, 0x0307, 0x0031, 0x0303, 0x0032, 0x0603, 0x0033, 0x0202, | ||
98 | 0x0034, 0x0202, 0x0035, 0x0202, 0x0036, 0x1F1F, 0x0037, 0x0303, | ||
99 | 0x0038, 0x0303, 0x0039, 0x0603, 0x003A, 0x0202, 0x003B, 0x0102, | ||
100 | 0x003C, 0x0204, 0x003D, 0x0000, 0x0001, 0x0100, 0x0002, 0x0300, | ||
101 | 0x0003, 0x5028, 0x0020, 0x00ef, 0x0021, 0x0000, 0x0004, 0x0000, | ||
102 | 0x0009, 0x0000, 0x000A, 0x0008, 0x000C, 0x0000, 0x000D, 0x0000, | ||
103 | 0x0015, 0x8000, | ||
104 | }; | ||
105 | |||
106 | static const unsigned short magic2_data[] = { | ||
107 | 0x0061, 0x0001, 0x0092, 0x0100, 0x0093, 0x0001, 0x0007, 0x0021, | ||
108 | }; | ||
109 | |||
110 | static const unsigned short magic3_data[] = { | ||
111 | 0x0010, 0x16B0, 0x0011, 0x0111, 0x0007, 0x0061, | ||
112 | }; | ||
113 | |||
114 | int migor_lcd_qvga_setup(void *board_data, void *sohandle, | ||
115 | struct sh_mobile_lcdc_sys_bus_ops *so) | ||
116 | { | ||
117 | unsigned long xres = 320; | ||
118 | unsigned long yres = 240; | ||
119 | int k; | ||
120 | |||
121 | reset_lcd_module(); | ||
122 | migor_lcd_qvga_seq(sohandle, so, sync_data, ARRAY_SIZE(sync_data)); | ||
123 | |||
124 | if (read_reg16(sohandle, so, 0) != 0x1505) | ||
125 | return -ENODEV; | ||
126 | |||
127 | pr_info("Migo-R QVGA LCD Module detected.\n"); | ||
128 | |||
129 | migor_lcd_qvga_seq(sohandle, so, sync_data, ARRAY_SIZE(sync_data)); | ||
130 | write_reg16(sohandle, so, 0x00A4, 0x0001); | ||
131 | mdelay(10); | ||
132 | |||
133 | migor_lcd_qvga_seq(sohandle, so, magic0_data, ARRAY_SIZE(magic0_data)); | ||
134 | mdelay(100); | ||
135 | |||
136 | migor_lcd_qvga_seq(sohandle, so, magic1_data, ARRAY_SIZE(magic1_data)); | ||
137 | write_reg16(sohandle, so, 0x0050, 0xef - (yres - 1)); | ||
138 | write_reg16(sohandle, so, 0x0051, 0x00ef); | ||
139 | write_reg16(sohandle, so, 0x0052, 0x0000); | ||
140 | write_reg16(sohandle, so, 0x0053, xres - 1); | ||
141 | |||
142 | migor_lcd_qvga_seq(sohandle, so, magic2_data, ARRAY_SIZE(magic2_data)); | ||
143 | mdelay(10); | ||
144 | |||
145 | migor_lcd_qvga_seq(sohandle, so, magic3_data, ARRAY_SIZE(magic3_data)); | ||
146 | mdelay(40); | ||
147 | |||
148 | /* clear GRAM to avoid displaying garbage */ | ||
149 | |||
150 | write_reg16(sohandle, so, 0x0020, 0x0000); /* horiz addr */ | ||
151 | write_reg16(sohandle, so, 0x0021, 0x0000); /* vert addr */ | ||
152 | |||
153 | for (k = 0; k < (xres * 256); k++) /* yes, 256 words per line */ | ||
154 | write_reg16(sohandle, so, 0x0022, 0x0000); | ||
155 | |||
156 | write_reg16(sohandle, so, 0x0020, 0x0000); /* reset horiz addr */ | ||
157 | write_reg16(sohandle, so, 0x0021, 0x0000); /* reset vert addr */ | ||
158 | write_reg16(sohandle, so, 0x0007, 0x0173); | ||
159 | mdelay(40); | ||
160 | |||
161 | /* enable display */ | ||
162 | write_reg(sohandle, so, 0x00, 0x22); | ||
163 | mdelay(100); | ||
164 | return 0; | ||
165 | } | ||
diff --git a/arch/sh/boards/renesas/migor/setup.c b/arch/sh/boards/renesas/migor/setup.c index 963c99322095..7bd365ad2d06 100644 --- a/arch/sh/boards/renesas/migor/setup.c +++ b/arch/sh/boards/renesas/migor/setup.c | |||
@@ -15,9 +15,15 @@ | |||
15 | #include <linux/mtd/nand.h> | 15 | #include <linux/mtd/nand.h> |
16 | #include <linux/i2c.h> | 16 | #include <linux/i2c.h> |
17 | #include <linux/smc91x.h> | 17 | #include <linux/smc91x.h> |
18 | #include <linux/delay.h> | ||
19 | #include <linux/clk.h> | ||
20 | #include <media/soc_camera_platform.h> | ||
21 | #include <media/sh_mobile_ceu.h> | ||
22 | #include <asm/clock.h> | ||
18 | #include <asm/machvec.h> | 23 | #include <asm/machvec.h> |
19 | #include <asm/io.h> | 24 | #include <asm/io.h> |
20 | #include <asm/sh_keysc.h> | 25 | #include <asm/sh_keysc.h> |
26 | #include <asm/sh_mobile_lcdc.h> | ||
21 | #include <asm/migor.h> | 27 | #include <asm/migor.h> |
22 | 28 | ||
23 | /* Address IRQ Size Bus Description | 29 | /* Address IRQ Size Bus Description |
@@ -198,14 +204,237 @@ static struct platform_device migor_nand_flash_device = { | |||
198 | } | 204 | } |
199 | }; | 205 | }; |
200 | 206 | ||
207 | static struct sh_mobile_lcdc_info sh_mobile_lcdc_info = { | ||
208 | #ifdef CONFIG_SH_MIGOR_RTA_WVGA | ||
209 | .clock_source = LCDC_CLK_BUS, | ||
210 | .ch[0] = { | ||
211 | .chan = LCDC_CHAN_MAINLCD, | ||
212 | .bpp = 16, | ||
213 | .interface_type = RGB16, | ||
214 | .clock_divider = 2, | ||
215 | .lcd_cfg = { | ||
216 | .name = "LB070WV1", | ||
217 | .xres = 800, | ||
218 | .yres = 480, | ||
219 | .left_margin = 64, | ||
220 | .right_margin = 16, | ||
221 | .hsync_len = 120, | ||
222 | .upper_margin = 1, | ||
223 | .lower_margin = 17, | ||
224 | .vsync_len = 2, | ||
225 | .sync = 0, | ||
226 | }, | ||
227 | } | ||
228 | #endif | ||
229 | #ifdef CONFIG_SH_MIGOR_QVGA | ||
230 | .clock_source = LCDC_CLK_PERIPHERAL, | ||
231 | .ch[0] = { | ||
232 | .chan = LCDC_CHAN_MAINLCD, | ||
233 | .bpp = 16, | ||
234 | .interface_type = SYS16A, | ||
235 | .clock_divider = 10, | ||
236 | .lcd_cfg = { | ||
237 | .name = "PH240320T", | ||
238 | .xres = 320, | ||
239 | .yres = 240, | ||
240 | .left_margin = 0, | ||
241 | .right_margin = 16, | ||
242 | .hsync_len = 8, | ||
243 | .upper_margin = 1, | ||
244 | .lower_margin = 17, | ||
245 | .vsync_len = 2, | ||
246 | .sync = FB_SYNC_HOR_HIGH_ACT, | ||
247 | }, | ||
248 | .board_cfg = { | ||
249 | .setup_sys = migor_lcd_qvga_setup, | ||
250 | }, | ||
251 | .sys_bus_cfg = { | ||
252 | .ldmt2r = 0x06000a09, | ||
253 | .ldmt3r = 0x180e3418, | ||
254 | }, | ||
255 | } | ||
256 | #endif | ||
257 | }; | ||
258 | |||
259 | static struct resource migor_lcdc_resources[] = { | ||
260 | [0] = { | ||
261 | .name = "LCDC", | ||
262 | .start = 0xfe940000, /* P4-only space */ | ||
263 | .end = 0xfe941fff, | ||
264 | .flags = IORESOURCE_MEM, | ||
265 | }, | ||
266 | }; | ||
267 | |||
268 | static struct platform_device migor_lcdc_device = { | ||
269 | .name = "sh_mobile_lcdc_fb", | ||
270 | .num_resources = ARRAY_SIZE(migor_lcdc_resources), | ||
271 | .resource = migor_lcdc_resources, | ||
272 | .dev = { | ||
273 | .platform_data = &sh_mobile_lcdc_info, | ||
274 | }, | ||
275 | }; | ||
276 | |||
277 | static struct clk *camera_clk; | ||
278 | |||
279 | static void camera_power_on(void) | ||
280 | { | ||
281 | unsigned char value; | ||
282 | |||
283 | camera_clk = clk_get(NULL, "video_clk"); | ||
284 | clk_set_rate(camera_clk, 24000000); | ||
285 | clk_enable(camera_clk); /* start VIO_CKO */ | ||
286 | |||
287 | mdelay(10); | ||
288 | value = ctrl_inb(PORT_PTDR); | ||
289 | value &= ~0x09; | ||
290 | #ifndef CONFIG_SH_MIGOR_RTA_WVGA | ||
291 | value |= 0x01; | ||
292 | #endif | ||
293 | ctrl_outb(value, PORT_PTDR); | ||
294 | mdelay(10); | ||
295 | |||
296 | ctrl_outb(value | 8, PORT_PTDR); | ||
297 | } | ||
298 | |||
299 | static void camera_power_off(void) | ||
300 | { | ||
301 | clk_disable(camera_clk); /* stop VIO_CKO */ | ||
302 | clk_put(camera_clk); | ||
303 | |||
304 | ctrl_outb(ctrl_inb(PORT_PTDR) & ~0x08, PORT_PTDR); | ||
305 | } | ||
306 | |||
307 | static unsigned char camera_ov772x_magic[] = | ||
308 | { | ||
309 | 0x09, 0x01, 0x0c, 0x10, 0x0d, 0x41, 0x0e, 0x01, | ||
310 | 0x12, 0x00, 0x13, 0x8F, 0x14, 0x4A, 0x15, 0x00, | ||
311 | 0x16, 0x00, 0x17, 0x23, 0x18, 0xa0, 0x19, 0x07, | ||
312 | 0x1a, 0xf0, 0x1b, 0x40, 0x1f, 0x00, 0x20, 0x10, | ||
313 | 0x22, 0xff, 0x23, 0x01, 0x28, 0x00, 0x29, 0xa0, | ||
314 | 0x2a, 0x00, 0x2b, 0x00, 0x2c, 0xf0, 0x2d, 0x00, | ||
315 | 0x2e, 0x00, 0x30, 0x80, 0x31, 0x60, 0x32, 0x00, | ||
316 | 0x33, 0x00, 0x34, 0x00, 0x3d, 0x80, 0x3e, 0xe2, | ||
317 | 0x3f, 0x1f, 0x42, 0x80, 0x43, 0x80, 0x44, 0x80, | ||
318 | 0x45, 0x80, 0x46, 0x00, 0x47, 0x00, 0x48, 0x00, | ||
319 | 0x49, 0x50, 0x4a, 0x30, 0x4b, 0x50, 0x4c, 0x50, | ||
320 | 0x4d, 0x00, 0x4e, 0xef, 0x4f, 0x10, 0x50, 0x60, | ||
321 | 0x51, 0x00, 0x52, 0x00, 0x53, 0x24, 0x54, 0x7a, | ||
322 | 0x55, 0xfc, 0x62, 0xff, 0x63, 0xf0, 0x64, 0x1f, | ||
323 | 0x65, 0x00, 0x66, 0x10, 0x67, 0x00, 0x68, 0x00, | ||
324 | 0x69, 0x5c, 0x6a, 0x11, 0x6b, 0xa2, 0x6c, 0x01, | ||
325 | 0x6d, 0x50, 0x6e, 0x80, 0x6f, 0x80, 0x70, 0x0f, | ||
326 | 0x71, 0x00, 0x72, 0x00, 0x73, 0x0f, 0x74, 0x0f, | ||
327 | 0x75, 0xff, 0x78, 0x10, 0x79, 0x70, 0x7a, 0x70, | ||
328 | 0x7b, 0xf0, 0x7c, 0xf0, 0x7d, 0xf0, 0x7e, 0x0e, | ||
329 | 0x7f, 0x1a, 0x80, 0x31, 0x81, 0x5a, 0x82, 0x69, | ||
330 | 0x83, 0x75, 0x84, 0x7e, 0x85, 0x88, 0x86, 0x8f, | ||
331 | 0x87, 0x96, 0x88, 0xa3, 0x89, 0xaf, 0x8a, 0xc4, | ||
332 | 0x8b, 0xd7, 0x8c, 0xe8, 0x8d, 0x20, 0x8e, 0x00, | ||
333 | 0x8f, 0x00, 0x90, 0x08, 0x91, 0x10, 0x92, 0x1f, | ||
334 | 0x93, 0x01, 0x94, 0x2c, 0x95, 0x24, 0x96, 0x08, | ||
335 | 0x97, 0x14, 0x98, 0x24, 0x99, 0x38, 0x9a, 0x9e, | ||
336 | 0x9b, 0x00, 0x9c, 0x40, 0x9e, 0x11, 0x9f, 0x02, | ||
337 | 0xa0, 0x00, 0xa1, 0x40, 0xa2, 0x40, 0xa3, 0x06, | ||
338 | 0xa4, 0x00, 0xa6, 0x00, 0xa7, 0x40, 0xa8, 0x40, | ||
339 | 0xa9, 0x80, 0xaa, 0x80, 0xab, 0x06, 0xac, 0xff, | ||
340 | 0x12, 0x06, 0x64, 0x3f, 0x12, 0x46, 0x17, 0x3f, | ||
341 | 0x18, 0x50, 0x19, 0x03, 0x1a, 0x78, 0x29, 0x50, | ||
342 | 0x2c, 0x78, | ||
343 | }; | ||
344 | |||
345 | static int ov772x_set_capture(struct soc_camera_platform_info *info, | ||
346 | int enable) | ||
347 | { | ||
348 | struct i2c_adapter *a = i2c_get_adapter(0); | ||
349 | struct i2c_msg msg; | ||
350 | int ret = 0; | ||
351 | int i; | ||
352 | |||
353 | if (!enable) | ||
354 | return 0; /* camera_power_off() is enough */ | ||
355 | |||
356 | for (i = 0; i < ARRAY_SIZE(camera_ov772x_magic); i += 2) { | ||
357 | u_int8_t buf[8]; | ||
358 | |||
359 | msg.addr = 0x21; | ||
360 | msg.buf = buf; | ||
361 | msg.len = 2; | ||
362 | msg.flags = 0; | ||
363 | |||
364 | buf[0] = camera_ov772x_magic[i]; | ||
365 | buf[1] = camera_ov772x_magic[i + 1]; | ||
366 | |||
367 | ret = (ret < 0) ? ret : i2c_transfer(a, &msg, 1); | ||
368 | } | ||
369 | |||
370 | return ret; | ||
371 | } | ||
372 | |||
373 | static struct soc_camera_platform_info ov772x_info = { | ||
374 | .iface = 0, | ||
375 | .format_name = "RGB565", | ||
376 | .format_depth = 16, | ||
377 | .format = { | ||
378 | .pixelformat = V4L2_PIX_FMT_RGB565, | ||
379 | .colorspace = V4L2_COLORSPACE_SRGB, | ||
380 | .width = 320, | ||
381 | .height = 240, | ||
382 | }, | ||
383 | .bus_param = SOCAM_PCLK_SAMPLE_RISING | SOCAM_HSYNC_ACTIVE_HIGH | | ||
384 | SOCAM_VSYNC_ACTIVE_HIGH | SOCAM_MASTER | SOCAM_DATAWIDTH_8, | ||
385 | .set_capture = ov772x_set_capture, | ||
386 | }; | ||
387 | |||
388 | static struct platform_device migor_camera_device = { | ||
389 | .name = "soc_camera_platform", | ||
390 | .dev = { | ||
391 | .platform_data = &ov772x_info, | ||
392 | }, | ||
393 | }; | ||
394 | |||
395 | static struct sh_mobile_ceu_info sh_mobile_ceu_info = { | ||
396 | .flags = SOCAM_MASTER | SOCAM_DATAWIDTH_8 | SOCAM_PCLK_SAMPLE_RISING \ | ||
397 | | SOCAM_HSYNC_ACTIVE_HIGH | SOCAM_VSYNC_ACTIVE_HIGH, | ||
398 | .enable_camera = camera_power_on, | ||
399 | .disable_camera = camera_power_off, | ||
400 | }; | ||
401 | |||
402 | static struct resource migor_ceu_resources[] = { | ||
403 | [0] = { | ||
404 | .name = "CEU", | ||
405 | .start = 0xfe910000, | ||
406 | .end = 0xfe91009f, | ||
407 | .flags = IORESOURCE_MEM, | ||
408 | }, | ||
409 | [1] = { | ||
410 | .start = 52, | ||
411 | .flags = IORESOURCE_IRQ, | ||
412 | }, | ||
413 | [2] = { | ||
414 | /* place holder for contiguous memory */ | ||
415 | }, | ||
416 | }; | ||
417 | |||
418 | static struct platform_device migor_ceu_device = { | ||
419 | .name = "sh_mobile_ceu", | ||
420 | .num_resources = ARRAY_SIZE(migor_ceu_resources), | ||
421 | .resource = migor_ceu_resources, | ||
422 | .dev = { | ||
423 | .platform_data = &sh_mobile_ceu_info, | ||
424 | }, | ||
425 | }; | ||
426 | |||
201 | static struct platform_device *migor_devices[] __initdata = { | 427 | static struct platform_device *migor_devices[] __initdata = { |
202 | &smc91x_eth_device, | 428 | &smc91x_eth_device, |
203 | &sh_keysc_device, | 429 | &sh_keysc_device, |
430 | &migor_lcdc_device, | ||
431 | &migor_ceu_device, | ||
432 | &migor_camera_device, | ||
204 | &migor_nor_flash_device, | 433 | &migor_nor_flash_device, |
205 | &migor_nand_flash_device, | 434 | &migor_nand_flash_device, |
206 | }; | 435 | }; |
207 | 436 | ||
208 | static struct i2c_board_info __initdata migor_i2c_devices[] = { | 437 | static struct i2c_board_info migor_i2c_devices[] = { |
209 | { | 438 | { |
210 | I2C_BOARD_INFO("rs5c372b", 0x32), | 439 | I2C_BOARD_INFO("rs5c372b", 0x32), |
211 | }, | 440 | }, |
@@ -217,6 +446,12 @@ static struct i2c_board_info __initdata migor_i2c_devices[] = { | |||
217 | 446 | ||
218 | static int __init migor_devices_setup(void) | 447 | static int __init migor_devices_setup(void) |
219 | { | 448 | { |
449 | clk_always_enable("mstp214"); /* KEYSC */ | ||
450 | clk_always_enable("mstp200"); /* LCDC */ | ||
451 | clk_always_enable("mstp203"); /* CEU */ | ||
452 | |||
453 | platform_resource_setup_memory(&migor_ceu_device, "ceu", 4 << 20); | ||
454 | |||
220 | i2c_register_board_info(0, migor_i2c_devices, | 455 | i2c_register_board_info(0, migor_i2c_devices, |
221 | ARRAY_SIZE(migor_i2c_devices)); | 456 | ARRAY_SIZE(migor_i2c_devices)); |
222 | 457 | ||
@@ -235,20 +470,51 @@ static void __init migor_setup(char **cmdline_p) | |||
235 | ctrl_outw(ctrl_inw(PORT_PSELA) & ~0x4100, PORT_PSELA); | 470 | ctrl_outw(ctrl_inw(PORT_PSELA) & ~0x4100, PORT_PSELA); |
236 | ctrl_outw(ctrl_inw(PORT_HIZCRA) & ~0x4000, PORT_HIZCRA); | 471 | ctrl_outw(ctrl_inw(PORT_HIZCRA) & ~0x4000, PORT_HIZCRA); |
237 | ctrl_outw(ctrl_inw(PORT_HIZCRC) & ~0xc000, PORT_HIZCRC); | 472 | ctrl_outw(ctrl_inw(PORT_HIZCRC) & ~0xc000, PORT_HIZCRC); |
238 | ctrl_outl(ctrl_inl(MSTPCR2) & ~0x00004000, MSTPCR2); | ||
239 | 473 | ||
240 | /* NAND Flash */ | 474 | /* NAND Flash */ |
241 | ctrl_outw(ctrl_inw(PORT_PXCR) & 0x0fff, PORT_PXCR); | 475 | ctrl_outw(ctrl_inw(PORT_PXCR) & 0x0fff, PORT_PXCR); |
242 | ctrl_outl((ctrl_inl(BSC_CS6ABCR) & ~0x00000600) | 0x00000200, | 476 | ctrl_outl((ctrl_inl(BSC_CS6ABCR) & ~0x00000600) | 0x00000200, |
243 | BSC_CS6ABCR); | 477 | BSC_CS6ABCR); |
244 | 478 | ||
245 | /* I2C */ | ||
246 | ctrl_outl(ctrl_inl(MSTPCR1) & ~0x00000200, MSTPCR1); | ||
247 | |||
248 | /* Touch Panel - Enable IRQ6 */ | 479 | /* Touch Panel - Enable IRQ6 */ |
249 | ctrl_outw(ctrl_inw(PORT_PZCR) & ~0xc, PORT_PZCR); | 480 | ctrl_outw(ctrl_inw(PORT_PZCR) & ~0xc, PORT_PZCR); |
250 | ctrl_outw((ctrl_inw(PORT_PSELA) | 0x8000), PORT_PSELA); | 481 | ctrl_outw((ctrl_inw(PORT_PSELA) | 0x8000), PORT_PSELA); |
251 | ctrl_outw((ctrl_inw(PORT_HIZCRC) & ~0x4000), PORT_HIZCRC); | 482 | ctrl_outw((ctrl_inw(PORT_HIZCRC) & ~0x4000), PORT_HIZCRC); |
483 | |||
484 | #ifdef CONFIG_SH_MIGOR_RTA_WVGA | ||
485 | /* LCDC - WVGA - Enable RGB Interface signals */ | ||
486 | ctrl_outw(ctrl_inw(PORT_PACR) & ~0x0003, PORT_PACR); | ||
487 | ctrl_outw(0x0000, PORT_PHCR); | ||
488 | ctrl_outw(0x0000, PORT_PLCR); | ||
489 | ctrl_outw(0x0000, PORT_PMCR); | ||
490 | ctrl_outw(ctrl_inw(PORT_PRCR) & ~0x000f, PORT_PRCR); | ||
491 | ctrl_outw((ctrl_inw(PORT_PSELD) & ~0x000d) | 0x0400, PORT_PSELD); | ||
492 | ctrl_outw(ctrl_inw(PORT_MSELCRB) & ~0x0100, PORT_MSELCRB); | ||
493 | ctrl_outw(ctrl_inw(PORT_HIZCRA) & ~0x01e0, PORT_HIZCRA); | ||
494 | #endif | ||
495 | #ifdef CONFIG_SH_MIGOR_QVGA | ||
496 | /* LCDC - QVGA - Enable SYS Interface signals */ | ||
497 | ctrl_outw(ctrl_inw(PORT_PACR) & ~0x0003, PORT_PACR); | ||
498 | ctrl_outw((ctrl_inw(PORT_PHCR) & ~0xcfff) | 0x0010, PORT_PHCR); | ||
499 | ctrl_outw(0x0000, PORT_PLCR); | ||
500 | ctrl_outw(0x0000, PORT_PMCR); | ||
501 | ctrl_outw(ctrl_inw(PORT_PRCR) & ~0x030f, PORT_PRCR); | ||
502 | ctrl_outw((ctrl_inw(PORT_PSELD) & ~0x0001) | 0x0420, PORT_PSELD); | ||
503 | ctrl_outw(ctrl_inw(PORT_MSELCRB) | 0x0100, PORT_MSELCRB); | ||
504 | ctrl_outw(ctrl_inw(PORT_HIZCRA) & ~0x01e0, PORT_HIZCRA); | ||
505 | #endif | ||
506 | |||
507 | /* CEU */ | ||
508 | ctrl_outw((ctrl_inw(PORT_PTCR) & ~0x03c3) | 0x0051, PORT_PTCR); | ||
509 | ctrl_outw(ctrl_inw(PORT_PUCR) & ~0x03ff, PORT_PUCR); | ||
510 | ctrl_outw(ctrl_inw(PORT_PVCR) & ~0x03ff, PORT_PVCR); | ||
511 | ctrl_outw(ctrl_inw(PORT_PWCR) & ~0x3c00, PORT_PWCR); | ||
512 | ctrl_outw(ctrl_inw(PORT_PSELC) | 0x0001, PORT_PSELC); | ||
513 | ctrl_outw(ctrl_inw(PORT_PSELD) & ~0x2000, PORT_PSELD); | ||
514 | ctrl_outw(ctrl_inw(PORT_PSELE) | 0x000f, PORT_PSELE); | ||
515 | ctrl_outw(ctrl_inw(PORT_MSELCRB) | 0x2200, PORT_MSELCRB); | ||
516 | ctrl_outw(ctrl_inw(PORT_HIZCRA) & ~0x0a00, PORT_HIZCRA); | ||
517 | ctrl_outw(ctrl_inw(PORT_HIZCRB) & ~0x0003, PORT_HIZCRB); | ||
252 | } | 518 | } |
253 | 519 | ||
254 | static struct sh_machine_vector mv_migor __initmv = { | 520 | static struct sh_machine_vector mv_migor __initmv = { |
diff --git a/arch/sh/boards/renesas/rsk7203/Makefile b/arch/sh/boards/renesas/rsk7203/Makefile new file mode 100644 index 000000000000..f663768429f0 --- /dev/null +++ b/arch/sh/boards/renesas/rsk7203/Makefile | |||
@@ -0,0 +1 @@ | |||
obj-y := setup.o | |||
diff --git a/arch/sh/boards/renesas/rsk7203/setup.c b/arch/sh/boards/renesas/rsk7203/setup.c new file mode 100644 index 000000000000..0bbda04b03b9 --- /dev/null +++ b/arch/sh/boards/renesas/rsk7203/setup.c | |||
@@ -0,0 +1,126 @@ | |||
1 | /* | ||
2 | * Renesas Technology Europe RSK+ 7203 Support. | ||
3 | * | ||
4 | * Copyright (C) 2008 Paul Mundt | ||
5 | * | ||
6 | * This file is subject to the terms and conditions of the GNU General Public | ||
7 | * License. See the file "COPYING" in the main directory of this archive | ||
8 | * for more details. | ||
9 | */ | ||
10 | #include <linux/init.h> | ||
11 | #include <linux/types.h> | ||
12 | #include <linux/platform_device.h> | ||
13 | #include <linux/mtd/mtd.h> | ||
14 | #include <linux/mtd/partitions.h> | ||
15 | #include <linux/mtd/physmap.h> | ||
16 | #include <linux/mtd/map.h> | ||
17 | #include <asm/machvec.h> | ||
18 | #include <asm/io.h> | ||
19 | |||
20 | static struct resource smc911x_resources[] = { | ||
21 | [0] = { | ||
22 | .start = 0x24000000, | ||
23 | .end = 0x24000000 + 0x100, | ||
24 | .flags = IORESOURCE_MEM, | ||
25 | }, | ||
26 | [1] = { | ||
27 | .start = 64, | ||
28 | .end = 64, | ||
29 | .flags = IORESOURCE_IRQ, | ||
30 | }, | ||
31 | }; | ||
32 | |||
33 | static struct platform_device smc911x_device = { | ||
34 | .name = "smc911x", | ||
35 | .id = -1, | ||
36 | .num_resources = ARRAY_SIZE(smc911x_resources), | ||
37 | .resource = smc911x_resources, | ||
38 | }; | ||
39 | |||
40 | static const char *probes[] = { "cmdlinepart", NULL }; | ||
41 | |||
42 | static struct mtd_partition *parsed_partitions; | ||
43 | |||
44 | static struct mtd_partition rsk7203_partitions[] = { | ||
45 | { | ||
46 | .name = "Bootloader", | ||
47 | .offset = 0x00000000, | ||
48 | .size = 0x00040000, | ||
49 | .mask_flags = MTD_WRITEABLE, | ||
50 | }, { | ||
51 | .name = "Kernel", | ||
52 | .offset = MTDPART_OFS_NXTBLK, | ||
53 | .size = 0x001c0000, | ||
54 | }, { | ||
55 | .name = "Flash_FS", | ||
56 | .offset = MTDPART_OFS_NXTBLK, | ||
57 | .size = MTDPART_SIZ_FULL, | ||
58 | } | ||
59 | }; | ||
60 | |||
61 | static struct physmap_flash_data flash_data = { | ||
62 | .width = 2, | ||
63 | }; | ||
64 | |||
65 | static struct resource flash_resource = { | ||
66 | .start = 0x20000000, | ||
67 | .end = 0x20400000, | ||
68 | .flags = IORESOURCE_MEM, | ||
69 | }; | ||
70 | |||
71 | static struct platform_device flash_device = { | ||
72 | .name = "physmap-flash", | ||
73 | .id = -1, | ||
74 | .resource = &flash_resource, | ||
75 | .num_resources = 1, | ||
76 | .dev = { | ||
77 | .platform_data = &flash_data, | ||
78 | }, | ||
79 | }; | ||
80 | |||
81 | static struct mtd_info *flash_mtd; | ||
82 | |||
83 | static struct map_info rsk7203_flash_map = { | ||
84 | .name = "RSK+ Flash", | ||
85 | .size = 0x400000, | ||
86 | .bankwidth = 2, | ||
87 | }; | ||
88 | |||
89 | static void __init set_mtd_partitions(void) | ||
90 | { | ||
91 | int nr_parts = 0; | ||
92 | |||
93 | simple_map_init(&rsk7203_flash_map); | ||
94 | flash_mtd = do_map_probe("cfi_probe", &rsk7203_flash_map); | ||
95 | nr_parts = parse_mtd_partitions(flash_mtd, probes, | ||
96 | &parsed_partitions, 0); | ||
97 | /* If there is no partition table, used the hard coded table */ | ||
98 | if (nr_parts <= 0) { | ||
99 | flash_data.parts = rsk7203_partitions; | ||
100 | flash_data.nr_parts = ARRAY_SIZE(rsk7203_partitions); | ||
101 | } else { | ||
102 | flash_data.nr_parts = nr_parts; | ||
103 | flash_data.parts = parsed_partitions; | ||
104 | } | ||
105 | } | ||
106 | |||
107 | |||
108 | static struct platform_device *rsk7203_devices[] __initdata = { | ||
109 | &smc911x_device, | ||
110 | &flash_device, | ||
111 | }; | ||
112 | |||
113 | static int __init rsk7203_devices_setup(void) | ||
114 | { | ||
115 | set_mtd_partitions(); | ||
116 | return platform_add_devices(rsk7203_devices, | ||
117 | ARRAY_SIZE(rsk7203_devices)); | ||
118 | } | ||
119 | device_initcall(rsk7203_devices_setup); | ||
120 | |||
121 | /* | ||
122 | * The Machine Vector | ||
123 | */ | ||
124 | static struct sh_machine_vector mv_rsk7203 __initmv = { | ||
125 | .mv_name = "RSK+7203", | ||
126 | }; | ||
diff --git a/arch/sh/boards/renesas/sh7763rdp/Makefile b/arch/sh/boards/renesas/sh7763rdp/Makefile new file mode 100644 index 000000000000..f6c0b55516d2 --- /dev/null +++ b/arch/sh/boards/renesas/sh7763rdp/Makefile | |||
@@ -0,0 +1 @@ | |||
obj-y := setup.o irq.o | |||
diff --git a/arch/sh/boards/renesas/sh7763rdp/irq.c b/arch/sh/boards/renesas/sh7763rdp/irq.c new file mode 100644 index 000000000000..fd850bad2dec --- /dev/null +++ b/arch/sh/boards/renesas/sh7763rdp/irq.c | |||
@@ -0,0 +1,45 @@ | |||
1 | /* | ||
2 | * linux/arch/sh/boards/renesas/sh7763rdp/irq.c | ||
3 | * | ||
4 | * Renesas Solutions SH7763RDP Support. | ||
5 | * | ||
6 | * Copyright (C) 2008 Renesas Solutions Corp. | ||
7 | * Copyright (C) 2008 Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> | ||
8 | * | ||
9 | * This file is subject to the terms and conditions of the GNU General Public | ||
10 | * License. See the file "COPYING" in the main directory of this archive | ||
11 | * for more details. | ||
12 | */ | ||
13 | |||
14 | #include <linux/init.h> | ||
15 | #include <linux/irq.h> | ||
16 | #include <asm/io.h> | ||
17 | #include <asm/irq.h> | ||
18 | #include <asm/sh7763rdp.h> | ||
19 | |||
20 | #define INTC_BASE (0xFFD00000) | ||
21 | #define INTC_INT2PRI7 (INTC_BASE+0x4001C) | ||
22 | #define INTC_INT2MSKCR (INTC_BASE+0x4003C) | ||
23 | #define INTC_INT2MSKCR1 (INTC_BASE+0x400D4) | ||
24 | |||
25 | /* | ||
26 | * Initialize IRQ setting | ||
27 | */ | ||
28 | void __init init_sh7763rdp_IRQ(void) | ||
29 | { | ||
30 | /* GPIO enabled */ | ||
31 | ctrl_outl(1 << 25, INTC_INT2MSKCR); | ||
32 | |||
33 | /* enable GPIO interrupts */ | ||
34 | ctrl_outl((ctrl_inl(INTC_INT2PRI7) & 0xFF00FFFF) | 0x000F0000, | ||
35 | INTC_INT2PRI7); | ||
36 | |||
37 | /* USBH enabled */ | ||
38 | ctrl_outl(1 << 17, INTC_INT2MSKCR1); | ||
39 | |||
40 | /* GETHER enabled */ | ||
41 | ctrl_outl(1 << 16, INTC_INT2MSKCR1); | ||
42 | |||
43 | /* DMAC enabled */ | ||
44 | ctrl_outl(1 << 8, INTC_INT2MSKCR); | ||
45 | } | ||
diff --git a/arch/sh/boards/renesas/sh7763rdp/setup.c b/arch/sh/boards/renesas/sh7763rdp/setup.c new file mode 100644 index 000000000000..925f16af7121 --- /dev/null +++ b/arch/sh/boards/renesas/sh7763rdp/setup.c | |||
@@ -0,0 +1,128 @@ | |||
1 | /* | ||
2 | * linux/arch/sh/boards/renesas/sh7763rdp/setup.c | ||
3 | * | ||
4 | * Renesas Solutions sh7763rdp board | ||
5 | * | ||
6 | * Copyright (C) 2008 Renesas Solutions Corp. | ||
7 | * Copyright (C) 2008 Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> | ||
8 | * | ||
9 | * This file is subject to the terms and conditions of the GNU General Public | ||
10 | * License. See the file "COPYING" in the main directory of this archive | ||
11 | * for more details. | ||
12 | */ | ||
13 | #include <linux/init.h> | ||
14 | #include <linux/platform_device.h> | ||
15 | #include <linux/interrupt.h> | ||
16 | #include <linux/input.h> | ||
17 | #include <linux/mtd/physmap.h> | ||
18 | #include <asm/io.h> | ||
19 | #include <asm/sh7763rdp.h> | ||
20 | |||
21 | /* NOR Flash */ | ||
22 | static struct mtd_partition sh7763rdp_nor_flash_partitions[] = { | ||
23 | { | ||
24 | .name = "U-Boot", | ||
25 | .offset = 0, | ||
26 | .size = (2 * 128 * 1024), | ||
27 | .mask_flags = MTD_WRITEABLE, /* Read-only */ | ||
28 | }, { | ||
29 | .name = "Linux-Kernel", | ||
30 | .offset = MTDPART_OFS_APPEND, | ||
31 | .size = (20 * 128 * 1024), | ||
32 | }, { | ||
33 | .name = "Root Filesystem", | ||
34 | .offset = MTDPART_OFS_APPEND, | ||
35 | .size = MTDPART_SIZ_FULL, | ||
36 | }, | ||
37 | }; | ||
38 | |||
39 | static struct physmap_flash_data sh7763rdp_nor_flash_data = { | ||
40 | .width = 2, | ||
41 | .parts = sh7763rdp_nor_flash_partitions, | ||
42 | .nr_parts = ARRAY_SIZE(sh7763rdp_nor_flash_partitions), | ||
43 | }; | ||
44 | |||
45 | static struct resource sh7763rdp_nor_flash_resources[] = { | ||
46 | [0] = { | ||
47 | .name = "NOR Flash", | ||
48 | .start = 0, | ||
49 | .end = (64 * 1024 * 1024), | ||
50 | .flags = IORESOURCE_MEM, | ||
51 | }, | ||
52 | }; | ||
53 | |||
54 | static struct platform_device sh7763rdp_nor_flash_device = { | ||
55 | .name = "physmap-flash", | ||
56 | .resource = sh7763rdp_nor_flash_resources, | ||
57 | .num_resources = ARRAY_SIZE(sh7763rdp_nor_flash_resources), | ||
58 | .dev = { | ||
59 | .platform_data = &sh7763rdp_nor_flash_data, | ||
60 | }, | ||
61 | }; | ||
62 | |||
63 | static struct platform_device *sh7763rdp_devices[] __initdata = { | ||
64 | &sh7763rdp_nor_flash_device, | ||
65 | }; | ||
66 | |||
67 | static int __init sh7763rdp_devices_setup(void) | ||
68 | { | ||
69 | return platform_add_devices(sh7763rdp_devices, | ||
70 | ARRAY_SIZE(sh7763rdp_devices)); | ||
71 | } | ||
72 | __initcall(sh7763rdp_devices_setup); | ||
73 | |||
74 | static void __init sh7763rdp_setup(char **cmdline_p) | ||
75 | { | ||
76 | /* Board version check */ | ||
77 | if (ctrl_inw(CPLD_BOARD_ID_ERV_REG) == 0xECB1) | ||
78 | printk(KERN_INFO "RTE Standard Configuration\n"); | ||
79 | else | ||
80 | printk(KERN_INFO "RTA Standard Configuration\n"); | ||
81 | |||
82 | /* USB pin select bits (clear bit 5-2 to 0) */ | ||
83 | ctrl_outw((ctrl_inw(PORT_PSEL2) & 0xFFC3), PORT_PSEL2); | ||
84 | /* USBH setup port I controls to other (clear bits 4-9 to 0) */ | ||
85 | ctrl_outw(ctrl_inw(PORT_PICR) & 0xFC0F, PORT_PICR); | ||
86 | |||
87 | /* Select USB Host controller */ | ||
88 | ctrl_outw(0x00, USB_USBHSC); | ||
89 | |||
90 | /* For LCD */ | ||
91 | /* set PTJ7-1, bits 15-2 of PJCR to 0 */ | ||
92 | ctrl_outw(ctrl_inw(PORT_PJCR) & 0x0003, PORT_PJCR); | ||
93 | /* set PTI5, bits 11-10 of PICR to 0 */ | ||
94 | ctrl_outw(ctrl_inw(PORT_PICR) & 0xF3FF, PORT_PICR); | ||
95 | ctrl_outw(0, PORT_PKCR); | ||
96 | ctrl_outw(0, PORT_PLCR); | ||
97 | /* set PSEL2 bits 14-8, 5-4, of PSEL2 to 0 */ | ||
98 | ctrl_outw((ctrl_inw(PORT_PSEL2) & 0x00C0), PORT_PSEL2); | ||
99 | /* set PSEL3 bits 14-12, 6-4, 2-0 of PSEL3 to 0 */ | ||
100 | ctrl_outw((ctrl_inw(PORT_PSEL3) & 0x0700), PORT_PSEL3); | ||
101 | |||
102 | /* For HAC */ | ||
103 | /* bit3-0 0100:HAC & SSI1 enable */ | ||
104 | ctrl_outw((ctrl_inw(PORT_PSEL1) & 0xFFF0) | 0x0004, PORT_PSEL1); | ||
105 | /* bit14 1:SSI_HAC_CLK enable */ | ||
106 | ctrl_outw(ctrl_inw(PORT_PSEL4) | 0x4000, PORT_PSEL4); | ||
107 | |||
108 | /* SH-Ether */ | ||
109 | ctrl_outw((ctrl_inw(PORT_PSEL1) & ~0xff00) | 0x2400, PORT_PSEL1); | ||
110 | ctrl_outw(0x0, PORT_PFCR); | ||
111 | ctrl_outw(0x0, PORT_PFCR); | ||
112 | ctrl_outw(0x0, PORT_PFCR); | ||
113 | |||
114 | /* MMC */ | ||
115 | /*selects SCIF and MMC other functions */ | ||
116 | ctrl_outw(0x0001, PORT_PSEL0); | ||
117 | /* MMC clock operates */ | ||
118 | ctrl_outl(ctrl_inl(MSTPCR1) & ~0x8, MSTPCR1); | ||
119 | ctrl_outw(ctrl_inw(PORT_PACR) & ~0x3000, PORT_PACR); | ||
120 | ctrl_outw(ctrl_inw(PORT_PCCR) & ~0xCFC3, PORT_PCCR); | ||
121 | } | ||
122 | |||
123 | static struct sh_machine_vector mv_sh7763rdp __initmv = { | ||
124 | .mv_name = "sh7763drp", | ||
125 | .mv_setup = sh7763rdp_setup, | ||
126 | .mv_nr_irqs = 112, | ||
127 | .mv_init_irq = init_sh7763rdp_IRQ, | ||
128 | }; | ||
diff --git a/arch/sh/boards/renesas/sh7785lcr/Makefile b/arch/sh/boards/renesas/sh7785lcr/Makefile new file mode 100644 index 000000000000..77037567633b --- /dev/null +++ b/arch/sh/boards/renesas/sh7785lcr/Makefile | |||
@@ -0,0 +1 @@ | |||
obj-y := setup.o | |||
diff --git a/arch/sh/boards/renesas/sh7785lcr/setup.c b/arch/sh/boards/renesas/sh7785lcr/setup.c new file mode 100644 index 000000000000..b95d674ee704 --- /dev/null +++ b/arch/sh/boards/renesas/sh7785lcr/setup.c | |||
@@ -0,0 +1,302 @@ | |||
1 | /* | ||
2 | * Renesas Technology Corp. R0P7785LC0011RL Support. | ||
3 | * | ||
4 | * Copyright (C) 2008 Yoshihiro Shimoda | ||
5 | * | ||
6 | * This file is subject to the terms and conditions of the GNU General Public | ||
7 | * License. See the file "COPYING" in the main directory of this archive | ||
8 | * for more details. | ||
9 | */ | ||
10 | |||
11 | #include <linux/init.h> | ||
12 | #include <linux/platform_device.h> | ||
13 | #include <linux/sm501.h> | ||
14 | #include <linux/sm501-regs.h> | ||
15 | #include <linux/fb.h> | ||
16 | #include <linux/mtd/physmap.h> | ||
17 | #include <linux/delay.h> | ||
18 | #include <linux/i2c.h> | ||
19 | #include <linux/i2c-pca-platform.h> | ||
20 | #include <linux/i2c-algo-pca.h> | ||
21 | #include <asm/heartbeat.h> | ||
22 | #include <asm/sh7785lcr.h> | ||
23 | |||
24 | /* | ||
25 | * NOTE: This board has 2 physical memory maps. | ||
26 | * Please look at include/asm-sh/sh7785lcr.h or hardware manual. | ||
27 | */ | ||
28 | static struct resource heartbeat_resources[] = { | ||
29 | [0] = { | ||
30 | .start = PLD_LEDCR, | ||
31 | .end = PLD_LEDCR, | ||
32 | .flags = IORESOURCE_MEM, | ||
33 | }, | ||
34 | }; | ||
35 | |||
36 | static struct heartbeat_data heartbeat_data = { | ||
37 | .regsize = 8, | ||
38 | }; | ||
39 | |||
40 | static struct platform_device heartbeat_device = { | ||
41 | .name = "heartbeat", | ||
42 | .id = -1, | ||
43 | .dev = { | ||
44 | .platform_data = &heartbeat_data, | ||
45 | }, | ||
46 | .num_resources = ARRAY_SIZE(heartbeat_resources), | ||
47 | .resource = heartbeat_resources, | ||
48 | }; | ||
49 | |||
50 | static struct mtd_partition nor_flash_partitions[] = { | ||
51 | { | ||
52 | .name = "loader", | ||
53 | .offset = 0x00000000, | ||
54 | .size = 512 * 1024, | ||
55 | }, | ||
56 | { | ||
57 | .name = "bootenv", | ||
58 | .offset = MTDPART_OFS_APPEND, | ||
59 | .size = 512 * 1024, | ||
60 | }, | ||
61 | { | ||
62 | .name = "kernel", | ||
63 | .offset = MTDPART_OFS_APPEND, | ||
64 | .size = 4 * 1024 * 1024, | ||
65 | }, | ||
66 | { | ||
67 | .name = "data", | ||
68 | .offset = MTDPART_OFS_APPEND, | ||
69 | .size = MTDPART_SIZ_FULL, | ||
70 | }, | ||
71 | }; | ||
72 | |||
73 | static struct physmap_flash_data nor_flash_data = { | ||
74 | .width = 4, | ||
75 | .parts = nor_flash_partitions, | ||
76 | .nr_parts = ARRAY_SIZE(nor_flash_partitions), | ||
77 | }; | ||
78 | |||
79 | static struct resource nor_flash_resources[] = { | ||
80 | [0] = { | ||
81 | .start = NOR_FLASH_ADDR, | ||
82 | .end = NOR_FLASH_ADDR + NOR_FLASH_SIZE - 1, | ||
83 | .flags = IORESOURCE_MEM, | ||
84 | } | ||
85 | }; | ||
86 | |||
87 | static struct platform_device nor_flash_device = { | ||
88 | .name = "physmap-flash", | ||
89 | .dev = { | ||
90 | .platform_data = &nor_flash_data, | ||
91 | }, | ||
92 | .num_resources = ARRAY_SIZE(nor_flash_resources), | ||
93 | .resource = nor_flash_resources, | ||
94 | }; | ||
95 | |||
96 | static struct resource r8a66597_usb_host_resources[] = { | ||
97 | [0] = { | ||
98 | .name = "r8a66597_hcd", | ||
99 | .start = R8A66597_ADDR, | ||
100 | .end = R8A66597_ADDR + R8A66597_SIZE - 1, | ||
101 | .flags = IORESOURCE_MEM, | ||
102 | }, | ||
103 | [1] = { | ||
104 | .name = "r8a66597_hcd", | ||
105 | .start = 2, | ||
106 | .end = 2, | ||
107 | .flags = IORESOURCE_IRQ, | ||
108 | }, | ||
109 | }; | ||
110 | |||
111 | static struct platform_device r8a66597_usb_host_device = { | ||
112 | .name = "r8a66597_hcd", | ||
113 | .id = -1, | ||
114 | .dev = { | ||
115 | .dma_mask = NULL, | ||
116 | .coherent_dma_mask = 0xffffffff, | ||
117 | }, | ||
118 | .num_resources = ARRAY_SIZE(r8a66597_usb_host_resources), | ||
119 | .resource = r8a66597_usb_host_resources, | ||
120 | }; | ||
121 | |||
122 | static struct resource sm501_resources[] = { | ||
123 | [0] = { | ||
124 | .start = SM107_MEM_ADDR, | ||
125 | .end = SM107_MEM_ADDR + SM107_MEM_SIZE - 1, | ||
126 | .flags = IORESOURCE_MEM, | ||
127 | }, | ||
128 | [1] = { | ||
129 | .start = SM107_REG_ADDR, | ||
130 | .end = SM107_REG_ADDR + SM107_REG_SIZE - 1, | ||
131 | .flags = IORESOURCE_MEM, | ||
132 | }, | ||
133 | [2] = { | ||
134 | .start = 10, | ||
135 | .flags = IORESOURCE_IRQ, | ||
136 | }, | ||
137 | }; | ||
138 | |||
139 | static struct fb_videomode sm501_default_mode_crt = { | ||
140 | .pixclock = 35714, /* 28MHz */ | ||
141 | .xres = 640, | ||
142 | .yres = 480, | ||
143 | .left_margin = 105, | ||
144 | .right_margin = 16, | ||
145 | .upper_margin = 33, | ||
146 | .lower_margin = 10, | ||
147 | .hsync_len = 39, | ||
148 | .vsync_len = 2, | ||
149 | .sync = FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT, | ||
150 | }; | ||
151 | |||
152 | static struct fb_videomode sm501_default_mode_pnl = { | ||
153 | .pixclock = 40000, /* 25MHz */ | ||
154 | .xres = 640, | ||
155 | .yres = 480, | ||
156 | .left_margin = 2, | ||
157 | .right_margin = 16, | ||
158 | .upper_margin = 33, | ||
159 | .lower_margin = 10, | ||
160 | .hsync_len = 39, | ||
161 | .vsync_len = 2, | ||
162 | .sync = 0, | ||
163 | }; | ||
164 | |||
165 | static struct sm501_platdata_fbsub sm501_pdata_fbsub_pnl = { | ||
166 | .def_bpp = 16, | ||
167 | .def_mode = &sm501_default_mode_pnl, | ||
168 | .flags = SM501FB_FLAG_USE_INIT_MODE | | ||
169 | SM501FB_FLAG_USE_HWCURSOR | | ||
170 | SM501FB_FLAG_USE_HWACCEL | | ||
171 | SM501FB_FLAG_DISABLE_AT_EXIT | | ||
172 | SM501FB_FLAG_PANEL_NO_VBIASEN, | ||
173 | }; | ||
174 | |||
175 | static struct sm501_platdata_fbsub sm501_pdata_fbsub_crt = { | ||
176 | .def_bpp = 16, | ||
177 | .def_mode = &sm501_default_mode_crt, | ||
178 | .flags = SM501FB_FLAG_USE_INIT_MODE | | ||
179 | SM501FB_FLAG_USE_HWCURSOR | | ||
180 | SM501FB_FLAG_USE_HWACCEL | | ||
181 | SM501FB_FLAG_DISABLE_AT_EXIT, | ||
182 | }; | ||
183 | |||
184 | static struct sm501_platdata_fb sm501_fb_pdata = { | ||
185 | .fb_route = SM501_FB_OWN, | ||
186 | .fb_crt = &sm501_pdata_fbsub_crt, | ||
187 | .fb_pnl = &sm501_pdata_fbsub_pnl, | ||
188 | }; | ||
189 | |||
190 | static struct sm501_initdata sm501_initdata = { | ||
191 | .gpio_high = { | ||
192 | .set = 0x00001fe0, | ||
193 | .mask = 0x0, | ||
194 | }, | ||
195 | .devices = 0, | ||
196 | .mclk = 84 * 1000000, | ||
197 | .m1xclk = 112 * 1000000, | ||
198 | }; | ||
199 | |||
200 | static struct sm501_platdata sm501_platform_data = { | ||
201 | .init = &sm501_initdata, | ||
202 | .fb = &sm501_fb_pdata, | ||
203 | }; | ||
204 | |||
205 | static struct platform_device sm501_device = { | ||
206 | .name = "sm501", | ||
207 | .id = -1, | ||
208 | .dev = { | ||
209 | .platform_data = &sm501_platform_data, | ||
210 | }, | ||
211 | .num_resources = ARRAY_SIZE(sm501_resources), | ||
212 | .resource = sm501_resources, | ||
213 | }; | ||
214 | |||
215 | static struct resource i2c_resources[] = { | ||
216 | [0] = { | ||
217 | .start = PCA9564_ADDR, | ||
218 | .end = PCA9564_ADDR + PCA9564_SIZE - 1, | ||
219 | .flags = IORESOURCE_MEM | IORESOURCE_MEM_8BIT, | ||
220 | }, | ||
221 | [1] = { | ||
222 | .start = 12, | ||
223 | .end = 12, | ||
224 | .flags = IORESOURCE_IRQ, | ||
225 | }, | ||
226 | }; | ||
227 | |||
228 | static struct i2c_pca9564_pf_platform_data i2c_platform_data = { | ||
229 | .gpio = 0, | ||
230 | .i2c_clock_speed = I2C_PCA_CON_330kHz, | ||
231 | .timeout = 100, | ||
232 | }; | ||
233 | |||
234 | static struct platform_device i2c_device = { | ||
235 | .name = "i2c-pca-platform", | ||
236 | .id = -1, | ||
237 | .dev = { | ||
238 | .platform_data = &i2c_platform_data, | ||
239 | }, | ||
240 | .num_resources = ARRAY_SIZE(i2c_resources), | ||
241 | .resource = i2c_resources, | ||
242 | }; | ||
243 | |||
244 | static struct platform_device *sh7785lcr_devices[] __initdata = { | ||
245 | &heartbeat_device, | ||
246 | &nor_flash_device, | ||
247 | &r8a66597_usb_host_device, | ||
248 | &sm501_device, | ||
249 | &i2c_device, | ||
250 | }; | ||
251 | |||
252 | static struct i2c_board_info __initdata sh7785lcr_i2c_devices[] = { | ||
253 | { | ||
254 | I2C_BOARD_INFO("r2025sd", 0x32), | ||
255 | }, | ||
256 | }; | ||
257 | |||
258 | static int __init sh7785lcr_devices_setup(void) | ||
259 | { | ||
260 | i2c_register_board_info(0, sh7785lcr_i2c_devices, | ||
261 | ARRAY_SIZE(sh7785lcr_i2c_devices)); | ||
262 | |||
263 | return platform_add_devices(sh7785lcr_devices, | ||
264 | ARRAY_SIZE(sh7785lcr_devices)); | ||
265 | } | ||
266 | __initcall(sh7785lcr_devices_setup); | ||
267 | |||
268 | /* Initialize IRQ setting */ | ||
269 | void __init init_sh7785lcr_IRQ(void) | ||
270 | { | ||
271 | plat_irq_setup_pins(IRQ_MODE_IRQ7654); | ||
272 | plat_irq_setup_pins(IRQ_MODE_IRQ3210); | ||
273 | } | ||
274 | |||
275 | static void sh7785lcr_power_off(void) | ||
276 | { | ||
277 | ctrl_outb(0x01, P2SEGADDR(PLD_POFCR)); | ||
278 | } | ||
279 | |||
280 | /* Initialize the board */ | ||
281 | static void __init sh7785lcr_setup(char **cmdline_p) | ||
282 | { | ||
283 | void __iomem *sm501_reg; | ||
284 | |||
285 | printk(KERN_INFO "Renesas Technology Corp. R0P7785LC0011RL support.\n"); | ||
286 | |||
287 | pm_power_off = sh7785lcr_power_off; | ||
288 | |||
289 | /* sm501 DRAM configuration */ | ||
290 | sm501_reg = (void __iomem *)0xb3e00000 + SM501_DRAM_CONTROL; | ||
291 | writel(0x000307c2, sm501_reg); | ||
292 | } | ||
293 | |||
294 | /* | ||
295 | * The Machine Vector | ||
296 | */ | ||
297 | static struct sh_machine_vector mv_sh7785lcr __initmv = { | ||
298 | .mv_name = "SH7785LCR", | ||
299 | .mv_setup = sh7785lcr_setup, | ||
300 | .mv_init_irq = init_sh7785lcr_IRQ, | ||
301 | }; | ||
302 | |||
diff --git a/arch/sh/boards/se/7343/irq.c b/arch/sh/boards/se/7343/irq.c index 763f6deba814..1112e86aa93a 100644 --- a/arch/sh/boards/se/7343/irq.c +++ b/arch/sh/boards/se/7343/irq.c | |||
@@ -1,202 +1,80 @@ | |||
1 | /* | 1 | /* |
2 | * arch/sh/boards/se/7343/irq.c | 2 | * linux/arch/sh/boards/se/7343/irq.c |
3 | * | 3 | * |
4 | * Copyright (C) 2008 Yoshihiro Shimoda | ||
5 | * | ||
6 | * Based on linux/arch/sh/boards/se/7722/irq.c | ||
7 | * Copyright (C) 2007 Nobuhiro Iwamatsu | ||
8 | * | ||
9 | * This file is subject to the terms and conditions of the GNU General Public | ||
10 | * License. See the file "COPYING" in the main directory of this archive | ||
11 | * for more details. | ||
4 | */ | 12 | */ |
5 | #include <linux/init.h> | 13 | #include <linux/init.h> |
6 | #include <linux/interrupt.h> | ||
7 | #include <linux/irq.h> | 14 | #include <linux/irq.h> |
15 | #include <linux/interrupt.h> | ||
8 | #include <asm/irq.h> | 16 | #include <asm/irq.h> |
9 | #include <asm/io.h> | 17 | #include <asm/io.h> |
10 | #include <asm/mach/se7343.h> | 18 | #include <asm/se7343.h> |
11 | 19 | ||
12 | static void | 20 | static void disable_se7343_irq(unsigned int irq) |
13 | disable_intreq_irq(unsigned int irq) | ||
14 | { | 21 | { |
15 | int bit = irq - OFFCHIP_IRQ_BASE; | 22 | unsigned int bit = irq - SE7343_FPGA_IRQ_BASE; |
16 | u16 val; | 23 | ctrl_outw(ctrl_inw(PA_CPLD_IMSK) | 1 << bit, PA_CPLD_IMSK); |
17 | |||
18 | val = ctrl_inw(PA_CPLD_IMSK); | ||
19 | val |= 1 << bit; | ||
20 | ctrl_outw(val, PA_CPLD_IMSK); | ||
21 | } | 24 | } |
22 | 25 | ||
23 | static void | 26 | static void enable_se7343_irq(unsigned int irq) |
24 | enable_intreq_irq(unsigned int irq) | ||
25 | { | 27 | { |
26 | int bit = irq - OFFCHIP_IRQ_BASE; | 28 | unsigned int bit = irq - SE7343_FPGA_IRQ_BASE; |
27 | u16 val; | 29 | ctrl_outw(ctrl_inw(PA_CPLD_IMSK) & ~(1 << bit), PA_CPLD_IMSK); |
28 | |||
29 | val = ctrl_inw(PA_CPLD_IMSK); | ||
30 | val &= ~(1 << bit); | ||
31 | ctrl_outw(val, PA_CPLD_IMSK); | ||
32 | } | 30 | } |
33 | 31 | ||
34 | static void | 32 | static struct irq_chip se7343_irq_chip __read_mostly = { |
35 | mask_and_ack_intreq_irq(unsigned int irq) | 33 | .name = "SE7343-FPGA", |
36 | { | 34 | .mask = disable_se7343_irq, |
37 | disable_intreq_irq(irq); | 35 | .unmask = enable_se7343_irq, |
38 | } | 36 | .mask_ack = disable_se7343_irq, |
39 | |||
40 | static unsigned int | ||
41 | startup_intreq_irq(unsigned int irq) | ||
42 | { | ||
43 | enable_intreq_irq(irq); | ||
44 | return 0; | ||
45 | } | ||
46 | |||
47 | static void | ||
48 | shutdown_intreq_irq(unsigned int irq) | ||
49 | { | ||
50 | disable_intreq_irq(irq); | ||
51 | } | ||
52 | |||
53 | static void | ||
54 | end_intreq_irq(unsigned int irq) | ||
55 | { | ||
56 | if (!(irq_desc[irq].status & (IRQ_DISABLED | IRQ_INPROGRESS))) | ||
57 | enable_intreq_irq(irq); | ||
58 | } | ||
59 | |||
60 | static struct hw_interrupt_type intreq_irq_type = { | ||
61 | .typename = "FPGA-IRQ", | ||
62 | .startup = startup_intreq_irq, | ||
63 | .shutdown = shutdown_intreq_irq, | ||
64 | .enable = enable_intreq_irq, | ||
65 | .disable = disable_intreq_irq, | ||
66 | .ack = mask_and_ack_intreq_irq, | ||
67 | .end = end_intreq_irq | ||
68 | }; | 37 | }; |
69 | 38 | ||
70 | static void | 39 | static void se7343_irq_demux(unsigned int irq, struct irq_desc *desc) |
71 | make_intreq_irq(unsigned int irq) | ||
72 | { | ||
73 | disable_irq_nosync(irq); | ||
74 | irq_desc[irq].chip = &intreq_irq_type; | ||
75 | disable_intreq_irq(irq); | ||
76 | } | ||
77 | |||
78 | int | ||
79 | shmse_irq_demux(int irq) | ||
80 | { | 40 | { |
81 | int bit; | 41 | unsigned short intv = ctrl_inw(PA_CPLD_ST); |
82 | volatile u16 val; | 42 | struct irq_desc *ext_desc; |
83 | 43 | unsigned int ext_irq = SE7343_FPGA_IRQ_BASE; | |
84 | if (irq == IRQ5_IRQ) { | 44 | |
85 | /* Read status Register */ | 45 | intv &= (1 << SE7343_FPGA_IRQ_NR) - 1; |
86 | val = ctrl_inw(PA_CPLD_ST); | 46 | |
87 | bit = ffs(val); | 47 | while (intv) { |
88 | if (bit != 0) | 48 | if (intv & 1) { |
89 | return OFFCHIP_IRQ_BASE + bit - 1; | 49 | ext_desc = irq_desc + ext_irq; |
50 | handle_level_irq(ext_irq, ext_desc); | ||
51 | } | ||
52 | intv >>= 1; | ||
53 | ext_irq++; | ||
90 | } | 54 | } |
91 | return irq; | ||
92 | } | 55 | } |
93 | 56 | ||
94 | /* IRQ5 is multiplexed between the following sources: | ||
95 | * 1. PC Card socket | ||
96 | * 2. Extension slot | ||
97 | * 3. USB Controller | ||
98 | * 4. Serial Controller | ||
99 | * | ||
100 | * We configure IRQ5 as a cascade IRQ. | ||
101 | */ | ||
102 | static struct irqaction irq5 = { | ||
103 | .handler = no_action, | ||
104 | .mask = CPU_MASK_NONE, | ||
105 | .name = "IRQ5-cascade", | ||
106 | }; | ||
107 | |||
108 | static struct ipr_data se7343_irq5_ipr_map[] = { | ||
109 | { IRQ5_IRQ, IRQ5_IPR_ADDR+2, IRQ5_IPR_POS, IRQ5_PRIORITY }, | ||
110 | }; | ||
111 | static struct ipr_data se7343_siof0_vpu_ipr_map[] = { | ||
112 | { SIOF0_IRQ, SIOF0_IPR_ADDR, SIOF0_IPR_POS, SIOF0_PRIORITY }, | ||
113 | { VPU_IRQ, VPU_IPR_ADDR, VPU_IPR_POS, 8 }, | ||
114 | }; | ||
115 | static struct ipr_data se7343_other_ipr_map[] = { | ||
116 | { DMTE0_IRQ, DMA1_IPR_ADDR, DMA1_IPR_POS, DMA1_PRIORITY }, | ||
117 | { DMTE1_IRQ, DMA1_IPR_ADDR, DMA1_IPR_POS, DMA1_PRIORITY }, | ||
118 | { DMTE2_IRQ, DMA1_IPR_ADDR, DMA1_IPR_POS, DMA1_PRIORITY }, | ||
119 | { DMTE3_IRQ, DMA1_IPR_ADDR, DMA1_IPR_POS, DMA1_PRIORITY }, | ||
120 | { DMTE4_IRQ, DMA2_IPR_ADDR, DMA2_IPR_POS, DMA2_PRIORITY }, | ||
121 | { DMTE5_IRQ, DMA2_IPR_ADDR, DMA2_IPR_POS, DMA2_PRIORITY }, | ||
122 | |||
123 | /* I2C block */ | ||
124 | { IIC0_ALI_IRQ, IIC0_IPR_ADDR, IIC0_IPR_POS, IIC0_PRIORITY }, | ||
125 | { IIC0_TACKI_IRQ, IIC0_IPR_ADDR, IIC0_IPR_POS, IIC0_PRIORITY }, | ||
126 | { IIC0_WAITI_IRQ, IIC0_IPR_ADDR, IIC0_IPR_POS, IIC0_PRIORITY }, | ||
127 | { IIC0_DTEI_IRQ, IIC0_IPR_ADDR, IIC0_IPR_POS, IIC0_PRIORITY }, | ||
128 | |||
129 | { IIC1_ALI_IRQ, IIC1_IPR_ADDR, IIC1_IPR_POS, IIC1_PRIORITY }, | ||
130 | { IIC1_TACKI_IRQ, IIC1_IPR_ADDR, IIC1_IPR_POS, IIC1_PRIORITY }, | ||
131 | { IIC1_WAITI_IRQ, IIC1_IPR_ADDR, IIC1_IPR_POS, IIC1_PRIORITY }, | ||
132 | { IIC1_DTEI_IRQ, IIC1_IPR_ADDR, IIC1_IPR_POS, IIC1_PRIORITY }, | ||
133 | |||
134 | /* SIOF */ | ||
135 | { SIOF0_IRQ, SIOF0_IPR_ADDR, SIOF0_IPR_POS, SIOF0_PRIORITY }, | ||
136 | |||
137 | /* SIU */ | ||
138 | { SIU_IRQ, SIU_IPR_ADDR, SIU_IPR_POS, SIU_PRIORITY }, | ||
139 | |||
140 | /* VIO interrupt */ | ||
141 | { CEU_IRQ, VIO_IPR_ADDR, VIO_IPR_POS, VIO_PRIORITY }, | ||
142 | { BEU_IRQ, VIO_IPR_ADDR, VIO_IPR_POS, VIO_PRIORITY }, | ||
143 | { VEU_IRQ, VIO_IPR_ADDR, VIO_IPR_POS, VIO_PRIORITY }, | ||
144 | |||
145 | /*MFI interrupt*/ | ||
146 | |||
147 | { MFI_IRQ, MFI_IPR_ADDR, MFI_IPR_POS, MFI_PRIORITY }, | ||
148 | |||
149 | /* LCD controller */ | ||
150 | { LCDC_IRQ, LCDC_IPR_ADDR, LCDC_IPR_POS, LCDC_PRIORITY }, | ||
151 | }; | ||
152 | |||
153 | /* | 57 | /* |
154 | * Initialize IRQ setting | 58 | * Initialize IRQ setting |
155 | */ | 59 | */ |
156 | void __init | 60 | void __init init_7343se_IRQ(void) |
157 | init_7343se_IRQ(void) | ||
158 | { | 61 | { |
159 | /* Setup Multiplexed interrupts */ | 62 | int i; |
160 | ctrl_outw(8, PA_CPLD_MODESET); /* Set all CPLD interrupts to active | 63 | |
161 | * low. | 64 | ctrl_outw(0, PA_CPLD_IMSK); /* disable all irqs */ |
162 | */ | 65 | ctrl_outw(0x2000, 0xb03fffec); /* mrshpc irq enable */ |
163 | /* Mask all CPLD controller interrupts */ | 66 | |
164 | ctrl_outw(0x0fff, PA_CPLD_IMSK); | 67 | for (i = 0; i < SE7343_FPGA_IRQ_NR; i++) |
165 | 68 | set_irq_chip_and_handler_name(SE7343_FPGA_IRQ_BASE + i, | |
166 | /* PC Card interrupts */ | 69 | &se7343_irq_chip, |
167 | make_intreq_irq(PC_IRQ0); | 70 | handle_level_irq, "level"); |
168 | make_intreq_irq(PC_IRQ1); | 71 | |
169 | make_intreq_irq(PC_IRQ2); | 72 | set_irq_chained_handler(IRQ0_IRQ, se7343_irq_demux); |
170 | make_intreq_irq(PC_IRQ3); | 73 | set_irq_type(IRQ0_IRQ, IRQ_TYPE_LEVEL_LOW); |
171 | 74 | set_irq_chained_handler(IRQ1_IRQ, se7343_irq_demux); | |
172 | /* Extension Slot Interrupts */ | 75 | set_irq_type(IRQ1_IRQ, IRQ_TYPE_LEVEL_LOW); |
173 | make_intreq_irq(EXT_IRQ0); | 76 | set_irq_chained_handler(IRQ4_IRQ, se7343_irq_demux); |
174 | make_intreq_irq(EXT_IRQ1); | 77 | set_irq_type(IRQ4_IRQ, IRQ_TYPE_LEVEL_LOW); |
175 | make_intreq_irq(EXT_IRQ2); | 78 | set_irq_chained_handler(IRQ5_IRQ, se7343_irq_demux); |
176 | make_intreq_irq(EXT_IRQ3); | 79 | set_irq_type(IRQ5_IRQ, IRQ_TYPE_LEVEL_LOW); |
177 | |||
178 | /* USB Controller interrupts */ | ||
179 | make_intreq_irq(USB_IRQ0); | ||
180 | make_intreq_irq(USB_IRQ1); | ||
181 | |||
182 | /* Serial Controller interrupts */ | ||
183 | make_intreq_irq(UART_IRQ0); | ||
184 | make_intreq_irq(UART_IRQ1); | ||
185 | |||
186 | /* Setup all external interrupts to be active low */ | ||
187 | ctrl_outw(0xaaaa, INTC_ICR1); | ||
188 | |||
189 | make_ipr_irq(se7343_irq5_ipr_map, ARRAY_SIZE(se7343_irq5_ipr_map)); | ||
190 | |||
191 | setup_irq(IRQ5_IRQ, &irq5); | ||
192 | /* Set port control to use IRQ5 */ | ||
193 | *(u16 *)0xA4050108 &= ~0xc; | ||
194 | |||
195 | make_ipr_irq(se7343_siof0_vpu_ipr_map, ARRAY_SIZE(se7343_siof0_vpu_ipr_map)); | ||
196 | |||
197 | ctrl_outb(0x0f, INTC_IMCR5); /* enable SCIF IRQ */ | ||
198 | |||
199 | make_ipr_irq(se7343_other_ipr_map, ARRAY_SIZE(se7343_other_ipr_map)); | ||
200 | |||
201 | ctrl_outw(0x2000, PA_MRSHPC + 0x0c); /* mrshpc irq enable */ | ||
202 | } | 80 | } |
diff --git a/arch/sh/boards/se/7343/setup.c b/arch/sh/boards/se/7343/setup.c index c9431b3a051b..8ae718d6c710 100644 --- a/arch/sh/boards/se/7343/setup.c +++ b/arch/sh/boards/se/7343/setup.c | |||
@@ -1,10 +1,11 @@ | |||
1 | #include <linux/init.h> | 1 | #include <linux/init.h> |
2 | #include <linux/platform_device.h> | 2 | #include <linux/platform_device.h> |
3 | #include <linux/mtd/physmap.h> | ||
3 | #include <asm/machvec.h> | 4 | #include <asm/machvec.h> |
4 | #include <asm/mach/se7343.h> | 5 | #include <asm/mach/se7343.h> |
6 | #include <asm/heartbeat.h> | ||
5 | #include <asm/irq.h> | 7 | #include <asm/irq.h> |
6 | 8 | #include <asm/io.h> | |
7 | void init_7343se_IRQ(void); | ||
8 | 9 | ||
9 | static struct resource smc91x_resources[] = { | 10 | static struct resource smc91x_resources[] = { |
10 | [0] = { | 11 | [0] = { |
@@ -17,8 +18,8 @@ static struct resource smc91x_resources[] = { | |||
17 | * shared with other devices via externel | 18 | * shared with other devices via externel |
18 | * interrupt controller in FPGA... | 19 | * interrupt controller in FPGA... |
19 | */ | 20 | */ |
20 | .start = EXT_IRQ2, | 21 | .start = SMC_IRQ, |
21 | .end = EXT_IRQ2, | 22 | .end = SMC_IRQ, |
22 | .flags = IORESOURCE_IRQ, | 23 | .flags = IORESOURCE_IRQ, |
23 | }, | 24 | }, |
24 | }; | 25 | }; |
@@ -38,16 +39,65 @@ static struct resource heartbeat_resources[] = { | |||
38 | }, | 39 | }, |
39 | }; | 40 | }; |
40 | 41 | ||
42 | static struct heartbeat_data heartbeat_data = { | ||
43 | .regsize = 16, | ||
44 | }; | ||
45 | |||
41 | static struct platform_device heartbeat_device = { | 46 | static struct platform_device heartbeat_device = { |
42 | .name = "heartbeat", | 47 | .name = "heartbeat", |
43 | .id = -1, | 48 | .id = -1, |
49 | .dev = { | ||
50 | .platform_data = &heartbeat_data, | ||
51 | }, | ||
44 | .num_resources = ARRAY_SIZE(heartbeat_resources), | 52 | .num_resources = ARRAY_SIZE(heartbeat_resources), |
45 | .resource = heartbeat_resources, | 53 | .resource = heartbeat_resources, |
46 | }; | 54 | }; |
47 | 55 | ||
56 | static struct mtd_partition nor_flash_partitions[] = { | ||
57 | { | ||
58 | .name = "loader", | ||
59 | .offset = 0x00000000, | ||
60 | .size = 128 * 1024, | ||
61 | }, | ||
62 | { | ||
63 | .name = "rootfs", | ||
64 | .offset = MTDPART_OFS_APPEND, | ||
65 | .size = 31 * 1024 * 1024, | ||
66 | }, | ||
67 | { | ||
68 | .name = "data", | ||
69 | .offset = MTDPART_OFS_APPEND, | ||
70 | .size = MTDPART_SIZ_FULL, | ||
71 | }, | ||
72 | }; | ||
73 | |||
74 | static struct physmap_flash_data nor_flash_data = { | ||
75 | .width = 2, | ||
76 | .parts = nor_flash_partitions, | ||
77 | .nr_parts = ARRAY_SIZE(nor_flash_partitions), | ||
78 | }; | ||
79 | |||
80 | static struct resource nor_flash_resources[] = { | ||
81 | [0] = { | ||
82 | .start = 0x00000000, | ||
83 | .end = 0x01ffffff, | ||
84 | .flags = IORESOURCE_MEM, | ||
85 | } | ||
86 | }; | ||
87 | |||
88 | static struct platform_device nor_flash_device = { | ||
89 | .name = "physmap-flash", | ||
90 | .dev = { | ||
91 | .platform_data = &nor_flash_data, | ||
92 | }, | ||
93 | .num_resources = ARRAY_SIZE(nor_flash_resources), | ||
94 | .resource = nor_flash_resources, | ||
95 | }; | ||
96 | |||
48 | static struct platform_device *sh7343se_platform_devices[] __initdata = { | 97 | static struct platform_device *sh7343se_platform_devices[] __initdata = { |
49 | &smc91x_device, | 98 | &smc91x_device, |
50 | &heartbeat_device, | 99 | &heartbeat_device, |
100 | &nor_flash_device, | ||
51 | }; | 101 | }; |
52 | 102 | ||
53 | static int __init sh7343se_devices_setup(void) | 103 | static int __init sh7343se_devices_setup(void) |
@@ -55,10 +105,19 @@ static int __init sh7343se_devices_setup(void) | |||
55 | return platform_add_devices(sh7343se_platform_devices, | 105 | return platform_add_devices(sh7343se_platform_devices, |
56 | ARRAY_SIZE(sh7343se_platform_devices)); | 106 | ARRAY_SIZE(sh7343se_platform_devices)); |
57 | } | 107 | } |
108 | device_initcall(sh7343se_devices_setup); | ||
58 | 109 | ||
110 | /* | ||
111 | * Initialize the board | ||
112 | */ | ||
59 | static void __init sh7343se_setup(char **cmdline_p) | 113 | static void __init sh7343se_setup(char **cmdline_p) |
60 | { | 114 | { |
61 | device_initcall(sh7343se_devices_setup); | 115 | ctrl_outw(0xf900, FPGA_OUT); /* FPGA */ |
116 | |||
117 | ctrl_outw(0x0002, PORT_PECR); /* PORT E 1 = IRQ5 */ | ||
118 | ctrl_outw(0x0020, PORT_PSELD); | ||
119 | |||
120 | printk(KERN_INFO "MS7343CP01 Setup...done\n"); | ||
62 | } | 121 | } |
63 | 122 | ||
64 | /* | 123 | /* |
@@ -90,5 +149,4 @@ static struct sh_machine_vector mv_7343se __initmv = { | |||
90 | .mv_outsl = sh7343se_outsl, | 149 | .mv_outsl = sh7343se_outsl, |
91 | 150 | ||
92 | .mv_init_irq = init_7343se_IRQ, | 151 | .mv_init_irq = init_7343se_IRQ, |
93 | .mv_irq_demux = shmse_irq_demux, | ||
94 | }; | 152 | }; |
diff --git a/arch/sh/boards/se/770x/io.c b/arch/sh/boards/se/770x/io.c index c4550473d4c3..b1ec085b8673 100644 --- a/arch/sh/boards/se/770x/io.c +++ b/arch/sh/boards/se/770x/io.c | |||
@@ -1,25 +1,13 @@ | |||
1 | /* $Id: io.c,v 1.7 2006/02/05 21:55:29 lethal Exp $ | 1 | /* |
2 | * | ||
3 | * linux/arch/sh/kernel/io_se.c | ||
4 | * | ||
5 | * Copyright (C) 2000 Kazumoto Kojima | 2 | * Copyright (C) 2000 Kazumoto Kojima |
6 | * | 3 | * |
7 | * I/O routine for Hitachi SolutionEngine. | 4 | * I/O routine for Hitachi SolutionEngine. |
8 | * | ||
9 | */ | 5 | */ |
10 | |||
11 | #include <linux/kernel.h> | 6 | #include <linux/kernel.h> |
12 | #include <linux/types.h> | 7 | #include <linux/types.h> |
13 | #include <asm/io.h> | 8 | #include <asm/io.h> |
14 | #include <asm/se.h> | 9 | #include <asm/se.h> |
15 | 10 | ||
16 | /* SH pcmcia io window base, start and end. */ | ||
17 | int sh_pcic_io_wbase = 0xb8400000; | ||
18 | int sh_pcic_io_start; | ||
19 | int sh_pcic_io_stop; | ||
20 | int sh_pcic_io_type; | ||
21 | int sh_pcic_io_dummy; | ||
22 | |||
23 | /* MS7750 requires special versions of in*, out* routines, since | 11 | /* MS7750 requires special versions of in*, out* routines, since |
24 | PC-like io ports are located at upper half byte of 16-bit word which | 12 | PC-like io ports are located at upper half byte of 16-bit word which |
25 | can be accessed only with 16-bit wide. */ | 13 | can be accessed only with 16-bit wide. */ |
@@ -33,8 +21,6 @@ port2adr(unsigned int port) | |||
33 | return (volatile __u16 *) (PA_MRSHPC + (port - 0x2000)); | 21 | return (volatile __u16 *) (PA_MRSHPC + (port - 0x2000)); |
34 | else if (port >= 0x1000) | 22 | else if (port >= 0x1000) |
35 | return (volatile __u16 *) (PA_83902 + (port << 1)); | 23 | return (volatile __u16 *) (PA_83902 + (port << 1)); |
36 | else if (sh_pcic_io_start <= port && port <= sh_pcic_io_stop) | ||
37 | return (volatile __u16 *) (sh_pcic_io_wbase + (port &~ 1)); | ||
38 | else | 24 | else |
39 | return (volatile __u16 *) (PA_SUPERIO + (port << 1)); | 25 | return (volatile __u16 *) (PA_SUPERIO + (port << 1)); |
40 | } | 26 | } |
@@ -51,32 +37,27 @@ shifted_port(unsigned long port) | |||
51 | 37 | ||
52 | unsigned char se_inb(unsigned long port) | 38 | unsigned char se_inb(unsigned long port) |
53 | { | 39 | { |
54 | if (sh_pcic_io_start <= port && port <= sh_pcic_io_stop) | 40 | if (shifted_port(port)) |
55 | return *(__u8 *) (sh_pcic_io_wbase + 0x40000 + port); | 41 | return (*port2adr(port) >> 8); |
56 | else if (shifted_port(port)) | ||
57 | return (*port2adr(port) >> 8); | ||
58 | else | 42 | else |
59 | return (*port2adr(port))&0xff; | 43 | return (*port2adr(port))&0xff; |
60 | } | 44 | } |
61 | 45 | ||
62 | unsigned char se_inb_p(unsigned long port) | 46 | unsigned char se_inb_p(unsigned long port) |
63 | { | 47 | { |
64 | unsigned long v; | 48 | unsigned long v; |
65 | 49 | ||
66 | if (sh_pcic_io_start <= port && port <= sh_pcic_io_stop) | 50 | if (shifted_port(port)) |
67 | v = *(__u8 *) (sh_pcic_io_wbase + 0x40000 + port); | 51 | v = (*port2adr(port) >> 8); |
68 | else if (shifted_port(port)) | ||
69 | v = (*port2adr(port) >> 8); | ||
70 | else | 52 | else |
71 | v = (*port2adr(port))&0xff; | 53 | v = (*port2adr(port))&0xff; |
72 | ctrl_delay(); | 54 | ctrl_delay(); |
73 | return v; | 55 | return v; |
74 | } | 56 | } |
75 | 57 | ||
76 | unsigned short se_inw(unsigned long port) | 58 | unsigned short se_inw(unsigned long port) |
77 | { | 59 | { |
78 | if (port >= 0x2000 || | 60 | if (port >= 0x2000) |
79 | (sh_pcic_io_start <= port && port <= sh_pcic_io_stop)) | ||
80 | return *port2adr(port); | 61 | return *port2adr(port); |
81 | else | 62 | else |
82 | maybebadio(port); | 63 | maybebadio(port); |
@@ -91,9 +72,7 @@ unsigned int se_inl(unsigned long port) | |||
91 | 72 | ||
92 | void se_outb(unsigned char value, unsigned long port) | 73 | void se_outb(unsigned char value, unsigned long port) |
93 | { | 74 | { |
94 | if (sh_pcic_io_start <= port && port <= sh_pcic_io_stop) | 75 | if (shifted_port(port)) |
95 | *(__u8 *)(sh_pcic_io_wbase + port) = value; | ||
96 | else if (shifted_port(port)) | ||
97 | *(port2adr(port)) = value << 8; | 76 | *(port2adr(port)) = value << 8; |
98 | else | 77 | else |
99 | *(port2adr(port)) = value; | 78 | *(port2adr(port)) = value; |
@@ -101,9 +80,7 @@ void se_outb(unsigned char value, unsigned long port) | |||
101 | 80 | ||
102 | void se_outb_p(unsigned char value, unsigned long port) | 81 | void se_outb_p(unsigned char value, unsigned long port) |
103 | { | 82 | { |
104 | if (sh_pcic_io_start <= port && port <= sh_pcic_io_stop) | 83 | if (shifted_port(port)) |
105 | *(__u8 *)(sh_pcic_io_wbase + port) = value; | ||
106 | else if (shifted_port(port)) | ||
107 | *(port2adr(port)) = value << 8; | 84 | *(port2adr(port)) = value << 8; |
108 | else | 85 | else |
109 | *(port2adr(port)) = value; | 86 | *(port2adr(port)) = value; |
@@ -112,8 +89,7 @@ void se_outb_p(unsigned char value, unsigned long port) | |||
112 | 89 | ||
113 | void se_outw(unsigned short value, unsigned long port) | 90 | void se_outw(unsigned short value, unsigned long port) |
114 | { | 91 | { |
115 | if (port >= 0x2000 || | 92 | if (port >= 0x2000) |
116 | (sh_pcic_io_start <= port && port <= sh_pcic_io_stop)) | ||
117 | *port2adr(port) = value; | 93 | *port2adr(port) = value; |
118 | else | 94 | else |
119 | maybebadio(port); | 95 | maybebadio(port); |
@@ -129,11 +105,7 @@ void se_insb(unsigned long port, void *addr, unsigned long count) | |||
129 | volatile __u16 *p = port2adr(port); | 105 | volatile __u16 *p = port2adr(port); |
130 | __u8 *ap = addr; | 106 | __u8 *ap = addr; |
131 | 107 | ||
132 | if (sh_pcic_io_start <= port && port <= sh_pcic_io_stop) { | 108 | if (shifted_port(port)) { |
133 | volatile __u8 *bp = (__u8 *) (sh_pcic_io_wbase + 0x40000 + port); | ||
134 | while (count--) | ||
135 | *ap++ = *bp; | ||
136 | } else if (shifted_port(port)) { | ||
137 | while (count--) | 109 | while (count--) |
138 | *ap++ = *p >> 8; | 110 | *ap++ = *p >> 8; |
139 | } else { | 111 | } else { |
@@ -160,11 +132,7 @@ void se_outsb(unsigned long port, const void *addr, unsigned long count) | |||
160 | volatile __u16 *p = port2adr(port); | 132 | volatile __u16 *p = port2adr(port); |
161 | const __u8 *ap = addr; | 133 | const __u8 *ap = addr; |
162 | 134 | ||
163 | if (sh_pcic_io_start <= port && port <= sh_pcic_io_stop) { | 135 | if (shifted_port(port)) { |
164 | volatile __u8 *bp = (__u8 *) (sh_pcic_io_wbase + port); | ||
165 | while (count--) | ||
166 | *bp = *ap++; | ||
167 | } else if (shifted_port(port)) { | ||
168 | while (count--) | 136 | while (count--) |
169 | *p = *ap++ << 8; | 137 | *p = *ap++ << 8; |
170 | } else { | 138 | } else { |
@@ -177,6 +145,7 @@ void se_outsw(unsigned long port, const void *addr, unsigned long count) | |||
177 | { | 145 | { |
178 | volatile __u16 *p = port2adr(port); | 146 | volatile __u16 *p = port2adr(port); |
179 | const __u16 *ap = addr; | 147 | const __u16 *ap = addr; |
148 | |||
180 | while (count--) | 149 | while (count--) |
181 | *p = *ap++; | 150 | *p = *ap++; |
182 | } | 151 | } |
diff --git a/arch/sh/boards/se/770x/setup.c b/arch/sh/boards/se/770x/setup.c index 318bc8a3969c..cf4a5ba12df4 100644 --- a/arch/sh/boards/se/770x/setup.c +++ b/arch/sh/boards/se/770x/setup.c | |||
@@ -14,8 +14,6 @@ | |||
14 | #include <asm/smc37c93x.h> | 14 | #include <asm/smc37c93x.h> |
15 | #include <asm/heartbeat.h> | 15 | #include <asm/heartbeat.h> |
16 | 16 | ||
17 | void init_se_IRQ(void); | ||
18 | |||
19 | /* | 17 | /* |
20 | * Configure the Super I/O chip | 18 | * Configure the Super I/O chip |
21 | */ | 19 | */ |
@@ -73,7 +71,7 @@ static struct resource cf_ide_resources[] = { | |||
73 | }, | 71 | }, |
74 | [1] = { | 72 | [1] = { |
75 | .start = PA_MRSHPC_IO + 0x1f0 + 0x206, | 73 | .start = PA_MRSHPC_IO + 0x1f0 + 0x206, |
76 | .end = PA_MRSHPC_IO + 0x1f0 +8 + 0x206 + 8, | 74 | .end = PA_MRSHPC_IO + 0x1f0 + 8 + 0x206 + 8, |
77 | .flags = IORESOURCE_MEM, | 75 | .flags = IORESOURCE_MEM, |
78 | }, | 76 | }, |
79 | [2] = { | 77 | [2] = { |
@@ -115,9 +113,58 @@ static struct platform_device heartbeat_device = { | |||
115 | .resource = heartbeat_resources, | 113 | .resource = heartbeat_resources, |
116 | }; | 114 | }; |
117 | 115 | ||
116 | /* SH771X Ethernet driver */ | ||
117 | static struct resource sh_eth0_resources[] = { | ||
118 | [0] = { | ||
119 | .start = SH_ETH0_BASE, | ||
120 | .end = SH_ETH0_BASE + 0x1B8, | ||
121 | .flags = IORESOURCE_MEM, | ||
122 | }, | ||
123 | [1] = { | ||
124 | .start = SH_ETH0_IRQ, | ||
125 | .end = SH_ETH0_IRQ, | ||
126 | .flags = IORESOURCE_IRQ, | ||
127 | }, | ||
128 | }; | ||
129 | |||
130 | static struct platform_device sh_eth0_device = { | ||
131 | .name = "sh-eth", | ||
132 | .id = 0, | ||
133 | .dev = { | ||
134 | .platform_data = PHY_ID, | ||
135 | }, | ||
136 | .num_resources = ARRAY_SIZE(sh_eth0_resources), | ||
137 | .resource = sh_eth0_resources, | ||
138 | }; | ||
139 | |||
140 | static struct resource sh_eth1_resources[] = { | ||
141 | [0] = { | ||
142 | .start = SH_ETH1_BASE, | ||
143 | .end = SH_ETH1_BASE + 0x1B8, | ||
144 | .flags = IORESOURCE_MEM, | ||
145 | }, | ||
146 | [1] = { | ||
147 | .start = SH_ETH1_IRQ, | ||
148 | .end = SH_ETH1_IRQ, | ||
149 | .flags = IORESOURCE_IRQ, | ||
150 | }, | ||
151 | }; | ||
152 | |||
153 | static struct platform_device sh_eth1_device = { | ||
154 | .name = "sh-eth", | ||
155 | .id = 1, | ||
156 | .dev = { | ||
157 | .platform_data = PHY_ID, | ||
158 | }, | ||
159 | .num_resources = ARRAY_SIZE(sh_eth1_resources), | ||
160 | .resource = sh_eth1_resources, | ||
161 | }; | ||
162 | |||
118 | static struct platform_device *se_devices[] __initdata = { | 163 | static struct platform_device *se_devices[] __initdata = { |
119 | &heartbeat_device, | 164 | &heartbeat_device, |
120 | &cf_ide_device, | 165 | &cf_ide_device, |
166 | &sh_eth0_device, | ||
167 | &sh_eth1_device, | ||
121 | }; | 168 | }; |
122 | 169 | ||
123 | static int __init se_devices_setup(void) | 170 | static int __init se_devices_setup(void) |
diff --git a/arch/sh/boards/se/7722/setup.c b/arch/sh/boards/se/7722/setup.c index ede3957fc14a..6e228ea59788 100644 --- a/arch/sh/boards/se/7722/setup.c +++ b/arch/sh/boards/se/7722/setup.c | |||
@@ -16,6 +16,7 @@ | |||
16 | #include <linux/input.h> | 16 | #include <linux/input.h> |
17 | #include <linux/smc91x.h> | 17 | #include <linux/smc91x.h> |
18 | #include <asm/machvec.h> | 18 | #include <asm/machvec.h> |
19 | #include <asm/clock.h> | ||
19 | #include <asm/se7722.h> | 20 | #include <asm/se7722.h> |
20 | #include <asm/io.h> | 21 | #include <asm/io.h> |
21 | #include <asm/heartbeat.h> | 22 | #include <asm/heartbeat.h> |
@@ -145,6 +146,8 @@ static struct platform_device *se7722_devices[] __initdata = { | |||
145 | 146 | ||
146 | static int __init se7722_devices_setup(void) | 147 | static int __init se7722_devices_setup(void) |
147 | { | 148 | { |
149 | clk_always_enable("mstp214"); /* KEYSC */ | ||
150 | |||
148 | return platform_add_devices(se7722_devices, | 151 | return platform_add_devices(se7722_devices, |
149 | ARRAY_SIZE(se7722_devices)); | 152 | ARRAY_SIZE(se7722_devices)); |
150 | } | 153 | } |
@@ -154,11 +157,6 @@ static void __init se7722_setup(char **cmdline_p) | |||
154 | { | 157 | { |
155 | ctrl_outw(0x010D, FPGA_OUT); /* FPGA */ | 158 | ctrl_outw(0x010D, FPGA_OUT); /* FPGA */ |
156 | 159 | ||
157 | ctrl_outl(0x00051001, MSTPCR0); | ||
158 | ctrl_outl(0x00000000, MSTPCR1); | ||
159 | /* KEYSC, VOU, BEU, CEU, VEU, VPU, LCDC, USB */ | ||
160 | ctrl_outl(0xffffb7c0, MSTPCR2); | ||
161 | |||
162 | ctrl_outw(0x0000, PORT_PECR); /* PORT E 1 = IRQ5 ,E 0 = BS */ | 160 | ctrl_outw(0x0000, PORT_PECR); /* PORT E 1 = IRQ5 ,E 0 = BS */ |
163 | ctrl_outw(0x1000, PORT_PJCR); /* PORT J 1 = IRQ1,J 0 =IRQ0 */ | 161 | ctrl_outw(0x1000, PORT_PJCR); /* PORT J 1 = IRQ1,J 0 =IRQ0 */ |
164 | 162 | ||
diff --git a/arch/sh/boot/Makefile b/arch/sh/boot/Makefile index 89b408620dcb..8b37869a8227 100644 --- a/arch/sh/boot/Makefile +++ b/arch/sh/boot/Makefile | |||
@@ -40,7 +40,7 @@ KERNEL_LOAD := $(shell /bin/bash -c 'printf "0x%08x" \ | |||
40 | KERNEL_ENTRY := $(shell /bin/bash -c 'printf "0x%08x" \ | 40 | KERNEL_ENTRY := $(shell /bin/bash -c 'printf "0x%08x" \ |
41 | $$[$(CONFIG_PAGE_OFFSET) + \ | 41 | $$[$(CONFIG_PAGE_OFFSET) + \ |
42 | $(CONFIG_MEMORY_START) + \ | 42 | $(CONFIG_MEMORY_START) + \ |
43 | $(CONFIG_ZERO_PAGE_OFFSET)+0x1000]') | 43 | $(CONFIG_ZERO_PAGE_OFFSET) + $(CONFIG_ENTRY_OFFSET)]') |
44 | 44 | ||
45 | quiet_cmd_uimage = UIMAGE $@ | 45 | quiet_cmd_uimage = UIMAGE $@ |
46 | cmd_uimage = $(CONFIG_SHELL) $(MKIMAGE) -A sh -O linux -T kernel \ | 46 | cmd_uimage = $(CONFIG_SHELL) $(MKIMAGE) -A sh -O linux -T kernel \ |
diff --git a/arch/sh/boot/compressed/Makefile_32 b/arch/sh/boot/compressed/Makefile_32 index c0d25fb1aa60..47685f618ae7 100644 --- a/arch/sh/boot/compressed/Makefile_32 +++ b/arch/sh/boot/compressed/Makefile_32 | |||
@@ -35,8 +35,7 @@ $(obj)/vmlinux.bin: vmlinux FORCE | |||
35 | $(obj)/vmlinux.bin.gz: $(obj)/vmlinux.bin FORCE | 35 | $(obj)/vmlinux.bin.gz: $(obj)/vmlinux.bin FORCE |
36 | $(call if_changed,gzip) | 36 | $(call if_changed,gzip) |
37 | 37 | ||
38 | LDFLAGS_piggy.o := -r --format binary --oformat elf32-sh-linux -T | ||
39 | OBJCOPYFLAGS += -R .empty_zero_page | 38 | OBJCOPYFLAGS += -R .empty_zero_page |
40 | 39 | ||
41 | $(obj)/piggy.o: $(obj)/vmlinux.scr $(obj)/vmlinux.bin.gz FORCE | 40 | $(obj)/piggy.o: $(obj)/piggy.S $(obj)/vmlinux.bin.gz FORCE |
42 | $(call if_changed,ld) | 41 | $(call if_changed,as_o_S) |
diff --git a/arch/sh/boot/compressed/Makefile_64 b/arch/sh/boot/compressed/Makefile_64 index 912f3e205a0d..658d4f915556 100644 --- a/arch/sh/boot/compressed/Makefile_64 +++ b/arch/sh/boot/compressed/Makefile_64 | |||
@@ -37,8 +37,7 @@ $(obj)/vmlinux.bin: vmlinux FORCE | |||
37 | $(obj)/vmlinux.bin.gz: $(obj)/vmlinux.bin FORCE | 37 | $(obj)/vmlinux.bin.gz: $(obj)/vmlinux.bin FORCE |
38 | $(call if_changed,gzip) | 38 | $(call if_changed,gzip) |
39 | 39 | ||
40 | LDFLAGS_piggy.o := -r --format binary --oformat elf32-sh64-linux -T | ||
41 | OBJCOPYFLAGS += -R .empty_zero_page | 40 | OBJCOPYFLAGS += -R .empty_zero_page |
42 | 41 | ||
43 | $(obj)/piggy.o: $(obj)/vmlinux.scr $(obj)/vmlinux.bin.gz FORCE | 42 | $(obj)/piggy.o: $(obj)/piggy.S $(obj)/vmlinux.bin.gz FORCE |
44 | $(call if_changed,ld) | 43 | $(call if_changed,as_o_S) |
diff --git a/arch/sh/boot/compressed/piggy.S b/arch/sh/boot/compressed/piggy.S new file mode 100644 index 000000000000..566071926b13 --- /dev/null +++ b/arch/sh/boot/compressed/piggy.S | |||
@@ -0,0 +1,8 @@ | |||
1 | .global input_len, input_data | ||
2 | .data | ||
3 | input_len: | ||
4 | .long input_data_end - input_data | ||
5 | input_data: | ||
6 | .incbin "arch/sh/boot/compressed/vmlinux.bin.gz" | ||
7 | input_data_end: | ||
8 | .end | ||
diff --git a/arch/sh/boot/compressed/vmlinux.scr b/arch/sh/boot/compressed/vmlinux.scr deleted file mode 100644 index 1ed9d791f863..000000000000 --- a/arch/sh/boot/compressed/vmlinux.scr +++ /dev/null | |||
@@ -1,9 +0,0 @@ | |||
1 | SECTIONS | ||
2 | { | ||
3 | .data : { | ||
4 | input_len = .; | ||
5 | LONG(input_data_end - input_data) input_data = .; | ||
6 | *(.data) | ||
7 | input_data_end = .; | ||
8 | } | ||
9 | } | ||
diff --git a/arch/sh/configs/ap325rxa_defconfig b/arch/sh/configs/ap325rxa_defconfig new file mode 100644 index 000000000000..5471df53753c --- /dev/null +++ b/arch/sh/configs/ap325rxa_defconfig | |||
@@ -0,0 +1,947 @@ | |||
1 | # | ||
2 | # Automatically generated make config: don't edit | ||
3 | # Linux kernel version: 2.6.26-rc4 | ||
4 | # Wed Jun 4 17:30:00 2008 | ||
5 | # | ||
6 | CONFIG_SUPERH=y | ||
7 | CONFIG_SUPERH32=y | ||
8 | CONFIG_RWSEM_GENERIC_SPINLOCK=y | ||
9 | CONFIG_GENERIC_BUG=y | ||
10 | CONFIG_GENERIC_FIND_NEXT_BIT=y | ||
11 | CONFIG_GENERIC_HWEIGHT=y | ||
12 | CONFIG_GENERIC_HARDIRQS=y | ||
13 | CONFIG_GENERIC_IRQ_PROBE=y | ||
14 | CONFIG_GENERIC_CALIBRATE_DELAY=y | ||
15 | CONFIG_GENERIC_TIME=y | ||
16 | CONFIG_GENERIC_CLOCKEVENTS=y | ||
17 | CONFIG_STACKTRACE_SUPPORT=y | ||
18 | CONFIG_LOCKDEP_SUPPORT=y | ||
19 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | ||
20 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | ||
21 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | ||
22 | CONFIG_ARCH_SUPPORTS_AOUT=y | ||
23 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | ||
24 | |||
25 | # | ||
26 | # General setup | ||
27 | # | ||
28 | CONFIG_EXPERIMENTAL=y | ||
29 | CONFIG_BROKEN_ON_SMP=y | ||
30 | CONFIG_LOCK_KERNEL=y | ||
31 | CONFIG_INIT_ENV_ARG_LIMIT=32 | ||
32 | CONFIG_LOCALVERSION="" | ||
33 | # CONFIG_LOCALVERSION_AUTO is not set | ||
34 | CONFIG_SWAP=y | ||
35 | CONFIG_SYSVIPC=y | ||
36 | CONFIG_SYSVIPC_SYSCTL=y | ||
37 | # CONFIG_POSIX_MQUEUE is not set | ||
38 | CONFIG_BSD_PROCESS_ACCT=y | ||
39 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set | ||
40 | # CONFIG_TASKSTATS is not set | ||
41 | # CONFIG_AUDIT is not set | ||
42 | # CONFIG_IKCONFIG is not set | ||
43 | CONFIG_LOG_BUF_SHIFT=14 | ||
44 | # CONFIG_CGROUPS is not set | ||
45 | CONFIG_GROUP_SCHED=y | ||
46 | CONFIG_FAIR_GROUP_SCHED=y | ||
47 | # CONFIG_RT_GROUP_SCHED is not set | ||
48 | CONFIG_USER_SCHED=y | ||
49 | # CONFIG_CGROUP_SCHED is not set | ||
50 | CONFIG_SYSFS_DEPRECATED=y | ||
51 | CONFIG_SYSFS_DEPRECATED_V2=y | ||
52 | # CONFIG_RELAY is not set | ||
53 | # CONFIG_NAMESPACES is not set | ||
54 | # CONFIG_BLK_DEV_INITRD is not set | ||
55 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | ||
56 | CONFIG_SYSCTL=y | ||
57 | CONFIG_EMBEDDED=y | ||
58 | CONFIG_UID16=y | ||
59 | CONFIG_SYSCTL_SYSCALL=y | ||
60 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
61 | # CONFIG_KALLSYMS is not set | ||
62 | CONFIG_HOTPLUG=y | ||
63 | CONFIG_PRINTK=y | ||
64 | CONFIG_BUG=y | ||
65 | CONFIG_ELF_CORE=y | ||
66 | CONFIG_COMPAT_BRK=y | ||
67 | CONFIG_BASE_FULL=y | ||
68 | CONFIG_FUTEX=y | ||
69 | CONFIG_ANON_INODES=y | ||
70 | CONFIG_EPOLL=y | ||
71 | CONFIG_SIGNALFD=y | ||
72 | CONFIG_TIMERFD=y | ||
73 | CONFIG_EVENTFD=y | ||
74 | CONFIG_SHMEM=y | ||
75 | CONFIG_VM_EVENT_COUNTERS=y | ||
76 | CONFIG_SLAB=y | ||
77 | # CONFIG_SLUB is not set | ||
78 | # CONFIG_SLOB is not set | ||
79 | # CONFIG_PROFILING is not set | ||
80 | # CONFIG_MARKERS is not set | ||
81 | CONFIG_HAVE_OPROFILE=y | ||
82 | # CONFIG_HAVE_KPROBES is not set | ||
83 | # CONFIG_HAVE_KRETPROBES is not set | ||
84 | # CONFIG_HAVE_DMA_ATTRS is not set | ||
85 | CONFIG_PROC_PAGE_MONITOR=y | ||
86 | CONFIG_SLABINFO=y | ||
87 | CONFIG_RT_MUTEXES=y | ||
88 | # CONFIG_TINY_SHMEM is not set | ||
89 | CONFIG_BASE_SMALL=0 | ||
90 | CONFIG_MODULES=y | ||
91 | # CONFIG_MODULE_FORCE_LOAD is not set | ||
92 | CONFIG_MODULE_UNLOAD=y | ||
93 | # CONFIG_MODULE_FORCE_UNLOAD is not set | ||
94 | # CONFIG_MODVERSIONS is not set | ||
95 | # CONFIG_MODULE_SRCVERSION_ALL is not set | ||
96 | CONFIG_KMOD=y | ||
97 | CONFIG_BLOCK=y | ||
98 | # CONFIG_LBD is not set | ||
99 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
100 | # CONFIG_LSF is not set | ||
101 | # CONFIG_BLK_DEV_BSG is not set | ||
102 | |||
103 | # | ||
104 | # IO Schedulers | ||
105 | # | ||
106 | CONFIG_IOSCHED_NOOP=y | ||
107 | CONFIG_IOSCHED_AS=y | ||
108 | CONFIG_IOSCHED_DEADLINE=y | ||
109 | CONFIG_IOSCHED_CFQ=y | ||
110 | # CONFIG_DEFAULT_AS is not set | ||
111 | # CONFIG_DEFAULT_DEADLINE is not set | ||
112 | CONFIG_DEFAULT_CFQ=y | ||
113 | # CONFIG_DEFAULT_NOOP is not set | ||
114 | CONFIG_DEFAULT_IOSCHED="cfq" | ||
115 | CONFIG_CLASSIC_RCU=y | ||
116 | |||
117 | # | ||
118 | # System type | ||
119 | # | ||
120 | CONFIG_CPU_SH4=y | ||
121 | CONFIG_CPU_SH4A=y | ||
122 | CONFIG_CPU_SHX2=y | ||
123 | # CONFIG_CPU_SUBTYPE_SH7619 is not set | ||
124 | # CONFIG_CPU_SUBTYPE_SH7203 is not set | ||
125 | # CONFIG_CPU_SUBTYPE_SH7206 is not set | ||
126 | # CONFIG_CPU_SUBTYPE_SH7263 is not set | ||
127 | # CONFIG_CPU_SUBTYPE_MXG is not set | ||
128 | # CONFIG_CPU_SUBTYPE_SH7705 is not set | ||
129 | # CONFIG_CPU_SUBTYPE_SH7706 is not set | ||
130 | # CONFIG_CPU_SUBTYPE_SH7707 is not set | ||
131 | # CONFIG_CPU_SUBTYPE_SH7708 is not set | ||
132 | # CONFIG_CPU_SUBTYPE_SH7709 is not set | ||
133 | # CONFIG_CPU_SUBTYPE_SH7710 is not set | ||
134 | # CONFIG_CPU_SUBTYPE_SH7712 is not set | ||
135 | # CONFIG_CPU_SUBTYPE_SH7720 is not set | ||
136 | # CONFIG_CPU_SUBTYPE_SH7721 is not set | ||
137 | # CONFIG_CPU_SUBTYPE_SH7750 is not set | ||
138 | # CONFIG_CPU_SUBTYPE_SH7091 is not set | ||
139 | # CONFIG_CPU_SUBTYPE_SH7750R is not set | ||
140 | # CONFIG_CPU_SUBTYPE_SH7750S is not set | ||
141 | # CONFIG_CPU_SUBTYPE_SH7751 is not set | ||
142 | # CONFIG_CPU_SUBTYPE_SH7751R is not set | ||
143 | # CONFIG_CPU_SUBTYPE_SH7760 is not set | ||
144 | # CONFIG_CPU_SUBTYPE_SH4_202 is not set | ||
145 | CONFIG_CPU_SUBTYPE_SH7723=y | ||
146 | # CONFIG_CPU_SUBTYPE_SH7763 is not set | ||
147 | # CONFIG_CPU_SUBTYPE_SH7770 is not set | ||
148 | # CONFIG_CPU_SUBTYPE_SH7780 is not set | ||
149 | # CONFIG_CPU_SUBTYPE_SH7785 is not set | ||
150 | # CONFIG_CPU_SUBTYPE_SHX3 is not set | ||
151 | # CONFIG_CPU_SUBTYPE_SH7343 is not set | ||
152 | # CONFIG_CPU_SUBTYPE_SH7722 is not set | ||
153 | # CONFIG_CPU_SUBTYPE_SH7366 is not set | ||
154 | # CONFIG_CPU_SUBTYPE_SH5_101 is not set | ||
155 | # CONFIG_CPU_SUBTYPE_SH5_103 is not set | ||
156 | |||
157 | # | ||
158 | # Memory management options | ||
159 | # | ||
160 | CONFIG_QUICKLIST=y | ||
161 | CONFIG_MMU=y | ||
162 | CONFIG_PAGE_OFFSET=0x80000000 | ||
163 | CONFIG_MEMORY_START=0x08000000 | ||
164 | CONFIG_MEMORY_SIZE=0x08000000 | ||
165 | CONFIG_29BIT=y | ||
166 | # CONFIG_X2TLB is not set | ||
167 | CONFIG_VSYSCALL=y | ||
168 | CONFIG_ARCH_FLATMEM_ENABLE=y | ||
169 | CONFIG_ARCH_SPARSEMEM_ENABLE=y | ||
170 | CONFIG_ARCH_SPARSEMEM_DEFAULT=y | ||
171 | CONFIG_MAX_ACTIVE_REGIONS=1 | ||
172 | CONFIG_ARCH_POPULATES_NODE_MAP=y | ||
173 | CONFIG_ARCH_SELECT_MEMORY_MODEL=y | ||
174 | CONFIG_PAGE_SIZE_4KB=y | ||
175 | # CONFIG_PAGE_SIZE_8KB is not set | ||
176 | # CONFIG_PAGE_SIZE_16KB is not set | ||
177 | # CONFIG_PAGE_SIZE_64KB is not set | ||
178 | CONFIG_SELECT_MEMORY_MODEL=y | ||
179 | CONFIG_FLATMEM_MANUAL=y | ||
180 | # CONFIG_DISCONTIGMEM_MANUAL is not set | ||
181 | # CONFIG_SPARSEMEM_MANUAL is not set | ||
182 | CONFIG_FLATMEM=y | ||
183 | CONFIG_FLAT_NODE_MEM_MAP=y | ||
184 | CONFIG_SPARSEMEM_STATIC=y | ||
185 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | ||
186 | CONFIG_PAGEFLAGS_EXTENDED=y | ||
187 | CONFIG_SPLIT_PTLOCK_CPUS=4 | ||
188 | # CONFIG_RESOURCES_64BIT is not set | ||
189 | CONFIG_ZONE_DMA_FLAG=0 | ||
190 | CONFIG_NR_QUICK=2 | ||
191 | |||
192 | # | ||
193 | # Cache configuration | ||
194 | # | ||
195 | # CONFIG_SH_DIRECT_MAPPED is not set | ||
196 | CONFIG_CACHE_WRITEBACK=y | ||
197 | # CONFIG_CACHE_WRITETHROUGH is not set | ||
198 | # CONFIG_CACHE_OFF is not set | ||
199 | |||
200 | # | ||
201 | # Processor features | ||
202 | # | ||
203 | CONFIG_CPU_LITTLE_ENDIAN=y | ||
204 | # CONFIG_CPU_BIG_ENDIAN is not set | ||
205 | CONFIG_SH_FPU=y | ||
206 | # CONFIG_SH_STORE_QUEUES is not set | ||
207 | CONFIG_CPU_HAS_INTEVT=y | ||
208 | CONFIG_CPU_HAS_SR_RB=y | ||
209 | CONFIG_CPU_HAS_PTEA=y | ||
210 | CONFIG_CPU_HAS_FPU=y | ||
211 | |||
212 | # | ||
213 | # Board support | ||
214 | # | ||
215 | CONFIG_SH_AP325RXA=y | ||
216 | |||
217 | # | ||
218 | # Timer and clock configuration | ||
219 | # | ||
220 | CONFIG_SH_TMU=y | ||
221 | CONFIG_SH_TIMER_IRQ=16 | ||
222 | CONFIG_SH_PCLK_FREQ=33333333 | ||
223 | CONFIG_TICK_ONESHOT=y | ||
224 | # CONFIG_NO_HZ is not set | ||
225 | CONFIG_HIGH_RES_TIMERS=y | ||
226 | CONFIG_GENERIC_CLOCKEVENTS_BUILD=y | ||
227 | |||
228 | # | ||
229 | # CPU Frequency scaling | ||
230 | # | ||
231 | # CONFIG_CPU_FREQ is not set | ||
232 | |||
233 | # | ||
234 | # DMA support | ||
235 | # | ||
236 | # CONFIG_SH_DMA is not set | ||
237 | |||
238 | # | ||
239 | # Companion Chips | ||
240 | # | ||
241 | |||
242 | # | ||
243 | # Additional SuperH Device Drivers | ||
244 | # | ||
245 | # CONFIG_HEARTBEAT is not set | ||
246 | # CONFIG_PUSH_SWITCH is not set | ||
247 | |||
248 | # | ||
249 | # Kernel features | ||
250 | # | ||
251 | # CONFIG_HZ_100 is not set | ||
252 | CONFIG_HZ_250=y | ||
253 | # CONFIG_HZ_300 is not set | ||
254 | # CONFIG_HZ_1000 is not set | ||
255 | CONFIG_HZ=250 | ||
256 | # CONFIG_SCHED_HRTICK is not set | ||
257 | # CONFIG_KEXEC is not set | ||
258 | # CONFIG_CRASH_DUMP is not set | ||
259 | # CONFIG_PREEMPT_NONE is not set | ||
260 | # CONFIG_PREEMPT_VOLUNTARY is not set | ||
261 | CONFIG_PREEMPT=y | ||
262 | # CONFIG_PREEMPT_RCU is not set | ||
263 | CONFIG_GUSA=y | ||
264 | |||
265 | # | ||
266 | # Boot options | ||
267 | # | ||
268 | CONFIG_ZERO_PAGE_OFFSET=0x00001000 | ||
269 | CONFIG_BOOT_LINK_OFFSET=0x00800000 | ||
270 | CONFIG_CMDLINE_BOOL=y | ||
271 | CONFIG_CMDLINE="console=tty1 console=ttySC5,38400 root=/dev/nfs ip=dhcp" | ||
272 | |||
273 | # | ||
274 | # Bus options | ||
275 | # | ||
276 | # CONFIG_ARCH_SUPPORTS_MSI is not set | ||
277 | # CONFIG_PCCARD is not set | ||
278 | |||
279 | # | ||
280 | # Executable file formats | ||
281 | # | ||
282 | CONFIG_BINFMT_ELF=y | ||
283 | # CONFIG_BINFMT_MISC is not set | ||
284 | |||
285 | # | ||
286 | # Networking | ||
287 | # | ||
288 | CONFIG_NET=y | ||
289 | |||
290 | # | ||
291 | # Networking options | ||
292 | # | ||
293 | CONFIG_PACKET=y | ||
294 | # CONFIG_PACKET_MMAP is not set | ||
295 | CONFIG_UNIX=y | ||
296 | # CONFIG_NET_KEY is not set | ||
297 | CONFIG_INET=y | ||
298 | # CONFIG_IP_MULTICAST is not set | ||
299 | CONFIG_IP_ADVANCED_ROUTER=y | ||
300 | CONFIG_ASK_IP_FIB_HASH=y | ||
301 | # CONFIG_IP_FIB_TRIE is not set | ||
302 | CONFIG_IP_FIB_HASH=y | ||
303 | # CONFIG_IP_MULTIPLE_TABLES is not set | ||
304 | # CONFIG_IP_ROUTE_MULTIPATH is not set | ||
305 | # CONFIG_IP_ROUTE_VERBOSE is not set | ||
306 | CONFIG_IP_PNP=y | ||
307 | CONFIG_IP_PNP_DHCP=y | ||
308 | # CONFIG_IP_PNP_BOOTP is not set | ||
309 | # CONFIG_IP_PNP_RARP is not set | ||
310 | # CONFIG_NET_IPIP is not set | ||
311 | # CONFIG_NET_IPGRE is not set | ||
312 | # CONFIG_ARPD is not set | ||
313 | # CONFIG_SYN_COOKIES is not set | ||
314 | # CONFIG_INET_AH is not set | ||
315 | # CONFIG_INET_ESP is not set | ||
316 | # CONFIG_INET_IPCOMP is not set | ||
317 | # CONFIG_INET_XFRM_TUNNEL is not set | ||
318 | # CONFIG_INET_TUNNEL is not set | ||
319 | # CONFIG_INET_XFRM_MODE_TRANSPORT is not set | ||
320 | # CONFIG_INET_XFRM_MODE_TUNNEL is not set | ||
321 | # CONFIG_INET_XFRM_MODE_BEET is not set | ||
322 | # CONFIG_INET_LRO is not set | ||
323 | CONFIG_INET_DIAG=y | ||
324 | CONFIG_INET_TCP_DIAG=y | ||
325 | # CONFIG_TCP_CONG_ADVANCED is not set | ||
326 | CONFIG_TCP_CONG_CUBIC=y | ||
327 | CONFIG_DEFAULT_TCP_CONG="cubic" | ||
328 | # CONFIG_TCP_MD5SIG is not set | ||
329 | # CONFIG_IPV6 is not set | ||
330 | # CONFIG_NETWORK_SECMARK is not set | ||
331 | # CONFIG_NETFILTER is not set | ||
332 | # CONFIG_IP_DCCP is not set | ||
333 | # CONFIG_IP_SCTP is not set | ||
334 | # CONFIG_TIPC is not set | ||
335 | # CONFIG_ATM is not set | ||
336 | # CONFIG_BRIDGE is not set | ||
337 | # CONFIG_VLAN_8021Q is not set | ||
338 | # CONFIG_DECNET is not set | ||
339 | # CONFIG_LLC2 is not set | ||
340 | # CONFIG_IPX is not set | ||
341 | # CONFIG_ATALK is not set | ||
342 | # CONFIG_X25 is not set | ||
343 | # CONFIG_LAPB is not set | ||
344 | # CONFIG_ECONET is not set | ||
345 | # CONFIG_WAN_ROUTER is not set | ||
346 | # CONFIG_NET_SCHED is not set | ||
347 | |||
348 | # | ||
349 | # Network testing | ||
350 | # | ||
351 | # CONFIG_NET_PKTGEN is not set | ||
352 | # CONFIG_HAMRADIO is not set | ||
353 | # CONFIG_CAN is not set | ||
354 | # CONFIG_IRDA is not set | ||
355 | # CONFIG_BT is not set | ||
356 | # CONFIG_AF_RXRPC is not set | ||
357 | |||
358 | # | ||
359 | # Wireless | ||
360 | # | ||
361 | # CONFIG_CFG80211 is not set | ||
362 | # CONFIG_WIRELESS_EXT is not set | ||
363 | # CONFIG_MAC80211 is not set | ||
364 | # CONFIG_IEEE80211 is not set | ||
365 | # CONFIG_RFKILL is not set | ||
366 | # CONFIG_NET_9P is not set | ||
367 | |||
368 | # | ||
369 | # Device Drivers | ||
370 | # | ||
371 | |||
372 | # | ||
373 | # Generic Driver Options | ||
374 | # | ||
375 | CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" | ||
376 | CONFIG_STANDALONE=y | ||
377 | CONFIG_PREVENT_FIRMWARE_BUILD=y | ||
378 | CONFIG_FW_LOADER=y | ||
379 | # CONFIG_SYS_HYPERVISOR is not set | ||
380 | # CONFIG_CONNECTOR is not set | ||
381 | CONFIG_MTD=y | ||
382 | # CONFIG_MTD_DEBUG is not set | ||
383 | CONFIG_MTD_CONCAT=y | ||
384 | CONFIG_MTD_PARTITIONS=y | ||
385 | # CONFIG_MTD_REDBOOT_PARTS is not set | ||
386 | CONFIG_MTD_CMDLINE_PARTS=y | ||
387 | # CONFIG_MTD_AR7_PARTS is not set | ||
388 | |||
389 | # | ||
390 | # User Modules And Translation Layers | ||
391 | # | ||
392 | CONFIG_MTD_CHAR=y | ||
393 | CONFIG_MTD_BLKDEVS=y | ||
394 | CONFIG_MTD_BLOCK=y | ||
395 | # CONFIG_FTL is not set | ||
396 | # CONFIG_NFTL is not set | ||
397 | # CONFIG_INFTL is not set | ||
398 | # CONFIG_RFD_FTL is not set | ||
399 | # CONFIG_SSFDC is not set | ||
400 | # CONFIG_MTD_OOPS is not set | ||
401 | |||
402 | # | ||
403 | # RAM/ROM/Flash chip drivers | ||
404 | # | ||
405 | CONFIG_MTD_CFI=y | ||
406 | # CONFIG_MTD_JEDECPROBE is not set | ||
407 | CONFIG_MTD_GEN_PROBE=y | ||
408 | # CONFIG_MTD_CFI_ADV_OPTIONS is not set | ||
409 | CONFIG_MTD_MAP_BANK_WIDTH_1=y | ||
410 | CONFIG_MTD_MAP_BANK_WIDTH_2=y | ||
411 | CONFIG_MTD_MAP_BANK_WIDTH_4=y | ||
412 | # CONFIG_MTD_MAP_BANK_WIDTH_8 is not set | ||
413 | # CONFIG_MTD_MAP_BANK_WIDTH_16 is not set | ||
414 | # CONFIG_MTD_MAP_BANK_WIDTH_32 is not set | ||
415 | CONFIG_MTD_CFI_I1=y | ||
416 | CONFIG_MTD_CFI_I2=y | ||
417 | # CONFIG_MTD_CFI_I4 is not set | ||
418 | # CONFIG_MTD_CFI_I8 is not set | ||
419 | # CONFIG_MTD_CFI_INTELEXT is not set | ||
420 | CONFIG_MTD_CFI_AMDSTD=y | ||
421 | # CONFIG_MTD_CFI_STAA is not set | ||
422 | CONFIG_MTD_CFI_UTIL=y | ||
423 | # CONFIG_MTD_RAM is not set | ||
424 | # CONFIG_MTD_ROM is not set | ||
425 | # CONFIG_MTD_ABSENT is not set | ||
426 | |||
427 | # | ||
428 | # Mapping drivers for chip access | ||
429 | # | ||
430 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set | ||
431 | CONFIG_MTD_PHYSMAP=y | ||
432 | CONFIG_MTD_PHYSMAP_START=0xffffffff | ||
433 | CONFIG_MTD_PHYSMAP_LEN=0 | ||
434 | CONFIG_MTD_PHYSMAP_BANKWIDTH=0 | ||
435 | # CONFIG_MTD_PLATRAM is not set | ||
436 | |||
437 | # | ||
438 | # Self-contained MTD device drivers | ||
439 | # | ||
440 | # CONFIG_MTD_SLRAM is not set | ||
441 | # CONFIG_MTD_PHRAM is not set | ||
442 | # CONFIG_MTD_MTDRAM is not set | ||
443 | # CONFIG_MTD_BLOCK2MTD is not set | ||
444 | |||
445 | # | ||
446 | # Disk-On-Chip Device Drivers | ||
447 | # | ||
448 | # CONFIG_MTD_DOC2000 is not set | ||
449 | # CONFIG_MTD_DOC2001 is not set | ||
450 | # CONFIG_MTD_DOC2001PLUS is not set | ||
451 | # CONFIG_MTD_NAND is not set | ||
452 | # CONFIG_MTD_ONENAND is not set | ||
453 | |||
454 | # | ||
455 | # UBI - Unsorted block images | ||
456 | # | ||
457 | # CONFIG_MTD_UBI is not set | ||
458 | # CONFIG_PARPORT is not set | ||
459 | CONFIG_BLK_DEV=y | ||
460 | # CONFIG_BLK_DEV_COW_COMMON is not set | ||
461 | # CONFIG_BLK_DEV_LOOP is not set | ||
462 | # CONFIG_BLK_DEV_NBD is not set | ||
463 | CONFIG_BLK_DEV_RAM=y | ||
464 | CONFIG_BLK_DEV_RAM_COUNT=4 | ||
465 | CONFIG_BLK_DEV_RAM_SIZE=4096 | ||
466 | # CONFIG_BLK_DEV_XIP is not set | ||
467 | # CONFIG_CDROM_PKTCDVD is not set | ||
468 | # CONFIG_ATA_OVER_ETH is not set | ||
469 | CONFIG_MISC_DEVICES=y | ||
470 | # CONFIG_EEPROM_93CX6 is not set | ||
471 | # CONFIG_ENCLOSURE_SERVICES is not set | ||
472 | CONFIG_HAVE_IDE=y | ||
473 | # CONFIG_IDE is not set | ||
474 | |||
475 | # | ||
476 | # SCSI device support | ||
477 | # | ||
478 | # CONFIG_RAID_ATTRS is not set | ||
479 | CONFIG_SCSI=y | ||
480 | CONFIG_SCSI_DMA=y | ||
481 | # CONFIG_SCSI_TGT is not set | ||
482 | # CONFIG_SCSI_NETLINK is not set | ||
483 | CONFIG_SCSI_PROC_FS=y | ||
484 | |||
485 | # | ||
486 | # SCSI support type (disk, tape, CD-ROM) | ||
487 | # | ||
488 | CONFIG_BLK_DEV_SD=y | ||
489 | # CONFIG_CHR_DEV_ST is not set | ||
490 | # CONFIG_CHR_DEV_OSST is not set | ||
491 | # CONFIG_BLK_DEV_SR is not set | ||
492 | # CONFIG_CHR_DEV_SG is not set | ||
493 | # CONFIG_CHR_DEV_SCH is not set | ||
494 | |||
495 | # | ||
496 | # Some SCSI devices (e.g. CD jukebox) support multiple LUNs | ||
497 | # | ||
498 | # CONFIG_SCSI_MULTI_LUN is not set | ||
499 | # CONFIG_SCSI_CONSTANTS is not set | ||
500 | # CONFIG_SCSI_LOGGING is not set | ||
501 | # CONFIG_SCSI_SCAN_ASYNC is not set | ||
502 | CONFIG_SCSI_WAIT_SCAN=m | ||
503 | |||
504 | # | ||
505 | # SCSI Transports | ||
506 | # | ||
507 | # CONFIG_SCSI_SPI_ATTRS is not set | ||
508 | # CONFIG_SCSI_FC_ATTRS is not set | ||
509 | # CONFIG_SCSI_ISCSI_ATTRS is not set | ||
510 | # CONFIG_SCSI_SAS_LIBSAS is not set | ||
511 | # CONFIG_SCSI_SRP_ATTRS is not set | ||
512 | CONFIG_SCSI_LOWLEVEL=y | ||
513 | # CONFIG_ISCSI_TCP is not set | ||
514 | # CONFIG_SCSI_DEBUG is not set | ||
515 | # CONFIG_ATA is not set | ||
516 | # CONFIG_MD is not set | ||
517 | CONFIG_NETDEVICES=y | ||
518 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
519 | # CONFIG_DUMMY is not set | ||
520 | # CONFIG_BONDING is not set | ||
521 | # CONFIG_MACVLAN is not set | ||
522 | # CONFIG_EQUALIZER is not set | ||
523 | # CONFIG_TUN is not set | ||
524 | # CONFIG_VETH is not set | ||
525 | # CONFIG_PHYLIB is not set | ||
526 | CONFIG_NET_ETHERNET=y | ||
527 | CONFIG_MII=y | ||
528 | # CONFIG_AX88796 is not set | ||
529 | # CONFIG_STNIC is not set | ||
530 | # CONFIG_SMC91X is not set | ||
531 | CONFIG_SMC911X=y | ||
532 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | ||
533 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | ||
534 | # CONFIG_IBM_NEW_EMAC_TAH is not set | ||
535 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set | ||
536 | # CONFIG_B44 is not set | ||
537 | # CONFIG_NETDEV_1000 is not set | ||
538 | # CONFIG_NETDEV_10000 is not set | ||
539 | |||
540 | # | ||
541 | # Wireless LAN | ||
542 | # | ||
543 | # CONFIG_WLAN_PRE80211 is not set | ||
544 | # CONFIG_WLAN_80211 is not set | ||
545 | # CONFIG_IWLWIFI_LEDS is not set | ||
546 | # CONFIG_WAN is not set | ||
547 | # CONFIG_PPP is not set | ||
548 | # CONFIG_SLIP is not set | ||
549 | # CONFIG_NETCONSOLE is not set | ||
550 | # CONFIG_NETPOLL is not set | ||
551 | # CONFIG_NET_POLL_CONTROLLER is not set | ||
552 | # CONFIG_ISDN is not set | ||
553 | # CONFIG_PHONE is not set | ||
554 | |||
555 | # | ||
556 | # Input device support | ||
557 | # | ||
558 | CONFIG_INPUT=y | ||
559 | # CONFIG_INPUT_FF_MEMLESS is not set | ||
560 | # CONFIG_INPUT_POLLDEV is not set | ||
561 | |||
562 | # | ||
563 | # Userland interfaces | ||
564 | # | ||
565 | # CONFIG_INPUT_MOUSEDEV is not set | ||
566 | # CONFIG_INPUT_JOYDEV is not set | ||
567 | # CONFIG_INPUT_EVDEV is not set | ||
568 | # CONFIG_INPUT_EVBUG is not set | ||
569 | |||
570 | # | ||
571 | # Input Device Drivers | ||
572 | # | ||
573 | # CONFIG_INPUT_KEYBOARD is not set | ||
574 | # CONFIG_INPUT_MOUSE is not set | ||
575 | # CONFIG_INPUT_JOYSTICK is not set | ||
576 | # CONFIG_INPUT_TABLET is not set | ||
577 | # CONFIG_INPUT_TOUCHSCREEN is not set | ||
578 | # CONFIG_INPUT_MISC is not set | ||
579 | |||
580 | # | ||
581 | # Hardware I/O ports | ||
582 | # | ||
583 | # CONFIG_SERIO is not set | ||
584 | # CONFIG_GAMEPORT is not set | ||
585 | |||
586 | # | ||
587 | # Character devices | ||
588 | # | ||
589 | CONFIG_VT=y | ||
590 | CONFIG_VT_CONSOLE=y | ||
591 | CONFIG_HW_CONSOLE=y | ||
592 | CONFIG_VT_HW_CONSOLE_BINDING=y | ||
593 | CONFIG_DEVKMEM=y | ||
594 | # CONFIG_SERIAL_NONSTANDARD is not set | ||
595 | |||
596 | # | ||
597 | # Serial drivers | ||
598 | # | ||
599 | # CONFIG_SERIAL_8250 is not set | ||
600 | |||
601 | # | ||
602 | # Non-8250 serial port support | ||
603 | # | ||
604 | CONFIG_SERIAL_SH_SCI=y | ||
605 | CONFIG_SERIAL_SH_SCI_NR_UARTS=6 | ||
606 | CONFIG_SERIAL_SH_SCI_CONSOLE=y | ||
607 | CONFIG_SERIAL_CORE=y | ||
608 | CONFIG_SERIAL_CORE_CONSOLE=y | ||
609 | CONFIG_UNIX98_PTYS=y | ||
610 | CONFIG_LEGACY_PTYS=y | ||
611 | CONFIG_LEGACY_PTY_COUNT=256 | ||
612 | # CONFIG_IPMI_HANDLER is not set | ||
613 | CONFIG_HW_RANDOM=y | ||
614 | # CONFIG_R3964 is not set | ||
615 | # CONFIG_RAW_DRIVER is not set | ||
616 | # CONFIG_TCG_TPM is not set | ||
617 | # CONFIG_I2C is not set | ||
618 | # CONFIG_SPI is not set | ||
619 | # CONFIG_W1 is not set | ||
620 | # CONFIG_POWER_SUPPLY is not set | ||
621 | # CONFIG_HWMON is not set | ||
622 | # CONFIG_THERMAL is not set | ||
623 | # CONFIG_WATCHDOG is not set | ||
624 | |||
625 | # | ||
626 | # Sonics Silicon Backplane | ||
627 | # | ||
628 | CONFIG_SSB_POSSIBLE=y | ||
629 | # CONFIG_SSB is not set | ||
630 | |||
631 | # | ||
632 | # Multifunction device drivers | ||
633 | # | ||
634 | # CONFIG_MFD_SM501 is not set | ||
635 | # CONFIG_HTC_PASIC3 is not set | ||
636 | |||
637 | # | ||
638 | # Multimedia devices | ||
639 | # | ||
640 | |||
641 | # | ||
642 | # Multimedia core support | ||
643 | # | ||
644 | # CONFIG_VIDEO_DEV is not set | ||
645 | # CONFIG_DVB_CORE is not set | ||
646 | # CONFIG_VIDEO_MEDIA is not set | ||
647 | |||
648 | # | ||
649 | # Multimedia drivers | ||
650 | # | ||
651 | # CONFIG_DAB is not set | ||
652 | |||
653 | # | ||
654 | # Graphics support | ||
655 | # | ||
656 | # CONFIG_VGASTATE is not set | ||
657 | # CONFIG_VIDEO_OUTPUT_CONTROL is not set | ||
658 | # CONFIG_FB is not set | ||
659 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | ||
660 | |||
661 | # | ||
662 | # Display device support | ||
663 | # | ||
664 | # CONFIG_DISPLAY_SUPPORT is not set | ||
665 | |||
666 | # | ||
667 | # Console display driver support | ||
668 | # | ||
669 | CONFIG_DUMMY_CONSOLE=y | ||
670 | |||
671 | # | ||
672 | # Sound | ||
673 | # | ||
674 | # CONFIG_SOUND is not set | ||
675 | # CONFIG_HID_SUPPORT is not set | ||
676 | # CONFIG_USB_SUPPORT is not set | ||
677 | # CONFIG_MMC is not set | ||
678 | # CONFIG_MEMSTICK is not set | ||
679 | # CONFIG_NEW_LEDS is not set | ||
680 | # CONFIG_ACCESSIBILITY is not set | ||
681 | # CONFIG_RTC_CLASS is not set | ||
682 | # CONFIG_UIO is not set | ||
683 | |||
684 | # | ||
685 | # File systems | ||
686 | # | ||
687 | CONFIG_EXT2_FS=y | ||
688 | CONFIG_EXT2_FS_XATTR=y | ||
689 | CONFIG_EXT2_FS_POSIX_ACL=y | ||
690 | CONFIG_EXT2_FS_SECURITY=y | ||
691 | # CONFIG_EXT2_FS_XIP is not set | ||
692 | CONFIG_EXT3_FS=y | ||
693 | CONFIG_EXT3_FS_XATTR=y | ||
694 | CONFIG_EXT3_FS_POSIX_ACL=y | ||
695 | CONFIG_EXT3_FS_SECURITY=y | ||
696 | # CONFIG_EXT4DEV_FS is not set | ||
697 | CONFIG_JBD=y | ||
698 | CONFIG_FS_MBCACHE=y | ||
699 | # CONFIG_REISERFS_FS is not set | ||
700 | # CONFIG_JFS_FS is not set | ||
701 | CONFIG_FS_POSIX_ACL=y | ||
702 | # CONFIG_XFS_FS is not set | ||
703 | # CONFIG_OCFS2_FS is not set | ||
704 | CONFIG_DNOTIFY=y | ||
705 | CONFIG_INOTIFY=y | ||
706 | CONFIG_INOTIFY_USER=y | ||
707 | # CONFIG_QUOTA is not set | ||
708 | # CONFIG_AUTOFS_FS is not set | ||
709 | # CONFIG_AUTOFS4_FS is not set | ||
710 | # CONFIG_FUSE_FS is not set | ||
711 | |||
712 | # | ||
713 | # CD-ROM/DVD Filesystems | ||
714 | # | ||
715 | # CONFIG_ISO9660_FS is not set | ||
716 | # CONFIG_UDF_FS is not set | ||
717 | |||
718 | # | ||
719 | # DOS/FAT/NT Filesystems | ||
720 | # | ||
721 | CONFIG_FAT_FS=y | ||
722 | # CONFIG_MSDOS_FS is not set | ||
723 | CONFIG_VFAT_FS=y | ||
724 | CONFIG_FAT_DEFAULT_CODEPAGE=437 | ||
725 | CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" | ||
726 | # CONFIG_NTFS_FS is not set | ||
727 | |||
728 | # | ||
729 | # Pseudo filesystems | ||
730 | # | ||
731 | CONFIG_PROC_FS=y | ||
732 | CONFIG_PROC_KCORE=y | ||
733 | CONFIG_PROC_SYSCTL=y | ||
734 | CONFIG_SYSFS=y | ||
735 | CONFIG_TMPFS=y | ||
736 | # CONFIG_TMPFS_POSIX_ACL is not set | ||
737 | # CONFIG_HUGETLBFS is not set | ||
738 | # CONFIG_HUGETLB_PAGE is not set | ||
739 | # CONFIG_CONFIGFS_FS is not set | ||
740 | |||
741 | # | ||
742 | # Miscellaneous filesystems | ||
743 | # | ||
744 | # CONFIG_ADFS_FS is not set | ||
745 | # CONFIG_AFFS_FS is not set | ||
746 | # CONFIG_HFS_FS is not set | ||
747 | # CONFIG_HFSPLUS_FS is not set | ||
748 | # CONFIG_BEFS_FS is not set | ||
749 | # CONFIG_BFS_FS is not set | ||
750 | # CONFIG_EFS_FS is not set | ||
751 | # CONFIG_JFFS2_FS is not set | ||
752 | # CONFIG_CRAMFS is not set | ||
753 | # CONFIG_VXFS_FS is not set | ||
754 | # CONFIG_MINIX_FS is not set | ||
755 | # CONFIG_HPFS_FS is not set | ||
756 | # CONFIG_QNX4FS_FS is not set | ||
757 | # CONFIG_ROMFS_FS is not set | ||
758 | # CONFIG_SYSV_FS is not set | ||
759 | # CONFIG_UFS_FS is not set | ||
760 | CONFIG_NETWORK_FILESYSTEMS=y | ||
761 | CONFIG_NFS_FS=y | ||
762 | CONFIG_NFS_V3=y | ||
763 | # CONFIG_NFS_V3_ACL is not set | ||
764 | # CONFIG_NFS_V4 is not set | ||
765 | CONFIG_NFSD=y | ||
766 | CONFIG_NFSD_V3=y | ||
767 | # CONFIG_NFSD_V3_ACL is not set | ||
768 | # CONFIG_NFSD_V4 is not set | ||
769 | CONFIG_ROOT_NFS=y | ||
770 | CONFIG_LOCKD=y | ||
771 | CONFIG_LOCKD_V4=y | ||
772 | CONFIG_EXPORTFS=y | ||
773 | CONFIG_NFS_COMMON=y | ||
774 | CONFIG_SUNRPC=y | ||
775 | # CONFIG_SUNRPC_BIND34 is not set | ||
776 | # CONFIG_RPCSEC_GSS_KRB5 is not set | ||
777 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | ||
778 | # CONFIG_SMB_FS is not set | ||
779 | # CONFIG_CIFS is not set | ||
780 | # CONFIG_NCP_FS is not set | ||
781 | # CONFIG_CODA_FS is not set | ||
782 | # CONFIG_AFS_FS is not set | ||
783 | |||
784 | # | ||
785 | # Partition Types | ||
786 | # | ||
787 | # CONFIG_PARTITION_ADVANCED is not set | ||
788 | CONFIG_MSDOS_PARTITION=y | ||
789 | CONFIG_NLS=y | ||
790 | CONFIG_NLS_DEFAULT="iso8859-1" | ||
791 | CONFIG_NLS_CODEPAGE_437=y | ||
792 | # CONFIG_NLS_CODEPAGE_737 is not set | ||
793 | # CONFIG_NLS_CODEPAGE_775 is not set | ||
794 | # CONFIG_NLS_CODEPAGE_850 is not set | ||
795 | # CONFIG_NLS_CODEPAGE_852 is not set | ||
796 | # CONFIG_NLS_CODEPAGE_855 is not set | ||
797 | # CONFIG_NLS_CODEPAGE_857 is not set | ||
798 | # CONFIG_NLS_CODEPAGE_860 is not set | ||
799 | # CONFIG_NLS_CODEPAGE_861 is not set | ||
800 | # CONFIG_NLS_CODEPAGE_862 is not set | ||
801 | # CONFIG_NLS_CODEPAGE_863 is not set | ||
802 | # CONFIG_NLS_CODEPAGE_864 is not set | ||
803 | # CONFIG_NLS_CODEPAGE_865 is not set | ||
804 | # CONFIG_NLS_CODEPAGE_866 is not set | ||
805 | # CONFIG_NLS_CODEPAGE_869 is not set | ||
806 | # CONFIG_NLS_CODEPAGE_936 is not set | ||
807 | # CONFIG_NLS_CODEPAGE_950 is not set | ||
808 | CONFIG_NLS_CODEPAGE_932=y | ||
809 | # CONFIG_NLS_CODEPAGE_949 is not set | ||
810 | # CONFIG_NLS_CODEPAGE_874 is not set | ||
811 | # CONFIG_NLS_ISO8859_8 is not set | ||
812 | # CONFIG_NLS_CODEPAGE_1250 is not set | ||
813 | # CONFIG_NLS_CODEPAGE_1251 is not set | ||
814 | # CONFIG_NLS_ASCII is not set | ||
815 | CONFIG_NLS_ISO8859_1=y | ||
816 | # CONFIG_NLS_ISO8859_2 is not set | ||
817 | # CONFIG_NLS_ISO8859_3 is not set | ||
818 | # CONFIG_NLS_ISO8859_4 is not set | ||
819 | # CONFIG_NLS_ISO8859_5 is not set | ||
820 | # CONFIG_NLS_ISO8859_6 is not set | ||
821 | # CONFIG_NLS_ISO8859_7 is not set | ||
822 | # CONFIG_NLS_ISO8859_9 is not set | ||
823 | # CONFIG_NLS_ISO8859_13 is not set | ||
824 | # CONFIG_NLS_ISO8859_14 is not set | ||
825 | # CONFIG_NLS_ISO8859_15 is not set | ||
826 | # CONFIG_NLS_KOI8_R is not set | ||
827 | # CONFIG_NLS_KOI8_U is not set | ||
828 | # CONFIG_NLS_UTF8 is not set | ||
829 | # CONFIG_DLM is not set | ||
830 | |||
831 | # | ||
832 | # Kernel hacking | ||
833 | # | ||
834 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y | ||
835 | # CONFIG_PRINTK_TIME is not set | ||
836 | CONFIG_ENABLE_WARN_DEPRECATED=y | ||
837 | # CONFIG_ENABLE_MUST_CHECK is not set | ||
838 | CONFIG_FRAME_WARN=1024 | ||
839 | # CONFIG_MAGIC_SYSRQ is not set | ||
840 | # CONFIG_UNUSED_SYMBOLS is not set | ||
841 | # CONFIG_DEBUG_FS is not set | ||
842 | # CONFIG_HEADERS_CHECK is not set | ||
843 | # CONFIG_DEBUG_KERNEL is not set | ||
844 | # CONFIG_DEBUG_BUGVERBOSE is not set | ||
845 | # CONFIG_SAMPLES is not set | ||
846 | # CONFIG_SH_STANDARD_BIOS is not set | ||
847 | # CONFIG_EARLY_SCIF_CONSOLE is not set | ||
848 | # CONFIG_SH_KGDB is not set | ||
849 | |||
850 | # | ||
851 | # Security options | ||
852 | # | ||
853 | # CONFIG_KEYS is not set | ||
854 | # CONFIG_SECURITY is not set | ||
855 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | ||
856 | CONFIG_CRYPTO=y | ||
857 | |||
858 | # | ||
859 | # Crypto core or helper | ||
860 | # | ||
861 | CONFIG_CRYPTO_ALGAPI=y | ||
862 | CONFIG_CRYPTO_BLKCIPHER=y | ||
863 | CONFIG_CRYPTO_MANAGER=y | ||
864 | # CONFIG_CRYPTO_GF128MUL is not set | ||
865 | # CONFIG_CRYPTO_NULL is not set | ||
866 | # CONFIG_CRYPTO_CRYPTD is not set | ||
867 | # CONFIG_CRYPTO_AUTHENC is not set | ||
868 | # CONFIG_CRYPTO_TEST is not set | ||
869 | |||
870 | # | ||
871 | # Authenticated Encryption with Associated Data | ||
872 | # | ||
873 | # CONFIG_CRYPTO_CCM is not set | ||
874 | # CONFIG_CRYPTO_GCM is not set | ||
875 | # CONFIG_CRYPTO_SEQIV is not set | ||
876 | |||
877 | # | ||
878 | # Block modes | ||
879 | # | ||
880 | CONFIG_CRYPTO_CBC=y | ||
881 | # CONFIG_CRYPTO_CTR is not set | ||
882 | # CONFIG_CRYPTO_CTS is not set | ||
883 | # CONFIG_CRYPTO_ECB is not set | ||
884 | # CONFIG_CRYPTO_LRW is not set | ||
885 | # CONFIG_CRYPTO_PCBC is not set | ||
886 | # CONFIG_CRYPTO_XTS is not set | ||
887 | |||
888 | # | ||
889 | # Hash modes | ||
890 | # | ||
891 | # CONFIG_CRYPTO_HMAC is not set | ||
892 | # CONFIG_CRYPTO_XCBC is not set | ||
893 | |||
894 | # | ||
895 | # Digest | ||
896 | # | ||
897 | # CONFIG_CRYPTO_CRC32C is not set | ||
898 | # CONFIG_CRYPTO_MD4 is not set | ||
899 | # CONFIG_CRYPTO_MD5 is not set | ||
900 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
901 | # CONFIG_CRYPTO_SHA1 is not set | ||
902 | # CONFIG_CRYPTO_SHA256 is not set | ||
903 | # CONFIG_CRYPTO_SHA512 is not set | ||
904 | # CONFIG_CRYPTO_TGR192 is not set | ||
905 | # CONFIG_CRYPTO_WP512 is not set | ||
906 | |||
907 | # | ||
908 | # Ciphers | ||
909 | # | ||
910 | # CONFIG_CRYPTO_AES is not set | ||
911 | # CONFIG_CRYPTO_ANUBIS is not set | ||
912 | # CONFIG_CRYPTO_ARC4 is not set | ||
913 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
914 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
915 | # CONFIG_CRYPTO_CAST5 is not set | ||
916 | # CONFIG_CRYPTO_CAST6 is not set | ||
917 | # CONFIG_CRYPTO_DES is not set | ||
918 | # CONFIG_CRYPTO_FCRYPT is not set | ||
919 | # CONFIG_CRYPTO_KHAZAD is not set | ||
920 | # CONFIG_CRYPTO_SALSA20 is not set | ||
921 | # CONFIG_CRYPTO_SEED is not set | ||
922 | # CONFIG_CRYPTO_SERPENT is not set | ||
923 | # CONFIG_CRYPTO_TEA is not set | ||
924 | # CONFIG_CRYPTO_TWOFISH is not set | ||
925 | |||
926 | # | ||
927 | # Compression | ||
928 | # | ||
929 | # CONFIG_CRYPTO_DEFLATE is not set | ||
930 | # CONFIG_CRYPTO_LZO is not set | ||
931 | CONFIG_CRYPTO_HW=y | ||
932 | |||
933 | # | ||
934 | # Library routines | ||
935 | # | ||
936 | CONFIG_BITREVERSE=y | ||
937 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | ||
938 | # CONFIG_CRC_CCITT is not set | ||
939 | # CONFIG_CRC16 is not set | ||
940 | # CONFIG_CRC_ITU_T is not set | ||
941 | CONFIG_CRC32=y | ||
942 | # CONFIG_CRC7 is not set | ||
943 | # CONFIG_LIBCRC32C is not set | ||
944 | CONFIG_PLIST=y | ||
945 | CONFIG_HAS_IOMEM=y | ||
946 | CONFIG_HAS_IOPORT=y | ||
947 | CONFIG_HAS_DMA=y | ||
diff --git a/arch/sh/configs/se7343_defconfig b/arch/sh/configs/se7343_defconfig index 84c0075e2ad4..7b7273638447 100644 --- a/arch/sh/configs/se7343_defconfig +++ b/arch/sh/configs/se7343_defconfig | |||
@@ -1,40 +1,55 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.18 | 3 | # Linux kernel version: 2.6.26-rc8 |
4 | # Tue Oct 3 11:46:17 2006 | 4 | # Mon Jul 7 13:12:45 2008 |
5 | # | 5 | # |
6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
7 | CONFIG_SUPERH32=y | ||
7 | CONFIG_RWSEM_GENERIC_SPINLOCK=y | 8 | CONFIG_RWSEM_GENERIC_SPINLOCK=y |
9 | CONFIG_GENERIC_BUG=y | ||
8 | CONFIG_GENERIC_FIND_NEXT_BIT=y | 10 | CONFIG_GENERIC_FIND_NEXT_BIT=y |
9 | CONFIG_GENERIC_HWEIGHT=y | 11 | CONFIG_GENERIC_HWEIGHT=y |
10 | CONFIG_GENERIC_HARDIRQS=y | 12 | CONFIG_GENERIC_HARDIRQS=y |
11 | CONFIG_GENERIC_IRQ_PROBE=y | 13 | CONFIG_GENERIC_IRQ_PROBE=y |
12 | CONFIG_GENERIC_CALIBRATE_DELAY=y | 14 | CONFIG_GENERIC_CALIBRATE_DELAY=y |
15 | CONFIG_GENERIC_TIME=y | ||
16 | CONFIG_GENERIC_CLOCKEVENTS=y | ||
17 | CONFIG_STACKTRACE_SUPPORT=y | ||
18 | CONFIG_LOCKDEP_SUPPORT=y | ||
19 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | ||
20 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | ||
21 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | ||
22 | CONFIG_ARCH_SUPPORTS_AOUT=y | ||
13 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 23 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
14 | 24 | ||
15 | # | 25 | # |
16 | # Code maturity level options | 26 | # General setup |
17 | # | 27 | # |
18 | CONFIG_EXPERIMENTAL=y | 28 | CONFIG_EXPERIMENTAL=y |
19 | CONFIG_BROKEN_ON_SMP=y | 29 | CONFIG_BROKEN_ON_SMP=y |
20 | CONFIG_INIT_ENV_ARG_LIMIT=32 | 30 | CONFIG_INIT_ENV_ARG_LIMIT=32 |
21 | |||
22 | # | ||
23 | # General setup | ||
24 | # | ||
25 | CONFIG_LOCALVERSION="" | 31 | CONFIG_LOCALVERSION="" |
26 | CONFIG_LOCALVERSION_AUTO=y | 32 | CONFIG_LOCALVERSION_AUTO=y |
27 | # CONFIG_SWAP is not set | 33 | # CONFIG_SWAP is not set |
28 | CONFIG_SYSVIPC=y | 34 | CONFIG_SYSVIPC=y |
29 | # CONFIG_IPC_NS is not set | 35 | CONFIG_SYSVIPC_SYSCTL=y |
30 | CONFIG_POSIX_MQUEUE=y | 36 | CONFIG_POSIX_MQUEUE=y |
31 | # CONFIG_BSD_PROCESS_ACCT is not set | 37 | # CONFIG_BSD_PROCESS_ACCT is not set |
32 | # CONFIG_TASKSTATS is not set | 38 | # CONFIG_TASKSTATS is not set |
33 | # CONFIG_UTS_NS is not set | ||
34 | # CONFIG_AUDIT is not set | 39 | # CONFIG_AUDIT is not set |
35 | # CONFIG_IKCONFIG is not set | 40 | # CONFIG_IKCONFIG is not set |
41 | CONFIG_LOG_BUF_SHIFT=14 | ||
42 | # CONFIG_CGROUPS is not set | ||
43 | CONFIG_GROUP_SCHED=y | ||
44 | CONFIG_FAIR_GROUP_SCHED=y | ||
45 | # CONFIG_RT_GROUP_SCHED is not set | ||
46 | CONFIG_USER_SCHED=y | ||
47 | # CONFIG_CGROUP_SCHED is not set | ||
48 | CONFIG_SYSFS_DEPRECATED=y | ||
49 | CONFIG_SYSFS_DEPRECATED_V2=y | ||
36 | # CONFIG_RELAY is not set | 50 | # CONFIG_RELAY is not set |
37 | CONFIG_INITRAMFS_SOURCE="" | 51 | # CONFIG_NAMESPACES is not set |
52 | # CONFIG_BLK_DEV_INITRD is not set | ||
38 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | 53 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y |
39 | CONFIG_SYSCTL=y | 54 | CONFIG_SYSCTL=y |
40 | CONFIG_EMBEDDED=y | 55 | CONFIG_EMBEDDED=y |
@@ -46,33 +61,41 @@ CONFIG_HOTPLUG=y | |||
46 | CONFIG_PRINTK=y | 61 | CONFIG_PRINTK=y |
47 | CONFIG_BUG=y | 62 | CONFIG_BUG=y |
48 | CONFIG_ELF_CORE=y | 63 | CONFIG_ELF_CORE=y |
64 | CONFIG_COMPAT_BRK=y | ||
49 | CONFIG_BASE_FULL=y | 65 | CONFIG_BASE_FULL=y |
50 | # CONFIG_FUTEX is not set | 66 | # CONFIG_FUTEX is not set |
67 | CONFIG_ANON_INODES=y | ||
51 | # CONFIG_EPOLL is not set | 68 | # CONFIG_EPOLL is not set |
69 | CONFIG_SIGNALFD=y | ||
70 | CONFIG_TIMERFD=y | ||
71 | CONFIG_EVENTFD=y | ||
52 | # CONFIG_SHMEM is not set | 72 | # CONFIG_SHMEM is not set |
53 | CONFIG_SLAB=y | ||
54 | CONFIG_VM_EVENT_COUNTERS=y | 73 | CONFIG_VM_EVENT_COUNTERS=y |
74 | CONFIG_SLAB=y | ||
75 | # CONFIG_SLUB is not set | ||
76 | # CONFIG_SLOB is not set | ||
77 | # CONFIG_PROFILING is not set | ||
78 | # CONFIG_MARKERS is not set | ||
79 | CONFIG_HAVE_OPROFILE=y | ||
80 | # CONFIG_HAVE_KPROBES is not set | ||
81 | # CONFIG_HAVE_KRETPROBES is not set | ||
82 | # CONFIG_HAVE_DMA_ATTRS is not set | ||
83 | CONFIG_PROC_PAGE_MONITOR=y | ||
84 | CONFIG_SLABINFO=y | ||
55 | CONFIG_TINY_SHMEM=y | 85 | CONFIG_TINY_SHMEM=y |
56 | CONFIG_BASE_SMALL=0 | 86 | CONFIG_BASE_SMALL=0 |
57 | # CONFIG_SLOB is not set | ||
58 | |||
59 | # | ||
60 | # Loadable module support | ||
61 | # | ||
62 | CONFIG_MODULES=y | 87 | CONFIG_MODULES=y |
88 | # CONFIG_MODULE_FORCE_LOAD is not set | ||
63 | CONFIG_MODULE_UNLOAD=y | 89 | CONFIG_MODULE_UNLOAD=y |
64 | CONFIG_MODULE_FORCE_UNLOAD=y | 90 | CONFIG_MODULE_FORCE_UNLOAD=y |
65 | # CONFIG_MODVERSIONS is not set | 91 | # CONFIG_MODVERSIONS is not set |
66 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 92 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
67 | # CONFIG_KMOD is not set | 93 | # CONFIG_KMOD is not set |
68 | |||
69 | # | ||
70 | # Block layer | ||
71 | # | ||
72 | CONFIG_BLOCK=y | 94 | CONFIG_BLOCK=y |
73 | # CONFIG_LBD is not set | 95 | # CONFIG_LBD is not set |
74 | # CONFIG_BLK_DEV_IO_TRACE is not set | 96 | # CONFIG_BLK_DEV_IO_TRACE is not set |
75 | # CONFIG_LSF is not set | 97 | # CONFIG_LSF is not set |
98 | # CONFIG_BLK_DEV_BSG is not set | ||
76 | 99 | ||
77 | # | 100 | # |
78 | # IO Schedulers | 101 | # IO Schedulers |
@@ -86,62 +109,28 @@ CONFIG_DEFAULT_DEADLINE=y | |||
86 | # CONFIG_DEFAULT_CFQ is not set | 109 | # CONFIG_DEFAULT_CFQ is not set |
87 | # CONFIG_DEFAULT_NOOP is not set | 110 | # CONFIG_DEFAULT_NOOP is not set |
88 | CONFIG_DEFAULT_IOSCHED="deadline" | 111 | CONFIG_DEFAULT_IOSCHED="deadline" |
112 | CONFIG_CLASSIC_RCU=y | ||
89 | 113 | ||
90 | # | 114 | # |
91 | # System type | 115 | # System type |
92 | # | 116 | # |
93 | CONFIG_SOLUTION_ENGINE=y | ||
94 | # CONFIG_SH_SOLUTION_ENGINE is not set | ||
95 | # CONFIG_SH_7751_SOLUTION_ENGINE is not set | ||
96 | # CONFIG_SH_7300_SOLUTION_ENGINE is not set | ||
97 | CONFIG_SH_7343_SOLUTION_ENGINE=y | ||
98 | # CONFIG_SH_73180_SOLUTION_ENGINE is not set | ||
99 | # CONFIG_SH_7751_SYSTEMH is not set | ||
100 | # CONFIG_SH_HP6XX is not set | ||
101 | # CONFIG_SH_EC3104 is not set | ||
102 | # CONFIG_SH_SATURN is not set | ||
103 | # CONFIG_SH_DREAMCAST is not set | ||
104 | # CONFIG_SH_BIGSUR is not set | ||
105 | # CONFIG_SH_MPC1211 is not set | ||
106 | # CONFIG_SH_SH03 is not set | ||
107 | # CONFIG_SH_SECUREEDGE5410 is not set | ||
108 | # CONFIG_SH_HS7751RVOIP is not set | ||
109 | # CONFIG_SH_7710VOIPGW is not set | ||
110 | # CONFIG_SH_RTS7751R2D is not set | ||
111 | # CONFIG_SH_R7780RP is not set | ||
112 | # CONFIG_SH_EDOSK7705 is not set | ||
113 | # CONFIG_SH_SH4202_MICRODEV is not set | ||
114 | # CONFIG_SH_LANDISK is not set | ||
115 | # CONFIG_SH_TITAN is not set | ||
116 | # CONFIG_SH_SHMIN is not set | ||
117 | # CONFIG_SH_UNKNOWN is not set | ||
118 | |||
119 | # | ||
120 | # Processor selection | ||
121 | # | ||
122 | CONFIG_CPU_SH4=y | 117 | CONFIG_CPU_SH4=y |
123 | CONFIG_CPU_SH4A=y | 118 | CONFIG_CPU_SH4A=y |
124 | CONFIG_CPU_SH4AL_DSP=y | 119 | CONFIG_CPU_SH4AL_DSP=y |
125 | 120 | # CONFIG_CPU_SUBTYPE_SH7619 is not set | |
126 | # | 121 | # CONFIG_CPU_SUBTYPE_SH7203 is not set |
127 | # SH-2 Processor Support | 122 | # CONFIG_CPU_SUBTYPE_SH7206 is not set |
128 | # | 123 | # CONFIG_CPU_SUBTYPE_SH7263 is not set |
129 | # CONFIG_CPU_SUBTYPE_SH7604 is not set | 124 | # CONFIG_CPU_SUBTYPE_MXG is not set |
130 | |||
131 | # | ||
132 | # SH-3 Processor Support | ||
133 | # | ||
134 | # CONFIG_CPU_SUBTYPE_SH7300 is not set | ||
135 | # CONFIG_CPU_SUBTYPE_SH7705 is not set | 125 | # CONFIG_CPU_SUBTYPE_SH7705 is not set |
136 | # CONFIG_CPU_SUBTYPE_SH7706 is not set | 126 | # CONFIG_CPU_SUBTYPE_SH7706 is not set |
137 | # CONFIG_CPU_SUBTYPE_SH7707 is not set | 127 | # CONFIG_CPU_SUBTYPE_SH7707 is not set |
138 | # CONFIG_CPU_SUBTYPE_SH7708 is not set | 128 | # CONFIG_CPU_SUBTYPE_SH7708 is not set |
139 | # CONFIG_CPU_SUBTYPE_SH7709 is not set | 129 | # CONFIG_CPU_SUBTYPE_SH7709 is not set |
140 | # CONFIG_CPU_SUBTYPE_SH7710 is not set | 130 | # CONFIG_CPU_SUBTYPE_SH7710 is not set |
141 | 131 | # CONFIG_CPU_SUBTYPE_SH7712 is not set | |
142 | # | 132 | # CONFIG_CPU_SUBTYPE_SH7720 is not set |
143 | # SH-4 Processor Support | 133 | # CONFIG_CPU_SUBTYPE_SH7721 is not set |
144 | # | ||
145 | # CONFIG_CPU_SUBTYPE_SH7750 is not set | 134 | # CONFIG_CPU_SUBTYPE_SH7750 is not set |
146 | # CONFIG_CPU_SUBTYPE_SH7091 is not set | 135 | # CONFIG_CPU_SUBTYPE_SH7091 is not set |
147 | # CONFIG_CPU_SUBTYPE_SH7750R is not set | 136 | # CONFIG_CPU_SUBTYPE_SH7750R is not set |
@@ -150,67 +139,88 @@ CONFIG_CPU_SH4AL_DSP=y | |||
150 | # CONFIG_CPU_SUBTYPE_SH7751R is not set | 139 | # CONFIG_CPU_SUBTYPE_SH7751R is not set |
151 | # CONFIG_CPU_SUBTYPE_SH7760 is not set | 140 | # CONFIG_CPU_SUBTYPE_SH7760 is not set |
152 | # CONFIG_CPU_SUBTYPE_SH4_202 is not set | 141 | # CONFIG_CPU_SUBTYPE_SH4_202 is not set |
153 | 142 | # CONFIG_CPU_SUBTYPE_SH7723 is not set | |
154 | # | 143 | # CONFIG_CPU_SUBTYPE_SH7763 is not set |
155 | # ST40 Processor Support | ||
156 | # | ||
157 | # CONFIG_CPU_SUBTYPE_ST40STB1 is not set | ||
158 | # CONFIG_CPU_SUBTYPE_ST40GX1 is not set | ||
159 | |||
160 | # | ||
161 | # SH-4A Processor Support | ||
162 | # | ||
163 | # CONFIG_CPU_SUBTYPE_SH7770 is not set | 144 | # CONFIG_CPU_SUBTYPE_SH7770 is not set |
164 | # CONFIG_CPU_SUBTYPE_SH7780 is not set | 145 | # CONFIG_CPU_SUBTYPE_SH7780 is not set |
165 | 146 | # CONFIG_CPU_SUBTYPE_SH7785 is not set | |
166 | # | 147 | # CONFIG_CPU_SUBTYPE_SHX3 is not set |
167 | # SH4AL-DSP Processor Support | ||
168 | # | ||
169 | # CONFIG_CPU_SUBTYPE_SH73180 is not set | ||
170 | CONFIG_CPU_SUBTYPE_SH7343=y | 148 | CONFIG_CPU_SUBTYPE_SH7343=y |
149 | # CONFIG_CPU_SUBTYPE_SH7722 is not set | ||
150 | # CONFIG_CPU_SUBTYPE_SH7366 is not set | ||
151 | # CONFIG_CPU_SUBTYPE_SH5_101 is not set | ||
152 | # CONFIG_CPU_SUBTYPE_SH5_103 is not set | ||
171 | 153 | ||
172 | # | 154 | # |
173 | # Memory management options | 155 | # Memory management options |
174 | # | 156 | # |
157 | CONFIG_QUICKLIST=y | ||
175 | CONFIG_MMU=y | 158 | CONFIG_MMU=y |
176 | CONFIG_PAGE_OFFSET=0x80000000 | 159 | CONFIG_PAGE_OFFSET=0x80000000 |
177 | CONFIG_MEMORY_START=0x0c000000 | 160 | CONFIG_MEMORY_START=0x0c000000 |
178 | CONFIG_MEMORY_SIZE=0x01000000 | 161 | CONFIG_MEMORY_SIZE=0x01000000 |
179 | CONFIG_32BIT=y | 162 | CONFIG_29BIT=y |
180 | CONFIG_VSYSCALL=y | 163 | CONFIG_VSYSCALL=y |
164 | CONFIG_ARCH_FLATMEM_ENABLE=y | ||
165 | CONFIG_ARCH_SPARSEMEM_ENABLE=y | ||
166 | CONFIG_ARCH_SPARSEMEM_DEFAULT=y | ||
167 | CONFIG_MAX_ACTIVE_REGIONS=1 | ||
168 | CONFIG_ARCH_POPULATES_NODE_MAP=y | ||
169 | CONFIG_ARCH_SELECT_MEMORY_MODEL=y | ||
170 | CONFIG_PAGE_SIZE_4KB=y | ||
171 | # CONFIG_PAGE_SIZE_8KB is not set | ||
172 | # CONFIG_PAGE_SIZE_16KB is not set | ||
173 | # CONFIG_PAGE_SIZE_64KB is not set | ||
181 | CONFIG_SELECT_MEMORY_MODEL=y | 174 | CONFIG_SELECT_MEMORY_MODEL=y |
182 | CONFIG_FLATMEM_MANUAL=y | 175 | CONFIG_FLATMEM_MANUAL=y |
183 | # CONFIG_DISCONTIGMEM_MANUAL is not set | 176 | # CONFIG_DISCONTIGMEM_MANUAL is not set |
184 | # CONFIG_SPARSEMEM_MANUAL is not set | 177 | # CONFIG_SPARSEMEM_MANUAL is not set |
185 | CONFIG_FLATMEM=y | 178 | CONFIG_FLATMEM=y |
186 | CONFIG_FLAT_NODE_MEM_MAP=y | 179 | CONFIG_FLAT_NODE_MEM_MAP=y |
187 | # CONFIG_SPARSEMEM_STATIC is not set | 180 | CONFIG_SPARSEMEM_STATIC=y |
181 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | ||
182 | CONFIG_PAGEFLAGS_EXTENDED=y | ||
188 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 183 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
189 | # CONFIG_RESOURCES_64BIT is not set | 184 | # CONFIG_RESOURCES_64BIT is not set |
185 | CONFIG_ZONE_DMA_FLAG=0 | ||
186 | CONFIG_NR_QUICK=2 | ||
190 | 187 | ||
191 | # | 188 | # |
192 | # Cache configuration | 189 | # Cache configuration |
193 | # | 190 | # |
194 | # CONFIG_SH_DIRECT_MAPPED is not set | 191 | # CONFIG_SH_DIRECT_MAPPED is not set |
195 | # CONFIG_SH_WRITETHROUGH is not set | 192 | CONFIG_CACHE_WRITEBACK=y |
196 | # CONFIG_SH_OCRAM is not set | 193 | # CONFIG_CACHE_WRITETHROUGH is not set |
194 | # CONFIG_CACHE_OFF is not set | ||
197 | 195 | ||
198 | # | 196 | # |
199 | # Processor features | 197 | # Processor features |
200 | # | 198 | # |
201 | CONFIG_CPU_LITTLE_ENDIAN=y | 199 | CONFIG_CPU_LITTLE_ENDIAN=y |
202 | # CONFIG_SH_FPU is not set | 200 | # CONFIG_CPU_BIG_ENDIAN is not set |
203 | # CONFIG_SH_FPU_EMU is not set | 201 | # CONFIG_SH_FPU_EMU is not set |
204 | CONFIG_SH_DSP=y | 202 | CONFIG_SH_DSP=y |
205 | # CONFIG_SH_STORE_QUEUES is not set | 203 | # CONFIG_SH_STORE_QUEUES is not set |
206 | CONFIG_CPU_HAS_INTEVT=y | 204 | CONFIG_CPU_HAS_INTEVT=y |
207 | CONFIG_CPU_HAS_SR_RB=y | 205 | CONFIG_CPU_HAS_SR_RB=y |
206 | CONFIG_CPU_HAS_DSP=y | ||
207 | |||
208 | # | ||
209 | # Board support | ||
210 | # | ||
211 | CONFIG_SOLUTION_ENGINE=y | ||
212 | CONFIG_SH_7343_SOLUTION_ENGINE=y | ||
208 | 213 | ||
209 | # | 214 | # |
210 | # Timer support | 215 | # Timer and clock configuration |
211 | # | 216 | # |
212 | CONFIG_SH_TMU=y | 217 | CONFIG_SH_TMU=y |
218 | CONFIG_SH_TIMER_IRQ=16 | ||
213 | CONFIG_SH_PCLK_FREQ=27000000 | 219 | CONFIG_SH_PCLK_FREQ=27000000 |
220 | # CONFIG_TICK_ONESHOT is not set | ||
221 | # CONFIG_NO_HZ is not set | ||
222 | # CONFIG_HIGH_RES_TIMERS is not set | ||
223 | CONFIG_GENERIC_CLOCKEVENTS_BUILD=y | ||
214 | 224 | ||
215 | # | 225 | # |
216 | # CPU Frequency scaling | 226 | # CPU Frequency scaling |
@@ -225,57 +235,50 @@ CONFIG_SH_PCLK_FREQ=27000000 | |||
225 | # | 235 | # |
226 | # Companion Chips | 236 | # Companion Chips |
227 | # | 237 | # |
228 | # CONFIG_HD6446X_SERIES is not set | 238 | |
239 | # | ||
240 | # Additional SuperH Device Drivers | ||
241 | # | ||
229 | CONFIG_HEARTBEAT=y | 242 | CONFIG_HEARTBEAT=y |
243 | # CONFIG_PUSH_SWITCH is not set | ||
230 | 244 | ||
231 | # | 245 | # |
232 | # Kernel features | 246 | # Kernel features |
233 | # | 247 | # |
234 | # CONFIG_HZ_100 is not set | 248 | # CONFIG_HZ_100 is not set |
235 | CONFIG_HZ_250=y | 249 | CONFIG_HZ_250=y |
250 | # CONFIG_HZ_300 is not set | ||
236 | # CONFIG_HZ_1000 is not set | 251 | # CONFIG_HZ_1000 is not set |
237 | CONFIG_HZ=250 | 252 | CONFIG_HZ=250 |
253 | # CONFIG_SCHED_HRTICK is not set | ||
238 | # CONFIG_KEXEC is not set | 254 | # CONFIG_KEXEC is not set |
239 | # CONFIG_SMP is not set | 255 | # CONFIG_CRASH_DUMP is not set |
240 | CONFIG_PREEMPT_NONE=y | 256 | CONFIG_PREEMPT_NONE=y |
241 | # CONFIG_PREEMPT_VOLUNTARY is not set | 257 | # CONFIG_PREEMPT_VOLUNTARY is not set |
242 | # CONFIG_PREEMPT is not set | 258 | # CONFIG_PREEMPT is not set |
259 | CONFIG_GUSA=y | ||
243 | 260 | ||
244 | # | 261 | # |
245 | # Boot options | 262 | # Boot options |
246 | # | 263 | # |
247 | CONFIG_ZERO_PAGE_OFFSET=0x00001000 | 264 | CONFIG_ZERO_PAGE_OFFSET=0x00001000 |
248 | CONFIG_BOOT_LINK_OFFSET=0x00800000 | 265 | CONFIG_BOOT_LINK_OFFSET=0x00800000 |
249 | # CONFIG_UBC_WAKEUP is not set | ||
250 | # CONFIG_CMDLINE_BOOL is not set | 266 | # CONFIG_CMDLINE_BOOL is not set |
251 | 267 | ||
252 | # | 268 | # |
253 | # Bus options | 269 | # Bus options |
254 | # | 270 | # |
255 | # CONFIG_PCI is not set | 271 | # CONFIG_CF_ENABLER is not set |
256 | 272 | # CONFIG_ARCH_SUPPORTS_MSI is not set | |
257 | # | ||
258 | # PCCARD (PCMCIA/CardBus) support | ||
259 | # | ||
260 | # CONFIG_PCCARD is not set | 273 | # CONFIG_PCCARD is not set |
261 | 274 | ||
262 | # | 275 | # |
263 | # PCI Hotplug Support | ||
264 | # | ||
265 | |||
266 | # | ||
267 | # Executable file formats | 276 | # Executable file formats |
268 | # | 277 | # |
269 | CONFIG_BINFMT_ELF=y | 278 | CONFIG_BINFMT_ELF=y |
270 | # CONFIG_BINFMT_FLAT is not set | ||
271 | # CONFIG_BINFMT_MISC is not set | 279 | # CONFIG_BINFMT_MISC is not set |
272 | 280 | ||
273 | # | 281 | # |
274 | # Power management options (EXPERIMENTAL) | ||
275 | # | ||
276 | # CONFIG_PM is not set | ||
277 | |||
278 | # | ||
279 | # Networking | 282 | # Networking |
280 | # | 283 | # |
281 | CONFIG_NET=y | 284 | CONFIG_NET=y |
@@ -283,22 +286,20 @@ CONFIG_NET=y | |||
283 | # | 286 | # |
284 | # Networking options | 287 | # Networking options |
285 | # | 288 | # |
286 | # CONFIG_NETDEBUG is not set | ||
287 | CONFIG_PACKET=y | 289 | CONFIG_PACKET=y |
288 | CONFIG_PACKET_MMAP=y | 290 | CONFIG_PACKET_MMAP=y |
289 | CONFIG_UNIX=y | 291 | CONFIG_UNIX=y |
290 | CONFIG_XFRM=y | 292 | CONFIG_XFRM=y |
291 | # CONFIG_XFRM_USER is not set | 293 | # CONFIG_XFRM_USER is not set |
292 | # CONFIG_XFRM_SUB_POLICY is not set | 294 | # CONFIG_XFRM_SUB_POLICY is not set |
295 | # CONFIG_XFRM_MIGRATE is not set | ||
296 | # CONFIG_XFRM_STATISTICS is not set | ||
293 | # CONFIG_NET_KEY is not set | 297 | # CONFIG_NET_KEY is not set |
294 | CONFIG_INET=y | 298 | CONFIG_INET=y |
295 | # CONFIG_IP_MULTICAST is not set | 299 | # CONFIG_IP_MULTICAST is not set |
296 | # CONFIG_IP_ADVANCED_ROUTER is not set | 300 | # CONFIG_IP_ADVANCED_ROUTER is not set |
297 | CONFIG_IP_FIB_HASH=y | 301 | CONFIG_IP_FIB_HASH=y |
298 | CONFIG_IP_PNP=y | 302 | # CONFIG_IP_PNP is not set |
299 | CONFIG_IP_PNP_DHCP=y | ||
300 | # CONFIG_IP_PNP_BOOTP is not set | ||
301 | # CONFIG_IP_PNP_RARP is not set | ||
302 | # CONFIG_NET_IPIP is not set | 303 | # CONFIG_NET_IPIP is not set |
303 | # CONFIG_NET_IPGRE is not set | 304 | # CONFIG_NET_IPGRE is not set |
304 | # CONFIG_ARPD is not set | 305 | # CONFIG_ARPD is not set |
@@ -310,29 +311,18 @@ CONFIG_SYN_COOKIES=y | |||
310 | # CONFIG_INET_TUNNEL is not set | 311 | # CONFIG_INET_TUNNEL is not set |
311 | CONFIG_INET_XFRM_MODE_TRANSPORT=y | 312 | CONFIG_INET_XFRM_MODE_TRANSPORT=y |
312 | CONFIG_INET_XFRM_MODE_TUNNEL=y | 313 | CONFIG_INET_XFRM_MODE_TUNNEL=y |
314 | CONFIG_INET_XFRM_MODE_BEET=y | ||
315 | # CONFIG_INET_LRO is not set | ||
313 | # CONFIG_INET_DIAG is not set | 316 | # CONFIG_INET_DIAG is not set |
314 | # CONFIG_TCP_CONG_ADVANCED is not set | 317 | # CONFIG_TCP_CONG_ADVANCED is not set |
315 | CONFIG_TCP_CONG_CUBIC=y | 318 | CONFIG_TCP_CONG_CUBIC=y |
316 | CONFIG_DEFAULT_TCP_CONG="cubic" | 319 | CONFIG_DEFAULT_TCP_CONG="cubic" |
320 | # CONFIG_TCP_MD5SIG is not set | ||
317 | # CONFIG_IPV6 is not set | 321 | # CONFIG_IPV6 is not set |
318 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
319 | # CONFIG_INET6_TUNNEL is not set | ||
320 | # CONFIG_NETWORK_SECMARK is not set | 322 | # CONFIG_NETWORK_SECMARK is not set |
321 | # CONFIG_NETFILTER is not set | 323 | # CONFIG_NETFILTER is not set |
322 | |||
323 | # | ||
324 | # DCCP Configuration (EXPERIMENTAL) | ||
325 | # | ||
326 | # CONFIG_IP_DCCP is not set | 324 | # CONFIG_IP_DCCP is not set |
327 | |||
328 | # | ||
329 | # SCTP Configuration (EXPERIMENTAL) | ||
330 | # | ||
331 | # CONFIG_IP_SCTP is not set | 325 | # CONFIG_IP_SCTP is not set |
332 | |||
333 | # | ||
334 | # TIPC Configuration (EXPERIMENTAL) | ||
335 | # | ||
336 | # CONFIG_TIPC is not set | 326 | # CONFIG_TIPC is not set |
337 | # CONFIG_ATM is not set | 327 | # CONFIG_ATM is not set |
338 | # CONFIG_BRIDGE is not set | 328 | # CONFIG_BRIDGE is not set |
@@ -345,10 +335,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
345 | # CONFIG_LAPB is not set | 335 | # CONFIG_LAPB is not set |
346 | # CONFIG_ECONET is not set | 336 | # CONFIG_ECONET is not set |
347 | # CONFIG_WAN_ROUTER is not set | 337 | # CONFIG_WAN_ROUTER is not set |
348 | |||
349 | # | ||
350 | # QoS and/or fair queueing | ||
351 | # | ||
352 | # CONFIG_NET_SCHED is not set | 338 | # CONFIG_NET_SCHED is not set |
353 | 339 | ||
354 | # | 340 | # |
@@ -356,9 +342,20 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
356 | # | 342 | # |
357 | # CONFIG_NET_PKTGEN is not set | 343 | # CONFIG_NET_PKTGEN is not set |
358 | # CONFIG_HAMRADIO is not set | 344 | # CONFIG_HAMRADIO is not set |
345 | # CONFIG_CAN is not set | ||
359 | # CONFIG_IRDA is not set | 346 | # CONFIG_IRDA is not set |
360 | # CONFIG_BT is not set | 347 | # CONFIG_BT is not set |
348 | # CONFIG_AF_RXRPC is not set | ||
349 | |||
350 | # | ||
351 | # Wireless | ||
352 | # | ||
353 | # CONFIG_CFG80211 is not set | ||
354 | # CONFIG_WIRELESS_EXT is not set | ||
355 | # CONFIG_MAC80211 is not set | ||
361 | # CONFIG_IEEE80211 is not set | 356 | # CONFIG_IEEE80211 is not set |
357 | # CONFIG_RFKILL is not set | ||
358 | # CONFIG_NET_9P is not set | ||
362 | 359 | ||
363 | # | 360 | # |
364 | # Device Drivers | 361 | # Device Drivers |
@@ -367,36 +364,32 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
367 | # | 364 | # |
368 | # Generic Driver Options | 365 | # Generic Driver Options |
369 | # | 366 | # |
367 | CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" | ||
370 | CONFIG_STANDALONE=y | 368 | CONFIG_STANDALONE=y |
371 | CONFIG_PREVENT_FIRMWARE_BUILD=y | 369 | CONFIG_PREVENT_FIRMWARE_BUILD=y |
372 | CONFIG_FW_LOADER=y | 370 | CONFIG_FW_LOADER=y |
373 | # CONFIG_SYS_HYPERVISOR is not set | 371 | # CONFIG_SYS_HYPERVISOR is not set |
374 | |||
375 | # | ||
376 | # Connector - unified userspace <-> kernelspace linker | ||
377 | # | ||
378 | # CONFIG_CONNECTOR is not set | 372 | # CONFIG_CONNECTOR is not set |
379 | |||
380 | # | ||
381 | # Memory Technology Devices (MTD) | ||
382 | # | ||
383 | CONFIG_MTD=y | 373 | CONFIG_MTD=y |
384 | # CONFIG_MTD_DEBUG is not set | 374 | # CONFIG_MTD_DEBUG is not set |
385 | CONFIG_MTD_CONCAT=y | 375 | CONFIG_MTD_CONCAT=y |
386 | CONFIG_MTD_PARTITIONS=y | 376 | CONFIG_MTD_PARTITIONS=y |
387 | # CONFIG_MTD_REDBOOT_PARTS is not set | 377 | # CONFIG_MTD_REDBOOT_PARTS is not set |
388 | # CONFIG_MTD_CMDLINE_PARTS is not set | 378 | # CONFIG_MTD_CMDLINE_PARTS is not set |
379 | # CONFIG_MTD_AR7_PARTS is not set | ||
389 | 380 | ||
390 | # | 381 | # |
391 | # User Modules And Translation Layers | 382 | # User Modules And Translation Layers |
392 | # | 383 | # |
393 | CONFIG_MTD_CHAR=y | 384 | CONFIG_MTD_CHAR=y |
385 | CONFIG_MTD_BLKDEVS=y | ||
394 | CONFIG_MTD_BLOCK=y | 386 | CONFIG_MTD_BLOCK=y |
395 | # CONFIG_FTL is not set | 387 | # CONFIG_FTL is not set |
396 | # CONFIG_NFTL is not set | 388 | # CONFIG_NFTL is not set |
397 | # CONFIG_INFTL is not set | 389 | # CONFIG_INFTL is not set |
398 | # CONFIG_RFD_FTL is not set | 390 | # CONFIG_RFD_FTL is not set |
399 | # CONFIG_SSFDC is not set | 391 | # CONFIG_SSFDC is not set |
392 | # CONFIG_MTD_OOPS is not set | ||
400 | 393 | ||
401 | # | 394 | # |
402 | # RAM/ROM/Flash chip drivers | 395 | # RAM/ROM/Flash chip drivers |
@@ -422,13 +415,15 @@ CONFIG_MTD_CFI_UTIL=y | |||
422 | CONFIG_MTD_RAM=y | 415 | CONFIG_MTD_RAM=y |
423 | # CONFIG_MTD_ROM is not set | 416 | # CONFIG_MTD_ROM is not set |
424 | # CONFIG_MTD_ABSENT is not set | 417 | # CONFIG_MTD_ABSENT is not set |
425 | # CONFIG_MTD_OBSOLETE_CHIPS is not set | ||
426 | 418 | ||
427 | # | 419 | # |
428 | # Mapping drivers for chip access | 420 | # Mapping drivers for chip access |
429 | # | 421 | # |
430 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set | 422 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set |
431 | # CONFIG_MTD_PHYSMAP is not set | 423 | CONFIG_MTD_PHYSMAP=y |
424 | CONFIG_MTD_PHYSMAP_START=0x0 | ||
425 | CONFIG_MTD_PHYSMAP_LEN=0 | ||
426 | CONFIG_MTD_PHYSMAP_BANKWIDTH=0 | ||
432 | # CONFIG_MTD_PLATRAM is not set | 427 | # CONFIG_MTD_PLATRAM is not set |
433 | 428 | ||
434 | # | 429 | # |
@@ -445,130 +440,101 @@ CONFIG_MTD_RAM=y | |||
445 | # CONFIG_MTD_DOC2000 is not set | 440 | # CONFIG_MTD_DOC2000 is not set |
446 | # CONFIG_MTD_DOC2001 is not set | 441 | # CONFIG_MTD_DOC2001 is not set |
447 | # CONFIG_MTD_DOC2001PLUS is not set | 442 | # CONFIG_MTD_DOC2001PLUS is not set |
448 | |||
449 | # | ||
450 | # NAND Flash Device Drivers | ||
451 | # | ||
452 | # CONFIG_MTD_NAND is not set | 443 | # CONFIG_MTD_NAND is not set |
453 | |||
454 | # | ||
455 | # OneNAND Flash Device Drivers | ||
456 | # | ||
457 | # CONFIG_MTD_ONENAND is not set | 444 | # CONFIG_MTD_ONENAND is not set |
458 | 445 | ||
459 | # | 446 | # |
460 | # Parallel port support | 447 | # UBI - Unsorted block images |
461 | # | 448 | # |
449 | # CONFIG_MTD_UBI is not set | ||
462 | # CONFIG_PARPORT is not set | 450 | # CONFIG_PARPORT is not set |
463 | 451 | CONFIG_BLK_DEV=y | |
464 | # | ||
465 | # Plug and Play support | ||
466 | # | ||
467 | |||
468 | # | ||
469 | # Block devices | ||
470 | # | ||
471 | # CONFIG_BLK_DEV_COW_COMMON is not set | 452 | # CONFIG_BLK_DEV_COW_COMMON is not set |
472 | # CONFIG_BLK_DEV_LOOP is not set | 453 | # CONFIG_BLK_DEV_LOOP is not set |
473 | # CONFIG_BLK_DEV_NBD is not set | 454 | # CONFIG_BLK_DEV_NBD is not set |
474 | # CONFIG_BLK_DEV_RAM is not set | 455 | # CONFIG_BLK_DEV_RAM is not set |
475 | # CONFIG_BLK_DEV_INITRD is not set | ||
476 | # CONFIG_CDROM_PKTCDVD is not set | 456 | # CONFIG_CDROM_PKTCDVD is not set |
477 | # CONFIG_ATA_OVER_ETH is not set | 457 | # CONFIG_ATA_OVER_ETH is not set |
478 | 458 | # CONFIG_MISC_DEVICES is not set | |
479 | # | 459 | CONFIG_HAVE_IDE=y |
480 | # ATA/ATAPI/MFM/RLL support | ||
481 | # | ||
482 | # CONFIG_IDE is not set | 460 | # CONFIG_IDE is not set |
483 | 461 | ||
484 | # | 462 | # |
485 | # SCSI device support | 463 | # SCSI device support |
486 | # | 464 | # |
487 | # CONFIG_RAID_ATTRS is not set | 465 | # CONFIG_RAID_ATTRS is not set |
488 | # CONFIG_SCSI is not set | 466 | CONFIG_SCSI=y |
467 | CONFIG_SCSI_DMA=y | ||
468 | # CONFIG_SCSI_TGT is not set | ||
489 | # CONFIG_SCSI_NETLINK is not set | 469 | # CONFIG_SCSI_NETLINK is not set |
470 | CONFIG_SCSI_PROC_FS=y | ||
490 | 471 | ||
491 | # | 472 | # |
492 | # Serial ATA (prod) and Parallel ATA (experimental) drivers | 473 | # SCSI support type (disk, tape, CD-ROM) |
493 | # | ||
494 | # CONFIG_ATA is not set | ||
495 | |||
496 | # | ||
497 | # Multi-device support (RAID and LVM) | ||
498 | # | ||
499 | # CONFIG_MD is not set | ||
500 | |||
501 | # | ||
502 | # Fusion MPT device support | ||
503 | # | ||
504 | # CONFIG_FUSION is not set | ||
505 | |||
506 | # | ||
507 | # IEEE 1394 (FireWire) support | ||
508 | # | 474 | # |
475 | # CONFIG_BLK_DEV_SD is not set | ||
476 | # CONFIG_CHR_DEV_ST is not set | ||
477 | # CONFIG_CHR_DEV_OSST is not set | ||
478 | # CONFIG_BLK_DEV_SR is not set | ||
479 | # CONFIG_CHR_DEV_SG is not set | ||
480 | # CONFIG_CHR_DEV_SCH is not set | ||
509 | 481 | ||
510 | # | 482 | # |
511 | # I2O device support | 483 | # Some SCSI devices (e.g. CD jukebox) support multiple LUNs |
512 | # | 484 | # |
485 | CONFIG_SCSI_MULTI_LUN=y | ||
486 | # CONFIG_SCSI_CONSTANTS is not set | ||
487 | # CONFIG_SCSI_LOGGING is not set | ||
488 | # CONFIG_SCSI_SCAN_ASYNC is not set | ||
489 | CONFIG_SCSI_WAIT_SCAN=m | ||
513 | 490 | ||
514 | # | 491 | # |
515 | # Network device support | 492 | # SCSI Transports |
516 | # | 493 | # |
494 | # CONFIG_SCSI_SPI_ATTRS is not set | ||
495 | # CONFIG_SCSI_FC_ATTRS is not set | ||
496 | # CONFIG_SCSI_ISCSI_ATTRS is not set | ||
497 | # CONFIG_SCSI_SAS_LIBSAS is not set | ||
498 | # CONFIG_SCSI_SRP_ATTRS is not set | ||
499 | # CONFIG_SCSI_LOWLEVEL is not set | ||
500 | # CONFIG_ATA is not set | ||
501 | # CONFIG_MD is not set | ||
517 | CONFIG_NETDEVICES=y | 502 | CONFIG_NETDEVICES=y |
503 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
518 | # CONFIG_DUMMY is not set | 504 | # CONFIG_DUMMY is not set |
519 | # CONFIG_BONDING is not set | 505 | # CONFIG_BONDING is not set |
506 | # CONFIG_MACVLAN is not set | ||
520 | # CONFIG_EQUALIZER is not set | 507 | # CONFIG_EQUALIZER is not set |
521 | # CONFIG_TUN is not set | 508 | # CONFIG_TUN is not set |
522 | 509 | # CONFIG_VETH is not set | |
523 | # | ||
524 | # PHY device support | ||
525 | # | ||
526 | # CONFIG_PHYLIB is not set | 510 | # CONFIG_PHYLIB is not set |
527 | |||
528 | # | ||
529 | # Ethernet (10 or 100Mbit) | ||
530 | # | ||
531 | CONFIG_NET_ETHERNET=y | 511 | CONFIG_NET_ETHERNET=y |
532 | CONFIG_MII=y | 512 | CONFIG_MII=y |
513 | # CONFIG_AX88796 is not set | ||
533 | # CONFIG_STNIC is not set | 514 | # CONFIG_STNIC is not set |
534 | CONFIG_SMC91X=y | 515 | CONFIG_SMC91X=y |
516 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | ||
517 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | ||
518 | # CONFIG_IBM_NEW_EMAC_TAH is not set | ||
519 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set | ||
520 | # CONFIG_B44 is not set | ||
521 | CONFIG_NETDEV_1000=y | ||
522 | # CONFIG_E1000E_ENABLED is not set | ||
523 | CONFIG_NETDEV_10000=y | ||
535 | 524 | ||
536 | # | 525 | # |
537 | # Ethernet (1000 Mbit) | 526 | # Wireless LAN |
538 | # | ||
539 | |||
540 | # | ||
541 | # Ethernet (10000 Mbit) | ||
542 | # | ||
543 | |||
544 | # | ||
545 | # Token Ring devices | ||
546 | # | ||
547 | |||
548 | # | ||
549 | # Wireless LAN (non-hamradio) | ||
550 | # | ||
551 | # CONFIG_NET_RADIO is not set | ||
552 | |||
553 | # | ||
554 | # Wan interfaces | ||
555 | # | 527 | # |
528 | # CONFIG_WLAN_PRE80211 is not set | ||
529 | # CONFIG_WLAN_80211 is not set | ||
530 | # CONFIG_IWLWIFI_LEDS is not set | ||
556 | # CONFIG_WAN is not set | 531 | # CONFIG_WAN is not set |
557 | # CONFIG_PPP is not set | 532 | # CONFIG_PPP is not set |
558 | # CONFIG_SLIP is not set | 533 | # CONFIG_SLIP is not set |
559 | # CONFIG_SHAPER is not set | ||
560 | # CONFIG_NETCONSOLE is not set | 534 | # CONFIG_NETCONSOLE is not set |
561 | # CONFIG_NETPOLL is not set | 535 | # CONFIG_NETPOLL is not set |
562 | # CONFIG_NET_POLL_CONTROLLER is not set | 536 | # CONFIG_NET_POLL_CONTROLLER is not set |
563 | |||
564 | # | ||
565 | # ISDN subsystem | ||
566 | # | ||
567 | # CONFIG_ISDN is not set | 537 | # CONFIG_ISDN is not set |
568 | |||
569 | # | ||
570 | # Telephony Support | ||
571 | # | ||
572 | # CONFIG_PHONE is not set | 538 | # CONFIG_PHONE is not set |
573 | 539 | ||
574 | # | 540 | # |
@@ -576,13 +542,13 @@ CONFIG_SMC91X=y | |||
576 | # | 542 | # |
577 | CONFIG_INPUT=y | 543 | CONFIG_INPUT=y |
578 | # CONFIG_INPUT_FF_MEMLESS is not set | 544 | # CONFIG_INPUT_FF_MEMLESS is not set |
545 | # CONFIG_INPUT_POLLDEV is not set | ||
579 | 546 | ||
580 | # | 547 | # |
581 | # Userland interfaces | 548 | # Userland interfaces |
582 | # | 549 | # |
583 | # CONFIG_INPUT_MOUSEDEV is not set | 550 | # CONFIG_INPUT_MOUSEDEV is not set |
584 | # CONFIG_INPUT_JOYDEV is not set | 551 | # CONFIG_INPUT_JOYDEV is not set |
585 | # CONFIG_INPUT_TSDEV is not set | ||
586 | # CONFIG_INPUT_EVDEV is not set | 552 | # CONFIG_INPUT_EVDEV is not set |
587 | # CONFIG_INPUT_EVBUG is not set | 553 | # CONFIG_INPUT_EVBUG is not set |
588 | 554 | ||
@@ -592,6 +558,7 @@ CONFIG_INPUT=y | |||
592 | # CONFIG_INPUT_KEYBOARD is not set | 558 | # CONFIG_INPUT_KEYBOARD is not set |
593 | # CONFIG_INPUT_MOUSE is not set | 559 | # CONFIG_INPUT_MOUSE is not set |
594 | # CONFIG_INPUT_JOYSTICK is not set | 560 | # CONFIG_INPUT_JOYSTICK is not set |
561 | # CONFIG_INPUT_TABLET is not set | ||
595 | # CONFIG_INPUT_TOUCHSCREEN is not set | 562 | # CONFIG_INPUT_TOUCHSCREEN is not set |
596 | # CONFIG_INPUT_MISC is not set | 563 | # CONFIG_INPUT_MISC is not set |
597 | 564 | ||
@@ -608,6 +575,7 @@ CONFIG_VT=y | |||
608 | CONFIG_VT_CONSOLE=y | 575 | CONFIG_VT_CONSOLE=y |
609 | CONFIG_HW_CONSOLE=y | 576 | CONFIG_HW_CONSOLE=y |
610 | # CONFIG_VT_HW_CONSOLE_BINDING is not set | 577 | # CONFIG_VT_HW_CONSOLE_BINDING is not set |
578 | CONFIG_DEVKMEM=y | ||
611 | # CONFIG_SERIAL_NONSTANDARD is not set | 579 | # CONFIG_SERIAL_NONSTANDARD is not set |
612 | 580 | ||
613 | # | 581 | # |
@@ -626,147 +594,102 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
626 | # CONFIG_UNIX98_PTYS is not set | 594 | # CONFIG_UNIX98_PTYS is not set |
627 | CONFIG_LEGACY_PTYS=y | 595 | CONFIG_LEGACY_PTYS=y |
628 | CONFIG_LEGACY_PTY_COUNT=256 | 596 | CONFIG_LEGACY_PTY_COUNT=256 |
629 | |||
630 | # | ||
631 | # IPMI | ||
632 | # | ||
633 | # CONFIG_IPMI_HANDLER is not set | 597 | # CONFIG_IPMI_HANDLER is not set |
634 | |||
635 | # | ||
636 | # Watchdog Cards | ||
637 | # | ||
638 | # CONFIG_WATCHDOG is not set | ||
639 | CONFIG_HW_RANDOM=y | 598 | CONFIG_HW_RANDOM=y |
640 | # CONFIG_GEN_RTC is not set | ||
641 | # CONFIG_DTLK is not set | ||
642 | # CONFIG_R3964 is not set | 599 | # CONFIG_R3964 is not set |
643 | |||
644 | # | ||
645 | # Ftape, the floppy tape device driver | ||
646 | # | ||
647 | # CONFIG_RAW_DRIVER is not set | 600 | # CONFIG_RAW_DRIVER is not set |
648 | |||
649 | # | ||
650 | # TPM devices | ||
651 | # | ||
652 | # CONFIG_TCG_TPM is not set | 601 | # CONFIG_TCG_TPM is not set |
653 | # CONFIG_TELCLOCK is not set | 602 | # CONFIG_I2C is not set |
654 | |||
655 | # | ||
656 | # I2C support | ||
657 | # | ||
658 | CONFIG_I2C=y | ||
659 | CONFIG_I2C_CHARDEV=y | ||
660 | |||
661 | # | ||
662 | # I2C Algorithms | ||
663 | # | ||
664 | # CONFIG_I2C_ALGOBIT is not set | ||
665 | # CONFIG_I2C_ALGOPCF is not set | ||
666 | # CONFIG_I2C_ALGOPCA is not set | ||
667 | |||
668 | # | ||
669 | # I2C Hardware Bus support | ||
670 | # | ||
671 | # CONFIG_I2C_OCORES is not set | ||
672 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
673 | # CONFIG_I2C_STUB is not set | ||
674 | # CONFIG_I2C_PCA_ISA is not set | ||
675 | |||
676 | # | ||
677 | # Miscellaneous I2C Chip support | ||
678 | # | ||
679 | # CONFIG_SENSORS_DS1337 is not set | ||
680 | # CONFIG_SENSORS_DS1374 is not set | ||
681 | # CONFIG_SENSORS_EEPROM is not set | ||
682 | # CONFIG_SENSORS_PCF8574 is not set | ||
683 | # CONFIG_SENSORS_PCA9539 is not set | ||
684 | # CONFIG_SENSORS_PCF8591 is not set | ||
685 | # CONFIG_SENSORS_MAX6875 is not set | ||
686 | # CONFIG_I2C_DEBUG_CORE is not set | ||
687 | # CONFIG_I2C_DEBUG_ALGO is not set | ||
688 | # CONFIG_I2C_DEBUG_BUS is not set | ||
689 | # CONFIG_I2C_DEBUG_CHIP is not set | ||
690 | |||
691 | # | ||
692 | # SPI support | ||
693 | # | ||
694 | # CONFIG_SPI is not set | 603 | # CONFIG_SPI is not set |
695 | # CONFIG_SPI_MASTER is not set | 604 | # CONFIG_W1 is not set |
605 | # CONFIG_POWER_SUPPLY is not set | ||
606 | # CONFIG_HWMON is not set | ||
607 | # CONFIG_THERMAL is not set | ||
608 | # CONFIG_THERMAL_HWMON is not set | ||
609 | # CONFIG_WATCHDOG is not set | ||
696 | 610 | ||
697 | # | 611 | # |
698 | # Dallas's 1-wire bus | 612 | # Sonics Silicon Backplane |
699 | # | 613 | # |
614 | CONFIG_SSB_POSSIBLE=y | ||
615 | # CONFIG_SSB is not set | ||
700 | 616 | ||
701 | # | 617 | # |
702 | # Hardware Monitoring support | 618 | # Multifunction device drivers |
703 | # | 619 | # |
704 | # CONFIG_HWMON is not set | 620 | # CONFIG_MFD_SM501 is not set |
705 | # CONFIG_HWMON_VID is not set | 621 | # CONFIG_HTC_PASIC3 is not set |
706 | 622 | ||
707 | # | 623 | # |
708 | # Misc devices | 624 | # Multimedia devices |
709 | # | 625 | # |
710 | 626 | ||
711 | # | 627 | # |
712 | # Multimedia devices | 628 | # Multimedia core support |
713 | # | 629 | # |
714 | CONFIG_VIDEO_DEV=y | 630 | CONFIG_VIDEO_DEV=y |
715 | CONFIG_VIDEO_V4L1=y | 631 | CONFIG_VIDEO_V4L2_COMMON=y |
632 | CONFIG_VIDEO_ALLOW_V4L1=y | ||
716 | CONFIG_VIDEO_V4L1_COMPAT=y | 633 | CONFIG_VIDEO_V4L1_COMPAT=y |
717 | CONFIG_VIDEO_V4L2=y | 634 | # CONFIG_DVB_CORE is not set |
718 | 635 | CONFIG_VIDEO_MEDIA=y | |
719 | # | ||
720 | # Video Capture Adapters | ||
721 | # | ||
722 | 636 | ||
723 | # | 637 | # |
724 | # Video Capture Adapters | 638 | # Multimedia drivers |
725 | # | 639 | # |
640 | # CONFIG_MEDIA_ATTACH is not set | ||
641 | CONFIG_VIDEO_V4L2=y | ||
642 | CONFIG_VIDEO_V4L1=y | ||
643 | CONFIG_VIDEO_CAPTURE_DRIVERS=y | ||
726 | # CONFIG_VIDEO_ADV_DEBUG is not set | 644 | # CONFIG_VIDEO_ADV_DEBUG is not set |
727 | CONFIG_VIDEO_HELPER_CHIPS_AUTO=y | 645 | CONFIG_VIDEO_HELPER_CHIPS_AUTO=y |
728 | # CONFIG_VIDEO_VIVI is not set | 646 | # CONFIG_VIDEO_VIVI is not set |
729 | # CONFIG_VIDEO_CPIA is not set | 647 | # CONFIG_VIDEO_CPIA is not set |
730 | # CONFIG_VIDEO_SAA5246A is not set | 648 | # CONFIG_SOC_CAMERA is not set |
731 | # CONFIG_VIDEO_SAA5249 is not set | 649 | CONFIG_RADIO_ADAPTERS=y |
732 | # CONFIG_TUNER_3036 is not set | 650 | # CONFIG_DAB is not set |
733 | |||
734 | # | ||
735 | # Radio Adapters | ||
736 | # | ||
737 | |||
738 | # | ||
739 | # Digital Video Broadcasting Devices | ||
740 | # | ||
741 | # CONFIG_DVB is not set | ||
742 | 651 | ||
743 | # | 652 | # |
744 | # Graphics support | 653 | # Graphics support |
745 | # | 654 | # |
746 | CONFIG_FIRMWARE_EDID=y | 655 | # CONFIG_VGASTATE is not set |
656 | # CONFIG_VIDEO_OUTPUT_CONTROL is not set | ||
747 | CONFIG_FB=y | 657 | CONFIG_FB=y |
658 | CONFIG_FIRMWARE_EDID=y | ||
659 | # CONFIG_FB_DDC is not set | ||
748 | # CONFIG_FB_CFB_FILLRECT is not set | 660 | # CONFIG_FB_CFB_FILLRECT is not set |
749 | # CONFIG_FB_CFB_COPYAREA is not set | 661 | # CONFIG_FB_CFB_COPYAREA is not set |
750 | # CONFIG_FB_CFB_IMAGEBLIT is not set | 662 | # CONFIG_FB_CFB_IMAGEBLIT is not set |
663 | # CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set | ||
664 | # CONFIG_FB_SYS_FILLRECT is not set | ||
665 | # CONFIG_FB_SYS_COPYAREA is not set | ||
666 | # CONFIG_FB_SYS_IMAGEBLIT is not set | ||
667 | # CONFIG_FB_FOREIGN_ENDIAN is not set | ||
668 | # CONFIG_FB_SYS_FOPS is not set | ||
669 | # CONFIG_FB_SVGALIB is not set | ||
751 | # CONFIG_FB_MACMODES is not set | 670 | # CONFIG_FB_MACMODES is not set |
752 | # CONFIG_FB_BACKLIGHT is not set | 671 | # CONFIG_FB_BACKLIGHT is not set |
753 | # CONFIG_FB_MODE_HELPERS is not set | 672 | # CONFIG_FB_MODE_HELPERS is not set |
754 | # CONFIG_FB_TILEBLITTING is not set | 673 | # CONFIG_FB_TILEBLITTING is not set |
755 | # CONFIG_FB_EPSON1355 is not set | 674 | |
675 | # | ||
676 | # Frame buffer hardware drivers | ||
677 | # | ||
756 | # CONFIG_FB_S1D13XXX is not set | 678 | # CONFIG_FB_S1D13XXX is not set |
757 | # CONFIG_FB_VIRTUAL is not set | 679 | # CONFIG_FB_VIRTUAL is not set |
680 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | ||
758 | 681 | ||
759 | # | 682 | # |
760 | # Console display driver support | 683 | # Display device support |
761 | # | 684 | # |
762 | CONFIG_DUMMY_CONSOLE=y | 685 | # CONFIG_DISPLAY_SUPPORT is not set |
763 | # CONFIG_FRAMEBUFFER_CONSOLE is not set | ||
764 | 686 | ||
765 | # | 687 | # |
766 | # Logo configuration | 688 | # Console display driver support |
767 | # | 689 | # |
690 | CONFIG_DUMMY_CONSOLE=y | ||
691 | # CONFIG_FRAMEBUFFER_CONSOLE is not set | ||
768 | # CONFIG_LOGO is not set | 692 | # CONFIG_LOGO is not set |
769 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | ||
770 | 693 | ||
771 | # | 694 | # |
772 | # Sound | 695 | # Sound |
@@ -802,85 +725,63 @@ CONFIG_SND_VERBOSE_PROCFS=y | |||
802 | # CONFIG_SND_MPU401 is not set | 725 | # CONFIG_SND_MPU401 is not set |
803 | 726 | ||
804 | # | 727 | # |
805 | # Open Sound System | 728 | # SUPERH devices |
806 | # | 729 | # |
807 | # CONFIG_SOUND_PRIME is not set | ||
808 | 730 | ||
809 | # | 731 | # |
810 | # USB support | 732 | # System on Chip audio support |
811 | # | 733 | # |
812 | # CONFIG_USB_ARCH_HAS_HCD is not set | 734 | # CONFIG_SND_SOC is not set |
813 | # CONFIG_USB_ARCH_HAS_OHCI is not set | ||
814 | # CONFIG_USB_ARCH_HAS_EHCI is not set | ||
815 | 735 | ||
816 | # | 736 | # |
817 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 737 | # SoC Audio support for SuperH |
818 | # | 738 | # |
819 | 739 | ||
820 | # | 740 | # |
821 | # USB Gadget Support | 741 | # ALSA SoC audio for Freescale SOCs |
822 | # | 742 | # |
823 | # CONFIG_USB_GADGET is not set | ||
824 | 743 | ||
825 | # | 744 | # |
826 | # MMC/SD Card support | 745 | # SoC Audio for the Texas Instruments OMAP |
827 | # | 746 | # |
828 | # CONFIG_MMC is not set | ||
829 | 747 | ||
830 | # | 748 | # |
831 | # LED devices | 749 | # Open Sound System |
832 | # | 750 | # |
751 | # CONFIG_SOUND_PRIME is not set | ||
752 | CONFIG_HID_SUPPORT=y | ||
753 | CONFIG_HID=y | ||
754 | # CONFIG_HID_DEBUG is not set | ||
755 | # CONFIG_HIDRAW is not set | ||
756 | # CONFIG_USB_SUPPORT is not set | ||
757 | # CONFIG_MMC is not set | ||
758 | # CONFIG_MEMSTICK is not set | ||
833 | # CONFIG_NEW_LEDS is not set | 759 | # CONFIG_NEW_LEDS is not set |
834 | 760 | # CONFIG_ACCESSIBILITY is not set | |
835 | # | ||
836 | # LED drivers | ||
837 | # | ||
838 | |||
839 | # | ||
840 | # LED Triggers | ||
841 | # | ||
842 | |||
843 | # | ||
844 | # InfiniBand support | ||
845 | # | ||
846 | |||
847 | # | ||
848 | # EDAC - error detection and reporting (RAS) (EXPERIMENTAL) | ||
849 | # | ||
850 | |||
851 | # | ||
852 | # Real Time Clock | ||
853 | # | ||
854 | # CONFIG_RTC_CLASS is not set | 761 | # CONFIG_RTC_CLASS is not set |
855 | 762 | # CONFIG_UIO is not set | |
856 | # | ||
857 | # DMA Engine support | ||
858 | # | ||
859 | # CONFIG_DMA_ENGINE is not set | ||
860 | |||
861 | # | ||
862 | # DMA Clients | ||
863 | # | ||
864 | |||
865 | # | ||
866 | # DMA Devices | ||
867 | # | ||
868 | 763 | ||
869 | # | 764 | # |
870 | # File systems | 765 | # File systems |
871 | # | 766 | # |
872 | # CONFIG_EXT2_FS is not set | 767 | CONFIG_EXT2_FS=y |
873 | # CONFIG_EXT3_FS is not set | 768 | # CONFIG_EXT2_FS_XATTR is not set |
769 | # CONFIG_EXT2_FS_XIP is not set | ||
770 | CONFIG_EXT3_FS=y | ||
771 | CONFIG_EXT3_FS_XATTR=y | ||
772 | # CONFIG_EXT3_FS_POSIX_ACL is not set | ||
773 | # CONFIG_EXT3_FS_SECURITY is not set | ||
774 | # CONFIG_EXT4DEV_FS is not set | ||
775 | CONFIG_JBD=y | ||
776 | CONFIG_FS_MBCACHE=y | ||
874 | # CONFIG_REISERFS_FS is not set | 777 | # CONFIG_REISERFS_FS is not set |
875 | # CONFIG_JFS_FS is not set | 778 | # CONFIG_JFS_FS is not set |
876 | # CONFIG_FS_POSIX_ACL is not set | 779 | # CONFIG_FS_POSIX_ACL is not set |
877 | # CONFIG_XFS_FS is not set | 780 | # CONFIG_XFS_FS is not set |
878 | # CONFIG_OCFS2_FS is not set | 781 | # CONFIG_OCFS2_FS is not set |
879 | # CONFIG_MINIX_FS is not set | 782 | # CONFIG_DNOTIFY is not set |
880 | # CONFIG_ROMFS_FS is not set | ||
881 | # CONFIG_INOTIFY is not set | 783 | # CONFIG_INOTIFY is not set |
882 | # CONFIG_QUOTA is not set | 784 | # CONFIG_QUOTA is not set |
883 | # CONFIG_DNOTIFY is not set | ||
884 | # CONFIG_AUTOFS_FS is not set | 785 | # CONFIG_AUTOFS_FS is not set |
885 | # CONFIG_AUTOFS4_FS is not set | 786 | # CONFIG_AUTOFS4_FS is not set |
886 | # CONFIG_FUSE_FS is not set | 787 | # CONFIG_FUSE_FS is not set |
@@ -909,7 +810,6 @@ CONFIG_TMPFS=y | |||
909 | # CONFIG_TMPFS_POSIX_ACL is not set | 810 | # CONFIG_TMPFS_POSIX_ACL is not set |
910 | # CONFIG_HUGETLBFS is not set | 811 | # CONFIG_HUGETLBFS is not set |
911 | # CONFIG_HUGETLB_PAGE is not set | 812 | # CONFIG_HUGETLB_PAGE is not set |
912 | CONFIG_RAMFS=y | ||
913 | # CONFIG_CONFIGFS_FS is not set | 813 | # CONFIG_CONFIGFS_FS is not set |
914 | 814 | ||
915 | # | 815 | # |
@@ -922,40 +822,39 @@ CONFIG_RAMFS=y | |||
922 | # CONFIG_BEFS_FS is not set | 822 | # CONFIG_BEFS_FS is not set |
923 | # CONFIG_BFS_FS is not set | 823 | # CONFIG_BFS_FS is not set |
924 | # CONFIG_EFS_FS is not set | 824 | # CONFIG_EFS_FS is not set |
925 | # CONFIG_JFFS_FS is not set | ||
926 | CONFIG_JFFS2_FS=y | 825 | CONFIG_JFFS2_FS=y |
927 | CONFIG_JFFS2_FS_DEBUG=0 | 826 | CONFIG_JFFS2_FS_DEBUG=0 |
928 | CONFIG_JFFS2_FS_WRITEBUFFER=y | 827 | CONFIG_JFFS2_FS_WRITEBUFFER=y |
828 | # CONFIG_JFFS2_FS_WBUF_VERIFY is not set | ||
929 | # CONFIG_JFFS2_SUMMARY is not set | 829 | # CONFIG_JFFS2_SUMMARY is not set |
930 | # CONFIG_JFFS2_FS_XATTR is not set | 830 | # CONFIG_JFFS2_FS_XATTR is not set |
931 | # CONFIG_JFFS2_COMPRESSION_OPTIONS is not set | 831 | # CONFIG_JFFS2_COMPRESSION_OPTIONS is not set |
932 | CONFIG_JFFS2_ZLIB=y | 832 | CONFIG_JFFS2_ZLIB=y |
833 | # CONFIG_JFFS2_LZO is not set | ||
933 | CONFIG_JFFS2_RTIME=y | 834 | CONFIG_JFFS2_RTIME=y |
934 | # CONFIG_JFFS2_RUBIN is not set | 835 | # CONFIG_JFFS2_RUBIN is not set |
935 | # CONFIG_CRAMFS is not set | 836 | CONFIG_CRAMFS=y |
936 | # CONFIG_VXFS_FS is not set | 837 | # CONFIG_VXFS_FS is not set |
838 | # CONFIG_MINIX_FS is not set | ||
937 | # CONFIG_HPFS_FS is not set | 839 | # CONFIG_HPFS_FS is not set |
938 | # CONFIG_QNX4FS_FS is not set | 840 | # CONFIG_QNX4FS_FS is not set |
841 | # CONFIG_ROMFS_FS is not set | ||
939 | # CONFIG_SYSV_FS is not set | 842 | # CONFIG_SYSV_FS is not set |
940 | # CONFIG_UFS_FS is not set | 843 | # CONFIG_UFS_FS is not set |
941 | 844 | CONFIG_NETWORK_FILESYSTEMS=y | |
942 | # | ||
943 | # Network File Systems | ||
944 | # | ||
945 | CONFIG_NFS_FS=y | 845 | CONFIG_NFS_FS=y |
946 | CONFIG_NFS_V3=y | 846 | CONFIG_NFS_V3=y |
947 | # CONFIG_NFS_V3_ACL is not set | 847 | # CONFIG_NFS_V3_ACL is not set |
948 | # CONFIG_NFS_V4 is not set | 848 | # CONFIG_NFS_V4 is not set |
949 | # CONFIG_NFS_DIRECTIO is not set | ||
950 | CONFIG_NFSD=y | 849 | CONFIG_NFSD=y |
951 | # CONFIG_NFSD_V3 is not set | 850 | # CONFIG_NFSD_V3 is not set |
952 | # CONFIG_NFSD_TCP is not set | 851 | # CONFIG_NFSD_V4 is not set |
953 | CONFIG_ROOT_NFS=y | ||
954 | CONFIG_LOCKD=y | 852 | CONFIG_LOCKD=y |
955 | CONFIG_LOCKD_V4=y | 853 | CONFIG_LOCKD_V4=y |
956 | CONFIG_EXPORTFS=y | 854 | CONFIG_EXPORTFS=y |
957 | CONFIG_NFS_COMMON=y | 855 | CONFIG_NFS_COMMON=y |
958 | CONFIG_SUNRPC=y | 856 | CONFIG_SUNRPC=y |
857 | # CONFIG_SUNRPC_BIND34 is not set | ||
959 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 858 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
960 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 859 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
961 | # CONFIG_SMB_FS is not set | 860 | # CONFIG_SMB_FS is not set |
@@ -963,56 +862,130 @@ CONFIG_SUNRPC=y | |||
963 | # CONFIG_NCP_FS is not set | 862 | # CONFIG_NCP_FS is not set |
964 | # CONFIG_CODA_FS is not set | 863 | # CONFIG_CODA_FS is not set |
965 | # CONFIG_AFS_FS is not set | 864 | # CONFIG_AFS_FS is not set |
966 | # CONFIG_9P_FS is not set | ||
967 | 865 | ||
968 | # | 866 | # |
969 | # Partition Types | 867 | # Partition Types |
970 | # | 868 | # |
971 | # CONFIG_PARTITION_ADVANCED is not set | 869 | # CONFIG_PARTITION_ADVANCED is not set |
972 | CONFIG_MSDOS_PARTITION=y | 870 | CONFIG_MSDOS_PARTITION=y |
973 | |||
974 | # | ||
975 | # Native Language Support | ||
976 | # | ||
977 | # CONFIG_NLS is not set | 871 | # CONFIG_NLS is not set |
978 | 872 | # CONFIG_DLM is not set | |
979 | # | ||
980 | # Profiling support | ||
981 | # | ||
982 | # CONFIG_PROFILING is not set | ||
983 | 873 | ||
984 | # | 874 | # |
985 | # Kernel hacking | 875 | # Kernel hacking |
986 | # | 876 | # |
877 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y | ||
987 | # CONFIG_PRINTK_TIME is not set | 878 | # CONFIG_PRINTK_TIME is not set |
879 | CONFIG_ENABLE_WARN_DEPRECATED=y | ||
988 | CONFIG_ENABLE_MUST_CHECK=y | 880 | CONFIG_ENABLE_MUST_CHECK=y |
881 | CONFIG_FRAME_WARN=1024 | ||
989 | # CONFIG_MAGIC_SYSRQ is not set | 882 | # CONFIG_MAGIC_SYSRQ is not set |
990 | # CONFIG_UNUSED_SYMBOLS is not set | 883 | # CONFIG_UNUSED_SYMBOLS is not set |
884 | # CONFIG_DEBUG_FS is not set | ||
885 | # CONFIG_HEADERS_CHECK is not set | ||
991 | # CONFIG_DEBUG_KERNEL is not set | 886 | # CONFIG_DEBUG_KERNEL is not set |
992 | CONFIG_LOG_BUF_SHIFT=14 | ||
993 | # CONFIG_DEBUG_BUGVERBOSE is not set | 887 | # CONFIG_DEBUG_BUGVERBOSE is not set |
994 | # CONFIG_DEBUG_FS is not set | 888 | # CONFIG_SAMPLES is not set |
995 | # CONFIG_SH_STANDARD_BIOS is not set | 889 | # CONFIG_SH_STANDARD_BIOS is not set |
996 | # CONFIG_EARLY_SCIF_CONSOLE is not set | 890 | CONFIG_EARLY_SCIF_CONSOLE=y |
997 | # CONFIG_KGDB is not set | 891 | CONFIG_EARLY_SCIF_CONSOLE_PORT=0xffe00000 |
892 | CONFIG_EARLY_PRINTK=y | ||
893 | # CONFIG_SH_KGDB is not set | ||
998 | 894 | ||
999 | # | 895 | # |
1000 | # Security options | 896 | # Security options |
1001 | # | 897 | # |
1002 | # CONFIG_KEYS is not set | 898 | # CONFIG_KEYS is not set |
1003 | # CONFIG_SECURITY is not set | 899 | # CONFIG_SECURITY is not set |
900 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | ||
901 | CONFIG_CRYPTO=y | ||
902 | |||
903 | # | ||
904 | # Crypto core or helper | ||
905 | # | ||
906 | # CONFIG_CRYPTO_MANAGER is not set | ||
907 | # CONFIG_CRYPTO_GF128MUL is not set | ||
908 | # CONFIG_CRYPTO_NULL is not set | ||
909 | # CONFIG_CRYPTO_CRYPTD is not set | ||
910 | # CONFIG_CRYPTO_AUTHENC is not set | ||
911 | # CONFIG_CRYPTO_TEST is not set | ||
912 | |||
913 | # | ||
914 | # Authenticated Encryption with Associated Data | ||
915 | # | ||
916 | # CONFIG_CRYPTO_CCM is not set | ||
917 | # CONFIG_CRYPTO_GCM is not set | ||
918 | # CONFIG_CRYPTO_SEQIV is not set | ||
919 | |||
920 | # | ||
921 | # Block modes | ||
922 | # | ||
923 | # CONFIG_CRYPTO_CBC is not set | ||
924 | # CONFIG_CRYPTO_CTR is not set | ||
925 | # CONFIG_CRYPTO_CTS is not set | ||
926 | # CONFIG_CRYPTO_ECB is not set | ||
927 | # CONFIG_CRYPTO_LRW is not set | ||
928 | # CONFIG_CRYPTO_PCBC is not set | ||
929 | # CONFIG_CRYPTO_XTS is not set | ||
930 | |||
931 | # | ||
932 | # Hash modes | ||
933 | # | ||
934 | # CONFIG_CRYPTO_HMAC is not set | ||
935 | # CONFIG_CRYPTO_XCBC is not set | ||
936 | |||
937 | # | ||
938 | # Digest | ||
939 | # | ||
940 | # CONFIG_CRYPTO_CRC32C is not set | ||
941 | # CONFIG_CRYPTO_MD4 is not set | ||
942 | # CONFIG_CRYPTO_MD5 is not set | ||
943 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
944 | # CONFIG_CRYPTO_SHA1 is not set | ||
945 | # CONFIG_CRYPTO_SHA256 is not set | ||
946 | # CONFIG_CRYPTO_SHA512 is not set | ||
947 | # CONFIG_CRYPTO_TGR192 is not set | ||
948 | # CONFIG_CRYPTO_WP512 is not set | ||
949 | |||
950 | # | ||
951 | # Ciphers | ||
952 | # | ||
953 | # CONFIG_CRYPTO_AES is not set | ||
954 | # CONFIG_CRYPTO_ANUBIS is not set | ||
955 | # CONFIG_CRYPTO_ARC4 is not set | ||
956 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
957 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
958 | # CONFIG_CRYPTO_CAST5 is not set | ||
959 | # CONFIG_CRYPTO_CAST6 is not set | ||
960 | # CONFIG_CRYPTO_DES is not set | ||
961 | # CONFIG_CRYPTO_FCRYPT is not set | ||
962 | # CONFIG_CRYPTO_KHAZAD is not set | ||
963 | # CONFIG_CRYPTO_SALSA20 is not set | ||
964 | # CONFIG_CRYPTO_SEED is not set | ||
965 | # CONFIG_CRYPTO_SERPENT is not set | ||
966 | # CONFIG_CRYPTO_TEA is not set | ||
967 | # CONFIG_CRYPTO_TWOFISH is not set | ||
1004 | 968 | ||
1005 | # | 969 | # |
1006 | # Cryptographic options | 970 | # Compression |
1007 | # | 971 | # |
1008 | # CONFIG_CRYPTO is not set | 972 | # CONFIG_CRYPTO_DEFLATE is not set |
973 | # CONFIG_CRYPTO_LZO is not set | ||
974 | CONFIG_CRYPTO_HW=y | ||
1009 | 975 | ||
1010 | # | 976 | # |
1011 | # Library routines | 977 | # Library routines |
1012 | # | 978 | # |
979 | CONFIG_BITREVERSE=y | ||
980 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | ||
1013 | # CONFIG_CRC_CCITT is not set | 981 | # CONFIG_CRC_CCITT is not set |
1014 | # CONFIG_CRC16 is not set | 982 | # CONFIG_CRC16 is not set |
983 | # CONFIG_CRC_ITU_T is not set | ||
1015 | CONFIG_CRC32=y | 984 | CONFIG_CRC32=y |
985 | # CONFIG_CRC7 is not set | ||
1016 | # CONFIG_LIBCRC32C is not set | 986 | # CONFIG_LIBCRC32C is not set |
1017 | CONFIG_ZLIB_INFLATE=y | 987 | CONFIG_ZLIB_INFLATE=y |
1018 | CONFIG_ZLIB_DEFLATE=y | 988 | CONFIG_ZLIB_DEFLATE=y |
989 | CONFIG_HAS_IOMEM=y | ||
990 | CONFIG_HAS_IOPORT=y | ||
991 | CONFIG_HAS_DMA=y | ||
diff --git a/arch/sh/configs/se7712_defconfig b/arch/sh/configs/se7712_defconfig index 2dd83af988f0..7be79cd04eb0 100644 --- a/arch/sh/configs/se7712_defconfig +++ b/arch/sh/configs/se7712_defconfig | |||
@@ -1,53 +1,57 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.21-rc4 | 3 | # Linux kernel version: 2.6.26-rc6 |
4 | # Wed Mar 28 10:19:02 2007 | 4 | # Wed Jun 18 16:36:08 2008 |
5 | # | 5 | # |
6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
7 | CONFIG_SUPERH32=y | ||
7 | CONFIG_RWSEM_GENERIC_SPINLOCK=y | 8 | CONFIG_RWSEM_GENERIC_SPINLOCK=y |
8 | CONFIG_GENERIC_FIND_NEXT_BIT=y | 9 | CONFIG_GENERIC_FIND_NEXT_BIT=y |
9 | CONFIG_GENERIC_HWEIGHT=y | 10 | CONFIG_GENERIC_HWEIGHT=y |
10 | CONFIG_GENERIC_HARDIRQS=y | 11 | CONFIG_GENERIC_HARDIRQS=y |
11 | CONFIG_GENERIC_IRQ_PROBE=y | 12 | CONFIG_GENERIC_IRQ_PROBE=y |
12 | CONFIG_GENERIC_CALIBRATE_DELAY=y | 13 | CONFIG_GENERIC_CALIBRATE_DELAY=y |
13 | # CONFIG_GENERIC_TIME is not set | 14 | CONFIG_GENERIC_TIME=y |
15 | CONFIG_GENERIC_CLOCKEVENTS=y | ||
14 | CONFIG_STACKTRACE_SUPPORT=y | 16 | CONFIG_STACKTRACE_SUPPORT=y |
15 | CONFIG_LOCKDEP_SUPPORT=y | 17 | CONFIG_LOCKDEP_SUPPORT=y |
16 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | 18 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set |
17 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | 19 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set |
20 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | ||
21 | CONFIG_ARCH_SUPPORTS_AOUT=y | ||
18 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 22 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
19 | 23 | ||
20 | # | 24 | # |
21 | # Code maturity level options | 25 | # General setup |
22 | # | 26 | # |
23 | CONFIG_EXPERIMENTAL=y | 27 | CONFIG_EXPERIMENTAL=y |
24 | CONFIG_BROKEN_ON_SMP=y | 28 | CONFIG_BROKEN_ON_SMP=y |
25 | CONFIG_INIT_ENV_ARG_LIMIT=32 | 29 | CONFIG_INIT_ENV_ARG_LIMIT=32 |
26 | |||
27 | # | ||
28 | # General setup | ||
29 | # | ||
30 | CONFIG_LOCALVERSION="" | 30 | CONFIG_LOCALVERSION="" |
31 | # CONFIG_LOCALVERSION_AUTO is not set | 31 | # CONFIG_LOCALVERSION_AUTO is not set |
32 | # CONFIG_SWAP is not set | 32 | # CONFIG_SWAP is not set |
33 | CONFIG_SYSVIPC=y | 33 | CONFIG_SYSVIPC=y |
34 | # CONFIG_IPC_NS is not set | ||
35 | CONFIG_SYSVIPC_SYSCTL=y | 34 | CONFIG_SYSVIPC_SYSCTL=y |
36 | CONFIG_POSIX_MQUEUE=y | 35 | CONFIG_POSIX_MQUEUE=y |
37 | CONFIG_BSD_PROCESS_ACCT=y | 36 | CONFIG_BSD_PROCESS_ACCT=y |
38 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set | 37 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set |
39 | # CONFIG_TASKSTATS is not set | 38 | # CONFIG_TASKSTATS is not set |
40 | # CONFIG_UTS_NS is not set | ||
41 | # CONFIG_AUDIT is not set | 39 | # CONFIG_AUDIT is not set |
42 | # CONFIG_IKCONFIG is not set | 40 | # CONFIG_IKCONFIG is not set |
41 | CONFIG_LOG_BUF_SHIFT=14 | ||
42 | # CONFIG_CGROUPS is not set | ||
43 | # CONFIG_GROUP_SCHED is not set | ||
43 | CONFIG_SYSFS_DEPRECATED=y | 44 | CONFIG_SYSFS_DEPRECATED=y |
45 | CONFIG_SYSFS_DEPRECATED_V2=y | ||
44 | # CONFIG_RELAY is not set | 46 | # CONFIG_RELAY is not set |
47 | # CONFIG_NAMESPACES is not set | ||
45 | # CONFIG_BLK_DEV_INITRD is not set | 48 | # CONFIG_BLK_DEV_INITRD is not set |
46 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 49 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
47 | CONFIG_SYSCTL=y | 50 | CONFIG_SYSCTL=y |
48 | CONFIG_EMBEDDED=y | 51 | CONFIG_EMBEDDED=y |
49 | CONFIG_UID16=y | 52 | CONFIG_UID16=y |
50 | CONFIG_SYSCTL_SYSCALL=y | 53 | CONFIG_SYSCTL_SYSCALL=y |
54 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
51 | CONFIG_KALLSYMS=y | 55 | CONFIG_KALLSYMS=y |
52 | CONFIG_KALLSYMS_ALL=y | 56 | CONFIG_KALLSYMS_ALL=y |
53 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 57 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
@@ -55,33 +59,41 @@ CONFIG_HOTPLUG=y | |||
55 | CONFIG_PRINTK=y | 59 | CONFIG_PRINTK=y |
56 | # CONFIG_BUG is not set | 60 | # CONFIG_BUG is not set |
57 | CONFIG_ELF_CORE=y | 61 | CONFIG_ELF_CORE=y |
62 | CONFIG_COMPAT_BRK=y | ||
58 | # CONFIG_BASE_FULL is not set | 63 | # CONFIG_BASE_FULL is not set |
59 | CONFIG_FUTEX=y | 64 | CONFIG_FUTEX=y |
65 | CONFIG_ANON_INODES=y | ||
60 | CONFIG_EPOLL=y | 66 | CONFIG_EPOLL=y |
67 | CONFIG_SIGNALFD=y | ||
68 | CONFIG_TIMERFD=y | ||
69 | CONFIG_EVENTFD=y | ||
61 | # CONFIG_SHMEM is not set | 70 | # CONFIG_SHMEM is not set |
62 | CONFIG_SLAB=y | ||
63 | CONFIG_VM_EVENT_COUNTERS=y | 71 | CONFIG_VM_EVENT_COUNTERS=y |
72 | CONFIG_SLAB=y | ||
73 | # CONFIG_SLUB is not set | ||
74 | # CONFIG_SLOB is not set | ||
75 | # CONFIG_PROFILING is not set | ||
76 | # CONFIG_MARKERS is not set | ||
77 | CONFIG_HAVE_OPROFILE=y | ||
78 | # CONFIG_HAVE_KPROBES is not set | ||
79 | # CONFIG_HAVE_KRETPROBES is not set | ||
80 | # CONFIG_HAVE_DMA_ATTRS is not set | ||
81 | CONFIG_PROC_PAGE_MONITOR=y | ||
82 | CONFIG_SLABINFO=y | ||
64 | CONFIG_RT_MUTEXES=y | 83 | CONFIG_RT_MUTEXES=y |
65 | CONFIG_TINY_SHMEM=y | 84 | CONFIG_TINY_SHMEM=y |
66 | CONFIG_BASE_SMALL=1 | 85 | CONFIG_BASE_SMALL=1 |
67 | # CONFIG_SLOB is not set | ||
68 | |||
69 | # | ||
70 | # Loadable module support | ||
71 | # | ||
72 | CONFIG_MODULES=y | 86 | CONFIG_MODULES=y |
87 | # CONFIG_MODULE_FORCE_LOAD is not set | ||
73 | # CONFIG_MODULE_UNLOAD is not set | 88 | # CONFIG_MODULE_UNLOAD is not set |
74 | # CONFIG_MODVERSIONS is not set | 89 | # CONFIG_MODVERSIONS is not set |
75 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 90 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
76 | # CONFIG_KMOD is not set | 91 | # CONFIG_KMOD is not set |
77 | |||
78 | # | ||
79 | # Block layer | ||
80 | # | ||
81 | CONFIG_BLOCK=y | 92 | CONFIG_BLOCK=y |
82 | # CONFIG_LBD is not set | 93 | # CONFIG_LBD is not set |
83 | # CONFIG_BLK_DEV_IO_TRACE is not set | 94 | # CONFIG_BLK_DEV_IO_TRACE is not set |
84 | # CONFIG_LSF is not set | 95 | # CONFIG_LSF is not set |
96 | # CONFIG_BLK_DEV_BSG is not set | ||
85 | 97 | ||
86 | # | 98 | # |
87 | # IO Schedulers | 99 | # IO Schedulers |
@@ -95,57 +107,17 @@ CONFIG_IOSCHED_NOOP=y | |||
95 | # CONFIG_DEFAULT_CFQ is not set | 107 | # CONFIG_DEFAULT_CFQ is not set |
96 | CONFIG_DEFAULT_NOOP=y | 108 | CONFIG_DEFAULT_NOOP=y |
97 | CONFIG_DEFAULT_IOSCHED="noop" | 109 | CONFIG_DEFAULT_IOSCHED="noop" |
110 | CONFIG_CLASSIC_RCU=y | ||
98 | 111 | ||
99 | # | 112 | # |
100 | # System type | 113 | # System type |
101 | # | 114 | # |
102 | CONFIG_SOLUTION_ENGINE=y | ||
103 | CONFIG_SH_SOLUTION_ENGINE=y | ||
104 | # CONFIG_SH_7751_SOLUTION_ENGINE is not set | ||
105 | # CONFIG_SH_7300_SOLUTION_ENGINE is not set | ||
106 | # CONFIG_SH_7343_SOLUTION_ENGINE is not set | ||
107 | # CONFIG_SH_73180_SOLUTION_ENGINE is not set | ||
108 | # CONFIG_SH_7751_SYSTEMH is not set | ||
109 | # CONFIG_SH_HP6XX is not set | ||
110 | # CONFIG_SH_SATURN is not set | ||
111 | # CONFIG_SH_DREAMCAST is not set | ||
112 | # CONFIG_SH_MPC1211 is not set | ||
113 | # CONFIG_SH_SH03 is not set | ||
114 | # CONFIG_SH_SECUREEDGE5410 is not set | ||
115 | # CONFIG_SH_HS7751RVOIP is not set | ||
116 | # CONFIG_SH_7710VOIPGW is not set | ||
117 | # CONFIG_SH_RTS7751R2D is not set | ||
118 | # CONFIG_SH_HIGHLANDER is not set | ||
119 | # CONFIG_SH_EDOSK7705 is not set | ||
120 | # CONFIG_SH_SH4202_MICRODEV is not set | ||
121 | # CONFIG_SH_LANDISK is not set | ||
122 | # CONFIG_SH_TITAN is not set | ||
123 | # CONFIG_SH_SHMIN is not set | ||
124 | # CONFIG_SH_7206_SOLUTION_ENGINE is not set | ||
125 | # CONFIG_SH_7619_SOLUTION_ENGINE is not set | ||
126 | # CONFIG_SH_LBOX_RE2 is not set | ||
127 | # CONFIG_SH_UNKNOWN is not set | ||
128 | |||
129 | # | ||
130 | # Processor selection | ||
131 | # | ||
132 | CONFIG_CPU_SH3=y | 115 | CONFIG_CPU_SH3=y |
133 | |||
134 | # | ||
135 | # SH-2 Processor Support | ||
136 | # | ||
137 | # CONFIG_CPU_SUBTYPE_SH7604 is not set | ||
138 | # CONFIG_CPU_SUBTYPE_SH7619 is not set | 116 | # CONFIG_CPU_SUBTYPE_SH7619 is not set |
139 | 117 | # CONFIG_CPU_SUBTYPE_SH7203 is not set | |
140 | # | ||
141 | # SH-2A Processor Support | ||
142 | # | ||
143 | # CONFIG_CPU_SUBTYPE_SH7206 is not set | 118 | # CONFIG_CPU_SUBTYPE_SH7206 is not set |
144 | 119 | # CONFIG_CPU_SUBTYPE_SH7263 is not set | |
145 | # | 120 | # CONFIG_CPU_SUBTYPE_MXG is not set |
146 | # SH-3 Processor Support | ||
147 | # | ||
148 | # CONFIG_CPU_SUBTYPE_SH7300 is not set | ||
149 | # CONFIG_CPU_SUBTYPE_SH7705 is not set | 121 | # CONFIG_CPU_SUBTYPE_SH7705 is not set |
150 | # CONFIG_CPU_SUBTYPE_SH7706 is not set | 122 | # CONFIG_CPU_SUBTYPE_SH7706 is not set |
151 | # CONFIG_CPU_SUBTYPE_SH7707 is not set | 123 | # CONFIG_CPU_SUBTYPE_SH7707 is not set |
@@ -153,10 +125,8 @@ CONFIG_CPU_SH3=y | |||
153 | # CONFIG_CPU_SUBTYPE_SH7709 is not set | 125 | # CONFIG_CPU_SUBTYPE_SH7709 is not set |
154 | # CONFIG_CPU_SUBTYPE_SH7710 is not set | 126 | # CONFIG_CPU_SUBTYPE_SH7710 is not set |
155 | CONFIG_CPU_SUBTYPE_SH7712=y | 127 | CONFIG_CPU_SUBTYPE_SH7712=y |
156 | 128 | # CONFIG_CPU_SUBTYPE_SH7720 is not set | |
157 | # | 129 | # CONFIG_CPU_SUBTYPE_SH7721 is not set |
158 | # SH-4 Processor Support | ||
159 | # | ||
160 | # CONFIG_CPU_SUBTYPE_SH7750 is not set | 130 | # CONFIG_CPU_SUBTYPE_SH7750 is not set |
161 | # CONFIG_CPU_SUBTYPE_SH7091 is not set | 131 | # CONFIG_CPU_SUBTYPE_SH7091 is not set |
162 | # CONFIG_CPU_SUBTYPE_SH7750R is not set | 132 | # CONFIG_CPU_SUBTYPE_SH7750R is not set |
@@ -165,37 +135,37 @@ CONFIG_CPU_SUBTYPE_SH7712=y | |||
165 | # CONFIG_CPU_SUBTYPE_SH7751R is not set | 135 | # CONFIG_CPU_SUBTYPE_SH7751R is not set |
166 | # CONFIG_CPU_SUBTYPE_SH7760 is not set | 136 | # CONFIG_CPU_SUBTYPE_SH7760 is not set |
167 | # CONFIG_CPU_SUBTYPE_SH4_202 is not set | 137 | # CONFIG_CPU_SUBTYPE_SH4_202 is not set |
168 | 138 | # CONFIG_CPU_SUBTYPE_SH7723 is not set | |
169 | # | 139 | # CONFIG_CPU_SUBTYPE_SH7763 is not set |
170 | # ST40 Processor Support | ||
171 | # | ||
172 | # CONFIG_CPU_SUBTYPE_ST40STB1 is not set | ||
173 | # CONFIG_CPU_SUBTYPE_ST40GX1 is not set | ||
174 | |||
175 | # | ||
176 | # SH-4A Processor Support | ||
177 | # | ||
178 | # CONFIG_CPU_SUBTYPE_SH7770 is not set | 140 | # CONFIG_CPU_SUBTYPE_SH7770 is not set |
179 | # CONFIG_CPU_SUBTYPE_SH7780 is not set | 141 | # CONFIG_CPU_SUBTYPE_SH7780 is not set |
180 | # CONFIG_CPU_SUBTYPE_SH7785 is not set | 142 | # CONFIG_CPU_SUBTYPE_SH7785 is not set |
181 | 143 | # CONFIG_CPU_SUBTYPE_SHX3 is not set | |
182 | # | ||
183 | # SH4AL-DSP Processor Support | ||
184 | # | ||
185 | # CONFIG_CPU_SUBTYPE_SH73180 is not set | ||
186 | # CONFIG_CPU_SUBTYPE_SH7343 is not set | 144 | # CONFIG_CPU_SUBTYPE_SH7343 is not set |
187 | # CONFIG_CPU_SUBTYPE_SH7722 is not set | 145 | # CONFIG_CPU_SUBTYPE_SH7722 is not set |
146 | # CONFIG_CPU_SUBTYPE_SH7366 is not set | ||
147 | # CONFIG_CPU_SUBTYPE_SH5_101 is not set | ||
148 | # CONFIG_CPU_SUBTYPE_SH5_103 is not set | ||
188 | 149 | ||
189 | # | 150 | # |
190 | # Memory management options | 151 | # Memory management options |
191 | # | 152 | # |
153 | CONFIG_QUICKLIST=y | ||
192 | CONFIG_MMU=y | 154 | CONFIG_MMU=y |
193 | CONFIG_PAGE_OFFSET=0x80000000 | 155 | CONFIG_PAGE_OFFSET=0x80000000 |
194 | CONFIG_MEMORY_START=0x0c000000 | 156 | CONFIG_MEMORY_START=0x0c000000 |
195 | CONFIG_MEMORY_SIZE=0x02000000 | 157 | CONFIG_MEMORY_SIZE=0x02000000 |
158 | CONFIG_29BIT=y | ||
196 | CONFIG_VSYSCALL=y | 159 | CONFIG_VSYSCALL=y |
160 | CONFIG_ARCH_FLATMEM_ENABLE=y | ||
161 | CONFIG_ARCH_SPARSEMEM_ENABLE=y | ||
162 | CONFIG_ARCH_SPARSEMEM_DEFAULT=y | ||
163 | CONFIG_MAX_ACTIVE_REGIONS=1 | ||
164 | CONFIG_ARCH_POPULATES_NODE_MAP=y | ||
165 | CONFIG_ARCH_SELECT_MEMORY_MODEL=y | ||
197 | CONFIG_PAGE_SIZE_4KB=y | 166 | CONFIG_PAGE_SIZE_4KB=y |
198 | # CONFIG_PAGE_SIZE_8KB is not set | 167 | # CONFIG_PAGE_SIZE_8KB is not set |
168 | # CONFIG_PAGE_SIZE_16KB is not set | ||
199 | # CONFIG_PAGE_SIZE_64KB is not set | 169 | # CONFIG_PAGE_SIZE_64KB is not set |
200 | CONFIG_SELECT_MEMORY_MODEL=y | 170 | CONFIG_SELECT_MEMORY_MODEL=y |
201 | CONFIG_FLATMEM_MANUAL=y | 171 | CONFIG_FLATMEM_MANUAL=y |
@@ -203,21 +173,21 @@ CONFIG_FLATMEM_MANUAL=y | |||
203 | # CONFIG_SPARSEMEM_MANUAL is not set | 173 | # CONFIG_SPARSEMEM_MANUAL is not set |
204 | CONFIG_FLATMEM=y | 174 | CONFIG_FLATMEM=y |
205 | CONFIG_FLAT_NODE_MEM_MAP=y | 175 | CONFIG_FLAT_NODE_MEM_MAP=y |
206 | # CONFIG_SPARSEMEM_STATIC is not set | 176 | CONFIG_SPARSEMEM_STATIC=y |
177 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | ||
178 | CONFIG_PAGEFLAGS_EXTENDED=y | ||
207 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 179 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
208 | # CONFIG_RESOURCES_64BIT is not set | 180 | # CONFIG_RESOURCES_64BIT is not set |
209 | CONFIG_ZONE_DMA_FLAG=0 | 181 | CONFIG_ZONE_DMA_FLAG=0 |
182 | CONFIG_NR_QUICK=2 | ||
210 | 183 | ||
211 | # | 184 | # |
212 | # Cache configuration | 185 | # Cache configuration |
213 | # | 186 | # |
214 | # CONFIG_SH_DIRECT_MAPPED is not set | 187 | # CONFIG_SH_DIRECT_MAPPED is not set |
215 | # CONFIG_SH_WRITETHROUGH is not set | 188 | CONFIG_CACHE_WRITEBACK=y |
216 | # CONFIG_SH_OCRAM is not set | 189 | # CONFIG_CACHE_WRITETHROUGH is not set |
217 | CONFIG_CF_ENABLER=y | 190 | # CONFIG_CACHE_OFF is not set |
218 | # CONFIG_CF_AREA5 is not set | ||
219 | CONFIG_CF_AREA6=y | ||
220 | CONFIG_CF_BASE_ADDR=0xb8000000 | ||
221 | 191 | ||
222 | # | 192 | # |
223 | # Processor features | 193 | # Processor features |
@@ -230,6 +200,14 @@ CONFIG_CPU_LITTLE_ENDIAN=y | |||
230 | CONFIG_CPU_HAS_INTEVT=y | 200 | CONFIG_CPU_HAS_INTEVT=y |
231 | CONFIG_CPU_HAS_IPR_IRQ=y | 201 | CONFIG_CPU_HAS_IPR_IRQ=y |
232 | CONFIG_CPU_HAS_SR_RB=y | 202 | CONFIG_CPU_HAS_SR_RB=y |
203 | CONFIG_CPU_HAS_DSP=y | ||
204 | |||
205 | # | ||
206 | # Board support | ||
207 | # | ||
208 | CONFIG_SOLUTION_ENGINE=y | ||
209 | CONFIG_SH_SOLUTION_ENGINE=y | ||
210 | # CONFIG_SH_AP325RXA is not set | ||
233 | 211 | ||
234 | # | 212 | # |
235 | # Timer and clock configuration | 213 | # Timer and clock configuration |
@@ -237,6 +215,10 @@ CONFIG_CPU_HAS_SR_RB=y | |||
237 | CONFIG_SH_TMU=y | 215 | CONFIG_SH_TMU=y |
238 | CONFIG_SH_TIMER_IRQ=16 | 216 | CONFIG_SH_TIMER_IRQ=16 |
239 | CONFIG_SH_PCLK_FREQ=66666666 | 217 | CONFIG_SH_PCLK_FREQ=66666666 |
218 | # CONFIG_TICK_ONESHOT is not set | ||
219 | # CONFIG_NO_HZ is not set | ||
220 | # CONFIG_HIGH_RES_TIMERS is not set | ||
221 | CONFIG_GENERIC_CLOCKEVENTS_BUILD=y | ||
240 | 222 | ||
241 | # | 223 | # |
242 | # CPU Frequency scaling | 224 | # CPU Frequency scaling |
@@ -251,7 +233,6 @@ CONFIG_SH_PCLK_FREQ=66666666 | |||
251 | # | 233 | # |
252 | # Companion Chips | 234 | # Companion Chips |
253 | # | 235 | # |
254 | # CONFIG_HD6446X_SERIES is not set | ||
255 | 236 | ||
256 | # | 237 | # |
257 | # Additional SuperH Device Drivers | 238 | # Additional SuperH Device Drivers |
@@ -267,48 +248,40 @@ CONFIG_HZ_250=y | |||
267 | # CONFIG_HZ_300 is not set | 248 | # CONFIG_HZ_300 is not set |
268 | # CONFIG_HZ_1000 is not set | 249 | # CONFIG_HZ_1000 is not set |
269 | CONFIG_HZ=250 | 250 | CONFIG_HZ=250 |
251 | # CONFIG_SCHED_HRTICK is not set | ||
270 | # CONFIG_KEXEC is not set | 252 | # CONFIG_KEXEC is not set |
271 | # CONFIG_SMP is not set | 253 | # CONFIG_CRASH_DUMP is not set |
272 | # CONFIG_PREEMPT_NONE is not set | 254 | # CONFIG_PREEMPT_NONE is not set |
273 | CONFIG_PREEMPT_VOLUNTARY=y | 255 | CONFIG_PREEMPT_VOLUNTARY=y |
274 | # CONFIG_PREEMPT is not set | 256 | # CONFIG_PREEMPT is not set |
257 | CONFIG_GUSA=y | ||
258 | # CONFIG_GUSA_RB is not set | ||
275 | 259 | ||
276 | # | 260 | # |
277 | # Boot options | 261 | # Boot options |
278 | # | 262 | # |
279 | CONFIG_ZERO_PAGE_OFFSET=0x00001000 | 263 | CONFIG_ZERO_PAGE_OFFSET=0x00001000 |
280 | CONFIG_BOOT_LINK_OFFSET=0x00800000 | 264 | CONFIG_BOOT_LINK_OFFSET=0x00800000 |
281 | # CONFIG_UBC_WAKEUP is not set | ||
282 | CONFIG_CMDLINE_BOOL=y | 265 | CONFIG_CMDLINE_BOOL=y |
283 | CONFIG_CMDLINE="console=ttySC0,115200 root=/dev/sda1" | 266 | CONFIG_CMDLINE="console=ttySC0,115200 root=/dev/sda1" |
284 | 267 | ||
285 | # | 268 | # |
286 | # Bus options | 269 | # Bus options |
287 | # | 270 | # |
288 | # CONFIG_PCI is not set | 271 | CONFIG_CF_ENABLER=y |
289 | 272 | # CONFIG_CF_AREA5 is not set | |
290 | # | 273 | CONFIG_CF_AREA6=y |
291 | # PCCARD (PCMCIA/CardBus) support | 274 | CONFIG_CF_BASE_ADDR=0xb8000000 |
292 | # | 275 | # CONFIG_ARCH_SUPPORTS_MSI is not set |
293 | # CONFIG_PCCARD is not set | 276 | # CONFIG_PCCARD is not set |
294 | 277 | ||
295 | # | 278 | # |
296 | # PCI Hotplug Support | ||
297 | # | ||
298 | |||
299 | # | ||
300 | # Executable file formats | 279 | # Executable file formats |
301 | # | 280 | # |
302 | CONFIG_BINFMT_ELF=y | 281 | CONFIG_BINFMT_ELF=y |
303 | # CONFIG_BINFMT_FLAT is not set | ||
304 | # CONFIG_BINFMT_MISC is not set | 282 | # CONFIG_BINFMT_MISC is not set |
305 | 283 | ||
306 | # | 284 | # |
307 | # Power management options (EXPERIMENTAL) | ||
308 | # | ||
309 | # CONFIG_PM is not set | ||
310 | |||
311 | # | ||
312 | # Networking | 285 | # Networking |
313 | # | 286 | # |
314 | CONFIG_NET=y | 287 | CONFIG_NET=y |
@@ -316,7 +289,6 @@ CONFIG_NET=y | |||
316 | # | 289 | # |
317 | # Networking options | 290 | # Networking options |
318 | # | 291 | # |
319 | # CONFIG_NETDEBUG is not set | ||
320 | CONFIG_PACKET=y | 292 | CONFIG_PACKET=y |
321 | CONFIG_PACKET_MMAP=y | 293 | CONFIG_PACKET_MMAP=y |
322 | CONFIG_UNIX=y | 294 | CONFIG_UNIX=y |
@@ -324,6 +296,7 @@ CONFIG_XFRM=y | |||
324 | # CONFIG_XFRM_USER is not set | 296 | # CONFIG_XFRM_USER is not set |
325 | # CONFIG_XFRM_SUB_POLICY is not set | 297 | # CONFIG_XFRM_SUB_POLICY is not set |
326 | # CONFIG_XFRM_MIGRATE is not set | 298 | # CONFIG_XFRM_MIGRATE is not set |
299 | # CONFIG_XFRM_STATISTICS is not set | ||
327 | CONFIG_NET_KEY=y | 300 | CONFIG_NET_KEY=y |
328 | # CONFIG_NET_KEY_MIGRATE is not set | 301 | # CONFIG_NET_KEY_MIGRATE is not set |
329 | CONFIG_INET=y | 302 | CONFIG_INET=y |
@@ -334,11 +307,10 @@ CONFIG_ASK_IP_FIB_HASH=y | |||
334 | CONFIG_IP_FIB_HASH=y | 307 | CONFIG_IP_FIB_HASH=y |
335 | CONFIG_IP_MULTIPLE_TABLES=y | 308 | CONFIG_IP_MULTIPLE_TABLES=y |
336 | CONFIG_IP_ROUTE_MULTIPATH=y | 309 | CONFIG_IP_ROUTE_MULTIPATH=y |
337 | # CONFIG_IP_ROUTE_MULTIPATH_CACHED is not set | ||
338 | CONFIG_IP_ROUTE_VERBOSE=y | 310 | CONFIG_IP_ROUTE_VERBOSE=y |
339 | CONFIG_IP_PNP=y | 311 | CONFIG_IP_PNP=y |
340 | CONFIG_IP_PNP_DHCP=y | 312 | CONFIG_IP_PNP_DHCP=y |
341 | # CONFIG_IP_PNP_BOOTP is not set | 313 | CONFIG_IP_PNP_BOOTP=y |
342 | # CONFIG_IP_PNP_RARP is not set | 314 | # CONFIG_IP_PNP_RARP is not set |
343 | # CONFIG_NET_IPIP is not set | 315 | # CONFIG_NET_IPIP is not set |
344 | # CONFIG_NET_IPGRE is not set | 316 | # CONFIG_NET_IPGRE is not set |
@@ -355,30 +327,17 @@ CONFIG_INET_TUNNEL=y | |||
355 | CONFIG_INET_XFRM_MODE_TRANSPORT=y | 327 | CONFIG_INET_XFRM_MODE_TRANSPORT=y |
356 | CONFIG_INET_XFRM_MODE_TUNNEL=y | 328 | CONFIG_INET_XFRM_MODE_TUNNEL=y |
357 | CONFIG_INET_XFRM_MODE_BEET=y | 329 | CONFIG_INET_XFRM_MODE_BEET=y |
330 | # CONFIG_INET_LRO is not set | ||
358 | # CONFIG_INET_DIAG is not set | 331 | # CONFIG_INET_DIAG is not set |
359 | # CONFIG_TCP_CONG_ADVANCED is not set | 332 | # CONFIG_TCP_CONG_ADVANCED is not set |
360 | CONFIG_TCP_CONG_CUBIC=y | 333 | CONFIG_TCP_CONG_CUBIC=y |
361 | CONFIG_DEFAULT_TCP_CONG="cubic" | 334 | CONFIG_DEFAULT_TCP_CONG="cubic" |
362 | # CONFIG_TCP_MD5SIG is not set | 335 | # CONFIG_TCP_MD5SIG is not set |
363 | # CONFIG_IPV6 is not set | 336 | # CONFIG_IPV6 is not set |
364 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
365 | # CONFIG_INET6_TUNNEL is not set | ||
366 | # CONFIG_NETWORK_SECMARK is not set | 337 | # CONFIG_NETWORK_SECMARK is not set |
367 | # CONFIG_NETFILTER is not set | 338 | # CONFIG_NETFILTER is not set |
368 | |||
369 | # | ||
370 | # DCCP Configuration (EXPERIMENTAL) | ||
371 | # | ||
372 | # CONFIG_IP_DCCP is not set | 339 | # CONFIG_IP_DCCP is not set |
373 | |||
374 | # | ||
375 | # SCTP Configuration (EXPERIMENTAL) | ||
376 | # | ||
377 | # CONFIG_IP_SCTP is not set | 340 | # CONFIG_IP_SCTP is not set |
378 | |||
379 | # | ||
380 | # TIPC Configuration (EXPERIMENTAL) | ||
381 | # | ||
382 | # CONFIG_TIPC is not set | 341 | # CONFIG_TIPC is not set |
383 | # CONFIG_ATM is not set | 342 | # CONFIG_ATM is not set |
384 | # CONFIG_BRIDGE is not set | 343 | # CONFIG_BRIDGE is not set |
@@ -391,15 +350,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
391 | # CONFIG_LAPB is not set | 350 | # CONFIG_LAPB is not set |
392 | # CONFIG_ECONET is not set | 351 | # CONFIG_ECONET is not set |
393 | # CONFIG_WAN_ROUTER is not set | 352 | # CONFIG_WAN_ROUTER is not set |
394 | |||
395 | # | ||
396 | # QoS and/or fair queueing | ||
397 | # | ||
398 | CONFIG_NET_SCHED=y | 353 | CONFIG_NET_SCHED=y |
399 | CONFIG_NET_SCH_FIFO=y | ||
400 | CONFIG_NET_SCH_CLK_JIFFIES=y | ||
401 | # CONFIG_NET_SCH_CLK_GETTIMEOFDAY is not set | ||
402 | # CONFIG_NET_SCH_CLK_CPU is not set | ||
403 | 354 | ||
404 | # | 355 | # |
405 | # Queueing/Scheduling | 356 | # Queueing/Scheduling |
@@ -408,6 +359,7 @@ CONFIG_NET_SCH_CBQ=y | |||
408 | CONFIG_NET_SCH_HTB=y | 359 | CONFIG_NET_SCH_HTB=y |
409 | CONFIG_NET_SCH_HFSC=y | 360 | CONFIG_NET_SCH_HFSC=y |
410 | CONFIG_NET_SCH_PRIO=y | 361 | CONFIG_NET_SCH_PRIO=y |
362 | # CONFIG_NET_SCH_RR is not set | ||
411 | CONFIG_NET_SCH_RED=y | 363 | CONFIG_NET_SCH_RED=y |
412 | CONFIG_NET_SCH_SFQ=y | 364 | CONFIG_NET_SCH_SFQ=y |
413 | CONFIG_NET_SCH_TEQL=y | 365 | CONFIG_NET_SCH_TEQL=y |
@@ -415,7 +367,6 @@ CONFIG_NET_SCH_TBF=y | |||
415 | CONFIG_NET_SCH_GRED=y | 367 | CONFIG_NET_SCH_GRED=y |
416 | CONFIG_NET_SCH_DSMARK=y | 368 | CONFIG_NET_SCH_DSMARK=y |
417 | CONFIG_NET_SCH_NETEM=y | 369 | CONFIG_NET_SCH_NETEM=y |
418 | CONFIG_NET_SCH_INGRESS=y | ||
419 | 370 | ||
420 | # | 371 | # |
421 | # Classification | 372 | # Classification |
@@ -429,50 +380,55 @@ CONFIG_NET_CLS_FW=y | |||
429 | # CONFIG_NET_CLS_U32 is not set | 380 | # CONFIG_NET_CLS_U32 is not set |
430 | # CONFIG_NET_CLS_RSVP is not set | 381 | # CONFIG_NET_CLS_RSVP is not set |
431 | # CONFIG_NET_CLS_RSVP6 is not set | 382 | # CONFIG_NET_CLS_RSVP6 is not set |
383 | # CONFIG_NET_CLS_FLOW is not set | ||
432 | # CONFIG_NET_EMATCH is not set | 384 | # CONFIG_NET_EMATCH is not set |
433 | # CONFIG_NET_CLS_ACT is not set | 385 | # CONFIG_NET_CLS_ACT is not set |
434 | # CONFIG_NET_CLS_POLICE is not set | ||
435 | CONFIG_NET_CLS_IND=y | 386 | CONFIG_NET_CLS_IND=y |
436 | CONFIG_NET_ESTIMATOR=y | 387 | CONFIG_NET_SCH_FIFO=y |
437 | 388 | ||
438 | # | 389 | # |
439 | # Network testing | 390 | # Network testing |
440 | # | 391 | # |
441 | # CONFIG_NET_PKTGEN is not set | 392 | # CONFIG_NET_PKTGEN is not set |
442 | # CONFIG_HAMRADIO is not set | 393 | # CONFIG_HAMRADIO is not set |
394 | # CONFIG_CAN is not set | ||
443 | # CONFIG_IRDA is not set | 395 | # CONFIG_IRDA is not set |
444 | # CONFIG_BT is not set | 396 | # CONFIG_BT is not set |
445 | # CONFIG_IEEE80211 is not set | 397 | # CONFIG_AF_RXRPC is not set |
446 | CONFIG_FIB_RULES=y | 398 | CONFIG_FIB_RULES=y |
447 | 399 | ||
448 | # | 400 | # |
401 | # Wireless | ||
402 | # | ||
403 | # CONFIG_CFG80211 is not set | ||
404 | # CONFIG_WIRELESS_EXT is not set | ||
405 | # CONFIG_MAC80211 is not set | ||
406 | # CONFIG_IEEE80211 is not set | ||
407 | # CONFIG_RFKILL is not set | ||
408 | # CONFIG_NET_9P is not set | ||
409 | |||
410 | # | ||
449 | # Device Drivers | 411 | # Device Drivers |
450 | # | 412 | # |
451 | 413 | ||
452 | # | 414 | # |
453 | # Generic Driver Options | 415 | # Generic Driver Options |
454 | # | 416 | # |
417 | CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" | ||
455 | CONFIG_STANDALONE=y | 418 | CONFIG_STANDALONE=y |
456 | CONFIG_PREVENT_FIRMWARE_BUILD=y | 419 | CONFIG_PREVENT_FIRMWARE_BUILD=y |
457 | CONFIG_FW_LOADER=y | 420 | CONFIG_FW_LOADER=y |
458 | # CONFIG_DEBUG_DRIVER is not set | 421 | # CONFIG_DEBUG_DRIVER is not set |
459 | # CONFIG_DEBUG_DEVRES is not set | 422 | # CONFIG_DEBUG_DEVRES is not set |
460 | # CONFIG_SYS_HYPERVISOR is not set | 423 | # CONFIG_SYS_HYPERVISOR is not set |
461 | |||
462 | # | ||
463 | # Connector - unified userspace <-> kernelspace linker | ||
464 | # | ||
465 | # CONFIG_CONNECTOR is not set | 424 | # CONFIG_CONNECTOR is not set |
466 | |||
467 | # | ||
468 | # Memory Technology Devices (MTD) | ||
469 | # | ||
470 | CONFIG_MTD=y | 425 | CONFIG_MTD=y |
471 | # CONFIG_MTD_DEBUG is not set | 426 | # CONFIG_MTD_DEBUG is not set |
472 | CONFIG_MTD_CONCAT=y | 427 | CONFIG_MTD_CONCAT=y |
473 | CONFIG_MTD_PARTITIONS=y | 428 | CONFIG_MTD_PARTITIONS=y |
474 | # CONFIG_MTD_REDBOOT_PARTS is not set | 429 | # CONFIG_MTD_REDBOOT_PARTS is not set |
475 | # CONFIG_MTD_CMDLINE_PARTS is not set | 430 | # CONFIG_MTD_CMDLINE_PARTS is not set |
431 | # CONFIG_MTD_AR7_PARTS is not set | ||
476 | 432 | ||
477 | # | 433 | # |
478 | # User Modules And Translation Layers | 434 | # User Modules And Translation Layers |
@@ -485,6 +441,7 @@ CONFIG_MTD_BLOCK=y | |||
485 | # CONFIG_INFTL is not set | 441 | # CONFIG_INFTL is not set |
486 | # CONFIG_RFD_FTL is not set | 442 | # CONFIG_RFD_FTL is not set |
487 | # CONFIG_SSFDC is not set | 443 | # CONFIG_SSFDC is not set |
444 | # CONFIG_MTD_OOPS is not set | ||
488 | 445 | ||
489 | # | 446 | # |
490 | # RAM/ROM/Flash chip drivers | 447 | # RAM/ROM/Flash chip drivers |
@@ -510,7 +467,6 @@ CONFIG_MTD_CFI_UTIL=y | |||
510 | # CONFIG_MTD_RAM is not set | 467 | # CONFIG_MTD_RAM is not set |
511 | # CONFIG_MTD_ROM is not set | 468 | # CONFIG_MTD_ROM is not set |
512 | # CONFIG_MTD_ABSENT is not set | 469 | # CONFIG_MTD_ABSENT is not set |
513 | # CONFIG_MTD_OBSOLETE_CHIPS is not set | ||
514 | 470 | ||
515 | # | 471 | # |
516 | # Mapping drivers for chip access | 472 | # Mapping drivers for chip access |
@@ -533,44 +489,25 @@ CONFIG_MTD_CFI_UTIL=y | |||
533 | # CONFIG_MTD_DOC2000 is not set | 489 | # CONFIG_MTD_DOC2000 is not set |
534 | # CONFIG_MTD_DOC2001 is not set | 490 | # CONFIG_MTD_DOC2001 is not set |
535 | # CONFIG_MTD_DOC2001PLUS is not set | 491 | # CONFIG_MTD_DOC2001PLUS is not set |
536 | |||
537 | # | ||
538 | # NAND Flash Device Drivers | ||
539 | # | ||
540 | # CONFIG_MTD_NAND is not set | 492 | # CONFIG_MTD_NAND is not set |
541 | |||
542 | # | ||
543 | # OneNAND Flash Device Drivers | ||
544 | # | ||
545 | # CONFIG_MTD_ONENAND is not set | 493 | # CONFIG_MTD_ONENAND is not set |
546 | 494 | ||
547 | # | 495 | # |
548 | # Parallel port support | 496 | # UBI - Unsorted block images |
549 | # | 497 | # |
498 | # CONFIG_MTD_UBI is not set | ||
550 | # CONFIG_PARPORT is not set | 499 | # CONFIG_PARPORT is not set |
551 | 500 | CONFIG_BLK_DEV=y | |
552 | # | ||
553 | # Plug and Play support | ||
554 | # | ||
555 | # CONFIG_PNPACPI is not set | ||
556 | |||
557 | # | ||
558 | # Block devices | ||
559 | # | ||
560 | # CONFIG_BLK_DEV_COW_COMMON is not set | 501 | # CONFIG_BLK_DEV_COW_COMMON is not set |
561 | # CONFIG_BLK_DEV_LOOP is not set | 502 | # CONFIG_BLK_DEV_LOOP is not set |
562 | # CONFIG_BLK_DEV_NBD is not set | 503 | # CONFIG_BLK_DEV_NBD is not set |
563 | # CONFIG_BLK_DEV_RAM is not set | 504 | # CONFIG_BLK_DEV_RAM is not set |
564 | # CONFIG_CDROM_PKTCDVD is not set | 505 | # CONFIG_CDROM_PKTCDVD is not set |
565 | # CONFIG_ATA_OVER_ETH is not set | 506 | # CONFIG_ATA_OVER_ETH is not set |
566 | 507 | CONFIG_MISC_DEVICES=y | |
567 | # | 508 | # CONFIG_EEPROM_93CX6 is not set |
568 | # Misc devices | 509 | # CONFIG_ENCLOSURE_SERVICES is not set |
569 | # | 510 | CONFIG_HAVE_IDE=y |
570 | |||
571 | # | ||
572 | # ATA/ATAPI/MFM/RLL support | ||
573 | # | ||
574 | # CONFIG_IDE is not set | 511 | # CONFIG_IDE is not set |
575 | 512 | ||
576 | # | 513 | # |
@@ -578,6 +515,7 @@ CONFIG_MTD_CFI_UTIL=y | |||
578 | # | 515 | # |
579 | # CONFIG_RAID_ATTRS is not set | 516 | # CONFIG_RAID_ATTRS is not set |
580 | CONFIG_SCSI=y | 517 | CONFIG_SCSI=y |
518 | CONFIG_SCSI_DMA=y | ||
581 | # CONFIG_SCSI_TGT is not set | 519 | # CONFIG_SCSI_TGT is not set |
582 | # CONFIG_SCSI_NETLINK is not set | 520 | # CONFIG_SCSI_NETLINK is not set |
583 | CONFIG_SCSI_PROC_FS=y | 521 | CONFIG_SCSI_PROC_FS=y |
@@ -599,6 +537,7 @@ CONFIG_BLK_DEV_SD=y | |||
599 | # CONFIG_SCSI_CONSTANTS is not set | 537 | # CONFIG_SCSI_CONSTANTS is not set |
600 | # CONFIG_SCSI_LOGGING is not set | 538 | # CONFIG_SCSI_LOGGING is not set |
601 | # CONFIG_SCSI_SCAN_ASYNC is not set | 539 | # CONFIG_SCSI_SCAN_ASYNC is not set |
540 | CONFIG_SCSI_WAIT_SCAN=m | ||
602 | 541 | ||
603 | # | 542 | # |
604 | # SCSI Transports | 543 | # SCSI Transports |
@@ -606,94 +545,72 @@ CONFIG_BLK_DEV_SD=y | |||
606 | # CONFIG_SCSI_SPI_ATTRS is not set | 545 | # CONFIG_SCSI_SPI_ATTRS is not set |
607 | # CONFIG_SCSI_FC_ATTRS is not set | 546 | # CONFIG_SCSI_FC_ATTRS is not set |
608 | # CONFIG_SCSI_ISCSI_ATTRS is not set | 547 | # CONFIG_SCSI_ISCSI_ATTRS is not set |
609 | # CONFIG_SCSI_SAS_ATTRS is not set | ||
610 | # CONFIG_SCSI_SAS_LIBSAS is not set | 548 | # CONFIG_SCSI_SAS_LIBSAS is not set |
611 | 549 | # CONFIG_SCSI_SRP_ATTRS is not set | |
612 | # | 550 | CONFIG_SCSI_LOWLEVEL=y |
613 | # SCSI low-level drivers | ||
614 | # | ||
615 | # CONFIG_ISCSI_TCP is not set | 551 | # CONFIG_ISCSI_TCP is not set |
616 | # CONFIG_SCSI_DEBUG is not set | 552 | # CONFIG_SCSI_DEBUG is not set |
617 | |||
618 | # | ||
619 | # Serial ATA (prod) and Parallel ATA (experimental) drivers | ||
620 | # | ||
621 | CONFIG_ATA=y | 553 | CONFIG_ATA=y |
622 | # CONFIG_ATA_NONSTANDARD is not set | 554 | # CONFIG_ATA_NONSTANDARD is not set |
555 | CONFIG_SATA_PMP=y | ||
556 | CONFIG_ATA_SFF=y | ||
557 | # CONFIG_SATA_MV is not set | ||
623 | CONFIG_PATA_PLATFORM=y | 558 | CONFIG_PATA_PLATFORM=y |
624 | |||
625 | # | ||
626 | # Multi-device support (RAID and LVM) | ||
627 | # | ||
628 | # CONFIG_MD is not set | 559 | # CONFIG_MD is not set |
629 | |||
630 | # | ||
631 | # Fusion MPT device support | ||
632 | # | ||
633 | # CONFIG_FUSION is not set | ||
634 | |||
635 | # | ||
636 | # IEEE 1394 (FireWire) support | ||
637 | # | ||
638 | |||
639 | # | ||
640 | # I2O device support | ||
641 | # | ||
642 | |||
643 | # | ||
644 | # Network device support | ||
645 | # | ||
646 | CONFIG_NETDEVICES=y | 560 | CONFIG_NETDEVICES=y |
561 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
647 | # CONFIG_DUMMY is not set | 562 | # CONFIG_DUMMY is not set |
648 | # CONFIG_BONDING is not set | 563 | # CONFIG_BONDING is not set |
564 | # CONFIG_MACVLAN is not set | ||
649 | # CONFIG_EQUALIZER is not set | 565 | # CONFIG_EQUALIZER is not set |
650 | # CONFIG_TUN is not set | 566 | # CONFIG_TUN is not set |
651 | 567 | # CONFIG_VETH is not set | |
652 | # | 568 | CONFIG_PHYLIB=y |
653 | # PHY device support | 569 | |
654 | # | 570 | # |
655 | 571 | # MII PHY device drivers | |
656 | # | 572 | # |
657 | # Ethernet (10 or 100Mbit) | 573 | # CONFIG_MARVELL_PHY is not set |
658 | # | 574 | # CONFIG_DAVICOM_PHY is not set |
659 | # CONFIG_NET_ETHERNET is not set | 575 | # CONFIG_QSEMI_PHY is not set |
660 | 576 | # CONFIG_LXT_PHY is not set | |
661 | # | 577 | # CONFIG_CICADA_PHY is not set |
662 | # Ethernet (1000 Mbit) | 578 | # CONFIG_VITESSE_PHY is not set |
663 | # | 579 | # CONFIG_SMSC_PHY is not set |
664 | 580 | # CONFIG_BROADCOM_PHY is not set | |
665 | # | 581 | # CONFIG_ICPLUS_PHY is not set |
666 | # Ethernet (10000 Mbit) | 582 | # CONFIG_REALTEK_PHY is not set |
667 | # | 583 | # CONFIG_FIXED_PHY is not set |
668 | 584 | CONFIG_MDIO_BITBANG=y | |
669 | # | 585 | CONFIG_NET_ETHERNET=y |
670 | # Token Ring devices | 586 | CONFIG_MII=y |
671 | # | 587 | # CONFIG_AX88796 is not set |
672 | 588 | # CONFIG_STNIC is not set | |
673 | # | 589 | CONFIG_SH_ETH=y |
674 | # Wireless LAN (non-hamradio) | 590 | # CONFIG_SMC91X is not set |
675 | # | 591 | # CONFIG_SMC911X is not set |
676 | # CONFIG_NET_RADIO is not set | 592 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
677 | 593 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | |
678 | # | 594 | # CONFIG_IBM_NEW_EMAC_TAH is not set |
679 | # Wan interfaces | 595 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set |
680 | # | 596 | # CONFIG_B44 is not set |
597 | CONFIG_NETDEV_1000=y | ||
598 | # CONFIG_E1000E_ENABLED is not set | ||
599 | CONFIG_NETDEV_10000=y | ||
600 | |||
601 | # | ||
602 | # Wireless LAN | ||
603 | # | ||
604 | # CONFIG_WLAN_PRE80211 is not set | ||
605 | # CONFIG_WLAN_80211 is not set | ||
606 | # CONFIG_IWLWIFI_LEDS is not set | ||
681 | # CONFIG_WAN is not set | 607 | # CONFIG_WAN is not set |
682 | # CONFIG_PPP is not set | 608 | # CONFIG_PPP is not set |
683 | # CONFIG_SLIP is not set | 609 | # CONFIG_SLIP is not set |
684 | # CONFIG_SHAPER is not set | ||
685 | # CONFIG_NETCONSOLE is not set | 610 | # CONFIG_NETCONSOLE is not set |
686 | # CONFIG_NETPOLL is not set | 611 | # CONFIG_NETPOLL is not set |
687 | # CONFIG_NET_POLL_CONTROLLER is not set | 612 | # CONFIG_NET_POLL_CONTROLLER is not set |
688 | |||
689 | # | ||
690 | # ISDN subsystem | ||
691 | # | ||
692 | # CONFIG_ISDN is not set | 613 | # CONFIG_ISDN is not set |
693 | |||
694 | # | ||
695 | # Telephony Support | ||
696 | # | ||
697 | # CONFIG_PHONE is not set | 614 | # CONFIG_PHONE is not set |
698 | 615 | ||
699 | # | 616 | # |
@@ -711,6 +628,7 @@ CONFIG_NETDEVICES=y | |||
711 | # Character devices | 628 | # Character devices |
712 | # | 629 | # |
713 | # CONFIG_VT is not set | 630 | # CONFIG_VT is not set |
631 | CONFIG_DEVKMEM=y | ||
714 | # CONFIG_SERIAL_NONSTANDARD is not set | 632 | # CONFIG_SERIAL_NONSTANDARD is not set |
715 | 633 | ||
716 | # | 634 | # |
@@ -728,99 +646,78 @@ CONFIG_SERIAL_CORE=y | |||
728 | CONFIG_SERIAL_CORE_CONSOLE=y | 646 | CONFIG_SERIAL_CORE_CONSOLE=y |
729 | CONFIG_UNIX98_PTYS=y | 647 | CONFIG_UNIX98_PTYS=y |
730 | # CONFIG_LEGACY_PTYS is not set | 648 | # CONFIG_LEGACY_PTYS is not set |
731 | |||
732 | # | ||
733 | # IPMI | ||
734 | # | ||
735 | # CONFIG_IPMI_HANDLER is not set | 649 | # CONFIG_IPMI_HANDLER is not set |
736 | |||
737 | # | ||
738 | # Watchdog Cards | ||
739 | # | ||
740 | # CONFIG_WATCHDOG is not set | ||
741 | CONFIG_HW_RANDOM=m | 650 | CONFIG_HW_RANDOM=m |
742 | # CONFIG_GEN_RTC is not set | ||
743 | # CONFIG_DTLK is not set | ||
744 | # CONFIG_R3964 is not set | 651 | # CONFIG_R3964 is not set |
745 | # CONFIG_RAW_DRIVER is not set | 652 | # CONFIG_RAW_DRIVER is not set |
746 | |||
747 | # | ||
748 | # TPM devices | ||
749 | # | ||
750 | # CONFIG_TCG_TPM is not set | 653 | # CONFIG_TCG_TPM is not set |
751 | |||
752 | # | ||
753 | # I2C support | ||
754 | # | ||
755 | # CONFIG_I2C is not set | 654 | # CONFIG_I2C is not set |
756 | |||
757 | # | ||
758 | # SPI support | ||
759 | # | ||
760 | # CONFIG_SPI is not set | 655 | # CONFIG_SPI is not set |
761 | # CONFIG_SPI_MASTER is not set | ||
762 | |||
763 | # | ||
764 | # Dallas's 1-wire bus | ||
765 | # | ||
766 | # CONFIG_W1 is not set | 656 | # CONFIG_W1 is not set |
657 | # CONFIG_POWER_SUPPLY is not set | ||
658 | # CONFIG_HWMON is not set | ||
659 | # CONFIG_THERMAL is not set | ||
660 | # CONFIG_WATCHDOG is not set | ||
767 | 661 | ||
768 | # | 662 | # |
769 | # Hardware Monitoring support | 663 | # Sonics Silicon Backplane |
770 | # | 664 | # |
771 | # CONFIG_HWMON is not set | 665 | CONFIG_SSB_POSSIBLE=y |
772 | # CONFIG_HWMON_VID is not set | 666 | # CONFIG_SSB is not set |
773 | 667 | ||
774 | # | 668 | # |
775 | # Multifunction device drivers | 669 | # Multifunction device drivers |
776 | # | 670 | # |
777 | # CONFIG_MFD_SM501 is not set | 671 | # CONFIG_MFD_SM501 is not set |
672 | # CONFIG_HTC_PASIC3 is not set | ||
778 | 673 | ||
779 | # | 674 | # |
780 | # Multimedia devices | 675 | # Multimedia devices |
781 | # | 676 | # |
677 | |||
678 | # | ||
679 | # Multimedia core support | ||
680 | # | ||
782 | # CONFIG_VIDEO_DEV is not set | 681 | # CONFIG_VIDEO_DEV is not set |
682 | # CONFIG_DVB_CORE is not set | ||
683 | # CONFIG_VIDEO_MEDIA is not set | ||
783 | 684 | ||
784 | # | 685 | # |
785 | # Digital Video Broadcasting Devices | 686 | # Multimedia drivers |
786 | # | 687 | # |
787 | # CONFIG_DVB is not set | 688 | # CONFIG_DAB is not set |
788 | 689 | ||
789 | # | 690 | # |
790 | # Graphics support | 691 | # Graphics support |
791 | # | 692 | # |
792 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | 693 | # CONFIG_VGASTATE is not set |
694 | # CONFIG_VIDEO_OUTPUT_CONTROL is not set | ||
793 | # CONFIG_FB is not set | 695 | # CONFIG_FB is not set |
696 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | ||
794 | 697 | ||
795 | # | 698 | # |
796 | # Sound | 699 | # Display device support |
797 | # | 700 | # |
798 | # CONFIG_SOUND is not set | 701 | # CONFIG_DISPLAY_SUPPORT is not set |
799 | 702 | ||
800 | # | 703 | # |
801 | # USB support | 704 | # Sound |
802 | # | 705 | # |
803 | # CONFIG_USB_ARCH_HAS_HCD is not set | 706 | # CONFIG_SOUND is not set |
707 | CONFIG_USB_SUPPORT=y | ||
708 | CONFIG_USB_ARCH_HAS_HCD=y | ||
804 | # CONFIG_USB_ARCH_HAS_OHCI is not set | 709 | # CONFIG_USB_ARCH_HAS_OHCI is not set |
805 | # CONFIG_USB_ARCH_HAS_EHCI is not set | 710 | # CONFIG_USB_ARCH_HAS_EHCI is not set |
711 | # CONFIG_USB is not set | ||
712 | # CONFIG_USB_OTG_WHITELIST is not set | ||
713 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | ||
806 | 714 | ||
807 | # | 715 | # |
808 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 716 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
809 | # | 717 | # |
810 | |||
811 | # | ||
812 | # USB Gadget Support | ||
813 | # | ||
814 | # CONFIG_USB_GADGET is not set | 718 | # CONFIG_USB_GADGET is not set |
815 | |||
816 | # | ||
817 | # MMC/SD Card support | ||
818 | # | ||
819 | # CONFIG_MMC is not set | 719 | # CONFIG_MMC is not set |
820 | 720 | # CONFIG_MEMSTICK is not set | |
821 | # | ||
822 | # LED devices | ||
823 | # | ||
824 | CONFIG_NEW_LEDS=y | 721 | CONFIG_NEW_LEDS=y |
825 | CONFIG_LEDS_CLASS=y | 722 | CONFIG_LEDS_CLASS=y |
826 | 723 | ||
@@ -834,40 +731,10 @@ CONFIG_LEDS_CLASS=y | |||
834 | CONFIG_LEDS_TRIGGERS=y | 731 | CONFIG_LEDS_TRIGGERS=y |
835 | # CONFIG_LEDS_TRIGGER_TIMER is not set | 732 | # CONFIG_LEDS_TRIGGER_TIMER is not set |
836 | # CONFIG_LEDS_TRIGGER_HEARTBEAT is not set | 733 | # CONFIG_LEDS_TRIGGER_HEARTBEAT is not set |
837 | 734 | # CONFIG_LEDS_TRIGGER_DEFAULT_ON is not set | |
838 | # | 735 | # CONFIG_ACCESSIBILITY is not set |
839 | # InfiniBand support | ||
840 | # | ||
841 | |||
842 | # | ||
843 | # EDAC - error detection and reporting (RAS) (EXPERIMENTAL) | ||
844 | # | ||
845 | |||
846 | # | ||
847 | # Real Time Clock | ||
848 | # | ||
849 | # CONFIG_RTC_CLASS is not set | 736 | # CONFIG_RTC_CLASS is not set |
850 | 737 | # CONFIG_UIO is not set | |
851 | # | ||
852 | # DMA Engine support | ||
853 | # | ||
854 | # CONFIG_DMA_ENGINE is not set | ||
855 | |||
856 | # | ||
857 | # DMA Clients | ||
858 | # | ||
859 | |||
860 | # | ||
861 | # DMA Devices | ||
862 | # | ||
863 | |||
864 | # | ||
865 | # Auxiliary Display support | ||
866 | # | ||
867 | |||
868 | # | ||
869 | # Virtualization | ||
870 | # | ||
871 | 738 | ||
872 | # | 739 | # |
873 | # File systems | 740 | # File systems |
@@ -877,20 +744,21 @@ CONFIG_EXT2_FS_XATTR=y | |||
877 | CONFIG_EXT2_FS_POSIX_ACL=y | 744 | CONFIG_EXT2_FS_POSIX_ACL=y |
878 | CONFIG_EXT2_FS_SECURITY=y | 745 | CONFIG_EXT2_FS_SECURITY=y |
879 | # CONFIG_EXT2_FS_XIP is not set | 746 | # CONFIG_EXT2_FS_XIP is not set |
880 | # CONFIG_EXT3_FS is not set | 747 | CONFIG_EXT3_FS=y |
748 | CONFIG_EXT3_FS_XATTR=y | ||
749 | # CONFIG_EXT3_FS_POSIX_ACL is not set | ||
750 | # CONFIG_EXT3_FS_SECURITY is not set | ||
881 | # CONFIG_EXT4DEV_FS is not set | 751 | # CONFIG_EXT4DEV_FS is not set |
752 | CONFIG_JBD=y | ||
882 | CONFIG_FS_MBCACHE=y | 753 | CONFIG_FS_MBCACHE=y |
883 | # CONFIG_REISERFS_FS is not set | 754 | # CONFIG_REISERFS_FS is not set |
884 | # CONFIG_JFS_FS is not set | 755 | # CONFIG_JFS_FS is not set |
885 | CONFIG_FS_POSIX_ACL=y | 756 | CONFIG_FS_POSIX_ACL=y |
886 | # CONFIG_XFS_FS is not set | 757 | # CONFIG_XFS_FS is not set |
887 | # CONFIG_GFS2_FS is not set | ||
888 | # CONFIG_OCFS2_FS is not set | 758 | # CONFIG_OCFS2_FS is not set |
889 | # CONFIG_MINIX_FS is not set | 759 | # CONFIG_DNOTIFY is not set |
890 | # CONFIG_ROMFS_FS is not set | ||
891 | # CONFIG_INOTIFY is not set | 760 | # CONFIG_INOTIFY is not set |
892 | # CONFIG_QUOTA is not set | 761 | # CONFIG_QUOTA is not set |
893 | # CONFIG_DNOTIFY is not set | ||
894 | # CONFIG_AUTOFS_FS is not set | 762 | # CONFIG_AUTOFS_FS is not set |
895 | # CONFIG_AUTOFS4_FS is not set | 763 | # CONFIG_AUTOFS4_FS is not set |
896 | # CONFIG_FUSE_FS is not set | 764 | # CONFIG_FUSE_FS is not set |
@@ -919,7 +787,6 @@ CONFIG_TMPFS=y | |||
919 | # CONFIG_TMPFS_POSIX_ACL is not set | 787 | # CONFIG_TMPFS_POSIX_ACL is not set |
920 | # CONFIG_HUGETLBFS is not set | 788 | # CONFIG_HUGETLBFS is not set |
921 | # CONFIG_HUGETLB_PAGE is not set | 789 | # CONFIG_HUGETLB_PAGE is not set |
922 | CONFIG_RAMFS=y | ||
923 | # CONFIG_CONFIGFS_FS is not set | 790 | # CONFIG_CONFIGFS_FS is not set |
924 | 791 | ||
925 | # | 792 | # |
@@ -935,68 +802,67 @@ CONFIG_RAMFS=y | |||
935 | CONFIG_JFFS2_FS=y | 802 | CONFIG_JFFS2_FS=y |
936 | CONFIG_JFFS2_FS_DEBUG=0 | 803 | CONFIG_JFFS2_FS_DEBUG=0 |
937 | CONFIG_JFFS2_FS_WRITEBUFFER=y | 804 | CONFIG_JFFS2_FS_WRITEBUFFER=y |
805 | # CONFIG_JFFS2_FS_WBUF_VERIFY is not set | ||
938 | # CONFIG_JFFS2_SUMMARY is not set | 806 | # CONFIG_JFFS2_SUMMARY is not set |
939 | # CONFIG_JFFS2_FS_XATTR is not set | 807 | # CONFIG_JFFS2_FS_XATTR is not set |
940 | # CONFIG_JFFS2_COMPRESSION_OPTIONS is not set | 808 | # CONFIG_JFFS2_COMPRESSION_OPTIONS is not set |
941 | CONFIG_JFFS2_ZLIB=y | 809 | CONFIG_JFFS2_ZLIB=y |
810 | # CONFIG_JFFS2_LZO is not set | ||
942 | CONFIG_JFFS2_RTIME=y | 811 | CONFIG_JFFS2_RTIME=y |
943 | # CONFIG_JFFS2_RUBIN is not set | 812 | # CONFIG_JFFS2_RUBIN is not set |
944 | CONFIG_CRAMFS=y | 813 | CONFIG_CRAMFS=y |
945 | # CONFIG_VXFS_FS is not set | 814 | # CONFIG_VXFS_FS is not set |
815 | # CONFIG_MINIX_FS is not set | ||
946 | # CONFIG_HPFS_FS is not set | 816 | # CONFIG_HPFS_FS is not set |
947 | # CONFIG_QNX4FS_FS is not set | 817 | # CONFIG_QNX4FS_FS is not set |
818 | # CONFIG_ROMFS_FS is not set | ||
948 | # CONFIG_SYSV_FS is not set | 819 | # CONFIG_SYSV_FS is not set |
949 | # CONFIG_UFS_FS is not set | 820 | # CONFIG_UFS_FS is not set |
950 | 821 | CONFIG_NETWORK_FILESYSTEMS=y | |
951 | # | 822 | CONFIG_NFS_FS=y |
952 | # Network File Systems | 823 | # CONFIG_NFS_V3 is not set |
953 | # | 824 | # CONFIG_NFS_V4 is not set |
954 | # CONFIG_NFS_FS is not set | ||
955 | # CONFIG_NFSD is not set | 825 | # CONFIG_NFSD is not set |
826 | CONFIG_ROOT_NFS=y | ||
827 | CONFIG_LOCKD=y | ||
828 | CONFIG_NFS_COMMON=y | ||
829 | CONFIG_SUNRPC=y | ||
830 | # CONFIG_SUNRPC_BIND34 is not set | ||
831 | # CONFIG_RPCSEC_GSS_KRB5 is not set | ||
832 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | ||
956 | # CONFIG_SMB_FS is not set | 833 | # CONFIG_SMB_FS is not set |
957 | # CONFIG_CIFS is not set | 834 | # CONFIG_CIFS is not set |
958 | # CONFIG_NCP_FS is not set | 835 | # CONFIG_NCP_FS is not set |
959 | # CONFIG_CODA_FS is not set | 836 | # CONFIG_CODA_FS is not set |
960 | # CONFIG_AFS_FS is not set | 837 | # CONFIG_AFS_FS is not set |
961 | # CONFIG_9P_FS is not set | ||
962 | 838 | ||
963 | # | 839 | # |
964 | # Partition Types | 840 | # Partition Types |
965 | # | 841 | # |
966 | # CONFIG_PARTITION_ADVANCED is not set | 842 | # CONFIG_PARTITION_ADVANCED is not set |
967 | CONFIG_MSDOS_PARTITION=y | 843 | CONFIG_MSDOS_PARTITION=y |
968 | |||
969 | # | ||
970 | # Native Language Support | ||
971 | # | ||
972 | # CONFIG_NLS is not set | 844 | # CONFIG_NLS is not set |
973 | |||
974 | # | ||
975 | # Distributed Lock Manager | ||
976 | # | ||
977 | # CONFIG_DLM is not set | 845 | # CONFIG_DLM is not set |
978 | 846 | ||
979 | # | 847 | # |
980 | # Profiling support | ||
981 | # | ||
982 | # CONFIG_PROFILING is not set | ||
983 | |||
984 | # | ||
985 | # Kernel hacking | 848 | # Kernel hacking |
986 | # | 849 | # |
987 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y | 850 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y |
988 | # CONFIG_PRINTK_TIME is not set | 851 | # CONFIG_PRINTK_TIME is not set |
852 | CONFIG_ENABLE_WARN_DEPRECATED=y | ||
989 | CONFIG_ENABLE_MUST_CHECK=y | 853 | CONFIG_ENABLE_MUST_CHECK=y |
854 | CONFIG_FRAME_WARN=1024 | ||
990 | # CONFIG_MAGIC_SYSRQ is not set | 855 | # CONFIG_MAGIC_SYSRQ is not set |
991 | # CONFIG_UNUSED_SYMBOLS is not set | 856 | # CONFIG_UNUSED_SYMBOLS is not set |
992 | # CONFIG_DEBUG_FS is not set | 857 | # CONFIG_DEBUG_FS is not set |
993 | # CONFIG_HEADERS_CHECK is not set | 858 | # CONFIG_HEADERS_CHECK is not set |
994 | CONFIG_DEBUG_KERNEL=y | 859 | CONFIG_DEBUG_KERNEL=y |
995 | # CONFIG_DEBUG_SHIRQ is not set | 860 | # CONFIG_DEBUG_SHIRQ is not set |
996 | CONFIG_LOG_BUF_SHIFT=14 | ||
997 | # CONFIG_DETECT_SOFTLOCKUP is not set | 861 | # CONFIG_DETECT_SOFTLOCKUP is not set |
862 | CONFIG_SCHED_DEBUG=y | ||
998 | # CONFIG_SCHEDSTATS is not set | 863 | # CONFIG_SCHEDSTATS is not set |
999 | # CONFIG_TIMER_STATS is not set | 864 | # CONFIG_TIMER_STATS is not set |
865 | # CONFIG_DEBUG_OBJECTS is not set | ||
1000 | # CONFIG_DEBUG_SLAB is not set | 866 | # CONFIG_DEBUG_SLAB is not set |
1001 | # CONFIG_DEBUG_RT_MUTEXES is not set | 867 | # CONFIG_DEBUG_RT_MUTEXES is not set |
1002 | # CONFIG_RT_MUTEX_TESTER is not set | 868 | # CONFIG_RT_MUTEX_TESTER is not set |
@@ -1004,21 +870,28 @@ CONFIG_LOG_BUF_SHIFT=14 | |||
1004 | # CONFIG_DEBUG_MUTEXES is not set | 870 | # CONFIG_DEBUG_MUTEXES is not set |
1005 | # CONFIG_DEBUG_LOCK_ALLOC is not set | 871 | # CONFIG_DEBUG_LOCK_ALLOC is not set |
1006 | # CONFIG_PROVE_LOCKING is not set | 872 | # CONFIG_PROVE_LOCKING is not set |
873 | # CONFIG_LOCK_STAT is not set | ||
1007 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set | 874 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set |
1008 | # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set | 875 | # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set |
1009 | # CONFIG_DEBUG_KOBJECT is not set | 876 | # CONFIG_DEBUG_KOBJECT is not set |
1010 | CONFIG_DEBUG_INFO=y | 877 | CONFIG_DEBUG_INFO=y |
1011 | # CONFIG_DEBUG_VM is not set | 878 | # CONFIG_DEBUG_VM is not set |
879 | # CONFIG_DEBUG_WRITECOUNT is not set | ||
1012 | # CONFIG_DEBUG_LIST is not set | 880 | # CONFIG_DEBUG_LIST is not set |
881 | # CONFIG_DEBUG_SG is not set | ||
1013 | CONFIG_FRAME_POINTER=y | 882 | CONFIG_FRAME_POINTER=y |
1014 | # CONFIG_FORCED_INLINING is not set | 883 | # CONFIG_BOOT_PRINTK_DELAY is not set |
1015 | # CONFIG_RCU_TORTURE_TEST is not set | 884 | # CONFIG_RCU_TORTURE_TEST is not set |
885 | # CONFIG_BACKTRACE_SELF_TEST is not set | ||
1016 | # CONFIG_FAULT_INJECTION is not set | 886 | # CONFIG_FAULT_INJECTION is not set |
887 | # CONFIG_SAMPLES is not set | ||
1017 | # CONFIG_SH_STANDARD_BIOS is not set | 888 | # CONFIG_SH_STANDARD_BIOS is not set |
1018 | # CONFIG_EARLY_SCIF_CONSOLE is not set | 889 | # CONFIG_EARLY_SCIF_CONSOLE is not set |
890 | # CONFIG_DEBUG_BOOTMEM is not set | ||
1019 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 891 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
1020 | # CONFIG_DEBUG_STACK_USAGE is not set | 892 | # CONFIG_DEBUG_STACK_USAGE is not set |
1021 | # CONFIG_4KSTACKS is not set | 893 | # CONFIG_4KSTACKS is not set |
894 | # CONFIG_IRQSTACKS is not set | ||
1022 | # CONFIG_SH_KGDB is not set | 895 | # CONFIG_SH_KGDB is not set |
1023 | 896 | ||
1024 | # | 897 | # |
@@ -1026,62 +899,100 @@ CONFIG_FRAME_POINTER=y | |||
1026 | # | 899 | # |
1027 | # CONFIG_KEYS is not set | 900 | # CONFIG_KEYS is not set |
1028 | # CONFIG_SECURITY is not set | 901 | # CONFIG_SECURITY is not set |
902 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | ||
903 | CONFIG_CRYPTO=y | ||
1029 | 904 | ||
1030 | # | 905 | # |
1031 | # Cryptographic options | 906 | # Crypto core or helper |
1032 | # | 907 | # |
1033 | CONFIG_CRYPTO=y | ||
1034 | CONFIG_CRYPTO_ALGAPI=y | 908 | CONFIG_CRYPTO_ALGAPI=y |
909 | CONFIG_CRYPTO_AEAD=y | ||
1035 | CONFIG_CRYPTO_BLKCIPHER=y | 910 | CONFIG_CRYPTO_BLKCIPHER=y |
1036 | CONFIG_CRYPTO_HASH=y | 911 | CONFIG_CRYPTO_HASH=y |
1037 | CONFIG_CRYPTO_MANAGER=y | 912 | CONFIG_CRYPTO_MANAGER=y |
913 | # CONFIG_CRYPTO_GF128MUL is not set | ||
914 | # CONFIG_CRYPTO_NULL is not set | ||
915 | # CONFIG_CRYPTO_CRYPTD is not set | ||
916 | CONFIG_CRYPTO_AUTHENC=y | ||
917 | # CONFIG_CRYPTO_TEST is not set | ||
918 | |||
919 | # | ||
920 | # Authenticated Encryption with Associated Data | ||
921 | # | ||
922 | # CONFIG_CRYPTO_CCM is not set | ||
923 | # CONFIG_CRYPTO_GCM is not set | ||
924 | # CONFIG_CRYPTO_SEQIV is not set | ||
925 | |||
926 | # | ||
927 | # Block modes | ||
928 | # | ||
929 | CONFIG_CRYPTO_CBC=y | ||
930 | # CONFIG_CRYPTO_CTR is not set | ||
931 | # CONFIG_CRYPTO_CTS is not set | ||
932 | CONFIG_CRYPTO_ECB=m | ||
933 | # CONFIG_CRYPTO_LRW is not set | ||
934 | CONFIG_CRYPTO_PCBC=m | ||
935 | # CONFIG_CRYPTO_XTS is not set | ||
936 | |||
937 | # | ||
938 | # Hash modes | ||
939 | # | ||
1038 | CONFIG_CRYPTO_HMAC=y | 940 | CONFIG_CRYPTO_HMAC=y |
1039 | # CONFIG_CRYPTO_XCBC is not set | 941 | # CONFIG_CRYPTO_XCBC is not set |
1040 | # CONFIG_CRYPTO_NULL is not set | 942 | |
943 | # | ||
944 | # Digest | ||
945 | # | ||
946 | # CONFIG_CRYPTO_CRC32C is not set | ||
1041 | # CONFIG_CRYPTO_MD4 is not set | 947 | # CONFIG_CRYPTO_MD4 is not set |
1042 | CONFIG_CRYPTO_MD5=y | 948 | CONFIG_CRYPTO_MD5=y |
949 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
1043 | CONFIG_CRYPTO_SHA1=y | 950 | CONFIG_CRYPTO_SHA1=y |
1044 | # CONFIG_CRYPTO_SHA256 is not set | 951 | # CONFIG_CRYPTO_SHA256 is not set |
1045 | # CONFIG_CRYPTO_SHA512 is not set | 952 | # CONFIG_CRYPTO_SHA512 is not set |
1046 | # CONFIG_CRYPTO_WP512 is not set | ||
1047 | # CONFIG_CRYPTO_TGR192 is not set | 953 | # CONFIG_CRYPTO_TGR192 is not set |
1048 | # CONFIG_CRYPTO_GF128MUL is not set | 954 | # CONFIG_CRYPTO_WP512 is not set |
1049 | CONFIG_CRYPTO_ECB=m | 955 | |
1050 | CONFIG_CRYPTO_CBC=y | 956 | # |
1051 | CONFIG_CRYPTO_PCBC=m | 957 | # Ciphers |
1052 | # CONFIG_CRYPTO_LRW is not set | 958 | # |
1053 | CONFIG_CRYPTO_DES=y | ||
1054 | # CONFIG_CRYPTO_FCRYPT is not set | ||
1055 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
1056 | # CONFIG_CRYPTO_TWOFISH is not set | ||
1057 | # CONFIG_CRYPTO_SERPENT is not set | ||
1058 | # CONFIG_CRYPTO_AES is not set | 959 | # CONFIG_CRYPTO_AES is not set |
960 | # CONFIG_CRYPTO_ANUBIS is not set | ||
961 | # CONFIG_CRYPTO_ARC4 is not set | ||
962 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
963 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
1059 | # CONFIG_CRYPTO_CAST5 is not set | 964 | # CONFIG_CRYPTO_CAST5 is not set |
1060 | # CONFIG_CRYPTO_CAST6 is not set | 965 | # CONFIG_CRYPTO_CAST6 is not set |
1061 | # CONFIG_CRYPTO_TEA is not set | 966 | CONFIG_CRYPTO_DES=y |
1062 | # CONFIG_CRYPTO_ARC4 is not set | 967 | # CONFIG_CRYPTO_FCRYPT is not set |
1063 | # CONFIG_CRYPTO_KHAZAD is not set | 968 | # CONFIG_CRYPTO_KHAZAD is not set |
1064 | # CONFIG_CRYPTO_ANUBIS is not set | 969 | # CONFIG_CRYPTO_SALSA20 is not set |
1065 | CONFIG_CRYPTO_DEFLATE=y | 970 | # CONFIG_CRYPTO_SEED is not set |
1066 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 971 | # CONFIG_CRYPTO_SERPENT is not set |
1067 | # CONFIG_CRYPTO_CRC32C is not set | 972 | # CONFIG_CRYPTO_TEA is not set |
1068 | # CONFIG_CRYPTO_CAMELLIA is not set | 973 | # CONFIG_CRYPTO_TWOFISH is not set |
1069 | # CONFIG_CRYPTO_TEST is not set | ||
1070 | 974 | ||
1071 | # | 975 | # |
1072 | # Hardware crypto devices | 976 | # Compression |
1073 | # | 977 | # |
978 | CONFIG_CRYPTO_DEFLATE=y | ||
979 | # CONFIG_CRYPTO_LZO is not set | ||
980 | CONFIG_CRYPTO_HW=y | ||
1074 | 981 | ||
1075 | # | 982 | # |
1076 | # Library routines | 983 | # Library routines |
1077 | # | 984 | # |
1078 | CONFIG_BITREVERSE=y | 985 | CONFIG_BITREVERSE=y |
986 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | ||
1079 | CONFIG_CRC_CCITT=y | 987 | CONFIG_CRC_CCITT=y |
1080 | # CONFIG_CRC16 is not set | 988 | # CONFIG_CRC16 is not set |
989 | # CONFIG_CRC_ITU_T is not set | ||
1081 | CONFIG_CRC32=y | 990 | CONFIG_CRC32=y |
991 | # CONFIG_CRC7 is not set | ||
1082 | # CONFIG_LIBCRC32C is not set | 992 | # CONFIG_LIBCRC32C is not set |
1083 | CONFIG_ZLIB_INFLATE=y | 993 | CONFIG_ZLIB_INFLATE=y |
1084 | CONFIG_ZLIB_DEFLATE=y | 994 | CONFIG_ZLIB_DEFLATE=y |
1085 | CONFIG_PLIST=y | 995 | CONFIG_PLIST=y |
1086 | CONFIG_HAS_IOMEM=y | 996 | CONFIG_HAS_IOMEM=y |
1087 | CONFIG_HAS_IOPORT=y | 997 | CONFIG_HAS_IOPORT=y |
998 | CONFIG_HAS_DMA=y | ||
diff --git a/arch/sh/configs/sh7763rdp_defconfig b/arch/sh/configs/sh7763rdp_defconfig new file mode 100644 index 000000000000..83f3fe5db3e5 --- /dev/null +++ b/arch/sh/configs/sh7763rdp_defconfig | |||
@@ -0,0 +1,1052 @@ | |||
1 | # | ||
2 | # Automatically generated make config: don't edit | ||
3 | # Linux kernel version: 2.6.26-rc4 | ||
4 | # Fri Jun 6 12:20:17 2008 | ||
5 | # | ||
6 | CONFIG_SUPERH=y | ||
7 | CONFIG_SUPERH32=y | ||
8 | CONFIG_RWSEM_GENERIC_SPINLOCK=y | ||
9 | CONFIG_GENERIC_BUG=y | ||
10 | CONFIG_GENERIC_FIND_NEXT_BIT=y | ||
11 | CONFIG_GENERIC_HWEIGHT=y | ||
12 | CONFIG_GENERIC_HARDIRQS=y | ||
13 | CONFIG_GENERIC_IRQ_PROBE=y | ||
14 | CONFIG_GENERIC_CALIBRATE_DELAY=y | ||
15 | CONFIG_GENERIC_TIME=y | ||
16 | CONFIG_GENERIC_CLOCKEVENTS=y | ||
17 | CONFIG_STACKTRACE_SUPPORT=y | ||
18 | CONFIG_LOCKDEP_SUPPORT=y | ||
19 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | ||
20 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | ||
21 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | ||
22 | CONFIG_ARCH_SUPPORTS_AOUT=y | ||
23 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | ||
24 | |||
25 | # | ||
26 | # General setup | ||
27 | # | ||
28 | CONFIG_EXPERIMENTAL=y | ||
29 | CONFIG_BROKEN_ON_SMP=y | ||
30 | CONFIG_INIT_ENV_ARG_LIMIT=32 | ||
31 | CONFIG_LOCALVERSION="" | ||
32 | CONFIG_LOCALVERSION_AUTO=y | ||
33 | CONFIG_SWAP=y | ||
34 | CONFIG_SYSVIPC=y | ||
35 | CONFIG_SYSVIPC_SYSCTL=y | ||
36 | # CONFIG_POSIX_MQUEUE is not set | ||
37 | # CONFIG_BSD_PROCESS_ACCT is not set | ||
38 | # CONFIG_TASKSTATS is not set | ||
39 | # CONFIG_AUDIT is not set | ||
40 | CONFIG_IKCONFIG=y | ||
41 | CONFIG_IKCONFIG_PROC=y | ||
42 | CONFIG_LOG_BUF_SHIFT=14 | ||
43 | # CONFIG_CGROUPS is not set | ||
44 | CONFIG_GROUP_SCHED=y | ||
45 | CONFIG_FAIR_GROUP_SCHED=y | ||
46 | # CONFIG_RT_GROUP_SCHED is not set | ||
47 | CONFIG_USER_SCHED=y | ||
48 | # CONFIG_CGROUP_SCHED is not set | ||
49 | CONFIG_SYSFS_DEPRECATED=y | ||
50 | CONFIG_SYSFS_DEPRECATED_V2=y | ||
51 | # CONFIG_RELAY is not set | ||
52 | CONFIG_NAMESPACES=y | ||
53 | CONFIG_UTS_NS=y | ||
54 | CONFIG_IPC_NS=y | ||
55 | # CONFIG_USER_NS is not set | ||
56 | # CONFIG_PID_NS is not set | ||
57 | # CONFIG_BLK_DEV_INITRD is not set | ||
58 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | ||
59 | CONFIG_SYSCTL=y | ||
60 | CONFIG_EMBEDDED=y | ||
61 | CONFIG_UID16=y | ||
62 | # CONFIG_SYSCTL_SYSCALL is not set | ||
63 | CONFIG_KALLSYMS=y | ||
64 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | ||
65 | CONFIG_HOTPLUG=y | ||
66 | CONFIG_PRINTK=y | ||
67 | CONFIG_BUG=y | ||
68 | CONFIG_ELF_CORE=y | ||
69 | CONFIG_COMPAT_BRK=y | ||
70 | CONFIG_BASE_FULL=y | ||
71 | CONFIG_FUTEX=y | ||
72 | CONFIG_ANON_INODES=y | ||
73 | CONFIG_EPOLL=y | ||
74 | CONFIG_SIGNALFD=y | ||
75 | CONFIG_TIMERFD=y | ||
76 | CONFIG_EVENTFD=y | ||
77 | CONFIG_SHMEM=y | ||
78 | CONFIG_VM_EVENT_COUNTERS=y | ||
79 | CONFIG_SLAB=y | ||
80 | # CONFIG_SLUB is not set | ||
81 | # CONFIG_SLOB is not set | ||
82 | CONFIG_PROFILING=y | ||
83 | # CONFIG_MARKERS is not set | ||
84 | CONFIG_OPROFILE=y | ||
85 | CONFIG_HAVE_OPROFILE=y | ||
86 | # CONFIG_HAVE_KPROBES is not set | ||
87 | # CONFIG_HAVE_KRETPROBES is not set | ||
88 | # CONFIG_HAVE_DMA_ATTRS is not set | ||
89 | CONFIG_PROC_PAGE_MONITOR=y | ||
90 | CONFIG_SLABINFO=y | ||
91 | CONFIG_RT_MUTEXES=y | ||
92 | # CONFIG_TINY_SHMEM is not set | ||
93 | CONFIG_BASE_SMALL=0 | ||
94 | CONFIG_MODULES=y | ||
95 | # CONFIG_MODULE_FORCE_LOAD is not set | ||
96 | # CONFIG_MODULE_UNLOAD is not set | ||
97 | # CONFIG_MODVERSIONS is not set | ||
98 | # CONFIG_MODULE_SRCVERSION_ALL is not set | ||
99 | # CONFIG_KMOD is not set | ||
100 | CONFIG_BLOCK=y | ||
101 | # CONFIG_LBD is not set | ||
102 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
103 | # CONFIG_LSF is not set | ||
104 | # CONFIG_BLK_DEV_BSG is not set | ||
105 | |||
106 | # | ||
107 | # IO Schedulers | ||
108 | # | ||
109 | CONFIG_IOSCHED_NOOP=y | ||
110 | CONFIG_IOSCHED_AS=y | ||
111 | CONFIG_IOSCHED_DEADLINE=y | ||
112 | CONFIG_IOSCHED_CFQ=y | ||
113 | CONFIG_DEFAULT_AS=y | ||
114 | # CONFIG_DEFAULT_DEADLINE is not set | ||
115 | # CONFIG_DEFAULT_CFQ is not set | ||
116 | # CONFIG_DEFAULT_NOOP is not set | ||
117 | CONFIG_DEFAULT_IOSCHED="anticipatory" | ||
118 | CONFIG_CLASSIC_RCU=y | ||
119 | |||
120 | # | ||
121 | # System type | ||
122 | # | ||
123 | CONFIG_CPU_SH4=y | ||
124 | CONFIG_CPU_SH4A=y | ||
125 | # CONFIG_CPU_SUBTYPE_SH7619 is not set | ||
126 | # CONFIG_CPU_SUBTYPE_SH7203 is not set | ||
127 | # CONFIG_CPU_SUBTYPE_SH7206 is not set | ||
128 | # CONFIG_CPU_SUBTYPE_SH7263 is not set | ||
129 | # CONFIG_CPU_SUBTYPE_MXG is not set | ||
130 | # CONFIG_CPU_SUBTYPE_SH7705 is not set | ||
131 | # CONFIG_CPU_SUBTYPE_SH7706 is not set | ||
132 | # CONFIG_CPU_SUBTYPE_SH7707 is not set | ||
133 | # CONFIG_CPU_SUBTYPE_SH7708 is not set | ||
134 | # CONFIG_CPU_SUBTYPE_SH7709 is not set | ||
135 | # CONFIG_CPU_SUBTYPE_SH7710 is not set | ||
136 | # CONFIG_CPU_SUBTYPE_SH7712 is not set | ||
137 | # CONFIG_CPU_SUBTYPE_SH7720 is not set | ||
138 | # CONFIG_CPU_SUBTYPE_SH7721 is not set | ||
139 | # CONFIG_CPU_SUBTYPE_SH7750 is not set | ||
140 | # CONFIG_CPU_SUBTYPE_SH7091 is not set | ||
141 | # CONFIG_CPU_SUBTYPE_SH7750R is not set | ||
142 | # CONFIG_CPU_SUBTYPE_SH7750S is not set | ||
143 | # CONFIG_CPU_SUBTYPE_SH7751 is not set | ||
144 | # CONFIG_CPU_SUBTYPE_SH7751R is not set | ||
145 | # CONFIG_CPU_SUBTYPE_SH7760 is not set | ||
146 | # CONFIG_CPU_SUBTYPE_SH4_202 is not set | ||
147 | # CONFIG_CPU_SUBTYPE_SH7723 is not set | ||
148 | CONFIG_CPU_SUBTYPE_SH7763=y | ||
149 | # CONFIG_CPU_SUBTYPE_SH7770 is not set | ||
150 | # CONFIG_CPU_SUBTYPE_SH7780 is not set | ||
151 | # CONFIG_CPU_SUBTYPE_SH7785 is not set | ||
152 | # CONFIG_CPU_SUBTYPE_SHX3 is not set | ||
153 | # CONFIG_CPU_SUBTYPE_SH7343 is not set | ||
154 | # CONFIG_CPU_SUBTYPE_SH7722 is not set | ||
155 | # CONFIG_CPU_SUBTYPE_SH7366 is not set | ||
156 | # CONFIG_CPU_SUBTYPE_SH5_101 is not set | ||
157 | # CONFIG_CPU_SUBTYPE_SH5_103 is not set | ||
158 | |||
159 | # | ||
160 | # Memory management options | ||
161 | # | ||
162 | CONFIG_QUICKLIST=y | ||
163 | CONFIG_MMU=y | ||
164 | CONFIG_PAGE_OFFSET=0x80000000 | ||
165 | CONFIG_MEMORY_START=0x0c000000 | ||
166 | CONFIG_MEMORY_SIZE=0x04000000 | ||
167 | CONFIG_29BIT=y | ||
168 | CONFIG_VSYSCALL=y | ||
169 | CONFIG_ARCH_FLATMEM_ENABLE=y | ||
170 | CONFIG_ARCH_SPARSEMEM_ENABLE=y | ||
171 | CONFIG_ARCH_SPARSEMEM_DEFAULT=y | ||
172 | CONFIG_MAX_ACTIVE_REGIONS=1 | ||
173 | CONFIG_ARCH_POPULATES_NODE_MAP=y | ||
174 | CONFIG_ARCH_SELECT_MEMORY_MODEL=y | ||
175 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | ||
176 | CONFIG_PAGE_SIZE_4KB=y | ||
177 | # CONFIG_PAGE_SIZE_8KB is not set | ||
178 | # CONFIG_PAGE_SIZE_16KB is not set | ||
179 | # CONFIG_PAGE_SIZE_64KB is not set | ||
180 | CONFIG_SELECT_MEMORY_MODEL=y | ||
181 | # CONFIG_FLATMEM_MANUAL is not set | ||
182 | # CONFIG_DISCONTIGMEM_MANUAL is not set | ||
183 | CONFIG_SPARSEMEM_MANUAL=y | ||
184 | CONFIG_SPARSEMEM=y | ||
185 | CONFIG_HAVE_MEMORY_PRESENT=y | ||
186 | CONFIG_SPARSEMEM_STATIC=y | ||
187 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | ||
188 | # CONFIG_MEMORY_HOTPLUG is not set | ||
189 | CONFIG_PAGEFLAGS_EXTENDED=y | ||
190 | CONFIG_SPLIT_PTLOCK_CPUS=4 | ||
191 | # CONFIG_RESOURCES_64BIT is not set | ||
192 | CONFIG_ZONE_DMA_FLAG=0 | ||
193 | CONFIG_NR_QUICK=2 | ||
194 | |||
195 | # | ||
196 | # Cache configuration | ||
197 | # | ||
198 | # CONFIG_SH_DIRECT_MAPPED is not set | ||
199 | CONFIG_CACHE_WRITEBACK=y | ||
200 | # CONFIG_CACHE_WRITETHROUGH is not set | ||
201 | # CONFIG_CACHE_OFF is not set | ||
202 | |||
203 | # | ||
204 | # Processor features | ||
205 | # | ||
206 | CONFIG_CPU_LITTLE_ENDIAN=y | ||
207 | # CONFIG_CPU_BIG_ENDIAN is not set | ||
208 | CONFIG_SH_FPU=y | ||
209 | # CONFIG_SH_STORE_QUEUES is not set | ||
210 | CONFIG_CPU_HAS_INTEVT=y | ||
211 | CONFIG_CPU_HAS_SR_RB=y | ||
212 | CONFIG_CPU_HAS_FPU=y | ||
213 | |||
214 | # | ||
215 | # Board support | ||
216 | # | ||
217 | CONFIG_SH_SH7763RDP=y | ||
218 | |||
219 | # | ||
220 | # Timer and clock configuration | ||
221 | # | ||
222 | CONFIG_SH_TMU=y | ||
223 | CONFIG_SH_TIMER_IRQ=28 | ||
224 | CONFIG_SH_PCLK_FREQ=66666666 | ||
225 | # CONFIG_TICK_ONESHOT is not set | ||
226 | # CONFIG_NO_HZ is not set | ||
227 | # CONFIG_HIGH_RES_TIMERS is not set | ||
228 | CONFIG_GENERIC_CLOCKEVENTS_BUILD=y | ||
229 | |||
230 | # | ||
231 | # CPU Frequency scaling | ||
232 | # | ||
233 | # CONFIG_CPU_FREQ is not set | ||
234 | |||
235 | # | ||
236 | # DMA support | ||
237 | # | ||
238 | # CONFIG_SH_DMA is not set | ||
239 | |||
240 | # | ||
241 | # Companion Chips | ||
242 | # | ||
243 | |||
244 | # | ||
245 | # Additional SuperH Device Drivers | ||
246 | # | ||
247 | # CONFIG_HEARTBEAT is not set | ||
248 | # CONFIG_PUSH_SWITCH is not set | ||
249 | |||
250 | # | ||
251 | # Kernel features | ||
252 | # | ||
253 | # CONFIG_HZ_100 is not set | ||
254 | CONFIG_HZ_250=y | ||
255 | # CONFIG_HZ_300 is not set | ||
256 | # CONFIG_HZ_1000 is not set | ||
257 | CONFIG_HZ=250 | ||
258 | # CONFIG_SCHED_HRTICK is not set | ||
259 | # CONFIG_KEXEC is not set | ||
260 | # CONFIG_CRASH_DUMP is not set | ||
261 | CONFIG_PREEMPT_NONE=y | ||
262 | # CONFIG_PREEMPT_VOLUNTARY is not set | ||
263 | # CONFIG_PREEMPT is not set | ||
264 | CONFIG_GUSA=y | ||
265 | |||
266 | # | ||
267 | # Boot options | ||
268 | # | ||
269 | CONFIG_ZERO_PAGE_OFFSET=0x00001000 | ||
270 | CONFIG_BOOT_LINK_OFFSET=0x00800000 | ||
271 | CONFIG_CMDLINE_BOOL=y | ||
272 | CONFIG_CMDLINE="console=ttySC2,115200 root=/dev/sda1 rootdelay=10" | ||
273 | |||
274 | # | ||
275 | # Bus options | ||
276 | # | ||
277 | # CONFIG_ARCH_SUPPORTS_MSI is not set | ||
278 | # CONFIG_PCCARD is not set | ||
279 | |||
280 | # | ||
281 | # Executable file formats | ||
282 | # | ||
283 | CONFIG_BINFMT_ELF=y | ||
284 | # CONFIG_BINFMT_MISC is not set | ||
285 | |||
286 | # | ||
287 | # Networking | ||
288 | # | ||
289 | CONFIG_NET=y | ||
290 | |||
291 | # | ||
292 | # Networking options | ||
293 | # | ||
294 | CONFIG_PACKET=y | ||
295 | # CONFIG_PACKET_MMAP is not set | ||
296 | CONFIG_UNIX=y | ||
297 | CONFIG_XFRM=y | ||
298 | # CONFIG_XFRM_USER is not set | ||
299 | # CONFIG_XFRM_SUB_POLICY is not set | ||
300 | # CONFIG_XFRM_MIGRATE is not set | ||
301 | # CONFIG_XFRM_STATISTICS is not set | ||
302 | # CONFIG_NET_KEY is not set | ||
303 | CONFIG_INET=y | ||
304 | # CONFIG_IP_MULTICAST is not set | ||
305 | # CONFIG_IP_ADVANCED_ROUTER is not set | ||
306 | CONFIG_IP_FIB_HASH=y | ||
307 | CONFIG_IP_PNP=y | ||
308 | CONFIG_IP_PNP_DHCP=y | ||
309 | CONFIG_IP_PNP_BOOTP=y | ||
310 | # CONFIG_IP_PNP_RARP is not set | ||
311 | # CONFIG_NET_IPIP is not set | ||
312 | # CONFIG_NET_IPGRE is not set | ||
313 | # CONFIG_ARPD is not set | ||
314 | # CONFIG_SYN_COOKIES is not set | ||
315 | # CONFIG_INET_AH is not set | ||
316 | # CONFIG_INET_ESP is not set | ||
317 | # CONFIG_INET_IPCOMP is not set | ||
318 | # CONFIG_INET_XFRM_TUNNEL is not set | ||
319 | # CONFIG_INET_TUNNEL is not set | ||
320 | CONFIG_INET_XFRM_MODE_TRANSPORT=y | ||
321 | CONFIG_INET_XFRM_MODE_TUNNEL=y | ||
322 | CONFIG_INET_XFRM_MODE_BEET=y | ||
323 | # CONFIG_INET_LRO is not set | ||
324 | CONFIG_INET_DIAG=y | ||
325 | CONFIG_INET_TCP_DIAG=y | ||
326 | # CONFIG_TCP_CONG_ADVANCED is not set | ||
327 | CONFIG_TCP_CONG_CUBIC=y | ||
328 | CONFIG_DEFAULT_TCP_CONG="cubic" | ||
329 | # CONFIG_TCP_MD5SIG is not set | ||
330 | # CONFIG_IPV6 is not set | ||
331 | # CONFIG_NETWORK_SECMARK is not set | ||
332 | # CONFIG_NETFILTER is not set | ||
333 | # CONFIG_IP_DCCP is not set | ||
334 | # CONFIG_IP_SCTP is not set | ||
335 | # CONFIG_TIPC is not set | ||
336 | # CONFIG_ATM is not set | ||
337 | # CONFIG_BRIDGE is not set | ||
338 | # CONFIG_VLAN_8021Q is not set | ||
339 | # CONFIG_DECNET is not set | ||
340 | # CONFIG_LLC2 is not set | ||
341 | # CONFIG_IPX is not set | ||
342 | # CONFIG_ATALK is not set | ||
343 | # CONFIG_X25 is not set | ||
344 | # CONFIG_LAPB is not set | ||
345 | # CONFIG_ECONET is not set | ||
346 | # CONFIG_WAN_ROUTER is not set | ||
347 | # CONFIG_NET_SCHED is not set | ||
348 | |||
349 | # | ||
350 | # Network testing | ||
351 | # | ||
352 | # CONFIG_NET_PKTGEN is not set | ||
353 | # CONFIG_HAMRADIO is not set | ||
354 | # CONFIG_CAN is not set | ||
355 | # CONFIG_IRDA is not set | ||
356 | # CONFIG_BT is not set | ||
357 | # CONFIG_AF_RXRPC is not set | ||
358 | |||
359 | # | ||
360 | # Wireless | ||
361 | # | ||
362 | # CONFIG_CFG80211 is not set | ||
363 | CONFIG_WIRELESS_EXT=y | ||
364 | # CONFIG_MAC80211 is not set | ||
365 | # CONFIG_IEEE80211 is not set | ||
366 | # CONFIG_RFKILL is not set | ||
367 | # CONFIG_NET_9P is not set | ||
368 | |||
369 | # | ||
370 | # Device Drivers | ||
371 | # | ||
372 | |||
373 | # | ||
374 | # Generic Driver Options | ||
375 | # | ||
376 | CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" | ||
377 | CONFIG_STANDALONE=y | ||
378 | CONFIG_PREVENT_FIRMWARE_BUILD=y | ||
379 | CONFIG_FW_LOADER=y | ||
380 | # CONFIG_SYS_HYPERVISOR is not set | ||
381 | # CONFIG_CONNECTOR is not set | ||
382 | CONFIG_MTD=y | ||
383 | # CONFIG_MTD_DEBUG is not set | ||
384 | # CONFIG_MTD_CONCAT is not set | ||
385 | CONFIG_MTD_PARTITIONS=y | ||
386 | # CONFIG_MTD_REDBOOT_PARTS is not set | ||
387 | CONFIG_MTD_CMDLINE_PARTS=y | ||
388 | # CONFIG_MTD_AR7_PARTS is not set | ||
389 | |||
390 | # | ||
391 | # User Modules And Translation Layers | ||
392 | # | ||
393 | # CONFIG_MTD_CHAR is not set | ||
394 | CONFIG_MTD_BLKDEVS=y | ||
395 | # CONFIG_MTD_BLOCK is not set | ||
396 | # CONFIG_MTD_BLOCK_RO is not set | ||
397 | # CONFIG_FTL is not set | ||
398 | # CONFIG_NFTL is not set | ||
399 | # CONFIG_INFTL is not set | ||
400 | # CONFIG_RFD_FTL is not set | ||
401 | # CONFIG_SSFDC is not set | ||
402 | # CONFIG_MTD_OOPS is not set | ||
403 | |||
404 | # | ||
405 | # RAM/ROM/Flash chip drivers | ||
406 | # | ||
407 | CONFIG_MTD_CFI=y | ||
408 | CONFIG_MTD_JEDECPROBE=y | ||
409 | CONFIG_MTD_GEN_PROBE=y | ||
410 | CONFIG_MTD_CFI_ADV_OPTIONS=y | ||
411 | CONFIG_MTD_CFI_NOSWAP=y | ||
412 | # CONFIG_MTD_CFI_BE_BYTE_SWAP is not set | ||
413 | # CONFIG_MTD_CFI_LE_BYTE_SWAP is not set | ||
414 | CONFIG_MTD_CFI_GEOMETRY=y | ||
415 | CONFIG_MTD_MAP_BANK_WIDTH_1=y | ||
416 | CONFIG_MTD_MAP_BANK_WIDTH_2=y | ||
417 | # CONFIG_MTD_MAP_BANK_WIDTH_4 is not set | ||
418 | # CONFIG_MTD_MAP_BANK_WIDTH_8 is not set | ||
419 | # CONFIG_MTD_MAP_BANK_WIDTH_16 is not set | ||
420 | # CONFIG_MTD_MAP_BANK_WIDTH_32 is not set | ||
421 | CONFIG_MTD_CFI_I1=y | ||
422 | CONFIG_MTD_CFI_I2=y | ||
423 | # CONFIG_MTD_CFI_I4 is not set | ||
424 | # CONFIG_MTD_CFI_I8 is not set | ||
425 | # CONFIG_MTD_OTP is not set | ||
426 | CONFIG_MTD_CFI_INTELEXT=y | ||
427 | CONFIG_MTD_CFI_AMDSTD=y | ||
428 | CONFIG_MTD_CFI_STAA=y | ||
429 | CONFIG_MTD_CFI_UTIL=y | ||
430 | # CONFIG_MTD_RAM is not set | ||
431 | # CONFIG_MTD_ROM is not set | ||
432 | # CONFIG_MTD_ABSENT is not set | ||
433 | |||
434 | # | ||
435 | # Mapping drivers for chip access | ||
436 | # | ||
437 | CONFIG_MTD_COMPLEX_MAPPINGS=y | ||
438 | CONFIG_MTD_PHYSMAP=y | ||
439 | CONFIG_MTD_PHYSMAP_START=0x8000000 | ||
440 | CONFIG_MTD_PHYSMAP_LEN=0 | ||
441 | CONFIG_MTD_PHYSMAP_BANKWIDTH=2 | ||
442 | # CONFIG_MTD_PLATRAM is not set | ||
443 | |||
444 | # | ||
445 | # Self-contained MTD device drivers | ||
446 | # | ||
447 | # CONFIG_MTD_SLRAM is not set | ||
448 | # CONFIG_MTD_PHRAM is not set | ||
449 | # CONFIG_MTD_MTDRAM is not set | ||
450 | # CONFIG_MTD_BLOCK2MTD is not set | ||
451 | |||
452 | # | ||
453 | # Disk-On-Chip Device Drivers | ||
454 | # | ||
455 | # CONFIG_MTD_DOC2000 is not set | ||
456 | # CONFIG_MTD_DOC2001 is not set | ||
457 | # CONFIG_MTD_DOC2001PLUS is not set | ||
458 | # CONFIG_MTD_NAND is not set | ||
459 | # CONFIG_MTD_ONENAND is not set | ||
460 | |||
461 | # | ||
462 | # UBI - Unsorted block images | ||
463 | # | ||
464 | # CONFIG_MTD_UBI is not set | ||
465 | # CONFIG_PARPORT is not set | ||
466 | CONFIG_BLK_DEV=y | ||
467 | # CONFIG_BLK_DEV_COW_COMMON is not set | ||
468 | # CONFIG_BLK_DEV_LOOP is not set | ||
469 | # CONFIG_BLK_DEV_NBD is not set | ||
470 | # CONFIG_BLK_DEV_UB is not set | ||
471 | # CONFIG_BLK_DEV_RAM is not set | ||
472 | # CONFIG_CDROM_PKTCDVD is not set | ||
473 | # CONFIG_ATA_OVER_ETH is not set | ||
474 | # CONFIG_MISC_DEVICES is not set | ||
475 | CONFIG_HAVE_IDE=y | ||
476 | # CONFIG_IDE is not set | ||
477 | |||
478 | # | ||
479 | # SCSI device support | ||
480 | # | ||
481 | # CONFIG_RAID_ATTRS is not set | ||
482 | CONFIG_SCSI=y | ||
483 | CONFIG_SCSI_DMA=y | ||
484 | # CONFIG_SCSI_TGT is not set | ||
485 | # CONFIG_SCSI_NETLINK is not set | ||
486 | CONFIG_SCSI_PROC_FS=y | ||
487 | |||
488 | # | ||
489 | # SCSI support type (disk, tape, CD-ROM) | ||
490 | # | ||
491 | CONFIG_BLK_DEV_SD=y | ||
492 | # CONFIG_CHR_DEV_ST is not set | ||
493 | # CONFIG_CHR_DEV_OSST is not set | ||
494 | # CONFIG_BLK_DEV_SR is not set | ||
495 | # CONFIG_CHR_DEV_SG is not set | ||
496 | # CONFIG_CHR_DEV_SCH is not set | ||
497 | |||
498 | # | ||
499 | # Some SCSI devices (e.g. CD jukebox) support multiple LUNs | ||
500 | # | ||
501 | # CONFIG_SCSI_MULTI_LUN is not set | ||
502 | # CONFIG_SCSI_CONSTANTS is not set | ||
503 | # CONFIG_SCSI_LOGGING is not set | ||
504 | # CONFIG_SCSI_SCAN_ASYNC is not set | ||
505 | CONFIG_SCSI_WAIT_SCAN=m | ||
506 | |||
507 | # | ||
508 | # SCSI Transports | ||
509 | # | ||
510 | # CONFIG_SCSI_SPI_ATTRS is not set | ||
511 | # CONFIG_SCSI_FC_ATTRS is not set | ||
512 | # CONFIG_SCSI_ISCSI_ATTRS is not set | ||
513 | # CONFIG_SCSI_SAS_LIBSAS is not set | ||
514 | # CONFIG_SCSI_SRP_ATTRS is not set | ||
515 | CONFIG_SCSI_LOWLEVEL=y | ||
516 | # CONFIG_ISCSI_TCP is not set | ||
517 | # CONFIG_SCSI_DEBUG is not set | ||
518 | # CONFIG_ATA is not set | ||
519 | # CONFIG_MD is not set | ||
520 | CONFIG_NETDEVICES=y | ||
521 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
522 | # CONFIG_DUMMY is not set | ||
523 | # CONFIG_BONDING is not set | ||
524 | # CONFIG_MACVLAN is not set | ||
525 | # CONFIG_EQUALIZER is not set | ||
526 | # CONFIG_TUN is not set | ||
527 | # CONFIG_VETH is not set | ||
528 | CONFIG_PHYLIB=y | ||
529 | |||
530 | # | ||
531 | # MII PHY device drivers | ||
532 | # | ||
533 | # CONFIG_MARVELL_PHY is not set | ||
534 | # CONFIG_DAVICOM_PHY is not set | ||
535 | # CONFIG_QSEMI_PHY is not set | ||
536 | # CONFIG_LXT_PHY is not set | ||
537 | # CONFIG_CICADA_PHY is not set | ||
538 | # CONFIG_VITESSE_PHY is not set | ||
539 | # CONFIG_SMSC_PHY is not set | ||
540 | # CONFIG_BROADCOM_PHY is not set | ||
541 | # CONFIG_ICPLUS_PHY is not set | ||
542 | # CONFIG_REALTEK_PHY is not set | ||
543 | # CONFIG_FIXED_PHY is not set | ||
544 | CONFIG_MDIO_BITBANG=y | ||
545 | CONFIG_NET_ETHERNET=y | ||
546 | CONFIG_MII=y | ||
547 | # CONFIG_AX88796 is not set | ||
548 | # CONFIG_STNIC is not set | ||
549 | # CONFIG_SMC91X is not set | ||
550 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | ||
551 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | ||
552 | # CONFIG_IBM_NEW_EMAC_TAH is not set | ||
553 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set | ||
554 | # CONFIG_B44 is not set | ||
555 | # CONFIG_NETDEV_1000 is not set | ||
556 | # CONFIG_NETDEV_10000 is not set | ||
557 | |||
558 | # | ||
559 | # Wireless LAN | ||
560 | # | ||
561 | # CONFIG_WLAN_PRE80211 is not set | ||
562 | # CONFIG_WLAN_80211 is not set | ||
563 | # CONFIG_IWLWIFI_LEDS is not set | ||
564 | |||
565 | # | ||
566 | # USB Network Adapters | ||
567 | # | ||
568 | # CONFIG_USB_CATC is not set | ||
569 | # CONFIG_USB_KAWETH is not set | ||
570 | # CONFIG_USB_PEGASUS is not set | ||
571 | # CONFIG_USB_RTL8150 is not set | ||
572 | # CONFIG_USB_USBNET is not set | ||
573 | # CONFIG_WAN is not set | ||
574 | # CONFIG_PPP is not set | ||
575 | # CONFIG_SLIP is not set | ||
576 | # CONFIG_NETCONSOLE is not set | ||
577 | # CONFIG_NETPOLL is not set | ||
578 | # CONFIG_NET_POLL_CONTROLLER is not set | ||
579 | # CONFIG_ISDN is not set | ||
580 | # CONFIG_PHONE is not set | ||
581 | |||
582 | # | ||
583 | # Input device support | ||
584 | # | ||
585 | CONFIG_INPUT=y | ||
586 | # CONFIG_INPUT_FF_MEMLESS is not set | ||
587 | # CONFIG_INPUT_POLLDEV is not set | ||
588 | |||
589 | # | ||
590 | # Userland interfaces | ||
591 | # | ||
592 | # CONFIG_INPUT_MOUSEDEV is not set | ||
593 | # CONFIG_INPUT_JOYDEV is not set | ||
594 | # CONFIG_INPUT_EVDEV is not set | ||
595 | # CONFIG_INPUT_EVBUG is not set | ||
596 | |||
597 | # | ||
598 | # Input Device Drivers | ||
599 | # | ||
600 | # CONFIG_INPUT_KEYBOARD is not set | ||
601 | # CONFIG_INPUT_MOUSE is not set | ||
602 | # CONFIG_INPUT_JOYSTICK is not set | ||
603 | # CONFIG_INPUT_TABLET is not set | ||
604 | # CONFIG_INPUT_TOUCHSCREEN is not set | ||
605 | # CONFIG_INPUT_MISC is not set | ||
606 | |||
607 | # | ||
608 | # Hardware I/O ports | ||
609 | # | ||
610 | # CONFIG_SERIO is not set | ||
611 | # CONFIG_GAMEPORT is not set | ||
612 | |||
613 | # | ||
614 | # Character devices | ||
615 | # | ||
616 | # CONFIG_VT is not set | ||
617 | CONFIG_DEVKMEM=y | ||
618 | # CONFIG_SERIAL_NONSTANDARD is not set | ||
619 | |||
620 | # | ||
621 | # Serial drivers | ||
622 | # | ||
623 | # CONFIG_SERIAL_8250 is not set | ||
624 | |||
625 | # | ||
626 | # Non-8250 serial port support | ||
627 | # | ||
628 | CONFIG_SERIAL_SH_SCI=y | ||
629 | CONFIG_SERIAL_SH_SCI_NR_UARTS=3 | ||
630 | CONFIG_SERIAL_SH_SCI_CONSOLE=y | ||
631 | CONFIG_SERIAL_CORE=y | ||
632 | CONFIG_SERIAL_CORE_CONSOLE=y | ||
633 | CONFIG_UNIX98_PTYS=y | ||
634 | CONFIG_LEGACY_PTYS=y | ||
635 | CONFIG_LEGACY_PTY_COUNT=256 | ||
636 | # CONFIG_IPMI_HANDLER is not set | ||
637 | CONFIG_HW_RANDOM=y | ||
638 | # CONFIG_R3964 is not set | ||
639 | # CONFIG_RAW_DRIVER is not set | ||
640 | # CONFIG_TCG_TPM is not set | ||
641 | # CONFIG_I2C is not set | ||
642 | # CONFIG_SPI is not set | ||
643 | # CONFIG_W1 is not set | ||
644 | # CONFIG_POWER_SUPPLY is not set | ||
645 | # CONFIG_HWMON is not set | ||
646 | # CONFIG_THERMAL is not set | ||
647 | # CONFIG_WATCHDOG is not set | ||
648 | |||
649 | # | ||
650 | # Sonics Silicon Backplane | ||
651 | # | ||
652 | CONFIG_SSB_POSSIBLE=y | ||
653 | # CONFIG_SSB is not set | ||
654 | |||
655 | # | ||
656 | # Multifunction device drivers | ||
657 | # | ||
658 | # CONFIG_MFD_SM501 is not set | ||
659 | # CONFIG_HTC_PASIC3 is not set | ||
660 | |||
661 | # | ||
662 | # Multimedia devices | ||
663 | # | ||
664 | |||
665 | # | ||
666 | # Multimedia core support | ||
667 | # | ||
668 | # CONFIG_VIDEO_DEV is not set | ||
669 | # CONFIG_DVB_CORE is not set | ||
670 | # CONFIG_VIDEO_MEDIA is not set | ||
671 | |||
672 | # | ||
673 | # Multimedia drivers | ||
674 | # | ||
675 | # CONFIG_DAB is not set | ||
676 | |||
677 | # | ||
678 | # Graphics support | ||
679 | # | ||
680 | # CONFIG_VGASTATE is not set | ||
681 | # CONFIG_VIDEO_OUTPUT_CONTROL is not set | ||
682 | # CONFIG_FB is not set | ||
683 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | ||
684 | |||
685 | # | ||
686 | # Display device support | ||
687 | # | ||
688 | # CONFIG_DISPLAY_SUPPORT is not set | ||
689 | |||
690 | # | ||
691 | # Sound | ||
692 | # | ||
693 | # CONFIG_SOUND is not set | ||
694 | # CONFIG_HID_SUPPORT is not set | ||
695 | CONFIG_USB_SUPPORT=y | ||
696 | CONFIG_USB_ARCH_HAS_HCD=y | ||
697 | CONFIG_USB_ARCH_HAS_OHCI=y | ||
698 | # CONFIG_USB_ARCH_HAS_EHCI is not set | ||
699 | CONFIG_USB=y | ||
700 | # CONFIG_USB_DEBUG is not set | ||
701 | # CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set | ||
702 | |||
703 | # | ||
704 | # Miscellaneous USB options | ||
705 | # | ||
706 | # CONFIG_USB_DEVICEFS is not set | ||
707 | CONFIG_USB_DEVICE_CLASS=y | ||
708 | # CONFIG_USB_DYNAMIC_MINORS is not set | ||
709 | # CONFIG_USB_OTG is not set | ||
710 | # CONFIG_USB_OTG_WHITELIST is not set | ||
711 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | ||
712 | |||
713 | # | ||
714 | # USB Host Controller Drivers | ||
715 | # | ||
716 | # CONFIG_USB_C67X00_HCD is not set | ||
717 | # CONFIG_USB_ISP116X_HCD is not set | ||
718 | # CONFIG_USB_ISP1760_HCD is not set | ||
719 | CONFIG_USB_OHCI_HCD=y | ||
720 | # CONFIG_USB_OHCI_BIG_ENDIAN_DESC is not set | ||
721 | # CONFIG_USB_OHCI_BIG_ENDIAN_MMIO is not set | ||
722 | CONFIG_USB_OHCI_LITTLE_ENDIAN=y | ||
723 | # CONFIG_USB_SL811_HCD is not set | ||
724 | # CONFIG_USB_R8A66597_HCD is not set | ||
725 | |||
726 | # | ||
727 | # USB Device Class drivers | ||
728 | # | ||
729 | # CONFIG_USB_ACM is not set | ||
730 | # CONFIG_USB_PRINTER is not set | ||
731 | # CONFIG_USB_WDM is not set | ||
732 | |||
733 | # | ||
734 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | ||
735 | # | ||
736 | |||
737 | # | ||
738 | # may also be needed; see USB_STORAGE Help for more information | ||
739 | # | ||
740 | CONFIG_USB_STORAGE=y | ||
741 | # CONFIG_USB_STORAGE_DEBUG is not set | ||
742 | # CONFIG_USB_STORAGE_DATAFAB is not set | ||
743 | # CONFIG_USB_STORAGE_FREECOM is not set | ||
744 | # CONFIG_USB_STORAGE_ISD200 is not set | ||
745 | # CONFIG_USB_STORAGE_DPCM is not set | ||
746 | # CONFIG_USB_STORAGE_USBAT is not set | ||
747 | # CONFIG_USB_STORAGE_SDDR09 is not set | ||
748 | # CONFIG_USB_STORAGE_SDDR55 is not set | ||
749 | # CONFIG_USB_STORAGE_JUMPSHOT is not set | ||
750 | # CONFIG_USB_STORAGE_ALAUDA is not set | ||
751 | # CONFIG_USB_STORAGE_ONETOUCH is not set | ||
752 | # CONFIG_USB_STORAGE_KARMA is not set | ||
753 | # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set | ||
754 | # CONFIG_USB_LIBUSUAL is not set | ||
755 | |||
756 | # | ||
757 | # USB Imaging devices | ||
758 | # | ||
759 | # CONFIG_USB_MDC800 is not set | ||
760 | # CONFIG_USB_MICROTEK is not set | ||
761 | CONFIG_USB_MON=y | ||
762 | |||
763 | # | ||
764 | # USB port drivers | ||
765 | # | ||
766 | # CONFIG_USB_SERIAL is not set | ||
767 | |||
768 | # | ||
769 | # USB Miscellaneous drivers | ||
770 | # | ||
771 | # CONFIG_USB_EMI62 is not set | ||
772 | # CONFIG_USB_EMI26 is not set | ||
773 | # CONFIG_USB_ADUTUX is not set | ||
774 | # CONFIG_USB_AUERSWALD is not set | ||
775 | # CONFIG_USB_RIO500 is not set | ||
776 | # CONFIG_USB_LEGOTOWER is not set | ||
777 | # CONFIG_USB_LCD is not set | ||
778 | # CONFIG_USB_BERRY_CHARGE is not set | ||
779 | # CONFIG_USB_LED is not set | ||
780 | # CONFIG_USB_CYPRESS_CY7C63 is not set | ||
781 | # CONFIG_USB_CYTHERM is not set | ||
782 | # CONFIG_USB_PHIDGET is not set | ||
783 | # CONFIG_USB_IDMOUSE is not set | ||
784 | # CONFIG_USB_FTDI_ELAN is not set | ||
785 | # CONFIG_USB_APPLEDISPLAY is not set | ||
786 | # CONFIG_USB_LD is not set | ||
787 | # CONFIG_USB_TRANCEVIBRATOR is not set | ||
788 | # CONFIG_USB_IOWARRIOR is not set | ||
789 | # CONFIG_USB_ISIGHTFW is not set | ||
790 | # CONFIG_USB_GADGET is not set | ||
791 | # CONFIG_MMC is not set | ||
792 | # CONFIG_MEMSTICK is not set | ||
793 | # CONFIG_NEW_LEDS is not set | ||
794 | # CONFIG_ACCESSIBILITY is not set | ||
795 | # CONFIG_RTC_CLASS is not set | ||
796 | # CONFIG_UIO is not set | ||
797 | |||
798 | # | ||
799 | # File systems | ||
800 | # | ||
801 | CONFIG_EXT2_FS=y | ||
802 | # CONFIG_EXT2_FS_XATTR is not set | ||
803 | # CONFIG_EXT2_FS_XIP is not set | ||
804 | CONFIG_EXT3_FS=y | ||
805 | CONFIG_EXT3_FS_XATTR=y | ||
806 | # CONFIG_EXT3_FS_POSIX_ACL is not set | ||
807 | # CONFIG_EXT3_FS_SECURITY is not set | ||
808 | # CONFIG_EXT4DEV_FS is not set | ||
809 | CONFIG_JBD=y | ||
810 | CONFIG_FS_MBCACHE=y | ||
811 | # CONFIG_REISERFS_FS is not set | ||
812 | # CONFIG_JFS_FS is not set | ||
813 | CONFIG_FS_POSIX_ACL=y | ||
814 | # CONFIG_XFS_FS is not set | ||
815 | # CONFIG_OCFS2_FS is not set | ||
816 | CONFIG_DNOTIFY=y | ||
817 | CONFIG_INOTIFY=y | ||
818 | CONFIG_INOTIFY_USER=y | ||
819 | # CONFIG_QUOTA is not set | ||
820 | CONFIG_AUTOFS_FS=y | ||
821 | CONFIG_AUTOFS4_FS=y | ||
822 | # CONFIG_FUSE_FS is not set | ||
823 | CONFIG_GENERIC_ACL=y | ||
824 | |||
825 | # | ||
826 | # CD-ROM/DVD Filesystems | ||
827 | # | ||
828 | # CONFIG_ISO9660_FS is not set | ||
829 | # CONFIG_UDF_FS is not set | ||
830 | |||
831 | # | ||
832 | # DOS/FAT/NT Filesystems | ||
833 | # | ||
834 | CONFIG_FAT_FS=y | ||
835 | CONFIG_MSDOS_FS=y | ||
836 | CONFIG_VFAT_FS=y | ||
837 | CONFIG_FAT_DEFAULT_CODEPAGE=437 | ||
838 | CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" | ||
839 | # CONFIG_NTFS_FS is not set | ||
840 | |||
841 | # | ||
842 | # Pseudo filesystems | ||
843 | # | ||
844 | CONFIG_PROC_FS=y | ||
845 | CONFIG_PROC_KCORE=y | ||
846 | CONFIG_PROC_SYSCTL=y | ||
847 | CONFIG_SYSFS=y | ||
848 | CONFIG_TMPFS=y | ||
849 | CONFIG_TMPFS_POSIX_ACL=y | ||
850 | # CONFIG_HUGETLBFS is not set | ||
851 | # CONFIG_HUGETLB_PAGE is not set | ||
852 | # CONFIG_CONFIGFS_FS is not set | ||
853 | |||
854 | # | ||
855 | # Miscellaneous filesystems | ||
856 | # | ||
857 | # CONFIG_ADFS_FS is not set | ||
858 | # CONFIG_AFFS_FS is not set | ||
859 | # CONFIG_HFS_FS is not set | ||
860 | # CONFIG_HFSPLUS_FS is not set | ||
861 | # CONFIG_BEFS_FS is not set | ||
862 | # CONFIG_BFS_FS is not set | ||
863 | # CONFIG_EFS_FS is not set | ||
864 | # CONFIG_JFFS2_FS is not set | ||
865 | # CONFIG_CRAMFS is not set | ||
866 | # CONFIG_VXFS_FS is not set | ||
867 | # CONFIG_MINIX_FS is not set | ||
868 | # CONFIG_HPFS_FS is not set | ||
869 | # CONFIG_QNX4FS_FS is not set | ||
870 | # CONFIG_ROMFS_FS is not set | ||
871 | # CONFIG_SYSV_FS is not set | ||
872 | # CONFIG_UFS_FS is not set | ||
873 | CONFIG_NETWORK_FILESYSTEMS=y | ||
874 | CONFIG_NFS_FS=y | ||
875 | # CONFIG_NFS_V3 is not set | ||
876 | # CONFIG_NFS_V4 is not set | ||
877 | # CONFIG_NFSD is not set | ||
878 | CONFIG_ROOT_NFS=y | ||
879 | CONFIG_LOCKD=y | ||
880 | CONFIG_NFS_COMMON=y | ||
881 | CONFIG_SUNRPC=y | ||
882 | # CONFIG_SUNRPC_BIND34 is not set | ||
883 | # CONFIG_RPCSEC_GSS_KRB5 is not set | ||
884 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | ||
885 | # CONFIG_SMB_FS is not set | ||
886 | # CONFIG_CIFS is not set | ||
887 | # CONFIG_NCP_FS is not set | ||
888 | # CONFIG_CODA_FS is not set | ||
889 | # CONFIG_AFS_FS is not set | ||
890 | |||
891 | # | ||
892 | # Partition Types | ||
893 | # | ||
894 | # CONFIG_PARTITION_ADVANCED is not set | ||
895 | CONFIG_MSDOS_PARTITION=y | ||
896 | CONFIG_NLS=y | ||
897 | CONFIG_NLS_DEFAULT="iso8859-1" | ||
898 | CONFIG_NLS_CODEPAGE_437=y | ||
899 | CONFIG_NLS_CODEPAGE_737=y | ||
900 | CONFIG_NLS_CODEPAGE_775=y | ||
901 | CONFIG_NLS_CODEPAGE_850=y | ||
902 | CONFIG_NLS_CODEPAGE_852=y | ||
903 | CONFIG_NLS_CODEPAGE_855=y | ||
904 | CONFIG_NLS_CODEPAGE_857=y | ||
905 | CONFIG_NLS_CODEPAGE_860=y | ||
906 | CONFIG_NLS_CODEPAGE_861=y | ||
907 | CONFIG_NLS_CODEPAGE_862=y | ||
908 | CONFIG_NLS_CODEPAGE_863=y | ||
909 | CONFIG_NLS_CODEPAGE_864=y | ||
910 | CONFIG_NLS_CODEPAGE_865=y | ||
911 | CONFIG_NLS_CODEPAGE_866=y | ||
912 | CONFIG_NLS_CODEPAGE_869=y | ||
913 | CONFIG_NLS_CODEPAGE_936=y | ||
914 | CONFIG_NLS_CODEPAGE_950=y | ||
915 | CONFIG_NLS_CODEPAGE_932=y | ||
916 | CONFIG_NLS_CODEPAGE_949=y | ||
917 | CONFIG_NLS_CODEPAGE_874=y | ||
918 | CONFIG_NLS_ISO8859_8=y | ||
919 | CONFIG_NLS_CODEPAGE_1250=y | ||
920 | CONFIG_NLS_CODEPAGE_1251=y | ||
921 | CONFIG_NLS_ASCII=y | ||
922 | CONFIG_NLS_ISO8859_1=y | ||
923 | CONFIG_NLS_ISO8859_2=y | ||
924 | CONFIG_NLS_ISO8859_3=y | ||
925 | CONFIG_NLS_ISO8859_4=y | ||
926 | CONFIG_NLS_ISO8859_5=y | ||
927 | CONFIG_NLS_ISO8859_6=y | ||
928 | CONFIG_NLS_ISO8859_7=y | ||
929 | CONFIG_NLS_ISO8859_9=y | ||
930 | CONFIG_NLS_ISO8859_13=y | ||
931 | CONFIG_NLS_ISO8859_14=y | ||
932 | CONFIG_NLS_ISO8859_15=y | ||
933 | CONFIG_NLS_KOI8_R=y | ||
934 | CONFIG_NLS_KOI8_U=y | ||
935 | CONFIG_NLS_UTF8=y | ||
936 | # CONFIG_DLM is not set | ||
937 | |||
938 | # | ||
939 | # Kernel hacking | ||
940 | # | ||
941 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y | ||
942 | # CONFIG_PRINTK_TIME is not set | ||
943 | # CONFIG_ENABLE_WARN_DEPRECATED is not set | ||
944 | # CONFIG_ENABLE_MUST_CHECK is not set | ||
945 | CONFIG_FRAME_WARN=1024 | ||
946 | # CONFIG_MAGIC_SYSRQ is not set | ||
947 | # CONFIG_UNUSED_SYMBOLS is not set | ||
948 | # CONFIG_DEBUG_FS is not set | ||
949 | # CONFIG_HEADERS_CHECK is not set | ||
950 | # CONFIG_DEBUG_KERNEL is not set | ||
951 | # CONFIG_DEBUG_BUGVERBOSE is not set | ||
952 | # CONFIG_SAMPLES is not set | ||
953 | # CONFIG_SH_STANDARD_BIOS is not set | ||
954 | # CONFIG_EARLY_SCIF_CONSOLE is not set | ||
955 | # CONFIG_SH_KGDB is not set | ||
956 | |||
957 | # | ||
958 | # Security options | ||
959 | # | ||
960 | # CONFIG_KEYS is not set | ||
961 | # CONFIG_SECURITY is not set | ||
962 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | ||
963 | CONFIG_CRYPTO=y | ||
964 | |||
965 | # | ||
966 | # Crypto core or helper | ||
967 | # | ||
968 | # CONFIG_CRYPTO_MANAGER is not set | ||
969 | # CONFIG_CRYPTO_GF128MUL is not set | ||
970 | # CONFIG_CRYPTO_NULL is not set | ||
971 | # CONFIG_CRYPTO_CRYPTD is not set | ||
972 | # CONFIG_CRYPTO_AUTHENC is not set | ||
973 | # CONFIG_CRYPTO_TEST is not set | ||
974 | |||
975 | # | ||
976 | # Authenticated Encryption with Associated Data | ||
977 | # | ||
978 | # CONFIG_CRYPTO_CCM is not set | ||
979 | # CONFIG_CRYPTO_GCM is not set | ||
980 | # CONFIG_CRYPTO_SEQIV is not set | ||
981 | |||
982 | # | ||
983 | # Block modes | ||
984 | # | ||
985 | # CONFIG_CRYPTO_CBC is not set | ||
986 | # CONFIG_CRYPTO_CTR is not set | ||
987 | # CONFIG_CRYPTO_CTS is not set | ||
988 | # CONFIG_CRYPTO_ECB is not set | ||
989 | # CONFIG_CRYPTO_LRW is not set | ||
990 | # CONFIG_CRYPTO_PCBC is not set | ||
991 | # CONFIG_CRYPTO_XTS is not set | ||
992 | |||
993 | # | ||
994 | # Hash modes | ||
995 | # | ||
996 | # CONFIG_CRYPTO_HMAC is not set | ||
997 | # CONFIG_CRYPTO_XCBC is not set | ||
998 | |||
999 | # | ||
1000 | # Digest | ||
1001 | # | ||
1002 | # CONFIG_CRYPTO_CRC32C is not set | ||
1003 | # CONFIG_CRYPTO_MD4 is not set | ||
1004 | # CONFIG_CRYPTO_MD5 is not set | ||
1005 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
1006 | # CONFIG_CRYPTO_SHA1 is not set | ||
1007 | # CONFIG_CRYPTO_SHA256 is not set | ||
1008 | # CONFIG_CRYPTO_SHA512 is not set | ||
1009 | # CONFIG_CRYPTO_TGR192 is not set | ||
1010 | # CONFIG_CRYPTO_WP512 is not set | ||
1011 | |||
1012 | # | ||
1013 | # Ciphers | ||
1014 | # | ||
1015 | # CONFIG_CRYPTO_AES is not set | ||
1016 | # CONFIG_CRYPTO_ANUBIS is not set | ||
1017 | # CONFIG_CRYPTO_ARC4 is not set | ||
1018 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
1019 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
1020 | # CONFIG_CRYPTO_CAST5 is not set | ||
1021 | # CONFIG_CRYPTO_CAST6 is not set | ||
1022 | # CONFIG_CRYPTO_DES is not set | ||
1023 | # CONFIG_CRYPTO_FCRYPT is not set | ||
1024 | # CONFIG_CRYPTO_KHAZAD is not set | ||
1025 | # CONFIG_CRYPTO_SALSA20 is not set | ||
1026 | # CONFIG_CRYPTO_SEED is not set | ||
1027 | # CONFIG_CRYPTO_SERPENT is not set | ||
1028 | # CONFIG_CRYPTO_TEA is not set | ||
1029 | # CONFIG_CRYPTO_TWOFISH is not set | ||
1030 | |||
1031 | # | ||
1032 | # Compression | ||
1033 | # | ||
1034 | # CONFIG_CRYPTO_DEFLATE is not set | ||
1035 | # CONFIG_CRYPTO_LZO is not set | ||
1036 | CONFIG_CRYPTO_HW=y | ||
1037 | |||
1038 | # | ||
1039 | # Library routines | ||
1040 | # | ||
1041 | CONFIG_BITREVERSE=y | ||
1042 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | ||
1043 | # CONFIG_CRC_CCITT is not set | ||
1044 | # CONFIG_CRC16 is not set | ||
1045 | # CONFIG_CRC_ITU_T is not set | ||
1046 | CONFIG_CRC32=y | ||
1047 | # CONFIG_CRC7 is not set | ||
1048 | # CONFIG_LIBCRC32C is not set | ||
1049 | CONFIG_PLIST=y | ||
1050 | CONFIG_HAS_IOMEM=y | ||
1051 | CONFIG_HAS_IOPORT=y | ||
1052 | CONFIG_HAS_DMA=y | ||
diff --git a/arch/sh/configs/sh7785lcr_defconfig b/arch/sh/configs/sh7785lcr_defconfig new file mode 100644 index 000000000000..ff72697365d1 --- /dev/null +++ b/arch/sh/configs/sh7785lcr_defconfig | |||
@@ -0,0 +1,1388 @@ | |||
1 | # | ||
2 | # Automatically generated make config: don't edit | ||
3 | # Linux kernel version: 2.6.26-rc8 | ||
4 | # Tue Jul 15 21:37:59 2008 | ||
5 | # | ||
6 | CONFIG_SUPERH=y | ||
7 | CONFIG_SUPERH32=y | ||
8 | CONFIG_RWSEM_GENERIC_SPINLOCK=y | ||
9 | CONFIG_GENERIC_BUG=y | ||
10 | CONFIG_GENERIC_FIND_NEXT_BIT=y | ||
11 | CONFIG_GENERIC_HWEIGHT=y | ||
12 | CONFIG_GENERIC_HARDIRQS=y | ||
13 | CONFIG_GENERIC_IRQ_PROBE=y | ||
14 | CONFIG_GENERIC_CALIBRATE_DELAY=y | ||
15 | CONFIG_GENERIC_TIME=y | ||
16 | CONFIG_GENERIC_CLOCKEVENTS=y | ||
17 | CONFIG_SYS_SUPPORTS_NUMA=y | ||
18 | CONFIG_SYS_SUPPORTS_PCI=y | ||
19 | CONFIG_STACKTRACE_SUPPORT=y | ||
20 | CONFIG_LOCKDEP_SUPPORT=y | ||
21 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | ||
22 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | ||
23 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | ||
24 | CONFIG_ARCH_SUPPORTS_AOUT=y | ||
25 | CONFIG_IO_TRAPPED=y | ||
26 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | ||
27 | |||
28 | # | ||
29 | # General setup | ||
30 | # | ||
31 | CONFIG_EXPERIMENTAL=y | ||
32 | CONFIG_BROKEN_ON_SMP=y | ||
33 | CONFIG_LOCK_KERNEL=y | ||
34 | CONFIG_INIT_ENV_ARG_LIMIT=32 | ||
35 | CONFIG_LOCALVERSION="" | ||
36 | CONFIG_LOCALVERSION_AUTO=y | ||
37 | CONFIG_SWAP=y | ||
38 | CONFIG_SYSVIPC=y | ||
39 | CONFIG_SYSVIPC_SYSCTL=y | ||
40 | # CONFIG_POSIX_MQUEUE is not set | ||
41 | CONFIG_BSD_PROCESS_ACCT=y | ||
42 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set | ||
43 | # CONFIG_TASKSTATS is not set | ||
44 | # CONFIG_AUDIT is not set | ||
45 | CONFIG_IKCONFIG=y | ||
46 | CONFIG_IKCONFIG_PROC=y | ||
47 | CONFIG_LOG_BUF_SHIFT=14 | ||
48 | # CONFIG_CGROUPS is not set | ||
49 | CONFIG_GROUP_SCHED=y | ||
50 | CONFIG_FAIR_GROUP_SCHED=y | ||
51 | # CONFIG_RT_GROUP_SCHED is not set | ||
52 | CONFIG_USER_SCHED=y | ||
53 | # CONFIG_CGROUP_SCHED is not set | ||
54 | CONFIG_SYSFS_DEPRECATED=y | ||
55 | CONFIG_SYSFS_DEPRECATED_V2=y | ||
56 | # CONFIG_RELAY is not set | ||
57 | # CONFIG_NAMESPACES is not set | ||
58 | # CONFIG_BLK_DEV_INITRD is not set | ||
59 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | ||
60 | CONFIG_SYSCTL=y | ||
61 | CONFIG_EMBEDDED=y | ||
62 | CONFIG_UID16=y | ||
63 | CONFIG_SYSCTL_SYSCALL=y | ||
64 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
65 | CONFIG_KALLSYMS=y | ||
66 | # CONFIG_KALLSYMS_ALL is not set | ||
67 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | ||
68 | CONFIG_HOTPLUG=y | ||
69 | CONFIG_PRINTK=y | ||
70 | CONFIG_BUG=y | ||
71 | CONFIG_ELF_CORE=y | ||
72 | CONFIG_COMPAT_BRK=y | ||
73 | CONFIG_BASE_FULL=y | ||
74 | CONFIG_FUTEX=y | ||
75 | CONFIG_ANON_INODES=y | ||
76 | CONFIG_EPOLL=y | ||
77 | CONFIG_SIGNALFD=y | ||
78 | CONFIG_TIMERFD=y | ||
79 | CONFIG_EVENTFD=y | ||
80 | CONFIG_SHMEM=y | ||
81 | CONFIG_VM_EVENT_COUNTERS=y | ||
82 | CONFIG_SLAB=y | ||
83 | # CONFIG_SLUB is not set | ||
84 | # CONFIG_SLOB is not set | ||
85 | CONFIG_PROFILING=y | ||
86 | # CONFIG_MARKERS is not set | ||
87 | # CONFIG_OPROFILE is not set | ||
88 | CONFIG_HAVE_OPROFILE=y | ||
89 | # CONFIG_HAVE_KPROBES is not set | ||
90 | # CONFIG_HAVE_KRETPROBES is not set | ||
91 | # CONFIG_HAVE_DMA_ATTRS is not set | ||
92 | CONFIG_PROC_PAGE_MONITOR=y | ||
93 | CONFIG_SLABINFO=y | ||
94 | CONFIG_RT_MUTEXES=y | ||
95 | # CONFIG_TINY_SHMEM is not set | ||
96 | CONFIG_BASE_SMALL=0 | ||
97 | CONFIG_MODULES=y | ||
98 | # CONFIG_MODULE_FORCE_LOAD is not set | ||
99 | CONFIG_MODULE_UNLOAD=y | ||
100 | # CONFIG_MODULE_FORCE_UNLOAD is not set | ||
101 | # CONFIG_MODVERSIONS is not set | ||
102 | # CONFIG_MODULE_SRCVERSION_ALL is not set | ||
103 | CONFIG_KMOD=y | ||
104 | CONFIG_BLOCK=y | ||
105 | # CONFIG_LBD is not set | ||
106 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
107 | # CONFIG_LSF is not set | ||
108 | # CONFIG_BLK_DEV_BSG is not set | ||
109 | |||
110 | # | ||
111 | # IO Schedulers | ||
112 | # | ||
113 | CONFIG_IOSCHED_NOOP=y | ||
114 | CONFIG_IOSCHED_AS=y | ||
115 | CONFIG_IOSCHED_DEADLINE=y | ||
116 | CONFIG_IOSCHED_CFQ=y | ||
117 | # CONFIG_DEFAULT_AS is not set | ||
118 | # CONFIG_DEFAULT_DEADLINE is not set | ||
119 | CONFIG_DEFAULT_CFQ=y | ||
120 | # CONFIG_DEFAULT_NOOP is not set | ||
121 | CONFIG_DEFAULT_IOSCHED="cfq" | ||
122 | CONFIG_CLASSIC_RCU=y | ||
123 | |||
124 | # | ||
125 | # System type | ||
126 | # | ||
127 | CONFIG_CPU_SH4=y | ||
128 | CONFIG_CPU_SH4A=y | ||
129 | CONFIG_CPU_SHX2=y | ||
130 | # CONFIG_CPU_SUBTYPE_SH7619 is not set | ||
131 | # CONFIG_CPU_SUBTYPE_SH7203 is not set | ||
132 | # CONFIG_CPU_SUBTYPE_SH7206 is not set | ||
133 | # CONFIG_CPU_SUBTYPE_SH7263 is not set | ||
134 | # CONFIG_CPU_SUBTYPE_MXG is not set | ||
135 | # CONFIG_CPU_SUBTYPE_SH7705 is not set | ||
136 | # CONFIG_CPU_SUBTYPE_SH7706 is not set | ||
137 | # CONFIG_CPU_SUBTYPE_SH7707 is not set | ||
138 | # CONFIG_CPU_SUBTYPE_SH7708 is not set | ||
139 | # CONFIG_CPU_SUBTYPE_SH7709 is not set | ||
140 | # CONFIG_CPU_SUBTYPE_SH7710 is not set | ||
141 | # CONFIG_CPU_SUBTYPE_SH7712 is not set | ||
142 | # CONFIG_CPU_SUBTYPE_SH7720 is not set | ||
143 | # CONFIG_CPU_SUBTYPE_SH7721 is not set | ||
144 | # CONFIG_CPU_SUBTYPE_SH7750 is not set | ||
145 | # CONFIG_CPU_SUBTYPE_SH7091 is not set | ||
146 | # CONFIG_CPU_SUBTYPE_SH7750R is not set | ||
147 | # CONFIG_CPU_SUBTYPE_SH7750S is not set | ||
148 | # CONFIG_CPU_SUBTYPE_SH7751 is not set | ||
149 | # CONFIG_CPU_SUBTYPE_SH7751R is not set | ||
150 | # CONFIG_CPU_SUBTYPE_SH7760 is not set | ||
151 | # CONFIG_CPU_SUBTYPE_SH4_202 is not set | ||
152 | # CONFIG_CPU_SUBTYPE_SH7723 is not set | ||
153 | # CONFIG_CPU_SUBTYPE_SH7763 is not set | ||
154 | # CONFIG_CPU_SUBTYPE_SH7770 is not set | ||
155 | # CONFIG_CPU_SUBTYPE_SH7780 is not set | ||
156 | CONFIG_CPU_SUBTYPE_SH7785=y | ||
157 | # CONFIG_CPU_SUBTYPE_SHX3 is not set | ||
158 | # CONFIG_CPU_SUBTYPE_SH7343 is not set | ||
159 | # CONFIG_CPU_SUBTYPE_SH7722 is not set | ||
160 | # CONFIG_CPU_SUBTYPE_SH7366 is not set | ||
161 | # CONFIG_CPU_SUBTYPE_SH5_101 is not set | ||
162 | # CONFIG_CPU_SUBTYPE_SH5_103 is not set | ||
163 | |||
164 | # | ||
165 | # Memory management options | ||
166 | # | ||
167 | CONFIG_QUICKLIST=y | ||
168 | CONFIG_MMU=y | ||
169 | CONFIG_PAGE_OFFSET=0x80000000 | ||
170 | CONFIG_MEMORY_START=0x08000000 | ||
171 | CONFIG_MEMORY_SIZE=0x08000000 | ||
172 | CONFIG_29BIT=y | ||
173 | # CONFIG_PMB is not set | ||
174 | # CONFIG_X2TLB is not set | ||
175 | CONFIG_VSYSCALL=y | ||
176 | # CONFIG_NUMA is not set | ||
177 | CONFIG_ARCH_FLATMEM_ENABLE=y | ||
178 | CONFIG_ARCH_SPARSEMEM_ENABLE=y | ||
179 | CONFIG_ARCH_SPARSEMEM_DEFAULT=y | ||
180 | CONFIG_MAX_ACTIVE_REGIONS=2 | ||
181 | CONFIG_ARCH_POPULATES_NODE_MAP=y | ||
182 | CONFIG_ARCH_SELECT_MEMORY_MODEL=y | ||
183 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | ||
184 | CONFIG_PAGE_SIZE_4KB=y | ||
185 | # CONFIG_PAGE_SIZE_8KB is not set | ||
186 | # CONFIG_PAGE_SIZE_16KB is not set | ||
187 | # CONFIG_PAGE_SIZE_64KB is not set | ||
188 | CONFIG_SELECT_MEMORY_MODEL=y | ||
189 | # CONFIG_FLATMEM_MANUAL is not set | ||
190 | # CONFIG_DISCONTIGMEM_MANUAL is not set | ||
191 | CONFIG_SPARSEMEM_MANUAL=y | ||
192 | CONFIG_SPARSEMEM=y | ||
193 | CONFIG_HAVE_MEMORY_PRESENT=y | ||
194 | CONFIG_SPARSEMEM_STATIC=y | ||
195 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | ||
196 | # CONFIG_MEMORY_HOTPLUG is not set | ||
197 | CONFIG_PAGEFLAGS_EXTENDED=y | ||
198 | CONFIG_SPLIT_PTLOCK_CPUS=4 | ||
199 | # CONFIG_RESOURCES_64BIT is not set | ||
200 | CONFIG_ZONE_DMA_FLAG=0 | ||
201 | CONFIG_NR_QUICK=2 | ||
202 | |||
203 | # | ||
204 | # Cache configuration | ||
205 | # | ||
206 | # CONFIG_SH_DIRECT_MAPPED is not set | ||
207 | CONFIG_CACHE_WRITEBACK=y | ||
208 | # CONFIG_CACHE_WRITETHROUGH is not set | ||
209 | # CONFIG_CACHE_OFF is not set | ||
210 | |||
211 | # | ||
212 | # Processor features | ||
213 | # | ||
214 | CONFIG_CPU_LITTLE_ENDIAN=y | ||
215 | # CONFIG_CPU_BIG_ENDIAN is not set | ||
216 | CONFIG_SH_FPU=y | ||
217 | CONFIG_SH_STORE_QUEUES=y | ||
218 | CONFIG_CPU_HAS_INTEVT=y | ||
219 | CONFIG_CPU_HAS_SR_RB=y | ||
220 | CONFIG_CPU_HAS_PTEA=y | ||
221 | CONFIG_CPU_HAS_FPU=y | ||
222 | |||
223 | # | ||
224 | # Board support | ||
225 | # | ||
226 | # CONFIG_SH_HIGHLANDER is not set | ||
227 | CONFIG_SH_SH7785LCR=y | ||
228 | CONFIG_SH_SH7785LCR_29BIT_PHYSMAPS=y | ||
229 | |||
230 | # | ||
231 | # Timer and clock configuration | ||
232 | # | ||
233 | CONFIG_SH_TMU=y | ||
234 | CONFIG_SH_TIMER_IRQ=28 | ||
235 | CONFIG_SH_PCLK_FREQ=50000000 | ||
236 | CONFIG_TICK_ONESHOT=y | ||
237 | # CONFIG_NO_HZ is not set | ||
238 | CONFIG_HIGH_RES_TIMERS=y | ||
239 | CONFIG_GENERIC_CLOCKEVENTS_BUILD=y | ||
240 | |||
241 | # | ||
242 | # CPU Frequency scaling | ||
243 | # | ||
244 | # CONFIG_CPU_FREQ is not set | ||
245 | |||
246 | # | ||
247 | # DMA support | ||
248 | # | ||
249 | # CONFIG_SH_DMA is not set | ||
250 | |||
251 | # | ||
252 | # Companion Chips | ||
253 | # | ||
254 | |||
255 | # | ||
256 | # Additional SuperH Device Drivers | ||
257 | # | ||
258 | CONFIG_HEARTBEAT=y | ||
259 | # CONFIG_PUSH_SWITCH is not set | ||
260 | |||
261 | # | ||
262 | # Kernel features | ||
263 | # | ||
264 | # CONFIG_HZ_100 is not set | ||
265 | CONFIG_HZ_250=y | ||
266 | # CONFIG_HZ_300 is not set | ||
267 | # CONFIG_HZ_1000 is not set | ||
268 | CONFIG_HZ=250 | ||
269 | # CONFIG_SCHED_HRTICK is not set | ||
270 | CONFIG_KEXEC=y | ||
271 | # CONFIG_CRASH_DUMP is not set | ||
272 | # CONFIG_PREEMPT_NONE is not set | ||
273 | # CONFIG_PREEMPT_VOLUNTARY is not set | ||
274 | CONFIG_PREEMPT=y | ||
275 | # CONFIG_PREEMPT_RCU is not set | ||
276 | CONFIG_GUSA=y | ||
277 | |||
278 | # | ||
279 | # Boot options | ||
280 | # | ||
281 | CONFIG_ZERO_PAGE_OFFSET=0x00001000 | ||
282 | CONFIG_BOOT_LINK_OFFSET=0x00800000 | ||
283 | # CONFIG_CMDLINE_BOOL is not set | ||
284 | |||
285 | # | ||
286 | # Bus options | ||
287 | # | ||
288 | CONFIG_PCI=y | ||
289 | CONFIG_SH_PCIDMA_NONCOHERENT=y | ||
290 | CONFIG_PCI_AUTO=y | ||
291 | CONFIG_PCI_AUTO_UPDATE_RESOURCES=y | ||
292 | # CONFIG_ARCH_SUPPORTS_MSI is not set | ||
293 | CONFIG_PCI_LEGACY=y | ||
294 | # CONFIG_PCI_DEBUG is not set | ||
295 | # CONFIG_PCCARD is not set | ||
296 | # CONFIG_HOTPLUG_PCI is not set | ||
297 | |||
298 | # | ||
299 | # Executable file formats | ||
300 | # | ||
301 | CONFIG_BINFMT_ELF=y | ||
302 | # CONFIG_BINFMT_MISC is not set | ||
303 | |||
304 | # | ||
305 | # Networking | ||
306 | # | ||
307 | CONFIG_NET=y | ||
308 | |||
309 | # | ||
310 | # Networking options | ||
311 | # | ||
312 | CONFIG_PACKET=y | ||
313 | # CONFIG_PACKET_MMAP is not set | ||
314 | CONFIG_UNIX=y | ||
315 | CONFIG_XFRM=y | ||
316 | # CONFIG_XFRM_USER is not set | ||
317 | # CONFIG_XFRM_SUB_POLICY is not set | ||
318 | # CONFIG_XFRM_MIGRATE is not set | ||
319 | # CONFIG_XFRM_STATISTICS is not set | ||
320 | # CONFIG_NET_KEY is not set | ||
321 | CONFIG_INET=y | ||
322 | # CONFIG_IP_MULTICAST is not set | ||
323 | CONFIG_IP_ADVANCED_ROUTER=y | ||
324 | CONFIG_ASK_IP_FIB_HASH=y | ||
325 | # CONFIG_IP_FIB_TRIE is not set | ||
326 | CONFIG_IP_FIB_HASH=y | ||
327 | # CONFIG_IP_MULTIPLE_TABLES is not set | ||
328 | # CONFIG_IP_ROUTE_MULTIPATH is not set | ||
329 | # CONFIG_IP_ROUTE_VERBOSE is not set | ||
330 | CONFIG_IP_PNP=y | ||
331 | CONFIG_IP_PNP_DHCP=y | ||
332 | # CONFIG_IP_PNP_BOOTP is not set | ||
333 | # CONFIG_IP_PNP_RARP is not set | ||
334 | # CONFIG_NET_IPIP is not set | ||
335 | # CONFIG_NET_IPGRE is not set | ||
336 | # CONFIG_ARPD is not set | ||
337 | # CONFIG_SYN_COOKIES is not set | ||
338 | # CONFIG_INET_AH is not set | ||
339 | # CONFIG_INET_ESP is not set | ||
340 | # CONFIG_INET_IPCOMP is not set | ||
341 | # CONFIG_INET_XFRM_TUNNEL is not set | ||
342 | # CONFIG_INET_TUNNEL is not set | ||
343 | CONFIG_INET_XFRM_MODE_TRANSPORT=y | ||
344 | CONFIG_INET_XFRM_MODE_TUNNEL=y | ||
345 | CONFIG_INET_XFRM_MODE_BEET=y | ||
346 | # CONFIG_INET_LRO is not set | ||
347 | CONFIG_INET_DIAG=y | ||
348 | CONFIG_INET_TCP_DIAG=y | ||
349 | # CONFIG_TCP_CONG_ADVANCED is not set | ||
350 | CONFIG_TCP_CONG_CUBIC=y | ||
351 | CONFIG_DEFAULT_TCP_CONG="cubic" | ||
352 | # CONFIG_TCP_MD5SIG is not set | ||
353 | # CONFIG_IPV6 is not set | ||
354 | # CONFIG_NETWORK_SECMARK is not set | ||
355 | # CONFIG_NETFILTER is not set | ||
356 | # CONFIG_IP_DCCP is not set | ||
357 | # CONFIG_IP_SCTP is not set | ||
358 | # CONFIG_TIPC is not set | ||
359 | # CONFIG_ATM is not set | ||
360 | # CONFIG_BRIDGE is not set | ||
361 | # CONFIG_VLAN_8021Q is not set | ||
362 | # CONFIG_DECNET is not set | ||
363 | # CONFIG_LLC2 is not set | ||
364 | # CONFIG_IPX is not set | ||
365 | # CONFIG_ATALK is not set | ||
366 | # CONFIG_X25 is not set | ||
367 | # CONFIG_LAPB is not set | ||
368 | # CONFIG_ECONET is not set | ||
369 | # CONFIG_WAN_ROUTER is not set | ||
370 | # CONFIG_NET_SCHED is not set | ||
371 | |||
372 | # | ||
373 | # Network testing | ||
374 | # | ||
375 | # CONFIG_NET_PKTGEN is not set | ||
376 | # CONFIG_HAMRADIO is not set | ||
377 | # CONFIG_CAN is not set | ||
378 | # CONFIG_IRDA is not set | ||
379 | # CONFIG_BT is not set | ||
380 | # CONFIG_AF_RXRPC is not set | ||
381 | |||
382 | # | ||
383 | # Wireless | ||
384 | # | ||
385 | # CONFIG_CFG80211 is not set | ||
386 | CONFIG_WIRELESS_EXT=y | ||
387 | # CONFIG_MAC80211 is not set | ||
388 | # CONFIG_IEEE80211 is not set | ||
389 | # CONFIG_RFKILL is not set | ||
390 | # CONFIG_NET_9P is not set | ||
391 | |||
392 | # | ||
393 | # Device Drivers | ||
394 | # | ||
395 | |||
396 | # | ||
397 | # Generic Driver Options | ||
398 | # | ||
399 | CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" | ||
400 | CONFIG_STANDALONE=y | ||
401 | CONFIG_PREVENT_FIRMWARE_BUILD=y | ||
402 | # CONFIG_FW_LOADER is not set | ||
403 | # CONFIG_DEBUG_DRIVER is not set | ||
404 | # CONFIG_DEBUG_DEVRES is not set | ||
405 | # CONFIG_SYS_HYPERVISOR is not set | ||
406 | # CONFIG_CONNECTOR is not set | ||
407 | CONFIG_MTD=y | ||
408 | # CONFIG_MTD_DEBUG is not set | ||
409 | CONFIG_MTD_CONCAT=y | ||
410 | CONFIG_MTD_PARTITIONS=y | ||
411 | # CONFIG_MTD_REDBOOT_PARTS is not set | ||
412 | # CONFIG_MTD_CMDLINE_PARTS is not set | ||
413 | # CONFIG_MTD_AR7_PARTS is not set | ||
414 | |||
415 | # | ||
416 | # User Modules And Translation Layers | ||
417 | # | ||
418 | CONFIG_MTD_CHAR=y | ||
419 | CONFIG_MTD_BLKDEVS=y | ||
420 | CONFIG_MTD_BLOCK=y | ||
421 | # CONFIG_FTL is not set | ||
422 | # CONFIG_NFTL is not set | ||
423 | # CONFIG_INFTL is not set | ||
424 | # CONFIG_RFD_FTL is not set | ||
425 | # CONFIG_SSFDC is not set | ||
426 | # CONFIG_MTD_OOPS is not set | ||
427 | |||
428 | # | ||
429 | # RAM/ROM/Flash chip drivers | ||
430 | # | ||
431 | CONFIG_MTD_CFI=y | ||
432 | # CONFIG_MTD_JEDECPROBE is not set | ||
433 | CONFIG_MTD_GEN_PROBE=y | ||
434 | # CONFIG_MTD_CFI_ADV_OPTIONS is not set | ||
435 | CONFIG_MTD_MAP_BANK_WIDTH_1=y | ||
436 | CONFIG_MTD_MAP_BANK_WIDTH_2=y | ||
437 | CONFIG_MTD_MAP_BANK_WIDTH_4=y | ||
438 | # CONFIG_MTD_MAP_BANK_WIDTH_8 is not set | ||
439 | # CONFIG_MTD_MAP_BANK_WIDTH_16 is not set | ||
440 | # CONFIG_MTD_MAP_BANK_WIDTH_32 is not set | ||
441 | CONFIG_MTD_CFI_I1=y | ||
442 | CONFIG_MTD_CFI_I2=y | ||
443 | # CONFIG_MTD_CFI_I4 is not set | ||
444 | # CONFIG_MTD_CFI_I8 is not set | ||
445 | # CONFIG_MTD_CFI_INTELEXT is not set | ||
446 | CONFIG_MTD_CFI_AMDSTD=y | ||
447 | # CONFIG_MTD_CFI_STAA is not set | ||
448 | CONFIG_MTD_CFI_UTIL=y | ||
449 | # CONFIG_MTD_RAM is not set | ||
450 | # CONFIG_MTD_ROM is not set | ||
451 | # CONFIG_MTD_ABSENT is not set | ||
452 | |||
453 | # | ||
454 | # Mapping drivers for chip access | ||
455 | # | ||
456 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set | ||
457 | CONFIG_MTD_PHYSMAP=y | ||
458 | CONFIG_MTD_PHYSMAP_START=0x00000000 | ||
459 | CONFIG_MTD_PHYSMAP_LEN=0x0 | ||
460 | CONFIG_MTD_PHYSMAP_BANKWIDTH=0 | ||
461 | # CONFIG_MTD_INTEL_VR_NOR is not set | ||
462 | # CONFIG_MTD_PLATRAM is not set | ||
463 | |||
464 | # | ||
465 | # Self-contained MTD device drivers | ||
466 | # | ||
467 | # CONFIG_MTD_PMC551 is not set | ||
468 | # CONFIG_MTD_SLRAM is not set | ||
469 | # CONFIG_MTD_PHRAM is not set | ||
470 | # CONFIG_MTD_MTDRAM is not set | ||
471 | # CONFIG_MTD_BLOCK2MTD is not set | ||
472 | |||
473 | # | ||
474 | # Disk-On-Chip Device Drivers | ||
475 | # | ||
476 | # CONFIG_MTD_DOC2000 is not set | ||
477 | # CONFIG_MTD_DOC2001 is not set | ||
478 | # CONFIG_MTD_DOC2001PLUS is not set | ||
479 | # CONFIG_MTD_NAND is not set | ||
480 | # CONFIG_MTD_ONENAND is not set | ||
481 | |||
482 | # | ||
483 | # UBI - Unsorted block images | ||
484 | # | ||
485 | # CONFIG_MTD_UBI is not set | ||
486 | # CONFIG_PARPORT is not set | ||
487 | CONFIG_BLK_DEV=y | ||
488 | # CONFIG_BLK_CPQ_CISS_DA is not set | ||
489 | # CONFIG_BLK_DEV_DAC960 is not set | ||
490 | # CONFIG_BLK_DEV_UMEM is not set | ||
491 | # CONFIG_BLK_DEV_COW_COMMON is not set | ||
492 | # CONFIG_BLK_DEV_LOOP is not set | ||
493 | # CONFIG_BLK_DEV_NBD is not set | ||
494 | # CONFIG_BLK_DEV_SX8 is not set | ||
495 | # CONFIG_BLK_DEV_UB is not set | ||
496 | CONFIG_BLK_DEV_RAM=y | ||
497 | CONFIG_BLK_DEV_RAM_COUNT=16 | ||
498 | CONFIG_BLK_DEV_RAM_SIZE=4096 | ||
499 | # CONFIG_BLK_DEV_XIP is not set | ||
500 | # CONFIG_CDROM_PKTCDVD is not set | ||
501 | # CONFIG_ATA_OVER_ETH is not set | ||
502 | # CONFIG_MISC_DEVICES is not set | ||
503 | CONFIG_HAVE_IDE=y | ||
504 | # CONFIG_IDE is not set | ||
505 | |||
506 | # | ||
507 | # SCSI device support | ||
508 | # | ||
509 | # CONFIG_RAID_ATTRS is not set | ||
510 | CONFIG_SCSI=y | ||
511 | CONFIG_SCSI_DMA=y | ||
512 | # CONFIG_SCSI_TGT is not set | ||
513 | # CONFIG_SCSI_NETLINK is not set | ||
514 | CONFIG_SCSI_PROC_FS=y | ||
515 | |||
516 | # | ||
517 | # SCSI support type (disk, tape, CD-ROM) | ||
518 | # | ||
519 | CONFIG_BLK_DEV_SD=y | ||
520 | # CONFIG_CHR_DEV_ST is not set | ||
521 | # CONFIG_CHR_DEV_OSST is not set | ||
522 | # CONFIG_BLK_DEV_SR is not set | ||
523 | # CONFIG_CHR_DEV_SG is not set | ||
524 | # CONFIG_CHR_DEV_SCH is not set | ||
525 | |||
526 | # | ||
527 | # Some SCSI devices (e.g. CD jukebox) support multiple LUNs | ||
528 | # | ||
529 | # CONFIG_SCSI_MULTI_LUN is not set | ||
530 | # CONFIG_SCSI_CONSTANTS is not set | ||
531 | # CONFIG_SCSI_LOGGING is not set | ||
532 | # CONFIG_SCSI_SCAN_ASYNC is not set | ||
533 | CONFIG_SCSI_WAIT_SCAN=m | ||
534 | |||
535 | # | ||
536 | # SCSI Transports | ||
537 | # | ||
538 | # CONFIG_SCSI_SPI_ATTRS is not set | ||
539 | # CONFIG_SCSI_FC_ATTRS is not set | ||
540 | # CONFIG_SCSI_ISCSI_ATTRS is not set | ||
541 | # CONFIG_SCSI_SAS_LIBSAS is not set | ||
542 | # CONFIG_SCSI_SRP_ATTRS is not set | ||
543 | # CONFIG_SCSI_LOWLEVEL is not set | ||
544 | CONFIG_ATA=y | ||
545 | # CONFIG_ATA_NONSTANDARD is not set | ||
546 | CONFIG_SATA_PMP=y | ||
547 | # CONFIG_SATA_AHCI is not set | ||
548 | # CONFIG_SATA_SIL24 is not set | ||
549 | CONFIG_ATA_SFF=y | ||
550 | # CONFIG_SATA_SVW is not set | ||
551 | # CONFIG_ATA_PIIX is not set | ||
552 | # CONFIG_SATA_MV is not set | ||
553 | # CONFIG_SATA_NV is not set | ||
554 | # CONFIG_PDC_ADMA is not set | ||
555 | # CONFIG_SATA_QSTOR is not set | ||
556 | # CONFIG_SATA_PROMISE is not set | ||
557 | # CONFIG_SATA_SX4 is not set | ||
558 | CONFIG_SATA_SIL=y | ||
559 | # CONFIG_SATA_SIS is not set | ||
560 | # CONFIG_SATA_ULI is not set | ||
561 | # CONFIG_SATA_VIA is not set | ||
562 | # CONFIG_SATA_VITESSE is not set | ||
563 | # CONFIG_SATA_INIC162X is not set | ||
564 | # CONFIG_PATA_ALI is not set | ||
565 | # CONFIG_PATA_AMD is not set | ||
566 | # CONFIG_PATA_ARTOP is not set | ||
567 | # CONFIG_PATA_ATIIXP is not set | ||
568 | # CONFIG_PATA_CMD640_PCI is not set | ||
569 | # CONFIG_PATA_CMD64X is not set | ||
570 | # CONFIG_PATA_CS5520 is not set | ||
571 | # CONFIG_PATA_CS5530 is not set | ||
572 | # CONFIG_PATA_CYPRESS is not set | ||
573 | # CONFIG_PATA_EFAR is not set | ||
574 | # CONFIG_ATA_GENERIC is not set | ||
575 | # CONFIG_PATA_HPT366 is not set | ||
576 | # CONFIG_PATA_HPT37X is not set | ||
577 | # CONFIG_PATA_HPT3X2N is not set | ||
578 | # CONFIG_PATA_HPT3X3 is not set | ||
579 | # CONFIG_PATA_IT821X is not set | ||
580 | # CONFIG_PATA_IT8213 is not set | ||
581 | # CONFIG_PATA_JMICRON is not set | ||
582 | # CONFIG_PATA_TRIFLEX is not set | ||
583 | # CONFIG_PATA_MARVELL is not set | ||
584 | # CONFIG_PATA_MPIIX is not set | ||
585 | # CONFIG_PATA_OLDPIIX is not set | ||
586 | # CONFIG_PATA_NETCELL is not set | ||
587 | # CONFIG_PATA_NINJA32 is not set | ||
588 | # CONFIG_PATA_NS87410 is not set | ||
589 | # CONFIG_PATA_NS87415 is not set | ||
590 | # CONFIG_PATA_OPTI is not set | ||
591 | # CONFIG_PATA_OPTIDMA is not set | ||
592 | # CONFIG_PATA_PDC_OLD is not set | ||
593 | # CONFIG_PATA_RADISYS is not set | ||
594 | # CONFIG_PATA_RZ1000 is not set | ||
595 | # CONFIG_PATA_SC1200 is not set | ||
596 | # CONFIG_PATA_SERVERWORKS is not set | ||
597 | # CONFIG_PATA_PDC2027X is not set | ||
598 | # CONFIG_PATA_SIL680 is not set | ||
599 | # CONFIG_PATA_SIS is not set | ||
600 | # CONFIG_PATA_VIA is not set | ||
601 | # CONFIG_PATA_WINBOND is not set | ||
602 | # CONFIG_PATA_PLATFORM is not set | ||
603 | # CONFIG_PATA_SCH is not set | ||
604 | # CONFIG_MD is not set | ||
605 | # CONFIG_FUSION is not set | ||
606 | |||
607 | # | ||
608 | # IEEE 1394 (FireWire) support | ||
609 | # | ||
610 | |||
611 | # | ||
612 | # Enable only one of the two stacks, unless you know what you are doing | ||
613 | # | ||
614 | # CONFIG_FIREWIRE is not set | ||
615 | # CONFIG_IEEE1394 is not set | ||
616 | # CONFIG_I2O is not set | ||
617 | CONFIG_NETDEVICES=y | ||
618 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
619 | # CONFIG_DUMMY is not set | ||
620 | # CONFIG_BONDING is not set | ||
621 | # CONFIG_MACVLAN is not set | ||
622 | # CONFIG_EQUALIZER is not set | ||
623 | # CONFIG_TUN is not set | ||
624 | # CONFIG_VETH is not set | ||
625 | # CONFIG_ARCNET is not set | ||
626 | # CONFIG_NET_ETHERNET is not set | ||
627 | CONFIG_NETDEV_1000=y | ||
628 | # CONFIG_ACENIC is not set | ||
629 | # CONFIG_DL2K is not set | ||
630 | # CONFIG_E1000 is not set | ||
631 | # CONFIG_E1000E is not set | ||
632 | # CONFIG_E1000E_ENABLED is not set | ||
633 | # CONFIG_IP1000 is not set | ||
634 | # CONFIG_IGB is not set | ||
635 | # CONFIG_NS83820 is not set | ||
636 | # CONFIG_HAMACHI is not set | ||
637 | # CONFIG_YELLOWFIN is not set | ||
638 | CONFIG_R8169=y | ||
639 | # CONFIG_R8169_NAPI is not set | ||
640 | # CONFIG_SIS190 is not set | ||
641 | # CONFIG_SKGE is not set | ||
642 | # CONFIG_SKY2 is not set | ||
643 | # CONFIG_VIA_VELOCITY is not set | ||
644 | # CONFIG_TIGON3 is not set | ||
645 | # CONFIG_BNX2 is not set | ||
646 | # CONFIG_QLA3XXX is not set | ||
647 | # CONFIG_ATL1 is not set | ||
648 | # CONFIG_NETDEV_10000 is not set | ||
649 | # CONFIG_TR is not set | ||
650 | |||
651 | # | ||
652 | # Wireless LAN | ||
653 | # | ||
654 | # CONFIG_WLAN_PRE80211 is not set | ||
655 | # CONFIG_WLAN_80211 is not set | ||
656 | # CONFIG_IWLWIFI_LEDS is not set | ||
657 | |||
658 | # | ||
659 | # USB Network Adapters | ||
660 | # | ||
661 | # CONFIG_USB_CATC is not set | ||
662 | # CONFIG_USB_KAWETH is not set | ||
663 | # CONFIG_USB_PEGASUS is not set | ||
664 | # CONFIG_USB_RTL8150 is not set | ||
665 | # CONFIG_USB_USBNET is not set | ||
666 | # CONFIG_WAN is not set | ||
667 | # CONFIG_FDDI is not set | ||
668 | # CONFIG_HIPPI is not set | ||
669 | # CONFIG_PPP is not set | ||
670 | # CONFIG_SLIP is not set | ||
671 | # CONFIG_NET_FC is not set | ||
672 | # CONFIG_NETCONSOLE is not set | ||
673 | # CONFIG_NETPOLL is not set | ||
674 | # CONFIG_NET_POLL_CONTROLLER is not set | ||
675 | # CONFIG_ISDN is not set | ||
676 | # CONFIG_PHONE is not set | ||
677 | |||
678 | # | ||
679 | # Input device support | ||
680 | # | ||
681 | CONFIG_INPUT=y | ||
682 | # CONFIG_INPUT_FF_MEMLESS is not set | ||
683 | # CONFIG_INPUT_POLLDEV is not set | ||
684 | |||
685 | # | ||
686 | # Userland interfaces | ||
687 | # | ||
688 | CONFIG_INPUT_MOUSEDEV=y | ||
689 | # CONFIG_INPUT_MOUSEDEV_PSAUX is not set | ||
690 | CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 | ||
691 | CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 | ||
692 | # CONFIG_INPUT_JOYDEV is not set | ||
693 | # CONFIG_INPUT_EVDEV is not set | ||
694 | # CONFIG_INPUT_EVBUG is not set | ||
695 | |||
696 | # | ||
697 | # Input Device Drivers | ||
698 | # | ||
699 | CONFIG_INPUT_KEYBOARD=y | ||
700 | # CONFIG_KEYBOARD_ATKBD is not set | ||
701 | # CONFIG_KEYBOARD_SUNKBD is not set | ||
702 | # CONFIG_KEYBOARD_LKKBD is not set | ||
703 | # CONFIG_KEYBOARD_XTKBD is not set | ||
704 | # CONFIG_KEYBOARD_NEWTON is not set | ||
705 | # CONFIG_KEYBOARD_STOWAWAY is not set | ||
706 | # CONFIG_KEYBOARD_SH_KEYSC is not set | ||
707 | # CONFIG_INPUT_MOUSE is not set | ||
708 | # CONFIG_INPUT_JOYSTICK is not set | ||
709 | # CONFIG_INPUT_TABLET is not set | ||
710 | # CONFIG_INPUT_TOUCHSCREEN is not set | ||
711 | # CONFIG_INPUT_MISC is not set | ||
712 | |||
713 | # | ||
714 | # Hardware I/O ports | ||
715 | # | ||
716 | # CONFIG_SERIO is not set | ||
717 | # CONFIG_GAMEPORT is not set | ||
718 | |||
719 | # | ||
720 | # Character devices | ||
721 | # | ||
722 | CONFIG_VT=y | ||
723 | CONFIG_VT_CONSOLE=y | ||
724 | CONFIG_HW_CONSOLE=y | ||
725 | CONFIG_VT_HW_CONSOLE_BINDING=y | ||
726 | CONFIG_DEVKMEM=y | ||
727 | # CONFIG_SERIAL_NONSTANDARD is not set | ||
728 | # CONFIG_NOZOMI is not set | ||
729 | |||
730 | # | ||
731 | # Serial drivers | ||
732 | # | ||
733 | # CONFIG_SERIAL_8250 is not set | ||
734 | |||
735 | # | ||
736 | # Non-8250 serial port support | ||
737 | # | ||
738 | CONFIG_SERIAL_SH_SCI=y | ||
739 | CONFIG_SERIAL_SH_SCI_NR_UARTS=6 | ||
740 | CONFIG_SERIAL_SH_SCI_CONSOLE=y | ||
741 | CONFIG_SERIAL_CORE=y | ||
742 | CONFIG_SERIAL_CORE_CONSOLE=y | ||
743 | # CONFIG_SERIAL_JSM is not set | ||
744 | CONFIG_UNIX98_PTYS=y | ||
745 | CONFIG_LEGACY_PTYS=y | ||
746 | CONFIG_LEGACY_PTY_COUNT=256 | ||
747 | # CONFIG_IPMI_HANDLER is not set | ||
748 | CONFIG_HW_RANDOM=y | ||
749 | # CONFIG_R3964 is not set | ||
750 | # CONFIG_APPLICOM is not set | ||
751 | # CONFIG_RAW_DRIVER is not set | ||
752 | # CONFIG_TCG_TPM is not set | ||
753 | CONFIG_DEVPORT=y | ||
754 | CONFIG_I2C=y | ||
755 | CONFIG_I2C_BOARDINFO=y | ||
756 | # CONFIG_I2C_CHARDEV is not set | ||
757 | CONFIG_I2C_ALGOPCA=y | ||
758 | |||
759 | # | ||
760 | # I2C Hardware Bus support | ||
761 | # | ||
762 | # CONFIG_I2C_ALI1535 is not set | ||
763 | # CONFIG_I2C_ALI1563 is not set | ||
764 | # CONFIG_I2C_ALI15X3 is not set | ||
765 | # CONFIG_I2C_AMD756 is not set | ||
766 | # CONFIG_I2C_AMD8111 is not set | ||
767 | # CONFIG_I2C_I801 is not set | ||
768 | # CONFIG_I2C_I810 is not set | ||
769 | # CONFIG_I2C_PIIX4 is not set | ||
770 | # CONFIG_I2C_NFORCE2 is not set | ||
771 | # CONFIG_I2C_OCORES is not set | ||
772 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
773 | # CONFIG_I2C_PROSAVAGE is not set | ||
774 | # CONFIG_I2C_SAVAGE4 is not set | ||
775 | # CONFIG_I2C_SIMTEC is not set | ||
776 | # CONFIG_I2C_SIS5595 is not set | ||
777 | # CONFIG_I2C_SIS630 is not set | ||
778 | # CONFIG_I2C_SIS96X is not set | ||
779 | # CONFIG_I2C_TAOS_EVM is not set | ||
780 | # CONFIG_I2C_STUB is not set | ||
781 | # CONFIG_I2C_TINY_USB is not set | ||
782 | # CONFIG_I2C_VIA is not set | ||
783 | # CONFIG_I2C_VIAPRO is not set | ||
784 | # CONFIG_I2C_VOODOO3 is not set | ||
785 | CONFIG_I2C_PCA_PLATFORM=y | ||
786 | # CONFIG_I2C_SH_MOBILE is not set | ||
787 | |||
788 | # | ||
789 | # Miscellaneous I2C Chip support | ||
790 | # | ||
791 | # CONFIG_DS1682 is not set | ||
792 | # CONFIG_SENSORS_EEPROM is not set | ||
793 | # CONFIG_SENSORS_PCF8574 is not set | ||
794 | # CONFIG_PCF8575 is not set | ||
795 | # CONFIG_SENSORS_PCF8591 is not set | ||
796 | # CONFIG_SENSORS_MAX6875 is not set | ||
797 | # CONFIG_SENSORS_TSL2550 is not set | ||
798 | # CONFIG_I2C_DEBUG_CORE is not set | ||
799 | # CONFIG_I2C_DEBUG_ALGO is not set | ||
800 | # CONFIG_I2C_DEBUG_BUS is not set | ||
801 | # CONFIG_I2C_DEBUG_CHIP is not set | ||
802 | # CONFIG_SPI is not set | ||
803 | # CONFIG_W1 is not set | ||
804 | # CONFIG_POWER_SUPPLY is not set | ||
805 | # CONFIG_HWMON is not set | ||
806 | # CONFIG_THERMAL is not set | ||
807 | # CONFIG_THERMAL_HWMON is not set | ||
808 | # CONFIG_WATCHDOG is not set | ||
809 | |||
810 | # | ||
811 | # Sonics Silicon Backplane | ||
812 | # | ||
813 | CONFIG_SSB_POSSIBLE=y | ||
814 | # CONFIG_SSB is not set | ||
815 | |||
816 | # | ||
817 | # Multifunction device drivers | ||
818 | # | ||
819 | CONFIG_MFD_SM501=y | ||
820 | # CONFIG_HTC_PASIC3 is not set | ||
821 | |||
822 | # | ||
823 | # Multimedia devices | ||
824 | # | ||
825 | |||
826 | # | ||
827 | # Multimedia core support | ||
828 | # | ||
829 | # CONFIG_VIDEO_DEV is not set | ||
830 | # CONFIG_DVB_CORE is not set | ||
831 | # CONFIG_VIDEO_MEDIA is not set | ||
832 | |||
833 | # | ||
834 | # Multimedia drivers | ||
835 | # | ||
836 | # CONFIG_DAB is not set | ||
837 | |||
838 | # | ||
839 | # Graphics support | ||
840 | # | ||
841 | # CONFIG_DRM is not set | ||
842 | # CONFIG_VGASTATE is not set | ||
843 | # CONFIG_VIDEO_OUTPUT_CONTROL is not set | ||
844 | CONFIG_FB=y | ||
845 | # CONFIG_FIRMWARE_EDID is not set | ||
846 | # CONFIG_FB_DDC is not set | ||
847 | CONFIG_FB_CFB_FILLRECT=y | ||
848 | CONFIG_FB_CFB_COPYAREA=y | ||
849 | CONFIG_FB_CFB_IMAGEBLIT=y | ||
850 | # CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set | ||
851 | # CONFIG_FB_SYS_FILLRECT is not set | ||
852 | # CONFIG_FB_SYS_COPYAREA is not set | ||
853 | # CONFIG_FB_SYS_IMAGEBLIT is not set | ||
854 | # CONFIG_FB_FOREIGN_ENDIAN is not set | ||
855 | # CONFIG_FB_SYS_FOPS is not set | ||
856 | # CONFIG_FB_SVGALIB is not set | ||
857 | # CONFIG_FB_MACMODES is not set | ||
858 | # CONFIG_FB_BACKLIGHT is not set | ||
859 | # CONFIG_FB_MODE_HELPERS is not set | ||
860 | # CONFIG_FB_TILEBLITTING is not set | ||
861 | |||
862 | # | ||
863 | # Frame buffer hardware drivers | ||
864 | # | ||
865 | # CONFIG_FB_CIRRUS is not set | ||
866 | # CONFIG_FB_PM2 is not set | ||
867 | # CONFIG_FB_CYBER2000 is not set | ||
868 | # CONFIG_FB_ASILIANT is not set | ||
869 | # CONFIG_FB_IMSTT is not set | ||
870 | # CONFIG_FB_S1D13XXX is not set | ||
871 | # CONFIG_FB_NVIDIA is not set | ||
872 | # CONFIG_FB_RIVA is not set | ||
873 | # CONFIG_FB_MATROX is not set | ||
874 | # CONFIG_FB_RADEON is not set | ||
875 | # CONFIG_FB_ATY128 is not set | ||
876 | # CONFIG_FB_ATY is not set | ||
877 | # CONFIG_FB_S3 is not set | ||
878 | # CONFIG_FB_SAVAGE is not set | ||
879 | # CONFIG_FB_SIS is not set | ||
880 | # CONFIG_FB_NEOMAGIC is not set | ||
881 | # CONFIG_FB_KYRO is not set | ||
882 | # CONFIG_FB_3DFX is not set | ||
883 | # CONFIG_FB_VOODOO1 is not set | ||
884 | # CONFIG_FB_VT8623 is not set | ||
885 | # CONFIG_FB_TRIDENT is not set | ||
886 | # CONFIG_FB_ARK is not set | ||
887 | # CONFIG_FB_PM3 is not set | ||
888 | CONFIG_FB_SM501=y | ||
889 | # CONFIG_FB_VIRTUAL is not set | ||
890 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | ||
891 | |||
892 | # | ||
893 | # Display device support | ||
894 | # | ||
895 | # CONFIG_DISPLAY_SUPPORT is not set | ||
896 | |||
897 | # | ||
898 | # Console display driver support | ||
899 | # | ||
900 | CONFIG_DUMMY_CONSOLE=y | ||
901 | CONFIG_FRAMEBUFFER_CONSOLE=y | ||
902 | # CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY is not set | ||
903 | # CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set | ||
904 | # CONFIG_FONTS is not set | ||
905 | CONFIG_FONT_8x8=y | ||
906 | CONFIG_FONT_8x16=y | ||
907 | CONFIG_LOGO=y | ||
908 | # CONFIG_LOGO_LINUX_MONO is not set | ||
909 | # CONFIG_LOGO_LINUX_VGA16 is not set | ||
910 | CONFIG_LOGO_LINUX_CLUT224=y | ||
911 | # CONFIG_LOGO_SUPERH_MONO is not set | ||
912 | # CONFIG_LOGO_SUPERH_VGA16 is not set | ||
913 | # CONFIG_LOGO_SUPERH_CLUT224 is not set | ||
914 | |||
915 | # | ||
916 | # Sound | ||
917 | # | ||
918 | # CONFIG_SOUND is not set | ||
919 | CONFIG_HID_SUPPORT=y | ||
920 | CONFIG_HID=y | ||
921 | # CONFIG_HID_DEBUG is not set | ||
922 | # CONFIG_HIDRAW is not set | ||
923 | |||
924 | # | ||
925 | # USB Input Devices | ||
926 | # | ||
927 | CONFIG_USB_HID=y | ||
928 | # CONFIG_USB_HIDINPUT_POWERBOOK is not set | ||
929 | # CONFIG_HID_FF is not set | ||
930 | # CONFIG_USB_HIDDEV is not set | ||
931 | CONFIG_USB_SUPPORT=y | ||
932 | CONFIG_USB_ARCH_HAS_HCD=y | ||
933 | CONFIG_USB_ARCH_HAS_OHCI=y | ||
934 | CONFIG_USB_ARCH_HAS_EHCI=y | ||
935 | CONFIG_USB=y | ||
936 | # CONFIG_USB_DEBUG is not set | ||
937 | # CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set | ||
938 | |||
939 | # | ||
940 | # Miscellaneous USB options | ||
941 | # | ||
942 | CONFIG_USB_DEVICEFS=y | ||
943 | CONFIG_USB_DEVICE_CLASS=y | ||
944 | # CONFIG_USB_DYNAMIC_MINORS is not set | ||
945 | # CONFIG_USB_OTG is not set | ||
946 | # CONFIG_USB_OTG_WHITELIST is not set | ||
947 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | ||
948 | |||
949 | # | ||
950 | # USB Host Controller Drivers | ||
951 | # | ||
952 | # CONFIG_USB_C67X00_HCD is not set | ||
953 | CONFIG_USB_EHCI_HCD=m | ||
954 | # CONFIG_USB_EHCI_ROOT_HUB_TT is not set | ||
955 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | ||
956 | # CONFIG_USB_ISP116X_HCD is not set | ||
957 | # CONFIG_USB_ISP1760_HCD is not set | ||
958 | CONFIG_USB_OHCI_HCD=m | ||
959 | # CONFIG_USB_OHCI_BIG_ENDIAN_DESC is not set | ||
960 | # CONFIG_USB_OHCI_BIG_ENDIAN_MMIO is not set | ||
961 | CONFIG_USB_OHCI_LITTLE_ENDIAN=y | ||
962 | # CONFIG_USB_UHCI_HCD is not set | ||
963 | # CONFIG_USB_SL811_HCD is not set | ||
964 | CONFIG_USB_R8A66597_HCD=y | ||
965 | |||
966 | # | ||
967 | # USB Device Class drivers | ||
968 | # | ||
969 | # CONFIG_USB_ACM is not set | ||
970 | # CONFIG_USB_PRINTER is not set | ||
971 | # CONFIG_USB_WDM is not set | ||
972 | |||
973 | # | ||
974 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | ||
975 | # | ||
976 | |||
977 | # | ||
978 | # may also be needed; see USB_STORAGE Help for more information | ||
979 | # | ||
980 | CONFIG_USB_STORAGE=y | ||
981 | # CONFIG_USB_STORAGE_DEBUG is not set | ||
982 | # CONFIG_USB_STORAGE_DATAFAB is not set | ||
983 | # CONFIG_USB_STORAGE_FREECOM is not set | ||
984 | # CONFIG_USB_STORAGE_ISD200 is not set | ||
985 | # CONFIG_USB_STORAGE_DPCM is not set | ||
986 | # CONFIG_USB_STORAGE_USBAT is not set | ||
987 | # CONFIG_USB_STORAGE_SDDR09 is not set | ||
988 | # CONFIG_USB_STORAGE_SDDR55 is not set | ||
989 | # CONFIG_USB_STORAGE_JUMPSHOT is not set | ||
990 | # CONFIG_USB_STORAGE_ALAUDA is not set | ||
991 | # CONFIG_USB_STORAGE_ONETOUCH is not set | ||
992 | # CONFIG_USB_STORAGE_KARMA is not set | ||
993 | # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set | ||
994 | # CONFIG_USB_LIBUSUAL is not set | ||
995 | |||
996 | # | ||
997 | # USB Imaging devices | ||
998 | # | ||
999 | # CONFIG_USB_MDC800 is not set | ||
1000 | # CONFIG_USB_MICROTEK is not set | ||
1001 | CONFIG_USB_MON=y | ||
1002 | |||
1003 | # | ||
1004 | # USB port drivers | ||
1005 | # | ||
1006 | # CONFIG_USB_SERIAL is not set | ||
1007 | |||
1008 | # | ||
1009 | # USB Miscellaneous drivers | ||
1010 | # | ||
1011 | # CONFIG_USB_EMI62 is not set | ||
1012 | # CONFIG_USB_EMI26 is not set | ||
1013 | # CONFIG_USB_ADUTUX is not set | ||
1014 | # CONFIG_USB_AUERSWALD is not set | ||
1015 | # CONFIG_USB_RIO500 is not set | ||
1016 | # CONFIG_USB_LEGOTOWER is not set | ||
1017 | # CONFIG_USB_LCD is not set | ||
1018 | # CONFIG_USB_BERRY_CHARGE is not set | ||
1019 | # CONFIG_USB_LED is not set | ||
1020 | # CONFIG_USB_CYPRESS_CY7C63 is not set | ||
1021 | # CONFIG_USB_CYTHERM is not set | ||
1022 | # CONFIG_USB_PHIDGET is not set | ||
1023 | # CONFIG_USB_IDMOUSE is not set | ||
1024 | # CONFIG_USB_FTDI_ELAN is not set | ||
1025 | # CONFIG_USB_APPLEDISPLAY is not set | ||
1026 | # CONFIG_USB_SISUSBVGA is not set | ||
1027 | # CONFIG_USB_LD is not set | ||
1028 | # CONFIG_USB_TRANCEVIBRATOR is not set | ||
1029 | # CONFIG_USB_IOWARRIOR is not set | ||
1030 | CONFIG_USB_TEST=m | ||
1031 | # CONFIG_USB_ISIGHTFW is not set | ||
1032 | # CONFIG_USB_GADGET is not set | ||
1033 | # CONFIG_MMC is not set | ||
1034 | # CONFIG_MEMSTICK is not set | ||
1035 | # CONFIG_NEW_LEDS is not set | ||
1036 | # CONFIG_ACCESSIBILITY is not set | ||
1037 | # CONFIG_INFINIBAND is not set | ||
1038 | CONFIG_RTC_LIB=y | ||
1039 | CONFIG_RTC_CLASS=y | ||
1040 | CONFIG_RTC_HCTOSYS=y | ||
1041 | CONFIG_RTC_HCTOSYS_DEVICE="rtc0" | ||
1042 | # CONFIG_RTC_DEBUG is not set | ||
1043 | |||
1044 | # | ||
1045 | # RTC interfaces | ||
1046 | # | ||
1047 | CONFIG_RTC_INTF_SYSFS=y | ||
1048 | CONFIG_RTC_INTF_PROC=y | ||
1049 | CONFIG_RTC_INTF_DEV=y | ||
1050 | # CONFIG_RTC_INTF_DEV_UIE_EMUL is not set | ||
1051 | # CONFIG_RTC_DRV_TEST is not set | ||
1052 | |||
1053 | # | ||
1054 | # I2C RTC drivers | ||
1055 | # | ||
1056 | # CONFIG_RTC_DRV_DS1307 is not set | ||
1057 | # CONFIG_RTC_DRV_DS1374 is not set | ||
1058 | # CONFIG_RTC_DRV_DS1672 is not set | ||
1059 | # CONFIG_RTC_DRV_MAX6900 is not set | ||
1060 | CONFIG_RTC_DRV_RS5C372=y | ||
1061 | # CONFIG_RTC_DRV_ISL1208 is not set | ||
1062 | # CONFIG_RTC_DRV_X1205 is not set | ||
1063 | # CONFIG_RTC_DRV_PCF8563 is not set | ||
1064 | # CONFIG_RTC_DRV_PCF8583 is not set | ||
1065 | # CONFIG_RTC_DRV_M41T80 is not set | ||
1066 | # CONFIG_RTC_DRV_S35390A is not set | ||
1067 | # CONFIG_RTC_DRV_FM3130 is not set | ||
1068 | |||
1069 | # | ||
1070 | # SPI RTC drivers | ||
1071 | # | ||
1072 | |||
1073 | # | ||
1074 | # Platform RTC drivers | ||
1075 | # | ||
1076 | # CONFIG_RTC_DRV_DS1511 is not set | ||
1077 | # CONFIG_RTC_DRV_DS1553 is not set | ||
1078 | # CONFIG_RTC_DRV_DS1742 is not set | ||
1079 | # CONFIG_RTC_DRV_STK17TA8 is not set | ||
1080 | # CONFIG_RTC_DRV_M48T86 is not set | ||
1081 | # CONFIG_RTC_DRV_M48T59 is not set | ||
1082 | # CONFIG_RTC_DRV_V3020 is not set | ||
1083 | |||
1084 | # | ||
1085 | # on-CPU RTC drivers | ||
1086 | # | ||
1087 | # CONFIG_RTC_DRV_SH is not set | ||
1088 | # CONFIG_UIO is not set | ||
1089 | |||
1090 | # | ||
1091 | # File systems | ||
1092 | # | ||
1093 | CONFIG_EXT2_FS=y | ||
1094 | # CONFIG_EXT2_FS_XATTR is not set | ||
1095 | # CONFIG_EXT2_FS_XIP is not set | ||
1096 | CONFIG_EXT3_FS=y | ||
1097 | CONFIG_EXT3_FS_XATTR=y | ||
1098 | # CONFIG_EXT3_FS_POSIX_ACL is not set | ||
1099 | # CONFIG_EXT3_FS_SECURITY is not set | ||
1100 | # CONFIG_EXT4DEV_FS is not set | ||
1101 | CONFIG_JBD=y | ||
1102 | CONFIG_FS_MBCACHE=y | ||
1103 | # CONFIG_REISERFS_FS is not set | ||
1104 | # CONFIG_JFS_FS is not set | ||
1105 | CONFIG_FS_POSIX_ACL=y | ||
1106 | # CONFIG_XFS_FS is not set | ||
1107 | # CONFIG_OCFS2_FS is not set | ||
1108 | CONFIG_DNOTIFY=y | ||
1109 | CONFIG_INOTIFY=y | ||
1110 | CONFIG_INOTIFY_USER=y | ||
1111 | # CONFIG_QUOTA is not set | ||
1112 | # CONFIG_AUTOFS_FS is not set | ||
1113 | # CONFIG_AUTOFS4_FS is not set | ||
1114 | # CONFIG_FUSE_FS is not set | ||
1115 | |||
1116 | # | ||
1117 | # CD-ROM/DVD Filesystems | ||
1118 | # | ||
1119 | # CONFIG_ISO9660_FS is not set | ||
1120 | # CONFIG_UDF_FS is not set | ||
1121 | |||
1122 | # | ||
1123 | # DOS/FAT/NT Filesystems | ||
1124 | # | ||
1125 | CONFIG_FAT_FS=y | ||
1126 | CONFIG_MSDOS_FS=y | ||
1127 | CONFIG_VFAT_FS=y | ||
1128 | CONFIG_FAT_DEFAULT_CODEPAGE=437 | ||
1129 | CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" | ||
1130 | CONFIG_NTFS_FS=y | ||
1131 | # CONFIG_NTFS_DEBUG is not set | ||
1132 | CONFIG_NTFS_RW=y | ||
1133 | |||
1134 | # | ||
1135 | # Pseudo filesystems | ||
1136 | # | ||
1137 | CONFIG_PROC_FS=y | ||
1138 | CONFIG_PROC_KCORE=y | ||
1139 | CONFIG_PROC_SYSCTL=y | ||
1140 | CONFIG_SYSFS=y | ||
1141 | CONFIG_TMPFS=y | ||
1142 | # CONFIG_TMPFS_POSIX_ACL is not set | ||
1143 | # CONFIG_HUGETLBFS is not set | ||
1144 | # CONFIG_HUGETLB_PAGE is not set | ||
1145 | # CONFIG_CONFIGFS_FS is not set | ||
1146 | |||
1147 | # | ||
1148 | # Miscellaneous filesystems | ||
1149 | # | ||
1150 | # CONFIG_ADFS_FS is not set | ||
1151 | # CONFIG_AFFS_FS is not set | ||
1152 | # CONFIG_HFS_FS is not set | ||
1153 | # CONFIG_HFSPLUS_FS is not set | ||
1154 | # CONFIG_BEFS_FS is not set | ||
1155 | # CONFIG_BFS_FS is not set | ||
1156 | # CONFIG_EFS_FS is not set | ||
1157 | # CONFIG_JFFS2_FS is not set | ||
1158 | # CONFIG_CRAMFS is not set | ||
1159 | # CONFIG_VXFS_FS is not set | ||
1160 | CONFIG_MINIX_FS=y | ||
1161 | # CONFIG_HPFS_FS is not set | ||
1162 | # CONFIG_QNX4FS_FS is not set | ||
1163 | # CONFIG_ROMFS_FS is not set | ||
1164 | # CONFIG_SYSV_FS is not set | ||
1165 | # CONFIG_UFS_FS is not set | ||
1166 | CONFIG_NETWORK_FILESYSTEMS=y | ||
1167 | CONFIG_NFS_FS=y | ||
1168 | CONFIG_NFS_V3=y | ||
1169 | # CONFIG_NFS_V3_ACL is not set | ||
1170 | CONFIG_NFS_V4=y | ||
1171 | CONFIG_NFSD=y | ||
1172 | CONFIG_NFSD_V3=y | ||
1173 | # CONFIG_NFSD_V3_ACL is not set | ||
1174 | CONFIG_NFSD_V4=y | ||
1175 | CONFIG_ROOT_NFS=y | ||
1176 | CONFIG_LOCKD=y | ||
1177 | CONFIG_LOCKD_V4=y | ||
1178 | CONFIG_EXPORTFS=y | ||
1179 | CONFIG_NFS_COMMON=y | ||
1180 | CONFIG_SUNRPC=y | ||
1181 | CONFIG_SUNRPC_GSS=y | ||
1182 | # CONFIG_SUNRPC_BIND34 is not set | ||
1183 | CONFIG_RPCSEC_GSS_KRB5=y | ||
1184 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | ||
1185 | # CONFIG_SMB_FS is not set | ||
1186 | # CONFIG_CIFS is not set | ||
1187 | # CONFIG_NCP_FS is not set | ||
1188 | # CONFIG_CODA_FS is not set | ||
1189 | # CONFIG_AFS_FS is not set | ||
1190 | |||
1191 | # | ||
1192 | # Partition Types | ||
1193 | # | ||
1194 | # CONFIG_PARTITION_ADVANCED is not set | ||
1195 | CONFIG_MSDOS_PARTITION=y | ||
1196 | CONFIG_NLS=y | ||
1197 | CONFIG_NLS_DEFAULT="iso8859-1" | ||
1198 | CONFIG_NLS_CODEPAGE_437=y | ||
1199 | # CONFIG_NLS_CODEPAGE_737 is not set | ||
1200 | # CONFIG_NLS_CODEPAGE_775 is not set | ||
1201 | # CONFIG_NLS_CODEPAGE_850 is not set | ||
1202 | # CONFIG_NLS_CODEPAGE_852 is not set | ||
1203 | # CONFIG_NLS_CODEPAGE_855 is not set | ||
1204 | # CONFIG_NLS_CODEPAGE_857 is not set | ||
1205 | # CONFIG_NLS_CODEPAGE_860 is not set | ||
1206 | # CONFIG_NLS_CODEPAGE_861 is not set | ||
1207 | # CONFIG_NLS_CODEPAGE_862 is not set | ||
1208 | # CONFIG_NLS_CODEPAGE_863 is not set | ||
1209 | # CONFIG_NLS_CODEPAGE_864 is not set | ||
1210 | # CONFIG_NLS_CODEPAGE_865 is not set | ||
1211 | # CONFIG_NLS_CODEPAGE_866 is not set | ||
1212 | # CONFIG_NLS_CODEPAGE_869 is not set | ||
1213 | # CONFIG_NLS_CODEPAGE_936 is not set | ||
1214 | # CONFIG_NLS_CODEPAGE_950 is not set | ||
1215 | CONFIG_NLS_CODEPAGE_932=y | ||
1216 | # CONFIG_NLS_CODEPAGE_949 is not set | ||
1217 | # CONFIG_NLS_CODEPAGE_874 is not set | ||
1218 | # CONFIG_NLS_ISO8859_8 is not set | ||
1219 | # CONFIG_NLS_CODEPAGE_1250 is not set | ||
1220 | # CONFIG_NLS_CODEPAGE_1251 is not set | ||
1221 | # CONFIG_NLS_ASCII is not set | ||
1222 | CONFIG_NLS_ISO8859_1=y | ||
1223 | # CONFIG_NLS_ISO8859_2 is not set | ||
1224 | # CONFIG_NLS_ISO8859_3 is not set | ||
1225 | # CONFIG_NLS_ISO8859_4 is not set | ||
1226 | # CONFIG_NLS_ISO8859_5 is not set | ||
1227 | # CONFIG_NLS_ISO8859_6 is not set | ||
1228 | # CONFIG_NLS_ISO8859_7 is not set | ||
1229 | # CONFIG_NLS_ISO8859_9 is not set | ||
1230 | # CONFIG_NLS_ISO8859_13 is not set | ||
1231 | # CONFIG_NLS_ISO8859_14 is not set | ||
1232 | # CONFIG_NLS_ISO8859_15 is not set | ||
1233 | # CONFIG_NLS_KOI8_R is not set | ||
1234 | # CONFIG_NLS_KOI8_U is not set | ||
1235 | # CONFIG_NLS_UTF8 is not set | ||
1236 | # CONFIG_DLM is not set | ||
1237 | |||
1238 | # | ||
1239 | # Kernel hacking | ||
1240 | # | ||
1241 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y | ||
1242 | # CONFIG_PRINTK_TIME is not set | ||
1243 | # CONFIG_ENABLE_WARN_DEPRECATED is not set | ||
1244 | # CONFIG_ENABLE_MUST_CHECK is not set | ||
1245 | CONFIG_FRAME_WARN=1024 | ||
1246 | # CONFIG_MAGIC_SYSRQ is not set | ||
1247 | # CONFIG_UNUSED_SYMBOLS is not set | ||
1248 | # CONFIG_DEBUG_FS is not set | ||
1249 | # CONFIG_HEADERS_CHECK is not set | ||
1250 | CONFIG_DEBUG_KERNEL=y | ||
1251 | # CONFIG_DEBUG_SHIRQ is not set | ||
1252 | CONFIG_DETECT_SOFTLOCKUP=y | ||
1253 | CONFIG_SCHED_DEBUG=y | ||
1254 | # CONFIG_SCHEDSTATS is not set | ||
1255 | # CONFIG_TIMER_STATS is not set | ||
1256 | # CONFIG_DEBUG_OBJECTS is not set | ||
1257 | # CONFIG_DEBUG_SLAB is not set | ||
1258 | CONFIG_DEBUG_PREEMPT=y | ||
1259 | # CONFIG_DEBUG_RT_MUTEXES is not set | ||
1260 | # CONFIG_RT_MUTEX_TESTER is not set | ||
1261 | # CONFIG_DEBUG_SPINLOCK is not set | ||
1262 | # CONFIG_DEBUG_MUTEXES is not set | ||
1263 | # CONFIG_DEBUG_LOCK_ALLOC is not set | ||
1264 | # CONFIG_PROVE_LOCKING is not set | ||
1265 | # CONFIG_LOCK_STAT is not set | ||
1266 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set | ||
1267 | # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set | ||
1268 | # CONFIG_DEBUG_KOBJECT is not set | ||
1269 | # CONFIG_DEBUG_BUGVERBOSE is not set | ||
1270 | # CONFIG_DEBUG_INFO is not set | ||
1271 | # CONFIG_DEBUG_VM is not set | ||
1272 | # CONFIG_DEBUG_WRITECOUNT is not set | ||
1273 | # CONFIG_DEBUG_LIST is not set | ||
1274 | # CONFIG_DEBUG_SG is not set | ||
1275 | # CONFIG_FRAME_POINTER is not set | ||
1276 | # CONFIG_BOOT_PRINTK_DELAY is not set | ||
1277 | # CONFIG_RCU_TORTURE_TEST is not set | ||
1278 | # CONFIG_BACKTRACE_SELF_TEST is not set | ||
1279 | # CONFIG_FAULT_INJECTION is not set | ||
1280 | # CONFIG_SAMPLES is not set | ||
1281 | # CONFIG_SH_STANDARD_BIOS is not set | ||
1282 | # CONFIG_EARLY_SCIF_CONSOLE is not set | ||
1283 | # CONFIG_DEBUG_BOOTMEM is not set | ||
1284 | # CONFIG_DEBUG_STACKOVERFLOW is not set | ||
1285 | # CONFIG_DEBUG_STACK_USAGE is not set | ||
1286 | # CONFIG_4KSTACKS is not set | ||
1287 | # CONFIG_IRQSTACKS is not set | ||
1288 | # CONFIG_SH_KGDB is not set | ||
1289 | |||
1290 | # | ||
1291 | # Security options | ||
1292 | # | ||
1293 | # CONFIG_KEYS is not set | ||
1294 | # CONFIG_SECURITY is not set | ||
1295 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | ||
1296 | CONFIG_CRYPTO=y | ||
1297 | |||
1298 | # | ||
1299 | # Crypto core or helper | ||
1300 | # | ||
1301 | CONFIG_CRYPTO_ALGAPI=y | ||
1302 | CONFIG_CRYPTO_BLKCIPHER=y | ||
1303 | CONFIG_CRYPTO_HASH=y | ||
1304 | CONFIG_CRYPTO_MANAGER=y | ||
1305 | # CONFIG_CRYPTO_GF128MUL is not set | ||
1306 | # CONFIG_CRYPTO_NULL is not set | ||
1307 | # CONFIG_CRYPTO_CRYPTD is not set | ||
1308 | # CONFIG_CRYPTO_AUTHENC is not set | ||
1309 | # CONFIG_CRYPTO_TEST is not set | ||
1310 | |||
1311 | # | ||
1312 | # Authenticated Encryption with Associated Data | ||
1313 | # | ||
1314 | # CONFIG_CRYPTO_CCM is not set | ||
1315 | # CONFIG_CRYPTO_GCM is not set | ||
1316 | # CONFIG_CRYPTO_SEQIV is not set | ||
1317 | |||
1318 | # | ||
1319 | # Block modes | ||
1320 | # | ||
1321 | CONFIG_CRYPTO_CBC=y | ||
1322 | # CONFIG_CRYPTO_CTR is not set | ||
1323 | # CONFIG_CRYPTO_CTS is not set | ||
1324 | # CONFIG_CRYPTO_ECB is not set | ||
1325 | # CONFIG_CRYPTO_LRW is not set | ||
1326 | # CONFIG_CRYPTO_PCBC is not set | ||
1327 | # CONFIG_CRYPTO_XTS is not set | ||
1328 | |||
1329 | # | ||
1330 | # Hash modes | ||
1331 | # | ||
1332 | CONFIG_CRYPTO_HMAC=y | ||
1333 | # CONFIG_CRYPTO_XCBC is not set | ||
1334 | |||
1335 | # | ||
1336 | # Digest | ||
1337 | # | ||
1338 | # CONFIG_CRYPTO_CRC32C is not set | ||
1339 | # CONFIG_CRYPTO_MD4 is not set | ||
1340 | CONFIG_CRYPTO_MD5=y | ||
1341 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
1342 | # CONFIG_CRYPTO_SHA1 is not set | ||
1343 | # CONFIG_CRYPTO_SHA256 is not set | ||
1344 | # CONFIG_CRYPTO_SHA512 is not set | ||
1345 | # CONFIG_CRYPTO_TGR192 is not set | ||
1346 | # CONFIG_CRYPTO_WP512 is not set | ||
1347 | |||
1348 | # | ||
1349 | # Ciphers | ||
1350 | # | ||
1351 | # CONFIG_CRYPTO_AES is not set | ||
1352 | # CONFIG_CRYPTO_ANUBIS is not set | ||
1353 | # CONFIG_CRYPTO_ARC4 is not set | ||
1354 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
1355 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
1356 | # CONFIG_CRYPTO_CAST5 is not set | ||
1357 | # CONFIG_CRYPTO_CAST6 is not set | ||
1358 | CONFIG_CRYPTO_DES=y | ||
1359 | # CONFIG_CRYPTO_FCRYPT is not set | ||
1360 | # CONFIG_CRYPTO_KHAZAD is not set | ||
1361 | # CONFIG_CRYPTO_SALSA20 is not set | ||
1362 | # CONFIG_CRYPTO_SEED is not set | ||
1363 | # CONFIG_CRYPTO_SERPENT is not set | ||
1364 | # CONFIG_CRYPTO_TEA is not set | ||
1365 | # CONFIG_CRYPTO_TWOFISH is not set | ||
1366 | |||
1367 | # | ||
1368 | # Compression | ||
1369 | # | ||
1370 | # CONFIG_CRYPTO_DEFLATE is not set | ||
1371 | # CONFIG_CRYPTO_LZO is not set | ||
1372 | # CONFIG_CRYPTO_HW is not set | ||
1373 | |||
1374 | # | ||
1375 | # Library routines | ||
1376 | # | ||
1377 | CONFIG_BITREVERSE=y | ||
1378 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | ||
1379 | # CONFIG_CRC_CCITT is not set | ||
1380 | # CONFIG_CRC16 is not set | ||
1381 | # CONFIG_CRC_ITU_T is not set | ||
1382 | CONFIG_CRC32=y | ||
1383 | # CONFIG_CRC7 is not set | ||
1384 | # CONFIG_LIBCRC32C is not set | ||
1385 | CONFIG_PLIST=y | ||
1386 | CONFIG_HAS_IOMEM=y | ||
1387 | CONFIG_HAS_IOPORT=y | ||
1388 | CONFIG_HAS_DMA=y | ||
diff --git a/arch/sh/drivers/pci/Makefile b/arch/sh/drivers/pci/Makefile index 0718805774e8..847e90894d1b 100644 --- a/arch/sh/drivers/pci/Makefile +++ b/arch/sh/drivers/pci/Makefile | |||
@@ -23,3 +23,4 @@ obj-$(CONFIG_SH_LANDISK) += ops-landisk.o | |||
23 | obj-$(CONFIG_SH_LBOX_RE2) += ops-lboxre2.o fixups-lboxre2.o | 23 | obj-$(CONFIG_SH_LBOX_RE2) += ops-lboxre2.o fixups-lboxre2.o |
24 | obj-$(CONFIG_SH_7780_SOLUTION_ENGINE) += ops-se7780.o fixups-se7780.o | 24 | obj-$(CONFIG_SH_7780_SOLUTION_ENGINE) += ops-se7780.o fixups-se7780.o |
25 | obj-$(CONFIG_SH_CAYMAN) += ops-cayman.o | 25 | obj-$(CONFIG_SH_CAYMAN) += ops-cayman.o |
26 | obj-$(CONFIG_SH_SH7785LCR) += ops-sh7785lcr.o fixups-sh7785lcr.o | ||
diff --git a/arch/sh/drivers/pci/fixups-sh7785lcr.c b/arch/sh/drivers/pci/fixups-sh7785lcr.c new file mode 100644 index 000000000000..4949e601387a --- /dev/null +++ b/arch/sh/drivers/pci/fixups-sh7785lcr.c | |||
@@ -0,0 +1,46 @@ | |||
1 | /* | ||
2 | * arch/sh/drivers/pci/fixups-sh7785lcr.c | ||
3 | * | ||
4 | * R0P7785LC0011RL PCI fixups | ||
5 | * Copyright (C) 2008 Yoshihiro Shimoda | ||
6 | * | ||
7 | * Based on arch/sh/drivers/pci/fixups-r7780rp.c | ||
8 | * Copyright (C) 2003 Lineo uSolutions, Inc. | ||
9 | * Copyright (C) 2004 - 2006 Paul Mundt | ||
10 | * | ||
11 | * This file is subject to the terms and conditions of the GNU General Public | ||
12 | * License. See the file "COPYING" in the main directory of this archive | ||
13 | * for more details. | ||
14 | */ | ||
15 | #include <linux/pci.h> | ||
16 | #include "pci-sh4.h" | ||
17 | |||
18 | int pci_fixup_pcic(void) | ||
19 | { | ||
20 | pci_write_reg(0x000043ff, SH4_PCIINTM); | ||
21 | pci_write_reg(0x0000380f, SH4_PCIAINTM); | ||
22 | |||
23 | pci_write_reg(0xfbb00047, SH7780_PCICMD); | ||
24 | pci_write_reg(0x00000000, SH7780_PCIIBAR); | ||
25 | |||
26 | pci_write_reg(0x00011912, SH7780_PCISVID); | ||
27 | pci_write_reg(0x08000000, SH7780_PCICSCR0); | ||
28 | pci_write_reg(0x0000001b, SH7780_PCICSAR0); | ||
29 | pci_write_reg(0xfd000000, SH7780_PCICSCR1); | ||
30 | pci_write_reg(0x0000000f, SH7780_PCICSAR1); | ||
31 | |||
32 | pci_write_reg(0xfd000000, SH7780_PCIMBR0); | ||
33 | pci_write_reg(0x00fc0000, SH7780_PCIMBMR0); | ||
34 | |||
35 | #ifdef CONFIG_32BIT | ||
36 | pci_write_reg(0xc0000000, SH7780_PCIMBR2); | ||
37 | pci_write_reg(0x20000000 - SH7780_PCI_IO_SIZE, SH7780_PCIMBMR2); | ||
38 | #endif | ||
39 | |||
40 | /* Set IOBR for windows containing area specified in pci.h */ | ||
41 | pci_write_reg((PCIBIOS_MIN_IO & ~(SH7780_PCI_IO_SIZE - 1)), | ||
42 | SH7780_PCIIOBR); | ||
43 | pci_write_reg(((SH7780_PCI_IO_SIZE - 1) & (7 << 18)), SH7780_PCIIOBMR); | ||
44 | |||
45 | return 0; | ||
46 | } | ||
diff --git a/arch/sh/drivers/pci/ops-dreamcast.c b/arch/sh/drivers/pci/ops-dreamcast.c index e1284fc69361..f54c291db37b 100644 --- a/arch/sh/drivers/pci/ops-dreamcast.c +++ b/arch/sh/drivers/pci/ops-dreamcast.c | |||
@@ -22,6 +22,7 @@ | |||
22 | #include <linux/init.h> | 22 | #include <linux/init.h> |
23 | #include <linux/irq.h> | 23 | #include <linux/irq.h> |
24 | #include <linux/pci.h> | 24 | #include <linux/pci.h> |
25 | #include <linux/module.h> | ||
25 | 26 | ||
26 | #include <asm/io.h> | 27 | #include <asm/io.h> |
27 | #include <asm/irq.h> | 28 | #include <asm/irq.h> |
@@ -48,6 +49,7 @@ struct pci_channel board_pci_channels[] = { | |||
48 | &gapspci_mem_resource, 0, 1 }, | 49 | &gapspci_mem_resource, 0, 1 }, |
49 | { 0, } | 50 | { 0, } |
50 | }; | 51 | }; |
52 | EXPORT_SYMBOL(board_pci_channels); | ||
51 | 53 | ||
52 | /* | 54 | /* |
53 | * The !gapspci_config_access case really shouldn't happen, ever, unless | 55 | * The !gapspci_config_access case really shouldn't happen, ever, unless |
diff --git a/arch/sh/drivers/pci/ops-sh7785lcr.c b/arch/sh/drivers/pci/ops-sh7785lcr.c new file mode 100644 index 000000000000..b3bd68702059 --- /dev/null +++ b/arch/sh/drivers/pci/ops-sh7785lcr.c | |||
@@ -0,0 +1,66 @@ | |||
1 | /* | ||
2 | * Author: Ian DaSilva (idasilva@mvista.com) | ||
3 | * | ||
4 | * Highly leveraged from pci-bigsur.c, written by Dustin McIntire. | ||
5 | * | ||
6 | * May be copied or modified under the terms of the GNU General Public | ||
7 | * License. See linux/COPYING for more information. | ||
8 | * | ||
9 | * PCI initialization for the Renesas R0P7785LC0011RL board | ||
10 | * Based on arch/sh/drivers/pci/ops-r7780rp.c | ||
11 | * | ||
12 | */ | ||
13 | #include <linux/kernel.h> | ||
14 | #include <linux/types.h> | ||
15 | #include <linux/init.h> | ||
16 | #include <linux/delay.h> | ||
17 | #include <linux/pci.h> | ||
18 | #include "pci-sh4.h" | ||
19 | |||
20 | static char irq_tab[] __initdata = { | ||
21 | 65, 66, 67, 68, | ||
22 | }; | ||
23 | |||
24 | int __init pcibios_map_platform_irq(struct pci_dev *pdev, u8 slot, u8 pin) | ||
25 | { | ||
26 | return irq_tab[slot]; | ||
27 | } | ||
28 | |||
29 | static struct resource sh7785_io_resource = { | ||
30 | .name = "SH7785_IO", | ||
31 | .start = SH7780_PCI_IO_BASE, | ||
32 | .end = SH7780_PCI_IO_BASE + SH7780_PCI_IO_SIZE - 1, | ||
33 | .flags = IORESOURCE_IO | ||
34 | }; | ||
35 | |||
36 | static struct resource sh7785_mem_resource = { | ||
37 | .name = "SH7785_mem", | ||
38 | .start = SH7780_PCI_MEMORY_BASE, | ||
39 | .end = SH7780_PCI_MEMORY_BASE + SH7780_PCI_MEM_SIZE - 1, | ||
40 | .flags = IORESOURCE_MEM | ||
41 | }; | ||
42 | |||
43 | struct pci_channel board_pci_channels[] = { | ||
44 | { &sh4_pci_ops, &sh7785_io_resource, &sh7785_mem_resource, 0, 0xff }, | ||
45 | { NULL, NULL, NULL, 0, 0 }, | ||
46 | }; | ||
47 | EXPORT_SYMBOL(board_pci_channels); | ||
48 | |||
49 | static struct sh4_pci_address_map sh7785_pci_map = { | ||
50 | .window0 = { | ||
51 | .base = SH7780_CS2_BASE_ADDR, | ||
52 | .size = 0x04000000, | ||
53 | }, | ||
54 | |||
55 | .window1 = { | ||
56 | .base = SH7780_CS3_BASE_ADDR, | ||
57 | .size = 0x04000000, | ||
58 | }, | ||
59 | |||
60 | .flags = SH4_PCIC_NO_RESET, | ||
61 | }; | ||
62 | |||
63 | int __init pcibios_init_platform(void) | ||
64 | { | ||
65 | return sh7780_pcic_init(&sh7785_pci_map); | ||
66 | } | ||
diff --git a/arch/sh/drivers/pci/pci-auto.c b/arch/sh/drivers/pci/pci-auto.c index ea404704ace8..cf48b12ee58c 100644 --- a/arch/sh/drivers/pci/pci-auto.c +++ b/arch/sh/drivers/pci/pci-auto.c | |||
@@ -78,7 +78,7 @@ static struct pci_dev *fake_pci_dev(struct pci_channel *hose, | |||
78 | } | 78 | } |
79 | 79 | ||
80 | #define EARLY_PCI_OP(rw, size, type) \ | 80 | #define EARLY_PCI_OP(rw, size, type) \ |
81 | int early_##rw##_config_##size(struct pci_channel *hose, \ | 81 | static int early_##rw##_config_##size(struct pci_channel *hose, \ |
82 | int top_bus, int bus, int devfn, int offset, type value) \ | 82 | int top_bus, int bus, int devfn, int offset, type value) \ |
83 | { \ | 83 | { \ |
84 | return pci_##rw##_config_##size( \ | 84 | return pci_##rw##_config_##size( \ |
diff --git a/arch/sh/drivers/pci/pci.c b/arch/sh/drivers/pci/pci.c index f57095a2617c..d3839e609aac 100644 --- a/arch/sh/drivers/pci/pci.c +++ b/arch/sh/drivers/pci/pci.c | |||
@@ -135,7 +135,7 @@ int pcibios_enable_device(struct pci_dev *dev, int mask) | |||
135 | * If we set up a device for bus mastering, we need to check and set | 135 | * If we set up a device for bus mastering, we need to check and set |
136 | * the latency timer as it may not be properly set. | 136 | * the latency timer as it may not be properly set. |
137 | */ | 137 | */ |
138 | unsigned int pcibios_max_latency = 255; | 138 | static unsigned int pcibios_max_latency = 255; |
139 | 139 | ||
140 | void pcibios_set_master(struct pci_dev *dev) | 140 | void pcibios_set_master(struct pci_dev *dev) |
141 | { | 141 | { |
diff --git a/arch/sh/kernel/Makefile_32 b/arch/sh/kernel/Makefile_32 index 4bbdce36b92b..0e6905fe9fec 100644 --- a/arch/sh/kernel/Makefile_32 +++ b/arch/sh/kernel/Makefile_32 | |||
@@ -21,7 +21,7 @@ obj-$(CONFIG_KEXEC) += machine_kexec.o relocate_kernel.o | |||
21 | obj-$(CONFIG_CRASH_DUMP) += crash_dump.o | 21 | obj-$(CONFIG_CRASH_DUMP) += crash_dump.o |
22 | obj-$(CONFIG_PM) += pm.o | 22 | obj-$(CONFIG_PM) += pm.o |
23 | obj-$(CONFIG_STACKTRACE) += stacktrace.o | 23 | obj-$(CONFIG_STACKTRACE) += stacktrace.o |
24 | obj-$(CONFIG_BINFMT_ELF) += dump_task.o | 24 | obj-$(CONFIG_ELF_CORE) += dump_task.o |
25 | obj-$(CONFIG_IO_TRAPPED) += io_trapped.o | 25 | obj-$(CONFIG_IO_TRAPPED) += io_trapped.o |
26 | 26 | ||
27 | EXTRA_CFLAGS += -Werror | 27 | EXTRA_CFLAGS += -Werror |
diff --git a/arch/sh/kernel/cf-enabler.c b/arch/sh/kernel/cf-enabler.c index 01ff4d05aab0..d3d9f3204230 100644 --- a/arch/sh/kernel/cf-enabler.c +++ b/arch/sh/kernel/cf-enabler.c | |||
@@ -157,7 +157,7 @@ static int __init cf_init_se(void) | |||
157 | } | 157 | } |
158 | #endif | 158 | #endif |
159 | 159 | ||
160 | int __init cf_init(void) | 160 | static int __init cf_init(void) |
161 | { | 161 | { |
162 | if (mach_is_se() || mach_is_7722se() || mach_is_7721se()) | 162 | if (mach_is_se() || mach_is_7722se() || mach_is_7721se()) |
163 | return cf_init_se(); | 163 | return cf_init_se(); |
diff --git a/arch/sh/kernel/cpu/clock.c b/arch/sh/kernel/cpu/clock.c index b5f1e23ed57c..f5eb56e6bc59 100644 --- a/arch/sh/kernel/cpu/clock.c +++ b/arch/sh/kernel/cpu/clock.c | |||
@@ -88,7 +88,7 @@ static void propagate_rate(struct clk *clk) | |||
88 | } | 88 | } |
89 | } | 89 | } |
90 | 90 | ||
91 | int __clk_enable(struct clk *clk) | 91 | static int __clk_enable(struct clk *clk) |
92 | { | 92 | { |
93 | /* | 93 | /* |
94 | * See if this is the first time we're enabling the clock, some | 94 | * See if this is the first time we're enabling the clock, some |
@@ -111,7 +111,6 @@ int __clk_enable(struct clk *clk) | |||
111 | 111 | ||
112 | return 0; | 112 | return 0; |
113 | } | 113 | } |
114 | EXPORT_SYMBOL_GPL(__clk_enable); | ||
115 | 114 | ||
116 | int clk_enable(struct clk *clk) | 115 | int clk_enable(struct clk *clk) |
117 | { | 116 | { |
@@ -131,7 +130,7 @@ static void clk_kref_release(struct kref *kref) | |||
131 | /* Nothing to do */ | 130 | /* Nothing to do */ |
132 | } | 131 | } |
133 | 132 | ||
134 | void __clk_disable(struct clk *clk) | 133 | static void __clk_disable(struct clk *clk) |
135 | { | 134 | { |
136 | int count = kref_put(&clk->kref, clk_kref_release); | 135 | int count = kref_put(&clk->kref, clk_kref_release); |
137 | 136 | ||
@@ -143,7 +142,6 @@ void __clk_disable(struct clk *clk) | |||
143 | clk->ops->disable(clk); | 142 | clk->ops->disable(clk); |
144 | } | 143 | } |
145 | } | 144 | } |
146 | EXPORT_SYMBOL_GPL(__clk_disable); | ||
147 | 145 | ||
148 | void clk_disable(struct clk *clk) | 146 | void clk_disable(struct clk *clk) |
149 | { | 147 | { |
@@ -310,15 +308,11 @@ static int show_clocks(char *buf, char **start, off_t off, | |||
310 | list_for_each_entry_reverse(clk, &clock_list, node) { | 308 | list_for_each_entry_reverse(clk, &clock_list, node) { |
311 | unsigned long rate = clk_get_rate(clk); | 309 | unsigned long rate = clk_get_rate(clk); |
312 | 310 | ||
313 | /* | 311 | p += sprintf(p, "%-12s\t: %ld.%02ldMHz\t%s\n", clk->name, |
314 | * Don't bother listing dummy clocks with no ancestry | 312 | rate / 1000000, (rate % 1000000) / 10000, |
315 | * that only support enable and disable ops. | 313 | ((clk->flags & CLK_ALWAYS_ENABLED) || |
316 | */ | 314 | (atomic_read(&clk->kref.refcount) != 1)) ? |
317 | if (unlikely(!rate && !clk->parent)) | 315 | "enabled" : "disabled"); |
318 | continue; | ||
319 | |||
320 | p += sprintf(p, "%-12s\t: %ld.%02ldMHz\n", clk->name, | ||
321 | rate / 1000000, (rate % 1000000) / 10000); | ||
322 | } | 316 | } |
323 | 317 | ||
324 | return p - buf; | 318 | return p - buf; |
diff --git a/arch/sh/kernel/cpu/irq/intc.c b/arch/sh/kernel/cpu/irq/intc.c index da5dae787888..8c70e201bde0 100644 --- a/arch/sh/kernel/cpu/irq/intc.c +++ b/arch/sh/kernel/cpu/irq/intc.c | |||
@@ -62,7 +62,7 @@ struct intc_desc_int { | |||
62 | #endif | 62 | #endif |
63 | 63 | ||
64 | static unsigned int intc_prio_level[NR_IRQS]; /* for now */ | 64 | static unsigned int intc_prio_level[NR_IRQS]; /* for now */ |
65 | #ifdef CONFIG_CPU_SH3 | 65 | #if defined(CONFIG_CPU_SH3) || defined(CONFIG_CPU_SH4A) |
66 | static unsigned long ack_handle[NR_IRQS]; | 66 | static unsigned long ack_handle[NR_IRQS]; |
67 | #endif | 67 | #endif |
68 | 68 | ||
@@ -231,7 +231,7 @@ static void intc_disable(unsigned int irq) | |||
231 | } | 231 | } |
232 | } | 232 | } |
233 | 233 | ||
234 | #ifdef CONFIG_CPU_SH3 | 234 | #if defined(CONFIG_CPU_SH3) || defined(CONFIG_CPU_SH4A) |
235 | static void intc_mask_ack(unsigned int irq) | 235 | static void intc_mask_ack(unsigned int irq) |
236 | { | 236 | { |
237 | struct intc_desc_int *d = get_intc_desc(irq); | 237 | struct intc_desc_int *d = get_intc_desc(irq); |
@@ -244,8 +244,23 @@ static void intc_mask_ack(unsigned int irq) | |||
244 | 244 | ||
245 | if (handle) { | 245 | if (handle) { |
246 | addr = INTC_REG(d, _INTC_ADDR_D(handle), 0); | 246 | addr = INTC_REG(d, _INTC_ADDR_D(handle), 0); |
247 | ctrl_inb(addr); | 247 | switch (_INTC_FN(handle)) { |
248 | ctrl_outb(0x3f ^ set_field(0, 1, handle), addr); | 248 | case REG_FN_MODIFY_BASE + 0: /* 8bit */ |
249 | ctrl_inb(addr); | ||
250 | ctrl_outb(0xff ^ set_field(0, 1, handle), addr); | ||
251 | break; | ||
252 | case REG_FN_MODIFY_BASE + 1: /* 16bit */ | ||
253 | ctrl_inw(addr); | ||
254 | ctrl_outw(0xffff ^ set_field(0, 1, handle), addr); | ||
255 | break; | ||
256 | case REG_FN_MODIFY_BASE + 3: /* 32bit */ | ||
257 | ctrl_inl(addr); | ||
258 | ctrl_outl(0xffffffff ^ set_field(0, 1, handle), addr); | ||
259 | break; | ||
260 | default: | ||
261 | BUG(); | ||
262 | break; | ||
263 | } | ||
249 | } | 264 | } |
250 | } | 265 | } |
251 | #endif | 266 | #endif |
@@ -466,7 +481,7 @@ static unsigned int __init intc_prio_data(struct intc_desc *desc, | |||
466 | return 0; | 481 | return 0; |
467 | } | 482 | } |
468 | 483 | ||
469 | #ifdef CONFIG_CPU_SH3 | 484 | #if defined(CONFIG_CPU_SH3) || defined(CONFIG_CPU_SH4A) |
470 | static unsigned int __init intc_ack_data(struct intc_desc *desc, | 485 | static unsigned int __init intc_ack_data(struct intc_desc *desc, |
471 | struct intc_desc_int *d, | 486 | struct intc_desc_int *d, |
472 | intc_enum enum_id) | 487 | intc_enum enum_id) |
@@ -601,7 +616,7 @@ static void __init intc_register_irq(struct intc_desc *desc, | |||
601 | /* irq should be disabled by default */ | 616 | /* irq should be disabled by default */ |
602 | d->chip.mask(irq); | 617 | d->chip.mask(irq); |
603 | 618 | ||
604 | #ifdef CONFIG_CPU_SH3 | 619 | #if defined(CONFIG_CPU_SH3) || defined(CONFIG_CPU_SH4A) |
605 | if (desc->ack_regs) | 620 | if (desc->ack_regs) |
606 | ack_handle[irq] = intc_ack_data(desc, d, enum_id); | 621 | ack_handle[irq] = intc_ack_data(desc, d, enum_id); |
607 | #endif | 622 | #endif |
@@ -635,7 +650,7 @@ void __init register_intc_controller(struct intc_desc *desc) | |||
635 | d->nr_reg += desc->prio_regs ? desc->nr_prio_regs * 2 : 0; | 650 | d->nr_reg += desc->prio_regs ? desc->nr_prio_regs * 2 : 0; |
636 | d->nr_reg += desc->sense_regs ? desc->nr_sense_regs : 0; | 651 | d->nr_reg += desc->sense_regs ? desc->nr_sense_regs : 0; |
637 | 652 | ||
638 | #ifdef CONFIG_CPU_SH3 | 653 | #if defined(CONFIG_CPU_SH3) || defined(CONFIG_CPU_SH4A) |
639 | d->nr_reg += desc->ack_regs ? desc->nr_ack_regs : 0; | 654 | d->nr_reg += desc->ack_regs ? desc->nr_ack_regs : 0; |
640 | #endif | 655 | #endif |
641 | d->reg = alloc_bootmem(d->nr_reg * sizeof(*d->reg)); | 656 | d->reg = alloc_bootmem(d->nr_reg * sizeof(*d->reg)); |
@@ -676,7 +691,7 @@ void __init register_intc_controller(struct intc_desc *desc) | |||
676 | d->chip.mask_ack = intc_disable; | 691 | d->chip.mask_ack = intc_disable; |
677 | d->chip.set_type = intc_set_sense; | 692 | d->chip.set_type = intc_set_sense; |
678 | 693 | ||
679 | #ifdef CONFIG_CPU_SH3 | 694 | #if defined(CONFIG_CPU_SH3) || defined(CONFIG_CPU_SH4A) |
680 | if (desc->ack_regs) { | 695 | if (desc->ack_regs) { |
681 | for (i = 0; i < desc->nr_ack_regs; i++) | 696 | for (i = 0; i < desc->nr_ack_regs; i++) |
682 | k += save_reg(d, k, desc->ack_regs[i].set_reg, 0); | 697 | k += save_reg(d, k, desc->ack_regs[i].set_reg, 0); |
diff --git a/arch/sh/kernel/cpu/sh2/entry.S b/arch/sh/kernel/cpu/sh2/entry.S index 0fc89069d8c7..ee894e5a45e7 100644 --- a/arch/sh/kernel/cpu/sh2/entry.S +++ b/arch/sh/kernel/cpu/sh2/entry.S | |||
@@ -3,7 +3,7 @@ | |||
3 | * | 3 | * |
4 | * The SH-2 exception entry | 4 | * The SH-2 exception entry |
5 | * | 5 | * |
6 | * Copyright (C) 2005,2006 Yoshinori Sato | 6 | * Copyright (C) 2005-2008 Yoshinori Sato |
7 | * Copyright (C) 2005 AXE,Inc. | 7 | * Copyright (C) 2005 AXE,Inc. |
8 | * | 8 | * |
9 | * This file is subject to the terms and conditions of the GNU General Public | 9 | * This file is subject to the terms and conditions of the GNU General Public |
@@ -36,43 +36,41 @@ OFF_TRA = (16*4+6*4) | |||
36 | #include <asm/entry-macros.S> | 36 | #include <asm/entry-macros.S> |
37 | 37 | ||
38 | ENTRY(exception_handler) | 38 | ENTRY(exception_handler) |
39 | ! already saved r0/r1 | 39 | ! stack |
40 | ! r0 <- point sp | ||
41 | ! r1 | ||
42 | ! pc | ||
43 | ! sr | ||
44 | ! r0 = temporary | ||
45 | ! r1 = vector (pseudo EXPEVT / INTEVT / TRA) | ||
40 | mov.l r2,@-sp | 46 | mov.l r2,@-sp |
41 | mov.l r3,@-sp | 47 | mov.l r3,@-sp |
42 | mov r0,r1 | ||
43 | cli | 48 | cli |
44 | mov.l $cpu_mode,r2 | 49 | mov.l $cpu_mode,r2 |
45 | mov.l @r2,r0 | 50 | mov.l @r2,r0 |
46 | mov.l @(5*4,r15),r3 ! previous SR | 51 | mov.l @(5*4,r15),r3 ! previous SR |
47 | shll2 r3 ! set "S" flag | 52 | or r0,r3 ! set MD |
48 | rotl r0 ! T <- "S" flag | 53 | tst r0,r0 |
49 | rotl r0 ! "S" flag is LSB | 54 | bf/s 1f ! previous mode check |
50 | rotcr r3 ! T -> r3:b30 | 55 | mov.l r3,@(5*4,r15) ! update SR |
51 | shlr r3 | ||
52 | shlr r0 | ||
53 | bt/s 1f | ||
54 | mov.l r3,@(5*4,r15) ! copy cpu mode to SR | ||
55 | ! switch to kernel mode | 56 | ! switch to kernel mode |
56 | mov #1,r0 | 57 | mov.l __md_bit,r0 |
57 | rotr r0 | ||
58 | rotr r0 | ||
59 | mov.l r0,@r2 ! enter kernel mode | 58 | mov.l r0,@r2 ! enter kernel mode |
60 | mov.l $current_thread_info,r2 | 59 | mov.l $current_thread_info,r2 |
61 | mov.l @r2,r2 | 60 | mov.l @r2,r2 |
62 | mov #0x20,r0 | 61 | mov #(THREAD_SIZE >> 8),r0 |
63 | shll8 r0 | 62 | shll8 r0 |
64 | add r2,r0 | 63 | add r2,r0 |
65 | mov r15,r2 ! r2 = user stack top | 64 | mov r15,r2 ! r2 = user stack top |
66 | mov r0,r15 ! switch kernel stack | 65 | mov r0,r15 ! switch kernel stack |
67 | add #-4,r15 ! dummy | ||
68 | mov.l r1,@-r15 ! TRA | 66 | mov.l r1,@-r15 ! TRA |
69 | sts.l macl, @-r15 | 67 | sts.l macl, @-r15 |
70 | sts.l mach, @-r15 | 68 | sts.l mach, @-r15 |
71 | stc.l gbr, @-r15 | 69 | stc.l gbr, @-r15 |
72 | mov.l @(4*4,r2),r0 | 70 | mov.l @(5*4,r2),r0 |
73 | mov.l @(5*4,r2),r1 | 71 | mov.l r0,@-r15 ! original SR |
74 | mov.l r1,@-r15 ! original SR | ||
75 | sts.l pr,@-r15 | 72 | sts.l pr,@-r15 |
73 | mov.l @(4*4,r2),r0 | ||
76 | mov.l r0,@-r15 ! original PC | 74 | mov.l r0,@-r15 ! original PC |
77 | mov r2,r3 | 75 | mov r2,r3 |
78 | add #(4+2)*4,r3 ! rewind r0 - r3 + exception frame | 76 | add #(4+2)*4,r3 ! rewind r0 - r3 + exception frame |
@@ -88,14 +86,15 @@ ENTRY(exception_handler) | |||
88 | mov.l r6,@-r15 | 86 | mov.l r6,@-r15 |
89 | mov.l r5,@-r15 | 87 | mov.l r5,@-r15 |
90 | mov.l r4,@-r15 | 88 | mov.l r4,@-r15 |
89 | mov r1,r9 ! save TRA | ||
91 | mov r2,r8 ! copy user -> kernel stack | 90 | mov r2,r8 ! copy user -> kernel stack |
92 | mov.l @r8+,r3 | 91 | mov.l @(0,r8),r3 |
93 | mov.l r3,@-r15 | 92 | mov.l r3,@-r15 |
94 | mov.l @r8+,r2 | 93 | mov.l @(4,r8),r2 |
95 | mov.l r2,@-r15 | 94 | mov.l r2,@-r15 |
96 | mov.l @r8+,r1 | 95 | mov.l @(12,r8),r1 |
97 | mov.l r1,@-r15 | 96 | mov.l r1,@-r15 |
98 | mov.l @r8+,r0 | 97 | mov.l @(8,r8),r0 |
99 | bra 2f | 98 | bra 2f |
100 | mov.l r0,@-r15 | 99 | mov.l r0,@-r15 |
101 | 1: | 100 | 1: |
@@ -107,10 +106,11 @@ ENTRY(exception_handler) | |||
107 | mov.l r0,@-r15 | 106 | mov.l r0,@-r15 |
108 | mov.l @r2+,r0 ! old R2 | 107 | mov.l @r2+,r0 ! old R2 |
109 | mov.l r0,@-r15 | 108 | mov.l r0,@-r15 |
110 | mov.l @r2+,r0 ! old R1 | 109 | mov.l @(4,r2),r0 ! old R1 |
111 | mov.l r0,@-r15 | ||
112 | mov.l @r2+,r0 ! old R0 | ||
113 | mov.l r0,@-r15 | 110 | mov.l r0,@-r15 |
111 | mov.l @r2,r0 ! old R0 | ||
112 | mov.l r0,@-r15 | ||
113 | add #8,r2 | ||
114 | mov.l @r2+,r3 ! old PC | 114 | mov.l @r2+,r3 ! old PC |
115 | mov.l @r2+,r0 ! old SR | 115 | mov.l @r2+,r0 ! old SR |
116 | add #-4,r2 ! exception frame stub (sr) | 116 | add #-4,r2 ! exception frame stub (sr) |
@@ -135,14 +135,12 @@ ENTRY(exception_handler) | |||
135 | mov.l r6,@-r2 | 135 | mov.l r6,@-r2 |
136 | mov.l r5,@-r2 | 136 | mov.l r5,@-r2 |
137 | mov.l r4,@-r2 | 137 | mov.l r4,@-r2 |
138 | mov r1,r9 | ||
138 | mov.l @(OFF_R0,r15),r0 | 139 | mov.l @(OFF_R0,r15),r0 |
139 | mov.l @(OFF_R1,r15),r1 | 140 | mov.l @(OFF_R1,r15),r1 |
140 | mov.l @(OFF_R2,r15),r2 | 141 | mov.l @(OFF_R2,r15),r2 |
141 | mov.l @(OFF_R3,r15),r3 | 142 | mov.l @(OFF_R3,r15),r3 |
142 | 2: | 143 | 2: |
143 | mov #OFF_TRA,r8 | ||
144 | add r15,r8 | ||
145 | mov.l @r8,r9 | ||
146 | mov #64,r8 | 144 | mov #64,r8 |
147 | cmp/hs r8,r9 | 145 | cmp/hs r8,r9 |
148 | bt interrupt_entry ! vec >= 64 is interrupt | 146 | bt interrupt_entry ! vec >= 64 is interrupt |
@@ -150,26 +148,14 @@ ENTRY(exception_handler) | |||
150 | cmp/hs r8,r9 | 148 | cmp/hs r8,r9 |
151 | bt trap_entry ! 64 > vec >= 32 is trap | 149 | bt trap_entry ! 64 > vec >= 32 is trap |
152 | 150 | ||
153 | #if defined(CONFIG_SH_FPU) | ||
154 | mov #13,r8 | ||
155 | cmp/eq r8,r9 | ||
156 | bt 10f ! fpu | ||
157 | nop | ||
158 | #endif | ||
159 | |||
160 | mov.l 4f,r8 | 151 | mov.l 4f,r8 |
161 | mov r9,r4 | 152 | mov r9,r4 |
162 | shll2 r9 | 153 | shll2 r9 |
163 | add r9,r8 | 154 | add r9,r8 |
164 | mov.l @r8,r8 | 155 | mov.l @r8,r8 ! exception handler address |
165 | mov #0,r9 | 156 | tst r8,r8 |
166 | cmp/eq r9,r8 | ||
167 | bf 3f | 157 | bf 3f |
168 | mov.l 8f,r8 ! unhandled exception | 158 | mov.l 8f,r8 ! unhandled exception |
169 | #if defined(CONFIG_SH_FPU) | ||
170 | 10: | ||
171 | mov.l 9f, r8 ! unhandled exception | ||
172 | #endif | ||
173 | 3: | 159 | 3: |
174 | mov.l 5f,r10 | 160 | mov.l 5f,r10 |
175 | jmp @r8 | 161 | jmp @r8 |
@@ -188,10 +174,7 @@ interrupt_entry: | |||
188 | 5: .long ret_from_exception | 174 | 5: .long ret_from_exception |
189 | 6: .long ret_from_irq | 175 | 6: .long ret_from_irq |
190 | 7: .long do_IRQ | 176 | 7: .long do_IRQ |
191 | 8: .long do_exception_error | 177 | 8: .long exception_error |
192 | #ifdef CONFIG_SH_FPU | ||
193 | 9: .long fpu_error_trap_handler | ||
194 | #endif | ||
195 | 178 | ||
196 | trap_entry: | 179 | trap_entry: |
197 | mov #0x30,r8 | 180 | mov #0x30,r8 |
@@ -200,24 +183,9 @@ trap_entry: | |||
200 | add #-0x10,r9 ! convert SH2 to SH3/4 ABI | 183 | add #-0x10,r9 ! convert SH2 to SH3/4 ABI |
201 | 1: | 184 | 1: |
202 | shll2 r9 ! TRA | 185 | shll2 r9 ! TRA |
203 | mov #OFF_TRA,r8 | 186 | bra system_call ! jump common systemcall entry |
204 | add r15,r8 | 187 | mov r9,r8 |
205 | mov.l r9,@r8 | ||
206 | mov r9,r8 | ||
207 | #ifdef CONFIG_TRACE_IRQFLAGS | ||
208 | mov.l 2f, r9 | ||
209 | jsr @r9 | ||
210 | nop | ||
211 | #endif | ||
212 | sti | ||
213 | bra system_call | ||
214 | nop | ||
215 | 188 | ||
216 | .align 2 | ||
217 | #ifdef CONFIG_TRACE_IRQFLAGS | ||
218 | 2: .long trace_hardirqs_on | ||
219 | #endif | ||
220 | |||
221 | #if defined(CONFIG_SH_STANDARD_BIOS) | 189 | #if defined(CONFIG_SH_STANDARD_BIOS) |
222 | /* Unwind the stack and jmp to the debug entry */ | 190 | /* Unwind the stack and jmp to the debug entry */ |
223 | ENTRY(sh_bios_handler) | 191 | ENTRY(sh_bios_handler) |
@@ -240,7 +208,7 @@ ENTRY(sh_bios_handler) | |||
240 | mov.l @r2,r2 | 208 | mov.l @r2,r2 |
241 | stc sr,r3 | 209 | stc sr,r3 |
242 | mov.l r2,@r0 | 210 | mov.l r2,@r0 |
243 | mov.l r3,@r0 | 211 | mov.l r3,@(4,r0) |
244 | mov.l r1,@(8,r0) | 212 | mov.l r1,@(8,r0) |
245 | mov.l @r15+, r0 | 213 | mov.l @r15+, r0 |
246 | mov.l @r15+, r1 | 214 | mov.l @r15+, r1 |
@@ -272,22 +240,30 @@ ENTRY(address_error_trap_handler) | |||
272 | mov.l 1f,r0 | 240 | mov.l 1f,r0 |
273 | jmp @r0 | 241 | jmp @r0 |
274 | mov #0,r5 ! writeaccess is unknown | 242 | mov #0,r5 ! writeaccess is unknown |
275 | .align 2 | ||
276 | 243 | ||
244 | .align 2 | ||
277 | 1: .long do_address_error | 245 | 1: .long do_address_error |
278 | 246 | ||
279 | restore_all: | 247 | restore_all: |
280 | cli | 248 | stc sr,r0 |
281 | #ifdef CONFIG_TRACE_IRQFLAGS | 249 | or #0xf0,r0 |
282 | mov.l 1f, r0 | 250 | ldc r0,sr ! all interrupt block (same BL = 1) |
283 | jsr @r0 | 251 | ! restore special register |
284 | nop | 252 | ! overlap exception frame |
285 | #endif | 253 | mov r15,r0 |
254 | add #17*4,r0 | ||
255 | lds.l @r0+,pr | ||
256 | add #4,r0 | ||
257 | ldc.l @r0+,gbr | ||
258 | lds.l @r0+,mach | ||
259 | lds.l @r0+,macl | ||
286 | mov r15,r0 | 260 | mov r15,r0 |
287 | mov.l $cpu_mode,r2 | 261 | mov.l $cpu_mode,r2 |
288 | mov #OFF_SR,r3 | 262 | mov #OFF_SR,r3 |
289 | mov.l @(r0,r3),r1 | 263 | mov.l @(r0,r3),r1 |
290 | mov.l r1,@r2 | 264 | mov.l __md_bit,r3 |
265 | and r1,r3 ! copy MD bit | ||
266 | mov.l r3,@r2 | ||
291 | shll2 r1 ! clear MD bit | 267 | shll2 r1 ! clear MD bit |
292 | shlr2 r1 | 268 | shlr2 r1 |
293 | mov.l @(OFF_SP,r0),r2 | 269 | mov.l @(OFF_SP,r0),r2 |
@@ -297,12 +273,6 @@ restore_all: | |||
297 | mov #OFF_PC,r3 | 273 | mov #OFF_PC,r3 |
298 | mov.l @(r0,r3),r1 | 274 | mov.l @(r0,r3),r1 |
299 | mov.l r1,@r2 ! set pc | 275 | mov.l r1,@r2 ! set pc |
300 | add #4*16+4,r0 | ||
301 | lds.l @r0+,pr | ||
302 | add #4,r0 ! skip sr | ||
303 | ldc.l @r0+,gbr | ||
304 | lds.l @r0+,mach | ||
305 | lds.l @r0+,macl | ||
306 | get_current_thread_info r0, r1 | 276 | get_current_thread_info r0, r1 |
307 | mov.l $current_thread_info,r1 | 277 | mov.l $current_thread_info,r1 |
308 | mov.l r0,@r1 | 278 | mov.l r0,@r1 |
@@ -326,9 +296,8 @@ restore_all: | |||
326 | nop | 296 | nop |
327 | 297 | ||
328 | .align 2 | 298 | .align 2 |
329 | #ifdef CONFIG_TRACE_IRQFLAGS | 299 | __md_bit: |
330 | 1: .long trace_hardirqs_off | 300 | .long 0x40000000 |
331 | #endif | ||
332 | $current_thread_info: | 301 | $current_thread_info: |
333 | .long __current_thread_info | 302 | .long __current_thread_info |
334 | $cpu_mode: | 303 | $cpu_mode: |
diff --git a/arch/sh/kernel/cpu/sh2/ex.S b/arch/sh/kernel/cpu/sh2/ex.S index 6d285af7846c..85b0bf81fc1d 100644 --- a/arch/sh/kernel/cpu/sh2/ex.S +++ b/arch/sh/kernel/cpu/sh2/ex.S | |||
@@ -18,16 +18,17 @@ | |||
18 | exception_entry: | 18 | exception_entry: |
19 | no = 0 | 19 | no = 0 |
20 | .rept 256 | 20 | .rept 256 |
21 | mov.l r0,@-sp | 21 | mov.l r1,@-sp |
22 | mov #no,r0 | ||
23 | bra exception_trampoline | 22 | bra exception_trampoline |
24 | and #0xff,r0 | 23 | mov #no,r1 |
25 | no = no + 1 | 24 | no = no + 1 |
26 | .endr | 25 | .endr |
27 | exception_trampoline: | 26 | exception_trampoline: |
28 | mov.l r1,@-sp | 27 | mov.l r0,@-sp |
29 | mov.l $exception_handler,r1 | 28 | mov.l $exception_handler,r0 |
30 | jmp @r1 | 29 | extu.b r1,r1 |
30 | jmp @r0 | ||
31 | extu.w r1,r1 | ||
31 | 32 | ||
32 | .align 2 | 33 | .align 2 |
33 | $exception_entry: | 34 | $exception_entry: |
@@ -41,6 +42,6 @@ $exception_handler: | |||
41 | ENTRY(vbr_base) | 42 | ENTRY(vbr_base) |
42 | vector = 0 | 43 | vector = 0 |
43 | .rept 256 | 44 | .rept 256 |
44 | .long exception_entry + vector * 8 | 45 | .long exception_entry + vector * 6 |
45 | vector = vector + 1 | 46 | vector = vector + 1 |
46 | .endr | 47 | .endr |
diff --git a/arch/sh/kernel/cpu/sh2/setup-sh7619.c b/arch/sh/kernel/cpu/sh2/setup-sh7619.c index cc530f4d84d6..56e5878e5516 100644 --- a/arch/sh/kernel/cpu/sh2/setup-sh7619.c +++ b/arch/sh/kernel/cpu/sh2/setup-sh7619.c | |||
@@ -96,8 +96,32 @@ static struct platform_device sci_device = { | |||
96 | }, | 96 | }, |
97 | }; | 97 | }; |
98 | 98 | ||
99 | static struct resource eth_resources[] = { | ||
100 | [0] = { | ||
101 | .start = 0xfb000000, | ||
102 | .end = 0xfb0001c8, | ||
103 | .flags = IORESOURCE_MEM, | ||
104 | }, | ||
105 | [1] = { | ||
106 | .start = 85, | ||
107 | .end = 85, | ||
108 | .flags = IORESOURCE_IRQ, | ||
109 | }, | ||
110 | }; | ||
111 | |||
112 | static struct platform_device eth_device = { | ||
113 | .name = "sh-eth", | ||
114 | .id = -1, | ||
115 | .dev = { | ||
116 | .platform_data = (void *)1, | ||
117 | }, | ||
118 | .num_resources = ARRAY_SIZE(eth_resources), | ||
119 | .resource = eth_resources, | ||
120 | }; | ||
121 | |||
99 | static struct platform_device *sh7619_devices[] __initdata = { | 122 | static struct platform_device *sh7619_devices[] __initdata = { |
100 | &sci_device, | 123 | &sci_device, |
124 | ð_device, | ||
101 | }; | 125 | }; |
102 | 126 | ||
103 | static int __init sh7619_devices_setup(void) | 127 | static int __init sh7619_devices_setup(void) |
diff --git a/arch/sh/kernel/cpu/sh2a/Makefile b/arch/sh/kernel/cpu/sh2a/Makefile index 7e2b90cfa7bf..1ab1ecf4c768 100644 --- a/arch/sh/kernel/cpu/sh2a/Makefile +++ b/arch/sh/kernel/cpu/sh2a/Makefile | |||
@@ -4,7 +4,7 @@ | |||
4 | 4 | ||
5 | obj-y := common.o probe.o opcode_helper.o | 5 | obj-y := common.o probe.o opcode_helper.o |
6 | 6 | ||
7 | common-y += $(addprefix ../sh2/, ex.o entry.o) | 7 | common-y += ex.o entry.o |
8 | 8 | ||
9 | obj-$(CONFIG_SH_FPU) += fpu.o | 9 | obj-$(CONFIG_SH_FPU) += fpu.o |
10 | 10 | ||
diff --git a/arch/sh/kernel/cpu/sh2a/entry.S b/arch/sh/kernel/cpu/sh2a/entry.S new file mode 100644 index 000000000000..47096dc3d206 --- /dev/null +++ b/arch/sh/kernel/cpu/sh2a/entry.S | |||
@@ -0,0 +1,249 @@ | |||
1 | /* | ||
2 | * arch/sh/kernel/cpu/sh2a/entry.S | ||
3 | * | ||
4 | * The SH-2A exception entry | ||
5 | * | ||
6 | * Copyright (C) 2008 Yoshinori Sato | ||
7 | * Based on arch/sh/kernel/cpu/sh2/entry.S | ||
8 | * | ||
9 | * This file is subject to the terms and conditions of the GNU General Public | ||
10 | * License. See the file "COPYING" in the main directory of this archive | ||
11 | * for more details. | ||
12 | */ | ||
13 | |||
14 | #include <linux/linkage.h> | ||
15 | #include <asm/asm-offsets.h> | ||
16 | #include <asm/thread_info.h> | ||
17 | #include <asm/cpu/mmu_context.h> | ||
18 | #include <asm/unistd.h> | ||
19 | #include <asm/errno.h> | ||
20 | #include <asm/page.h> | ||
21 | |||
22 | /* Offsets to the stack */ | ||
23 | OFF_R0 = 0 /* Return value. New ABI also arg4 */ | ||
24 | OFF_R1 = 4 /* New ABI: arg5 */ | ||
25 | OFF_R2 = 8 /* New ABI: arg6 */ | ||
26 | OFF_R3 = 12 /* New ABI: syscall_nr */ | ||
27 | OFF_R4 = 16 /* New ABI: arg0 */ | ||
28 | OFF_R5 = 20 /* New ABI: arg1 */ | ||
29 | OFF_R6 = 24 /* New ABI: arg2 */ | ||
30 | OFF_R7 = 28 /* New ABI: arg3 */ | ||
31 | OFF_SP = (15*4) | ||
32 | OFF_PC = (16*4) | ||
33 | OFF_SR = (16*4+2*4) | ||
34 | OFF_TRA = (16*4+6*4) | ||
35 | |||
36 | #include <asm/entry-macros.S> | ||
37 | |||
38 | ENTRY(exception_handler) | ||
39 | ! stack | ||
40 | ! r0 <- point sp | ||
41 | ! r1 | ||
42 | ! pc | ||
43 | ! sr | ||
44 | ! r0 = temporary | ||
45 | ! r1 = vector (pseudo EXPEVT / INTEVT / TRA) | ||
46 | mov.l r2,@-sp | ||
47 | cli | ||
48 | mov.l $cpu_mode,r2 | ||
49 | bld.b #6,@(0,r2) !previus SR.MD | ||
50 | bst.b #6,@(4*4,r15) !set cpu mode to SR.MD | ||
51 | bt 1f | ||
52 | ! switch to kernel mode | ||
53 | bset.b #6,@(0,r2) !set SR.MD | ||
54 | mov.l $current_thread_info,r2 | ||
55 | mov.l @r2,r2 | ||
56 | mov #(THREAD_SIZE >> 8),r0 | ||
57 | shll8 r0 | ||
58 | add r2,r0 ! r0 = kernel stack tail | ||
59 | mov r15,r2 ! r2 = user stack top | ||
60 | mov r0,r15 ! switch kernel stack | ||
61 | mov.l r1,@-r15 ! TRA | ||
62 | sts.l macl, @-r15 | ||
63 | sts.l mach, @-r15 | ||
64 | stc.l gbr, @-r15 | ||
65 | mov.l @(4*4,r2),r0 | ||
66 | mov.l r0,@-r15 ! original SR | ||
67 | sts.l pr,@-r15 | ||
68 | mov.l @(3*4,r2),r0 | ||
69 | mov.l r0,@-r15 ! original PC | ||
70 | mov r2,r0 | ||
71 | add #(3+2)*4,r0 ! rewind r0 - r3 + exception frame | ||
72 | lds r0,pr ! pr = original SP | ||
73 | movmu.l r3,@-r15 ! save regs | ||
74 | mov r2,r8 ! r8 = previus stack top | ||
75 | mov r1,r9 ! r9 = interrupt vector | ||
76 | ! restore previous stack | ||
77 | mov.l @r8+,r2 | ||
78 | mov.l @r8+,r0 | ||
79 | mov.l @r8+,r1 | ||
80 | bra 2f | ||
81 | movml.l r2,@-r15 | ||
82 | 1: | ||
83 | ! in kernel exception | ||
84 | mov r15,r2 | ||
85 | add #-((OFF_TRA + 4) - OFF_PC) + 5*4,r15 | ||
86 | movmu.l r3,@-r15 | ||
87 | mov r2,r8 ! r8 = previous stack top | ||
88 | mov r1,r9 ! r9 = interrupt vector | ||
89 | ! restore exception frame & regs | ||
90 | mov.l @r8+,r2 ! old R2 | ||
91 | mov.l @r8+,r0 ! old R0 | ||
92 | mov.l @r8+,r1 ! old R1 | ||
93 | mov.l @r8+,r10 ! old PC | ||
94 | mov.l @r8+,r11 ! old SR | ||
95 | movml.l r2,@-r15 | ||
96 | mov.l r10,@(OFF_PC,r15) | ||
97 | mov.l r11,@(OFF_SR,r15) | ||
98 | mov.l r8,@(OFF_SP,r15) ! save old sp | ||
99 | mov r15,r8 | ||
100 | add #OFF_TRA + 4,r8 | ||
101 | mov.l r9,@-r8 | ||
102 | sts.l macl,@-r8 | ||
103 | sts.l mach,@-r8 | ||
104 | stc.l gbr,@-r8 | ||
105 | add #-4,r8 | ||
106 | sts.l pr,@-r8 | ||
107 | 2: | ||
108 | ! dispatch exception / interrupt | ||
109 | mov #64,r8 | ||
110 | cmp/hs r8,r9 | ||
111 | bt interrupt_entry ! vec >= 64 is interrupt | ||
112 | mov #32,r8 | ||
113 | cmp/hs r8,r9 | ||
114 | bt trap_entry ! 64 > vec >= 32 is trap | ||
115 | |||
116 | mov.l 4f,r8 | ||
117 | mov r9,r4 | ||
118 | shll2 r9 | ||
119 | add r9,r8 | ||
120 | mov.l @r8,r8 ! exception handler address | ||
121 | tst r8,r8 | ||
122 | bf 3f | ||
123 | mov.l 8f,r8 ! unhandled exception | ||
124 | 3: | ||
125 | mov.l 5f,r10 | ||
126 | jmp @r8 | ||
127 | lds r10,pr | ||
128 | |||
129 | interrupt_entry: | ||
130 | mov r9,r4 | ||
131 | mov r15,r5 | ||
132 | mov.l 7f,r8 | ||
133 | mov.l 6f,r9 | ||
134 | jmp @r8 | ||
135 | lds r9,pr | ||
136 | |||
137 | .align 2 | ||
138 | 4: .long exception_handling_table | ||
139 | 5: .long ret_from_exception | ||
140 | 6: .long ret_from_irq | ||
141 | 7: .long do_IRQ | ||
142 | 8: .long exception_error | ||
143 | |||
144 | trap_entry: | ||
145 | mov #0x30,r8 | ||
146 | cmp/ge r8,r9 ! vector 0x20-0x2f is systemcall | ||
147 | bt 1f | ||
148 | add #-0x10,r9 ! convert SH2 to SH3/4 ABI | ||
149 | 1: | ||
150 | shll2 r9 ! TRA | ||
151 | bra system_call ! jump common systemcall entry | ||
152 | mov r9,r8 | ||
153 | |||
154 | #if defined(CONFIG_SH_STANDARD_BIOS) | ||
155 | /* Unwind the stack and jmp to the debug entry */ | ||
156 | ENTRY(sh_bios_handler) | ||
157 | mov r15,r0 | ||
158 | add #(22-4)*4-4,r0 | ||
159 | ldc.l @r0+,gbr | ||
160 | lds.l @r0+,mach | ||
161 | lds.l @r0+,macl | ||
162 | mov r15,r0 | ||
163 | mov.l @(OFF_SP,r0),r1 | ||
164 | mov.l @(OFF_SR,r2),r3 | ||
165 | mov.l r3,@-r1 | ||
166 | mov.l @(OFF_SP,r2),r3 | ||
167 | mov.l r3,@-r1 | ||
168 | mov r15,r0 | ||
169 | add #(22-4)*4-8,r0 | ||
170 | mov.l 1f,r2 | ||
171 | mov.l @r2,r2 | ||
172 | stc sr,r3 | ||
173 | mov.l r2,@r0 | ||
174 | mov.l r3,@(4,r0) | ||
175 | mov.l r1,@(8,r0) | ||
176 | movml.l @r15+,r14 | ||
177 | add #8,r15 | ||
178 | lds.l @r15+, pr | ||
179 | rte | ||
180 | mov.l @r15+,r15 | ||
181 | .align 2 | ||
182 | 1: .long gdb_vbr_vector | ||
183 | #endif /* CONFIG_SH_STANDARD_BIOS */ | ||
184 | |||
185 | ENTRY(address_error_trap_handler) | ||
186 | mov r15,r4 ! regs | ||
187 | mov.l @(OFF_PC,r15),r6 ! pc | ||
188 | mov.l 1f,r0 | ||
189 | jmp @r0 | ||
190 | mov #0,r5 ! writeaccess is unknown | ||
191 | |||
192 | .align 2 | ||
193 | 1: .long do_address_error | ||
194 | |||
195 | restore_all: | ||
196 | stc sr,r0 | ||
197 | or #0xf0,r0 | ||
198 | ldc r0,sr ! all interrupt block (same BL = 1) | ||
199 | ! restore special register | ||
200 | ! overlap exception frame | ||
201 | mov r15,r0 | ||
202 | add #17*4,r0 | ||
203 | lds.l @r0+,pr | ||
204 | add #4,r0 | ||
205 | ldc.l @r0+,gbr | ||
206 | lds.l @r0+,mach | ||
207 | lds.l @r0+,macl | ||
208 | mov r15,r0 | ||
209 | mov.l $cpu_mode,r2 | ||
210 | bld.b #6,@(OFF_SR,r15) | ||
211 | bst.b #6,@(0,r2) ! save CPU mode | ||
212 | mov.l @(OFF_SR,r0),r1 | ||
213 | shll2 r1 | ||
214 | shlr2 r1 ! clear MD bit | ||
215 | mov.l @(OFF_SP,r0),r2 | ||
216 | add #-8,r2 | ||
217 | mov.l r2,@(OFF_SP,r0) ! point exception frame top | ||
218 | mov.l r1,@(4,r2) ! set sr | ||
219 | mov.l @(OFF_PC,r0),r1 | ||
220 | mov.l r1,@r2 ! set pc | ||
221 | get_current_thread_info r0, r1 | ||
222 | mov.l $current_thread_info,r1 | ||
223 | mov.l r0,@r1 | ||
224 | movml.l @r15+,r14 | ||
225 | mov.l @r15,r15 | ||
226 | rte | ||
227 | nop | ||
228 | |||
229 | .align 2 | ||
230 | $current_thread_info: | ||
231 | .long __current_thread_info | ||
232 | $cpu_mode: | ||
233 | .long __cpu_mode | ||
234 | |||
235 | ! common exception handler | ||
236 | #include "../../entry-common.S" | ||
237 | |||
238 | .data | ||
239 | ! cpu operation mode | ||
240 | ! bit30 = MD (compatible SH3/4) | ||
241 | __cpu_mode: | ||
242 | .long 0x40000000 | ||
243 | |||
244 | .section .bss | ||
245 | __current_thread_info: | ||
246 | .long 0 | ||
247 | |||
248 | ENTRY(exception_handling_table) | ||
249 | .space 4*32 | ||
diff --git a/arch/sh/kernel/cpu/sh2a/ex.S b/arch/sh/kernel/cpu/sh2a/ex.S new file mode 100644 index 000000000000..3ead9e63965a --- /dev/null +++ b/arch/sh/kernel/cpu/sh2a/ex.S | |||
@@ -0,0 +1,72 @@ | |||
1 | /* | ||
2 | * arch/sh/kernel/cpu/sh2a/ex.S | ||
3 | * | ||
4 | * The SH-2A exception vector table | ||
5 | * | ||
6 | * Copyright (C) 2008 Yoshinori Sato | ||
7 | * | ||
8 | * This file is subject to the terms and conditions of the GNU General Public | ||
9 | * License. See the file "COPYING" in the main directory of this archive | ||
10 | * for more details. | ||
11 | */ | ||
12 | |||
13 | #include <linux/linkage.h> | ||
14 | |||
15 | ! | ||
16 | ! convert Exception Vector to Exception Number | ||
17 | ! | ||
18 | |||
19 | ! exception no 0 to 255 | ||
20 | exception_entry0: | ||
21 | no = 0 | ||
22 | .rept 256 | ||
23 | mov.l r1,@-sp | ||
24 | bra exception_trampoline0 | ||
25 | mov #no,r1 | ||
26 | no = no + 1 | ||
27 | .endr | ||
28 | exception_trampoline0: | ||
29 | mov.l r0,@-sp | ||
30 | mov.l 1f,r0 | ||
31 | extu.b r1,r1 | ||
32 | jmp @r0 | ||
33 | extu.w r1,r1 | ||
34 | |||
35 | .align 2 | ||
36 | 1: .long exception_handler | ||
37 | |||
38 | ! exception no 256 to 511 | ||
39 | exception_entry1: | ||
40 | no = 0 | ||
41 | .rept 256 | ||
42 | mov.l r1,@-sp | ||
43 | bra exception_trampoline1 | ||
44 | mov #no,r1 | ||
45 | no = no + 1 | ||
46 | .endr | ||
47 | exception_trampoline1: | ||
48 | mov.l r0,@-sp | ||
49 | extu.b r1,r1 | ||
50 | movi20 #0x100,r0 | ||
51 | add r0,r1 | ||
52 | mov.l 1f,r0 | ||
53 | jmp @r0 | ||
54 | extu.w r1,r1 | ||
55 | |||
56 | .align 2 | ||
57 | 1: .long exception_handler | ||
58 | |||
59 | ! | ||
60 | ! Exception Vector Base | ||
61 | ! | ||
62 | .align 2 | ||
63 | ENTRY(vbr_base) | ||
64 | vector = 0 | ||
65 | .rept 256 | ||
66 | .long exception_entry0 + vector * 6 | ||
67 | vector = vector + 1 | ||
68 | .endr | ||
69 | .rept 256 | ||
70 | .long exception_entry1 + vector * 6 | ||
71 | vector = vector + 1 | ||
72 | .endr | ||
diff --git a/arch/sh/kernel/cpu/sh3/ex.S b/arch/sh/kernel/cpu/sh3/ex.S index 11b6d9c6edae..dac429726899 100644 --- a/arch/sh/kernel/cpu/sh3/ex.S +++ b/arch/sh/kernel/cpu/sh3/ex.S | |||
@@ -4,7 +4,7 @@ | |||
4 | * The SH-3 and SH-4 exception vector table. | 4 | * The SH-3 and SH-4 exception vector table. |
5 | 5 | ||
6 | * Copyright (C) 1999, 2000, 2002 Niibe Yutaka | 6 | * Copyright (C) 1999, 2000, 2002 Niibe Yutaka |
7 | * Copyright (C) 2003 - 2006 Paul Mundt | 7 | * Copyright (C) 2003 - 2008 Paul Mundt |
8 | * | 8 | * |
9 | * This file is subject to the terms and conditions of the GNU General Public | 9 | * This file is subject to the terms and conditions of the GNU General Public |
10 | * License. See the file "COPYING" in the main directory of this archive | 10 | * License. See the file "COPYING" in the main directory of this archive |
@@ -12,13 +12,30 @@ | |||
12 | */ | 12 | */ |
13 | #include <linux/linkage.h> | 13 | #include <linux/linkage.h> |
14 | 14 | ||
15 | #if !defined(CONFIG_MMU) | ||
16 | #define tlb_miss_load exception_error | ||
17 | #define tlb_miss_store exception_error | ||
18 | #define initial_page_write exception_error | ||
19 | #define tlb_protection_violation_load exception_error | ||
20 | #define tlb_protection_violation_store exception_error | ||
21 | #define address_error_load exception_error | ||
22 | #define address_error_store exception_error | ||
23 | #endif | ||
24 | |||
25 | #if !defined(CONFIG_SH_FPU) | ||
26 | #define fpu_error_trap_handler exception_error | ||
27 | #endif | ||
28 | |||
29 | #if !defined(CONFIG_KGDB_NMI) | ||
30 | #define kgdb_handle_exception exception_error | ||
31 | #endif | ||
32 | |||
15 | .align 2 | 33 | .align 2 |
16 | .data | 34 | .data |
17 | 35 | ||
18 | ENTRY(exception_handling_table) | 36 | ENTRY(exception_handling_table) |
19 | .long exception_error /* 000 */ | 37 | .long exception_error /* 000 */ |
20 | .long exception_error | 38 | .long exception_error |
21 | #if defined(CONFIG_MMU) | ||
22 | .long tlb_miss_load /* 040 */ | 39 | .long tlb_miss_load /* 040 */ |
23 | .long tlb_miss_store | 40 | .long tlb_miss_store |
24 | .long initial_page_write | 41 | .long initial_page_write |
@@ -26,30 +43,13 @@ ENTRY(exception_handling_table) | |||
26 | .long tlb_protection_violation_store | 43 | .long tlb_protection_violation_store |
27 | .long address_error_load | 44 | .long address_error_load |
28 | .long address_error_store /* 100 */ | 45 | .long address_error_store /* 100 */ |
29 | #else | ||
30 | .long exception_error ! tlb miss load /* 040 */ | ||
31 | .long exception_error ! tlb miss store | ||
32 | .long exception_error ! initial page write | ||
33 | .long exception_error ! tlb prot violation load | ||
34 | .long exception_error ! tlb prot violation store | ||
35 | .long exception_error ! address error load | ||
36 | .long exception_error ! address error store /* 100 */ | ||
37 | #endif | ||
38 | #if defined(CONFIG_SH_FPU) | ||
39 | .long fpu_error_trap_handler /* 120 */ | 46 | .long fpu_error_trap_handler /* 120 */ |
40 | #else | ||
41 | .long exception_error /* 120 */ | ||
42 | #endif | ||
43 | .long exception_error /* 140 */ | 47 | .long exception_error /* 140 */ |
44 | .long system_call ! Unconditional Trap /* 160 */ | 48 | .long system_call ! Unconditional Trap /* 160 */ |
45 | .long exception_error ! reserved_instruction (filled by trap_init) /* 180 */ | 49 | .long exception_error ! reserved_instruction (filled by trap_init) /* 180 */ |
46 | .long exception_error ! illegal_slot_instruction (filled by trap_init) /*1A0*/ | 50 | .long exception_error ! illegal_slot_instruction (filled by trap_init) /*1A0*/ |
47 | ENTRY(nmi_slot) | 51 | ENTRY(nmi_slot) |
48 | #if defined (CONFIG_KGDB_NMI) | ||
49 | .long kgdb_handle_exception /* 1C0 */ ! Allow trap to debugger | 52 | .long kgdb_handle_exception /* 1C0 */ ! Allow trap to debugger |
50 | #else | ||
51 | .long exception_none /* 1C0 */ ! Not implemented yet | ||
52 | #endif | ||
53 | ENTRY(user_break_point_trap) | 53 | ENTRY(user_break_point_trap) |
54 | .long break_point_trap /* 1E0 */ | 54 | .long break_point_trap /* 1E0 */ |
55 | 55 | ||
diff --git a/arch/sh/kernel/cpu/sh4/probe.c b/arch/sh/kernel/cpu/sh4/probe.c index be4926969181..2e42572b1b11 100644 --- a/arch/sh/kernel/cpu/sh4/probe.c +++ b/arch/sh/kernel/cpu/sh4/probe.c | |||
@@ -50,14 +50,18 @@ int __init detect_cpu_and_cache_system(void) | |||
50 | boot_cpu_data.dcache.ways = 1; | 50 | boot_cpu_data.dcache.ways = 1; |
51 | boot_cpu_data.dcache.linesz = L1_CACHE_BYTES; | 51 | boot_cpu_data.dcache.linesz = L1_CACHE_BYTES; |
52 | 52 | ||
53 | /* We don't know the chip cut */ | ||
54 | boot_cpu_data.cut_major = boot_cpu_data.cut_minor = -1; | ||
55 | |||
53 | /* | 56 | /* |
54 | * Setup some generic flags we can probe on SH-4A parts | 57 | * Setup some generic flags we can probe on SH-4A parts |
55 | */ | 58 | */ |
56 | if (((pvr >> 24) & 0xff) == 0x10) { | 59 | if (((pvr >> 16) & 0xff) == 0x10) { |
57 | if ((cvr & 0x10000000) == 0) | 60 | if ((cvr & 0x10000000) == 0) |
58 | boot_cpu_data.flags |= CPU_HAS_DSP; | 61 | boot_cpu_data.flags |= CPU_HAS_DSP; |
59 | 62 | ||
60 | boot_cpu_data.flags |= CPU_HAS_LLSC; | 63 | boot_cpu_data.flags |= CPU_HAS_LLSC; |
64 | boot_cpu_data.cut_major = pvr & 0x7f; | ||
61 | } | 65 | } |
62 | 66 | ||
63 | /* FPU detection works for everyone */ | 67 | /* FPU detection works for everyone */ |
diff --git a/arch/sh/kernel/cpu/sh4a/Makefile b/arch/sh/kernel/cpu/sh4a/Makefile index a880e7968750..9381ad8da263 100644 --- a/arch/sh/kernel/cpu/sh4a/Makefile +++ b/arch/sh/kernel/cpu/sh4a/Makefile | |||
@@ -21,7 +21,7 @@ clock-$(CONFIG_CPU_SUBTYPE_SH7763) := clock-sh7763.o | |||
21 | clock-$(CONFIG_CPU_SUBTYPE_SH7770) := clock-sh7770.o | 21 | clock-$(CONFIG_CPU_SUBTYPE_SH7770) := clock-sh7770.o |
22 | clock-$(CONFIG_CPU_SUBTYPE_SH7780) := clock-sh7780.o | 22 | clock-$(CONFIG_CPU_SUBTYPE_SH7780) := clock-sh7780.o |
23 | clock-$(CONFIG_CPU_SUBTYPE_SH7785) := clock-sh7785.o | 23 | clock-$(CONFIG_CPU_SUBTYPE_SH7785) := clock-sh7785.o |
24 | clock-$(CONFIG_CPU_SUBTYPE_SH7343) := clock-sh7343.o | 24 | clock-$(CONFIG_CPU_SUBTYPE_SH7343) := clock-sh7722.o |
25 | clock-$(CONFIG_CPU_SUBTYPE_SH7722) := clock-sh7722.o | 25 | clock-$(CONFIG_CPU_SUBTYPE_SH7722) := clock-sh7722.o |
26 | clock-$(CONFIG_CPU_SUBTYPE_SH7723) := clock-sh7722.o | 26 | clock-$(CONFIG_CPU_SUBTYPE_SH7723) := clock-sh7722.o |
27 | clock-$(CONFIG_CPU_SUBTYPE_SH7366) := clock-sh7722.o | 27 | clock-$(CONFIG_CPU_SUBTYPE_SH7366) := clock-sh7722.o |
diff --git a/arch/sh/kernel/cpu/sh4a/clock-sh7343.c b/arch/sh/kernel/cpu/sh4a/clock-sh7343.c deleted file mode 100644 index 7adc4f16e95a..000000000000 --- a/arch/sh/kernel/cpu/sh4a/clock-sh7343.c +++ /dev/null | |||
@@ -1,99 +0,0 @@ | |||
1 | /* | ||
2 | * arch/sh/kernel/cpu/sh4a/clock-sh7343.c | ||
3 | * | ||
4 | * SH7343/SH7722 support for the clock framework | ||
5 | * | ||
6 | * Copyright (C) 2006 Paul Mundt | ||
7 | * | ||
8 | * This file is subject to the terms and conditions of the GNU General Public | ||
9 | * License. See the file "COPYING" in the main directory of this archive | ||
10 | * for more details. | ||
11 | */ | ||
12 | #include <linux/init.h> | ||
13 | #include <linux/kernel.h> | ||
14 | #include <linux/io.h> | ||
15 | #include <asm/clock.h> | ||
16 | #include <asm/freq.h> | ||
17 | |||
18 | /* | ||
19 | * SH7343/SH7722 uses a common set of multipliers and divisors, so this | ||
20 | * is quite simple.. | ||
21 | */ | ||
22 | static int multipliers[] = { 1, 2, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1 }; | ||
23 | static int divisors[] = { 1, 3, 2, 5, 3, 4, 5, 6, 8, 10, 12, 16, 20 }; | ||
24 | |||
25 | #define pll_calc() (((ctrl_inl(FRQCR) >> 24) & 0x1f) + 1) | ||
26 | |||
27 | static void master_clk_init(struct clk *clk) | ||
28 | { | ||
29 | clk->parent = clk_get(NULL, "cpu_clk"); | ||
30 | } | ||
31 | |||
32 | static void master_clk_recalc(struct clk *clk) | ||
33 | { | ||
34 | int idx = (ctrl_inl(FRQCR) & 0x000f); | ||
35 | clk->rate *= clk->parent->rate * multipliers[idx] / divisors[idx]; | ||
36 | } | ||
37 | |||
38 | static struct clk_ops sh7343_master_clk_ops = { | ||
39 | .init = master_clk_init, | ||
40 | .recalc = master_clk_recalc, | ||
41 | }; | ||
42 | |||
43 | static void module_clk_init(struct clk *clk) | ||
44 | { | ||
45 | clk->parent = NULL; | ||
46 | clk->rate = CONFIG_SH_PCLK_FREQ; | ||
47 | } | ||
48 | |||
49 | static struct clk_ops sh7343_module_clk_ops = { | ||
50 | .init = module_clk_init, | ||
51 | }; | ||
52 | |||
53 | static void bus_clk_init(struct clk *clk) | ||
54 | { | ||
55 | clk->parent = clk_get(NULL, "cpu_clk"); | ||
56 | } | ||
57 | |||
58 | static void bus_clk_recalc(struct clk *clk) | ||
59 | { | ||
60 | int idx = (ctrl_inl(FRQCR) >> 8) & 0x000f; | ||
61 | clk->rate = clk->parent->rate * multipliers[idx] / divisors[idx]; | ||
62 | } | ||
63 | |||
64 | static struct clk_ops sh7343_bus_clk_ops = { | ||
65 | .init = bus_clk_init, | ||
66 | .recalc = bus_clk_recalc, | ||
67 | }; | ||
68 | |||
69 | static void cpu_clk_init(struct clk *clk) | ||
70 | { | ||
71 | clk->parent = clk_get(NULL, "module_clk"); | ||
72 | clk->flags |= CLK_RATE_PROPAGATES; | ||
73 | clk_set_rate(clk, clk_get_rate(clk)); | ||
74 | } | ||
75 | |||
76 | static void cpu_clk_recalc(struct clk *clk) | ||
77 | { | ||
78 | int idx = (ctrl_inl(FRQCR) >> 20) & 0x000f; | ||
79 | clk->rate = clk->parent->rate * pll_calc() * | ||
80 | multipliers[idx] / divisors[idx]; | ||
81 | } | ||
82 | |||
83 | static struct clk_ops sh7343_cpu_clk_ops = { | ||
84 | .init = cpu_clk_init, | ||
85 | .recalc = cpu_clk_recalc, | ||
86 | }; | ||
87 | |||
88 | static struct clk_ops *sh7343_clk_ops[] = { | ||
89 | &sh7343_master_clk_ops, | ||
90 | &sh7343_module_clk_ops, | ||
91 | &sh7343_bus_clk_ops, | ||
92 | &sh7343_cpu_clk_ops, | ||
93 | }; | ||
94 | |||
95 | void __init arch_init_clk_ops(struct clk_ops **ops, int idx) | ||
96 | { | ||
97 | if (idx < ARRAY_SIZE(sh7343_clk_ops)) | ||
98 | *ops = sh7343_clk_ops[idx]; | ||
99 | } | ||
diff --git a/arch/sh/kernel/cpu/sh4a/clock-sh7722.c b/arch/sh/kernel/cpu/sh4a/clock-sh7722.c index 299138ebe160..db913855c2fd 100644 --- a/arch/sh/kernel/cpu/sh4a/clock-sh7722.c +++ b/arch/sh/kernel/cpu/sh4a/clock-sh7722.c | |||
@@ -1,7 +1,7 @@ | |||
1 | /* | 1 | /* |
2 | * arch/sh/kernel/cpu/sh4a/clock-sh7722.c | 2 | * arch/sh/kernel/cpu/sh4a/clock-sh7722.c |
3 | * | 3 | * |
4 | * SH7722 & SH7366 support for the clock framework | 4 | * SH7343, SH7722, SH7723 & SH7366 support for the clock framework |
5 | * | 5 | * |
6 | * Copyright (c) 2006-2007 Nomad Global Solutions Inc | 6 | * Copyright (c) 2006-2007 Nomad Global Solutions Inc |
7 | * Based on code for sh7343 by Paul Mundt | 7 | * Based on code for sh7343 by Paul Mundt |
@@ -14,6 +14,7 @@ | |||
14 | #include <linux/kernel.h> | 14 | #include <linux/kernel.h> |
15 | #include <linux/io.h> | 15 | #include <linux/io.h> |
16 | #include <linux/errno.h> | 16 | #include <linux/errno.h> |
17 | #include <linux/stringify.h> | ||
17 | #include <asm/clock.h> | 18 | #include <asm/clock.h> |
18 | #include <asm/freq.h> | 19 | #include <asm/freq.h> |
19 | 20 | ||
@@ -411,40 +412,40 @@ static struct clk_ops sh7722_frqcr_clk_ops = { | |||
411 | * clock ops methods for SIU A/B and IrDA clock | 412 | * clock ops methods for SIU A/B and IrDA clock |
412 | * | 413 | * |
413 | */ | 414 | */ |
414 | static int sh7722_siu_which(struct clk *clk) | 415 | |
416 | #ifndef CONFIG_CPU_SUBTYPE_SH7343 | ||
417 | |||
418 | static int sh7722_siu_set_rate(struct clk *clk, unsigned long rate, int algo_id) | ||
415 | { | 419 | { |
416 | if (!strcmp(clk->name, "siu_a_clk")) | 420 | unsigned long r; |
417 | return 0; | 421 | int div; |
418 | if (!strcmp(clk->name, "siu_b_clk")) | 422 | |
419 | return 1; | 423 | r = ctrl_inl(clk->arch_flags); |
420 | #if defined(CONFIG_CPU_SUBTYPE_SH7722) | 424 | div = sh7722_find_divisors(clk->parent->rate, rate); |
421 | if (!strcmp(clk->name, "irda_clk")) | 425 | if (div < 0) |
422 | return 2; | 426 | return div; |
423 | #endif | 427 | r = (r & ~0xF) | div; |
424 | return -EINVAL; | 428 | ctrl_outl(r, clk->arch_flags); |
429 | return 0; | ||
425 | } | 430 | } |
426 | 431 | ||
427 | static unsigned long sh7722_siu_regs[] = { | 432 | static void sh7722_siu_recalc(struct clk *clk) |
428 | [0] = SCLKACR, | 433 | { |
429 | [1] = SCLKBCR, | 434 | unsigned long r; |
430 | #if defined(CONFIG_CPU_SUBTYPE_SH7722) | 435 | |
431 | [2] = IrDACLKCR, | 436 | r = ctrl_inl(clk->arch_flags); |
432 | #endif | 437 | clk->rate = clk->parent->rate * 2 / divisors2[r & 0xF]; |
433 | }; | 438 | } |
434 | 439 | ||
435 | static int sh7722_siu_start_stop(struct clk *clk, int enable) | 440 | static int sh7722_siu_start_stop(struct clk *clk, int enable) |
436 | { | 441 | { |
437 | int siu = sh7722_siu_which(clk); | ||
438 | unsigned long r; | 442 | unsigned long r; |
439 | 443 | ||
440 | if (siu < 0) | 444 | r = ctrl_inl(clk->arch_flags); |
441 | return siu; | ||
442 | BUG_ON(siu > 2); | ||
443 | r = ctrl_inl(sh7722_siu_regs[siu]); | ||
444 | if (enable) | 445 | if (enable) |
445 | ctrl_outl(r & ~(1 << 8), sh7722_siu_regs[siu]); | 446 | ctrl_outl(r & ~(1 << 8), clk->arch_flags); |
446 | else | 447 | else |
447 | ctrl_outl(r | (1 << 8), sh7722_siu_regs[siu]); | 448 | ctrl_outl(r | (1 << 8), clk->arch_flags); |
448 | return 0; | 449 | return 0; |
449 | } | 450 | } |
450 | 451 | ||
@@ -458,6 +459,15 @@ static void sh7722_siu_disable(struct clk *clk) | |||
458 | sh7722_siu_start_stop(clk, 0); | 459 | sh7722_siu_start_stop(clk, 0); |
459 | } | 460 | } |
460 | 461 | ||
462 | static struct clk_ops sh7722_siu_clk_ops = { | ||
463 | .recalc = sh7722_siu_recalc, | ||
464 | .set_rate = sh7722_siu_set_rate, | ||
465 | .enable = sh7722_siu_enable, | ||
466 | .disable = sh7722_siu_disable, | ||
467 | }; | ||
468 | |||
469 | #endif /* CONFIG_CPU_SUBTYPE_SH7343 */ | ||
470 | |||
461 | static void sh7722_video_enable(struct clk *clk) | 471 | static void sh7722_video_enable(struct clk *clk) |
462 | { | 472 | { |
463 | unsigned long r; | 473 | unsigned long r; |
@@ -494,43 +504,6 @@ static void sh7722_video_recalc(struct clk *clk) | |||
494 | clk->rate = clk->parent->rate / ((r & 0x3F) + 1); | 504 | clk->rate = clk->parent->rate / ((r & 0x3F) + 1); |
495 | } | 505 | } |
496 | 506 | ||
497 | static int sh7722_siu_set_rate(struct clk *clk, unsigned long rate, int algo_id) | ||
498 | { | ||
499 | int siu = sh7722_siu_which(clk); | ||
500 | unsigned long r; | ||
501 | int div; | ||
502 | |||
503 | if (siu < 0) | ||
504 | return siu; | ||
505 | BUG_ON(siu > 2); | ||
506 | r = ctrl_inl(sh7722_siu_regs[siu]); | ||
507 | div = sh7722_find_divisors(clk->parent->rate, rate); | ||
508 | if (div < 0) | ||
509 | return div; | ||
510 | r = (r & ~0xF) | div; | ||
511 | ctrl_outl(r, sh7722_siu_regs[siu]); | ||
512 | return 0; | ||
513 | } | ||
514 | |||
515 | static void sh7722_siu_recalc(struct clk *clk) | ||
516 | { | ||
517 | int siu = sh7722_siu_which(clk); | ||
518 | unsigned long r; | ||
519 | |||
520 | if (siu < 0) | ||
521 | return /* siu */ ; | ||
522 | BUG_ON(siu > 2); | ||
523 | r = ctrl_inl(sh7722_siu_regs[siu]); | ||
524 | clk->rate = clk->parent->rate * 2 / divisors2[r & 0xF]; | ||
525 | } | ||
526 | |||
527 | static struct clk_ops sh7722_siu_clk_ops = { | ||
528 | .recalc = sh7722_siu_recalc, | ||
529 | .set_rate = sh7722_siu_set_rate, | ||
530 | .enable = sh7722_siu_enable, | ||
531 | .disable = sh7722_siu_disable, | ||
532 | }; | ||
533 | |||
534 | static struct clk_ops sh7722_video_clk_ops = { | 507 | static struct clk_ops sh7722_video_clk_ops = { |
535 | .recalc = sh7722_video_recalc, | 508 | .recalc = sh7722_video_recalc, |
536 | .set_rate = sh7722_video_set_rate, | 509 | .set_rate = sh7722_video_set_rate, |
@@ -560,6 +533,9 @@ static struct clk sh7722_sdram_clock = { | |||
560 | .ops = &sh7722_frqcr_clk_ops, | 533 | .ops = &sh7722_frqcr_clk_ops, |
561 | }; | 534 | }; |
562 | 535 | ||
536 | |||
537 | #ifndef CONFIG_CPU_SUBTYPE_SH7343 | ||
538 | |||
563 | /* | 539 | /* |
564 | * these three clocks - SIU A, SIU B, IrDA - share the same clk_ops | 540 | * these three clocks - SIU A, SIU B, IrDA - share the same clk_ops |
565 | * methods of clk_ops determine which register they should access by | 541 | * methods of clk_ops determine which register they should access by |
@@ -567,36 +543,151 @@ static struct clk sh7722_sdram_clock = { | |||
567 | */ | 543 | */ |
568 | static struct clk sh7722_siu_a_clock = { | 544 | static struct clk sh7722_siu_a_clock = { |
569 | .name = "siu_a_clk", | 545 | .name = "siu_a_clk", |
546 | .arch_flags = SCLKACR, | ||
570 | .ops = &sh7722_siu_clk_ops, | 547 | .ops = &sh7722_siu_clk_ops, |
571 | }; | 548 | }; |
572 | 549 | ||
573 | static struct clk sh7722_siu_b_clock = { | 550 | static struct clk sh7722_siu_b_clock = { |
574 | .name = "siu_b_clk", | 551 | .name = "siu_b_clk", |
552 | .arch_flags = SCLKBCR, | ||
575 | .ops = &sh7722_siu_clk_ops, | 553 | .ops = &sh7722_siu_clk_ops, |
576 | }; | 554 | }; |
577 | 555 | ||
578 | #if defined(CONFIG_CPU_SUBTYPE_SH7722) | 556 | #if defined(CONFIG_CPU_SUBTYPE_SH7722) |
579 | static struct clk sh7722_irda_clock = { | 557 | static struct clk sh7722_irda_clock = { |
580 | .name = "irda_clk", | 558 | .name = "irda_clk", |
559 | .arch_flags = IrDACLKCR, | ||
581 | .ops = &sh7722_siu_clk_ops, | 560 | .ops = &sh7722_siu_clk_ops, |
582 | }; | 561 | }; |
583 | #endif | 562 | #endif |
563 | #endif /* CONFIG_CPU_SUBTYPE_SH7343 */ | ||
584 | 564 | ||
585 | static struct clk sh7722_video_clock = { | 565 | static struct clk sh7722_video_clock = { |
586 | .name = "video_clk", | 566 | .name = "video_clk", |
587 | .ops = &sh7722_video_clk_ops, | 567 | .ops = &sh7722_video_clk_ops, |
588 | }; | 568 | }; |
589 | 569 | ||
570 | static int sh7722_mstpcr_start_stop(struct clk *clk, unsigned long reg, | ||
571 | int enable) | ||
572 | { | ||
573 | unsigned long bit = clk->arch_flags; | ||
574 | unsigned long r; | ||
575 | |||
576 | r = ctrl_inl(reg); | ||
577 | |||
578 | if (enable) | ||
579 | r &= ~(1 << bit); | ||
580 | else | ||
581 | r |= (1 << bit); | ||
582 | |||
583 | ctrl_outl(r, reg); | ||
584 | return 0; | ||
585 | } | ||
586 | |||
587 | static void sh7722_mstpcr0_enable(struct clk *clk) | ||
588 | { | ||
589 | sh7722_mstpcr_start_stop(clk, MSTPCR0, 1); | ||
590 | } | ||
591 | |||
592 | static void sh7722_mstpcr0_disable(struct clk *clk) | ||
593 | { | ||
594 | sh7722_mstpcr_start_stop(clk, MSTPCR0, 0); | ||
595 | } | ||
596 | |||
597 | static void sh7722_mstpcr1_enable(struct clk *clk) | ||
598 | { | ||
599 | sh7722_mstpcr_start_stop(clk, MSTPCR1, 1); | ||
600 | } | ||
601 | |||
602 | static void sh7722_mstpcr1_disable(struct clk *clk) | ||
603 | { | ||
604 | sh7722_mstpcr_start_stop(clk, MSTPCR1, 0); | ||
605 | } | ||
606 | |||
607 | static void sh7722_mstpcr2_enable(struct clk *clk) | ||
608 | { | ||
609 | sh7722_mstpcr_start_stop(clk, MSTPCR2, 1); | ||
610 | } | ||
611 | |||
612 | static void sh7722_mstpcr2_disable(struct clk *clk) | ||
613 | { | ||
614 | sh7722_mstpcr_start_stop(clk, MSTPCR2, 0); | ||
615 | } | ||
616 | |||
617 | static struct clk_ops sh7722_mstpcr0_clk_ops = { | ||
618 | .enable = sh7722_mstpcr0_enable, | ||
619 | .disable = sh7722_mstpcr0_disable, | ||
620 | }; | ||
621 | |||
622 | static struct clk_ops sh7722_mstpcr1_clk_ops = { | ||
623 | .enable = sh7722_mstpcr1_enable, | ||
624 | .disable = sh7722_mstpcr1_disable, | ||
625 | }; | ||
626 | |||
627 | static struct clk_ops sh7722_mstpcr2_clk_ops = { | ||
628 | .enable = sh7722_mstpcr2_enable, | ||
629 | .disable = sh7722_mstpcr2_disable, | ||
630 | }; | ||
631 | |||
632 | #define DECLARE_MSTPCRN(regnr, bitnr, bitstr) \ | ||
633 | { \ | ||
634 | .name = "mstp" __stringify(regnr) bitstr, \ | ||
635 | .arch_flags = bitnr, \ | ||
636 | .ops = &sh7722_mstpcr ## regnr ## _clk_ops, \ | ||
637 | } | ||
638 | |||
639 | #define DECLARE_MSTPCR(regnr) \ | ||
640 | DECLARE_MSTPCRN(regnr, 31, "31"), \ | ||
641 | DECLARE_MSTPCRN(regnr, 30, "30"), \ | ||
642 | DECLARE_MSTPCRN(regnr, 29, "29"), \ | ||
643 | DECLARE_MSTPCRN(regnr, 28, "28"), \ | ||
644 | DECLARE_MSTPCRN(regnr, 27, "27"), \ | ||
645 | DECLARE_MSTPCRN(regnr, 26, "26"), \ | ||
646 | DECLARE_MSTPCRN(regnr, 25, "25"), \ | ||
647 | DECLARE_MSTPCRN(regnr, 24, "24"), \ | ||
648 | DECLARE_MSTPCRN(regnr, 23, "23"), \ | ||
649 | DECLARE_MSTPCRN(regnr, 22, "22"), \ | ||
650 | DECLARE_MSTPCRN(regnr, 21, "21"), \ | ||
651 | DECLARE_MSTPCRN(regnr, 20, "20"), \ | ||
652 | DECLARE_MSTPCRN(regnr, 19, "19"), \ | ||
653 | DECLARE_MSTPCRN(regnr, 18, "18"), \ | ||
654 | DECLARE_MSTPCRN(regnr, 17, "17"), \ | ||
655 | DECLARE_MSTPCRN(regnr, 16, "16"), \ | ||
656 | DECLARE_MSTPCRN(regnr, 15, "15"), \ | ||
657 | DECLARE_MSTPCRN(regnr, 14, "14"), \ | ||
658 | DECLARE_MSTPCRN(regnr, 13, "13"), \ | ||
659 | DECLARE_MSTPCRN(regnr, 12, "12"), \ | ||
660 | DECLARE_MSTPCRN(regnr, 11, "11"), \ | ||
661 | DECLARE_MSTPCRN(regnr, 10, "10"), \ | ||
662 | DECLARE_MSTPCRN(regnr, 9, "09"), \ | ||
663 | DECLARE_MSTPCRN(regnr, 8, "08"), \ | ||
664 | DECLARE_MSTPCRN(regnr, 7, "07"), \ | ||
665 | DECLARE_MSTPCRN(regnr, 6, "06"), \ | ||
666 | DECLARE_MSTPCRN(regnr, 5, "05"), \ | ||
667 | DECLARE_MSTPCRN(regnr, 4, "04"), \ | ||
668 | DECLARE_MSTPCRN(regnr, 3, "03"), \ | ||
669 | DECLARE_MSTPCRN(regnr, 2, "02"), \ | ||
670 | DECLARE_MSTPCRN(regnr, 1, "01"), \ | ||
671 | DECLARE_MSTPCRN(regnr, 0, "00") | ||
672 | |||
673 | static struct clk sh7722_mstpcr[] = { | ||
674 | DECLARE_MSTPCR(0), | ||
675 | DECLARE_MSTPCR(1), | ||
676 | DECLARE_MSTPCR(2), | ||
677 | }; | ||
678 | |||
590 | static struct clk *sh7722_clocks[] = { | 679 | static struct clk *sh7722_clocks[] = { |
591 | &sh7722_umem_clock, | 680 | &sh7722_umem_clock, |
592 | &sh7722_sh_clock, | 681 | &sh7722_sh_clock, |
593 | &sh7722_peripheral_clock, | 682 | &sh7722_peripheral_clock, |
594 | &sh7722_sdram_clock, | 683 | &sh7722_sdram_clock, |
684 | #ifndef CONFIG_CPU_SUBTYPE_SH7343 | ||
595 | &sh7722_siu_a_clock, | 685 | &sh7722_siu_a_clock, |
596 | &sh7722_siu_b_clock, | 686 | &sh7722_siu_b_clock, |
597 | #if defined(CONFIG_CPU_SUBTYPE_SH7722) | 687 | #if defined(CONFIG_CPU_SUBTYPE_SH7722) |
598 | &sh7722_irda_clock, | 688 | &sh7722_irda_clock, |
599 | #endif | 689 | #endif |
690 | #endif | ||
600 | &sh7722_video_clock, | 691 | &sh7722_video_clock, |
601 | }; | 692 | }; |
602 | 693 | ||
@@ -629,5 +720,11 @@ int __init arch_clk_init(void) | |||
629 | clk_register(sh7722_clocks[i]); | 720 | clk_register(sh7722_clocks[i]); |
630 | } | 721 | } |
631 | clk_put(master); | 722 | clk_put(master); |
723 | |||
724 | for (i = 0; i < ARRAY_SIZE(sh7722_mstpcr); i++) { | ||
725 | pr_debug( "Registering mstpcr '%s'\n", sh7722_mstpcr[i].name); | ||
726 | clk_register(&sh7722_mstpcr[i]); | ||
727 | } | ||
728 | |||
632 | return 0; | 729 | return 0; |
633 | } | 730 | } |
diff --git a/arch/sh/kernel/cpu/sh4a/setup-sh7343.c b/arch/sh/kernel/cpu/sh4a/setup-sh7343.c index 6d4f50cd4aaf..78881b4214da 100644 --- a/arch/sh/kernel/cpu/sh4a/setup-sh7343.c +++ b/arch/sh/kernel/cpu/sh4a/setup-sh7343.c | |||
@@ -11,6 +11,104 @@ | |||
11 | #include <linux/init.h> | 11 | #include <linux/init.h> |
12 | #include <linux/serial.h> | 12 | #include <linux/serial.h> |
13 | #include <linux/serial_sci.h> | 13 | #include <linux/serial_sci.h> |
14 | #include <linux/uio_driver.h> | ||
15 | #include <asm/clock.h> | ||
16 | |||
17 | static struct resource iic0_resources[] = { | ||
18 | [0] = { | ||
19 | .name = "IIC0", | ||
20 | .start = 0x04470000, | ||
21 | .end = 0x04470017, | ||
22 | .flags = IORESOURCE_MEM, | ||
23 | }, | ||
24 | [1] = { | ||
25 | .start = 96, | ||
26 | .end = 99, | ||
27 | .flags = IORESOURCE_IRQ, | ||
28 | }, | ||
29 | }; | ||
30 | |||
31 | static struct platform_device iic0_device = { | ||
32 | .name = "i2c-sh_mobile", | ||
33 | .num_resources = ARRAY_SIZE(iic0_resources), | ||
34 | .resource = iic0_resources, | ||
35 | }; | ||
36 | |||
37 | static struct resource iic1_resources[] = { | ||
38 | [0] = { | ||
39 | .name = "IIC1", | ||
40 | .start = 0x04750000, | ||
41 | .end = 0x04750017, | ||
42 | .flags = IORESOURCE_MEM, | ||
43 | }, | ||
44 | [1] = { | ||
45 | .start = 44, | ||
46 | .end = 47, | ||
47 | .flags = IORESOURCE_IRQ, | ||
48 | }, | ||
49 | }; | ||
50 | |||
51 | static struct platform_device iic1_device = { | ||
52 | .name = "i2c-sh_mobile", | ||
53 | .num_resources = ARRAY_SIZE(iic1_resources), | ||
54 | .resource = iic1_resources, | ||
55 | }; | ||
56 | |||
57 | static struct uio_info vpu_platform_data = { | ||
58 | .name = "VPU4", | ||
59 | .version = "0", | ||
60 | .irq = 60, | ||
61 | }; | ||
62 | |||
63 | static struct resource vpu_resources[] = { | ||
64 | [0] = { | ||
65 | .name = "VPU", | ||
66 | .start = 0xfe900000, | ||
67 | .end = 0xfe9022eb, | ||
68 | .flags = IORESOURCE_MEM, | ||
69 | }, | ||
70 | [1] = { | ||
71 | /* place holder for contiguous memory */ | ||
72 | }, | ||
73 | }; | ||
74 | |||
75 | static struct platform_device vpu_device = { | ||
76 | .name = "uio_pdrv_genirq", | ||
77 | .id = 0, | ||
78 | .dev = { | ||
79 | .platform_data = &vpu_platform_data, | ||
80 | }, | ||
81 | .resource = vpu_resources, | ||
82 | .num_resources = ARRAY_SIZE(vpu_resources), | ||
83 | }; | ||
84 | |||
85 | static struct uio_info veu_platform_data = { | ||
86 | .name = "VEU", | ||
87 | .version = "0", | ||
88 | .irq = 54, | ||
89 | }; | ||
90 | |||
91 | static struct resource veu_resources[] = { | ||
92 | [0] = { | ||
93 | .name = "VEU", | ||
94 | .start = 0xfe920000, | ||
95 | .end = 0xfe9200b7, | ||
96 | .flags = IORESOURCE_MEM, | ||
97 | }, | ||
98 | [1] = { | ||
99 | /* place holder for contiguous memory */ | ||
100 | }, | ||
101 | }; | ||
102 | |||
103 | static struct platform_device veu_device = { | ||
104 | .name = "uio_pdrv_genirq", | ||
105 | .id = 1, | ||
106 | .dev = { | ||
107 | .platform_data = &veu_platform_data, | ||
108 | }, | ||
109 | .resource = veu_resources, | ||
110 | .num_resources = ARRAY_SIZE(veu_resources), | ||
111 | }; | ||
14 | 112 | ||
15 | static struct plat_sci_port sci_platform_data[] = { | 113 | static struct plat_sci_port sci_platform_data[] = { |
16 | { | 114 | { |
@@ -32,16 +130,171 @@ static struct platform_device sci_device = { | |||
32 | }; | 130 | }; |
33 | 131 | ||
34 | static struct platform_device *sh7343_devices[] __initdata = { | 132 | static struct platform_device *sh7343_devices[] __initdata = { |
133 | &iic0_device, | ||
134 | &iic1_device, | ||
35 | &sci_device, | 135 | &sci_device, |
136 | &vpu_device, | ||
137 | &veu_device, | ||
36 | }; | 138 | }; |
37 | 139 | ||
38 | static int __init sh7343_devices_setup(void) | 140 | static int __init sh7343_devices_setup(void) |
39 | { | 141 | { |
142 | clk_always_enable("mstp031"); /* TLB */ | ||
143 | clk_always_enable("mstp030"); /* IC */ | ||
144 | clk_always_enable("mstp029"); /* OC */ | ||
145 | clk_always_enable("mstp028"); /* URAM */ | ||
146 | clk_always_enable("mstp026"); /* XYMEM */ | ||
147 | clk_always_enable("mstp023"); /* INTC3 */ | ||
148 | clk_always_enable("mstp022"); /* INTC */ | ||
149 | clk_always_enable("mstp020"); /* SuperHyway */ | ||
150 | clk_always_enable("mstp109"); /* I2C0 */ | ||
151 | clk_always_enable("mstp108"); /* I2C1 */ | ||
152 | clk_always_enable("mstp202"); /* VEU */ | ||
153 | clk_always_enable("mstp201"); /* VPU */ | ||
154 | |||
155 | platform_resource_setup_memory(&vpu_device, "vpu", 1 << 20); | ||
156 | platform_resource_setup_memory(&veu_device, "veu", 2 << 20); | ||
157 | |||
40 | return platform_add_devices(sh7343_devices, | 158 | return platform_add_devices(sh7343_devices, |
41 | ARRAY_SIZE(sh7343_devices)); | 159 | ARRAY_SIZE(sh7343_devices)); |
42 | } | 160 | } |
43 | __initcall(sh7343_devices_setup); | 161 | __initcall(sh7343_devices_setup); |
44 | 162 | ||
163 | enum { | ||
164 | UNUSED = 0, | ||
165 | |||
166 | /* interrupt sources */ | ||
167 | IRQ0, IRQ1, IRQ2, IRQ3, IRQ4, IRQ5, IRQ6, IRQ7, | ||
168 | DMAC0, DMAC1, DMAC2, DMAC3, | ||
169 | VIO_CEUI, VIO_BEUI, VIO_VEUI, VOU, | ||
170 | MFI, VPU, TPU, Z3D4, USBI0, USBI1, | ||
171 | MMC_ERR, MMC_TRAN, MMC_FSTAT, MMC_FRDY, | ||
172 | DMAC4, DMAC5, DMAC_DADERR, | ||
173 | KEYSC, | ||
174 | SCIF, SCIF1, SCIF2, SCIF3, SCIF4, | ||
175 | SIOF0, SIOF1, SIO, | ||
176 | FLCTL_FLSTEI, FLCTL_FLENDI, FLCTL_FLTREQ0I, FLCTL_FLTREQ1I, | ||
177 | I2C0_ALI, I2C0_TACKI, I2C0_WAITI, I2C0_DTEI, | ||
178 | I2C1_ALI, I2C1_TACKI, I2C1_WAITI, I2C1_DTEI, | ||
179 | SIM_TEI, SIM_TXI, SIM_RXI, SIM_ERI, | ||
180 | IRDA, | ||
181 | SDHI0, SDHI1, SDHI2, SDHI3, | ||
182 | CMT, TSIF, SIU, | ||
183 | TMU0, TMU1, TMU2, | ||
184 | JPU, LCDC, | ||
185 | |||
186 | /* interrupt groups */ | ||
187 | |||
188 | DMAC0123, VIOVOU, MMC, DMAC45, FLCTL, I2C0, I2C1, SIM, SDHI, USB, | ||
189 | }; | ||
190 | |||
191 | static struct intc_vect vectors[] __initdata = { | ||
192 | INTC_VECT(IRQ0, 0x600), INTC_VECT(IRQ1, 0x620), | ||
193 | INTC_VECT(IRQ2, 0x640), INTC_VECT(IRQ3, 0x660), | ||
194 | INTC_VECT(IRQ4, 0x680), INTC_VECT(IRQ5, 0x6a0), | ||
195 | INTC_VECT(IRQ6, 0x6c0), INTC_VECT(IRQ7, 0x6e0), | ||
196 | INTC_VECT(I2C1_ALI, 0x780), INTC_VECT(I2C1_TACKI, 0x7a0), | ||
197 | INTC_VECT(I2C1_WAITI, 0x7c0), INTC_VECT(I2C1_DTEI, 0x7e0), | ||
198 | INTC_VECT(DMAC0, 0x800), INTC_VECT(DMAC1, 0x820), | ||
199 | INTC_VECT(DMAC2, 0x840), INTC_VECT(DMAC3, 0x860), | ||
200 | INTC_VECT(VIO_CEUI, 0x880), INTC_VECT(VIO_BEUI, 0x8a0), | ||
201 | INTC_VECT(VIO_VEUI, 0x8c0), INTC_VECT(VOU, 0x8e0), | ||
202 | INTC_VECT(MFI, 0x900), INTC_VECT(VPU, 0x980), | ||
203 | INTC_VECT(TPU, 0x9a0), INTC_VECT(Z3D4, 0x9e0), | ||
204 | INTC_VECT(USBI0, 0xa20), INTC_VECT(USBI1, 0xa40), | ||
205 | INTC_VECT(MMC_ERR, 0xb00), INTC_VECT(MMC_TRAN, 0xb20), | ||
206 | INTC_VECT(MMC_FSTAT, 0xb40), INTC_VECT(MMC_FRDY, 0xb60), | ||
207 | INTC_VECT(DMAC4, 0xb80), INTC_VECT(DMAC5, 0xba0), | ||
208 | INTC_VECT(DMAC_DADERR, 0xbc0), INTC_VECT(KEYSC, 0xbe0), | ||
209 | INTC_VECT(SCIF, 0xc00), INTC_VECT(SCIF1, 0xc20), | ||
210 | INTC_VECT(SCIF2, 0xc40), INTC_VECT(SCIF3, 0xc60), | ||
211 | INTC_VECT(SIOF0, 0xc80), INTC_VECT(SIOF1, 0xca0), | ||
212 | INTC_VECT(SIO, 0xd00), | ||
213 | INTC_VECT(FLCTL_FLSTEI, 0xd80), INTC_VECT(FLCTL_FLENDI, 0xda0), | ||
214 | INTC_VECT(FLCTL_FLTREQ0I, 0xdc0), INTC_VECT(FLCTL_FLTREQ1I, 0xde0), | ||
215 | INTC_VECT(I2C0_ALI, 0xe00), INTC_VECT(I2C0_TACKI, 0xe20), | ||
216 | INTC_VECT(I2C0_WAITI, 0xe40), INTC_VECT(I2C0_DTEI, 0xe60), | ||
217 | INTC_VECT(SDHI0, 0xe80), INTC_VECT(SDHI1, 0xea0), | ||
218 | INTC_VECT(SDHI2, 0xec0), INTC_VECT(SDHI3, 0xee0), | ||
219 | INTC_VECT(CMT, 0xf00), INTC_VECT(TSIF, 0xf20), | ||
220 | INTC_VECT(SIU, 0xf80), | ||
221 | INTC_VECT(TMU0, 0x400), INTC_VECT(TMU1, 0x420), | ||
222 | INTC_VECT(TMU2, 0x440), | ||
223 | INTC_VECT(JPU, 0x560), INTC_VECT(LCDC, 0x580), | ||
224 | }; | ||
225 | |||
226 | static struct intc_group groups[] __initdata = { | ||
227 | INTC_GROUP(DMAC0123, DMAC0, DMAC1, DMAC2, DMAC3), | ||
228 | INTC_GROUP(VIOVOU, VIO_CEUI, VIO_BEUI, VIO_VEUI, VOU), | ||
229 | INTC_GROUP(MMC, MMC_FRDY, MMC_FSTAT, MMC_TRAN, MMC_ERR), | ||
230 | INTC_GROUP(DMAC45, DMAC4, DMAC5, DMAC_DADERR), | ||
231 | INTC_GROUP(FLCTL, FLCTL_FLSTEI, FLCTL_FLENDI, | ||
232 | FLCTL_FLTREQ0I, FLCTL_FLTREQ1I), | ||
233 | INTC_GROUP(I2C0, I2C0_ALI, I2C0_TACKI, I2C0_WAITI, I2C0_DTEI), | ||
234 | INTC_GROUP(I2C1, I2C1_ALI, I2C1_TACKI, I2C1_WAITI, I2C1_DTEI), | ||
235 | INTC_GROUP(SIM, SIM_TEI, SIM_TXI, SIM_RXI, SIM_ERI), | ||
236 | INTC_GROUP(SDHI, SDHI0, SDHI1, SDHI2, SDHI3), | ||
237 | INTC_GROUP(USB, USBI0, USBI1), | ||
238 | }; | ||
239 | |||
240 | static struct intc_mask_reg mask_registers[] __initdata = { | ||
241 | { 0xa4080084, 0xa40800c4, 8, /* IMR1 / IMCR1 */ | ||
242 | { VOU, VIO_VEUI, VIO_BEUI, VIO_CEUI, DMAC3, DMAC2, DMAC1, DMAC0 } }, | ||
243 | { 0xa4080088, 0xa40800c8, 8, /* IMR2 / IMCR2 */ | ||
244 | { 0, 0, 0, VPU, 0, 0, 0, MFI } }, | ||
245 | { 0xa408008c, 0xa40800cc, 8, /* IMR3 / IMCR3 */ | ||
246 | { SIM_TEI, SIM_TXI, SIM_RXI, SIM_ERI, 0, 0, 0, IRDA } }, | ||
247 | { 0xa4080090, 0xa40800d0, 8, /* IMR4 / IMCR4 */ | ||
248 | { 0, TMU2, TMU1, TMU0, JPU, 0, 0, LCDC } }, | ||
249 | { 0xa4080094, 0xa40800d4, 8, /* IMR5 / IMCR5 */ | ||
250 | { KEYSC, DMAC_DADERR, DMAC5, DMAC4, SCIF3, SCIF2, SCIF1, SCIF } }, | ||
251 | { 0xa4080098, 0xa40800d8, 8, /* IMR6 / IMCR6 */ | ||
252 | { 0, 0, 0, SIO, Z3D4, 0, SIOF1, SIOF0 } }, | ||
253 | { 0xa408009c, 0xa40800dc, 8, /* IMR7 / IMCR7 */ | ||
254 | { I2C0_DTEI, I2C0_WAITI, I2C0_TACKI, I2C0_ALI, | ||
255 | FLCTL_FLTREQ1I, FLCTL_FLTREQ0I, FLCTL_FLENDI, FLCTL_FLSTEI } }, | ||
256 | { 0xa40800a0, 0xa40800e0, 8, /* IMR8 / IMCR8 */ | ||
257 | { SDHI3, SDHI2, SDHI1, SDHI0, 0, 0, 0, SIU } }, | ||
258 | { 0xa40800a4, 0xa40800e4, 8, /* IMR9 / IMCR9 */ | ||
259 | { 0, 0, 0, CMT, 0, USBI1, USBI0 } }, | ||
260 | { 0xa40800a8, 0xa40800e8, 8, /* IMR10 / IMCR10 */ | ||
261 | { MMC_FRDY, MMC_FSTAT, MMC_TRAN, MMC_ERR } }, | ||
262 | { 0xa40800ac, 0xa40800ec, 8, /* IMR11 / IMCR11 */ | ||
263 | { I2C1_DTEI, I2C1_WAITI, I2C1_TACKI, I2C1_ALI, TPU, 0, 0, TSIF } }, | ||
264 | { 0xa4140044, 0xa4140064, 8, /* INTMSK00 / INTMSKCLR00 */ | ||
265 | { IRQ0, IRQ1, IRQ2, IRQ3, IRQ4, IRQ5, IRQ6, IRQ7 } }, | ||
266 | }; | ||
267 | |||
268 | static struct intc_prio_reg prio_registers[] __initdata = { | ||
269 | { 0xa4080000, 0, 16, 4, /* IPRA */ { TMU0, TMU1, TMU2 } }, | ||
270 | { 0xa4080004, 0, 16, 4, /* IPRB */ { JPU, LCDC, SIM } }, | ||
271 | { 0xa4080010, 0, 16, 4, /* IPRE */ { DMAC0123, VIOVOU, MFI, VPU } }, | ||
272 | { 0xa4080014, 0, 16, 4, /* IPRF */ { KEYSC, DMAC45, USB, CMT } }, | ||
273 | { 0xa4080018, 0, 16, 4, /* IPRG */ { SCIF, SCIF1, SCIF2, SCIF3 } }, | ||
274 | { 0xa408001c, 0, 16, 4, /* IPRH */ { SIOF0, SIOF1, FLCTL, I2C0 } }, | ||
275 | { 0xa4080020, 0, 16, 4, /* IPRI */ { SIO, 0, TSIF, I2C1 } }, | ||
276 | { 0xa4080024, 0, 16, 4, /* IPRJ */ { Z3D4, 0, SIU } }, | ||
277 | { 0xa4080028, 0, 16, 4, /* IPRK */ { 0, MMC, 0, SDHI } }, | ||
278 | { 0xa408002c, 0, 16, 4, /* IPRL */ { 0, 0, TPU } }, | ||
279 | { 0xa4140010, 0, 32, 4, /* INTPRI00 */ | ||
280 | { IRQ0, IRQ1, IRQ2, IRQ3, IRQ4, IRQ5, IRQ6, IRQ7 } }, | ||
281 | }; | ||
282 | |||
283 | static struct intc_sense_reg sense_registers[] __initdata = { | ||
284 | { 0xa414001c, 16, 2, /* ICR1 */ | ||
285 | { IRQ0, IRQ1, IRQ2, IRQ3, IRQ4, IRQ5, IRQ6, IRQ7 } }, | ||
286 | }; | ||
287 | |||
288 | static struct intc_mask_reg ack_registers[] __initdata = { | ||
289 | { 0xa4140024, 0, 8, /* INTREQ00 */ | ||
290 | { IRQ0, IRQ1, IRQ2, IRQ3, IRQ4, IRQ5, IRQ6, IRQ7 } }, | ||
291 | }; | ||
292 | |||
293 | static DECLARE_INTC_DESC_ACK(intc_desc, "sh7343", vectors, groups, | ||
294 | mask_registers, prio_registers, sense_registers, | ||
295 | ack_registers); | ||
296 | |||
45 | void __init plat_irq_setup(void) | 297 | void __init plat_irq_setup(void) |
46 | { | 298 | { |
299 | register_intc_controller(&intc_desc); | ||
47 | } | 300 | } |
diff --git a/arch/sh/kernel/cpu/sh4a/setup-sh7366.c b/arch/sh/kernel/cpu/sh4a/setup-sh7366.c index f26b5cdad0d1..6851dba02f31 100644 --- a/arch/sh/kernel/cpu/sh4a/setup-sh7366.c +++ b/arch/sh/kernel/cpu/sh4a/setup-sh7366.c | |||
@@ -13,6 +13,112 @@ | |||
13 | #include <linux/init.h> | 13 | #include <linux/init.h> |
14 | #include <linux/serial.h> | 14 | #include <linux/serial.h> |
15 | #include <linux/serial_sci.h> | 15 | #include <linux/serial_sci.h> |
16 | #include <linux/uio_driver.h> | ||
17 | #include <asm/clock.h> | ||
18 | |||
19 | static struct resource iic_resources[] = { | ||
20 | [0] = { | ||
21 | .name = "IIC", | ||
22 | .start = 0x04470000, | ||
23 | .end = 0x04470017, | ||
24 | .flags = IORESOURCE_MEM, | ||
25 | }, | ||
26 | [1] = { | ||
27 | .start = 96, | ||
28 | .end = 99, | ||
29 | .flags = IORESOURCE_IRQ, | ||
30 | }, | ||
31 | }; | ||
32 | |||
33 | static struct platform_device iic_device = { | ||
34 | .name = "i2c-sh_mobile", | ||
35 | .num_resources = ARRAY_SIZE(iic_resources), | ||
36 | .resource = iic_resources, | ||
37 | }; | ||
38 | |||
39 | static struct uio_info vpu_platform_data = { | ||
40 | .name = "VPU5", | ||
41 | .version = "0", | ||
42 | .irq = 60, | ||
43 | }; | ||
44 | |||
45 | static struct resource vpu_resources[] = { | ||
46 | [0] = { | ||
47 | .name = "VPU", | ||
48 | .start = 0xfe900000, | ||
49 | .end = 0xfe902807, | ||
50 | .flags = IORESOURCE_MEM, | ||
51 | }, | ||
52 | [1] = { | ||
53 | /* place holder for contiguous memory */ | ||
54 | }, | ||
55 | }; | ||
56 | |||
57 | static struct platform_device vpu_device = { | ||
58 | .name = "uio_pdrv_genirq", | ||
59 | .id = 0, | ||
60 | .dev = { | ||
61 | .platform_data = &vpu_platform_data, | ||
62 | }, | ||
63 | .resource = vpu_resources, | ||
64 | .num_resources = ARRAY_SIZE(vpu_resources), | ||
65 | }; | ||
66 | |||
67 | static struct uio_info veu0_platform_data = { | ||
68 | .name = "VEU", | ||
69 | .version = "0", | ||
70 | .irq = 54, | ||
71 | }; | ||
72 | |||
73 | static struct resource veu0_resources[] = { | ||
74 | [0] = { | ||
75 | .name = "VEU(1)", | ||
76 | .start = 0xfe920000, | ||
77 | .end = 0xfe9200b7, | ||
78 | .flags = IORESOURCE_MEM, | ||
79 | }, | ||
80 | [1] = { | ||
81 | /* place holder for contiguous memory */ | ||
82 | }, | ||
83 | }; | ||
84 | |||
85 | static struct platform_device veu0_device = { | ||
86 | .name = "uio_pdrv_genirq", | ||
87 | .id = 1, | ||
88 | .dev = { | ||
89 | .platform_data = &veu0_platform_data, | ||
90 | }, | ||
91 | .resource = veu0_resources, | ||
92 | .num_resources = ARRAY_SIZE(veu0_resources), | ||
93 | }; | ||
94 | |||
95 | static struct uio_info veu1_platform_data = { | ||
96 | .name = "VEU", | ||
97 | .version = "0", | ||
98 | .irq = 27, | ||
99 | }; | ||
100 | |||
101 | static struct resource veu1_resources[] = { | ||
102 | [0] = { | ||
103 | .name = "VEU(2)", | ||
104 | .start = 0xfe924000, | ||
105 | .end = 0xfe9240b7, | ||
106 | .flags = IORESOURCE_MEM, | ||
107 | }, | ||
108 | [1] = { | ||
109 | /* place holder for contiguous memory */ | ||
110 | }, | ||
111 | }; | ||
112 | |||
113 | static struct platform_device veu1_device = { | ||
114 | .name = "uio_pdrv_genirq", | ||
115 | .id = 2, | ||
116 | .dev = { | ||
117 | .platform_data = &veu1_platform_data, | ||
118 | }, | ||
119 | .resource = veu1_resources, | ||
120 | .num_resources = ARRAY_SIZE(veu1_resources), | ||
121 | }; | ||
16 | 122 | ||
17 | static struct plat_sci_port sci_platform_data[] = { | 123 | static struct plat_sci_port sci_platform_data[] = { |
18 | { | 124 | { |
@@ -34,11 +140,32 @@ static struct platform_device sci_device = { | |||
34 | }; | 140 | }; |
35 | 141 | ||
36 | static struct platform_device *sh7366_devices[] __initdata = { | 142 | static struct platform_device *sh7366_devices[] __initdata = { |
143 | &iic_device, | ||
37 | &sci_device, | 144 | &sci_device, |
145 | &vpu_device, | ||
146 | &veu0_device, | ||
147 | &veu1_device, | ||
38 | }; | 148 | }; |
39 | 149 | ||
40 | static int __init sh7366_devices_setup(void) | 150 | static int __init sh7366_devices_setup(void) |
41 | { | 151 | { |
152 | clk_always_enable("mstp031"); /* TLB */ | ||
153 | clk_always_enable("mstp030"); /* IC */ | ||
154 | clk_always_enable("mstp029"); /* OC */ | ||
155 | clk_always_enable("mstp028"); /* RSMEM */ | ||
156 | clk_always_enable("mstp026"); /* XYMEM */ | ||
157 | clk_always_enable("mstp023"); /* INTC3 */ | ||
158 | clk_always_enable("mstp022"); /* INTC */ | ||
159 | clk_always_enable("mstp020"); /* SuperHyway */ | ||
160 | clk_always_enable("mstp109"); /* I2C */ | ||
161 | clk_always_enable("mstp207"); /* VEU-2 */ | ||
162 | clk_always_enable("mstp202"); /* VEU-1 */ | ||
163 | clk_always_enable("mstp201"); /* VPU */ | ||
164 | |||
165 | platform_resource_setup_memory(&vpu_device, "vpu", 2 << 20); | ||
166 | platform_resource_setup_memory(&veu0_device, "veu0", 2 << 20); | ||
167 | platform_resource_setup_memory(&veu1_device, "veu1", 2 << 20); | ||
168 | |||
42 | return platform_add_devices(sh7366_devices, | 169 | return platform_add_devices(sh7366_devices, |
43 | ARRAY_SIZE(sh7366_devices)); | 170 | ARRAY_SIZE(sh7366_devices)); |
44 | } | 171 | } |
@@ -97,7 +224,7 @@ static struct intc_vect vectors[] __initdata = { | |||
97 | INTC_VECT(SIU, 0xf80), | 224 | INTC_VECT(SIU, 0xf80), |
98 | INTC_VECT(TMU0, 0x400), INTC_VECT(TMU1, 0x420), | 225 | INTC_VECT(TMU0, 0x400), INTC_VECT(TMU1, 0x420), |
99 | INTC_VECT(TMU2, 0x440), | 226 | INTC_VECT(TMU2, 0x440), |
100 | INTC_VECT(VEU2, 0x580), INTC_VECT(LCDC, 0x580), | 227 | INTC_VECT(VEU2, 0x560), INTC_VECT(LCDC, 0x580), |
101 | }; | 228 | }; |
102 | 229 | ||
103 | static struct intc_group groups[] __initdata = { | 230 | static struct intc_group groups[] __initdata = { |
@@ -163,8 +290,14 @@ static struct intc_sense_reg sense_registers[] __initdata = { | |||
163 | { IRQ0, IRQ1, IRQ2, IRQ3, IRQ4, IRQ5, IRQ6, IRQ7 } }, | 290 | { IRQ0, IRQ1, IRQ2, IRQ3, IRQ4, IRQ5, IRQ6, IRQ7 } }, |
164 | }; | 291 | }; |
165 | 292 | ||
166 | static DECLARE_INTC_DESC(intc_desc, "sh7366", vectors, groups, | 293 | static struct intc_mask_reg ack_registers[] __initdata = { |
167 | mask_registers, prio_registers, sense_registers); | 294 | { 0xa4140024, 0, 8, /* INTREQ00 */ |
295 | { IRQ0, IRQ1, IRQ2, IRQ3, IRQ4, IRQ5, IRQ6, IRQ7 } }, | ||
296 | }; | ||
297 | |||
298 | static DECLARE_INTC_DESC_ACK(intc_desc, "sh7366", vectors, groups, | ||
299 | mask_registers, prio_registers, sense_registers, | ||
300 | ack_registers); | ||
168 | 301 | ||
169 | void __init plat_irq_setup(void) | 302 | void __init plat_irq_setup(void) |
170 | { | 303 | { |
diff --git a/arch/sh/kernel/cpu/sh4a/setup-sh7722.c b/arch/sh/kernel/cpu/sh4a/setup-sh7722.c index 62ebccf18b3c..de1ede92176e 100644 --- a/arch/sh/kernel/cpu/sh4a/setup-sh7722.c +++ b/arch/sh/kernel/cpu/sh4a/setup-sh7722.c | |||
@@ -12,6 +12,8 @@ | |||
12 | #include <linux/serial.h> | 12 | #include <linux/serial.h> |
13 | #include <linux/serial_sci.h> | 13 | #include <linux/serial_sci.h> |
14 | #include <linux/mm.h> | 14 | #include <linux/mm.h> |
15 | #include <linux/uio_driver.h> | ||
16 | #include <asm/clock.h> | ||
15 | #include <asm/mmzone.h> | 17 | #include <asm/mmzone.h> |
16 | 18 | ||
17 | static struct resource usbf_resources[] = { | 19 | static struct resource usbf_resources[] = { |
@@ -59,6 +61,62 @@ static struct platform_device iic_device = { | |||
59 | .resource = iic_resources, | 61 | .resource = iic_resources, |
60 | }; | 62 | }; |
61 | 63 | ||
64 | static struct uio_info vpu_platform_data = { | ||
65 | .name = "VPU4", | ||
66 | .version = "0", | ||
67 | .irq = 60, | ||
68 | }; | ||
69 | |||
70 | static struct resource vpu_resources[] = { | ||
71 | [0] = { | ||
72 | .name = "VPU", | ||
73 | .start = 0xfe900000, | ||
74 | .end = 0xfe9022eb, | ||
75 | .flags = IORESOURCE_MEM, | ||
76 | }, | ||
77 | [1] = { | ||
78 | /* place holder for contiguous memory */ | ||
79 | }, | ||
80 | }; | ||
81 | |||
82 | static struct platform_device vpu_device = { | ||
83 | .name = "uio_pdrv_genirq", | ||
84 | .id = 0, | ||
85 | .dev = { | ||
86 | .platform_data = &vpu_platform_data, | ||
87 | }, | ||
88 | .resource = vpu_resources, | ||
89 | .num_resources = ARRAY_SIZE(vpu_resources), | ||
90 | }; | ||
91 | |||
92 | static struct uio_info veu_platform_data = { | ||
93 | .name = "VEU", | ||
94 | .version = "0", | ||
95 | .irq = 54, | ||
96 | }; | ||
97 | |||
98 | static struct resource veu_resources[] = { | ||
99 | [0] = { | ||
100 | .name = "VEU", | ||
101 | .start = 0xfe920000, | ||
102 | .end = 0xfe9200b7, | ||
103 | .flags = IORESOURCE_MEM, | ||
104 | }, | ||
105 | [1] = { | ||
106 | /* place holder for contiguous memory */ | ||
107 | }, | ||
108 | }; | ||
109 | |||
110 | static struct platform_device veu_device = { | ||
111 | .name = "uio_pdrv_genirq", | ||
112 | .id = 1, | ||
113 | .dev = { | ||
114 | .platform_data = &veu_platform_data, | ||
115 | }, | ||
116 | .resource = veu_resources, | ||
117 | .num_resources = ARRAY_SIZE(veu_resources), | ||
118 | }; | ||
119 | |||
62 | static struct plat_sci_port sci_platform_data[] = { | 120 | static struct plat_sci_port sci_platform_data[] = { |
63 | { | 121 | { |
64 | .mapbase = 0xffe00000, | 122 | .mapbase = 0xffe00000, |
@@ -95,10 +153,27 @@ static struct platform_device *sh7722_devices[] __initdata = { | |||
95 | &usbf_device, | 153 | &usbf_device, |
96 | &iic_device, | 154 | &iic_device, |
97 | &sci_device, | 155 | &sci_device, |
156 | &vpu_device, | ||
157 | &veu_device, | ||
98 | }; | 158 | }; |
99 | 159 | ||
100 | static int __init sh7722_devices_setup(void) | 160 | static int __init sh7722_devices_setup(void) |
101 | { | 161 | { |
162 | clk_always_enable("mstp031"); /* TLB */ | ||
163 | clk_always_enable("mstp030"); /* IC */ | ||
164 | clk_always_enable("mstp029"); /* OC */ | ||
165 | clk_always_enable("mstp028"); /* URAM */ | ||
166 | clk_always_enable("mstp026"); /* XYMEM */ | ||
167 | clk_always_enable("mstp022"); /* INTC */ | ||
168 | clk_always_enable("mstp020"); /* SuperHyway */ | ||
169 | clk_always_enable("mstp109"); /* I2C */ | ||
170 | clk_always_enable("mstp211"); /* USB */ | ||
171 | clk_always_enable("mstp202"); /* VEU */ | ||
172 | clk_always_enable("mstp201"); /* VPU */ | ||
173 | |||
174 | platform_resource_setup_memory(&vpu_device, "vpu", 1 << 20); | ||
175 | platform_resource_setup_memory(&veu_device, "veu", 2 << 20); | ||
176 | |||
102 | return platform_add_devices(sh7722_devices, | 177 | return platform_add_devices(sh7722_devices, |
103 | ARRAY_SIZE(sh7722_devices)); | 178 | ARRAY_SIZE(sh7722_devices)); |
104 | } | 179 | } |
@@ -229,8 +304,14 @@ static struct intc_sense_reg sense_registers[] __initdata = { | |||
229 | { IRQ0, IRQ1, IRQ2, IRQ3, IRQ4, IRQ5, IRQ6, IRQ7 } }, | 304 | { IRQ0, IRQ1, IRQ2, IRQ3, IRQ4, IRQ5, IRQ6, IRQ7 } }, |
230 | }; | 305 | }; |
231 | 306 | ||
232 | static DECLARE_INTC_DESC(intc_desc, "sh7722", vectors, groups, | 307 | static struct intc_mask_reg ack_registers[] __initdata = { |
233 | mask_registers, prio_registers, sense_registers); | 308 | { 0xa4140024, 0, 8, /* INTREQ00 */ |
309 | { IRQ0, IRQ1, IRQ2, IRQ3, IRQ4, IRQ5, IRQ6, IRQ7 } }, | ||
310 | }; | ||
311 | |||
312 | static DECLARE_INTC_DESC_ACK(intc_desc, "sh7722", vectors, groups, | ||
313 | mask_registers, prio_registers, sense_registers, | ||
314 | ack_registers); | ||
234 | 315 | ||
235 | void __init plat_irq_setup(void) | 316 | void __init plat_irq_setup(void) |
236 | { | 317 | { |
diff --git a/arch/sh/kernel/cpu/sh4a/setup-sh7723.c b/arch/sh/kernel/cpu/sh4a/setup-sh7723.c index a0470f2f5479..cd6baffdc896 100644 --- a/arch/sh/kernel/cpu/sh4a/setup-sh7723.c +++ b/arch/sh/kernel/cpu/sh4a/setup-sh7723.c | |||
@@ -12,8 +12,94 @@ | |||
12 | #include <linux/serial.h> | 12 | #include <linux/serial.h> |
13 | #include <linux/mm.h> | 13 | #include <linux/mm.h> |
14 | #include <linux/serial_sci.h> | 14 | #include <linux/serial_sci.h> |
15 | #include <linux/uio_driver.h> | ||
16 | #include <asm/clock.h> | ||
15 | #include <asm/mmzone.h> | 17 | #include <asm/mmzone.h> |
16 | 18 | ||
19 | static struct uio_info vpu_platform_data = { | ||
20 | .name = "VPU5", | ||
21 | .version = "0", | ||
22 | .irq = 60, | ||
23 | }; | ||
24 | |||
25 | static struct resource vpu_resources[] = { | ||
26 | [0] = { | ||
27 | .name = "VPU", | ||
28 | .start = 0xfe900000, | ||
29 | .end = 0xfe902807, | ||
30 | .flags = IORESOURCE_MEM, | ||
31 | }, | ||
32 | [1] = { | ||
33 | /* place holder for contiguous memory */ | ||
34 | }, | ||
35 | }; | ||
36 | |||
37 | static struct platform_device vpu_device = { | ||
38 | .name = "uio_pdrv_genirq", | ||
39 | .id = 0, | ||
40 | .dev = { | ||
41 | .platform_data = &vpu_platform_data, | ||
42 | }, | ||
43 | .resource = vpu_resources, | ||
44 | .num_resources = ARRAY_SIZE(vpu_resources), | ||
45 | }; | ||
46 | |||
47 | static struct uio_info veu0_platform_data = { | ||
48 | .name = "VEU", | ||
49 | .version = "0", | ||
50 | .irq = 54, | ||
51 | }; | ||
52 | |||
53 | static struct resource veu0_resources[] = { | ||
54 | [0] = { | ||
55 | .name = "VEU2H0", | ||
56 | .start = 0xfe920000, | ||
57 | .end = 0xfe92027b, | ||
58 | .flags = IORESOURCE_MEM, | ||
59 | }, | ||
60 | [1] = { | ||
61 | /* place holder for contiguous memory */ | ||
62 | }, | ||
63 | }; | ||
64 | |||
65 | static struct platform_device veu0_device = { | ||
66 | .name = "uio_pdrv_genirq", | ||
67 | .id = 1, | ||
68 | .dev = { | ||
69 | .platform_data = &veu0_platform_data, | ||
70 | }, | ||
71 | .resource = veu0_resources, | ||
72 | .num_resources = ARRAY_SIZE(veu0_resources), | ||
73 | }; | ||
74 | |||
75 | static struct uio_info veu1_platform_data = { | ||
76 | .name = "VEU", | ||
77 | .version = "0", | ||
78 | .irq = 27, | ||
79 | }; | ||
80 | |||
81 | static struct resource veu1_resources[] = { | ||
82 | [0] = { | ||
83 | .name = "VEU2H1", | ||
84 | .start = 0xfe924000, | ||
85 | .end = 0xfe92427b, | ||
86 | .flags = IORESOURCE_MEM, | ||
87 | }, | ||
88 | [1] = { | ||
89 | /* place holder for contiguous memory */ | ||
90 | }, | ||
91 | }; | ||
92 | |||
93 | static struct platform_device veu1_device = { | ||
94 | .name = "uio_pdrv_genirq", | ||
95 | .id = 2, | ||
96 | .dev = { | ||
97 | .platform_data = &veu1_platform_data, | ||
98 | }, | ||
99 | .resource = veu1_resources, | ||
100 | .num_resources = ARRAY_SIZE(veu1_resources), | ||
101 | }; | ||
102 | |||
17 | static struct plat_sci_port sci_platform_data[] = { | 103 | static struct plat_sci_port sci_platform_data[] = { |
18 | { | 104 | { |
19 | .mapbase = 0xffe00000, | 105 | .mapbase = 0xffe00000, |
@@ -113,14 +199,56 @@ static struct platform_device sh7723_usb_host_device = { | |||
113 | .resource = sh7723_usb_host_resources, | 199 | .resource = sh7723_usb_host_resources, |
114 | }; | 200 | }; |
115 | 201 | ||
202 | static struct resource iic_resources[] = { | ||
203 | [0] = { | ||
204 | .name = "IIC", | ||
205 | .start = 0x04470000, | ||
206 | .end = 0x04470017, | ||
207 | .flags = IORESOURCE_MEM, | ||
208 | }, | ||
209 | [1] = { | ||
210 | .start = 96, | ||
211 | .end = 99, | ||
212 | .flags = IORESOURCE_IRQ, | ||
213 | }, | ||
214 | }; | ||
215 | |||
216 | static struct platform_device iic_device = { | ||
217 | .name = "i2c-sh_mobile", | ||
218 | .num_resources = ARRAY_SIZE(iic_resources), | ||
219 | .resource = iic_resources, | ||
220 | }; | ||
221 | |||
116 | static struct platform_device *sh7723_devices[] __initdata = { | 222 | static struct platform_device *sh7723_devices[] __initdata = { |
117 | &sci_device, | 223 | &sci_device, |
118 | &rtc_device, | 224 | &rtc_device, |
225 | &iic_device, | ||
119 | &sh7723_usb_host_device, | 226 | &sh7723_usb_host_device, |
227 | &vpu_device, | ||
228 | &veu0_device, | ||
229 | &veu1_device, | ||
120 | }; | 230 | }; |
121 | 231 | ||
122 | static int __init sh7723_devices_setup(void) | 232 | static int __init sh7723_devices_setup(void) |
123 | { | 233 | { |
234 | clk_always_enable("mstp031"); /* TLB */ | ||
235 | clk_always_enable("mstp030"); /* IC */ | ||
236 | clk_always_enable("mstp029"); /* OC */ | ||
237 | clk_always_enable("mstp024"); /* FPU */ | ||
238 | clk_always_enable("mstp022"); /* INTC */ | ||
239 | clk_always_enable("mstp020"); /* SuperHyway */ | ||
240 | clk_always_enable("mstp000"); /* MERAM */ | ||
241 | clk_always_enable("mstp109"); /* I2C */ | ||
242 | clk_always_enable("mstp108"); /* RTC */ | ||
243 | clk_always_enable("mstp211"); /* USB */ | ||
244 | clk_always_enable("mstp206"); /* VEU2H1 */ | ||
245 | clk_always_enable("mstp202"); /* VEU2H0 */ | ||
246 | clk_always_enable("mstp201"); /* VPU */ | ||
247 | |||
248 | platform_resource_setup_memory(&vpu_device, "vpu", 2 << 20); | ||
249 | platform_resource_setup_memory(&veu0_device, "veu0", 2 << 20); | ||
250 | platform_resource_setup_memory(&veu1_device, "veu1", 2 << 20); | ||
251 | |||
124 | return platform_add_devices(sh7723_devices, | 252 | return platform_add_devices(sh7723_devices, |
125 | ARRAY_SIZE(sh7723_devices)); | 253 | ARRAY_SIZE(sh7723_devices)); |
126 | } | 254 | } |
@@ -326,8 +454,14 @@ static struct intc_sense_reg sense_registers[] __initdata = { | |||
326 | { IRQ0, IRQ1, IRQ2, IRQ3, IRQ4, IRQ5, IRQ6, IRQ7 } }, | 454 | { IRQ0, IRQ1, IRQ2, IRQ3, IRQ4, IRQ5, IRQ6, IRQ7 } }, |
327 | }; | 455 | }; |
328 | 456 | ||
329 | static DECLARE_INTC_DESC(intc_desc, "sh7723", vectors, groups, | 457 | static struct intc_mask_reg ack_registers[] __initdata = { |
330 | mask_registers, prio_registers, sense_registers); | 458 | { 0xa4140024, 0, 8, /* INTREQ00 */ |
459 | { IRQ0, IRQ1, IRQ2, IRQ3, IRQ4, IRQ5, IRQ6, IRQ7 } }, | ||
460 | }; | ||
461 | |||
462 | static DECLARE_INTC_DESC_ACK(intc_desc, "sh7723", vectors, groups, | ||
463 | mask_registers, prio_registers, sense_registers, | ||
464 | ack_registers); | ||
331 | 465 | ||
332 | void __init plat_irq_setup(void) | 466 | void __init plat_irq_setup(void) |
333 | { | 467 | { |
diff --git a/arch/sh/kernel/cpu/sh4a/setup-sh7763.c b/arch/sh/kernel/cpu/sh4a/setup-sh7763.c index f189a559462b..3c5b629887a8 100644 --- a/arch/sh/kernel/cpu/sh4a/setup-sh7763.c +++ b/arch/sh/kernel/cpu/sh4a/setup-sh7763.c | |||
@@ -3,6 +3,7 @@ | |||
3 | * | 3 | * |
4 | * Copyright (C) 2006 Paul Mundt | 4 | * Copyright (C) 2006 Paul Mundt |
5 | * Copyright (C) 2007 Yoshihiro Shimoda | 5 | * Copyright (C) 2007 Yoshihiro Shimoda |
6 | * Copyright (C) 2008 Nobuhiro Iwamatsu | ||
6 | * | 7 | * |
7 | * This file is subject to the terms and conditions of the GNU General Public | 8 | * This file is subject to the terms and conditions of the GNU General Public |
8 | * License. See the file "COPYING" in the main directory of this archive | 9 | * License. See the file "COPYING" in the main directory of this archive |
@@ -56,6 +57,11 @@ static struct plat_sci_port sci_platform_data[] = { | |||
56 | .type = PORT_SCIF, | 57 | .type = PORT_SCIF, |
57 | .irqs = { 76, 77, 79, 78 }, | 58 | .irqs = { 76, 77, 79, 78 }, |
58 | }, { | 59 | }, { |
60 | .mapbase = 0xffe10000, | ||
61 | .flags = UPF_BOOT_AUTOCONF, | ||
62 | .type = PORT_SCIF, | ||
63 | .irqs = { 104, 105, 107, 106 }, | ||
64 | }, { | ||
59 | .flags = 0, | 65 | .flags = 0, |
60 | } | 66 | } |
61 | }; | 67 | }; |
@@ -208,8 +214,8 @@ static struct intc_vect vectors[] __initdata = { | |||
208 | INTC_VECT(TMU5, 0xe40), INTC_VECT(ADC, 0xe60), | 214 | INTC_VECT(TMU5, 0xe40), INTC_VECT(ADC, 0xe60), |
209 | INTC_VECT(SSI0, 0xe80), INTC_VECT(SSI1, 0xea0), | 215 | INTC_VECT(SSI0, 0xe80), INTC_VECT(SSI1, 0xea0), |
210 | INTC_VECT(SSI2, 0xec0), INTC_VECT(SSI3, 0xee0), | 216 | INTC_VECT(SSI2, 0xec0), INTC_VECT(SSI3, 0xee0), |
211 | INTC_VECT(SCIF1_ERI, 0xf00), INTC_VECT(SCIF1_RXI, 0xf20), | 217 | INTC_VECT(SCIF2_ERI, 0xf00), INTC_VECT(SCIF2_RXI, 0xf20), |
212 | INTC_VECT(SCIF1_BRI, 0xf40), INTC_VECT(SCIF1_TXI, 0xf60), | 218 | INTC_VECT(SCIF2_BRI, 0xf40), INTC_VECT(SCIF2_TXI, 0xf60), |
213 | INTC_VECT(GPIO_CH0, 0xf80), INTC_VECT(GPIO_CH1, 0xfa0), | 219 | INTC_VECT(GPIO_CH0, 0xf80), INTC_VECT(GPIO_CH1, 0xfa0), |
214 | INTC_VECT(GPIO_CH2, 0xfc0), INTC_VECT(GPIO_CH3, 0xfe0), | 220 | INTC_VECT(GPIO_CH2, 0xfc0), INTC_VECT(GPIO_CH3, 0xfe0), |
215 | }; | 221 | }; |
@@ -290,9 +296,14 @@ static struct intc_sense_reg irq_sense_registers[] __initdata = { | |||
290 | IRQ4, IRQ5, IRQ6, IRQ7 } }, | 296 | IRQ4, IRQ5, IRQ6, IRQ7 } }, |
291 | }; | 297 | }; |
292 | 298 | ||
293 | static DECLARE_INTC_DESC(intc_irq_desc, "sh7763-irq", irq_vectors, | 299 | static struct intc_mask_reg irq_ack_registers[] __initdata = { |
294 | NULL, irq_mask_registers, irq_prio_registers, | 300 | { 0xffd00024, 0, 32, /* INTREQ */ |
295 | irq_sense_registers); | 301 | { IRQ0, IRQ1, IRQ2, IRQ3, IRQ4, IRQ5, IRQ6, IRQ7 } }, |
302 | }; | ||
303 | |||
304 | static DECLARE_INTC_DESC_ACK(intc_irq_desc, "sh7763-irq", irq_vectors, | ||
305 | NULL, irq_mask_registers, irq_prio_registers, | ||
306 | irq_sense_registers, irq_ack_registers); | ||
296 | 307 | ||
297 | 308 | ||
298 | /* External interrupt pins in IRL mode */ | 309 | /* External interrupt pins in IRL mode */ |
diff --git a/arch/sh/kernel/cpu/sh4a/setup-sh7780.c b/arch/sh/kernel/cpu/sh4a/setup-sh7780.c index 18dbbe23fea1..fb8200cc7440 100644 --- a/arch/sh/kernel/cpu/sh4a/setup-sh7780.c +++ b/arch/sh/kernel/cpu/sh4a/setup-sh7780.c | |||
@@ -217,9 +217,14 @@ static struct intc_sense_reg irq_sense_registers[] __initdata = { | |||
217 | IRQ4, IRQ5, IRQ6, IRQ7 } }, | 217 | IRQ4, IRQ5, IRQ6, IRQ7 } }, |
218 | }; | 218 | }; |
219 | 219 | ||
220 | static DECLARE_INTC_DESC(intc_irq_desc, "sh7780-irq", irq_vectors, | 220 | static struct intc_mask_reg irq_ack_registers[] __initdata = { |
221 | NULL, irq_mask_registers, irq_prio_registers, | 221 | { 0xffd00024, 0, 32, /* INTREQ */ |
222 | irq_sense_registers); | 222 | { IRQ0, IRQ1, IRQ2, IRQ3, IRQ4, IRQ5, IRQ6, IRQ7 } }, |
223 | }; | ||
224 | |||
225 | static DECLARE_INTC_DESC_ACK(intc_irq_desc, "sh7780-irq", irq_vectors, | ||
226 | NULL, irq_mask_registers, irq_prio_registers, | ||
227 | irq_sense_registers, irq_ack_registers); | ||
223 | 228 | ||
224 | /* External interrupt pins in IRL mode */ | 229 | /* External interrupt pins in IRL mode */ |
225 | 230 | ||
diff --git a/arch/sh/kernel/cpu/sh4a/setup-sh7785.c b/arch/sh/kernel/cpu/sh4a/setup-sh7785.c index 621e7329ec63..30baa63b24c8 100644 --- a/arch/sh/kernel/cpu/sh4a/setup-sh7785.c +++ b/arch/sh/kernel/cpu/sh4a/setup-sh7785.c | |||
@@ -238,13 +238,18 @@ static struct intc_sense_reg sense_registers[] __initdata = { | |||
238 | IRQ4, IRQ5, IRQ6, IRQ7 } }, | 238 | IRQ4, IRQ5, IRQ6, IRQ7 } }, |
239 | }; | 239 | }; |
240 | 240 | ||
241 | static DECLARE_INTC_DESC(intc_desc_irq0123, "sh7785-irq0123", vectors_irq0123, | 241 | static struct intc_mask_reg ack_registers[] __initdata = { |
242 | NULL, mask_registers, prio_registers, | 242 | { 0xffd00024, 0, 32, /* INTREQ */ |
243 | sense_registers); | 243 | { IRQ0, IRQ1, IRQ2, IRQ3, IRQ4, IRQ5, IRQ6, IRQ7 } }, |
244 | }; | ||
245 | |||
246 | static DECLARE_INTC_DESC_ACK(intc_desc_irq0123, "sh7785-irq0123", | ||
247 | vectors_irq0123, NULL, mask_registers, | ||
248 | prio_registers, sense_registers, ack_registers); | ||
244 | 249 | ||
245 | static DECLARE_INTC_DESC(intc_desc_irq4567, "sh7785-irq4567", vectors_irq4567, | 250 | static DECLARE_INTC_DESC_ACK(intc_desc_irq4567, "sh7785-irq4567", |
246 | NULL, mask_registers, prio_registers, | 251 | vectors_irq4567, NULL, mask_registers, |
247 | sense_registers); | 252 | prio_registers, sense_registers, ack_registers); |
248 | 253 | ||
249 | /* External interrupt pins in IRL mode */ | 254 | /* External interrupt pins in IRL mode */ |
250 | 255 | ||
diff --git a/arch/sh/kernel/entry-common.S b/arch/sh/kernel/entry-common.S index 718bd2356b34..5e0dd1933847 100644 --- a/arch/sh/kernel/entry-common.S +++ b/arch/sh/kernel/entry-common.S | |||
@@ -192,7 +192,7 @@ work_resched: | |||
192 | .align 2 | 192 | .align 2 |
193 | 1: .long schedule | 193 | 1: .long schedule |
194 | 2: .long do_notify_resume | 194 | 2: .long do_notify_resume |
195 | 3: .long restore_all | 195 | 3: .long resume_userspace |
196 | #ifdef CONFIG_TRACE_IRQFLAGS | 196 | #ifdef CONFIG_TRACE_IRQFLAGS |
197 | 4: .long trace_hardirqs_on | 197 | 4: .long trace_hardirqs_on |
198 | 5: .long trace_hardirqs_off | 198 | 5: .long trace_hardirqs_off |
diff --git a/arch/sh/kernel/process_32.c b/arch/sh/kernel/process_32.c index 921892c351da..3326a45749d9 100644 --- a/arch/sh/kernel/process_32.c +++ b/arch/sh/kernel/process_32.c | |||
@@ -34,18 +34,6 @@ void (*pm_idle)(void); | |||
34 | void (*pm_power_off)(void); | 34 | void (*pm_power_off)(void); |
35 | EXPORT_SYMBOL(pm_power_off); | 35 | EXPORT_SYMBOL(pm_power_off); |
36 | 36 | ||
37 | void disable_hlt(void) | ||
38 | { | ||
39 | hlt_counter++; | ||
40 | } | ||
41 | EXPORT_SYMBOL(disable_hlt); | ||
42 | |||
43 | void enable_hlt(void) | ||
44 | { | ||
45 | hlt_counter--; | ||
46 | } | ||
47 | EXPORT_SYMBOL(enable_hlt); | ||
48 | |||
49 | static int __init nohlt_setup(char *__unused) | 37 | static int __init nohlt_setup(char *__unused) |
50 | { | 38 | { |
51 | hlt_counter = 1; | 39 | hlt_counter = 1; |
@@ -60,7 +48,7 @@ static int __init hlt_setup(char *__unused) | |||
60 | } | 48 | } |
61 | __setup("hlt", hlt_setup); | 49 | __setup("hlt", hlt_setup); |
62 | 50 | ||
63 | void default_idle(void) | 51 | static void default_idle(void) |
64 | { | 52 | { |
65 | if (!hlt_counter) { | 53 | if (!hlt_counter) { |
66 | clear_thread_flag(TIF_POLLING_NRFLAG); | 54 | clear_thread_flag(TIF_POLLING_NRFLAG); |
diff --git a/arch/sh/kernel/process_64.c b/arch/sh/kernel/process_64.c index 0283d8133075..b9dbd2d3b4a5 100644 --- a/arch/sh/kernel/process_64.c +++ b/arch/sh/kernel/process_64.c | |||
@@ -36,16 +36,6 @@ static int hlt_counter = 1; | |||
36 | 36 | ||
37 | #define HARD_IDLE_TIMEOUT (HZ / 3) | 37 | #define HARD_IDLE_TIMEOUT (HZ / 3) |
38 | 38 | ||
39 | void disable_hlt(void) | ||
40 | { | ||
41 | hlt_counter++; | ||
42 | } | ||
43 | |||
44 | void enable_hlt(void) | ||
45 | { | ||
46 | hlt_counter--; | ||
47 | } | ||
48 | |||
49 | static int __init nohlt_setup(char *__unused) | 39 | static int __init nohlt_setup(char *__unused) |
50 | { | 40 | { |
51 | hlt_counter = 1; | 41 | hlt_counter = 1; |
diff --git a/arch/sh/kernel/ptrace_32.c b/arch/sh/kernel/ptrace_32.c index fddb547f3c2b..2bc72def5cf8 100644 --- a/arch/sh/kernel/ptrace_32.c +++ b/arch/sh/kernel/ptrace_32.c | |||
@@ -241,6 +241,29 @@ long arch_ptrace(struct task_struct *child, long request, long addr, long data) | |||
241 | break; | 241 | break; |
242 | } | 242 | } |
243 | #endif | 243 | #endif |
244 | #ifdef CONFIG_BINFMT_ELF_FDPIC | ||
245 | case PTRACE_GETFDPIC: { | ||
246 | unsigned long tmp = 0; | ||
247 | |||
248 | switch (addr) { | ||
249 | case PTRACE_GETFDPIC_EXEC: | ||
250 | tmp = child->mm->context.exec_fdpic_loadmap; | ||
251 | break; | ||
252 | case PTRACE_GETFDPIC_INTERP: | ||
253 | tmp = child->mm->context.interp_fdpic_loadmap; | ||
254 | break; | ||
255 | default: | ||
256 | break; | ||
257 | } | ||
258 | |||
259 | ret = 0; | ||
260 | if (put_user(tmp, (unsigned long *) data)) { | ||
261 | ret = -EFAULT; | ||
262 | break; | ||
263 | } | ||
264 | break; | ||
265 | } | ||
266 | #endif | ||
244 | default: | 267 | default: |
245 | ret = ptrace_request(child, request, addr, data); | 268 | ret = ptrace_request(child, request, addr, data); |
246 | break; | 269 | break; |
diff --git a/arch/sh/kernel/setup.c b/arch/sh/kernel/setup.c index bca2bbc575db..6339d0c95715 100644 --- a/arch/sh/kernel/setup.c +++ b/arch/sh/kernel/setup.c | |||
@@ -398,6 +398,7 @@ const char *get_cpu_subtype(struct sh_cpuinfo *c) | |||
398 | { | 398 | { |
399 | return cpu_name[c->type]; | 399 | return cpu_name[c->type]; |
400 | } | 400 | } |
401 | EXPORT_SYMBOL(get_cpu_subtype); | ||
401 | 402 | ||
402 | #ifdef CONFIG_PROC_FS | 403 | #ifdef CONFIG_PROC_FS |
403 | /* Symbolic CPU flags, keep in sync with asm/cpu-features.h */ | 404 | /* Symbolic CPU flags, keep in sync with asm/cpu-features.h */ |
@@ -452,6 +453,12 @@ static int show_cpuinfo(struct seq_file *m, void *v) | |||
452 | seq_printf(m, "processor\t: %d\n", cpu); | 453 | seq_printf(m, "processor\t: %d\n", cpu); |
453 | seq_printf(m, "cpu family\t: %s\n", init_utsname()->machine); | 454 | seq_printf(m, "cpu family\t: %s\n", init_utsname()->machine); |
454 | seq_printf(m, "cpu type\t: %s\n", get_cpu_subtype(c)); | 455 | seq_printf(m, "cpu type\t: %s\n", get_cpu_subtype(c)); |
456 | if (c->cut_major == -1) | ||
457 | seq_printf(m, "cut\t\t: unknown\n"); | ||
458 | else if (c->cut_minor == -1) | ||
459 | seq_printf(m, "cut\t\t: %d.x\n", c->cut_major); | ||
460 | else | ||
461 | seq_printf(m, "cut\t\t: %d.%d\n", c->cut_major, c->cut_minor); | ||
455 | 462 | ||
456 | show_cpuflags(m, c); | 463 | show_cpuflags(m, c); |
457 | 464 | ||
diff --git a/arch/sh/kernel/signal_32.c b/arch/sh/kernel/signal_32.c index f311551d9a05..4bbbde895a53 100644 --- a/arch/sh/kernel/signal_32.c +++ b/arch/sh/kernel/signal_32.c | |||
@@ -33,6 +33,11 @@ | |||
33 | 33 | ||
34 | #define _BLOCKABLE (~(sigmask(SIGKILL) | sigmask(SIGSTOP))) | 34 | #define _BLOCKABLE (~(sigmask(SIGKILL) | sigmask(SIGSTOP))) |
35 | 35 | ||
36 | struct fdpic_func_descriptor { | ||
37 | unsigned long text; | ||
38 | unsigned long GOT; | ||
39 | }; | ||
40 | |||
36 | /* | 41 | /* |
37 | * Atomically swap in the new signal mask, and wait for a signal. | 42 | * Atomically swap in the new signal mask, and wait for a signal. |
38 | */ | 43 | */ |
@@ -368,6 +373,7 @@ static int setup_frame(int sig, struct k_sigaction *ka, | |||
368 | err |= __put_user(OR_R0_R0, &frame->retcode[6]); | 373 | err |= __put_user(OR_R0_R0, &frame->retcode[6]); |
369 | err |= __put_user((__NR_sigreturn), &frame->retcode[7]); | 374 | err |= __put_user((__NR_sigreturn), &frame->retcode[7]); |
370 | regs->pr = (unsigned long) frame->retcode; | 375 | regs->pr = (unsigned long) frame->retcode; |
376 | flush_icache_range(regs->pr, regs->pr + sizeof(frame->retcode)); | ||
371 | } | 377 | } |
372 | 378 | ||
373 | if (err) | 379 | if (err) |
@@ -378,18 +384,21 @@ static int setup_frame(int sig, struct k_sigaction *ka, | |||
378 | regs->regs[4] = signal; /* Arg for signal handler */ | 384 | regs->regs[4] = signal; /* Arg for signal handler */ |
379 | regs->regs[5] = 0; | 385 | regs->regs[5] = 0; |
380 | regs->regs[6] = (unsigned long) &frame->sc; | 386 | regs->regs[6] = (unsigned long) &frame->sc; |
381 | regs->pc = (unsigned long) ka->sa.sa_handler; | 387 | |
388 | if (current->personality & FDPIC_FUNCPTRS) { | ||
389 | struct fdpic_func_descriptor __user *funcptr = | ||
390 | (struct fdpic_func_descriptor __user *)ka->sa.sa_handler; | ||
391 | |||
392 | __get_user(regs->pc, &funcptr->text); | ||
393 | __get_user(regs->regs[12], &funcptr->GOT); | ||
394 | } else | ||
395 | regs->pc = (unsigned long)ka->sa.sa_handler; | ||
382 | 396 | ||
383 | set_fs(USER_DS); | 397 | set_fs(USER_DS); |
384 | 398 | ||
385 | pr_debug("SIG deliver (%s:%d): sp=%p pc=%08lx pr=%08lx\n", | 399 | pr_debug("SIG deliver (%s:%d): sp=%p pc=%08lx pr=%08lx\n", |
386 | current->comm, task_pid_nr(current), frame, regs->pc, regs->pr); | 400 | current->comm, task_pid_nr(current), frame, regs->pc, regs->pr); |
387 | 401 | ||
388 | flush_cache_sigtramp(regs->pr); | ||
389 | |||
390 | if ((-regs->pr & (L1_CACHE_BYTES-1)) < sizeof(frame->retcode)) | ||
391 | flush_cache_sigtramp(regs->pr + L1_CACHE_BYTES); | ||
392 | |||
393 | return 0; | 402 | return 0; |
394 | 403 | ||
395 | give_sigsegv: | 404 | give_sigsegv: |
@@ -458,17 +467,22 @@ static int setup_rt_frame(int sig, struct k_sigaction *ka, siginfo_t *info, | |||
458 | regs->regs[4] = signal; /* Arg for signal handler */ | 467 | regs->regs[4] = signal; /* Arg for signal handler */ |
459 | regs->regs[5] = (unsigned long) &frame->info; | 468 | regs->regs[5] = (unsigned long) &frame->info; |
460 | regs->regs[6] = (unsigned long) &frame->uc; | 469 | regs->regs[6] = (unsigned long) &frame->uc; |
461 | regs->pc = (unsigned long) ka->sa.sa_handler; | 470 | |
471 | if (current->personality & FDPIC_FUNCPTRS) { | ||
472 | struct fdpic_func_descriptor __user *funcptr = | ||
473 | (struct fdpic_func_descriptor __user *)ka->sa.sa_handler; | ||
474 | |||
475 | __get_user(regs->pc, &funcptr->text); | ||
476 | __get_user(regs->regs[12], &funcptr->GOT); | ||
477 | } else | ||
478 | regs->pc = (unsigned long)ka->sa.sa_handler; | ||
462 | 479 | ||
463 | set_fs(USER_DS); | 480 | set_fs(USER_DS); |
464 | 481 | ||
465 | pr_debug("SIG deliver (%s:%d): sp=%p pc=%08lx pr=%08lx\n", | 482 | pr_debug("SIG deliver (%s:%d): sp=%p pc=%08lx pr=%08lx\n", |
466 | current->comm, task_pid_nr(current), frame, regs->pc, regs->pr); | 483 | current->comm, task_pid_nr(current), frame, regs->pc, regs->pr); |
467 | 484 | ||
468 | flush_cache_sigtramp(regs->pr); | 485 | flush_icache_range(regs->pr, regs->pr + sizeof(frame->retcode)); |
469 | |||
470 | if ((-regs->pr & (L1_CACHE_BYTES-1)) < sizeof(frame->retcode)) | ||
471 | flush_cache_sigtramp(regs->pr + L1_CACHE_BYTES); | ||
472 | 486 | ||
473 | return 0; | 487 | return 0; |
474 | 488 | ||
diff --git a/arch/sh/kernel/syscalls_32.S b/arch/sh/kernel/syscalls_32.S index a46cc3a41148..0af693e65764 100644 --- a/arch/sh/kernel/syscalls_32.S +++ b/arch/sh/kernel/syscalls_32.S | |||
@@ -343,3 +343,9 @@ ENTRY(sys_call_table) | |||
343 | .long sys_fallocate | 343 | .long sys_fallocate |
344 | .long sys_timerfd_settime /* 325 */ | 344 | .long sys_timerfd_settime /* 325 */ |
345 | .long sys_timerfd_gettime | 345 | .long sys_timerfd_gettime |
346 | .long sys_signalfd4 | ||
347 | .long sys_eventfd2 | ||
348 | .long sys_epoll_create1 | ||
349 | .long sys_dup3 /* 330 */ | ||
350 | .long sys_pipe2 | ||
351 | .long sys_inotify_init1 | ||
diff --git a/arch/sh/kernel/syscalls_64.S b/arch/sh/kernel/syscalls_64.S index d5d7843aad94..0b436aa3cad7 100644 --- a/arch/sh/kernel/syscalls_64.S +++ b/arch/sh/kernel/syscalls_64.S | |||
@@ -381,3 +381,9 @@ sys_call_table: | |||
381 | .long sys_fallocate | 381 | .long sys_fallocate |
382 | .long sys_timerfd_settime | 382 | .long sys_timerfd_settime |
383 | .long sys_timerfd_gettime | 383 | .long sys_timerfd_gettime |
384 | .long sys_signalfd4 /* 355 */ | ||
385 | .long sys_eventfd2 | ||
386 | .long sys_epoll_create1 | ||
387 | .long sys_dup3 | ||
388 | .long sys_pipe2 | ||
389 | .long sys_inotify_init1 /* 360 */ | ||
diff --git a/arch/sh/kernel/time_32.c b/arch/sh/kernel/time_32.c index 7281342c044d..0758b5ee8180 100644 --- a/arch/sh/kernel/time_32.c +++ b/arch/sh/kernel/time_32.c | |||
@@ -211,7 +211,7 @@ unsigned long sh_hpt_frequency = 0; | |||
211 | 211 | ||
212 | #define NSEC_PER_CYC_SHIFT 10 | 212 | #define NSEC_PER_CYC_SHIFT 10 |
213 | 213 | ||
214 | struct clocksource clocksource_sh = { | 214 | static struct clocksource clocksource_sh = { |
215 | .name = "SuperH", | 215 | .name = "SuperH", |
216 | .rating = 200, | 216 | .rating = 200, |
217 | .mask = CLOCKSOURCE_MASK(32), | 217 | .mask = CLOCKSOURCE_MASK(32), |
diff --git a/arch/sh/kernel/timers/timer-tmu.c b/arch/sh/kernel/timers/timer-tmu.c index 8935570008d2..1ca9ad49b541 100644 --- a/arch/sh/kernel/timers/timer-tmu.c +++ b/arch/sh/kernel/timers/timer-tmu.c | |||
@@ -209,7 +209,7 @@ static int tmu_timer_init(void) | |||
209 | return 0; | 209 | return 0; |
210 | } | 210 | } |
211 | 211 | ||
212 | struct sys_timer_ops tmu_timer_ops = { | 212 | static struct sys_timer_ops tmu_timer_ops = { |
213 | .init = tmu_timer_init, | 213 | .init = tmu_timer_init, |
214 | .start = tmu_timer_start, | 214 | .start = tmu_timer_start, |
215 | .stop = tmu_timer_stop, | 215 | .stop = tmu_timer_stop, |
diff --git a/arch/sh/kernel/traps_32.c b/arch/sh/kernel/traps_32.c index e08b3bfeb656..511a9426cec5 100644 --- a/arch/sh/kernel/traps_32.c +++ b/arch/sh/kernel/traps_32.c | |||
@@ -43,6 +43,7 @@ | |||
43 | # define TRAP_ILLEGAL_SLOT_INST 6 | 43 | # define TRAP_ILLEGAL_SLOT_INST 6 |
44 | # define TRAP_ADDRESS_ERROR 9 | 44 | # define TRAP_ADDRESS_ERROR 9 |
45 | # ifdef CONFIG_CPU_SH2A | 45 | # ifdef CONFIG_CPU_SH2A |
46 | # define TRAP_FPU_ERROR 13 | ||
46 | # define TRAP_DIVZERO_ERROR 17 | 47 | # define TRAP_DIVZERO_ERROR 17 |
47 | # define TRAP_DIVOVF_ERROR 18 | 48 | # define TRAP_DIVOVF_ERROR 18 |
48 | # endif | 49 | # endif |
@@ -851,6 +852,9 @@ void __init trap_init(void) | |||
851 | #ifdef CONFIG_CPU_SH2A | 852 | #ifdef CONFIG_CPU_SH2A |
852 | set_exception_table_vec(TRAP_DIVZERO_ERROR, do_divide_error); | 853 | set_exception_table_vec(TRAP_DIVZERO_ERROR, do_divide_error); |
853 | set_exception_table_vec(TRAP_DIVOVF_ERROR, do_divide_error); | 854 | set_exception_table_vec(TRAP_DIVOVF_ERROR, do_divide_error); |
855 | #ifdef CONFIG_SH_FPU | ||
856 | set_exception_table_vec(TRAP_FPU_ERROR, fpu_error_trap_handler); | ||
857 | #endif | ||
854 | #endif | 858 | #endif |
855 | 859 | ||
856 | /* Setup VBR for boot cpu */ | 860 | /* Setup VBR for boot cpu */ |
diff --git a/arch/sh/lib/Makefile b/arch/sh/lib/Makefile index ebb55d1149f5..8596cc78e18d 100644 --- a/arch/sh/lib/Makefile +++ b/arch/sh/lib/Makefile | |||
@@ -2,9 +2,11 @@ | |||
2 | # Makefile for SuperH-specific library files.. | 2 | # Makefile for SuperH-specific library files.. |
3 | # | 3 | # |
4 | 4 | ||
5 | lib-y = delay.o io.o memset.o memmove.o memchr.o \ | 5 | lib-y = delay.o memset.o memmove.o memchr.o \ |
6 | checksum.o strlen.o div64.o div64-generic.o | 6 | checksum.o strlen.o div64.o div64-generic.o |
7 | 7 | ||
8 | obj-y += io.o | ||
9 | |||
8 | memcpy-y := memcpy.o | 10 | memcpy-y := memcpy.o |
9 | memcpy-$(CONFIG_CPU_SH4) := memcpy-sh4.o | 11 | memcpy-$(CONFIG_CPU_SH4) := memcpy-sh4.o |
10 | 12 | ||
diff --git a/arch/sh/mm/Kconfig b/arch/sh/mm/Kconfig index 5fd218430b19..56d0a7daa34b 100644 --- a/arch/sh/mm/Kconfig +++ b/arch/sh/mm/Kconfig | |||
@@ -145,25 +145,39 @@ choice | |||
145 | 145 | ||
146 | config PAGE_SIZE_4KB | 146 | config PAGE_SIZE_4KB |
147 | bool "4kB" | 147 | bool "4kB" |
148 | depends on !X2TLB | 148 | depends on !MMU || !X2TLB |
149 | help | 149 | help |
150 | This is the default page size used by all SuperH CPUs. | 150 | This is the default page size used by all SuperH CPUs. |
151 | 151 | ||
152 | config PAGE_SIZE_8KB | 152 | config PAGE_SIZE_8KB |
153 | bool "8kB" | 153 | bool "8kB" |
154 | depends on X2TLB | 154 | depends on !MMU || X2TLB |
155 | help | 155 | help |
156 | This enables 8kB pages as supported by SH-X2 and later MMUs. | 156 | This enables 8kB pages as supported by SH-X2 and later MMUs. |
157 | 157 | ||
158 | config PAGE_SIZE_16KB | ||
159 | bool "16kB" | ||
160 | depends on !MMU | ||
161 | help | ||
162 | This enables 16kB pages on MMU-less SH systems. | ||
163 | |||
158 | config PAGE_SIZE_64KB | 164 | config PAGE_SIZE_64KB |
159 | bool "64kB" | 165 | bool "64kB" |
160 | depends on CPU_SH4 || CPU_SH5 | 166 | depends on !MMU || CPU_SH4 || CPU_SH5 |
161 | help | 167 | help |
162 | This enables support for 64kB pages, possible on all SH-4 | 168 | This enables support for 64kB pages, possible on all SH-4 |
163 | CPUs and later. | 169 | CPUs and later. |
164 | 170 | ||
165 | endchoice | 171 | endchoice |
166 | 172 | ||
173 | config ENTRY_OFFSET | ||
174 | hex | ||
175 | default "0x00001000" if PAGE_SIZE_4KB | ||
176 | default "0x00002000" if PAGE_SIZE_8KB | ||
177 | default "0x00004000" if PAGE_SIZE_16KB | ||
178 | default "0x00010000" if PAGE_SIZE_64KB | ||
179 | default "0x00000000" | ||
180 | |||
167 | choice | 181 | choice |
168 | prompt "HugeTLB page size" | 182 | prompt "HugeTLB page size" |
169 | depends on HUGETLB_PAGE && (CPU_SH4 || CPU_SH5) && MMU | 183 | depends on HUGETLB_PAGE && (CPU_SH4 || CPU_SH5) && MMU |
diff --git a/arch/sh/mm/cache-debugfs.c b/arch/sh/mm/cache-debugfs.c index c5b56d52b7d2..0e189ccd4a77 100644 --- a/arch/sh/mm/cache-debugfs.c +++ b/arch/sh/mm/cache-debugfs.c | |||
@@ -120,7 +120,7 @@ static const struct file_operations cache_debugfs_fops = { | |||
120 | .open = cache_debugfs_open, | 120 | .open = cache_debugfs_open, |
121 | .read = seq_read, | 121 | .read = seq_read, |
122 | .llseek = seq_lseek, | 122 | .llseek = seq_lseek, |
123 | .release = seq_release, | 123 | .release = single_release, |
124 | }; | 124 | }; |
125 | 125 | ||
126 | static int __init cache_debugfs_init(void) | 126 | static int __init cache_debugfs_init(void) |
diff --git a/arch/sh/mm/cache-sh4.c b/arch/sh/mm/cache-sh4.c index 43d7ff6b6ec7..1fdc8d90254a 100644 --- a/arch/sh/mm/cache-sh4.c +++ b/arch/sh/mm/cache-sh4.c | |||
@@ -4,6 +4,7 @@ | |||
4 | * Copyright (C) 1999, 2000, 2002 Niibe Yutaka | 4 | * Copyright (C) 1999, 2000, 2002 Niibe Yutaka |
5 | * Copyright (C) 2001 - 2007 Paul Mundt | 5 | * Copyright (C) 2001 - 2007 Paul Mundt |
6 | * Copyright (C) 2003 Richard Curnow | 6 | * Copyright (C) 2003 Richard Curnow |
7 | * Copyright (c) 2007 STMicroelectronics (R&D) Ltd. | ||
7 | * | 8 | * |
8 | * This file is subject to the terms and conditions of the GNU General Public | 9 | * This file is subject to the terms and conditions of the GNU General Public |
9 | * License. See the file "COPYING" in the main directory of this archive | 10 | * License. See the file "COPYING" in the main directory of this archive |
@@ -22,6 +23,7 @@ | |||
22 | * entirety. | 23 | * entirety. |
23 | */ | 24 | */ |
24 | #define MAX_DCACHE_PAGES 64 /* XXX: Tune for ways */ | 25 | #define MAX_DCACHE_PAGES 64 /* XXX: Tune for ways */ |
26 | #define MAX_ICACHE_PAGES 32 | ||
25 | 27 | ||
26 | static void __flush_dcache_segment_1way(unsigned long start, | 28 | static void __flush_dcache_segment_1way(unsigned long start, |
27 | unsigned long extent); | 29 | unsigned long extent); |
@@ -178,42 +180,45 @@ void __flush_invalidate_region(void *start, int size) | |||
178 | /* | 180 | /* |
179 | * Write back the range of D-cache, and purge the I-cache. | 181 | * Write back the range of D-cache, and purge the I-cache. |
180 | * | 182 | * |
181 | * Called from kernel/module.c:sys_init_module and routine for a.out format. | 183 | * Called from kernel/module.c:sys_init_module and routine for a.out format, |
184 | * signal handler code and kprobes code | ||
182 | */ | 185 | */ |
183 | void flush_icache_range(unsigned long start, unsigned long end) | 186 | void flush_icache_range(unsigned long start, unsigned long end) |
184 | { | 187 | { |
185 | flush_cache_all(); | 188 | int icacheaddr; |
186 | } | 189 | unsigned long flags, v; |
187 | |||
188 | /* | ||
189 | * Write back the D-cache and purge the I-cache for signal trampoline. | ||
190 | * .. which happens to be the same behavior as flush_icache_range(). | ||
191 | * So, we simply flush out a line. | ||
192 | */ | ||
193 | void __uses_jump_to_uncached flush_cache_sigtramp(unsigned long addr) | ||
194 | { | ||
195 | unsigned long v, index; | ||
196 | unsigned long flags; | ||
197 | int i; | 190 | int i; |
198 | 191 | ||
199 | v = addr & ~(L1_CACHE_BYTES-1); | 192 | /* If there are too many pages then just blow the caches */ |
200 | asm volatile("ocbwb %0" | 193 | if (((end - start) >> PAGE_SHIFT) >= MAX_ICACHE_PAGES) { |
201 | : /* no output */ | 194 | flush_cache_all(); |
202 | : "m" (__m(v))); | 195 | } else { |
203 | 196 | /* selectively flush d-cache then invalidate the i-cache */ | |
204 | index = CACHE_IC_ADDRESS_ARRAY | | 197 | /* this is inefficient, so only use for small ranges */ |
205 | (v & boot_cpu_data.icache.entry_mask); | 198 | start &= ~(L1_CACHE_BYTES-1); |
206 | 199 | end += L1_CACHE_BYTES-1; | |
207 | local_irq_save(flags); | 200 | end &= ~(L1_CACHE_BYTES-1); |
208 | jump_to_uncached(); | 201 | |
209 | 202 | local_irq_save(flags); | |
210 | for (i = 0; i < boot_cpu_data.icache.ways; | 203 | jump_to_uncached(); |
211 | i++, index += boot_cpu_data.icache.way_incr) | 204 | |
212 | ctrl_outl(0, index); /* Clear out Valid-bit */ | 205 | for (v = start; v < end; v+=L1_CACHE_BYTES) { |
213 | 206 | asm volatile("ocbwb %0" | |
214 | back_to_cached(); | 207 | : /* no output */ |
215 | wmb(); | 208 | : "m" (__m(v))); |
216 | local_irq_restore(flags); | 209 | |
210 | icacheaddr = CACHE_IC_ADDRESS_ARRAY | ( | ||
211 | v & cpu_data->icache.entry_mask); | ||
212 | |||
213 | for (i = 0; i < cpu_data->icache.ways; | ||
214 | i++, icacheaddr += cpu_data->icache.way_incr) | ||
215 | /* Clear i-cache line valid-bit */ | ||
216 | ctrl_outl(0, icacheaddr); | ||
217 | } | ||
218 | |||
219 | back_to_cached(); | ||
220 | local_irq_restore(flags); | ||
221 | } | ||
217 | } | 222 | } |
218 | 223 | ||
219 | static inline void flush_cache_4096(unsigned long start, | 224 | static inline void flush_cache_4096(unsigned long start, |
diff --git a/arch/sh/mm/consistent.c b/arch/sh/mm/consistent.c index d3c33fc5b1c2..b2ce014401b5 100644 --- a/arch/sh/mm/consistent.c +++ b/arch/sh/mm/consistent.c | |||
@@ -10,6 +10,7 @@ | |||
10 | * for more details. | 10 | * for more details. |
11 | */ | 11 | */ |
12 | #include <linux/mm.h> | 12 | #include <linux/mm.h> |
13 | #include <linux/platform_device.h> | ||
13 | #include <linux/dma-mapping.h> | 14 | #include <linux/dma-mapping.h> |
14 | #include <asm/cacheflush.h> | 15 | #include <asm/cacheflush.h> |
15 | #include <asm/addrspace.h> | 16 | #include <asm/addrspace.h> |
@@ -27,21 +28,10 @@ void *dma_alloc_coherent(struct device *dev, size_t size, | |||
27 | dma_addr_t *dma_handle, gfp_t gfp) | 28 | dma_addr_t *dma_handle, gfp_t gfp) |
28 | { | 29 | { |
29 | void *ret, *ret_nocache; | 30 | void *ret, *ret_nocache; |
30 | struct dma_coherent_mem *mem = dev ? dev->dma_mem : NULL; | ||
31 | int order = get_order(size); | 31 | int order = get_order(size); |
32 | 32 | ||
33 | if (mem) { | 33 | if (dma_alloc_from_coherent(dev, size, dma_handle, &ret)) |
34 | int page = bitmap_find_free_region(mem->bitmap, mem->size, | 34 | return ret; |
35 | order); | ||
36 | if (page >= 0) { | ||
37 | *dma_handle = mem->device_base + (page << PAGE_SHIFT); | ||
38 | ret = mem->virt_base + (page << PAGE_SHIFT); | ||
39 | memset(ret, 0, size); | ||
40 | return ret; | ||
41 | } | ||
42 | if (mem->flags & DMA_MEMORY_EXCLUSIVE) | ||
43 | return NULL; | ||
44 | } | ||
45 | 35 | ||
46 | ret = (void *)__get_free_pages(gfp, order); | 36 | ret = (void *)__get_free_pages(gfp, order); |
47 | if (!ret) | 37 | if (!ret) |
@@ -71,11 +61,7 @@ void dma_free_coherent(struct device *dev, size_t size, | |||
71 | struct dma_coherent_mem *mem = dev ? dev->dma_mem : NULL; | 61 | struct dma_coherent_mem *mem = dev ? dev->dma_mem : NULL; |
72 | int order = get_order(size); | 62 | int order = get_order(size); |
73 | 63 | ||
74 | if (mem && vaddr >= mem->virt_base && vaddr < (mem->virt_base + (mem->size << PAGE_SHIFT))) { | 64 | if (!dma_release_from_coherent(dev, order, vaddr)) { |
75 | int page = (vaddr - mem->virt_base) >> PAGE_SHIFT; | ||
76 | |||
77 | bitmap_release_region(mem->bitmap, page, order); | ||
78 | } else { | ||
79 | WARN_ON(irqs_disabled()); /* for portability */ | 65 | WARN_ON(irqs_disabled()); /* for portability */ |
80 | BUG_ON(mem && mem->flags & DMA_MEMORY_EXCLUSIVE); | 66 | BUG_ON(mem && mem->flags & DMA_MEMORY_EXCLUSIVE); |
81 | free_pages((unsigned long)phys_to_virt(dma_handle), order); | 67 | free_pages((unsigned long)phys_to_virt(dma_handle), order); |
@@ -84,83 +70,6 @@ void dma_free_coherent(struct device *dev, size_t size, | |||
84 | } | 70 | } |
85 | EXPORT_SYMBOL(dma_free_coherent); | 71 | EXPORT_SYMBOL(dma_free_coherent); |
86 | 72 | ||
87 | int dma_declare_coherent_memory(struct device *dev, dma_addr_t bus_addr, | ||
88 | dma_addr_t device_addr, size_t size, int flags) | ||
89 | { | ||
90 | void __iomem *mem_base = NULL; | ||
91 | int pages = size >> PAGE_SHIFT; | ||
92 | int bitmap_size = BITS_TO_LONGS(pages) * sizeof(long); | ||
93 | |||
94 | if ((flags & (DMA_MEMORY_MAP | DMA_MEMORY_IO)) == 0) | ||
95 | goto out; | ||
96 | if (!size) | ||
97 | goto out; | ||
98 | if (dev->dma_mem) | ||
99 | goto out; | ||
100 | |||
101 | /* FIXME: this routine just ignores DMA_MEMORY_INCLUDES_CHILDREN */ | ||
102 | |||
103 | mem_base = ioremap_nocache(bus_addr, size); | ||
104 | if (!mem_base) | ||
105 | goto out; | ||
106 | |||
107 | dev->dma_mem = kmalloc(sizeof(struct dma_coherent_mem), GFP_KERNEL); | ||
108 | if (!dev->dma_mem) | ||
109 | goto out; | ||
110 | dev->dma_mem->bitmap = kzalloc(bitmap_size, GFP_KERNEL); | ||
111 | if (!dev->dma_mem->bitmap) | ||
112 | goto free1_out; | ||
113 | |||
114 | dev->dma_mem->virt_base = mem_base; | ||
115 | dev->dma_mem->device_base = device_addr; | ||
116 | dev->dma_mem->size = pages; | ||
117 | dev->dma_mem->flags = flags; | ||
118 | |||
119 | if (flags & DMA_MEMORY_MAP) | ||
120 | return DMA_MEMORY_MAP; | ||
121 | |||
122 | return DMA_MEMORY_IO; | ||
123 | |||
124 | free1_out: | ||
125 | kfree(dev->dma_mem); | ||
126 | out: | ||
127 | if (mem_base) | ||
128 | iounmap(mem_base); | ||
129 | return 0; | ||
130 | } | ||
131 | EXPORT_SYMBOL(dma_declare_coherent_memory); | ||
132 | |||
133 | void dma_release_declared_memory(struct device *dev) | ||
134 | { | ||
135 | struct dma_coherent_mem *mem = dev->dma_mem; | ||
136 | |||
137 | if (!mem) | ||
138 | return; | ||
139 | dev->dma_mem = NULL; | ||
140 | iounmap(mem->virt_base); | ||
141 | kfree(mem->bitmap); | ||
142 | kfree(mem); | ||
143 | } | ||
144 | EXPORT_SYMBOL(dma_release_declared_memory); | ||
145 | |||
146 | void *dma_mark_declared_memory_occupied(struct device *dev, | ||
147 | dma_addr_t device_addr, size_t size) | ||
148 | { | ||
149 | struct dma_coherent_mem *mem = dev->dma_mem; | ||
150 | int pages = (size + (device_addr & ~PAGE_MASK) + PAGE_SIZE - 1) >> PAGE_SHIFT; | ||
151 | int pos, err; | ||
152 | |||
153 | if (!mem) | ||
154 | return ERR_PTR(-EINVAL); | ||
155 | |||
156 | pos = (device_addr - mem->device_base) >> PAGE_SHIFT; | ||
157 | err = bitmap_allocate_region(mem->bitmap, pos, get_order(pages)); | ||
158 | if (err != 0) | ||
159 | return ERR_PTR(err); | ||
160 | return mem->virt_base + (pos << PAGE_SHIFT); | ||
161 | } | ||
162 | EXPORT_SYMBOL(dma_mark_declared_memory_occupied); | ||
163 | |||
164 | void dma_cache_sync(struct device *dev, void *vaddr, size_t size, | 73 | void dma_cache_sync(struct device *dev, void *vaddr, size_t size, |
165 | enum dma_data_direction direction) | 74 | enum dma_data_direction direction) |
166 | { | 75 | { |
@@ -185,3 +94,32 @@ void dma_cache_sync(struct device *dev, void *vaddr, size_t size, | |||
185 | } | 94 | } |
186 | } | 95 | } |
187 | EXPORT_SYMBOL(dma_cache_sync); | 96 | EXPORT_SYMBOL(dma_cache_sync); |
97 | |||
98 | int platform_resource_setup_memory(struct platform_device *pdev, | ||
99 | char *name, unsigned long memsize) | ||
100 | { | ||
101 | struct resource *r; | ||
102 | dma_addr_t dma_handle; | ||
103 | void *buf; | ||
104 | |||
105 | r = pdev->resource + pdev->num_resources - 1; | ||
106 | if (r->flags) { | ||
107 | pr_warning("%s: unable to find empty space for resource\n", | ||
108 | name); | ||
109 | return -EINVAL; | ||
110 | } | ||
111 | |||
112 | buf = dma_alloc_coherent(NULL, memsize, &dma_handle, GFP_KERNEL); | ||
113 | if (!buf) { | ||
114 | pr_warning("%s: unable to allocate memory\n", name); | ||
115 | return -ENOMEM; | ||
116 | } | ||
117 | |||
118 | memset(buf, 0, memsize); | ||
119 | |||
120 | r->flags = IORESOURCE_MEM; | ||
121 | r->start = dma_handle; | ||
122 | r->end = r->start + memsize - 1; | ||
123 | r->name = name; | ||
124 | return 0; | ||
125 | } | ||
diff --git a/arch/sh/mm/fault_32.c b/arch/sh/mm/fault_32.c index d1fa27594c6e..0c776fdfbdda 100644 --- a/arch/sh/mm/fault_32.c +++ b/arch/sh/mm/fault_32.c | |||
@@ -37,16 +37,12 @@ asmlinkage void __kprobes do_page_fault(struct pt_regs *regs, | |||
37 | int fault; | 37 | int fault; |
38 | siginfo_t info; | 38 | siginfo_t info; |
39 | 39 | ||
40 | trace_hardirqs_on(); | ||
41 | local_irq_enable(); | ||
42 | |||
43 | #ifdef CONFIG_SH_KGDB | 40 | #ifdef CONFIG_SH_KGDB |
44 | if (kgdb_nofault && kgdb_bus_err_hook) | 41 | if (kgdb_nofault && kgdb_bus_err_hook) |
45 | kgdb_bus_err_hook(); | 42 | kgdb_bus_err_hook(); |
46 | #endif | 43 | #endif |
47 | 44 | ||
48 | tsk = current; | 45 | tsk = current; |
49 | mm = tsk->mm; | ||
50 | si_code = SEGV_MAPERR; | 46 | si_code = SEGV_MAPERR; |
51 | 47 | ||
52 | if (unlikely(address >= TASK_SIZE)) { | 48 | if (unlikely(address >= TASK_SIZE)) { |
@@ -88,6 +84,14 @@ asmlinkage void __kprobes do_page_fault(struct pt_regs *regs, | |||
88 | return; | 84 | return; |
89 | } | 85 | } |
90 | 86 | ||
87 | /* Only enable interrupts if they were on before the fault */ | ||
88 | if ((regs->sr & SR_IMASK) != SR_IMASK) { | ||
89 | trace_hardirqs_on(); | ||
90 | local_irq_enable(); | ||
91 | } | ||
92 | |||
93 | mm = tsk->mm; | ||
94 | |||
91 | /* | 95 | /* |
92 | * If we're in an interrupt or have no user | 96 | * If we're in an interrupt or have no user |
93 | * context, we must not take the fault.. | 97 | * context, we must not take the fault.. |
diff --git a/arch/sh/mm/pg-sh4.c b/arch/sh/mm/pg-sh4.c index 8c7a9ca79879..38870e0fc182 100644 --- a/arch/sh/mm/pg-sh4.c +++ b/arch/sh/mm/pg-sh4.c | |||
@@ -111,7 +111,7 @@ EXPORT_SYMBOL(copy_user_highpage); | |||
111 | /* | 111 | /* |
112 | * For SH-4, we have our own implementation for ptep_get_and_clear | 112 | * For SH-4, we have our own implementation for ptep_get_and_clear |
113 | */ | 113 | */ |
114 | inline pte_t ptep_get_and_clear(struct mm_struct *mm, unsigned long addr, pte_t *ptep) | 114 | pte_t ptep_get_and_clear(struct mm_struct *mm, unsigned long addr, pte_t *ptep) |
115 | { | 115 | { |
116 | pte_t pte = *ptep; | 116 | pte_t pte = *ptep; |
117 | 117 | ||
diff --git a/arch/sh/mm/pg-sh7705.c b/arch/sh/mm/pg-sh7705.c index 7f885b7f8aff..eaf25147194c 100644 --- a/arch/sh/mm/pg-sh7705.c +++ b/arch/sh/mm/pg-sh7705.c | |||
@@ -118,7 +118,7 @@ void copy_user_page(void *to, void *from, unsigned long address, struct page *pg | |||
118 | * For SH7705, we have our own implementation for ptep_get_and_clear | 118 | * For SH7705, we have our own implementation for ptep_get_and_clear |
119 | * Copied from pg-sh4.c | 119 | * Copied from pg-sh4.c |
120 | */ | 120 | */ |
121 | inline pte_t ptep_get_and_clear(struct mm_struct *mm, unsigned long addr, pte_t *ptep) | 121 | pte_t ptep_get_and_clear(struct mm_struct *mm, unsigned long addr, pte_t *ptep) |
122 | { | 122 | { |
123 | pte_t pte = *ptep; | 123 | pte_t pte = *ptep; |
124 | 124 | ||
diff --git a/arch/sh/mm/pmb.c b/arch/sh/mm/pmb.c index 46911bcbf17b..cef727669c87 100644 --- a/arch/sh/mm/pmb.c +++ b/arch/sh/mm/pmb.c | |||
@@ -385,7 +385,7 @@ static const struct file_operations pmb_debugfs_fops = { | |||
385 | .open = pmb_debugfs_open, | 385 | .open = pmb_debugfs_open, |
386 | .read = seq_read, | 386 | .read = seq_read, |
387 | .llseek = seq_lseek, | 387 | .llseek = seq_lseek, |
388 | .release = seq_release, | 388 | .release = single_release, |
389 | }; | 389 | }; |
390 | 390 | ||
391 | static int __init pmb_debugfs_init(void) | 391 | static int __init pmb_debugfs_init(void) |
diff --git a/arch/sh/tools/mach-types b/arch/sh/tools/mach-types index 1bba7d36be90..0a11cc08f0a5 100644 --- a/arch/sh/tools/mach-types +++ b/arch/sh/tools/mach-types | |||
@@ -46,3 +46,7 @@ R2D_1 RTS7751R2D_1 | |||
46 | CAYMAN SH_CAYMAN | 46 | CAYMAN SH_CAYMAN |
47 | SDK7780 SH_SDK7780 | 47 | SDK7780 SH_SDK7780 |
48 | MIGOR SH_MIGOR | 48 | MIGOR SH_MIGOR |
49 | RSK7203 SH_RSK7203 | ||
50 | AP325RXA SH_AP325RXA | ||
51 | SH7763RDP SH_SH7763RDP | ||
52 | SH7785LCR SH_SH7785LCR | ||
diff --git a/arch/sparc/Kconfig b/arch/sparc/Kconfig index 375de7c6d082..a214002114ed 100644 --- a/arch/sparc/Kconfig +++ b/arch/sparc/Kconfig | |||
@@ -68,6 +68,7 @@ config SPARC | |||
68 | select HAVE_IDE | 68 | select HAVE_IDE |
69 | select HAVE_OPROFILE | 69 | select HAVE_OPROFILE |
70 | select HAVE_ARCH_KGDB if !SMP | 70 | select HAVE_ARCH_KGDB if !SMP |
71 | select HAVE_ARCH_TRACEHOOK | ||
71 | 72 | ||
72 | # Identify this as a Sparc32 build | 73 | # Identify this as a Sparc32 build |
73 | config SPARC32 | 74 | config SPARC32 |
diff --git a/arch/sparc/include/asm/Kbuild b/arch/sparc/include/asm/Kbuild new file mode 100644 index 000000000000..a5f0ce734ff7 --- /dev/null +++ b/arch/sparc/include/asm/Kbuild | |||
@@ -0,0 +1,45 @@ | |||
1 | # User exported sparc header files | ||
2 | include include/asm-generic/Kbuild.asm | ||
3 | |||
4 | header-y += ipcbuf_32.h | ||
5 | header-y += ipcbuf_64.h | ||
6 | header-y += posix_types_32.h | ||
7 | header-y += posix_types_64.h | ||
8 | header-y += ptrace_32.h | ||
9 | header-y += ptrace_64.h | ||
10 | header-y += sigcontext_32.h | ||
11 | header-y += sigcontext_64.h | ||
12 | header-y += siginfo_32.h | ||
13 | header-y += siginfo_64.h | ||
14 | header-y += signal_32.h | ||
15 | header-y += signal_64.h | ||
16 | header-y += stat_32.h | ||
17 | header-y += stat_64.h | ||
18 | header-y += statfs_32.h | ||
19 | header-y += statfs_64.h | ||
20 | header-y += unistd_32.h | ||
21 | header-y += unistd_64.h | ||
22 | |||
23 | header-y += apc.h | ||
24 | header-y += asi.h | ||
25 | header-y += bpp.h | ||
26 | header-y += display7seg.h | ||
27 | header-y += envctrl.h | ||
28 | header-y += fbio.h | ||
29 | header-y += jsflash.h | ||
30 | header-y += openprom.h | ||
31 | header-y += openprom_32.h | ||
32 | header-y += openprom_64.h | ||
33 | header-y += openpromio.h | ||
34 | header-y += perfctr.h | ||
35 | header-y += psrcompat.h | ||
36 | header-y += psr.h | ||
37 | header-y += pstate.h | ||
38 | header-y += reg.h | ||
39 | header-y += reg_32.h | ||
40 | header-y += reg_64.h | ||
41 | header-y += traps.h | ||
42 | header-y += uctx.h | ||
43 | header-y += utrap.h | ||
44 | header-y += vfc_ioctls.h | ||
45 | header-y += watchdog.h | ||
diff --git a/include/asm-sparc/agp.h b/arch/sparc/include/asm/agp.h index c2456870b05c..c2456870b05c 100644 --- a/include/asm-sparc/agp.h +++ b/arch/sparc/include/asm/agp.h | |||
diff --git a/include/asm-sparc/apb.h b/arch/sparc/include/asm/apb.h index 8f3b57db810f..8f3b57db810f 100644 --- a/include/asm-sparc/apb.h +++ b/arch/sparc/include/asm/apb.h | |||
diff --git a/include/asm-sparc/apc.h b/arch/sparc/include/asm/apc.h index 24e9a7d4d97e..24e9a7d4d97e 100644 --- a/include/asm-sparc/apc.h +++ b/arch/sparc/include/asm/apc.h | |||
diff --git a/include/asm-sparc/asi.h b/arch/sparc/include/asm/asi.h index 74703c5ef985..74703c5ef985 100644 --- a/include/asm-sparc/asi.h +++ b/arch/sparc/include/asm/asi.h | |||
diff --git a/include/asm-sparc/asmmacro.h b/arch/sparc/include/asm/asmmacro.h index a619a4d97aae..a619a4d97aae 100644 --- a/include/asm-sparc/asmmacro.h +++ b/arch/sparc/include/asm/asmmacro.h | |||
diff --git a/include/asm-sparc/atomic.h b/arch/sparc/include/asm/atomic.h index 66d8166ec1d7..8ff83d8cc33f 100644 --- a/include/asm-sparc/atomic.h +++ b/arch/sparc/include/asm/atomic.h | |||
@@ -1,8 +1,8 @@ | |||
1 | #ifndef ___ASM_SPARC_ATOMIC_H | 1 | #ifndef ___ASM_SPARC_ATOMIC_H |
2 | #define ___ASM_SPARC_ATOMIC_H | 2 | #define ___ASM_SPARC_ATOMIC_H |
3 | #if defined(__sparc__) && defined(__arch64__) | 3 | #if defined(__sparc__) && defined(__arch64__) |
4 | #include <asm-sparc/atomic_64.h> | 4 | #include <asm/atomic_64.h> |
5 | #else | 5 | #else |
6 | #include <asm-sparc/atomic_32.h> | 6 | #include <asm/atomic_32.h> |
7 | #endif | 7 | #endif |
8 | #endif | 8 | #endif |
diff --git a/include/asm-sparc/atomic_32.h b/arch/sparc/include/asm/atomic_32.h index 5c944b5a8040..5c944b5a8040 100644 --- a/include/asm-sparc/atomic_32.h +++ b/arch/sparc/include/asm/atomic_32.h | |||
diff --git a/include/asm-sparc/atomic_64.h b/arch/sparc/include/asm/atomic_64.h index 2c71ec4a3b18..2c71ec4a3b18 100644 --- a/include/asm-sparc/atomic_64.h +++ b/arch/sparc/include/asm/atomic_64.h | |||
diff --git a/include/asm-sparc/auxio.h b/arch/sparc/include/asm/auxio.h index 24c6f3c0f577..13dc67f03011 100644 --- a/include/asm-sparc/auxio.h +++ b/arch/sparc/include/asm/auxio.h | |||
@@ -1,8 +1,8 @@ | |||
1 | #ifndef ___ASM_SPARC_AUXIO_H | 1 | #ifndef ___ASM_SPARC_AUXIO_H |
2 | #define ___ASM_SPARC_AUXIO_H | 2 | #define ___ASM_SPARC_AUXIO_H |
3 | #if defined(__sparc__) && defined(__arch64__) | 3 | #if defined(__sparc__) && defined(__arch64__) |
4 | #include <asm-sparc/auxio_64.h> | 4 | #include <asm/auxio_64.h> |
5 | #else | 5 | #else |
6 | #include <asm-sparc/auxio_32.h> | 6 | #include <asm/auxio_32.h> |
7 | #endif | 7 | #endif |
8 | #endif | 8 | #endif |
diff --git a/include/asm-sparc/auxio_32.h b/arch/sparc/include/asm/auxio_32.h index 4db8f23db20f..e03e088be95f 100644 --- a/include/asm-sparc/auxio_32.h +++ b/arch/sparc/include/asm/auxio_32.h | |||
@@ -36,7 +36,7 @@ | |||
36 | * understand the hardware you are querying! | 36 | * understand the hardware you are querying! |
37 | */ | 37 | */ |
38 | extern void set_auxio(unsigned char bits_on, unsigned char bits_off); | 38 | extern void set_auxio(unsigned char bits_on, unsigned char bits_off); |
39 | extern unsigned char get_auxio(void); /* .../asm-sparc/floppy.h */ | 39 | extern unsigned char get_auxio(void); /* .../asm/floppy.h */ |
40 | 40 | ||
41 | /* | 41 | /* |
42 | * The following routines are provided for driver-compatibility | 42 | * The following routines are provided for driver-compatibility |
diff --git a/include/asm-sparc/auxio_64.h b/arch/sparc/include/asm/auxio_64.h index f61cd1e3e395..f61cd1e3e395 100644 --- a/include/asm-sparc/auxio_64.h +++ b/arch/sparc/include/asm/auxio_64.h | |||
diff --git a/include/asm-sparc/auxvec.h b/arch/sparc/include/asm/auxvec.h index ad6f360261f6..ad6f360261f6 100644 --- a/include/asm-sparc/auxvec.h +++ b/arch/sparc/include/asm/auxvec.h | |||
diff --git a/include/asm-sparc/backoff.h b/arch/sparc/include/asm/backoff.h index fa1fdf67e350..fa1fdf67e350 100644 --- a/include/asm-sparc/backoff.h +++ b/arch/sparc/include/asm/backoff.h | |||
diff --git a/include/asm-sparc/bbc.h b/arch/sparc/include/asm/bbc.h index 423a85800aae..423a85800aae 100644 --- a/include/asm-sparc/bbc.h +++ b/arch/sparc/include/asm/bbc.h | |||
diff --git a/include/asm-sparc/bitext.h b/arch/sparc/include/asm/bitext.h index 297b2f2fcb49..297b2f2fcb49 100644 --- a/include/asm-sparc/bitext.h +++ b/arch/sparc/include/asm/bitext.h | |||
diff --git a/include/asm-sparc/bitops.h b/arch/sparc/include/asm/bitops.h index 1a2949d0193f..b1edd94bd64f 100644 --- a/include/asm-sparc/bitops.h +++ b/arch/sparc/include/asm/bitops.h | |||
@@ -1,8 +1,8 @@ | |||
1 | #ifndef ___ASM_SPARC_BITOPS_H | 1 | #ifndef ___ASM_SPARC_BITOPS_H |
2 | #define ___ASM_SPARC_BITOPS_H | 2 | #define ___ASM_SPARC_BITOPS_H |
3 | #if defined(__sparc__) && defined(__arch64__) | 3 | #if defined(__sparc__) && defined(__arch64__) |
4 | #include <asm-sparc/bitops_64.h> | 4 | #include <asm/bitops_64.h> |
5 | #else | 5 | #else |
6 | #include <asm-sparc/bitops_32.h> | 6 | #include <asm/bitops_32.h> |
7 | #endif | 7 | #endif |
8 | #endif | 8 | #endif |
diff --git a/include/asm-sparc/bitops_32.h b/arch/sparc/include/asm/bitops_32.h index 68b98a7e6454..68b98a7e6454 100644 --- a/include/asm-sparc/bitops_32.h +++ b/arch/sparc/include/asm/bitops_32.h | |||
diff --git a/include/asm-sparc/bitops_64.h b/arch/sparc/include/asm/bitops_64.h index bb87b8080220..bb87b8080220 100644 --- a/include/asm-sparc/bitops_64.h +++ b/arch/sparc/include/asm/bitops_64.h | |||
diff --git a/include/asm-sparc/bpp.h b/arch/sparc/include/asm/bpp.h index 31f515e499a7..31f515e499a7 100644 --- a/include/asm-sparc/bpp.h +++ b/arch/sparc/include/asm/bpp.h | |||
diff --git a/include/asm-sparc/btfixup.h b/arch/sparc/include/asm/btfixup.h index 08277e6fb4cd..797722cf69f2 100644 --- a/include/asm-sparc/btfixup.h +++ b/arch/sparc/include/asm/btfixup.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * asm-sparc/btfixup.h: Macros for boot time linking. | 2 | * asm/btfixup.h: Macros for boot time linking. |
3 | * | 3 | * |
4 | * Copyright (C) 1998 Jakub Jelinek (jj@sunsite.mff.cuni.cz) | 4 | * Copyright (C) 1998 Jakub Jelinek (jj@sunsite.mff.cuni.cz) |
5 | */ | 5 | */ |
diff --git a/include/asm-sparc/bug.h b/arch/sparc/include/asm/bug.h index 8a59e5a8c217..8a59e5a8c217 100644 --- a/include/asm-sparc/bug.h +++ b/arch/sparc/include/asm/bug.h | |||
diff --git a/include/asm-sparc/bugs.h b/arch/sparc/include/asm/bugs.h index 2dfc07bc8e54..e179bc12f64a 100644 --- a/include/asm-sparc/bugs.h +++ b/arch/sparc/include/asm/bugs.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* include/asm-sparc/bugs.h: Sparc probes for various bugs. | 1 | /* include/asm/bugs.h: Sparc probes for various bugs. |
2 | * | 2 | * |
3 | * Copyright (C) 1996, 2007 David S. Miller (davem@davemloft.net) | 3 | * Copyright (C) 1996, 2007 David S. Miller (davem@davemloft.net) |
4 | */ | 4 | */ |
diff --git a/include/asm-sparc/byteorder.h b/arch/sparc/include/asm/byteorder.h index bcd83aa351c5..bcd83aa351c5 100644 --- a/include/asm-sparc/byteorder.h +++ b/arch/sparc/include/asm/byteorder.h | |||
diff --git a/include/asm-sparc/cache.h b/arch/sparc/include/asm/cache.h index 41f85ae4bd4a..41f85ae4bd4a 100644 --- a/include/asm-sparc/cache.h +++ b/arch/sparc/include/asm/cache.h | |||
diff --git a/include/asm-sparc/cacheflush.h b/arch/sparc/include/asm/cacheflush.h index 2b6a37957c2d..049168087b19 100644 --- a/include/asm-sparc/cacheflush.h +++ b/arch/sparc/include/asm/cacheflush.h | |||
@@ -1,8 +1,8 @@ | |||
1 | #ifndef ___ASM_SPARC_CACHEFLUSH_H | 1 | #ifndef ___ASM_SPARC_CACHEFLUSH_H |
2 | #define ___ASM_SPARC_CACHEFLUSH_H | 2 | #define ___ASM_SPARC_CACHEFLUSH_H |
3 | #if defined(__sparc__) && defined(__arch64__) | 3 | #if defined(__sparc__) && defined(__arch64__) |
4 | #include <asm-sparc/cacheflush_64.h> | 4 | #include <asm/cacheflush_64.h> |
5 | #else | 5 | #else |
6 | #include <asm-sparc/cacheflush_32.h> | 6 | #include <asm/cacheflush_32.h> |
7 | #endif | 7 | #endif |
8 | #endif | 8 | #endif |
diff --git a/include/asm-sparc/cacheflush_32.h b/arch/sparc/include/asm/cacheflush_32.h index 68ac10910271..68ac10910271 100644 --- a/include/asm-sparc/cacheflush_32.h +++ b/arch/sparc/include/asm/cacheflush_32.h | |||
diff --git a/include/asm-sparc/cacheflush_64.h b/arch/sparc/include/asm/cacheflush_64.h index c43321729b3b..c43321729b3b 100644 --- a/include/asm-sparc/cacheflush_64.h +++ b/arch/sparc/include/asm/cacheflush_64.h | |||
diff --git a/include/asm-sparc/chafsr.h b/arch/sparc/include/asm/chafsr.h index 85c69b38220b..85c69b38220b 100644 --- a/include/asm-sparc/chafsr.h +++ b/arch/sparc/include/asm/chafsr.h | |||
diff --git a/include/asm-sparc/checksum.h b/arch/sparc/include/asm/checksum.h index 4e3553d4f6e1..7ac0d7497bc5 100644 --- a/include/asm-sparc/checksum.h +++ b/arch/sparc/include/asm/checksum.h | |||
@@ -1,8 +1,8 @@ | |||
1 | #ifndef ___ASM_SPARC_CHECKSUM_H | 1 | #ifndef ___ASM_SPARC_CHECKSUM_H |
2 | #define ___ASM_SPARC_CHECKSUM_H | 2 | #define ___ASM_SPARC_CHECKSUM_H |
3 | #if defined(__sparc__) && defined(__arch64__) | 3 | #if defined(__sparc__) && defined(__arch64__) |
4 | #include <asm-sparc/checksum_64.h> | 4 | #include <asm/checksum_64.h> |
5 | #else | 5 | #else |
6 | #include <asm-sparc/checksum_32.h> | 6 | #include <asm/checksum_32.h> |
7 | #endif | 7 | #endif |
8 | #endif | 8 | #endif |
diff --git a/include/asm-sparc/checksum_32.h b/arch/sparc/include/asm/checksum_32.h index bdbda1453aa9..bdbda1453aa9 100644 --- a/include/asm-sparc/checksum_32.h +++ b/arch/sparc/include/asm/checksum_32.h | |||
diff --git a/include/asm-sparc/checksum_64.h b/arch/sparc/include/asm/checksum_64.h index 019b9615e43c..019b9615e43c 100644 --- a/include/asm-sparc/checksum_64.h +++ b/arch/sparc/include/asm/checksum_64.h | |||
diff --git a/include/asm-sparc/chmctrl.h b/arch/sparc/include/asm/chmctrl.h index 859b4a4b0d30..859b4a4b0d30 100644 --- a/include/asm-sparc/chmctrl.h +++ b/arch/sparc/include/asm/chmctrl.h | |||
diff --git a/include/asm-sparc/clock.h b/arch/sparc/include/asm/clock.h index 2cf99dadec56..2cf99dadec56 100644 --- a/include/asm-sparc/clock.h +++ b/arch/sparc/include/asm/clock.h | |||
diff --git a/include/asm-sparc/cmt.h b/arch/sparc/include/asm/cmt.h index 870db5928577..870db5928577 100644 --- a/include/asm-sparc/cmt.h +++ b/arch/sparc/include/asm/cmt.h | |||
diff --git a/include/asm-sparc/compat.h b/arch/sparc/include/asm/compat.h index f260b58f5ce9..f260b58f5ce9 100644 --- a/include/asm-sparc/compat.h +++ b/arch/sparc/include/asm/compat.h | |||
diff --git a/include/asm-sparc/compat_signal.h b/arch/sparc/include/asm/compat_signal.h index b759eab9b51c..b759eab9b51c 100644 --- a/include/asm-sparc/compat_signal.h +++ b/arch/sparc/include/asm/compat_signal.h | |||
diff --git a/include/asm-sparc/contregs.h b/arch/sparc/include/asm/contregs.h index 48fa8a4ef357..48fa8a4ef357 100644 --- a/include/asm-sparc/contregs.h +++ b/arch/sparc/include/asm/contregs.h | |||
diff --git a/include/asm-sparc/cpudata.h b/arch/sparc/include/asm/cpudata.h index b76fac0c8d8f..b5976de7cacd 100644 --- a/include/asm-sparc/cpudata.h +++ b/arch/sparc/include/asm/cpudata.h | |||
@@ -1,8 +1,8 @@ | |||
1 | #ifndef ___ASM_SPARC_CPUDATA_H | 1 | #ifndef ___ASM_SPARC_CPUDATA_H |
2 | #define ___ASM_SPARC_CPUDATA_H | 2 | #define ___ASM_SPARC_CPUDATA_H |
3 | #if defined(__sparc__) && defined(__arch64__) | 3 | #if defined(__sparc__) && defined(__arch64__) |
4 | #include <asm-sparc/cpudata_64.h> | 4 | #include <asm/cpudata_64.h> |
5 | #else | 5 | #else |
6 | #include <asm-sparc/cpudata_32.h> | 6 | #include <asm/cpudata_32.h> |
7 | #endif | 7 | #endif |
8 | #endif | 8 | #endif |
diff --git a/include/asm-sparc/cpudata_32.h b/arch/sparc/include/asm/cpudata_32.h index a2c4d51d36c4..31d48a0e32c7 100644 --- a/include/asm-sparc/cpudata_32.h +++ b/arch/sparc/include/asm/cpudata_32.h | |||
@@ -2,7 +2,7 @@ | |||
2 | * | 2 | * |
3 | * Copyright (C) 2004 Keith M Wesolowski (wesolows@foobazco.org) | 3 | * Copyright (C) 2004 Keith M Wesolowski (wesolows@foobazco.org) |
4 | * | 4 | * |
5 | * Based on include/asm-sparc64/cpudata.h and Linux 2.4 smp.h | 5 | * Based on include/asm/cpudata.h and Linux 2.4 smp.h |
6 | * both (C) David S. Miller. | 6 | * both (C) David S. Miller. |
7 | */ | 7 | */ |
8 | 8 | ||
diff --git a/include/asm-sparc/cpudata_64.h b/arch/sparc/include/asm/cpudata_64.h index 532975ecfe10..532975ecfe10 100644 --- a/include/asm-sparc/cpudata_64.h +++ b/arch/sparc/include/asm/cpudata_64.h | |||
diff --git a/include/asm-sparc/cputime.h b/arch/sparc/include/asm/cputime.h index 1a642b81e019..1a642b81e019 100644 --- a/include/asm-sparc/cputime.h +++ b/arch/sparc/include/asm/cputime.h | |||
diff --git a/include/asm-sparc/current.h b/arch/sparc/include/asm/current.h index 8a1d9d6643b0..10a0df55a574 100644 --- a/include/asm-sparc/current.h +++ b/arch/sparc/include/asm/current.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* include/asm-sparc/current.h | 1 | /* include/asm/current.h |
2 | * | 2 | * |
3 | * Copyright (C) 1999 IBM Deutschland Entwicklung GmbH, IBM Corporation | 3 | * Copyright (C) 1999 IBM Deutschland Entwicklung GmbH, IBM Corporation |
4 | * Copyright (C) 2002 Pete Zaitcev (zaitcev@yahoo.com) | 4 | * Copyright (C) 2002 Pete Zaitcev (zaitcev@yahoo.com) |
diff --git a/include/asm-sparc/cypress.h b/arch/sparc/include/asm/cypress.h index 95e9772ea394..95e9772ea394 100644 --- a/include/asm-sparc/cypress.h +++ b/arch/sparc/include/asm/cypress.h | |||
diff --git a/include/asm-sparc/dcr.h b/arch/sparc/include/asm/dcr.h index 620c9ba642e9..620c9ba642e9 100644 --- a/include/asm-sparc/dcr.h +++ b/arch/sparc/include/asm/dcr.h | |||
diff --git a/include/asm-sparc/dcu.h b/arch/sparc/include/asm/dcu.h index 0f704e106a1b..0f704e106a1b 100644 --- a/include/asm-sparc/dcu.h +++ b/arch/sparc/include/asm/dcu.h | |||
diff --git a/include/asm-sparc/delay.h b/arch/sparc/include/asm/delay.h index 6210a3ce9751..467caa2a97a0 100644 --- a/include/asm-sparc/delay.h +++ b/arch/sparc/include/asm/delay.h | |||
@@ -1,8 +1,8 @@ | |||
1 | #ifndef ___ASM_SPARC_DELAY_H | 1 | #ifndef ___ASM_SPARC_DELAY_H |
2 | #define ___ASM_SPARC_DELAY_H | 2 | #define ___ASM_SPARC_DELAY_H |
3 | #if defined(__sparc__) && defined(__arch64__) | 3 | #if defined(__sparc__) && defined(__arch64__) |
4 | #include <asm-sparc/delay_64.h> | 4 | #include <asm/delay_64.h> |
5 | #else | 5 | #else |
6 | #include <asm-sparc/delay_32.h> | 6 | #include <asm/delay_32.h> |
7 | #endif | 7 | #endif |
8 | #endif | 8 | #endif |
diff --git a/include/asm-sparc/delay_32.h b/arch/sparc/include/asm/delay_32.h index bc9aba2bead6..bc9aba2bead6 100644 --- a/include/asm-sparc/delay_32.h +++ b/arch/sparc/include/asm/delay_32.h | |||
diff --git a/include/asm-sparc/delay_64.h b/arch/sparc/include/asm/delay_64.h index a77aa622d762..a77aa622d762 100644 --- a/include/asm-sparc/delay_64.h +++ b/arch/sparc/include/asm/delay_64.h | |||
diff --git a/include/asm-sparc/device.h b/arch/sparc/include/asm/device.h index 19790eb99cc6..19790eb99cc6 100644 --- a/include/asm-sparc/device.h +++ b/arch/sparc/include/asm/device.h | |||
diff --git a/include/asm-sparc/display7seg.h b/arch/sparc/include/asm/display7seg.h index 86d4a901df24..86d4a901df24 100644 --- a/include/asm-sparc/display7seg.h +++ b/arch/sparc/include/asm/display7seg.h | |||
diff --git a/include/asm-sparc/div64.h b/arch/sparc/include/asm/div64.h index 6cd978cefb28..6cd978cefb28 100644 --- a/include/asm-sparc/div64.h +++ b/arch/sparc/include/asm/div64.h | |||
diff --git a/include/asm-sparc/dma-mapping.h b/arch/sparc/include/asm/dma-mapping.h index 7483504259ce..0f4150e26619 100644 --- a/include/asm-sparc/dma-mapping.h +++ b/arch/sparc/include/asm/dma-mapping.h | |||
@@ -1,8 +1,8 @@ | |||
1 | #ifndef ___ASM_SPARC_DMA_MAPPING_H | 1 | #ifndef ___ASM_SPARC_DMA_MAPPING_H |
2 | #define ___ASM_SPARC_DMA_MAPPING_H | 2 | #define ___ASM_SPARC_DMA_MAPPING_H |
3 | #if defined(__sparc__) && defined(__arch64__) | 3 | #if defined(__sparc__) && defined(__arch64__) |
4 | #include <asm-sparc/dma-mapping_64.h> | 4 | #include <asm/dma-mapping_64.h> |
5 | #else | 5 | #else |
6 | #include <asm-sparc/dma-mapping_32.h> | 6 | #include <asm/dma-mapping_32.h> |
7 | #endif | 7 | #endif |
8 | #endif | 8 | #endif |
diff --git a/include/asm-sparc/dma-mapping_32.h b/arch/sparc/include/asm/dma-mapping_32.h index f3a641e6b2c8..f3a641e6b2c8 100644 --- a/include/asm-sparc/dma-mapping_32.h +++ b/arch/sparc/include/asm/dma-mapping_32.h | |||
diff --git a/include/asm-sparc/dma-mapping_64.h b/arch/sparc/include/asm/dma-mapping_64.h index bfa64f9702d5..bfa64f9702d5 100644 --- a/include/asm-sparc/dma-mapping_64.h +++ b/arch/sparc/include/asm/dma-mapping_64.h | |||
diff --git a/include/asm-sparc/dma.h b/arch/sparc/include/asm/dma.h index 8cc69bfaae2a..aa1d90ac04c5 100644 --- a/include/asm-sparc/dma.h +++ b/arch/sparc/include/asm/dma.h | |||
@@ -1,8 +1,8 @@ | |||
1 | #ifndef ___ASM_SPARC_DMA_H | 1 | #ifndef ___ASM_SPARC_DMA_H |
2 | #define ___ASM_SPARC_DMA_H | 2 | #define ___ASM_SPARC_DMA_H |
3 | #if defined(__sparc__) && defined(__arch64__) | 3 | #if defined(__sparc__) && defined(__arch64__) |
4 | #include <asm-sparc/dma_64.h> | 4 | #include <asm/dma_64.h> |
5 | #else | 5 | #else |
6 | #include <asm-sparc/dma_32.h> | 6 | #include <asm/dma_32.h> |
7 | #endif | 7 | #endif |
8 | #endif | 8 | #endif |
diff --git a/include/asm-sparc/dma_32.h b/arch/sparc/include/asm/dma_32.h index 959d6c8a71ae..cf7189c0079b 100644 --- a/include/asm-sparc/dma_32.h +++ b/arch/sparc/include/asm/dma_32.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* include/asm-sparc/dma.h | 1 | /* include/asm/dma.h |
2 | * | 2 | * |
3 | * Copyright 1995 (C) David S. Miller (davem@davemloft.net) | 3 | * Copyright 1995 (C) David S. Miller (davem@davemloft.net) |
4 | */ | 4 | */ |
diff --git a/include/asm-sparc/dma_64.h b/arch/sparc/include/asm/dma_64.h index 9d4c024bd3b3..46a8aecffc02 100644 --- a/include/asm-sparc/dma_64.h +++ b/arch/sparc/include/asm/dma_64.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * include/asm-sparc64/dma.h | 2 | * include/asm/dma.h |
3 | * | 3 | * |
4 | * Copyright 1996 (C) David S. Miller (davem@caip.rutgers.edu) | 4 | * Copyright 1996 (C) David S. Miller (davem@caip.rutgers.edu) |
5 | */ | 5 | */ |
diff --git a/include/asm-sparc/ebus.h b/arch/sparc/include/asm/ebus.h index a5da2d00cd18..83a6d16c22e6 100644 --- a/include/asm-sparc/ebus.h +++ b/arch/sparc/include/asm/ebus.h | |||
@@ -1,8 +1,8 @@ | |||
1 | #ifndef ___ASM_SPARC_EBUS_H | 1 | #ifndef ___ASM_SPARC_EBUS_H |
2 | #define ___ASM_SPARC_EBUS_H | 2 | #define ___ASM_SPARC_EBUS_H |
3 | #if defined(__sparc__) && defined(__arch64__) | 3 | #if defined(__sparc__) && defined(__arch64__) |
4 | #include <asm-sparc/ebus_64.h> | 4 | #include <asm/ebus_64.h> |
5 | #else | 5 | #else |
6 | #include <asm-sparc/ebus_32.h> | 6 | #include <asm/ebus_32.h> |
7 | #endif | 7 | #endif |
8 | #endif | 8 | #endif |
diff --git a/include/asm-sparc/ebus_32.h b/arch/sparc/include/asm/ebus_32.h index 29cb7dfc6b79..29cb7dfc6b79 100644 --- a/include/asm-sparc/ebus_32.h +++ b/arch/sparc/include/asm/ebus_32.h | |||
diff --git a/include/asm-sparc/ebus_64.h b/arch/sparc/include/asm/ebus_64.h index fcc62b97ced5..fcc62b97ced5 100644 --- a/include/asm-sparc/ebus_64.h +++ b/arch/sparc/include/asm/ebus_64.h | |||
diff --git a/include/asm-sparc/ecc.h b/arch/sparc/include/asm/ecc.h index ccb84b66fef1..ccb84b66fef1 100644 --- a/include/asm-sparc/ecc.h +++ b/arch/sparc/include/asm/ecc.h | |||
diff --git a/include/asm-sparc/eeprom.h b/arch/sparc/include/asm/eeprom.h index e17beeceb405..e17beeceb405 100644 --- a/include/asm-sparc/eeprom.h +++ b/arch/sparc/include/asm/eeprom.h | |||
diff --git a/include/asm-sparc/elf.h b/arch/sparc/include/asm/elf.h index f035c45d7b5e..0a2816c50b07 100644 --- a/include/asm-sparc/elf.h +++ b/arch/sparc/include/asm/elf.h | |||
@@ -1,8 +1,8 @@ | |||
1 | #ifndef ___ASM_SPARC_ELF_H | 1 | #ifndef ___ASM_SPARC_ELF_H |
2 | #define ___ASM_SPARC_ELF_H | 2 | #define ___ASM_SPARC_ELF_H |
3 | #if defined(__sparc__) && defined(__arch64__) | 3 | #if defined(__sparc__) && defined(__arch64__) |
4 | #include <asm-sparc/elf_64.h> | 4 | #include <asm/elf_64.h> |
5 | #else | 5 | #else |
6 | #include <asm-sparc/elf_32.h> | 6 | #include <asm/elf_32.h> |
7 | #endif | 7 | #endif |
8 | #endif | 8 | #endif |
diff --git a/include/asm-sparc/elf_32.h b/arch/sparc/include/asm/elf_32.h index d043f80bc2fd..d043f80bc2fd 100644 --- a/include/asm-sparc/elf_32.h +++ b/arch/sparc/include/asm/elf_32.h | |||
diff --git a/include/asm-sparc/elf_64.h b/arch/sparc/include/asm/elf_64.h index 0818a1308f4e..0818a1308f4e 100644 --- a/include/asm-sparc/elf_64.h +++ b/arch/sparc/include/asm/elf_64.h | |||
diff --git a/include/asm-sparc/emergency-restart.h b/arch/sparc/include/asm/emergency-restart.h index 108d8c48e42e..108d8c48e42e 100644 --- a/include/asm-sparc/emergency-restart.h +++ b/arch/sparc/include/asm/emergency-restart.h | |||
diff --git a/include/asm-sparc/envctrl.h b/arch/sparc/include/asm/envctrl.h index 624fa7e2da8e..624fa7e2da8e 100644 --- a/include/asm-sparc/envctrl.h +++ b/arch/sparc/include/asm/envctrl.h | |||
diff --git a/include/asm-sparc/errno.h b/arch/sparc/include/asm/errno.h index a9ef172977de..a9ef172977de 100644 --- a/include/asm-sparc/errno.h +++ b/arch/sparc/include/asm/errno.h | |||
diff --git a/include/asm-sparc/estate.h b/arch/sparc/include/asm/estate.h index 520c08560d1b..520c08560d1b 100644 --- a/include/asm-sparc/estate.h +++ b/arch/sparc/include/asm/estate.h | |||
diff --git a/include/asm-sparc/fb.h b/arch/sparc/include/asm/fb.h index b83e44729655..b83e44729655 100644 --- a/include/asm-sparc/fb.h +++ b/arch/sparc/include/asm/fb.h | |||
diff --git a/include/asm-sparc/fbio.h b/arch/sparc/include/asm/fbio.h index b9215a0907d3..b9215a0907d3 100644 --- a/include/asm-sparc/fbio.h +++ b/arch/sparc/include/asm/fbio.h | |||
diff --git a/include/asm-sparc/fcntl.h b/arch/sparc/include/asm/fcntl.h index d4d9c9d852c3..d4d9c9d852c3 100644 --- a/include/asm-sparc/fcntl.h +++ b/arch/sparc/include/asm/fcntl.h | |||
diff --git a/include/asm-sparc/fhc.h b/arch/sparc/include/asm/fhc.h index 788cbc46a116..788cbc46a116 100644 --- a/include/asm-sparc/fhc.h +++ b/arch/sparc/include/asm/fhc.h | |||
diff --git a/include/asm-sparc/fixmap.h b/arch/sparc/include/asm/fixmap.h index f18fc0755adf..f18fc0755adf 100644 --- a/include/asm-sparc/fixmap.h +++ b/arch/sparc/include/asm/fixmap.h | |||
diff --git a/include/asm-sparc/floppy.h b/arch/sparc/include/asm/floppy.h index 6c628ba15a8d..faebd335b600 100644 --- a/include/asm-sparc/floppy.h +++ b/arch/sparc/include/asm/floppy.h | |||
@@ -1,8 +1,8 @@ | |||
1 | #ifndef ___ASM_SPARC_FLOPPY_H | 1 | #ifndef ___ASM_SPARC_FLOPPY_H |
2 | #define ___ASM_SPARC_FLOPPY_H | 2 | #define ___ASM_SPARC_FLOPPY_H |
3 | #if defined(__sparc__) && defined(__arch64__) | 3 | #if defined(__sparc__) && defined(__arch64__) |
4 | #include <asm-sparc/floppy_64.h> | 4 | #include <asm/floppy_64.h> |
5 | #else | 5 | #else |
6 | #include <asm-sparc/floppy_32.h> | 6 | #include <asm/floppy_32.h> |
7 | #endif | 7 | #endif |
8 | #endif | 8 | #endif |
diff --git a/include/asm-sparc/floppy_32.h b/arch/sparc/include/asm/floppy_32.h index acdd06eafe59..ae3f00bf22ff 100644 --- a/include/asm-sparc/floppy_32.h +++ b/arch/sparc/include/asm/floppy_32.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* asm-sparc/floppy.h: Sparc specific parts of the Floppy driver. | 1 | /* asm/floppy.h: Sparc specific parts of the Floppy driver. |
2 | * | 2 | * |
3 | * Copyright (C) 1995 David S. Miller (davem@davemloft.net) | 3 | * Copyright (C) 1995 David S. Miller (davem@davemloft.net) |
4 | */ | 4 | */ |
diff --git a/include/asm-sparc/floppy_64.h b/arch/sparc/include/asm/floppy_64.h index c39db1060bc7..c39db1060bc7 100644 --- a/include/asm-sparc/floppy_64.h +++ b/arch/sparc/include/asm/floppy_64.h | |||
diff --git a/include/asm-sparc/fpumacro.h b/arch/sparc/include/asm/fpumacro.h index cc463fec806f..cc463fec806f 100644 --- a/include/asm-sparc/fpumacro.h +++ b/arch/sparc/include/asm/fpumacro.h | |||
diff --git a/include/asm-sparc64/ftrace.h b/arch/sparc/include/asm/ftrace.h index d27716cd38c1..d27716cd38c1 100644 --- a/include/asm-sparc64/ftrace.h +++ b/arch/sparc/include/asm/ftrace.h | |||
diff --git a/include/asm-sparc/futex.h b/arch/sparc/include/asm/futex.h index c6a9f038c531..736335f36713 100644 --- a/include/asm-sparc/futex.h +++ b/arch/sparc/include/asm/futex.h | |||
@@ -1,8 +1,8 @@ | |||
1 | #ifndef ___ASM_SPARC_FUTEX_H | 1 | #ifndef ___ASM_SPARC_FUTEX_H |
2 | #define ___ASM_SPARC_FUTEX_H | 2 | #define ___ASM_SPARC_FUTEX_H |
3 | #if defined(__sparc__) && defined(__arch64__) | 3 | #if defined(__sparc__) && defined(__arch64__) |
4 | #include <asm-sparc/futex_64.h> | 4 | #include <asm/futex_64.h> |
5 | #else | 5 | #else |
6 | #include <asm-sparc/futex_32.h> | 6 | #include <asm/futex_32.h> |
7 | #endif | 7 | #endif |
8 | #endif | 8 | #endif |
diff --git a/include/asm-sparc/futex_32.h b/arch/sparc/include/asm/futex_32.h index 6a332a9f099c..6a332a9f099c 100644 --- a/include/asm-sparc/futex_32.h +++ b/arch/sparc/include/asm/futex_32.h | |||
diff --git a/include/asm-sparc/futex_64.h b/arch/sparc/include/asm/futex_64.h index d8378935ae90..d8378935ae90 100644 --- a/include/asm-sparc/futex_64.h +++ b/arch/sparc/include/asm/futex_64.h | |||
diff --git a/include/asm-sparc/hardirq.h b/arch/sparc/include/asm/hardirq.h index 156478773100..44d4e2345148 100644 --- a/include/asm-sparc/hardirq.h +++ b/arch/sparc/include/asm/hardirq.h | |||
@@ -1,8 +1,8 @@ | |||
1 | #ifndef ___ASM_SPARC_HARDIRQ_H | 1 | #ifndef ___ASM_SPARC_HARDIRQ_H |
2 | #define ___ASM_SPARC_HARDIRQ_H | 2 | #define ___ASM_SPARC_HARDIRQ_H |
3 | #if defined(__sparc__) && defined(__arch64__) | 3 | #if defined(__sparc__) && defined(__arch64__) |
4 | #include <asm-sparc/hardirq_64.h> | 4 | #include <asm/hardirq_64.h> |
5 | #else | 5 | #else |
6 | #include <asm-sparc/hardirq_32.h> | 6 | #include <asm/hardirq_32.h> |
7 | #endif | 7 | #endif |
8 | #endif | 8 | #endif |
diff --git a/include/asm-sparc/hardirq_32.h b/arch/sparc/include/asm/hardirq_32.h index 4f63ed8df551..4f63ed8df551 100644 --- a/include/asm-sparc/hardirq_32.h +++ b/arch/sparc/include/asm/hardirq_32.h | |||
diff --git a/include/asm-sparc/hardirq_64.h b/arch/sparc/include/asm/hardirq_64.h index 7c29fd1a87aa..7c29fd1a87aa 100644 --- a/include/asm-sparc/hardirq_64.h +++ b/arch/sparc/include/asm/hardirq_64.h | |||
diff --git a/include/asm-sparc/head.h b/arch/sparc/include/asm/head.h index 14652abdea31..be8f03f3e731 100644 --- a/include/asm-sparc/head.h +++ b/arch/sparc/include/asm/head.h | |||
@@ -1,8 +1,8 @@ | |||
1 | #ifndef ___ASM_SPARC_HEAD_H | 1 | #ifndef ___ASM_SPARC_HEAD_H |
2 | #define ___ASM_SPARC_HEAD_H | 2 | #define ___ASM_SPARC_HEAD_H |
3 | #if defined(__sparc__) && defined(__arch64__) | 3 | #if defined(__sparc__) && defined(__arch64__) |
4 | #include <asm-sparc/head_64.h> | 4 | #include <asm/head_64.h> |
5 | #else | 5 | #else |
6 | #include <asm-sparc/head_32.h> | 6 | #include <asm/head_32.h> |
7 | #endif | 7 | #endif |
8 | #endif | 8 | #endif |
diff --git a/include/asm-sparc/head_32.h b/arch/sparc/include/asm/head_32.h index 7c35491a8b53..7c35491a8b53 100644 --- a/include/asm-sparc/head_32.h +++ b/arch/sparc/include/asm/head_32.h | |||
diff --git a/include/asm-sparc/head_64.h b/arch/sparc/include/asm/head_64.h index 10e9dabc4c41..10e9dabc4c41 100644 --- a/include/asm-sparc/head_64.h +++ b/arch/sparc/include/asm/head_64.h | |||
diff --git a/include/asm-sparc/highmem.h b/arch/sparc/include/asm/highmem.h index 3de42e776274..3de42e776274 100644 --- a/include/asm-sparc/highmem.h +++ b/arch/sparc/include/asm/highmem.h | |||
diff --git a/include/asm-sparc/hugetlb.h b/arch/sparc/include/asm/hugetlb.h index 177061064ee6..177061064ee6 100644 --- a/include/asm-sparc/hugetlb.h +++ b/arch/sparc/include/asm/hugetlb.h | |||
diff --git a/include/asm-sparc/hvtramp.h b/arch/sparc/include/asm/hvtramp.h index b2b9b947b3a4..b2b9b947b3a4 100644 --- a/include/asm-sparc/hvtramp.h +++ b/arch/sparc/include/asm/hvtramp.h | |||
diff --git a/include/asm-sparc/hw_irq.h b/arch/sparc/include/asm/hw_irq.h index 8d30a7694be2..8d30a7694be2 100644 --- a/include/asm-sparc/hw_irq.h +++ b/arch/sparc/include/asm/hw_irq.h | |||
diff --git a/include/asm-sparc/hypervisor.h b/arch/sparc/include/asm/hypervisor.h index 109ae24ba242..109ae24ba242 100644 --- a/include/asm-sparc/hypervisor.h +++ b/arch/sparc/include/asm/hypervisor.h | |||
diff --git a/include/asm-sparc/ide.h b/arch/sparc/include/asm/ide.h index b7af3d658239..b7af3d658239 100644 --- a/include/asm-sparc/ide.h +++ b/arch/sparc/include/asm/ide.h | |||
diff --git a/include/asm-sparc/idprom.h b/arch/sparc/include/asm/idprom.h index 6976aa2439c6..6976aa2439c6 100644 --- a/include/asm-sparc/idprom.h +++ b/arch/sparc/include/asm/idprom.h | |||
diff --git a/include/asm-sparc/intr_queue.h b/arch/sparc/include/asm/intr_queue.h index 206077dedc2a..206077dedc2a 100644 --- a/include/asm-sparc/intr_queue.h +++ b/arch/sparc/include/asm/intr_queue.h | |||
diff --git a/include/asm-sparc/io-unit.h b/arch/sparc/include/asm/io-unit.h index 96823b47fd45..96823b47fd45 100644 --- a/include/asm-sparc/io-unit.h +++ b/arch/sparc/include/asm/io-unit.h | |||
diff --git a/include/asm-sparc/io.h b/arch/sparc/include/asm/io.h index fc9024d3dfc3..a34b2994937a 100644 --- a/include/asm-sparc/io.h +++ b/arch/sparc/include/asm/io.h | |||
@@ -1,8 +1,8 @@ | |||
1 | #ifndef ___ASM_SPARC_IO_H | 1 | #ifndef ___ASM_SPARC_IO_H |
2 | #define ___ASM_SPARC_IO_H | 2 | #define ___ASM_SPARC_IO_H |
3 | #if defined(__sparc__) && defined(__arch64__) | 3 | #if defined(__sparc__) && defined(__arch64__) |
4 | #include <asm-sparc/io_64.h> | 4 | #include <asm/io_64.h> |
5 | #else | 5 | #else |
6 | #include <asm-sparc/io_32.h> | 6 | #include <asm/io_32.h> |
7 | #endif | 7 | #endif |
8 | #endif | 8 | #endif |
diff --git a/include/asm-sparc/io_32.h b/arch/sparc/include/asm/io_32.h index 10d7da450070..10d7da450070 100644 --- a/include/asm-sparc/io_32.h +++ b/arch/sparc/include/asm/io_32.h | |||
diff --git a/include/asm-sparc/io_64.h b/arch/sparc/include/asm/io_64.h index 0bff078ffdd0..0bff078ffdd0 100644 --- a/include/asm-sparc/io_64.h +++ b/arch/sparc/include/asm/io_64.h | |||
diff --git a/include/asm-sparc/ioctl.h b/arch/sparc/include/asm/ioctl.h index 7d6bd51321b9..7d6bd51321b9 100644 --- a/include/asm-sparc/ioctl.h +++ b/arch/sparc/include/asm/ioctl.h | |||
diff --git a/include/asm-sparc/ioctls.h b/arch/sparc/include/asm/ioctls.h index 1fe6855c5c18..1fe6855c5c18 100644 --- a/include/asm-sparc/ioctls.h +++ b/arch/sparc/include/asm/ioctls.h | |||
diff --git a/include/asm-sparc/iommu.h b/arch/sparc/include/asm/iommu.h index 91b072b0d7a0..e650965b4a8d 100644 --- a/include/asm-sparc/iommu.h +++ b/arch/sparc/include/asm/iommu.h | |||
@@ -1,8 +1,8 @@ | |||
1 | #ifndef ___ASM_SPARC_IOMMU_H | 1 | #ifndef ___ASM_SPARC_IOMMU_H |
2 | #define ___ASM_SPARC_IOMMU_H | 2 | #define ___ASM_SPARC_IOMMU_H |
3 | #if defined(__sparc__) && defined(__arch64__) | 3 | #if defined(__sparc__) && defined(__arch64__) |
4 | #include <asm-sparc/iommu_64.h> | 4 | #include <asm/iommu_64.h> |
5 | #else | 5 | #else |
6 | #include <asm-sparc/iommu_32.h> | 6 | #include <asm/iommu_32.h> |
7 | #endif | 7 | #endif |
8 | #endif | 8 | #endif |
diff --git a/include/asm-sparc/iommu_32.h b/arch/sparc/include/asm/iommu_32.h index 70c589c05a10..70c589c05a10 100644 --- a/include/asm-sparc/iommu_32.h +++ b/arch/sparc/include/asm/iommu_32.h | |||
diff --git a/include/asm-sparc/iommu_64.h b/arch/sparc/include/asm/iommu_64.h index d7b9afcba08b..d7b9afcba08b 100644 --- a/include/asm-sparc/iommu_64.h +++ b/arch/sparc/include/asm/iommu_64.h | |||
diff --git a/include/asm-sparc/ipcbuf.h b/arch/sparc/include/asm/ipcbuf.h index 037605d986e2..17d6ef7b23a4 100644 --- a/include/asm-sparc/ipcbuf.h +++ b/arch/sparc/include/asm/ipcbuf.h | |||
@@ -1,8 +1,8 @@ | |||
1 | #ifndef ___ASM_SPARC_IPCBUF_H | 1 | #ifndef ___ASM_SPARC_IPCBUF_H |
2 | #define ___ASM_SPARC_IPCBUF_H | 2 | #define ___ASM_SPARC_IPCBUF_H |
3 | #if defined(__sparc__) && defined(__arch64__) | 3 | #if defined(__sparc__) && defined(__arch64__) |
4 | #include <asm-sparc/ipcbuf_64.h> | 4 | #include <asm/ipcbuf_64.h> |
5 | #else | 5 | #else |
6 | #include <asm-sparc/ipcbuf_32.h> | 6 | #include <asm/ipcbuf_32.h> |
7 | #endif | 7 | #endif |
8 | #endif | 8 | #endif |
diff --git a/include/asm-sparc/ipcbuf_32.h b/arch/sparc/include/asm/ipcbuf_32.h index 6387209518f2..6387209518f2 100644 --- a/include/asm-sparc/ipcbuf_32.h +++ b/arch/sparc/include/asm/ipcbuf_32.h | |||
diff --git a/include/asm-sparc/ipcbuf_64.h b/arch/sparc/include/asm/ipcbuf_64.h index a44b855b98db..a44b855b98db 100644 --- a/include/asm-sparc/ipcbuf_64.h +++ b/arch/sparc/include/asm/ipcbuf_64.h | |||
diff --git a/include/asm-sparc/irq.h b/arch/sparc/include/asm/irq.h index 7af6bb4aa09c..3b44a6a14074 100644 --- a/include/asm-sparc/irq.h +++ b/arch/sparc/include/asm/irq.h | |||
@@ -1,8 +1,8 @@ | |||
1 | #ifndef ___ASM_SPARC_IRQ_H | 1 | #ifndef ___ASM_SPARC_IRQ_H |
2 | #define ___ASM_SPARC_IRQ_H | 2 | #define ___ASM_SPARC_IRQ_H |
3 | #if defined(__sparc__) && defined(__arch64__) | 3 | #if defined(__sparc__) && defined(__arch64__) |
4 | #include <asm-sparc/irq_64.h> | 4 | #include <asm/irq_64.h> |
5 | #else | 5 | #else |
6 | #include <asm-sparc/irq_32.h> | 6 | #include <asm/irq_32.h> |
7 | #endif | 7 | #endif |
8 | #endif | 8 | #endif |
diff --git a/include/asm-sparc/irq_32.h b/arch/sparc/include/asm/irq_32.h index fe205cc444b8..fe205cc444b8 100644 --- a/include/asm-sparc/irq_32.h +++ b/arch/sparc/include/asm/irq_32.h | |||
diff --git a/include/asm-sparc/irq_64.h b/arch/sparc/include/asm/irq_64.h index 0bb9bf531745..0bb9bf531745 100644 --- a/include/asm-sparc/irq_64.h +++ b/arch/sparc/include/asm/irq_64.h | |||
diff --git a/include/asm-sparc/irq_regs.h b/arch/sparc/include/asm/irq_regs.h index 3dd9c0b70270..3dd9c0b70270 100644 --- a/include/asm-sparc/irq_regs.h +++ b/arch/sparc/include/asm/irq_regs.h | |||
diff --git a/include/asm-sparc/irqflags.h b/arch/sparc/include/asm/irqflags.h index c6402b187e23..1e138632bd3f 100644 --- a/include/asm-sparc/irqflags.h +++ b/arch/sparc/include/asm/irqflags.h | |||
@@ -1,8 +1,8 @@ | |||
1 | #ifndef ___ASM_SPARC_IRQFLAGS_H | 1 | #ifndef ___ASM_SPARC_IRQFLAGS_H |
2 | #define ___ASM_SPARC_IRQFLAGS_H | 2 | #define ___ASM_SPARC_IRQFLAGS_H |
3 | #if defined(__sparc__) && defined(__arch64__) | 3 | #if defined(__sparc__) && defined(__arch64__) |
4 | #include <asm-sparc/irqflags_64.h> | 4 | #include <asm/irqflags_64.h> |
5 | #else | 5 | #else |
6 | #include <asm-sparc/irqflags_32.h> | 6 | #include <asm/irqflags_32.h> |
7 | #endif | 7 | #endif |
8 | #endif | 8 | #endif |
diff --git a/include/asm-sparc/irqflags_32.h b/arch/sparc/include/asm/irqflags_32.h index db398fb32826..0fca9d97d44f 100644 --- a/include/asm-sparc/irqflags_32.h +++ b/arch/sparc/include/asm/irqflags_32.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * include/asm-sparc/irqflags.h | 2 | * include/asm/irqflags.h |
3 | * | 3 | * |
4 | * IRQ flags handling | 4 | * IRQ flags handling |
5 | * | 5 | * |
diff --git a/include/asm-sparc/irqflags_64.h b/arch/sparc/include/asm/irqflags_64.h index 024fc54d0682..bb42e59162aa 100644 --- a/include/asm-sparc/irqflags_64.h +++ b/arch/sparc/include/asm/irqflags_64.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * include/asm-sparc64/irqflags.h | 2 | * include/asm/irqflags.h |
3 | * | 3 | * |
4 | * IRQ flags handling | 4 | * IRQ flags handling |
5 | * | 5 | * |
diff --git a/include/asm-sparc/jsflash.h b/arch/sparc/include/asm/jsflash.h index 3457f29bd73b..3457f29bd73b 100644 --- a/include/asm-sparc/jsflash.h +++ b/arch/sparc/include/asm/jsflash.h | |||
diff --git a/include/asm-sparc/kdebug.h b/arch/sparc/include/asm/kdebug.h index fe07d00d0534..8d12581ca386 100644 --- a/include/asm-sparc/kdebug.h +++ b/arch/sparc/include/asm/kdebug.h | |||
@@ -1,8 +1,8 @@ | |||
1 | #ifndef ___ASM_SPARC_KDEBUG_H | 1 | #ifndef ___ASM_SPARC_KDEBUG_H |
2 | #define ___ASM_SPARC_KDEBUG_H | 2 | #define ___ASM_SPARC_KDEBUG_H |
3 | #if defined(__sparc__) && defined(__arch64__) | 3 | #if defined(__sparc__) && defined(__arch64__) |
4 | #include <asm-sparc/kdebug_64.h> | 4 | #include <asm/kdebug_64.h> |
5 | #else | 5 | #else |
6 | #include <asm-sparc/kdebug_32.h> | 6 | #include <asm/kdebug_32.h> |
7 | #endif | 7 | #endif |
8 | #endif | 8 | #endif |
diff --git a/include/asm-sparc/kdebug_32.h b/arch/sparc/include/asm/kdebug_32.h index f69fe7d84b3c..f69fe7d84b3c 100644 --- a/include/asm-sparc/kdebug_32.h +++ b/arch/sparc/include/asm/kdebug_32.h | |||
diff --git a/include/asm-sparc/kdebug_64.h b/arch/sparc/include/asm/kdebug_64.h index f905b773235a..f905b773235a 100644 --- a/include/asm-sparc/kdebug_64.h +++ b/arch/sparc/include/asm/kdebug_64.h | |||
diff --git a/include/asm-sparc/kgdb.h b/arch/sparc/include/asm/kgdb.h index b6ef301d05bf..b6ef301d05bf 100644 --- a/include/asm-sparc/kgdb.h +++ b/arch/sparc/include/asm/kgdb.h | |||
diff --git a/include/asm-sparc/kmap_types.h b/arch/sparc/include/asm/kmap_types.h index 602f5e034f7a..602f5e034f7a 100644 --- a/include/asm-sparc/kmap_types.h +++ b/arch/sparc/include/asm/kmap_types.h | |||
diff --git a/include/asm-sparc/kprobes.h b/arch/sparc/include/asm/kprobes.h index 5879d71afdaa..5879d71afdaa 100644 --- a/include/asm-sparc/kprobes.h +++ b/arch/sparc/include/asm/kprobes.h | |||
diff --git a/include/asm-sparc/ldc.h b/arch/sparc/include/asm/ldc.h index bdb524a7b814..bdb524a7b814 100644 --- a/include/asm-sparc/ldc.h +++ b/arch/sparc/include/asm/ldc.h | |||
diff --git a/include/asm-sparc/linkage.h b/arch/sparc/include/asm/linkage.h index 291c2d01c44f..291c2d01c44f 100644 --- a/include/asm-sparc/linkage.h +++ b/arch/sparc/include/asm/linkage.h | |||
diff --git a/include/asm-sparc/lmb.h b/arch/sparc/include/asm/lmb.h index 6a352cbcf520..6a352cbcf520 100644 --- a/include/asm-sparc/lmb.h +++ b/arch/sparc/include/asm/lmb.h | |||
diff --git a/include/asm-sparc/local.h b/arch/sparc/include/asm/local.h index bc80815a435c..bc80815a435c 100644 --- a/include/asm-sparc/local.h +++ b/arch/sparc/include/asm/local.h | |||
diff --git a/include/asm-sparc/lsu.h b/arch/sparc/include/asm/lsu.h index 7190f8de90a0..7190f8de90a0 100644 --- a/include/asm-sparc/lsu.h +++ b/arch/sparc/include/asm/lsu.h | |||
diff --git a/include/asm-sparc/machines.h b/arch/sparc/include/asm/machines.h index c28c2f248794..c28c2f248794 100644 --- a/include/asm-sparc/machines.h +++ b/arch/sparc/include/asm/machines.h | |||
diff --git a/include/asm-sparc/mbus.h b/arch/sparc/include/asm/mbus.h index 69f07a022ee6..69f07a022ee6 100644 --- a/include/asm-sparc/mbus.h +++ b/arch/sparc/include/asm/mbus.h | |||
diff --git a/include/asm-sparc/mc146818rtc.h b/arch/sparc/include/asm/mc146818rtc.h index 9ab65c21e9e4..67ed9e3a0235 100644 --- a/include/asm-sparc/mc146818rtc.h +++ b/arch/sparc/include/asm/mc146818rtc.h | |||
@@ -1,8 +1,8 @@ | |||
1 | #ifndef ___ASM_SPARC_MC146818RTC_H | 1 | #ifndef ___ASM_SPARC_MC146818RTC_H |
2 | #define ___ASM_SPARC_MC146818RTC_H | 2 | #define ___ASM_SPARC_MC146818RTC_H |
3 | #if defined(__sparc__) && defined(__arch64__) | 3 | #if defined(__sparc__) && defined(__arch64__) |
4 | #include <asm-sparc/mc146818rtc_64.h> | 4 | #include <asm/mc146818rtc_64.h> |
5 | #else | 5 | #else |
6 | #include <asm-sparc/mc146818rtc_32.h> | 6 | #include <asm/mc146818rtc_32.h> |
7 | #endif | 7 | #endif |
8 | #endif | 8 | #endif |
diff --git a/include/asm-sparc/mc146818rtc_32.h b/arch/sparc/include/asm/mc146818rtc_32.h index fa7eac926582..fa7eac926582 100644 --- a/include/asm-sparc/mc146818rtc_32.h +++ b/arch/sparc/include/asm/mc146818rtc_32.h | |||
diff --git a/include/asm-sparc/mc146818rtc_64.h b/arch/sparc/include/asm/mc146818rtc_64.h index e9c0fcc25c6f..e9c0fcc25c6f 100644 --- a/include/asm-sparc/mc146818rtc_64.h +++ b/arch/sparc/include/asm/mc146818rtc_64.h | |||
diff --git a/include/asm-sparc/mdesc.h b/arch/sparc/include/asm/mdesc.h index 1acc7272e537..1acc7272e537 100644 --- a/include/asm-sparc/mdesc.h +++ b/arch/sparc/include/asm/mdesc.h | |||
diff --git a/include/asm-sparc/memreg.h b/arch/sparc/include/asm/memreg.h index 845ad2b39183..845ad2b39183 100644 --- a/include/asm-sparc/memreg.h +++ b/arch/sparc/include/asm/memreg.h | |||
diff --git a/include/asm-sparc/mman.h b/arch/sparc/include/asm/mman.h index fdfbbf0a4736..fdfbbf0a4736 100644 --- a/include/asm-sparc/mman.h +++ b/arch/sparc/include/asm/mman.h | |||
diff --git a/include/asm-sparc/mmu.h b/arch/sparc/include/asm/mmu.h index ee66bf6dcbd6..88fa313887db 100644 --- a/include/asm-sparc/mmu.h +++ b/arch/sparc/include/asm/mmu.h | |||
@@ -1,8 +1,8 @@ | |||
1 | #ifndef ___ASM_SPARC_MMU_H | 1 | #ifndef ___ASM_SPARC_MMU_H |
2 | #define ___ASM_SPARC_MMU_H | 2 | #define ___ASM_SPARC_MMU_H |
3 | #if defined(__sparc__) && defined(__arch64__) | 3 | #if defined(__sparc__) && defined(__arch64__) |
4 | #include <asm-sparc/mmu_64.h> | 4 | #include <asm/mmu_64.h> |
5 | #else | 5 | #else |
6 | #include <asm-sparc/mmu_32.h> | 6 | #include <asm/mmu_32.h> |
7 | #endif | 7 | #endif |
8 | #endif | 8 | #endif |
diff --git a/include/asm-sparc/mmu_32.h b/arch/sparc/include/asm/mmu_32.h index ccd36d26615a..ccd36d26615a 100644 --- a/include/asm-sparc/mmu_32.h +++ b/arch/sparc/include/asm/mmu_32.h | |||
diff --git a/include/asm-sparc/mmu_64.h b/arch/sparc/include/asm/mmu_64.h index 9067dc500535..9067dc500535 100644 --- a/include/asm-sparc/mmu_64.h +++ b/arch/sparc/include/asm/mmu_64.h | |||
diff --git a/include/asm-sparc/mmu_context.h b/arch/sparc/include/asm/mmu_context.h index e14efb9532ff..5531346c64f9 100644 --- a/include/asm-sparc/mmu_context.h +++ b/arch/sparc/include/asm/mmu_context.h | |||
@@ -1,8 +1,8 @@ | |||
1 | #ifndef ___ASM_SPARC_MMU_CONTEXT_H | 1 | #ifndef ___ASM_SPARC_MMU_CONTEXT_H |
2 | #define ___ASM_SPARC_MMU_CONTEXT_H | 2 | #define ___ASM_SPARC_MMU_CONTEXT_H |
3 | #if defined(__sparc__) && defined(__arch64__) | 3 | #if defined(__sparc__) && defined(__arch64__) |
4 | #include <asm-sparc/mmu_context_64.h> | 4 | #include <asm/mmu_context_64.h> |
5 | #else | 5 | #else |
6 | #include <asm-sparc/mmu_context_32.h> | 6 | #include <asm/mmu_context_32.h> |
7 | #endif | 7 | #endif |
8 | #endif | 8 | #endif |
diff --git a/include/asm-sparc/mmu_context_32.h b/arch/sparc/include/asm/mmu_context_32.h index 671a997b9e69..671a997b9e69 100644 --- a/include/asm-sparc/mmu_context_32.h +++ b/arch/sparc/include/asm/mmu_context_32.h | |||
diff --git a/include/asm-sparc/mmu_context_64.h b/arch/sparc/include/asm/mmu_context_64.h index 5693ab482606..5693ab482606 100644 --- a/include/asm-sparc/mmu_context_64.h +++ b/arch/sparc/include/asm/mmu_context_64.h | |||
diff --git a/include/asm-sparc/mmzone.h b/arch/sparc/include/asm/mmzone.h index ebf5986c12ed..ebf5986c12ed 100644 --- a/include/asm-sparc/mmzone.h +++ b/arch/sparc/include/asm/mmzone.h | |||
diff --git a/include/asm-sparc/module.h b/arch/sparc/include/asm/module.h index 516138fe681a..e82cf9a3e60e 100644 --- a/include/asm-sparc/module.h +++ b/arch/sparc/include/asm/module.h | |||
@@ -1,8 +1,8 @@ | |||
1 | #ifndef ___ASM_SPARC_MODULE_H | 1 | #ifndef ___ASM_SPARC_MODULE_H |
2 | #define ___ASM_SPARC_MODULE_H | 2 | #define ___ASM_SPARC_MODULE_H |
3 | #if defined(__sparc__) && defined(__arch64__) | 3 | #if defined(__sparc__) && defined(__arch64__) |
4 | #include <asm-sparc/module_64.h> | 4 | #include <asm/module_64.h> |
5 | #else | 5 | #else |
6 | #include <asm-sparc/module_32.h> | 6 | #include <asm/module_32.h> |
7 | #endif | 7 | #endif |
8 | #endif | 8 | #endif |
diff --git a/include/asm-sparc/module_32.h b/arch/sparc/include/asm/module_32.h index cbd9e67b0c0b..cbd9e67b0c0b 100644 --- a/include/asm-sparc/module_32.h +++ b/arch/sparc/include/asm/module_32.h | |||
diff --git a/include/asm-sparc/module_64.h b/arch/sparc/include/asm/module_64.h index 3d77ba465783..3d77ba465783 100644 --- a/include/asm-sparc/module_64.h +++ b/arch/sparc/include/asm/module_64.h | |||
diff --git a/include/asm-sparc/mostek.h b/arch/sparc/include/asm/mostek.h index 5b9f7fec7ee7..433be3e0a69b 100644 --- a/include/asm-sparc/mostek.h +++ b/arch/sparc/include/asm/mostek.h | |||
@@ -1,8 +1,8 @@ | |||
1 | #ifndef ___ASM_SPARC_MOSTEK_H | 1 | #ifndef ___ASM_SPARC_MOSTEK_H |
2 | #define ___ASM_SPARC_MOSTEK_H | 2 | #define ___ASM_SPARC_MOSTEK_H |
3 | #if defined(__sparc__) && defined(__arch64__) | 3 | #if defined(__sparc__) && defined(__arch64__) |
4 | #include <asm-sparc/mostek_64.h> | 4 | #include <asm/mostek_64.h> |
5 | #else | 5 | #else |
6 | #include <asm-sparc/mostek_32.h> | 6 | #include <asm/mostek_32.h> |
7 | #endif | 7 | #endif |
8 | #endif | 8 | #endif |
diff --git a/include/asm-sparc/mostek_32.h b/arch/sparc/include/asm/mostek_32.h index a99590c4c507..a99590c4c507 100644 --- a/include/asm-sparc/mostek_32.h +++ b/arch/sparc/include/asm/mostek_32.h | |||
diff --git a/include/asm-sparc/mostek_64.h b/arch/sparc/include/asm/mostek_64.h index c5652de2ace2..c5652de2ace2 100644 --- a/include/asm-sparc/mostek_64.h +++ b/arch/sparc/include/asm/mostek_64.h | |||
diff --git a/include/asm-sparc/mpmbox.h b/arch/sparc/include/asm/mpmbox.h index f8423039b242..f8423039b242 100644 --- a/include/asm-sparc/mpmbox.h +++ b/arch/sparc/include/asm/mpmbox.h | |||
diff --git a/include/asm-sparc/msgbuf.h b/arch/sparc/include/asm/msgbuf.h index efc7cbe9788f..efc7cbe9788f 100644 --- a/include/asm-sparc/msgbuf.h +++ b/arch/sparc/include/asm/msgbuf.h | |||
diff --git a/include/asm-sparc/msi.h b/arch/sparc/include/asm/msi.h index 724ca5667052..724ca5667052 100644 --- a/include/asm-sparc/msi.h +++ b/arch/sparc/include/asm/msi.h | |||
diff --git a/include/asm-sparc/mutex.h b/arch/sparc/include/asm/mutex.h index 458c1f7fbc18..458c1f7fbc18 100644 --- a/include/asm-sparc/mutex.h +++ b/arch/sparc/include/asm/mutex.h | |||
diff --git a/include/asm-sparc/mxcc.h b/arch/sparc/include/asm/mxcc.h index c0517bd05bde..c0517bd05bde 100644 --- a/include/asm-sparc/mxcc.h +++ b/arch/sparc/include/asm/mxcc.h | |||
diff --git a/include/asm-sparc/ns87303.h b/arch/sparc/include/asm/ns87303.h index 686defe6aaa0..686defe6aaa0 100644 --- a/include/asm-sparc/ns87303.h +++ b/arch/sparc/include/asm/ns87303.h | |||
diff --git a/include/asm-sparc/obio.h b/arch/sparc/include/asm/obio.h index 1a7544ceb574..1a7544ceb574 100644 --- a/include/asm-sparc/obio.h +++ b/arch/sparc/include/asm/obio.h | |||
diff --git a/include/asm-sparc/of_device.h b/arch/sparc/include/asm/of_device.h index e5f5aedc2293..e5f5aedc2293 100644 --- a/include/asm-sparc/of_device.h +++ b/arch/sparc/include/asm/of_device.h | |||
diff --git a/include/asm-sparc/of_platform.h b/arch/sparc/include/asm/of_platform.h index 851eb84d737e..aa699775ffba 100644 --- a/include/asm-sparc/of_platform.h +++ b/arch/sparc/include/asm/of_platform.h | |||
@@ -1,8 +1,8 @@ | |||
1 | #ifndef ___ASM_SPARC_OF_PLATFORM_H | 1 | #ifndef ___ASM_SPARC_OF_PLATFORM_H |
2 | #define ___ASM_SPARC_OF_PLATFORM_H | 2 | #define ___ASM_SPARC_OF_PLATFORM_H |
3 | #if defined(__sparc__) && defined(__arch64__) | 3 | #if defined(__sparc__) && defined(__arch64__) |
4 | #include <asm-sparc/of_platform_64.h> | 4 | #include <asm/of_platform_64.h> |
5 | #else | 5 | #else |
6 | #include <asm-sparc/of_platform_32.h> | 6 | #include <asm/of_platform_32.h> |
7 | #endif | 7 | #endif |
8 | #endif | 8 | #endif |
diff --git a/include/asm-sparc/of_platform_32.h b/arch/sparc/include/asm/of_platform_32.h index 38334351c36b..723f7c9b7411 100644 --- a/include/asm-sparc/of_platform_32.h +++ b/arch/sparc/include/asm/of_platform_32.h | |||
@@ -3,7 +3,7 @@ | |||
3 | /* | 3 | /* |
4 | * Copyright (C) 2006 Benjamin Herrenschmidt, IBM Corp. | 4 | * Copyright (C) 2006 Benjamin Herrenschmidt, IBM Corp. |
5 | * <benh@kernel.crashing.org> | 5 | * <benh@kernel.crashing.org> |
6 | * Modified for Sparc by merging parts of asm-sparc/of_device.h | 6 | * Modified for Sparc by merging parts of asm/of_device.h |
7 | * by Stephen Rothwell | 7 | * by Stephen Rothwell |
8 | * | 8 | * |
9 | * This program is free software; you can redistribute it and/or | 9 | * This program is free software; you can redistribute it and/or |
diff --git a/include/asm-sparc/of_platform_64.h b/arch/sparc/include/asm/of_platform_64.h index 78aa032b674c..4f66a5f6342d 100644 --- a/include/asm-sparc/of_platform_64.h +++ b/arch/sparc/include/asm/of_platform_64.h | |||
@@ -3,7 +3,7 @@ | |||
3 | /* | 3 | /* |
4 | * Copyright (C) 2006 Benjamin Herrenschmidt, IBM Corp. | 4 | * Copyright (C) 2006 Benjamin Herrenschmidt, IBM Corp. |
5 | * <benh@kernel.crashing.org> | 5 | * <benh@kernel.crashing.org> |
6 | * Modified for Sparc by merging parts of asm-sparc/of_device.h | 6 | * Modified for Sparc by merging parts of asm/of_device.h |
7 | * by Stephen Rothwell | 7 | * by Stephen Rothwell |
8 | * | 8 | * |
9 | * This program is free software; you can redistribute it and/or | 9 | * This program is free software; you can redistribute it and/or |
diff --git a/include/asm-sparc/openprom.h b/arch/sparc/include/asm/openprom.h index 8c349f061994..aaeae905ed3f 100644 --- a/include/asm-sparc/openprom.h +++ b/arch/sparc/include/asm/openprom.h | |||
@@ -1,8 +1,8 @@ | |||
1 | #ifndef ___ASM_SPARC_OPENPROM_H | 1 | #ifndef ___ASM_SPARC_OPENPROM_H |
2 | #define ___ASM_SPARC_OPENPROM_H | 2 | #define ___ASM_SPARC_OPENPROM_H |
3 | #if defined(__sparc__) && defined(__arch64__) | 3 | #if defined(__sparc__) && defined(__arch64__) |
4 | #include <asm-sparc/openprom_64.h> | 4 | #include <asm/openprom_64.h> |
5 | #else | 5 | #else |
6 | #include <asm-sparc/openprom_32.h> | 6 | #include <asm/openprom_32.h> |
7 | #endif | 7 | #endif |
8 | #endif | 8 | #endif |
diff --git a/include/asm-sparc/openprom_32.h b/arch/sparc/include/asm/openprom_32.h index 8b1649f29ed9..8b1649f29ed9 100644 --- a/include/asm-sparc/openprom_32.h +++ b/arch/sparc/include/asm/openprom_32.h | |||
diff --git a/include/asm-sparc/openprom_64.h b/arch/sparc/include/asm/openprom_64.h index b69e4a8c9170..b69e4a8c9170 100644 --- a/include/asm-sparc/openprom_64.h +++ b/arch/sparc/include/asm/openprom_64.h | |||
diff --git a/include/asm-sparc/openpromio.h b/arch/sparc/include/asm/openpromio.h index 917fb8e9c633..917fb8e9c633 100644 --- a/include/asm-sparc/openpromio.h +++ b/arch/sparc/include/asm/openpromio.h | |||
diff --git a/include/asm-sparc/oplib.h b/arch/sparc/include/asm/oplib.h index e88d7c04a292..72e04e13a6b4 100644 --- a/include/asm-sparc/oplib.h +++ b/arch/sparc/include/asm/oplib.h | |||
@@ -1,8 +1,8 @@ | |||
1 | #ifndef ___ASM_SPARC_OPLIB_H | 1 | #ifndef ___ASM_SPARC_OPLIB_H |
2 | #define ___ASM_SPARC_OPLIB_H | 2 | #define ___ASM_SPARC_OPLIB_H |
3 | #if defined(__sparc__) && defined(__arch64__) | 3 | #if defined(__sparc__) && defined(__arch64__) |
4 | #include <asm-sparc/oplib_64.h> | 4 | #include <asm/oplib_64.h> |
5 | #else | 5 | #else |
6 | #include <asm-sparc/oplib_32.h> | 6 | #include <asm/oplib_32.h> |
7 | #endif | 7 | #endif |
8 | #endif | 8 | #endif |
diff --git a/include/asm-sparc/oplib_32.h b/arch/sparc/include/asm/oplib_32.h index b2631da259e0..b2631da259e0 100644 --- a/include/asm-sparc/oplib_32.h +++ b/arch/sparc/include/asm/oplib_32.h | |||
diff --git a/include/asm-sparc/oplib_64.h b/arch/sparc/include/asm/oplib_64.h index 6d2c2ca98039..6d2c2ca98039 100644 --- a/include/asm-sparc/oplib_64.h +++ b/arch/sparc/include/asm/oplib_64.h | |||
diff --git a/include/asm-sparc/page.h b/arch/sparc/include/asm/page.h index f32f49fcf75c..f21de0349025 100644 --- a/include/asm-sparc/page.h +++ b/arch/sparc/include/asm/page.h | |||
@@ -1,8 +1,8 @@ | |||
1 | #ifndef ___ASM_SPARC_PAGE_H | 1 | #ifndef ___ASM_SPARC_PAGE_H |
2 | #define ___ASM_SPARC_PAGE_H | 2 | #define ___ASM_SPARC_PAGE_H |
3 | #if defined(__sparc__) && defined(__arch64__) | 3 | #if defined(__sparc__) && defined(__arch64__) |
4 | #include <asm-sparc/page_64.h> | 4 | #include <asm/page_64.h> |
5 | #else | 5 | #else |
6 | #include <asm-sparc/page_32.h> | 6 | #include <asm/page_32.h> |
7 | #endif | 7 | #endif |
8 | #endif | 8 | #endif |
diff --git a/include/asm-sparc/page_32.h b/arch/sparc/include/asm/page_32.h index cf5fb70ca1c1..cf5fb70ca1c1 100644 --- a/include/asm-sparc/page_32.h +++ b/arch/sparc/include/asm/page_32.h | |||
diff --git a/include/asm-sparc/page_64.h b/arch/sparc/include/asm/page_64.h index b579b910ef51..b579b910ef51 100644 --- a/include/asm-sparc/page_64.h +++ b/arch/sparc/include/asm/page_64.h | |||
diff --git a/include/asm-sparc/param.h b/arch/sparc/include/asm/param.h index 9836d9a3cb9a..9836d9a3cb9a 100644 --- a/include/asm-sparc/param.h +++ b/arch/sparc/include/asm/param.h | |||
diff --git a/include/asm-sparc/parport.h b/arch/sparc/include/asm/parport.h index 7818b2523b8d..7818b2523b8d 100644 --- a/include/asm-sparc/parport.h +++ b/arch/sparc/include/asm/parport.h | |||
diff --git a/include/asm-sparc/pbm.h b/arch/sparc/include/asm/pbm.h index 458a4916d14d..458a4916d14d 100644 --- a/include/asm-sparc/pbm.h +++ b/arch/sparc/include/asm/pbm.h | |||
diff --git a/include/asm-sparc/pci.h b/arch/sparc/include/asm/pci.h index b807d52a4809..6e14fd179335 100644 --- a/include/asm-sparc/pci.h +++ b/arch/sparc/include/asm/pci.h | |||
@@ -1,8 +1,8 @@ | |||
1 | #ifndef ___ASM_SPARC_PCI_H | 1 | #ifndef ___ASM_SPARC_PCI_H |
2 | #define ___ASM_SPARC_PCI_H | 2 | #define ___ASM_SPARC_PCI_H |
3 | #if defined(__sparc__) && defined(__arch64__) | 3 | #if defined(__sparc__) && defined(__arch64__) |
4 | #include <asm-sparc/pci_64.h> | 4 | #include <asm/pci_64.h> |
5 | #else | 5 | #else |
6 | #include <asm-sparc/pci_32.h> | 6 | #include <asm/pci_32.h> |
7 | #endif | 7 | #endif |
8 | #endif | 8 | #endif |
diff --git a/include/asm-sparc/pci_32.h b/arch/sparc/include/asm/pci_32.h index 0ee949d220c0..0ee949d220c0 100644 --- a/include/asm-sparc/pci_32.h +++ b/arch/sparc/include/asm/pci_32.h | |||
diff --git a/include/asm-sparc/pci_64.h b/arch/sparc/include/asm/pci_64.h index 4f79a54948f6..4f79a54948f6 100644 --- a/include/asm-sparc/pci_64.h +++ b/arch/sparc/include/asm/pci_64.h | |||
diff --git a/include/asm-sparc/pcic.h b/arch/sparc/include/asm/pcic.h index f20ef562b265..f20ef562b265 100644 --- a/include/asm-sparc/pcic.h +++ b/arch/sparc/include/asm/pcic.h | |||
diff --git a/include/asm-sparc/percpu.h b/arch/sparc/include/asm/percpu.h index d98ed6cf2e36..bfb1d19ff1bf 100644 --- a/include/asm-sparc/percpu.h +++ b/arch/sparc/include/asm/percpu.h | |||
@@ -1,8 +1,8 @@ | |||
1 | #ifndef ___ASM_SPARC_PERCPU_H | 1 | #ifndef ___ASM_SPARC_PERCPU_H |
2 | #define ___ASM_SPARC_PERCPU_H | 2 | #define ___ASM_SPARC_PERCPU_H |
3 | #if defined(__sparc__) && defined(__arch64__) | 3 | #if defined(__sparc__) && defined(__arch64__) |
4 | #include <asm-sparc/percpu_64.h> | 4 | #include <asm/percpu_64.h> |
5 | #else | 5 | #else |
6 | #include <asm-sparc/percpu_32.h> | 6 | #include <asm/percpu_32.h> |
7 | #endif | 7 | #endif |
8 | #endif | 8 | #endif |
diff --git a/include/asm-sparc/percpu_32.h b/arch/sparc/include/asm/percpu_32.h index 06066a7aaec3..06066a7aaec3 100644 --- a/include/asm-sparc/percpu_32.h +++ b/arch/sparc/include/asm/percpu_32.h | |||
diff --git a/include/asm-sparc/percpu_64.h b/arch/sparc/include/asm/percpu_64.h index bee64593023e..bee64593023e 100644 --- a/include/asm-sparc/percpu_64.h +++ b/arch/sparc/include/asm/percpu_64.h | |||
diff --git a/include/asm-sparc/perfctr.h b/arch/sparc/include/asm/perfctr.h index 836873002b75..836873002b75 100644 --- a/include/asm-sparc/perfctr.h +++ b/arch/sparc/include/asm/perfctr.h | |||
diff --git a/include/asm-sparc/pgalloc.h b/arch/sparc/include/asm/pgalloc.h index 7fa02b53d392..b6db1f7cdcab 100644 --- a/include/asm-sparc/pgalloc.h +++ b/arch/sparc/include/asm/pgalloc.h | |||
@@ -1,8 +1,8 @@ | |||
1 | #ifndef ___ASM_SPARC_PGALLOC_H | 1 | #ifndef ___ASM_SPARC_PGALLOC_H |
2 | #define ___ASM_SPARC_PGALLOC_H | 2 | #define ___ASM_SPARC_PGALLOC_H |
3 | #if defined(__sparc__) && defined(__arch64__) | 3 | #if defined(__sparc__) && defined(__arch64__) |
4 | #include <asm-sparc/pgalloc_64.h> | 4 | #include <asm/pgalloc_64.h> |
5 | #else | 5 | #else |
6 | #include <asm-sparc/pgalloc_32.h> | 6 | #include <asm/pgalloc_32.h> |
7 | #endif | 7 | #endif |
8 | #endif | 8 | #endif |
diff --git a/include/asm-sparc/pgalloc_32.h b/arch/sparc/include/asm/pgalloc_32.h index 681582d26969..681582d26969 100644 --- a/include/asm-sparc/pgalloc_32.h +++ b/arch/sparc/include/asm/pgalloc_32.h | |||
diff --git a/include/asm-sparc/pgalloc_64.h b/arch/sparc/include/asm/pgalloc_64.h index 5bdfa2c6e400..5bdfa2c6e400 100644 --- a/include/asm-sparc/pgalloc_64.h +++ b/arch/sparc/include/asm/pgalloc_64.h | |||
diff --git a/include/asm-sparc/pgtable.h b/arch/sparc/include/asm/pgtable.h index 63cdef53bc52..59ba6f620732 100644 --- a/include/asm-sparc/pgtable.h +++ b/arch/sparc/include/asm/pgtable.h | |||
@@ -1,8 +1,8 @@ | |||
1 | #ifndef ___ASM_SPARC_PGTABLE_H | 1 | #ifndef ___ASM_SPARC_PGTABLE_H |
2 | #define ___ASM_SPARC_PGTABLE_H | 2 | #define ___ASM_SPARC_PGTABLE_H |
3 | #if defined(__sparc__) && defined(__arch64__) | 3 | #if defined(__sparc__) && defined(__arch64__) |
4 | #include <asm-sparc/pgtable_64.h> | 4 | #include <asm/pgtable_64.h> |
5 | #else | 5 | #else |
6 | #include <asm-sparc/pgtable_32.h> | 6 | #include <asm/pgtable_32.h> |
7 | #endif | 7 | #endif |
8 | #endif | 8 | #endif |
diff --git a/include/asm-sparc/pgtable_32.h b/arch/sparc/include/asm/pgtable_32.h index 781bd4694a1c..08237fda8874 100644 --- a/include/asm-sparc/pgtable_32.h +++ b/arch/sparc/include/asm/pgtable_32.h | |||
@@ -1,7 +1,7 @@ | |||
1 | #ifndef _SPARC_PGTABLE_H | 1 | #ifndef _SPARC_PGTABLE_H |
2 | #define _SPARC_PGTABLE_H | 2 | #define _SPARC_PGTABLE_H |
3 | 3 | ||
4 | /* asm-sparc/pgtable.h: Defines and functions used to work | 4 | /* asm/pgtable.h: Defines and functions used to work |
5 | * with Sparc page tables. | 5 | * with Sparc page tables. |
6 | * | 6 | * |
7 | * Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu) | 7 | * Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu) |
diff --git a/include/asm-sparc/pgtable_64.h b/arch/sparc/include/asm/pgtable_64.h index bb9ec2cce355..bb9ec2cce355 100644 --- a/include/asm-sparc/pgtable_64.h +++ b/arch/sparc/include/asm/pgtable_64.h | |||
diff --git a/include/asm-sparc/pgtsrmmu.h b/arch/sparc/include/asm/pgtsrmmu.h index 808555fc1d58..808555fc1d58 100644 --- a/include/asm-sparc/pgtsrmmu.h +++ b/arch/sparc/include/asm/pgtsrmmu.h | |||
diff --git a/include/asm-sparc/pgtsun4.h b/arch/sparc/include/asm/pgtsun4.h index 5a0d661fb82e..5a0d661fb82e 100644 --- a/include/asm-sparc/pgtsun4.h +++ b/arch/sparc/include/asm/pgtsun4.h | |||
diff --git a/include/asm-sparc/pgtsun4c.h b/arch/sparc/include/asm/pgtsun4c.h index aeb25e912179..aeb25e912179 100644 --- a/include/asm-sparc/pgtsun4c.h +++ b/arch/sparc/include/asm/pgtsun4c.h | |||
diff --git a/include/asm-sparc/pil.h b/arch/sparc/include/asm/pil.h index 71819bb943fc..71819bb943fc 100644 --- a/include/asm-sparc/pil.h +++ b/arch/sparc/include/asm/pil.h | |||
diff --git a/include/asm-sparc/poll.h b/arch/sparc/include/asm/poll.h index 091d3ad2e830..091d3ad2e830 100644 --- a/include/asm-sparc/poll.h +++ b/arch/sparc/include/asm/poll.h | |||
diff --git a/include/asm-sparc/posix_types.h b/arch/sparc/include/asm/posix_types.h index 58c820d75e83..03a0e091a884 100644 --- a/include/asm-sparc/posix_types.h +++ b/arch/sparc/include/asm/posix_types.h | |||
@@ -1,8 +1,8 @@ | |||
1 | #ifndef ___ASM_SPARC_POSIX_TYPES_H | 1 | #ifndef ___ASM_SPARC_POSIX_TYPES_H |
2 | #define ___ASM_SPARC_POSIX_TYPES_H | 2 | #define ___ASM_SPARC_POSIX_TYPES_H |
3 | #if defined(__sparc__) && defined(__arch64__) | 3 | #if defined(__sparc__) && defined(__arch64__) |
4 | #include <asm-sparc/posix_types_64.h> | 4 | #include <asm/posix_types_64.h> |
5 | #else | 5 | #else |
6 | #include <asm-sparc/posix_types_32.h> | 6 | #include <asm/posix_types_32.h> |
7 | #endif | 7 | #endif |
8 | #endif | 8 | #endif |
diff --git a/include/asm-sparc/posix_types_32.h b/arch/sparc/include/asm/posix_types_32.h index 6bb6eb1ca0f2..6bb6eb1ca0f2 100644 --- a/include/asm-sparc/posix_types_32.h +++ b/arch/sparc/include/asm/posix_types_32.h | |||
diff --git a/include/asm-sparc/posix_types_64.h b/arch/sparc/include/asm/posix_types_64.h index ba8f93295763..ba8f93295763 100644 --- a/include/asm-sparc/posix_types_64.h +++ b/arch/sparc/include/asm/posix_types_64.h | |||
diff --git a/include/asm-sparc/processor.h b/arch/sparc/include/asm/processor.h index 11a66bb02eaa..9da9646bf6c6 100644 --- a/include/asm-sparc/processor.h +++ b/arch/sparc/include/asm/processor.h | |||
@@ -1,8 +1,8 @@ | |||
1 | #ifndef ___ASM_SPARC_PROCESSOR_H | 1 | #ifndef ___ASM_SPARC_PROCESSOR_H |
2 | #define ___ASM_SPARC_PROCESSOR_H | 2 | #define ___ASM_SPARC_PROCESSOR_H |
3 | #if defined(__sparc__) && defined(__arch64__) | 3 | #if defined(__sparc__) && defined(__arch64__) |
4 | #include <asm-sparc/processor_64.h> | 4 | #include <asm/processor_64.h> |
5 | #else | 5 | #else |
6 | #include <asm-sparc/processor_32.h> | 6 | #include <asm/processor_32.h> |
7 | #endif | 7 | #endif |
8 | #endif | 8 | #endif |
diff --git a/include/asm-sparc/processor_32.h b/arch/sparc/include/asm/processor_32.h index 562c0d69c537..2ae67a2e7f3a 100644 --- a/include/asm-sparc/processor_32.h +++ b/arch/sparc/include/asm/processor_32.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* include/asm-sparc/processor.h | 1 | /* include/asm/processor.h |
2 | * | 2 | * |
3 | * Copyright (C) 1994 David S. Miller (davem@caip.rutgers.edu) | 3 | * Copyright (C) 1994 David S. Miller (davem@caip.rutgers.edu) |
4 | */ | 4 | */ |
@@ -114,6 +114,7 @@ extern pid_t kernel_thread(int (*fn)(void *), void * arg, unsigned long flags); | |||
114 | 114 | ||
115 | extern unsigned long get_wchan(struct task_struct *); | 115 | extern unsigned long get_wchan(struct task_struct *); |
116 | 116 | ||
117 | #define task_pt_regs(tsk) ((tsk)->thread.kregs) | ||
117 | #define KSTK_EIP(tsk) ((tsk)->thread.kregs->pc) | 118 | #define KSTK_EIP(tsk) ((tsk)->thread.kregs->pc) |
118 | #define KSTK_ESP(tsk) ((tsk)->thread.kregs->u_regs[UREG_FP]) | 119 | #define KSTK_ESP(tsk) ((tsk)->thread.kregs->u_regs[UREG_FP]) |
119 | 120 | ||
diff --git a/include/asm-sparc/processor_64.h b/arch/sparc/include/asm/processor_64.h index 70d42801a0d2..137a6bd72fc8 100644 --- a/include/asm-sparc/processor_64.h +++ b/arch/sparc/include/asm/processor_64.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * include/asm-sparc64/processor.h | 2 | * include/asm/processor.h |
3 | * | 3 | * |
4 | * Copyright (C) 1996 David S. Miller (davem@caip.rutgers.edu) | 4 | * Copyright (C) 1996 David S. Miller (davem@caip.rutgers.edu) |
5 | */ | 5 | */ |
diff --git a/include/asm-sparc/prom.h b/arch/sparc/include/asm/prom.h index fd55522481cd..fd55522481cd 100644 --- a/include/asm-sparc/prom.h +++ b/arch/sparc/include/asm/prom.h | |||
diff --git a/include/asm-sparc/psr.h b/arch/sparc/include/asm/psr.h index b8c0e5f0a66b..b8c0e5f0a66b 100644 --- a/include/asm-sparc/psr.h +++ b/arch/sparc/include/asm/psr.h | |||
diff --git a/include/asm-sparc/psrcompat.h b/arch/sparc/include/asm/psrcompat.h index 44b6327dbbf5..44b6327dbbf5 100644 --- a/include/asm-sparc/psrcompat.h +++ b/arch/sparc/include/asm/psrcompat.h | |||
diff --git a/include/asm-sparc/pstate.h b/arch/sparc/include/asm/pstate.h index a26a53777bb0..a26a53777bb0 100644 --- a/include/asm-sparc/pstate.h +++ b/arch/sparc/include/asm/pstate.h | |||
diff --git a/include/asm-sparc/ptrace.h b/arch/sparc/include/asm/ptrace.h index f36ab6c30ff3..6dcbe2eed2e2 100644 --- a/include/asm-sparc/ptrace.h +++ b/arch/sparc/include/asm/ptrace.h | |||
@@ -1,8 +1,8 @@ | |||
1 | #ifndef ___ASM_SPARC_PTRACE_H | 1 | #ifndef ___ASM_SPARC_PTRACE_H |
2 | #define ___ASM_SPARC_PTRACE_H | 2 | #define ___ASM_SPARC_PTRACE_H |
3 | #if defined(__sparc__) && defined(__arch64__) | 3 | #if defined(__sparc__) && defined(__arch64__) |
4 | #include <asm-sparc/ptrace_64.h> | 4 | #include <asm/ptrace_64.h> |
5 | #else | 5 | #else |
6 | #include <asm-sparc/ptrace_32.h> | 6 | #include <asm/ptrace_32.h> |
7 | #endif | 7 | #endif |
8 | #endif | 8 | #endif |
diff --git a/include/asm-sparc/ptrace_32.h b/arch/sparc/include/asm/ptrace_32.h index 0401cc7ec38e..d43c88b86834 100644 --- a/include/asm-sparc/ptrace_32.h +++ b/arch/sparc/include/asm/ptrace_32.h | |||
@@ -74,6 +74,7 @@ struct sparc_stackf { | |||
74 | 74 | ||
75 | #define user_mode(regs) (!((regs)->psr & PSR_PS)) | 75 | #define user_mode(regs) (!((regs)->psr & PSR_PS)) |
76 | #define instruction_pointer(regs) ((regs)->pc) | 76 | #define instruction_pointer(regs) ((regs)->pc) |
77 | #define user_stack_pointer(regs) ((regs)->u_regs[UREG_FP]) | ||
77 | unsigned long profile_pc(struct pt_regs *); | 78 | unsigned long profile_pc(struct pt_regs *); |
78 | extern void show_regs(struct pt_regs *); | 79 | extern void show_regs(struct pt_regs *); |
79 | #endif | 80 | #endif |
diff --git a/include/asm-sparc/ptrace_64.h b/arch/sparc/include/asm/ptrace_64.h index a682e66d5c4a..ec6d45c84cd0 100644 --- a/include/asm-sparc/ptrace_64.h +++ b/arch/sparc/include/asm/ptrace_64.h | |||
@@ -146,6 +146,7 @@ do { current_thread_info()->syscall_noerror = 1; \ | |||
146 | } while (0) | 146 | } while (0) |
147 | #define user_mode(regs) (!((regs)->tstate & TSTATE_PRIV)) | 147 | #define user_mode(regs) (!((regs)->tstate & TSTATE_PRIV)) |
148 | #define instruction_pointer(regs) ((regs)->tpc) | 148 | #define instruction_pointer(regs) ((regs)->tpc) |
149 | #define user_stack_pointer(regs) ((regs)->u_regs[UREG_FP]) | ||
149 | #define regs_return_value(regs) ((regs)->u_regs[UREG_I0]) | 150 | #define regs_return_value(regs) ((regs)->u_regs[UREG_I0]) |
150 | #ifdef CONFIG_SMP | 151 | #ifdef CONFIG_SMP |
151 | extern unsigned long profile_pc(struct pt_regs *); | 152 | extern unsigned long profile_pc(struct pt_regs *); |
diff --git a/include/asm-sparc/reboot.h b/arch/sparc/include/asm/reboot.h index 3f3f43f5be5e..3f3f43f5be5e 100644 --- a/include/asm-sparc/reboot.h +++ b/arch/sparc/include/asm/reboot.h | |||
diff --git a/include/asm-sparc/reg.h b/arch/sparc/include/asm/reg.h index cb34b0a49aad..0c16e19cae4d 100644 --- a/include/asm-sparc/reg.h +++ b/arch/sparc/include/asm/reg.h | |||
@@ -1,8 +1,8 @@ | |||
1 | #ifndef ___ASM_SPARC_REG_H | 1 | #ifndef ___ASM_SPARC_REG_H |
2 | #define ___ASM_SPARC_REG_H | 2 | #define ___ASM_SPARC_REG_H |
3 | #if defined(__sparc__) && defined(__arch64__) | 3 | #if defined(__sparc__) && defined(__arch64__) |
4 | #include <asm-sparc/reg_64.h> | 4 | #include <asm/reg_64.h> |
5 | #else | 5 | #else |
6 | #include <asm-sparc/reg_32.h> | 6 | #include <asm/reg_32.h> |
7 | #endif | 7 | #endif |
8 | #endif | 8 | #endif |
diff --git a/include/asm-sparc/reg_32.h b/arch/sparc/include/asm/reg_32.h index 42fecfcd97e7..1efb056fb3d1 100644 --- a/include/asm-sparc/reg_32.h +++ b/arch/sparc/include/asm/reg_32.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * linux/include/asm-sparc/reg.h | 2 | * linux/include/asm/reg.h |
3 | * Layout of the registers as expected by gdb on the Sparc | 3 | * Layout of the registers as expected by gdb on the Sparc |
4 | * we should replace the user.h definitions with those in | 4 | * we should replace the user.h definitions with those in |
5 | * this file, we don't even use the other | 5 | * this file, we don't even use the other |
diff --git a/include/asm-sparc/reg_64.h b/arch/sparc/include/asm/reg_64.h index eb24a07ff4d5..6f277d7c7d88 100644 --- a/include/asm-sparc/reg_64.h +++ b/arch/sparc/include/asm/reg_64.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * linux/asm-sparc64/reg.h | 2 | * linux/asm/reg.h |
3 | * Layout of the registers as expected by gdb on the Sparc | 3 | * Layout of the registers as expected by gdb on the Sparc |
4 | * we should replace the user.h definitions with those in | 4 | * we should replace the user.h definitions with those in |
5 | * this file, we don't even use the other | 5 | * this file, we don't even use the other |
diff --git a/include/asm-sparc/resource.h b/arch/sparc/include/asm/resource.h index fe163cafb4c7..fe163cafb4c7 100644 --- a/include/asm-sparc/resource.h +++ b/arch/sparc/include/asm/resource.h | |||
diff --git a/include/asm-sparc/ross.h b/arch/sparc/include/asm/ross.h index ecb6e81786a6..ecb6e81786a6 100644 --- a/include/asm-sparc/ross.h +++ b/arch/sparc/include/asm/ross.h | |||
diff --git a/include/asm-sparc/rtc.h b/arch/sparc/include/asm/rtc.h index f9ecb1fe2ecd..f9ecb1fe2ecd 100644 --- a/include/asm-sparc/rtc.h +++ b/arch/sparc/include/asm/rtc.h | |||
diff --git a/include/asm-sparc/rwsem-const.h b/arch/sparc/include/asm/rwsem-const.h index a303c9d64d84..a303c9d64d84 100644 --- a/include/asm-sparc/rwsem-const.h +++ b/arch/sparc/include/asm/rwsem-const.h | |||
diff --git a/include/asm-sparc/rwsem.h b/arch/sparc/include/asm/rwsem.h index 1dc129ac2feb..1dc129ac2feb 100644 --- a/include/asm-sparc/rwsem.h +++ b/arch/sparc/include/asm/rwsem.h | |||
diff --git a/include/asm-sparc/sbi.h b/arch/sparc/include/asm/sbi.h index 5eb7f1965d33..5eb7f1965d33 100644 --- a/include/asm-sparc/sbi.h +++ b/arch/sparc/include/asm/sbi.h | |||
diff --git a/include/asm-sparc/sbus.h b/arch/sparc/include/asm/sbus.h index 8f29a1979665..f82481ab44db 100644 --- a/include/asm-sparc/sbus.h +++ b/arch/sparc/include/asm/sbus.h | |||
@@ -1,8 +1,8 @@ | |||
1 | #ifndef ___ASM_SPARC_SBUS_H | 1 | #ifndef ___ASM_SPARC_SBUS_H |
2 | #define ___ASM_SPARC_SBUS_H | 2 | #define ___ASM_SPARC_SBUS_H |
3 | #if defined(__sparc__) && defined(__arch64__) | 3 | #if defined(__sparc__) && defined(__arch64__) |
4 | #include <asm-sparc/sbus_64.h> | 4 | #include <asm/sbus_64.h> |
5 | #else | 5 | #else |
6 | #include <asm-sparc/sbus_32.h> | 6 | #include <asm/sbus_32.h> |
7 | #endif | 7 | #endif |
8 | #endif | 8 | #endif |
diff --git a/include/asm-sparc/sbus_32.h b/arch/sparc/include/asm/sbus_32.h index 77b5d3aadc99..77b5d3aadc99 100644 --- a/include/asm-sparc/sbus_32.h +++ b/arch/sparc/include/asm/sbus_32.h | |||
diff --git a/include/asm-sparc/sbus_64.h b/arch/sparc/include/asm/sbus_64.h index 0e16b6dd7e96..0e16b6dd7e96 100644 --- a/include/asm-sparc/sbus_64.h +++ b/arch/sparc/include/asm/sbus_64.h | |||
diff --git a/include/asm-sparc/scatterlist.h b/arch/sparc/include/asm/scatterlist.h index b1a0e316c2b6..ec21a4517641 100644 --- a/include/asm-sparc/scatterlist.h +++ b/arch/sparc/include/asm/scatterlist.h | |||
@@ -1,8 +1,8 @@ | |||
1 | #ifndef ___ASM_SPARC_SCATTERLIST_H | 1 | #ifndef ___ASM_SPARC_SCATTERLIST_H |
2 | #define ___ASM_SPARC_SCATTERLIST_H | 2 | #define ___ASM_SPARC_SCATTERLIST_H |
3 | #if defined(__sparc__) && defined(__arch64__) | 3 | #if defined(__sparc__) && defined(__arch64__) |
4 | #include <asm-sparc/scatterlist_64.h> | 4 | #include <asm/scatterlist_64.h> |
5 | #else | 5 | #else |
6 | #include <asm-sparc/scatterlist_32.h> | 6 | #include <asm/scatterlist_32.h> |
7 | #endif | 7 | #endif |
8 | #endif | 8 | #endif |
diff --git a/include/asm-sparc/scatterlist_32.h b/arch/sparc/include/asm/scatterlist_32.h index c82609ca1d0f..c82609ca1d0f 100644 --- a/include/asm-sparc/scatterlist_32.h +++ b/arch/sparc/include/asm/scatterlist_32.h | |||
diff --git a/include/asm-sparc/scatterlist_64.h b/arch/sparc/include/asm/scatterlist_64.h index 81bd058f9382..81bd058f9382 100644 --- a/include/asm-sparc/scatterlist_64.h +++ b/arch/sparc/include/asm/scatterlist_64.h | |||
diff --git a/include/asm-sparc/scratchpad.h b/arch/sparc/include/asm/scratchpad.h index 5e8b01fb3343..5e8b01fb3343 100644 --- a/include/asm-sparc/scratchpad.h +++ b/arch/sparc/include/asm/scratchpad.h | |||
diff --git a/include/asm-sparc/seccomp.h b/arch/sparc/include/asm/seccomp.h index 7fcd9968192b..7fcd9968192b 100644 --- a/include/asm-sparc/seccomp.h +++ b/arch/sparc/include/asm/seccomp.h | |||
diff --git a/include/asm-sparc/sections.h b/arch/sparc/include/asm/sections.h index cbd019162425..c7c69b00967f 100644 --- a/include/asm-sparc/sections.h +++ b/arch/sparc/include/asm/sections.h | |||
@@ -1,8 +1,8 @@ | |||
1 | #ifndef ___ASM_SPARC_SECTIONS_H | 1 | #ifndef ___ASM_SPARC_SECTIONS_H |
2 | #define ___ASM_SPARC_SECTIONS_H | 2 | #define ___ASM_SPARC_SECTIONS_H |
3 | #if defined(__sparc__) && defined(__arch64__) | 3 | #if defined(__sparc__) && defined(__arch64__) |
4 | #include <asm-sparc/sections_64.h> | 4 | #include <asm/sections_64.h> |
5 | #else | 5 | #else |
6 | #include <asm-sparc/sections_32.h> | 6 | #include <asm/sections_32.h> |
7 | #endif | 7 | #endif |
8 | #endif | 8 | #endif |
diff --git a/include/asm-sparc/sections_32.h b/arch/sparc/include/asm/sections_32.h index 6832841df051..6832841df051 100644 --- a/include/asm-sparc/sections_32.h +++ b/arch/sparc/include/asm/sections_32.h | |||
diff --git a/include/asm-sparc/sections_64.h b/arch/sparc/include/asm/sections_64.h index 3f4b9fdc28d0..3f4b9fdc28d0 100644 --- a/include/asm-sparc/sections_64.h +++ b/arch/sparc/include/asm/sections_64.h | |||
diff --git a/include/asm-sparc/sembuf.h b/arch/sparc/include/asm/sembuf.h index faee1be08d67..faee1be08d67 100644 --- a/include/asm-sparc/sembuf.h +++ b/arch/sparc/include/asm/sembuf.h | |||
diff --git a/include/asm-sparc/setup.h b/arch/sparc/include/asm/setup.h index 2643c62f4ac0..2643c62f4ac0 100644 --- a/include/asm-sparc/setup.h +++ b/arch/sparc/include/asm/setup.h | |||
diff --git a/include/asm-sparc/sfafsr.h b/arch/sparc/include/asm/sfafsr.h index e96137b04a4f..e96137b04a4f 100644 --- a/include/asm-sparc/sfafsr.h +++ b/arch/sparc/include/asm/sfafsr.h | |||
diff --git a/include/asm-sparc/sfp-machine.h b/arch/sparc/include/asm/sfp-machine.h index c676fcc2dd27..4ebc3823ed4f 100644 --- a/include/asm-sparc/sfp-machine.h +++ b/arch/sparc/include/asm/sfp-machine.h | |||
@@ -1,8 +1,8 @@ | |||
1 | #ifndef ___ASM_SPARC_SFP_MACHINE_H | 1 | #ifndef ___ASM_SPARC_SFP_MACHINE_H |
2 | #define ___ASM_SPARC_SFP_MACHINE_H | 2 | #define ___ASM_SPARC_SFP_MACHINE_H |
3 | #if defined(__sparc__) && defined(__arch64__) | 3 | #if defined(__sparc__) && defined(__arch64__) |
4 | #include <asm-sparc/sfp-machine_64.h> | 4 | #include <asm/sfp-machine_64.h> |
5 | #else | 5 | #else |
6 | #include <asm-sparc/sfp-machine_32.h> | 6 | #include <asm/sfp-machine_32.h> |
7 | #endif | 7 | #endif |
8 | #endif | 8 | #endif |
diff --git a/include/asm-sparc/sfp-machine_32.h b/arch/sparc/include/asm/sfp-machine_32.h index 01d9c3b5a73b..01d9c3b5a73b 100644 --- a/include/asm-sparc/sfp-machine_32.h +++ b/arch/sparc/include/asm/sfp-machine_32.h | |||
diff --git a/include/asm-sparc/sfp-machine_64.h b/arch/sparc/include/asm/sfp-machine_64.h index ca913ef40bd5..ca913ef40bd5 100644 --- a/include/asm-sparc/sfp-machine_64.h +++ b/arch/sparc/include/asm/sfp-machine_64.h | |||
diff --git a/include/asm-sparc/shmbuf.h b/arch/sparc/include/asm/shmbuf.h index 83a16055363f..83a16055363f 100644 --- a/include/asm-sparc/shmbuf.h +++ b/arch/sparc/include/asm/shmbuf.h | |||
diff --git a/include/asm-sparc/shmparam.h b/arch/sparc/include/asm/shmparam.h index 16fda7e9acc8..8bf0cfe0694f 100644 --- a/include/asm-sparc/shmparam.h +++ b/arch/sparc/include/asm/shmparam.h | |||
@@ -1,8 +1,8 @@ | |||
1 | #ifndef ___ASM_SPARC_SHMPARAM_H | 1 | #ifndef ___ASM_SPARC_SHMPARAM_H |
2 | #define ___ASM_SPARC_SHMPARAM_H | 2 | #define ___ASM_SPARC_SHMPARAM_H |
3 | #if defined(__sparc__) && defined(__arch64__) | 3 | #if defined(__sparc__) && defined(__arch64__) |
4 | #include <asm-sparc/shmparam_64.h> | 4 | #include <asm/shmparam_64.h> |
5 | #else | 5 | #else |
6 | #include <asm-sparc/shmparam_32.h> | 6 | #include <asm/shmparam_32.h> |
7 | #endif | 7 | #endif |
8 | #endif | 8 | #endif |
diff --git a/include/asm-sparc/shmparam_32.h b/arch/sparc/include/asm/shmparam_32.h index 59a1243c12f3..59a1243c12f3 100644 --- a/include/asm-sparc/shmparam_32.h +++ b/arch/sparc/include/asm/shmparam_32.h | |||
diff --git a/include/asm-sparc/shmparam_64.h b/arch/sparc/include/asm/shmparam_64.h index 1ed0d6701a9b..1ed0d6701a9b 100644 --- a/include/asm-sparc/shmparam_64.h +++ b/arch/sparc/include/asm/shmparam_64.h | |||
diff --git a/include/asm-sparc/sigcontext.h b/arch/sparc/include/asm/sigcontext.h index 82fc7d54a4fa..e92de7e286b5 100644 --- a/include/asm-sparc/sigcontext.h +++ b/arch/sparc/include/asm/sigcontext.h | |||
@@ -1,8 +1,8 @@ | |||
1 | #ifndef ___ASM_SPARC_SIGCONTEXT_H | 1 | #ifndef ___ASM_SPARC_SIGCONTEXT_H |
2 | #define ___ASM_SPARC_SIGCONTEXT_H | 2 | #define ___ASM_SPARC_SIGCONTEXT_H |
3 | #if defined(__sparc__) && defined(__arch64__) | 3 | #if defined(__sparc__) && defined(__arch64__) |
4 | #include <asm-sparc/sigcontext_64.h> | 4 | #include <asm/sigcontext_64.h> |
5 | #else | 5 | #else |
6 | #include <asm-sparc/sigcontext_32.h> | 6 | #include <asm/sigcontext_32.h> |
7 | #endif | 7 | #endif |
8 | #endif | 8 | #endif |
diff --git a/include/asm-sparc/sigcontext_32.h b/arch/sparc/include/asm/sigcontext_32.h index c5fb60dcbd75..c5fb60dcbd75 100644 --- a/include/asm-sparc/sigcontext_32.h +++ b/arch/sparc/include/asm/sigcontext_32.h | |||
diff --git a/include/asm-sparc/sigcontext_64.h b/arch/sparc/include/asm/sigcontext_64.h index 1c868d680cfc..1c868d680cfc 100644 --- a/include/asm-sparc/sigcontext_64.h +++ b/arch/sparc/include/asm/sigcontext_64.h | |||
diff --git a/include/asm-sparc/siginfo.h b/arch/sparc/include/asm/siginfo.h index 2c9fccf4ce18..bd81f8d7f5ce 100644 --- a/include/asm-sparc/siginfo.h +++ b/arch/sparc/include/asm/siginfo.h | |||
@@ -1,8 +1,8 @@ | |||
1 | #ifndef ___ASM_SPARC_SIGINFO_H | 1 | #ifndef ___ASM_SPARC_SIGINFO_H |
2 | #define ___ASM_SPARC_SIGINFO_H | 2 | #define ___ASM_SPARC_SIGINFO_H |
3 | #if defined(__sparc__) && defined(__arch64__) | 3 | #if defined(__sparc__) && defined(__arch64__) |
4 | #include <asm-sparc/siginfo_64.h> | 4 | #include <asm/siginfo_64.h> |
5 | #else | 5 | #else |
6 | #include <asm-sparc/siginfo_32.h> | 6 | #include <asm/siginfo_32.h> |
7 | #endif | 7 | #endif |
8 | #endif | 8 | #endif |
diff --git a/include/asm-sparc/siginfo_32.h b/arch/sparc/include/asm/siginfo_32.h index 3c71af135c52..3c71af135c52 100644 --- a/include/asm-sparc/siginfo_32.h +++ b/arch/sparc/include/asm/siginfo_32.h | |||
diff --git a/include/asm-sparc/siginfo_64.h b/arch/sparc/include/asm/siginfo_64.h index c96e6c30f8b0..c96e6c30f8b0 100644 --- a/include/asm-sparc/siginfo_64.h +++ b/arch/sparc/include/asm/siginfo_64.h | |||
diff --git a/include/asm-sparc/signal.h b/arch/sparc/include/asm/signal.h index 36f5f9e482f7..27ab05dc203e 100644 --- a/include/asm-sparc/signal.h +++ b/arch/sparc/include/asm/signal.h | |||
@@ -1,8 +1,8 @@ | |||
1 | #ifndef ___ASM_SPARC_SIGNAL_H | 1 | #ifndef ___ASM_SPARC_SIGNAL_H |
2 | #define ___ASM_SPARC_SIGNAL_H | 2 | #define ___ASM_SPARC_SIGNAL_H |
3 | #if defined(__sparc__) && defined(__arch64__) | 3 | #if defined(__sparc__) && defined(__arch64__) |
4 | #include <asm-sparc/signal_64.h> | 4 | #include <asm/signal_64.h> |
5 | #else | 5 | #else |
6 | #include <asm-sparc/signal_32.h> | 6 | #include <asm/signal_32.h> |
7 | #endif | 7 | #endif |
8 | #endif | 8 | #endif |
diff --git a/include/asm-sparc/signal_32.h b/arch/sparc/include/asm/signal_32.h index 96a60ab03ca1..96a60ab03ca1 100644 --- a/include/asm-sparc/signal_32.h +++ b/arch/sparc/include/asm/signal_32.h | |||
diff --git a/include/asm-sparc/signal_64.h b/arch/sparc/include/asm/signal_64.h index ab1509a101c5..ab1509a101c5 100644 --- a/include/asm-sparc/signal_64.h +++ b/arch/sparc/include/asm/signal_64.h | |||
diff --git a/include/asm-sparc/smp.h b/arch/sparc/include/asm/smp.h index 1f9dedfbabd8..b59672d0e19b 100644 --- a/include/asm-sparc/smp.h +++ b/arch/sparc/include/asm/smp.h | |||
@@ -1,8 +1,8 @@ | |||
1 | #ifndef ___ASM_SPARC_SMP_H | 1 | #ifndef ___ASM_SPARC_SMP_H |
2 | #define ___ASM_SPARC_SMP_H | 2 | #define ___ASM_SPARC_SMP_H |
3 | #if defined(__sparc__) && defined(__arch64__) | 3 | #if defined(__sparc__) && defined(__arch64__) |
4 | #include <asm-sparc/smp_64.h> | 4 | #include <asm/smp_64.h> |
5 | #else | 5 | #else |
6 | #include <asm-sparc/smp_32.h> | 6 | #include <asm/smp_32.h> |
7 | #endif | 7 | #endif |
8 | #endif | 8 | #endif |
diff --git a/include/asm-sparc/smp_32.h b/arch/sparc/include/asm/smp_32.h index 7201752cf934..7201752cf934 100644 --- a/include/asm-sparc/smp_32.h +++ b/arch/sparc/include/asm/smp_32.h | |||
diff --git a/include/asm-sparc/smp_64.h b/arch/sparc/include/asm/smp_64.h index 57224dd37b3a..57224dd37b3a 100644 --- a/include/asm-sparc/smp_64.h +++ b/arch/sparc/include/asm/smp_64.h | |||
diff --git a/include/asm-sparc/smpprim.h b/arch/sparc/include/asm/smpprim.h index eb849d862c64..eb849d862c64 100644 --- a/include/asm-sparc/smpprim.h +++ b/arch/sparc/include/asm/smpprim.h | |||
diff --git a/include/asm-sparc/socket.h b/arch/sparc/include/asm/socket.h index bf50d0c2d583..bf50d0c2d583 100644 --- a/include/asm-sparc/socket.h +++ b/arch/sparc/include/asm/socket.h | |||
diff --git a/include/asm-sparc/sockios.h b/arch/sparc/include/asm/sockios.h index 990ea746486b..990ea746486b 100644 --- a/include/asm-sparc/sockios.h +++ b/arch/sparc/include/asm/sockios.h | |||
diff --git a/include/asm-sparc/sparsemem.h b/arch/sparc/include/asm/sparsemem.h index b99d4e4b6d28..b99d4e4b6d28 100644 --- a/include/asm-sparc/sparsemem.h +++ b/arch/sparc/include/asm/sparsemem.h | |||
diff --git a/include/asm-sparc/spinlock.h b/arch/sparc/include/asm/spinlock.h index 3b71c50b72eb..f276b0036b2c 100644 --- a/include/asm-sparc/spinlock.h +++ b/arch/sparc/include/asm/spinlock.h | |||
@@ -1,8 +1,8 @@ | |||
1 | #ifndef ___ASM_SPARC_SPINLOCK_H | 1 | #ifndef ___ASM_SPARC_SPINLOCK_H |
2 | #define ___ASM_SPARC_SPINLOCK_H | 2 | #define ___ASM_SPARC_SPINLOCK_H |
3 | #if defined(__sparc__) && defined(__arch64__) | 3 | #if defined(__sparc__) && defined(__arch64__) |
4 | #include <asm-sparc/spinlock_64.h> | 4 | #include <asm/spinlock_64.h> |
5 | #else | 5 | #else |
6 | #include <asm-sparc/spinlock_32.h> | 6 | #include <asm/spinlock_32.h> |
7 | #endif | 7 | #endif |
8 | #endif | 8 | #endif |
diff --git a/include/asm-sparc/spinlock_32.h b/arch/sparc/include/asm/spinlock_32.h index de2249b267c6..de2249b267c6 100644 --- a/include/asm-sparc/spinlock_32.h +++ b/arch/sparc/include/asm/spinlock_32.h | |||
diff --git a/include/asm-sparc/spinlock_64.h b/arch/sparc/include/asm/spinlock_64.h index 0006fe9f8c7a..0006fe9f8c7a 100644 --- a/include/asm-sparc/spinlock_64.h +++ b/arch/sparc/include/asm/spinlock_64.h | |||
diff --git a/include/asm-sparc/spinlock_types.h b/arch/sparc/include/asm/spinlock_types.h index 37cbe01c585b..37cbe01c585b 100644 --- a/include/asm-sparc/spinlock_types.h +++ b/arch/sparc/include/asm/spinlock_types.h | |||
diff --git a/include/asm-sparc/spitfire.h b/arch/sparc/include/asm/spitfire.h index 985ea7e31992..985ea7e31992 100644 --- a/include/asm-sparc/spitfire.h +++ b/arch/sparc/include/asm/spitfire.h | |||
diff --git a/include/asm-sparc/sstate.h b/arch/sparc/include/asm/sstate.h index a7c35dbcb281..a7c35dbcb281 100644 --- a/include/asm-sparc/sstate.h +++ b/arch/sparc/include/asm/sstate.h | |||
diff --git a/include/asm-sparc/stacktrace.h b/arch/sparc/include/asm/stacktrace.h index 6cee39adf6d6..6cee39adf6d6 100644 --- a/include/asm-sparc/stacktrace.h +++ b/arch/sparc/include/asm/stacktrace.h | |||
diff --git a/include/asm-sparc/starfire.h b/arch/sparc/include/asm/starfire.h index 07bafd31e33c..07bafd31e33c 100644 --- a/include/asm-sparc/starfire.h +++ b/arch/sparc/include/asm/starfire.h | |||
diff --git a/include/asm-sparc/stat.h b/arch/sparc/include/asm/stat.h index 9fdcaf8c9cd3..d8153013df72 100644 --- a/include/asm-sparc/stat.h +++ b/arch/sparc/include/asm/stat.h | |||
@@ -1,8 +1,8 @@ | |||
1 | #ifndef ___ASM_SPARC_STAT_H | 1 | #ifndef ___ASM_SPARC_STAT_H |
2 | #define ___ASM_SPARC_STAT_H | 2 | #define ___ASM_SPARC_STAT_H |
3 | #if defined(__sparc__) && defined(__arch64__) | 3 | #if defined(__sparc__) && defined(__arch64__) |
4 | #include <asm-sparc/stat_64.h> | 4 | #include <asm/stat_64.h> |
5 | #else | 5 | #else |
6 | #include <asm-sparc/stat_32.h> | 6 | #include <asm/stat_32.h> |
7 | #endif | 7 | #endif |
8 | #endif | 8 | #endif |
diff --git a/include/asm-sparc/stat_32.h b/arch/sparc/include/asm/stat_32.h index 2299e1d5d94c..2299e1d5d94c 100644 --- a/include/asm-sparc/stat_32.h +++ b/arch/sparc/include/asm/stat_32.h | |||
diff --git a/include/asm-sparc/stat_64.h b/arch/sparc/include/asm/stat_64.h index 9650fdea847f..9650fdea847f 100644 --- a/include/asm-sparc/stat_64.h +++ b/arch/sparc/include/asm/stat_64.h | |||
diff --git a/include/asm-sparc/statfs.h b/arch/sparc/include/asm/statfs.h index a70cc52e7018..5e937a73743d 100644 --- a/include/asm-sparc/statfs.h +++ b/arch/sparc/include/asm/statfs.h | |||
@@ -1,8 +1,8 @@ | |||
1 | #ifndef ___ASM_SPARC_STATFS_H | 1 | #ifndef ___ASM_SPARC_STATFS_H |
2 | #define ___ASM_SPARC_STATFS_H | 2 | #define ___ASM_SPARC_STATFS_H |
3 | #if defined(__sparc__) && defined(__arch64__) | 3 | #if defined(__sparc__) && defined(__arch64__) |
4 | #include <asm-sparc/statfs_64.h> | 4 | #include <asm/statfs_64.h> |
5 | #else | 5 | #else |
6 | #include <asm-sparc/statfs_32.h> | 6 | #include <asm/statfs_32.h> |
7 | #endif | 7 | #endif |
8 | #endif | 8 | #endif |
diff --git a/include/asm-sparc/statfs_32.h b/arch/sparc/include/asm/statfs_32.h index 304520fa8863..304520fa8863 100644 --- a/include/asm-sparc/statfs_32.h +++ b/arch/sparc/include/asm/statfs_32.h | |||
diff --git a/include/asm-sparc/statfs_64.h b/arch/sparc/include/asm/statfs_64.h index 79b3c890a5fa..79b3c890a5fa 100644 --- a/include/asm-sparc/statfs_64.h +++ b/arch/sparc/include/asm/statfs_64.h | |||
diff --git a/include/asm-sparc/string.h b/arch/sparc/include/asm/string.h index 14c04c7697a5..98b72a0c8e6e 100644 --- a/include/asm-sparc/string.h +++ b/arch/sparc/include/asm/string.h | |||
@@ -1,8 +1,8 @@ | |||
1 | #ifndef ___ASM_SPARC_STRING_H | 1 | #ifndef ___ASM_SPARC_STRING_H |
2 | #define ___ASM_SPARC_STRING_H | 2 | #define ___ASM_SPARC_STRING_H |
3 | #if defined(__sparc__) && defined(__arch64__) | 3 | #if defined(__sparc__) && defined(__arch64__) |
4 | #include <asm-sparc/string_64.h> | 4 | #include <asm/string_64.h> |
5 | #else | 5 | #else |
6 | #include <asm-sparc/string_32.h> | 6 | #include <asm/string_32.h> |
7 | #endif | 7 | #endif |
8 | #endif | 8 | #endif |
diff --git a/include/asm-sparc/string_32.h b/arch/sparc/include/asm/string_32.h index 6c5fddb7e6b5..6c5fddb7e6b5 100644 --- a/include/asm-sparc/string_32.h +++ b/arch/sparc/include/asm/string_32.h | |||
diff --git a/include/asm-sparc/string_64.h b/arch/sparc/include/asm/string_64.h index 43161f2d17eb..43161f2d17eb 100644 --- a/include/asm-sparc/string_64.h +++ b/arch/sparc/include/asm/string_64.h | |||
diff --git a/include/asm-sparc/sun4paddr.h b/arch/sparc/include/asm/sun4paddr.h index d52985f19f42..d52985f19f42 100644 --- a/include/asm-sparc/sun4paddr.h +++ b/arch/sparc/include/asm/sun4paddr.h | |||
diff --git a/include/asm-sparc/sun4prom.h b/arch/sparc/include/asm/sun4prom.h index 9c8b4cbf629a..9c8b4cbf629a 100644 --- a/include/asm-sparc/sun4prom.h +++ b/arch/sparc/include/asm/sun4prom.h | |||
diff --git a/include/asm-sparc/sunbpp.h b/arch/sparc/include/asm/sunbpp.h index 92ee1a8ff3a2..d81a02eaf78b 100644 --- a/include/asm-sparc/sunbpp.h +++ b/arch/sparc/include/asm/sunbpp.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * include/asm-sparc/sunbpp.h | 2 | * include/asm/sunbpp.h |
3 | */ | 3 | */ |
4 | 4 | ||
5 | #ifndef _ASM_SPARC_SUNBPP_H | 5 | #ifndef _ASM_SPARC_SUNBPP_H |
diff --git a/include/asm-sparc/swift.h b/arch/sparc/include/asm/swift.h index e535061bf755..e535061bf755 100644 --- a/include/asm-sparc/swift.h +++ b/arch/sparc/include/asm/swift.h | |||
diff --git a/arch/sparc/include/asm/syscall.h b/arch/sparc/include/asm/syscall.h new file mode 100644 index 000000000000..7486c605e23c --- /dev/null +++ b/arch/sparc/include/asm/syscall.h | |||
@@ -0,0 +1,120 @@ | |||
1 | #ifndef __ASM_SPARC_SYSCALL_H | ||
2 | #define __ASM_SPARC_SYSCALL_H | ||
3 | |||
4 | #include <linux/kernel.h> | ||
5 | #include <linux/sched.h> | ||
6 | #include <asm/ptrace.h> | ||
7 | |||
8 | /* The system call number is given by the user in %g1 */ | ||
9 | static inline long syscall_get_nr(struct task_struct *task, | ||
10 | struct pt_regs *regs) | ||
11 | { | ||
12 | int syscall_p = pt_regs_is_syscall(regs); | ||
13 | |||
14 | return (syscall_p ? regs->u_regs[UREG_G1] : -1L); | ||
15 | } | ||
16 | |||
17 | static inline void syscall_rollback(struct task_struct *task, | ||
18 | struct pt_regs *regs) | ||
19 | { | ||
20 | /* XXX This needs some thought. On Sparc we don't | ||
21 | * XXX save away the original %o0 value somewhere. | ||
22 | * XXX Instead we hold it in register %l5 at the top | ||
23 | * XXX level trap frame and pass this down to the signal | ||
24 | * XXX dispatch code which is the only place that value | ||
25 | * XXX ever was needed. | ||
26 | */ | ||
27 | } | ||
28 | |||
29 | #ifdef CONFIG_SPARC32 | ||
30 | static inline bool syscall_has_error(struct pt_regs *regs) | ||
31 | { | ||
32 | return (regs->psr & PSR_C) ? true : false; | ||
33 | } | ||
34 | static inline void syscall_set_error(struct pt_regs *regs) | ||
35 | { | ||
36 | regs->psr |= PSR_C; | ||
37 | } | ||
38 | static inline void syscall_clear_error(struct pt_regs *regs) | ||
39 | { | ||
40 | regs->psr &= ~PSR_C; | ||
41 | } | ||
42 | #else | ||
43 | static inline bool syscall_has_error(struct pt_regs *regs) | ||
44 | { | ||
45 | return (regs->tstate & (TSTATE_XCARRY | TSTATE_ICARRY)) ? true : false; | ||
46 | } | ||
47 | static inline void syscall_set_error(struct pt_regs *regs) | ||
48 | { | ||
49 | regs->tstate |= (TSTATE_XCARRY | TSTATE_ICARRY); | ||
50 | } | ||
51 | static inline void syscall_clear_error(struct pt_regs *regs) | ||
52 | { | ||
53 | regs->tstate &= ~(TSTATE_XCARRY | TSTATE_ICARRY); | ||
54 | } | ||
55 | #endif | ||
56 | |||
57 | static inline long syscall_get_error(struct task_struct *task, | ||
58 | struct pt_regs *regs) | ||
59 | { | ||
60 | long val = regs->u_regs[UREG_I0]; | ||
61 | |||
62 | return (syscall_has_error(regs) ? -val : 0); | ||
63 | } | ||
64 | |||
65 | static inline long syscall_get_return_value(struct task_struct *task, | ||
66 | struct pt_regs *regs) | ||
67 | { | ||
68 | long val = regs->u_regs[UREG_I0]; | ||
69 | |||
70 | return val; | ||
71 | } | ||
72 | |||
73 | static inline void syscall_set_return_value(struct task_struct *task, | ||
74 | struct pt_regs *regs, | ||
75 | int error, long val) | ||
76 | { | ||
77 | if (error) { | ||
78 | syscall_set_error(regs); | ||
79 | regs->u_regs[UREG_I0] = -error; | ||
80 | } else { | ||
81 | syscall_clear_error(regs); | ||
82 | regs->u_regs[UREG_I0] = val; | ||
83 | } | ||
84 | } | ||
85 | |||
86 | static inline void syscall_get_arguments(struct task_struct *task, | ||
87 | struct pt_regs *regs, | ||
88 | unsigned int i, unsigned int n, | ||
89 | unsigned long *args) | ||
90 | { | ||
91 | int zero_extend = 0; | ||
92 | unsigned int j; | ||
93 | |||
94 | #ifdef CONFIG_SPARC64 | ||
95 | if (test_tsk_thread_flag(task, TIF_32BIT)) | ||
96 | zero_extend = 1; | ||
97 | #endif | ||
98 | |||
99 | for (j = 0; j < n; j++) { | ||
100 | unsigned long val = regs->u_regs[UREG_I0 + i + j]; | ||
101 | |||
102 | if (zero_extend) | ||
103 | args[j] = (u32) val; | ||
104 | else | ||
105 | args[j] = val; | ||
106 | } | ||
107 | } | ||
108 | |||
109 | static inline void syscall_set_arguments(struct task_struct *task, | ||
110 | struct pt_regs *regs, | ||
111 | unsigned int i, unsigned int n, | ||
112 | const unsigned long *args) | ||
113 | { | ||
114 | unsigned int j; | ||
115 | |||
116 | for (j = 0; j < n; j++) | ||
117 | regs->u_regs[UREG_I0 + i + j] = args[j]; | ||
118 | } | ||
119 | |||
120 | #endif /* __ASM_SPARC_SYSCALL_H */ | ||
diff --git a/include/asm-sparc/syscalls.h b/arch/sparc/include/asm/syscalls.h index 45a43f637a14..45a43f637a14 100644 --- a/include/asm-sparc/syscalls.h +++ b/arch/sparc/include/asm/syscalls.h | |||
diff --git a/include/asm-sparc/sysen.h b/arch/sparc/include/asm/sysen.h index 6af34abde6e7..6af34abde6e7 100644 --- a/include/asm-sparc/sysen.h +++ b/arch/sparc/include/asm/sysen.h | |||
diff --git a/include/asm-sparc/system.h b/arch/sparc/include/asm/system.h index 15e2a3bc4f61..7944a7cfc996 100644 --- a/include/asm-sparc/system.h +++ b/arch/sparc/include/asm/system.h | |||
@@ -1,8 +1,8 @@ | |||
1 | #ifndef ___ASM_SPARC_SYSTEM_H | 1 | #ifndef ___ASM_SPARC_SYSTEM_H |
2 | #define ___ASM_SPARC_SYSTEM_H | 2 | #define ___ASM_SPARC_SYSTEM_H |
3 | #if defined(__sparc__) && defined(__arch64__) | 3 | #if defined(__sparc__) && defined(__arch64__) |
4 | #include <asm-sparc/system_64.h> | 4 | #include <asm/system_64.h> |
5 | #else | 5 | #else |
6 | #include <asm-sparc/system_32.h> | 6 | #include <asm/system_32.h> |
7 | #endif | 7 | #endif |
8 | #endif | 8 | #endif |
diff --git a/include/asm-sparc/system_32.h b/arch/sparc/include/asm/system_32.h index b4b024445fc9..b4b024445fc9 100644 --- a/include/asm-sparc/system_32.h +++ b/arch/sparc/include/asm/system_32.h | |||
diff --git a/include/asm-sparc/system_64.h b/arch/sparc/include/asm/system_64.h index db9e742a406a..db9e742a406a 100644 --- a/include/asm-sparc/system_64.h +++ b/arch/sparc/include/asm/system_64.h | |||
diff --git a/include/asm-sparc/termbits.h b/arch/sparc/include/asm/termbits.h index d6ca3e2754f5..d6ca3e2754f5 100644 --- a/include/asm-sparc/termbits.h +++ b/arch/sparc/include/asm/termbits.h | |||
diff --git a/include/asm-sparc/termios.h b/arch/sparc/include/asm/termios.h index e8ba95399643..e8ba95399643 100644 --- a/include/asm-sparc/termios.h +++ b/arch/sparc/include/asm/termios.h | |||
diff --git a/include/asm-sparc/thread_info.h b/arch/sparc/include/asm/thread_info.h index 64155cf89f37..122d7acc07e6 100644 --- a/include/asm-sparc/thread_info.h +++ b/arch/sparc/include/asm/thread_info.h | |||
@@ -1,8 +1,8 @@ | |||
1 | #ifndef ___ASM_SPARC_THREAD_INFO_H | 1 | #ifndef ___ASM_SPARC_THREAD_INFO_H |
2 | #define ___ASM_SPARC_THREAD_INFO_H | 2 | #define ___ASM_SPARC_THREAD_INFO_H |
3 | #if defined(__sparc__) && defined(__arch64__) | 3 | #if defined(__sparc__) && defined(__arch64__) |
4 | #include <asm-sparc/thread_info_64.h> | 4 | #include <asm/thread_info_64.h> |
5 | #else | 5 | #else |
6 | #include <asm-sparc/thread_info_32.h> | 6 | #include <asm/thread_info_32.h> |
7 | #endif | 7 | #endif |
8 | #endif | 8 | #endif |
diff --git a/include/asm-sparc/thread_info_32.h b/arch/sparc/include/asm/thread_info_32.h index 2cf9db044055..cbb892d0dff0 100644 --- a/include/asm-sparc/thread_info_32.h +++ b/arch/sparc/include/asm/thread_info_32.h | |||
@@ -130,7 +130,7 @@ BTFIXUPDEF_CALL(void, free_thread_info, struct thread_info *) | |||
130 | * thread information flag bit numbers | 130 | * thread information flag bit numbers |
131 | */ | 131 | */ |
132 | #define TIF_SYSCALL_TRACE 0 /* syscall trace active */ | 132 | #define TIF_SYSCALL_TRACE 0 /* syscall trace active */ |
133 | /* flag bit 1 is available */ | 133 | #define TIF_NOTIFY_RESUME 1 /* callback before returning to user */ |
134 | #define TIF_SIGPENDING 2 /* signal pending */ | 134 | #define TIF_SIGPENDING 2 /* signal pending */ |
135 | #define TIF_NEED_RESCHED 3 /* rescheduling necessary */ | 135 | #define TIF_NEED_RESCHED 3 /* rescheduling necessary */ |
136 | #define TIF_RESTORE_SIGMASK 4 /* restore signal mask in do_signal() */ | 136 | #define TIF_RESTORE_SIGMASK 4 /* restore signal mask in do_signal() */ |
@@ -142,12 +142,17 @@ BTFIXUPDEF_CALL(void, free_thread_info, struct thread_info *) | |||
142 | 142 | ||
143 | /* as above, but as bit values */ | 143 | /* as above, but as bit values */ |
144 | #define _TIF_SYSCALL_TRACE (1<<TIF_SYSCALL_TRACE) | 144 | #define _TIF_SYSCALL_TRACE (1<<TIF_SYSCALL_TRACE) |
145 | #define _TIF_NOTIFY_RESUME (1<<TIF_NOTIFY_RESUME) | ||
145 | #define _TIF_SIGPENDING (1<<TIF_SIGPENDING) | 146 | #define _TIF_SIGPENDING (1<<TIF_SIGPENDING) |
146 | #define _TIF_NEED_RESCHED (1<<TIF_NEED_RESCHED) | 147 | #define _TIF_NEED_RESCHED (1<<TIF_NEED_RESCHED) |
147 | #define _TIF_RESTORE_SIGMASK (1<<TIF_RESTORE_SIGMASK) | 148 | #define _TIF_RESTORE_SIGMASK (1<<TIF_RESTORE_SIGMASK) |
148 | #define _TIF_USEDFPU (1<<TIF_USEDFPU) | 149 | #define _TIF_USEDFPU (1<<TIF_USEDFPU) |
149 | #define _TIF_POLLING_NRFLAG (1<<TIF_POLLING_NRFLAG) | 150 | #define _TIF_POLLING_NRFLAG (1<<TIF_POLLING_NRFLAG) |
150 | 151 | ||
152 | #define _TIF_DO_NOTIFY_RESUME_MASK (_TIF_NOTIFY_RESUME | \ | ||
153 | _TIF_SIGPENDING | \ | ||
154 | _TIF_RESTORE_SIGMASK) | ||
155 | |||
151 | #endif /* __KERNEL__ */ | 156 | #endif /* __KERNEL__ */ |
152 | 157 | ||
153 | #endif /* _ASM_THREAD_INFO_H */ | 158 | #endif /* _ASM_THREAD_INFO_H */ |
diff --git a/include/asm-sparc/thread_info_64.h b/arch/sparc/include/asm/thread_info_64.h index 960969d5ad06..c0a737d7292c 100644 --- a/include/asm-sparc/thread_info_64.h +++ b/arch/sparc/include/asm/thread_info_64.h | |||
@@ -219,7 +219,7 @@ register struct thread_info *current_thread_info_reg asm("g6"); | |||
219 | * nop | 219 | * nop |
220 | */ | 220 | */ |
221 | #define TIF_SYSCALL_TRACE 0 /* syscall trace active */ | 221 | #define TIF_SYSCALL_TRACE 0 /* syscall trace active */ |
222 | /* flags bit 1 is available */ | 222 | #define TIF_NOTIFY_RESUME 1 /* callback before returning to user */ |
223 | #define TIF_SIGPENDING 2 /* signal pending */ | 223 | #define TIF_SIGPENDING 2 /* signal pending */ |
224 | #define TIF_NEED_RESCHED 3 /* rescheduling necessary */ | 224 | #define TIF_NEED_RESCHED 3 /* rescheduling necessary */ |
225 | #define TIF_PERFCTR 4 /* performance counters active */ | 225 | #define TIF_PERFCTR 4 /* performance counters active */ |
@@ -239,6 +239,7 @@ register struct thread_info *current_thread_info_reg asm("g6"); | |||
239 | #define TIF_POLLING_NRFLAG 14 | 239 | #define TIF_POLLING_NRFLAG 14 |
240 | 240 | ||
241 | #define _TIF_SYSCALL_TRACE (1<<TIF_SYSCALL_TRACE) | 241 | #define _TIF_SYSCALL_TRACE (1<<TIF_SYSCALL_TRACE) |
242 | #define _TIF_NOTIFY_RESUME (1<<TIF_NOTIFY_RESUME) | ||
242 | #define _TIF_SIGPENDING (1<<TIF_SIGPENDING) | 243 | #define _TIF_SIGPENDING (1<<TIF_SIGPENDING) |
243 | #define _TIF_NEED_RESCHED (1<<TIF_NEED_RESCHED) | 244 | #define _TIF_NEED_RESCHED (1<<TIF_NEED_RESCHED) |
244 | #define _TIF_PERFCTR (1<<TIF_PERFCTR) | 245 | #define _TIF_PERFCTR (1<<TIF_PERFCTR) |
@@ -250,8 +251,9 @@ register struct thread_info *current_thread_info_reg asm("g6"); | |||
250 | #define _TIF_POLLING_NRFLAG (1<<TIF_POLLING_NRFLAG) | 251 | #define _TIF_POLLING_NRFLAG (1<<TIF_POLLING_NRFLAG) |
251 | 252 | ||
252 | #define _TIF_USER_WORK_MASK ((0xff << TI_FLAG_WSAVED_SHIFT) | \ | 253 | #define _TIF_USER_WORK_MASK ((0xff << TI_FLAG_WSAVED_SHIFT) | \ |
253 | (_TIF_SIGPENDING | \ | 254 | _TIF_DO_NOTIFY_RESUME_MASK | \ |
254 | _TIF_NEED_RESCHED | _TIF_PERFCTR)) | 255 | _TIF_NEED_RESCHED | _TIF_PERFCTR) |
256 | #define _TIF_DO_NOTIFY_RESUME_MASK (_TIF_NOTIFY_RESUME | _TIF_SIGPENDING) | ||
255 | 257 | ||
256 | /* | 258 | /* |
257 | * Thread-synchronous status. | 259 | * Thread-synchronous status. |
diff --git a/include/asm-sparc/timer.h b/arch/sparc/include/asm/timer.h index 475baa05a96e..612fd2779d9e 100644 --- a/include/asm-sparc/timer.h +++ b/arch/sparc/include/asm/timer.h | |||
@@ -1,8 +1,8 @@ | |||
1 | #ifndef ___ASM_SPARC_TIMER_H | 1 | #ifndef ___ASM_SPARC_TIMER_H |
2 | #define ___ASM_SPARC_TIMER_H | 2 | #define ___ASM_SPARC_TIMER_H |
3 | #if defined(__sparc__) && defined(__arch64__) | 3 | #if defined(__sparc__) && defined(__arch64__) |
4 | #include <asm-sparc/timer_64.h> | 4 | #include <asm/timer_64.h> |
5 | #else | 5 | #else |
6 | #include <asm-sparc/timer_32.h> | 6 | #include <asm/timer_32.h> |
7 | #endif | 7 | #endif |
8 | #endif | 8 | #endif |
diff --git a/include/asm-sparc/timer_32.h b/arch/sparc/include/asm/timer_32.h index 361e53898dd7..361e53898dd7 100644 --- a/include/asm-sparc/timer_32.h +++ b/arch/sparc/include/asm/timer_32.h | |||
diff --git a/include/asm-sparc/timer_64.h b/arch/sparc/include/asm/timer_64.h index 5b779fd1f788..5b779fd1f788 100644 --- a/include/asm-sparc/timer_64.h +++ b/arch/sparc/include/asm/timer_64.h | |||
diff --git a/include/asm-sparc/timex.h b/arch/sparc/include/asm/timex.h index 01d9f199d452..70cc37b73827 100644 --- a/include/asm-sparc/timex.h +++ b/arch/sparc/include/asm/timex.h | |||
@@ -1,8 +1,8 @@ | |||
1 | #ifndef ___ASM_SPARC_TIMEX_H | 1 | #ifndef ___ASM_SPARC_TIMEX_H |
2 | #define ___ASM_SPARC_TIMEX_H | 2 | #define ___ASM_SPARC_TIMEX_H |
3 | #if defined(__sparc__) && defined(__arch64__) | 3 | #if defined(__sparc__) && defined(__arch64__) |
4 | #include <asm-sparc/timex_64.h> | 4 | #include <asm/timex_64.h> |
5 | #else | 5 | #else |
6 | #include <asm-sparc/timex_32.h> | 6 | #include <asm/timex_32.h> |
7 | #endif | 7 | #endif |
8 | #endif | 8 | #endif |
diff --git a/include/asm-sparc/timex_32.h b/arch/sparc/include/asm/timex_32.h index 71b45c90ccae..b6ccdb0d6f7d 100644 --- a/include/asm-sparc/timex_32.h +++ b/arch/sparc/include/asm/timex_32.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * linux/include/asm-sparc/timex.h | 2 | * linux/include/asm/timex.h |
3 | * | 3 | * |
4 | * sparc architecture timex specifications | 4 | * sparc architecture timex specifications |
5 | */ | 5 | */ |
diff --git a/include/asm-sparc/timex_64.h b/arch/sparc/include/asm/timex_64.h index c622535c4560..18b30bc9823b 100644 --- a/include/asm-sparc/timex_64.h +++ b/arch/sparc/include/asm/timex_64.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * linux/include/asm-sparc64/timex.h | 2 | * linux/include/asm/timex.h |
3 | * | 3 | * |
4 | * sparc64 architecture timex specifications | 4 | * sparc64 architecture timex specifications |
5 | */ | 5 | */ |
diff --git a/include/asm-sparc/tlb.h b/arch/sparc/include/asm/tlb.h index a821057327c4..92d0393bbcdc 100644 --- a/include/asm-sparc/tlb.h +++ b/arch/sparc/include/asm/tlb.h | |||
@@ -1,8 +1,8 @@ | |||
1 | #ifndef ___ASM_SPARC_TLB_H | 1 | #ifndef ___ASM_SPARC_TLB_H |
2 | #define ___ASM_SPARC_TLB_H | 2 | #define ___ASM_SPARC_TLB_H |
3 | #if defined(__sparc__) && defined(__arch64__) | 3 | #if defined(__sparc__) && defined(__arch64__) |
4 | #include <asm-sparc/tlb_64.h> | 4 | #include <asm/tlb_64.h> |
5 | #else | 5 | #else |
6 | #include <asm-sparc/tlb_32.h> | 6 | #include <asm/tlb_32.h> |
7 | #endif | 7 | #endif |
8 | #endif | 8 | #endif |
diff --git a/include/asm-sparc/tlb_32.h b/arch/sparc/include/asm/tlb_32.h index 6d02d1ce53f3..6d02d1ce53f3 100644 --- a/include/asm-sparc/tlb_32.h +++ b/arch/sparc/include/asm/tlb_32.h | |||
diff --git a/include/asm-sparc/tlb_64.h b/arch/sparc/include/asm/tlb_64.h index ec81cdedef2c..ec81cdedef2c 100644 --- a/include/asm-sparc/tlb_64.h +++ b/arch/sparc/include/asm/tlb_64.h | |||
diff --git a/include/asm-sparc/tlbflush.h b/arch/sparc/include/asm/tlbflush.h index 6e6bc12227b8..2c9629fad1e2 100644 --- a/include/asm-sparc/tlbflush.h +++ b/arch/sparc/include/asm/tlbflush.h | |||
@@ -1,8 +1,8 @@ | |||
1 | #ifndef ___ASM_SPARC_TLBFLUSH_H | 1 | #ifndef ___ASM_SPARC_TLBFLUSH_H |
2 | #define ___ASM_SPARC_TLBFLUSH_H | 2 | #define ___ASM_SPARC_TLBFLUSH_H |
3 | #if defined(__sparc__) && defined(__arch64__) | 3 | #if defined(__sparc__) && defined(__arch64__) |
4 | #include <asm-sparc/tlbflush_64.h> | 4 | #include <asm/tlbflush_64.h> |
5 | #else | 5 | #else |
6 | #include <asm-sparc/tlbflush_32.h> | 6 | #include <asm/tlbflush_32.h> |
7 | #endif | 7 | #endif |
8 | #endif | 8 | #endif |
diff --git a/include/asm-sparc/tlbflush_32.h b/arch/sparc/include/asm/tlbflush_32.h index fe0a71abc9bb..fe0a71abc9bb 100644 --- a/include/asm-sparc/tlbflush_32.h +++ b/arch/sparc/include/asm/tlbflush_32.h | |||
diff --git a/include/asm-sparc/tlbflush_64.h b/arch/sparc/include/asm/tlbflush_64.h index fbb675dbe0c9..fbb675dbe0c9 100644 --- a/include/asm-sparc/tlbflush_64.h +++ b/arch/sparc/include/asm/tlbflush_64.h | |||
diff --git a/include/asm-sparc/topology.h b/arch/sparc/include/asm/topology.h index ed13630f32e2..ee4f191d394a 100644 --- a/include/asm-sparc/topology.h +++ b/arch/sparc/include/asm/topology.h | |||
@@ -1,8 +1,8 @@ | |||
1 | #ifndef ___ASM_SPARC_TOPOLOGY_H | 1 | #ifndef ___ASM_SPARC_TOPOLOGY_H |
2 | #define ___ASM_SPARC_TOPOLOGY_H | 2 | #define ___ASM_SPARC_TOPOLOGY_H |
3 | #if defined(__sparc__) && defined(__arch64__) | 3 | #if defined(__sparc__) && defined(__arch64__) |
4 | #include <asm-sparc/topology_64.h> | 4 | #include <asm/topology_64.h> |
5 | #else | 5 | #else |
6 | #include <asm-sparc/topology_32.h> | 6 | #include <asm/topology_32.h> |
7 | #endif | 7 | #endif |
8 | #endif | 8 | #endif |
diff --git a/include/asm-sparc/topology_32.h b/arch/sparc/include/asm/topology_32.h index ee5ac9c9da28..ee5ac9c9da28 100644 --- a/include/asm-sparc/topology_32.h +++ b/arch/sparc/include/asm/topology_32.h | |||
diff --git a/include/asm-sparc/topology_64.h b/arch/sparc/include/asm/topology_64.h index 001c04027c82..001c04027c82 100644 --- a/include/asm-sparc/topology_64.h +++ b/arch/sparc/include/asm/topology_64.h | |||
diff --git a/include/asm-sparc/traps.h b/arch/sparc/include/asm/traps.h index bebdbf8f43a8..bebdbf8f43a8 100644 --- a/include/asm-sparc/traps.h +++ b/arch/sparc/include/asm/traps.h | |||
diff --git a/include/asm-sparc/tsb.h b/arch/sparc/include/asm/tsb.h index 76e4299dd9bc..76e4299dd9bc 100644 --- a/include/asm-sparc/tsb.h +++ b/arch/sparc/include/asm/tsb.h | |||
diff --git a/include/asm-sparc/tsunami.h b/arch/sparc/include/asm/tsunami.h index 5bbd1d523baa..5bbd1d523baa 100644 --- a/include/asm-sparc/tsunami.h +++ b/arch/sparc/include/asm/tsunami.h | |||
diff --git a/include/asm-sparc/ttable.h b/arch/sparc/include/asm/ttable.h index 5708ba2719fb..5708ba2719fb 100644 --- a/include/asm-sparc/ttable.h +++ b/arch/sparc/include/asm/ttable.h | |||
diff --git a/include/asm-sparc/turbosparc.h b/arch/sparc/include/asm/turbosparc.h index 17c73282db0a..17c73282db0a 100644 --- a/include/asm-sparc/turbosparc.h +++ b/arch/sparc/include/asm/turbosparc.h | |||
diff --git a/include/asm-sparc/types.h b/arch/sparc/include/asm/types.h index 8c28fde5eaa2..8c28fde5eaa2 100644 --- a/include/asm-sparc/types.h +++ b/arch/sparc/include/asm/types.h | |||
diff --git a/include/asm-sparc/uaccess.h b/arch/sparc/include/asm/uaccess.h index 424facce5238..e88fbe5c0457 100644 --- a/include/asm-sparc/uaccess.h +++ b/arch/sparc/include/asm/uaccess.h | |||
@@ -1,8 +1,8 @@ | |||
1 | #ifndef ___ASM_SPARC_UACCESS_H | 1 | #ifndef ___ASM_SPARC_UACCESS_H |
2 | #define ___ASM_SPARC_UACCESS_H | 2 | #define ___ASM_SPARC_UACCESS_H |
3 | #if defined(__sparc__) && defined(__arch64__) | 3 | #if defined(__sparc__) && defined(__arch64__) |
4 | #include <asm-sparc/uaccess_64.h> | 4 | #include <asm/uaccess_64.h> |
5 | #else | 5 | #else |
6 | #include <asm-sparc/uaccess_32.h> | 6 | #include <asm/uaccess_32.h> |
7 | #endif | 7 | #endif |
8 | #endif | 8 | #endif |
diff --git a/include/asm-sparc/uaccess_32.h b/arch/sparc/include/asm/uaccess_32.h index 47d5619d43fa..47d5619d43fa 100644 --- a/include/asm-sparc/uaccess_32.h +++ b/arch/sparc/include/asm/uaccess_32.h | |||
diff --git a/include/asm-sparc/uaccess_64.h b/arch/sparc/include/asm/uaccess_64.h index 296ef30e05c8..296ef30e05c8 100644 --- a/include/asm-sparc/uaccess_64.h +++ b/arch/sparc/include/asm/uaccess_64.h | |||
diff --git a/include/asm-sparc/uctx.h b/arch/sparc/include/asm/uctx.h index dc937c75ffdd..dc937c75ffdd 100644 --- a/include/asm-sparc/uctx.h +++ b/arch/sparc/include/asm/uctx.h | |||
diff --git a/include/asm-sparc/unaligned.h b/arch/sparc/include/asm/unaligned.h index 11d2d5fb5902..11d2d5fb5902 100644 --- a/include/asm-sparc/unaligned.h +++ b/arch/sparc/include/asm/unaligned.h | |||
diff --git a/include/asm-sparc/unistd.h b/arch/sparc/include/asm/unistd.h index 3c2609618a09..4207fb362da0 100644 --- a/include/asm-sparc/unistd.h +++ b/arch/sparc/include/asm/unistd.h | |||
@@ -1,8 +1,8 @@ | |||
1 | #ifndef ___ASM_SPARC_UNISTD_H | 1 | #ifndef ___ASM_SPARC_UNISTD_H |
2 | #define ___ASM_SPARC_UNISTD_H | 2 | #define ___ASM_SPARC_UNISTD_H |
3 | #if defined(__sparc__) && defined(__arch64__) | 3 | #if defined(__sparc__) && defined(__arch64__) |
4 | #include <asm-sparc/unistd_64.h> | 4 | #include <asm/unistd_64.h> |
5 | #else | 5 | #else |
6 | #include <asm-sparc/unistd_32.h> | 6 | #include <asm/unistd_32.h> |
7 | #endif | 7 | #endif |
8 | #endif | 8 | #endif |
diff --git a/include/asm-sparc/unistd_32.h b/arch/sparc/include/asm/unistd_32.h index 648643a9f139..648643a9f139 100644 --- a/include/asm-sparc/unistd_32.h +++ b/arch/sparc/include/asm/unistd_32.h | |||
diff --git a/include/asm-sparc/unistd_64.h b/arch/sparc/include/asm/unistd_64.h index c5cc0e052321..c5cc0e052321 100644 --- a/include/asm-sparc/unistd_64.h +++ b/arch/sparc/include/asm/unistd_64.h | |||
diff --git a/include/asm-sparc/upa.h b/arch/sparc/include/asm/upa.h index 5b1633223f92..5b1633223f92 100644 --- a/include/asm-sparc/upa.h +++ b/arch/sparc/include/asm/upa.h | |||
diff --git a/include/asm-sparc/user.h b/arch/sparc/include/asm/user.h index 3400ea87f148..3400ea87f148 100644 --- a/include/asm-sparc/user.h +++ b/arch/sparc/include/asm/user.h | |||
diff --git a/include/asm-sparc/utrap.h b/arch/sparc/include/asm/utrap.h index 9da37babbe5b..b10e527c22d9 100644 --- a/include/asm-sparc/utrap.h +++ b/arch/sparc/include/asm/utrap.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * include/asm-sparc64/utrap.h | 2 | * include/asm/utrap.h |
3 | * | 3 | * |
4 | * Copyright (C) 1997 Jakub Jelinek (jj@sunsite.mff.cuni.cz) | 4 | * Copyright (C) 1997 Jakub Jelinek (jj@sunsite.mff.cuni.cz) |
5 | */ | 5 | */ |
diff --git a/include/asm-sparc/vac-ops.h b/arch/sparc/include/asm/vac-ops.h index d10527611f11..d10527611f11 100644 --- a/include/asm-sparc/vac-ops.h +++ b/arch/sparc/include/asm/vac-ops.h | |||
diff --git a/include/asm-sparc/vaddrs.h b/arch/sparc/include/asm/vaddrs.h index a22fed5a3c6b..541e13755cec 100644 --- a/include/asm-sparc/vaddrs.h +++ b/arch/sparc/include/asm/vaddrs.h | |||
@@ -4,7 +4,7 @@ | |||
4 | #include <asm/head.h> | 4 | #include <asm/head.h> |
5 | 5 | ||
6 | /* | 6 | /* |
7 | * asm-sparc/vaddrs.h: Here we define the virtual addresses at | 7 | * asm/vaddrs.h: Here we define the virtual addresses at |
8 | * which important things will be mapped. | 8 | * which important things will be mapped. |
9 | * | 9 | * |
10 | * Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu) | 10 | * Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu) |
diff --git a/include/asm-sparc/vfc_ioctls.h b/arch/sparc/include/asm/vfc_ioctls.h index af8b69007b22..af8b69007b22 100644 --- a/include/asm-sparc/vfc_ioctls.h +++ b/arch/sparc/include/asm/vfc_ioctls.h | |||
diff --git a/include/asm-sparc/vga.h b/arch/sparc/include/asm/vga.h index c69d5b2ba19a..c69d5b2ba19a 100644 --- a/include/asm-sparc/vga.h +++ b/arch/sparc/include/asm/vga.h | |||
diff --git a/include/asm-sparc/viking.h b/arch/sparc/include/asm/viking.h index 989930aeb093..989930aeb093 100644 --- a/include/asm-sparc/viking.h +++ b/arch/sparc/include/asm/viking.h | |||
diff --git a/include/asm-sparc/vio.h b/arch/sparc/include/asm/vio.h index d4de32f0f8af..d4de32f0f8af 100644 --- a/include/asm-sparc/vio.h +++ b/arch/sparc/include/asm/vio.h | |||
diff --git a/include/asm-sparc/visasm.h b/arch/sparc/include/asm/visasm.h index de797b9bf552..de797b9bf552 100644 --- a/include/asm-sparc/visasm.h +++ b/arch/sparc/include/asm/visasm.h | |||
diff --git a/include/asm-sparc/watchdog.h b/arch/sparc/include/asm/watchdog.h index 5baf2d3919cf..5baf2d3919cf 100644 --- a/include/asm-sparc/watchdog.h +++ b/arch/sparc/include/asm/watchdog.h | |||
diff --git a/include/asm-sparc/winmacro.h b/arch/sparc/include/asm/winmacro.h index 5b0a06dc3bcb..5b0a06dc3bcb 100644 --- a/include/asm-sparc/winmacro.h +++ b/arch/sparc/include/asm/winmacro.h | |||
diff --git a/include/asm-sparc/xor.h b/arch/sparc/include/asm/xor.h index 35089a838c3f..8ed591c7db2d 100644 --- a/include/asm-sparc/xor.h +++ b/arch/sparc/include/asm/xor.h | |||
@@ -1,8 +1,8 @@ | |||
1 | #ifndef ___ASM_SPARC_XOR_H | 1 | #ifndef ___ASM_SPARC_XOR_H |
2 | #define ___ASM_SPARC_XOR_H | 2 | #define ___ASM_SPARC_XOR_H |
3 | #if defined(__sparc__) && defined(__arch64__) | 3 | #if defined(__sparc__) && defined(__arch64__) |
4 | #include <asm-sparc/xor_64.h> | 4 | #include <asm/xor_64.h> |
5 | #else | 5 | #else |
6 | #include <asm-sparc/xor_32.h> | 6 | #include <asm/xor_32.h> |
7 | #endif | 7 | #endif |
8 | #endif | 8 | #endif |
diff --git a/include/asm-sparc/xor_32.h b/arch/sparc/include/asm/xor_32.h index f34b2cfa8206..44bfa0787f3f 100644 --- a/include/asm-sparc/xor_32.h +++ b/arch/sparc/include/asm/xor_32.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * include/asm-sparc/xor.h | 2 | * include/asm/xor.h |
3 | * | 3 | * |
4 | * Optimized RAID-5 checksumming functions for 32-bit Sparc. | 4 | * Optimized RAID-5 checksumming functions for 32-bit Sparc. |
5 | * | 5 | * |
diff --git a/include/asm-sparc/xor_64.h b/arch/sparc/include/asm/xor_64.h index a0233884fc94..bee4bf4be3af 100644 --- a/include/asm-sparc/xor_64.h +++ b/arch/sparc/include/asm/xor_64.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * include/asm-sparc64/xor.h | 2 | * include/asm/xor.h |
3 | * | 3 | * |
4 | * High speed xor_block operation for RAID4/5 utilizing the | 4 | * High speed xor_block operation for RAID4/5 utilizing the |
5 | * UltraSparc Visual Instruction Set and Niagara block-init | 5 | * UltraSparc Visual Instruction Set and Niagara block-init |
diff --git a/arch/sparc/kernel/entry.S b/arch/sparc/kernel/entry.S index 2f96256dc515..e8cdf715a546 100644 --- a/arch/sparc/kernel/entry.S +++ b/arch/sparc/kernel/entry.S | |||
@@ -1196,8 +1196,9 @@ sys_rt_sigreturn: | |||
1196 | be 1f | 1196 | be 1f |
1197 | nop | 1197 | nop |
1198 | 1198 | ||
1199 | add %sp, STACKFRAME_SZ, %o0 | ||
1199 | call syscall_trace | 1200 | call syscall_trace |
1200 | nop | 1201 | mov 1, %o1 |
1201 | 1202 | ||
1202 | 1: | 1203 | 1: |
1203 | /* We are returning to a signal handler. */ | 1204 | /* We are returning to a signal handler. */ |
@@ -1287,8 +1288,12 @@ linux_fast_syscall: | |||
1287 | mov %i3, %o3 | 1288 | mov %i3, %o3 |
1288 | 1289 | ||
1289 | linux_syscall_trace: | 1290 | linux_syscall_trace: |
1291 | add %sp, STACKFRAME_SZ, %o0 | ||
1290 | call syscall_trace | 1292 | call syscall_trace |
1291 | nop | 1293 | mov 0, %o1 |
1294 | cmp %o0, 0 | ||
1295 | bne 3f | ||
1296 | mov -ENOSYS, %o0 | ||
1292 | mov %i0, %o0 | 1297 | mov %i0, %o0 |
1293 | mov %i1, %o1 | 1298 | mov %i1, %o1 |
1294 | mov %i2, %o2 | 1299 | mov %i2, %o2 |
@@ -1337,6 +1342,7 @@ syscall_is_too_hard: | |||
1337 | call %l7 | 1342 | call %l7 |
1338 | mov %i5, %o5 | 1343 | mov %i5, %o5 |
1339 | 1344 | ||
1345 | 3: | ||
1340 | st %o0, [%sp + STACKFRAME_SZ + PT_I0] | 1346 | st %o0, [%sp + STACKFRAME_SZ + PT_I0] |
1341 | 1347 | ||
1342 | ret_sys_call: | 1348 | ret_sys_call: |
@@ -1374,6 +1380,8 @@ ret_sys_call: | |||
1374 | st %l2, [%sp + STACKFRAME_SZ + PT_NPC] | 1380 | st %l2, [%sp + STACKFRAME_SZ + PT_NPC] |
1375 | 1381 | ||
1376 | linux_syscall_trace2: | 1382 | linux_syscall_trace2: |
1383 | add %sp, STACKFRAME_SZ, %o0 | ||
1384 | mov 1, %o1 | ||
1377 | call syscall_trace | 1385 | call syscall_trace |
1378 | add %l1, 0x4, %l2 /* npc = npc+4 */ | 1386 | add %l1, 0x4, %l2 /* npc = npc+4 */ |
1379 | st %l1, [%sp + STACKFRAME_SZ + PT_PC] | 1387 | st %l1, [%sp + STACKFRAME_SZ + PT_PC] |
diff --git a/arch/sparc/kernel/ptrace.c b/arch/sparc/kernel/ptrace.c index 81f3b929743f..20699c701412 100644 --- a/arch/sparc/kernel/ptrace.c +++ b/arch/sparc/kernel/ptrace.c | |||
@@ -21,6 +21,7 @@ | |||
21 | #include <linux/signal.h> | 21 | #include <linux/signal.h> |
22 | #include <linux/regset.h> | 22 | #include <linux/regset.h> |
23 | #include <linux/elf.h> | 23 | #include <linux/elf.h> |
24 | #include <linux/tracehook.h> | ||
24 | 25 | ||
25 | #include <asm/pgtable.h> | 26 | #include <asm/pgtable.h> |
26 | #include <asm/system.h> | 27 | #include <asm/system.h> |
@@ -450,21 +451,16 @@ long arch_ptrace(struct task_struct *child, long request, long addr, long data) | |||
450 | return ret; | 451 | return ret; |
451 | } | 452 | } |
452 | 453 | ||
453 | asmlinkage void syscall_trace(void) | 454 | asmlinkage int syscall_trace(struct pt_regs *regs, int syscall_exit_p) |
454 | { | 455 | { |
455 | if (!test_thread_flag(TIF_SYSCALL_TRACE)) | 456 | int ret = 0; |
456 | return; | 457 | |
457 | if (!(current->ptrace & PT_PTRACED)) | 458 | if (test_thread_flag(TIF_SYSCALL_TRACE)) { |
458 | return; | 459 | if (syscall_exit_p) |
459 | ptrace_notify(SIGTRAP | ((current->ptrace & PT_TRACESYSGOOD) | 460 | tracehook_report_syscall_exit(regs, 0); |
460 | ? 0x80 : 0)); | 461 | else |
461 | /* | 462 | ret = tracehook_report_syscall_entry(regs); |
462 | * this isn't the same as continuing with a signal, but it will do | ||
463 | * for normal use. strace only continues with a signal if the | ||
464 | * stopping signal is not SIGTRAP. -brl | ||
465 | */ | ||
466 | if (current->exit_code) { | ||
467 | send_sig (current->exit_code, current, 1); | ||
468 | current->exit_code = 0; | ||
469 | } | 463 | } |
464 | |||
465 | return ret; | ||
470 | } | 466 | } |
diff --git a/arch/sparc/kernel/rtrap.S b/arch/sparc/kernel/rtrap.S index 891f460b7b96..4da2e1f66290 100644 --- a/arch/sparc/kernel/rtrap.S +++ b/arch/sparc/kernel/rtrap.S | |||
@@ -69,12 +69,13 @@ ret_trap_lockless_ipi: | |||
69 | 69 | ||
70 | ld [%curptr + TI_FLAGS], %g2 | 70 | ld [%curptr + TI_FLAGS], %g2 |
71 | signal_p: | 71 | signal_p: |
72 | andcc %g2, (_TIF_SIGPENDING|_TIF_RESTORE_SIGMASK), %g0 | 72 | andcc %g2, _TIF_DO_NOTIFY_RESUME_MASK, %g0 |
73 | bz,a ret_trap_continue | 73 | bz,a ret_trap_continue |
74 | ld [%sp + STACKFRAME_SZ + PT_PSR], %t_psr | 74 | ld [%sp + STACKFRAME_SZ + PT_PSR], %t_psr |
75 | 75 | ||
76 | mov %g2, %o2 | ||
76 | mov %l5, %o1 | 77 | mov %l5, %o1 |
77 | call do_signal | 78 | call do_notify_resume |
78 | add %sp, STACKFRAME_SZ, %o0 ! pt_regs ptr | 79 | add %sp, STACKFRAME_SZ, %o0 ! pt_regs ptr |
79 | 80 | ||
80 | /* Fall through. */ | 81 | /* Fall through. */ |
diff --git a/arch/sparc/kernel/signal.c b/arch/sparc/kernel/signal.c index 3fd1df9f9ba7..c94f91c8b6e0 100644 --- a/arch/sparc/kernel/signal.c +++ b/arch/sparc/kernel/signal.c | |||
@@ -18,6 +18,7 @@ | |||
18 | #include <linux/smp.h> | 18 | #include <linux/smp.h> |
19 | #include <linux/binfmts.h> /* do_coredum */ | 19 | #include <linux/binfmts.h> /* do_coredum */ |
20 | #include <linux/bitops.h> | 20 | #include <linux/bitops.h> |
21 | #include <linux/tracehook.h> | ||
21 | 22 | ||
22 | #include <asm/uaccess.h> | 23 | #include <asm/uaccess.h> |
23 | #include <asm/ptrace.h> | 24 | #include <asm/ptrace.h> |
@@ -513,7 +514,7 @@ static inline void syscall_restart(unsigned long orig_i0, struct pt_regs *regs, | |||
513 | * want to handle. Thus you cannot kill init even with a SIGKILL even by | 514 | * want to handle. Thus you cannot kill init even with a SIGKILL even by |
514 | * mistake. | 515 | * mistake. |
515 | */ | 516 | */ |
516 | asmlinkage void do_signal(struct pt_regs * regs, unsigned long orig_i0) | 517 | static void do_signal(struct pt_regs *regs, unsigned long orig_i0) |
517 | { | 518 | { |
518 | struct k_sigaction ka; | 519 | struct k_sigaction ka; |
519 | int restart_syscall; | 520 | int restart_syscall; |
@@ -552,6 +553,8 @@ asmlinkage void do_signal(struct pt_regs * regs, unsigned long orig_i0) | |||
552 | */ | 553 | */ |
553 | if (test_thread_flag(TIF_RESTORE_SIGMASK)) | 554 | if (test_thread_flag(TIF_RESTORE_SIGMASK)) |
554 | clear_thread_flag(TIF_RESTORE_SIGMASK); | 555 | clear_thread_flag(TIF_RESTORE_SIGMASK); |
556 | |||
557 | tracehook_signal_handler(signr, &info, &ka, regs, 0); | ||
555 | return; | 558 | return; |
556 | } | 559 | } |
557 | if (restart_syscall && | 560 | if (restart_syscall && |
@@ -579,6 +582,17 @@ asmlinkage void do_signal(struct pt_regs * regs, unsigned long orig_i0) | |||
579 | } | 582 | } |
580 | } | 583 | } |
581 | 584 | ||
585 | void do_notify_resume(struct pt_regs *regs, unsigned long orig_i0, | ||
586 | unsigned long thread_info_flags) | ||
587 | { | ||
588 | if (thread_info_flags & (_TIF_SIGPENDING | _TIF_RESTORE_SIGMASK)) | ||
589 | do_signal(regs, orig_i0); | ||
590 | if (thread_info_flags & _TIF_NOTIFY_RESUME) { | ||
591 | clear_thread_flag(TIF_NOTIFY_RESUME); | ||
592 | tracehook_notify_resume(regs); | ||
593 | } | ||
594 | } | ||
595 | |||
582 | asmlinkage int | 596 | asmlinkage int |
583 | do_sys_sigstack(struct sigstack __user *ssptr, struct sigstack __user *ossptr, | 597 | do_sys_sigstack(struct sigstack __user *ssptr, struct sigstack __user *ossptr, |
584 | unsigned long sp) | 598 | unsigned long sp) |
diff --git a/arch/sparc64/Kconfig b/arch/sparc64/Kconfig index 7c88263256af..923a98959fa7 100644 --- a/arch/sparc64/Kconfig +++ b/arch/sparc64/Kconfig | |||
@@ -17,6 +17,7 @@ config SPARC64 | |||
17 | select HAVE_LMB | 17 | select HAVE_LMB |
18 | select HAVE_ARCH_KGDB | 18 | select HAVE_ARCH_KGDB |
19 | select USE_GENERIC_SMP_HELPERS if SMP | 19 | select USE_GENERIC_SMP_HELPERS if SMP |
20 | select HAVE_ARCH_TRACEHOOK | ||
20 | 21 | ||
21 | config GENERIC_TIME | 22 | config GENERIC_TIME |
22 | bool | 23 | bool |
diff --git a/arch/sparc64/kernel/compat_audit.c b/arch/sparc64/kernel/compat_audit.c index c1979482aa92..c831b0a4e660 100644 --- a/arch/sparc64/kernel/compat_audit.c +++ b/arch/sparc64/kernel/compat_audit.c | |||
@@ -1,4 +1,4 @@ | |||
1 | #include <asm-sparc/unistd.h> | 1 | #include <asm/unistd_32.h> |
2 | 2 | ||
3 | unsigned sparc32_dir_class[] = { | 3 | unsigned sparc32_dir_class[] = { |
4 | #include <asm-generic/audit_dir_write.h> | 4 | #include <asm-generic/audit_dir_write.h> |
diff --git a/arch/sparc64/kernel/entry.h b/arch/sparc64/kernel/entry.h index 32fbab620852..fc294a292899 100644 --- a/arch/sparc64/kernel/entry.h +++ b/arch/sparc64/kernel/entry.h | |||
@@ -22,8 +22,7 @@ extern void do_notify_resume(struct pt_regs *regs, | |||
22 | unsigned long orig_i0, | 22 | unsigned long orig_i0, |
23 | unsigned long thread_info_flags); | 23 | unsigned long thread_info_flags); |
24 | 24 | ||
25 | extern asmlinkage void syscall_trace(struct pt_regs *regs, | 25 | extern asmlinkage int syscall_trace(struct pt_regs *regs, int syscall_exit_p); |
26 | int syscall_exit_p); | ||
27 | 26 | ||
28 | extern void bad_trap_tl1(struct pt_regs *regs, long lvl); | 27 | extern void bad_trap_tl1(struct pt_regs *regs, long lvl); |
29 | 28 | ||
diff --git a/arch/sparc64/kernel/ptrace.c b/arch/sparc64/kernel/ptrace.c index f6c9fc92921d..bd578cc4856d 100644 --- a/arch/sparc64/kernel/ptrace.c +++ b/arch/sparc64/kernel/ptrace.c | |||
@@ -23,6 +23,7 @@ | |||
23 | #include <linux/audit.h> | 23 | #include <linux/audit.h> |
24 | #include <linux/signal.h> | 24 | #include <linux/signal.h> |
25 | #include <linux/regset.h> | 25 | #include <linux/regset.h> |
26 | #include <linux/tracehook.h> | ||
26 | #include <linux/compat.h> | 27 | #include <linux/compat.h> |
27 | #include <linux/elf.h> | 28 | #include <linux/elf.h> |
28 | 29 | ||
@@ -1049,8 +1050,10 @@ long arch_ptrace(struct task_struct *child, long request, long addr, long data) | |||
1049 | return ret; | 1050 | return ret; |
1050 | } | 1051 | } |
1051 | 1052 | ||
1052 | asmlinkage void syscall_trace(struct pt_regs *regs, int syscall_exit_p) | 1053 | asmlinkage int syscall_trace(struct pt_regs *regs, int syscall_exit_p) |
1053 | { | 1054 | { |
1055 | int ret = 0; | ||
1056 | |||
1054 | /* do the secure computing check first */ | 1057 | /* do the secure computing check first */ |
1055 | secure_computing(regs->u_regs[UREG_G1]); | 1058 | secure_computing(regs->u_regs[UREG_G1]); |
1056 | 1059 | ||
@@ -1064,27 +1067,14 @@ asmlinkage void syscall_trace(struct pt_regs *regs, int syscall_exit_p) | |||
1064 | audit_syscall_exit(result, regs->u_regs[UREG_I0]); | 1067 | audit_syscall_exit(result, regs->u_regs[UREG_I0]); |
1065 | } | 1068 | } |
1066 | 1069 | ||
1067 | if (!(current->ptrace & PT_PTRACED)) | 1070 | if (test_thread_flag(TIF_SYSCALL_TRACE)) { |
1068 | goto out; | 1071 | if (syscall_exit_p) |
1069 | 1072 | tracehook_report_syscall_exit(regs, 0); | |
1070 | if (!test_thread_flag(TIF_SYSCALL_TRACE)) | 1073 | else |
1071 | goto out; | 1074 | ret = tracehook_report_syscall_entry(regs); |
1072 | |||
1073 | ptrace_notify(SIGTRAP | ((current->ptrace & PT_TRACESYSGOOD) | ||
1074 | ? 0x80 : 0)); | ||
1075 | |||
1076 | /* | ||
1077 | * this isn't the same as continuing with a signal, but it will do | ||
1078 | * for normal use. strace only continues with a signal if the | ||
1079 | * stopping signal is not SIGTRAP. -brl | ||
1080 | */ | ||
1081 | if (current->exit_code) { | ||
1082 | send_sig(current->exit_code, current, 1); | ||
1083 | current->exit_code = 0; | ||
1084 | } | 1075 | } |
1085 | 1076 | ||
1086 | out: | 1077 | if (unlikely(current->audit_context) && !syscall_exit_p && !ret) |
1087 | if (unlikely(current->audit_context) && !syscall_exit_p) | ||
1088 | audit_syscall_entry((test_thread_flag(TIF_32BIT) ? | 1078 | audit_syscall_entry((test_thread_flag(TIF_32BIT) ? |
1089 | AUDIT_ARCH_SPARC : | 1079 | AUDIT_ARCH_SPARC : |
1090 | AUDIT_ARCH_SPARC64), | 1080 | AUDIT_ARCH_SPARC64), |
@@ -1093,4 +1083,6 @@ out: | |||
1093 | regs->u_regs[UREG_I1], | 1083 | regs->u_regs[UREG_I1], |
1094 | regs->u_regs[UREG_I2], | 1084 | regs->u_regs[UREG_I2], |
1095 | regs->u_regs[UREG_I3]); | 1085 | regs->u_regs[UREG_I3]); |
1086 | |||
1087 | return ret; | ||
1096 | } | 1088 | } |
diff --git a/arch/sparc64/kernel/rtrap.S b/arch/sparc64/kernel/rtrap.S index c6fc695fe1fe..97a993c1f7f3 100644 --- a/arch/sparc64/kernel/rtrap.S +++ b/arch/sparc64/kernel/rtrap.S | |||
@@ -46,7 +46,7 @@ __handle_user_windows: | |||
46 | wrpr %g0, RTRAP_PSTATE_IRQOFF, %pstate | 46 | wrpr %g0, RTRAP_PSTATE_IRQOFF, %pstate |
47 | ldx [%g6 + TI_FLAGS], %l0 | 47 | ldx [%g6 + TI_FLAGS], %l0 |
48 | 48 | ||
49 | 1: andcc %l0, _TIF_SIGPENDING, %g0 | 49 | 1: andcc %l0, _TIF_DO_NOTIFY_RESUME_MASK, %g0 |
50 | be,pt %xcc, __handle_user_windows_continue | 50 | be,pt %xcc, __handle_user_windows_continue |
51 | nop | 51 | nop |
52 | mov %l5, %o1 | 52 | mov %l5, %o1 |
@@ -86,7 +86,7 @@ __handle_perfctrs: | |||
86 | wrpr %g0, RTRAP_PSTATE, %pstate | 86 | wrpr %g0, RTRAP_PSTATE, %pstate |
87 | wrpr %g0, RTRAP_PSTATE_IRQOFF, %pstate | 87 | wrpr %g0, RTRAP_PSTATE_IRQOFF, %pstate |
88 | ldx [%g6 + TI_FLAGS], %l0 | 88 | ldx [%g6 + TI_FLAGS], %l0 |
89 | 1: andcc %l0, _TIF_SIGPENDING, %g0 | 89 | 1: andcc %l0, _TIF_DO_NOTIFY_RESUME_MASK, %g0 |
90 | 90 | ||
91 | be,pt %xcc, __handle_perfctrs_continue | 91 | be,pt %xcc, __handle_perfctrs_continue |
92 | sethi %hi(TSTATE_PEF), %o0 | 92 | sethi %hi(TSTATE_PEF), %o0 |
@@ -195,7 +195,7 @@ __handle_preemption_continue: | |||
195 | andcc %l1, %o0, %g0 | 195 | andcc %l1, %o0, %g0 |
196 | andcc %l0, _TIF_NEED_RESCHED, %g0 | 196 | andcc %l0, _TIF_NEED_RESCHED, %g0 |
197 | bne,pn %xcc, __handle_preemption | 197 | bne,pn %xcc, __handle_preemption |
198 | andcc %l0, _TIF_SIGPENDING, %g0 | 198 | andcc %l0, _TIF_DO_NOTIFY_RESUME_MASK, %g0 |
199 | bne,pn %xcc, __handle_signal | 199 | bne,pn %xcc, __handle_signal |
200 | __handle_signal_continue: | 200 | __handle_signal_continue: |
201 | ldub [%g6 + TI_WSAVED], %o2 | 201 | ldub [%g6 + TI_WSAVED], %o2 |
diff --git a/arch/sparc64/kernel/signal.c b/arch/sparc64/kernel/signal.c index 9667e96fd513..d1b84456a9ee 100644 --- a/arch/sparc64/kernel/signal.c +++ b/arch/sparc64/kernel/signal.c | |||
@@ -17,11 +17,13 @@ | |||
17 | #include <linux/errno.h> | 17 | #include <linux/errno.h> |
18 | #include <linux/wait.h> | 18 | #include <linux/wait.h> |
19 | #include <linux/ptrace.h> | 19 | #include <linux/ptrace.h> |
20 | #include <linux/tracehook.h> | ||
20 | #include <linux/unistd.h> | 21 | #include <linux/unistd.h> |
21 | #include <linux/mm.h> | 22 | #include <linux/mm.h> |
22 | #include <linux/tty.h> | 23 | #include <linux/tty.h> |
23 | #include <linux/binfmts.h> | 24 | #include <linux/binfmts.h> |
24 | #include <linux/bitops.h> | 25 | #include <linux/bitops.h> |
26 | #include <linux/tracehook.h> | ||
25 | 27 | ||
26 | #include <asm/uaccess.h> | 28 | #include <asm/uaccess.h> |
27 | #include <asm/ptrace.h> | 29 | #include <asm/ptrace.h> |
@@ -574,6 +576,8 @@ static void do_signal(struct pt_regs *regs, unsigned long orig_i0) | |||
574 | * clear the TS_RESTORE_SIGMASK flag. | 576 | * clear the TS_RESTORE_SIGMASK flag. |
575 | */ | 577 | */ |
576 | current_thread_info()->status &= ~TS_RESTORE_SIGMASK; | 578 | current_thread_info()->status &= ~TS_RESTORE_SIGMASK; |
579 | |||
580 | tracehook_signal_handler(signr, &info, &ka, regs, 0); | ||
577 | return; | 581 | return; |
578 | } | 582 | } |
579 | if (restart_syscall && | 583 | if (restart_syscall && |
@@ -605,4 +609,8 @@ void do_notify_resume(struct pt_regs *regs, unsigned long orig_i0, unsigned long | |||
605 | { | 609 | { |
606 | if (thread_info_flags & _TIF_SIGPENDING) | 610 | if (thread_info_flags & _TIF_SIGPENDING) |
607 | do_signal(regs, orig_i0); | 611 | do_signal(regs, orig_i0); |
612 | if (thread_info_flags & _TIF_NOTIFY_RESUME) { | ||
613 | clear_thread_flag(TIF_NOTIFY_RESUME); | ||
614 | tracehook_notify_resume(regs); | ||
615 | } | ||
608 | } | 616 | } |
diff --git a/arch/sparc64/kernel/signal32.c b/arch/sparc64/kernel/signal32.c index 97cdd1bf4a10..ba5b09ad6666 100644 --- a/arch/sparc64/kernel/signal32.c +++ b/arch/sparc64/kernel/signal32.c | |||
@@ -19,6 +19,7 @@ | |||
19 | #include <linux/binfmts.h> | 19 | #include <linux/binfmts.h> |
20 | #include <linux/compat.h> | 20 | #include <linux/compat.h> |
21 | #include <linux/bitops.h> | 21 | #include <linux/bitops.h> |
22 | #include <linux/tracehook.h> | ||
22 | 23 | ||
23 | #include <asm/uaccess.h> | 24 | #include <asm/uaccess.h> |
24 | #include <asm/ptrace.h> | 25 | #include <asm/ptrace.h> |
@@ -794,6 +795,8 @@ void do_signal32(sigset_t *oldset, struct pt_regs * regs, | |||
794 | * clear the TS_RESTORE_SIGMASK flag. | 795 | * clear the TS_RESTORE_SIGMASK flag. |
795 | */ | 796 | */ |
796 | current_thread_info()->status &= ~TS_RESTORE_SIGMASK; | 797 | current_thread_info()->status &= ~TS_RESTORE_SIGMASK; |
798 | |||
799 | tracehook_signal_handler(signr, &info, &ka, regs, 0); | ||
797 | return; | 800 | return; |
798 | } | 801 | } |
799 | if (restart_syscall && | 802 | if (restart_syscall && |
diff --git a/arch/sparc64/kernel/syscalls.S b/arch/sparc64/kernel/syscalls.S index db19ed67acf6..a2f24270ed8a 100644 --- a/arch/sparc64/kernel/syscalls.S +++ b/arch/sparc64/kernel/syscalls.S | |||
@@ -162,6 +162,8 @@ linux_syscall_trace32: | |||
162 | add %sp, PTREGS_OFF, %o0 | 162 | add %sp, PTREGS_OFF, %o0 |
163 | call syscall_trace | 163 | call syscall_trace |
164 | clr %o1 | 164 | clr %o1 |
165 | brnz,pn %o0, 3f | ||
166 | mov -ENOSYS, %o0 | ||
165 | srl %i0, 0, %o0 | 167 | srl %i0, 0, %o0 |
166 | srl %i4, 0, %o4 | 168 | srl %i4, 0, %o4 |
167 | srl %i1, 0, %o1 | 169 | srl %i1, 0, %o1 |
@@ -173,6 +175,8 @@ linux_syscall_trace: | |||
173 | add %sp, PTREGS_OFF, %o0 | 175 | add %sp, PTREGS_OFF, %o0 |
174 | call syscall_trace | 176 | call syscall_trace |
175 | clr %o1 | 177 | clr %o1 |
178 | brnz,pn %o0, 3f | ||
179 | mov -ENOSYS, %o0 | ||
176 | mov %i0, %o0 | 180 | mov %i0, %o0 |
177 | mov %i1, %o1 | 181 | mov %i1, %o1 |
178 | mov %i2, %o2 | 182 | mov %i2, %o2 |
diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig index b6fa2877b173..3d0f2b6a5a16 100644 --- a/arch/x86/Kconfig +++ b/arch/x86/Kconfig | |||
@@ -30,6 +30,7 @@ config X86 | |||
30 | select HAVE_FTRACE | 30 | select HAVE_FTRACE |
31 | select HAVE_KVM if ((X86_32 && !X86_VOYAGER && !X86_VISWS && !X86_NUMAQ) || X86_64) | 31 | select HAVE_KVM if ((X86_32 && !X86_VOYAGER && !X86_VISWS && !X86_NUMAQ) || X86_64) |
32 | select HAVE_ARCH_KGDB if !X86_VOYAGER | 32 | select HAVE_ARCH_KGDB if !X86_VOYAGER |
33 | select HAVE_GENERIC_DMA_COHERENT if X86_32 | ||
33 | select HAVE_EFFICIENT_UNALIGNED_ACCESS | 34 | select HAVE_EFFICIENT_UNALIGNED_ACCESS |
34 | 35 | ||
35 | config ARCH_DEFCONFIG | 36 | config ARCH_DEFCONFIG |
diff --git a/arch/x86/kernel/acpi/cstate.c b/arch/x86/kernel/acpi/cstate.c index 9220cf46aa10..c2502eb9aa83 100644 --- a/arch/x86/kernel/acpi/cstate.c +++ b/arch/x86/kernel/acpi/cstate.c | |||
@@ -73,7 +73,6 @@ int acpi_processor_ffh_cstate_probe(unsigned int cpu, | |||
73 | struct cpuinfo_x86 *c = &cpu_data(cpu); | 73 | struct cpuinfo_x86 *c = &cpu_data(cpu); |
74 | 74 | ||
75 | cpumask_t saved_mask; | 75 | cpumask_t saved_mask; |
76 | cpumask_of_cpu_ptr(new_mask, cpu); | ||
77 | int retval; | 76 | int retval; |
78 | unsigned int eax, ebx, ecx, edx; | 77 | unsigned int eax, ebx, ecx, edx; |
79 | unsigned int edx_part; | 78 | unsigned int edx_part; |
@@ -92,7 +91,7 @@ int acpi_processor_ffh_cstate_probe(unsigned int cpu, | |||
92 | 91 | ||
93 | /* Make sure we are running on right CPU */ | 92 | /* Make sure we are running on right CPU */ |
94 | saved_mask = current->cpus_allowed; | 93 | saved_mask = current->cpus_allowed; |
95 | retval = set_cpus_allowed_ptr(current, new_mask); | 94 | retval = set_cpus_allowed_ptr(current, &cpumask_of_cpu(cpu)); |
96 | if (retval) | 95 | if (retval) |
97 | return -1; | 96 | return -1; |
98 | 97 | ||
diff --git a/arch/x86/kernel/amd_iommu.c b/arch/x86/kernel/amd_iommu.c index 74697408576f..22d7d050905d 100644 --- a/arch/x86/kernel/amd_iommu.c +++ b/arch/x86/kernel/amd_iommu.c | |||
@@ -29,9 +29,6 @@ | |||
29 | 29 | ||
30 | #define CMD_SET_TYPE(cmd, t) ((cmd)->data[1] |= ((t) << 28)) | 30 | #define CMD_SET_TYPE(cmd, t) ((cmd)->data[1] |= ((t) << 28)) |
31 | 31 | ||
32 | #define to_pages(addr, size) \ | ||
33 | (round_up(((addr) & ~PAGE_MASK) + (size), PAGE_SIZE) >> PAGE_SHIFT) | ||
34 | |||
35 | #define EXIT_LOOP_COUNT 10000000 | 32 | #define EXIT_LOOP_COUNT 10000000 |
36 | 33 | ||
37 | static DEFINE_RWLOCK(amd_iommu_devtable_lock); | 34 | static DEFINE_RWLOCK(amd_iommu_devtable_lock); |
@@ -185,7 +182,7 @@ static int iommu_flush_pages(struct amd_iommu *iommu, u16 domid, | |||
185 | u64 address, size_t size) | 182 | u64 address, size_t size) |
186 | { | 183 | { |
187 | int s = 0; | 184 | int s = 0; |
188 | unsigned pages = to_pages(address, size); | 185 | unsigned pages = iommu_num_pages(address, size); |
189 | 186 | ||
190 | address &= PAGE_MASK; | 187 | address &= PAGE_MASK; |
191 | 188 | ||
@@ -557,8 +554,8 @@ static struct dma_ops_domain *dma_ops_domain_alloc(struct amd_iommu *iommu, | |||
557 | if (iommu->exclusion_start && | 554 | if (iommu->exclusion_start && |
558 | iommu->exclusion_start < dma_dom->aperture_size) { | 555 | iommu->exclusion_start < dma_dom->aperture_size) { |
559 | unsigned long startpage = iommu->exclusion_start >> PAGE_SHIFT; | 556 | unsigned long startpage = iommu->exclusion_start >> PAGE_SHIFT; |
560 | int pages = to_pages(iommu->exclusion_start, | 557 | int pages = iommu_num_pages(iommu->exclusion_start, |
561 | iommu->exclusion_length); | 558 | iommu->exclusion_length); |
562 | dma_ops_reserve_addresses(dma_dom, startpage, pages); | 559 | dma_ops_reserve_addresses(dma_dom, startpage, pages); |
563 | } | 560 | } |
564 | 561 | ||
@@ -767,7 +764,7 @@ static dma_addr_t __map_single(struct device *dev, | |||
767 | unsigned int pages; | 764 | unsigned int pages; |
768 | int i; | 765 | int i; |
769 | 766 | ||
770 | pages = to_pages(paddr, size); | 767 | pages = iommu_num_pages(paddr, size); |
771 | paddr &= PAGE_MASK; | 768 | paddr &= PAGE_MASK; |
772 | 769 | ||
773 | address = dma_ops_alloc_addresses(dev, dma_dom, pages); | 770 | address = dma_ops_alloc_addresses(dev, dma_dom, pages); |
@@ -802,7 +799,7 @@ static void __unmap_single(struct amd_iommu *iommu, | |||
802 | if ((dma_addr == 0) || (dma_addr + size > dma_dom->aperture_size)) | 799 | if ((dma_addr == 0) || (dma_addr + size > dma_dom->aperture_size)) |
803 | return; | 800 | return; |
804 | 801 | ||
805 | pages = to_pages(dma_addr, size); | 802 | pages = iommu_num_pages(dma_addr, size); |
806 | dma_addr &= PAGE_MASK; | 803 | dma_addr &= PAGE_MASK; |
807 | start = dma_addr; | 804 | start = dma_addr; |
808 | 805 | ||
diff --git a/arch/x86/kernel/cpu/cpufreq/acpi-cpufreq.c b/arch/x86/kernel/cpu/cpufreq/acpi-cpufreq.c index ff2fff56f0a8..dd097b835839 100644 --- a/arch/x86/kernel/cpu/cpufreq/acpi-cpufreq.c +++ b/arch/x86/kernel/cpu/cpufreq/acpi-cpufreq.c | |||
@@ -200,12 +200,10 @@ static void drv_read(struct drv_cmd *cmd) | |||
200 | static void drv_write(struct drv_cmd *cmd) | 200 | static void drv_write(struct drv_cmd *cmd) |
201 | { | 201 | { |
202 | cpumask_t saved_mask = current->cpus_allowed; | 202 | cpumask_t saved_mask = current->cpus_allowed; |
203 | cpumask_of_cpu_ptr_declare(cpu_mask); | ||
204 | unsigned int i; | 203 | unsigned int i; |
205 | 204 | ||
206 | for_each_cpu_mask_nr(i, cmd->mask) { | 205 | for_each_cpu_mask_nr(i, cmd->mask) { |
207 | cpumask_of_cpu_ptr_next(cpu_mask, i); | 206 | set_cpus_allowed_ptr(current, &cpumask_of_cpu(i)); |
208 | set_cpus_allowed_ptr(current, cpu_mask); | ||
209 | do_drv_write(cmd); | 207 | do_drv_write(cmd); |
210 | } | 208 | } |
211 | 209 | ||
@@ -269,12 +267,11 @@ static unsigned int get_measured_perf(unsigned int cpu) | |||
269 | } aperf_cur, mperf_cur; | 267 | } aperf_cur, mperf_cur; |
270 | 268 | ||
271 | cpumask_t saved_mask; | 269 | cpumask_t saved_mask; |
272 | cpumask_of_cpu_ptr(cpu_mask, cpu); | ||
273 | unsigned int perf_percent; | 270 | unsigned int perf_percent; |
274 | unsigned int retval; | 271 | unsigned int retval; |
275 | 272 | ||
276 | saved_mask = current->cpus_allowed; | 273 | saved_mask = current->cpus_allowed; |
277 | set_cpus_allowed_ptr(current, cpu_mask); | 274 | set_cpus_allowed_ptr(current, &cpumask_of_cpu(cpu)); |
278 | if (get_cpu() != cpu) { | 275 | if (get_cpu() != cpu) { |
279 | /* We were not able to run on requested processor */ | 276 | /* We were not able to run on requested processor */ |
280 | put_cpu(); | 277 | put_cpu(); |
@@ -340,7 +337,6 @@ static unsigned int get_measured_perf(unsigned int cpu) | |||
340 | 337 | ||
341 | static unsigned int get_cur_freq_on_cpu(unsigned int cpu) | 338 | static unsigned int get_cur_freq_on_cpu(unsigned int cpu) |
342 | { | 339 | { |
343 | cpumask_of_cpu_ptr(cpu_mask, cpu); | ||
344 | struct acpi_cpufreq_data *data = per_cpu(drv_data, cpu); | 340 | struct acpi_cpufreq_data *data = per_cpu(drv_data, cpu); |
345 | unsigned int freq; | 341 | unsigned int freq; |
346 | unsigned int cached_freq; | 342 | unsigned int cached_freq; |
@@ -353,7 +349,7 @@ static unsigned int get_cur_freq_on_cpu(unsigned int cpu) | |||
353 | } | 349 | } |
354 | 350 | ||
355 | cached_freq = data->freq_table[data->acpi_data->state].frequency; | 351 | cached_freq = data->freq_table[data->acpi_data->state].frequency; |
356 | freq = extract_freq(get_cur_val(cpu_mask), data); | 352 | freq = extract_freq(get_cur_val(&cpumask_of_cpu(cpu)), data); |
357 | if (freq != cached_freq) { | 353 | if (freq != cached_freq) { |
358 | /* | 354 | /* |
359 | * The dreaded BIOS frequency change behind our back. | 355 | * The dreaded BIOS frequency change behind our back. |
diff --git a/arch/x86/kernel/cpu/cpufreq/powernow-k8.c b/arch/x86/kernel/cpu/cpufreq/powernow-k8.c index 53c7b6936973..c45ca6d4dce1 100644 --- a/arch/x86/kernel/cpu/cpufreq/powernow-k8.c +++ b/arch/x86/kernel/cpu/cpufreq/powernow-k8.c | |||
@@ -479,12 +479,11 @@ static int core_voltage_post_transition(struct powernow_k8_data *data, u32 reqvi | |||
479 | static int check_supported_cpu(unsigned int cpu) | 479 | static int check_supported_cpu(unsigned int cpu) |
480 | { | 480 | { |
481 | cpumask_t oldmask; | 481 | cpumask_t oldmask; |
482 | cpumask_of_cpu_ptr(cpu_mask, cpu); | ||
483 | u32 eax, ebx, ecx, edx; | 482 | u32 eax, ebx, ecx, edx; |
484 | unsigned int rc = 0; | 483 | unsigned int rc = 0; |
485 | 484 | ||
486 | oldmask = current->cpus_allowed; | 485 | oldmask = current->cpus_allowed; |
487 | set_cpus_allowed_ptr(current, cpu_mask); | 486 | set_cpus_allowed_ptr(current, &cpumask_of_cpu(cpu)); |
488 | 487 | ||
489 | if (smp_processor_id() != cpu) { | 488 | if (smp_processor_id() != cpu) { |
490 | printk(KERN_ERR PFX "limiting to cpu %u failed\n", cpu); | 489 | printk(KERN_ERR PFX "limiting to cpu %u failed\n", cpu); |
@@ -1017,7 +1016,6 @@ static int transition_frequency_pstate(struct powernow_k8_data *data, unsigned i | |||
1017 | static int powernowk8_target(struct cpufreq_policy *pol, unsigned targfreq, unsigned relation) | 1016 | static int powernowk8_target(struct cpufreq_policy *pol, unsigned targfreq, unsigned relation) |
1018 | { | 1017 | { |
1019 | cpumask_t oldmask; | 1018 | cpumask_t oldmask; |
1020 | cpumask_of_cpu_ptr(cpu_mask, pol->cpu); | ||
1021 | struct powernow_k8_data *data = per_cpu(powernow_data, pol->cpu); | 1019 | struct powernow_k8_data *data = per_cpu(powernow_data, pol->cpu); |
1022 | u32 checkfid; | 1020 | u32 checkfid; |
1023 | u32 checkvid; | 1021 | u32 checkvid; |
@@ -1032,7 +1030,7 @@ static int powernowk8_target(struct cpufreq_policy *pol, unsigned targfreq, unsi | |||
1032 | 1030 | ||
1033 | /* only run on specific CPU from here on */ | 1031 | /* only run on specific CPU from here on */ |
1034 | oldmask = current->cpus_allowed; | 1032 | oldmask = current->cpus_allowed; |
1035 | set_cpus_allowed_ptr(current, cpu_mask); | 1033 | set_cpus_allowed_ptr(current, &cpumask_of_cpu(pol->cpu)); |
1036 | 1034 | ||
1037 | if (smp_processor_id() != pol->cpu) { | 1035 | if (smp_processor_id() != pol->cpu) { |
1038 | printk(KERN_ERR PFX "limiting to cpu %u failed\n", pol->cpu); | 1036 | printk(KERN_ERR PFX "limiting to cpu %u failed\n", pol->cpu); |
@@ -1107,7 +1105,6 @@ static int __cpuinit powernowk8_cpu_init(struct cpufreq_policy *pol) | |||
1107 | { | 1105 | { |
1108 | struct powernow_k8_data *data; | 1106 | struct powernow_k8_data *data; |
1109 | cpumask_t oldmask; | 1107 | cpumask_t oldmask; |
1110 | cpumask_of_cpu_ptr_declare(newmask); | ||
1111 | int rc; | 1108 | int rc; |
1112 | 1109 | ||
1113 | if (!cpu_online(pol->cpu)) | 1110 | if (!cpu_online(pol->cpu)) |
@@ -1159,8 +1156,7 @@ static int __cpuinit powernowk8_cpu_init(struct cpufreq_policy *pol) | |||
1159 | 1156 | ||
1160 | /* only run on specific CPU from here on */ | 1157 | /* only run on specific CPU from here on */ |
1161 | oldmask = current->cpus_allowed; | 1158 | oldmask = current->cpus_allowed; |
1162 | cpumask_of_cpu_ptr_next(newmask, pol->cpu); | 1159 | set_cpus_allowed_ptr(current, &cpumask_of_cpu(pol->cpu)); |
1163 | set_cpus_allowed_ptr(current, newmask); | ||
1164 | 1160 | ||
1165 | if (smp_processor_id() != pol->cpu) { | 1161 | if (smp_processor_id() != pol->cpu) { |
1166 | printk(KERN_ERR PFX "limiting to cpu %u failed\n", pol->cpu); | 1162 | printk(KERN_ERR PFX "limiting to cpu %u failed\n", pol->cpu); |
@@ -1182,7 +1178,7 @@ static int __cpuinit powernowk8_cpu_init(struct cpufreq_policy *pol) | |||
1182 | set_cpus_allowed_ptr(current, &oldmask); | 1178 | set_cpus_allowed_ptr(current, &oldmask); |
1183 | 1179 | ||
1184 | if (cpu_family == CPU_HW_PSTATE) | 1180 | if (cpu_family == CPU_HW_PSTATE) |
1185 | pol->cpus = *newmask; | 1181 | pol->cpus = cpumask_of_cpu(pol->cpu); |
1186 | else | 1182 | else |
1187 | pol->cpus = per_cpu(cpu_core_map, pol->cpu); | 1183 | pol->cpus = per_cpu(cpu_core_map, pol->cpu); |
1188 | data->available_cores = &(pol->cpus); | 1184 | data->available_cores = &(pol->cpus); |
@@ -1248,7 +1244,6 @@ static unsigned int powernowk8_get (unsigned int cpu) | |||
1248 | { | 1244 | { |
1249 | struct powernow_k8_data *data; | 1245 | struct powernow_k8_data *data; |
1250 | cpumask_t oldmask = current->cpus_allowed; | 1246 | cpumask_t oldmask = current->cpus_allowed; |
1251 | cpumask_of_cpu_ptr(newmask, cpu); | ||
1252 | unsigned int khz = 0; | 1247 | unsigned int khz = 0; |
1253 | unsigned int first; | 1248 | unsigned int first; |
1254 | 1249 | ||
@@ -1258,7 +1253,7 @@ static unsigned int powernowk8_get (unsigned int cpu) | |||
1258 | if (!data) | 1253 | if (!data) |
1259 | return -EINVAL; | 1254 | return -EINVAL; |
1260 | 1255 | ||
1261 | set_cpus_allowed_ptr(current, newmask); | 1256 | set_cpus_allowed_ptr(current, &cpumask_of_cpu(cpu)); |
1262 | if (smp_processor_id() != cpu) { | 1257 | if (smp_processor_id() != cpu) { |
1263 | printk(KERN_ERR PFX | 1258 | printk(KERN_ERR PFX |
1264 | "limiting to CPU %d failed in powernowk8_get\n", cpu); | 1259 | "limiting to CPU %d failed in powernowk8_get\n", cpu); |
diff --git a/arch/x86/kernel/cpu/cpufreq/speedstep-centrino.c b/arch/x86/kernel/cpu/cpufreq/speedstep-centrino.c index ca2ac13b7af2..15e13c01cc36 100644 --- a/arch/x86/kernel/cpu/cpufreq/speedstep-centrino.c +++ b/arch/x86/kernel/cpu/cpufreq/speedstep-centrino.c | |||
@@ -324,10 +324,9 @@ static unsigned int get_cur_freq(unsigned int cpu) | |||
324 | unsigned l, h; | 324 | unsigned l, h; |
325 | unsigned clock_freq; | 325 | unsigned clock_freq; |
326 | cpumask_t saved_mask; | 326 | cpumask_t saved_mask; |
327 | cpumask_of_cpu_ptr(new_mask, cpu); | ||
328 | 327 | ||
329 | saved_mask = current->cpus_allowed; | 328 | saved_mask = current->cpus_allowed; |
330 | set_cpus_allowed_ptr(current, new_mask); | 329 | set_cpus_allowed_ptr(current, &cpumask_of_cpu(cpu)); |
331 | if (smp_processor_id() != cpu) | 330 | if (smp_processor_id() != cpu) |
332 | return 0; | 331 | return 0; |
333 | 332 | ||
@@ -585,15 +584,12 @@ static int centrino_target (struct cpufreq_policy *policy, | |||
585 | * Best effort undo.. | 584 | * Best effort undo.. |
586 | */ | 585 | */ |
587 | 586 | ||
588 | if (!cpus_empty(*covered_cpus)) { | 587 | if (!cpus_empty(*covered_cpus)) |
589 | cpumask_of_cpu_ptr_declare(new_mask); | ||
590 | |||
591 | for_each_cpu_mask_nr(j, *covered_cpus) { | 588 | for_each_cpu_mask_nr(j, *covered_cpus) { |
592 | cpumask_of_cpu_ptr_next(new_mask, j); | 589 | set_cpus_allowed_ptr(current, |
593 | set_cpus_allowed_ptr(current, new_mask); | 590 | &cpumask_of_cpu(j)); |
594 | wrmsr(MSR_IA32_PERF_CTL, oldmsr, h); | 591 | wrmsr(MSR_IA32_PERF_CTL, oldmsr, h); |
595 | } | 592 | } |
596 | } | ||
597 | 593 | ||
598 | tmp = freqs.new; | 594 | tmp = freqs.new; |
599 | freqs.new = freqs.old; | 595 | freqs.new = freqs.old; |
diff --git a/arch/x86/kernel/cpu/cpufreq/speedstep-ich.c b/arch/x86/kernel/cpu/cpufreq/speedstep-ich.c index 2f3728dc24f6..191f7263c61d 100644 --- a/arch/x86/kernel/cpu/cpufreq/speedstep-ich.c +++ b/arch/x86/kernel/cpu/cpufreq/speedstep-ich.c | |||
@@ -244,8 +244,7 @@ static unsigned int _speedstep_get(const cpumask_t *cpus) | |||
244 | 244 | ||
245 | static unsigned int speedstep_get(unsigned int cpu) | 245 | static unsigned int speedstep_get(unsigned int cpu) |
246 | { | 246 | { |
247 | cpumask_of_cpu_ptr(newmask, cpu); | 247 | return _speedstep_get(&cpumask_of_cpu(cpu)); |
248 | return _speedstep_get(newmask); | ||
249 | } | 248 | } |
250 | 249 | ||
251 | /** | 250 | /** |
diff --git a/arch/x86/kernel/cpu/intel_cacheinfo.c b/arch/x86/kernel/cpu/intel_cacheinfo.c index 650d40f7912b..6b0a10b002f1 100644 --- a/arch/x86/kernel/cpu/intel_cacheinfo.c +++ b/arch/x86/kernel/cpu/intel_cacheinfo.c | |||
@@ -516,7 +516,6 @@ static int __cpuinit detect_cache_attributes(unsigned int cpu) | |||
516 | unsigned long j; | 516 | unsigned long j; |
517 | int retval; | 517 | int retval; |
518 | cpumask_t oldmask; | 518 | cpumask_t oldmask; |
519 | cpumask_of_cpu_ptr(newmask, cpu); | ||
520 | 519 | ||
521 | if (num_cache_leaves == 0) | 520 | if (num_cache_leaves == 0) |
522 | return -ENOENT; | 521 | return -ENOENT; |
@@ -527,7 +526,7 @@ static int __cpuinit detect_cache_attributes(unsigned int cpu) | |||
527 | return -ENOMEM; | 526 | return -ENOMEM; |
528 | 527 | ||
529 | oldmask = current->cpus_allowed; | 528 | oldmask = current->cpus_allowed; |
530 | retval = set_cpus_allowed_ptr(current, newmask); | 529 | retval = set_cpus_allowed_ptr(current, &cpumask_of_cpu(cpu)); |
531 | if (retval) | 530 | if (retval) |
532 | goto out; | 531 | goto out; |
533 | 532 | ||
diff --git a/arch/x86/kernel/ldt.c b/arch/x86/kernel/ldt.c index 4895e0634d22..6e388412a854 100644 --- a/arch/x86/kernel/ldt.c +++ b/arch/x86/kernel/ldt.c | |||
@@ -64,12 +64,10 @@ static int alloc_ldt(mm_context_t *pc, int mincount, int reload) | |||
64 | 64 | ||
65 | if (reload) { | 65 | if (reload) { |
66 | #ifdef CONFIG_SMP | 66 | #ifdef CONFIG_SMP |
67 | cpumask_of_cpu_ptr_declare(mask); | ||
68 | |||
69 | preempt_disable(); | 67 | preempt_disable(); |
70 | load_LDT(pc); | 68 | load_LDT(pc); |
71 | cpumask_of_cpu_ptr_next(mask, smp_processor_id()); | 69 | if (!cpus_equal(current->mm->cpu_vm_mask, |
72 | if (!cpus_equal(current->mm->cpu_vm_mask, *mask)) | 70 | cpumask_of_cpu(smp_processor_id()))) |
73 | smp_call_function(flush_ldt, current->mm, 1); | 71 | smp_call_function(flush_ldt, current->mm, 1); |
74 | preempt_enable(); | 72 | preempt_enable(); |
75 | #else | 73 | #else |
diff --git a/arch/x86/kernel/microcode.c b/arch/x86/kernel/microcode.c index 6994c751590e..652fa5c38ebe 100644 --- a/arch/x86/kernel/microcode.c +++ b/arch/x86/kernel/microcode.c | |||
@@ -388,7 +388,6 @@ static int do_microcode_update (void) | |||
388 | void *new_mc = NULL; | 388 | void *new_mc = NULL; |
389 | int cpu; | 389 | int cpu; |
390 | cpumask_t old; | 390 | cpumask_t old; |
391 | cpumask_of_cpu_ptr_declare(newmask); | ||
392 | 391 | ||
393 | old = current->cpus_allowed; | 392 | old = current->cpus_allowed; |
394 | 393 | ||
@@ -405,8 +404,7 @@ static int do_microcode_update (void) | |||
405 | 404 | ||
406 | if (!uci->valid) | 405 | if (!uci->valid) |
407 | continue; | 406 | continue; |
408 | cpumask_of_cpu_ptr_next(newmask, cpu); | 407 | set_cpus_allowed_ptr(current, &cpumask_of_cpu(cpu)); |
409 | set_cpus_allowed_ptr(current, newmask); | ||
410 | error = get_maching_microcode(new_mc, cpu); | 408 | error = get_maching_microcode(new_mc, cpu); |
411 | if (error < 0) | 409 | if (error < 0) |
412 | goto out; | 410 | goto out; |
@@ -576,7 +574,6 @@ static int apply_microcode_check_cpu(int cpu) | |||
576 | struct cpuinfo_x86 *c = &cpu_data(cpu); | 574 | struct cpuinfo_x86 *c = &cpu_data(cpu); |
577 | struct ucode_cpu_info *uci = ucode_cpu_info + cpu; | 575 | struct ucode_cpu_info *uci = ucode_cpu_info + cpu; |
578 | cpumask_t old; | 576 | cpumask_t old; |
579 | cpumask_of_cpu_ptr(newmask, cpu); | ||
580 | unsigned int val[2]; | 577 | unsigned int val[2]; |
581 | int err = 0; | 578 | int err = 0; |
582 | 579 | ||
@@ -585,7 +582,7 @@ static int apply_microcode_check_cpu(int cpu) | |||
585 | return 0; | 582 | return 0; |
586 | 583 | ||
587 | old = current->cpus_allowed; | 584 | old = current->cpus_allowed; |
588 | set_cpus_allowed_ptr(current, newmask); | 585 | set_cpus_allowed_ptr(current, &cpumask_of_cpu(cpu)); |
589 | 586 | ||
590 | /* Check if the microcode we have in memory matches the CPU */ | 587 | /* Check if the microcode we have in memory matches the CPU */ |
591 | if (c->x86_vendor != X86_VENDOR_INTEL || c->x86 < 6 || | 588 | if (c->x86_vendor != X86_VENDOR_INTEL || c->x86 < 6 || |
@@ -623,12 +620,11 @@ static int apply_microcode_check_cpu(int cpu) | |||
623 | static void microcode_init_cpu(int cpu, int resume) | 620 | static void microcode_init_cpu(int cpu, int resume) |
624 | { | 621 | { |
625 | cpumask_t old; | 622 | cpumask_t old; |
626 | cpumask_of_cpu_ptr(newmask, cpu); | ||
627 | struct ucode_cpu_info *uci = ucode_cpu_info + cpu; | 623 | struct ucode_cpu_info *uci = ucode_cpu_info + cpu; |
628 | 624 | ||
629 | old = current->cpus_allowed; | 625 | old = current->cpus_allowed; |
630 | 626 | ||
631 | set_cpus_allowed_ptr(current, newmask); | 627 | set_cpus_allowed_ptr(current, &cpumask_of_cpu(cpu)); |
632 | mutex_lock(µcode_mutex); | 628 | mutex_lock(µcode_mutex); |
633 | collect_cpu_info(cpu); | 629 | collect_cpu_info(cpu); |
634 | if (uci->valid && system_state == SYSTEM_RUNNING && !resume) | 630 | if (uci->valid && system_state == SYSTEM_RUNNING && !resume) |
@@ -661,13 +657,10 @@ static ssize_t reload_store(struct sys_device *dev, | |||
661 | if (end == buf) | 657 | if (end == buf) |
662 | return -EINVAL; | 658 | return -EINVAL; |
663 | if (val == 1) { | 659 | if (val == 1) { |
664 | cpumask_t old; | 660 | cpumask_t old = current->cpus_allowed; |
665 | cpumask_of_cpu_ptr(newmask, cpu); | ||
666 | |||
667 | old = current->cpus_allowed; | ||
668 | 661 | ||
669 | get_online_cpus(); | 662 | get_online_cpus(); |
670 | set_cpus_allowed_ptr(current, newmask); | 663 | set_cpus_allowed_ptr(current, &cpumask_of_cpu(cpu)); |
671 | 664 | ||
672 | mutex_lock(µcode_mutex); | 665 | mutex_lock(µcode_mutex); |
673 | if (uci->valid) | 666 | if (uci->valid) |
diff --git a/arch/x86/kernel/pci-dma.c b/arch/x86/kernel/pci-dma.c index 37544123896d..8dbffb846de9 100644 --- a/arch/x86/kernel/pci-dma.c +++ b/arch/x86/kernel/pci-dma.c | |||
@@ -192,124 +192,6 @@ static __init int iommu_setup(char *p) | |||
192 | } | 192 | } |
193 | early_param("iommu", iommu_setup); | 193 | early_param("iommu", iommu_setup); |
194 | 194 | ||
195 | #ifdef CONFIG_X86_32 | ||
196 | int dma_declare_coherent_memory(struct device *dev, dma_addr_t bus_addr, | ||
197 | dma_addr_t device_addr, size_t size, int flags) | ||
198 | { | ||
199 | void __iomem *mem_base = NULL; | ||
200 | int pages = size >> PAGE_SHIFT; | ||
201 | int bitmap_size = BITS_TO_LONGS(pages) * sizeof(long); | ||
202 | |||
203 | if ((flags & (DMA_MEMORY_MAP | DMA_MEMORY_IO)) == 0) | ||
204 | goto out; | ||
205 | if (!size) | ||
206 | goto out; | ||
207 | if (dev->dma_mem) | ||
208 | goto out; | ||
209 | |||
210 | /* FIXME: this routine just ignores DMA_MEMORY_INCLUDES_CHILDREN */ | ||
211 | |||
212 | mem_base = ioremap(bus_addr, size); | ||
213 | if (!mem_base) | ||
214 | goto out; | ||
215 | |||
216 | dev->dma_mem = kzalloc(sizeof(struct dma_coherent_mem), GFP_KERNEL); | ||
217 | if (!dev->dma_mem) | ||
218 | goto out; | ||
219 | dev->dma_mem->bitmap = kzalloc(bitmap_size, GFP_KERNEL); | ||
220 | if (!dev->dma_mem->bitmap) | ||
221 | goto free1_out; | ||
222 | |||
223 | dev->dma_mem->virt_base = mem_base; | ||
224 | dev->dma_mem->device_base = device_addr; | ||
225 | dev->dma_mem->size = pages; | ||
226 | dev->dma_mem->flags = flags; | ||
227 | |||
228 | if (flags & DMA_MEMORY_MAP) | ||
229 | return DMA_MEMORY_MAP; | ||
230 | |||
231 | return DMA_MEMORY_IO; | ||
232 | |||
233 | free1_out: | ||
234 | kfree(dev->dma_mem); | ||
235 | out: | ||
236 | if (mem_base) | ||
237 | iounmap(mem_base); | ||
238 | return 0; | ||
239 | } | ||
240 | EXPORT_SYMBOL(dma_declare_coherent_memory); | ||
241 | |||
242 | void dma_release_declared_memory(struct device *dev) | ||
243 | { | ||
244 | struct dma_coherent_mem *mem = dev->dma_mem; | ||
245 | |||
246 | if (!mem) | ||
247 | return; | ||
248 | dev->dma_mem = NULL; | ||
249 | iounmap(mem->virt_base); | ||
250 | kfree(mem->bitmap); | ||
251 | kfree(mem); | ||
252 | } | ||
253 | EXPORT_SYMBOL(dma_release_declared_memory); | ||
254 | |||
255 | void *dma_mark_declared_memory_occupied(struct device *dev, | ||
256 | dma_addr_t device_addr, size_t size) | ||
257 | { | ||
258 | struct dma_coherent_mem *mem = dev->dma_mem; | ||
259 | int pos, err; | ||
260 | int pages = (size + (device_addr & ~PAGE_MASK) + PAGE_SIZE - 1); | ||
261 | |||
262 | pages >>= PAGE_SHIFT; | ||
263 | |||
264 | if (!mem) | ||
265 | return ERR_PTR(-EINVAL); | ||
266 | |||
267 | pos = (device_addr - mem->device_base) >> PAGE_SHIFT; | ||
268 | err = bitmap_allocate_region(mem->bitmap, pos, get_order(pages)); | ||
269 | if (err != 0) | ||
270 | return ERR_PTR(err); | ||
271 | return mem->virt_base + (pos << PAGE_SHIFT); | ||
272 | } | ||
273 | EXPORT_SYMBOL(dma_mark_declared_memory_occupied); | ||
274 | |||
275 | static int dma_alloc_from_coherent_mem(struct device *dev, ssize_t size, | ||
276 | dma_addr_t *dma_handle, void **ret) | ||
277 | { | ||
278 | struct dma_coherent_mem *mem = dev ? dev->dma_mem : NULL; | ||
279 | int order = get_order(size); | ||
280 | |||
281 | if (mem) { | ||
282 | int page = bitmap_find_free_region(mem->bitmap, mem->size, | ||
283 | order); | ||
284 | if (page >= 0) { | ||
285 | *dma_handle = mem->device_base + (page << PAGE_SHIFT); | ||
286 | *ret = mem->virt_base + (page << PAGE_SHIFT); | ||
287 | memset(*ret, 0, size); | ||
288 | } | ||
289 | if (mem->flags & DMA_MEMORY_EXCLUSIVE) | ||
290 | *ret = NULL; | ||
291 | } | ||
292 | return (mem != NULL); | ||
293 | } | ||
294 | |||
295 | static int dma_release_coherent(struct device *dev, int order, void *vaddr) | ||
296 | { | ||
297 | struct dma_coherent_mem *mem = dev ? dev->dma_mem : NULL; | ||
298 | |||
299 | if (mem && vaddr >= mem->virt_base && vaddr < | ||
300 | (mem->virt_base + (mem->size << PAGE_SHIFT))) { | ||
301 | int page = (vaddr - mem->virt_base) >> PAGE_SHIFT; | ||
302 | |||
303 | bitmap_release_region(mem->bitmap, page, order); | ||
304 | return 1; | ||
305 | } | ||
306 | return 0; | ||
307 | } | ||
308 | #else | ||
309 | #define dma_alloc_from_coherent_mem(dev, size, handle, ret) (0) | ||
310 | #define dma_release_coherent(dev, order, vaddr) (0) | ||
311 | #endif /* CONFIG_X86_32 */ | ||
312 | |||
313 | int dma_supported(struct device *dev, u64 mask) | 195 | int dma_supported(struct device *dev, u64 mask) |
314 | { | 196 | { |
315 | struct dma_mapping_ops *ops = get_dma_ops(dev); | 197 | struct dma_mapping_ops *ops = get_dma_ops(dev); |
@@ -379,7 +261,7 @@ dma_alloc_coherent(struct device *dev, size_t size, dma_addr_t *dma_handle, | |||
379 | /* ignore region specifiers */ | 261 | /* ignore region specifiers */ |
380 | gfp &= ~(__GFP_DMA | __GFP_HIGHMEM | __GFP_DMA32); | 262 | gfp &= ~(__GFP_DMA | __GFP_HIGHMEM | __GFP_DMA32); |
381 | 263 | ||
382 | if (dma_alloc_from_coherent_mem(dev, size, dma_handle, &memory)) | 264 | if (dma_alloc_from_coherent(dev, size, dma_handle, &memory)) |
383 | return memory; | 265 | return memory; |
384 | 266 | ||
385 | if (!dev) { | 267 | if (!dev) { |
@@ -484,7 +366,7 @@ void dma_free_coherent(struct device *dev, size_t size, | |||
484 | 366 | ||
485 | int order = get_order(size); | 367 | int order = get_order(size); |
486 | WARN_ON(irqs_disabled()); /* for portability */ | 368 | WARN_ON(irqs_disabled()); /* for portability */ |
487 | if (dma_release_coherent(dev, order, vaddr)) | 369 | if (dma_release_from_coherent(dev, order, vaddr)) |
488 | return; | 370 | return; |
489 | if (ops->unmap_single) | 371 | if (ops->unmap_single) |
490 | ops->unmap_single(dev, bus, size, 0); | 372 | ops->unmap_single(dev, bus, size, 0); |
diff --git a/arch/x86/kernel/pci-gart_64.c b/arch/x86/kernel/pci-gart_64.c index 744126e64950..49285f8fd4d5 100644 --- a/arch/x86/kernel/pci-gart_64.c +++ b/arch/x86/kernel/pci-gart_64.c | |||
@@ -67,9 +67,6 @@ static u32 gart_unmapped_entry; | |||
67 | (((x) & 0xfffff000) | (((x) >> 32) << 4) | GPTE_VALID | GPTE_COHERENT) | 67 | (((x) & 0xfffff000) | (((x) >> 32) << 4) | GPTE_VALID | GPTE_COHERENT) |
68 | #define GPTE_DECODE(x) (((x) & 0xfffff000) | (((u64)(x) & 0xff0) << 28)) | 68 | #define GPTE_DECODE(x) (((x) & 0xfffff000) | (((u64)(x) & 0xff0) << 28)) |
69 | 69 | ||
70 | #define to_pages(addr, size) \ | ||
71 | (round_up(((addr) & ~PAGE_MASK) + (size), PAGE_SIZE) >> PAGE_SHIFT) | ||
72 | |||
73 | #define EMERGENCY_PAGES 32 /* = 128KB */ | 70 | #define EMERGENCY_PAGES 32 /* = 128KB */ |
74 | 71 | ||
75 | #ifdef CONFIG_AGP | 72 | #ifdef CONFIG_AGP |
@@ -241,7 +238,7 @@ nonforced_iommu(struct device *dev, unsigned long addr, size_t size) | |||
241 | static dma_addr_t dma_map_area(struct device *dev, dma_addr_t phys_mem, | 238 | static dma_addr_t dma_map_area(struct device *dev, dma_addr_t phys_mem, |
242 | size_t size, int dir) | 239 | size_t size, int dir) |
243 | { | 240 | { |
244 | unsigned long npages = to_pages(phys_mem, size); | 241 | unsigned long npages = iommu_num_pages(phys_mem, size); |
245 | unsigned long iommu_page = alloc_iommu(dev, npages); | 242 | unsigned long iommu_page = alloc_iommu(dev, npages); |
246 | int i; | 243 | int i; |
247 | 244 | ||
@@ -304,7 +301,7 @@ static void gart_unmap_single(struct device *dev, dma_addr_t dma_addr, | |||
304 | return; | 301 | return; |
305 | 302 | ||
306 | iommu_page = (dma_addr - iommu_bus_base)>>PAGE_SHIFT; | 303 | iommu_page = (dma_addr - iommu_bus_base)>>PAGE_SHIFT; |
307 | npages = to_pages(dma_addr, size); | 304 | npages = iommu_num_pages(dma_addr, size); |
308 | for (i = 0; i < npages; i++) { | 305 | for (i = 0; i < npages; i++) { |
309 | iommu_gatt_base[iommu_page + i] = gart_unmapped_entry; | 306 | iommu_gatt_base[iommu_page + i] = gart_unmapped_entry; |
310 | CLEAR_LEAK(iommu_page + i); | 307 | CLEAR_LEAK(iommu_page + i); |
@@ -387,7 +384,7 @@ static int __dma_map_cont(struct device *dev, struct scatterlist *start, | |||
387 | } | 384 | } |
388 | 385 | ||
389 | addr = phys_addr; | 386 | addr = phys_addr; |
390 | pages = to_pages(s->offset, s->length); | 387 | pages = iommu_num_pages(s->offset, s->length); |
391 | while (pages--) { | 388 | while (pages--) { |
392 | iommu_gatt_base[iommu_page] = GPTE_ENCODE(addr); | 389 | iommu_gatt_base[iommu_page] = GPTE_ENCODE(addr); |
393 | SET_LEAK(iommu_page); | 390 | SET_LEAK(iommu_page); |
@@ -470,7 +467,7 @@ gart_map_sg(struct device *dev, struct scatterlist *sg, int nents, int dir) | |||
470 | 467 | ||
471 | seg_size += s->length; | 468 | seg_size += s->length; |
472 | need = nextneed; | 469 | need = nextneed; |
473 | pages += to_pages(s->offset, s->length); | 470 | pages += iommu_num_pages(s->offset, s->length); |
474 | ps = s; | 471 | ps = s; |
475 | } | 472 | } |
476 | if (dma_map_cont(dev, start_sg, i - start, sgmap, pages, need) < 0) | 473 | if (dma_map_cont(dev, start_sg, i - start, sgmap, pages, need) < 0) |
diff --git a/arch/x86/kernel/reboot.c b/arch/x86/kernel/reboot.c index 06a9f643817e..724adfc63cb9 100644 --- a/arch/x86/kernel/reboot.c +++ b/arch/x86/kernel/reboot.c | |||
@@ -414,25 +414,20 @@ void native_machine_shutdown(void) | |||
414 | 414 | ||
415 | /* The boot cpu is always logical cpu 0 */ | 415 | /* The boot cpu is always logical cpu 0 */ |
416 | int reboot_cpu_id = 0; | 416 | int reboot_cpu_id = 0; |
417 | cpumask_of_cpu_ptr(newmask, reboot_cpu_id); | ||
418 | 417 | ||
419 | #ifdef CONFIG_X86_32 | 418 | #ifdef CONFIG_X86_32 |
420 | /* See if there has been given a command line override */ | 419 | /* See if there has been given a command line override */ |
421 | if ((reboot_cpu != -1) && (reboot_cpu < NR_CPUS) && | 420 | if ((reboot_cpu != -1) && (reboot_cpu < NR_CPUS) && |
422 | cpu_online(reboot_cpu)) { | 421 | cpu_online(reboot_cpu)) |
423 | reboot_cpu_id = reboot_cpu; | 422 | reboot_cpu_id = reboot_cpu; |
424 | cpumask_of_cpu_ptr_next(newmask, reboot_cpu_id); | ||
425 | } | ||
426 | #endif | 423 | #endif |
427 | 424 | ||
428 | /* Make certain the cpu I'm about to reboot on is online */ | 425 | /* Make certain the cpu I'm about to reboot on is online */ |
429 | if (!cpu_online(reboot_cpu_id)) { | 426 | if (!cpu_online(reboot_cpu_id)) |
430 | reboot_cpu_id = smp_processor_id(); | 427 | reboot_cpu_id = smp_processor_id(); |
431 | cpumask_of_cpu_ptr_next(newmask, reboot_cpu_id); | ||
432 | } | ||
433 | 428 | ||
434 | /* Make certain I only run on the appropriate processor */ | 429 | /* Make certain I only run on the appropriate processor */ |
435 | set_cpus_allowed_ptr(current, newmask); | 430 | set_cpus_allowed_ptr(current, &cpumask_of_cpu(reboot_cpu_id)); |
436 | 431 | ||
437 | /* O.K Now that I'm on the appropriate processor, | 432 | /* O.K Now that I'm on the appropriate processor, |
438 | * stop all of the others. | 433 | * stop all of the others. |
diff --git a/arch/x86/kernel/setup_percpu.c b/arch/x86/kernel/setup_percpu.c index f7745f94c006..76e305e064f9 100644 --- a/arch/x86/kernel/setup_percpu.c +++ b/arch/x86/kernel/setup_percpu.c | |||
@@ -80,24 +80,6 @@ static void __init setup_per_cpu_maps(void) | |||
80 | #endif | 80 | #endif |
81 | } | 81 | } |
82 | 82 | ||
83 | #ifdef CONFIG_HAVE_CPUMASK_OF_CPU_MAP | ||
84 | cpumask_t *cpumask_of_cpu_map __read_mostly; | ||
85 | EXPORT_SYMBOL(cpumask_of_cpu_map); | ||
86 | |||
87 | /* requires nr_cpu_ids to be initialized */ | ||
88 | static void __init setup_cpumask_of_cpu(void) | ||
89 | { | ||
90 | int i; | ||
91 | |||
92 | /* alloc_bootmem zeroes memory */ | ||
93 | cpumask_of_cpu_map = alloc_bootmem_low(sizeof(cpumask_t) * nr_cpu_ids); | ||
94 | for (i = 0; i < nr_cpu_ids; i++) | ||
95 | cpu_set(i, cpumask_of_cpu_map[i]); | ||
96 | } | ||
97 | #else | ||
98 | static inline void setup_cpumask_of_cpu(void) { } | ||
99 | #endif | ||
100 | |||
101 | #ifdef CONFIG_X86_32 | 83 | #ifdef CONFIG_X86_32 |
102 | /* | 84 | /* |
103 | * Great future not-so-futuristic plan: make i386 and x86_64 do it | 85 | * Great future not-so-futuristic plan: make i386 and x86_64 do it |
@@ -197,9 +179,6 @@ void __init setup_per_cpu_areas(void) | |||
197 | 179 | ||
198 | /* Setup node to cpumask map */ | 180 | /* Setup node to cpumask map */ |
199 | setup_node_to_cpumask_map(); | 181 | setup_node_to_cpumask_map(); |
200 | |||
201 | /* Setup cpumask_of_cpu map */ | ||
202 | setup_cpumask_of_cpu(); | ||
203 | } | 182 | } |
204 | 183 | ||
205 | #endif | 184 | #endif |
diff --git a/arch/x86/kvm/Kconfig b/arch/x86/kvm/Kconfig index 8d45fabc5f3b..ce3251ce5504 100644 --- a/arch/x86/kvm/Kconfig +++ b/arch/x86/kvm/Kconfig | |||
@@ -21,6 +21,7 @@ config KVM | |||
21 | tristate "Kernel-based Virtual Machine (KVM) support" | 21 | tristate "Kernel-based Virtual Machine (KVM) support" |
22 | depends on HAVE_KVM | 22 | depends on HAVE_KVM |
23 | select PREEMPT_NOTIFIERS | 23 | select PREEMPT_NOTIFIERS |
24 | select MMU_NOTIFIER | ||
24 | select ANON_INODES | 25 | select ANON_INODES |
25 | ---help--- | 26 | ---help--- |
26 | Support hosting fully virtualized guest machines using hardware | 27 | Support hosting fully virtualized guest machines using hardware |
diff --git a/arch/x86/lguest/boot.c b/arch/x86/lguest/boot.c index 0313a5eec412..d9249a882aa5 100644 --- a/arch/x86/lguest/boot.c +++ b/arch/x86/lguest/boot.c | |||
@@ -1014,6 +1014,9 @@ __init void lguest_init(void) | |||
1014 | init_pg_tables_start = __pa(pg0); | 1014 | init_pg_tables_start = __pa(pg0); |
1015 | init_pg_tables_end = __pa(pg0); | 1015 | init_pg_tables_end = __pa(pg0); |
1016 | 1016 | ||
1017 | /* As described in head_32.S, we map the first 128M of memory. */ | ||
1018 | max_pfn_mapped = (128*1024*1024) >> PAGE_SHIFT; | ||
1019 | |||
1017 | /* Load the %fs segment register (the per-cpu segment register) with | 1020 | /* Load the %fs segment register (the per-cpu segment register) with |
1018 | * the normal data segment to get through booting. */ | 1021 | * the normal data segment to get through booting. */ |
1019 | asm volatile ("mov %0, %%fs" : : "r" (__KERNEL_DS) : "memory"); | 1022 | asm volatile ("mov %0, %%fs" : : "r" (__KERNEL_DS) : "memory"); |
diff --git a/arch/x86/mm/gup.c b/arch/x86/mm/gup.c index 3085f25b4355..007bb06c7504 100644 --- a/arch/x86/mm/gup.c +++ b/arch/x86/mm/gup.c | |||
@@ -223,14 +223,17 @@ int get_user_pages_fast(unsigned long start, int nr_pages, int write, | |||
223 | struct page **pages) | 223 | struct page **pages) |
224 | { | 224 | { |
225 | struct mm_struct *mm = current->mm; | 225 | struct mm_struct *mm = current->mm; |
226 | unsigned long end = start + (nr_pages << PAGE_SHIFT); | 226 | unsigned long addr, len, end; |
227 | unsigned long addr = start; | ||
228 | unsigned long next; | 227 | unsigned long next; |
229 | pgd_t *pgdp; | 228 | pgd_t *pgdp; |
230 | int nr = 0; | 229 | int nr = 0; |
231 | 230 | ||
231 | start &= PAGE_MASK; | ||
232 | addr = start; | ||
233 | len = (unsigned long) nr_pages << PAGE_SHIFT; | ||
234 | end = start + len; | ||
232 | if (unlikely(!access_ok(write ? VERIFY_WRITE : VERIFY_READ, | 235 | if (unlikely(!access_ok(write ? VERIFY_WRITE : VERIFY_READ, |
233 | start, nr_pages*PAGE_SIZE))) | 236 | start, len))) |
234 | goto slow_irqon; | 237 | goto slow_irqon; |
235 | 238 | ||
236 | /* | 239 | /* |
diff --git a/arch/x86/pci/fixup.c b/arch/x86/pci/fixup.c index ff3a6a336342..4bdaa590375d 100644 --- a/arch/x86/pci/fixup.c +++ b/arch/x86/pci/fixup.c | |||
@@ -23,7 +23,8 @@ static void __devinit pci_fixup_i450nx(struct pci_dev *d) | |||
23 | pci_read_config_byte(d, reg++, &busno); | 23 | pci_read_config_byte(d, reg++, &busno); |
24 | pci_read_config_byte(d, reg++, &suba); | 24 | pci_read_config_byte(d, reg++, &suba); |
25 | pci_read_config_byte(d, reg++, &subb); | 25 | pci_read_config_byte(d, reg++, &subb); |
26 | DBG("i450NX PXB %d: %02x/%02x/%02x\n", pxb, busno, suba, subb); | 26 | dev_dbg(&d->dev, "i450NX PXB %d: %02x/%02x/%02x\n", pxb, busno, |
27 | suba, subb); | ||
27 | if (busno) | 28 | if (busno) |
28 | pci_scan_bus_with_sysdata(busno); /* Bus A */ | 29 | pci_scan_bus_with_sysdata(busno); /* Bus A */ |
29 | if (suba < subb) | 30 | if (suba < subb) |
diff --git a/arch/x86/pci/i386.c b/arch/x86/pci/i386.c index a09505806b82..5807d1bc73f7 100644 --- a/arch/x86/pci/i386.c +++ b/arch/x86/pci/i386.c | |||
@@ -128,10 +128,8 @@ static void __init pcibios_allocate_bus_resources(struct list_head *bus_list) | |||
128 | pr = pci_find_parent_resource(dev, r); | 128 | pr = pci_find_parent_resource(dev, r); |
129 | if (!r->start || !pr || | 129 | if (!r->start || !pr || |
130 | request_resource(pr, r) < 0) { | 130 | request_resource(pr, r) < 0) { |
131 | printk(KERN_ERR "PCI: Cannot allocate " | 131 | dev_err(&dev->dev, "BAR %d: can't " |
132 | "resource region %d " | 132 | "allocate resource\n", idx); |
133 | "of bridge %s\n", | ||
134 | idx, pci_name(dev)); | ||
135 | /* | 133 | /* |
136 | * Something is wrong with the region. | 134 | * Something is wrong with the region. |
137 | * Invalidate the resource to prevent | 135 | * Invalidate the resource to prevent |
@@ -166,15 +164,15 @@ static void __init pcibios_allocate_resources(int pass) | |||
166 | else | 164 | else |
167 | disabled = !(command & PCI_COMMAND_MEMORY); | 165 | disabled = !(command & PCI_COMMAND_MEMORY); |
168 | if (pass == disabled) { | 166 | if (pass == disabled) { |
169 | DBG("PCI: Resource %08lx-%08lx " | 167 | dev_dbg(&dev->dev, "resource %#08llx-%#08llx " |
170 | "(f=%lx, d=%d, p=%d)\n", | 168 | "(f=%lx, d=%d, p=%d)\n", |
171 | r->start, r->end, r->flags, disabled, pass); | 169 | (unsigned long long) r->start, |
170 | (unsigned long long) r->end, | ||
171 | r->flags, disabled, pass); | ||
172 | pr = pci_find_parent_resource(dev, r); | 172 | pr = pci_find_parent_resource(dev, r); |
173 | if (!pr || request_resource(pr, r) < 0) { | 173 | if (!pr || request_resource(pr, r) < 0) { |
174 | printk(KERN_ERR "PCI: Cannot allocate " | 174 | dev_err(&dev->dev, "BAR %d: can't " |
175 | "resource region %d " | 175 | "allocate resource\n", idx); |
176 | "of device %s\n", | ||
177 | idx, pci_name(dev)); | ||
178 | /* We'll assign a new address later */ | 176 | /* We'll assign a new address later */ |
179 | r->end -= r->start; | 177 | r->end -= r->start; |
180 | r->start = 0; | 178 | r->start = 0; |
@@ -187,8 +185,7 @@ static void __init pcibios_allocate_resources(int pass) | |||
187 | /* Turn the ROM off, leave the resource region, | 185 | /* Turn the ROM off, leave the resource region, |
188 | * but keep it unregistered. */ | 186 | * but keep it unregistered. */ |
189 | u32 reg; | 187 | u32 reg; |
190 | DBG("PCI: Switching off ROM of %s\n", | 188 | dev_dbg(&dev->dev, "disabling ROM\n"); |
191 | pci_name(dev)); | ||
192 | r->flags &= ~IORESOURCE_ROM_ENABLE; | 189 | r->flags &= ~IORESOURCE_ROM_ENABLE; |
193 | pci_read_config_dword(dev, | 190 | pci_read_config_dword(dev, |
194 | dev->rom_base_reg, ®); | 191 | dev->rom_base_reg, ®); |
@@ -257,8 +254,7 @@ void pcibios_set_master(struct pci_dev *dev) | |||
257 | lat = pcibios_max_latency; | 254 | lat = pcibios_max_latency; |
258 | else | 255 | else |
259 | return; | 256 | return; |
260 | printk(KERN_DEBUG "PCI: Setting latency timer of device %s to %d\n", | 257 | dev_printk(KERN_DEBUG, &dev->dev, "setting latency timer to %d\n", lat); |
261 | pci_name(dev), lat); | ||
262 | pci_write_config_byte(dev, PCI_LATENCY_TIMER, lat); | 258 | pci_write_config_byte(dev, PCI_LATENCY_TIMER, lat); |
263 | } | 259 | } |
264 | 260 | ||
diff --git a/arch/x86/pci/irq.c b/arch/x86/pci/irq.c index 6a06a2eb0597..fec0123b33a9 100644 --- a/arch/x86/pci/irq.c +++ b/arch/x86/pci/irq.c | |||
@@ -436,7 +436,7 @@ static int pirq_vlsi_get(struct pci_dev *router, struct pci_dev *dev, int pirq) | |||
436 | { | 436 | { |
437 | WARN_ON_ONCE(pirq >= 9); | 437 | WARN_ON_ONCE(pirq >= 9); |
438 | if (pirq > 8) { | 438 | if (pirq > 8) { |
439 | printk(KERN_INFO "VLSI router pirq escape (%d)\n", pirq); | 439 | dev_info(&dev->dev, "VLSI router PIRQ escape (%d)\n", pirq); |
440 | return 0; | 440 | return 0; |
441 | } | 441 | } |
442 | return read_config_nybble(router, 0x74, pirq-1); | 442 | return read_config_nybble(router, 0x74, pirq-1); |
@@ -446,7 +446,7 @@ static int pirq_vlsi_set(struct pci_dev *router, struct pci_dev *dev, int pirq, | |||
446 | { | 446 | { |
447 | WARN_ON_ONCE(pirq >= 9); | 447 | WARN_ON_ONCE(pirq >= 9); |
448 | if (pirq > 8) { | 448 | if (pirq > 8) { |
449 | printk(KERN_INFO "VLSI router pirq escape (%d)\n", pirq); | 449 | dev_info(&dev->dev, "VLSI router PIRQ escape (%d)\n", pirq); |
450 | return 0; | 450 | return 0; |
451 | } | 451 | } |
452 | write_config_nybble(router, 0x74, pirq-1, irq); | 452 | write_config_nybble(router, 0x74, pirq-1, irq); |
@@ -492,15 +492,17 @@ static int pirq_amd756_get(struct pci_dev *router, struct pci_dev *dev, int pirq | |||
492 | irq = 0; | 492 | irq = 0; |
493 | if (pirq <= 4) | 493 | if (pirq <= 4) |
494 | irq = read_config_nybble(router, 0x56, pirq - 1); | 494 | irq = read_config_nybble(router, 0x56, pirq - 1); |
495 | printk(KERN_INFO "AMD756: dev %04x:%04x, router pirq : %d get irq : %2d\n", | 495 | dev_info(&dev->dev, |
496 | dev->vendor, dev->device, pirq, irq); | 496 | "AMD756: dev [%04x/%04x], router PIRQ %d get IRQ %d\n", |
497 | dev->vendor, dev->device, pirq, irq); | ||
497 | return irq; | 498 | return irq; |
498 | } | 499 | } |
499 | 500 | ||
500 | static int pirq_amd756_set(struct pci_dev *router, struct pci_dev *dev, int pirq, int irq) | 501 | static int pirq_amd756_set(struct pci_dev *router, struct pci_dev *dev, int pirq, int irq) |
501 | { | 502 | { |
502 | printk(KERN_INFO "AMD756: dev %04x:%04x, router pirq : %d SET irq : %2d\n", | 503 | dev_info(&dev->dev, |
503 | dev->vendor, dev->device, pirq, irq); | 504 | "AMD756: dev [%04x/%04x], router PIRQ %d set IRQ %d\n", |
505 | dev->vendor, dev->device, pirq, irq); | ||
504 | if (pirq <= 4) | 506 | if (pirq <= 4) |
505 | write_config_nybble(router, 0x56, pirq - 1, irq); | 507 | write_config_nybble(router, 0x56, pirq - 1, irq); |
506 | return 1; | 508 | return 1; |
@@ -730,7 +732,6 @@ static __init int ali_router_probe(struct irq_router *r, struct pci_dev *router, | |||
730 | switch (device) { | 732 | switch (device) { |
731 | case PCI_DEVICE_ID_AL_M1533: | 733 | case PCI_DEVICE_ID_AL_M1533: |
732 | case PCI_DEVICE_ID_AL_M1563: | 734 | case PCI_DEVICE_ID_AL_M1563: |
733 | printk(KERN_DEBUG "PCI: Using ALI IRQ Router\n"); | ||
734 | r->name = "ALI"; | 735 | r->name = "ALI"; |
735 | r->get = pirq_ali_get; | 736 | r->get = pirq_ali_get; |
736 | r->set = pirq_ali_set; | 737 | r->set = pirq_ali_set; |
@@ -840,11 +841,9 @@ static void __init pirq_find_router(struct irq_router *r) | |||
840 | h->probe(r, pirq_router_dev, pirq_router_dev->device)) | 841 | h->probe(r, pirq_router_dev, pirq_router_dev->device)) |
841 | break; | 842 | break; |
842 | } | 843 | } |
843 | printk(KERN_INFO "PCI: Using IRQ router %s [%04x/%04x] at %s\n", | 844 | dev_info(&pirq_router_dev->dev, "%s IRQ router [%04x/%04x]\n", |
844 | pirq_router.name, | 845 | pirq_router.name, |
845 | pirq_router_dev->vendor, | 846 | pirq_router_dev->vendor, pirq_router_dev->device); |
846 | pirq_router_dev->device, | ||
847 | pci_name(pirq_router_dev)); | ||
848 | 847 | ||
849 | /* The device remains referenced for the kernel lifetime */ | 848 | /* The device remains referenced for the kernel lifetime */ |
850 | } | 849 | } |
@@ -877,7 +876,7 @@ static int pcibios_lookup_irq(struct pci_dev *dev, int assign) | |||
877 | /* Find IRQ pin */ | 876 | /* Find IRQ pin */ |
878 | pci_read_config_byte(dev, PCI_INTERRUPT_PIN, &pin); | 877 | pci_read_config_byte(dev, PCI_INTERRUPT_PIN, &pin); |
879 | if (!pin) { | 878 | if (!pin) { |
880 | DBG(KERN_DEBUG " -> no interrupt pin\n"); | 879 | dev_dbg(&dev->dev, "no interrupt pin\n"); |
881 | return 0; | 880 | return 0; |
882 | } | 881 | } |
883 | pin = pin - 1; | 882 | pin = pin - 1; |
@@ -887,20 +886,20 @@ static int pcibios_lookup_irq(struct pci_dev *dev, int assign) | |||
887 | if (!pirq_table) | 886 | if (!pirq_table) |
888 | return 0; | 887 | return 0; |
889 | 888 | ||
890 | DBG(KERN_DEBUG "IRQ for %s[%c]", pci_name(dev), 'A' + pin); | ||
891 | info = pirq_get_info(dev); | 889 | info = pirq_get_info(dev); |
892 | if (!info) { | 890 | if (!info) { |
893 | DBG(" -> not found in routing table\n" KERN_DEBUG); | 891 | dev_dbg(&dev->dev, "PCI INT %c not found in routing table\n", |
892 | 'A' + pin); | ||
894 | return 0; | 893 | return 0; |
895 | } | 894 | } |
896 | pirq = info->irq[pin].link; | 895 | pirq = info->irq[pin].link; |
897 | mask = info->irq[pin].bitmap; | 896 | mask = info->irq[pin].bitmap; |
898 | if (!pirq) { | 897 | if (!pirq) { |
899 | DBG(" -> not routed\n" KERN_DEBUG); | 898 | dev_dbg(&dev->dev, "PCI INT %c not routed\n", 'A' + pin); |
900 | return 0; | 899 | return 0; |
901 | } | 900 | } |
902 | DBG(" -> PIRQ %02x, mask %04x, excl %04x", pirq, mask, | 901 | dev_dbg(&dev->dev, "PCI INT %c -> PIRQ %02x, mask %04x, excl %04x", |
903 | pirq_table->exclusive_irqs); | 902 | 'A' + pin, pirq, mask, pirq_table->exclusive_irqs); |
904 | mask &= pcibios_irq_mask; | 903 | mask &= pcibios_irq_mask; |
905 | 904 | ||
906 | /* Work around broken HP Pavilion Notebooks which assign USB to | 905 | /* Work around broken HP Pavilion Notebooks which assign USB to |
@@ -930,10 +929,8 @@ static int pcibios_lookup_irq(struct pci_dev *dev, int assign) | |||
930 | if (pci_probe & PCI_USE_PIRQ_MASK) | 929 | if (pci_probe & PCI_USE_PIRQ_MASK) |
931 | newirq = 0; | 930 | newirq = 0; |
932 | else | 931 | else |
933 | printk("\n" KERN_WARNING | 932 | dev_warn(&dev->dev, "IRQ %d doesn't match PIRQ mask " |
934 | "PCI: IRQ %i for device %s doesn't match PIRQ mask - try pci=usepirqmask\n" | 933 | "%#x; try pci=usepirqmask\n", newirq, mask); |
935 | KERN_DEBUG, newirq, | ||
936 | pci_name(dev)); | ||
937 | } | 934 | } |
938 | if (!newirq && assign) { | 935 | if (!newirq && assign) { |
939 | for (i = 0; i < 16; i++) { | 936 | for (i = 0; i < 16; i++) { |
@@ -944,39 +941,35 @@ static int pcibios_lookup_irq(struct pci_dev *dev, int assign) | |||
944 | newirq = i; | 941 | newirq = i; |
945 | } | 942 | } |
946 | } | 943 | } |
947 | DBG(" -> newirq=%d", newirq); | 944 | dev_dbg(&dev->dev, "PCI INT %c -> newirq %d", 'A' + pin, newirq); |
948 | 945 | ||
949 | /* Check if it is hardcoded */ | 946 | /* Check if it is hardcoded */ |
950 | if ((pirq & 0xf0) == 0xf0) { | 947 | if ((pirq & 0xf0) == 0xf0) { |
951 | irq = pirq & 0xf; | 948 | irq = pirq & 0xf; |
952 | DBG(" -> hardcoded IRQ %d\n", irq); | 949 | msg = "hardcoded"; |
953 | msg = "Hardcoded"; | ||
954 | } else if (r->get && (irq = r->get(pirq_router_dev, dev, pirq)) && \ | 950 | } else if (r->get && (irq = r->get(pirq_router_dev, dev, pirq)) && \ |
955 | ((!(pci_probe & PCI_USE_PIRQ_MASK)) || ((1 << irq) & mask))) { | 951 | ((!(pci_probe & PCI_USE_PIRQ_MASK)) || ((1 << irq) & mask))) { |
956 | DBG(" -> got IRQ %d\n", irq); | 952 | msg = "found"; |
957 | msg = "Found"; | ||
958 | eisa_set_level_irq(irq); | 953 | eisa_set_level_irq(irq); |
959 | } else if (newirq && r->set && | 954 | } else if (newirq && r->set && |
960 | (dev->class >> 8) != PCI_CLASS_DISPLAY_VGA) { | 955 | (dev->class >> 8) != PCI_CLASS_DISPLAY_VGA) { |
961 | DBG(" -> assigning IRQ %d", newirq); | ||
962 | if (r->set(pirq_router_dev, dev, pirq, newirq)) { | 956 | if (r->set(pirq_router_dev, dev, pirq, newirq)) { |
963 | eisa_set_level_irq(newirq); | 957 | eisa_set_level_irq(newirq); |
964 | DBG(" ... OK\n"); | 958 | msg = "assigned"; |
965 | msg = "Assigned"; | ||
966 | irq = newirq; | 959 | irq = newirq; |
967 | } | 960 | } |
968 | } | 961 | } |
969 | 962 | ||
970 | if (!irq) { | 963 | if (!irq) { |
971 | DBG(" ... failed\n"); | ||
972 | if (newirq && mask == (1 << newirq)) { | 964 | if (newirq && mask == (1 << newirq)) { |
973 | msg = "Guessed"; | 965 | msg = "guessed"; |
974 | irq = newirq; | 966 | irq = newirq; |
975 | } else | 967 | } else { |
968 | dev_dbg(&dev->dev, "can't route interrupt\n"); | ||
976 | return 0; | 969 | return 0; |
970 | } | ||
977 | } | 971 | } |
978 | printk(KERN_INFO "PCI: %s IRQ %d for device %s\n", msg, irq, | 972 | dev_info(&dev->dev, "%s PCI INT %c -> IRQ %d\n", msg, 'A' + pin, irq); |
979 | pci_name(dev)); | ||
980 | 973 | ||
981 | /* Update IRQ for all devices with the same pirq value */ | 974 | /* Update IRQ for all devices with the same pirq value */ |
982 | while ((dev2 = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, dev2)) != NULL) { | 975 | while ((dev2 = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, dev2)) != NULL) { |
@@ -996,17 +989,17 @@ static int pcibios_lookup_irq(struct pci_dev *dev, int assign) | |||
996 | (!(pci_probe & PCI_USE_PIRQ_MASK) || \ | 989 | (!(pci_probe & PCI_USE_PIRQ_MASK) || \ |
997 | ((1 << dev2->irq) & mask))) { | 990 | ((1 << dev2->irq) & mask))) { |
998 | #ifndef CONFIG_PCI_MSI | 991 | #ifndef CONFIG_PCI_MSI |
999 | printk(KERN_INFO "IRQ routing conflict for %s, have irq %d, want irq %d\n", | 992 | dev_info(&dev2->dev, "IRQ routing conflict: " |
1000 | pci_name(dev2), dev2->irq, irq); | 993 | "have IRQ %d, want IRQ %d\n", |
994 | dev2->irq, irq); | ||
1001 | #endif | 995 | #endif |
1002 | continue; | 996 | continue; |
1003 | } | 997 | } |
1004 | dev2->irq = irq; | 998 | dev2->irq = irq; |
1005 | pirq_penalty[irq]++; | 999 | pirq_penalty[irq]++; |
1006 | if (dev != dev2) | 1000 | if (dev != dev2) |
1007 | printk(KERN_INFO | 1001 | dev_info(&dev->dev, "sharing IRQ %d with %s\n", |
1008 | "PCI: Sharing IRQ %d with %s\n", | 1002 | irq, pci_name(dev2)); |
1009 | irq, pci_name(dev2)); | ||
1010 | } | 1003 | } |
1011 | } | 1004 | } |
1012 | return 1; | 1005 | return 1; |
@@ -1025,8 +1018,7 @@ static void __init pcibios_fixup_irqs(void) | |||
1025 | * already in use. | 1018 | * already in use. |
1026 | */ | 1019 | */ |
1027 | if (dev->irq >= 16) { | 1020 | if (dev->irq >= 16) { |
1028 | DBG(KERN_DEBUG "%s: ignoring bogus IRQ %d\n", | 1021 | dev_dbg(&dev->dev, "ignoring bogus IRQ %d\n", dev->irq); |
1029 | pci_name(dev), dev->irq); | ||
1030 | dev->irq = 0; | 1022 | dev->irq = 0; |
1031 | } | 1023 | } |
1032 | /* | 1024 | /* |
@@ -1070,12 +1062,12 @@ static void __init pcibios_fixup_irqs(void) | |||
1070 | irq = IO_APIC_get_PCI_irq_vector(bridge->bus->number, | 1062 | irq = IO_APIC_get_PCI_irq_vector(bridge->bus->number, |
1071 | PCI_SLOT(bridge->devfn), pin); | 1063 | PCI_SLOT(bridge->devfn), pin); |
1072 | if (irq >= 0) | 1064 | if (irq >= 0) |
1073 | printk(KERN_WARNING "PCI: using PPB %s[%c] to get irq %d\n", | 1065 | dev_warn(&dev->dev, "using bridge %s INT %c to get IRQ %d\n", |
1074 | pci_name(bridge), 'A' + pin, irq); | 1066 | pci_name(bridge), |
1067 | 'A' + pin, irq); | ||
1075 | } | 1068 | } |
1076 | if (irq >= 0) { | 1069 | if (irq >= 0) { |
1077 | printk(KERN_INFO "PCI->APIC IRQ transform: %s[%c] -> IRQ %d\n", | 1070 | dev_info(&dev->dev, "PCI->APIC IRQ transform: INT %c -> IRQ %d\n", 'A' + pin, irq); |
1078 | pci_name(dev), 'A' + pin, irq); | ||
1079 | dev->irq = irq; | 1071 | dev->irq = irq; |
1080 | } | 1072 | } |
1081 | } | 1073 | } |
@@ -1231,25 +1223,24 @@ static int pirq_enable_irq(struct pci_dev *dev) | |||
1231 | irq = IO_APIC_get_PCI_irq_vector(bridge->bus->number, | 1223 | irq = IO_APIC_get_PCI_irq_vector(bridge->bus->number, |
1232 | PCI_SLOT(bridge->devfn), pin); | 1224 | PCI_SLOT(bridge->devfn), pin); |
1233 | if (irq >= 0) | 1225 | if (irq >= 0) |
1234 | printk(KERN_WARNING | 1226 | dev_warn(&dev->dev, "using bridge %s " |
1235 | "PCI: using PPB %s[%c] to get irq %d\n", | 1227 | "INT %c to get IRQ %d\n", |
1236 | pci_name(bridge), | 1228 | pci_name(bridge), 'A' + pin, |
1237 | 'A' + pin, irq); | 1229 | irq); |
1238 | dev = bridge; | 1230 | dev = bridge; |
1239 | } | 1231 | } |
1240 | dev = temp_dev; | 1232 | dev = temp_dev; |
1241 | if (irq >= 0) { | 1233 | if (irq >= 0) { |
1242 | printk(KERN_INFO | 1234 | dev_info(&dev->dev, "PCI->APIC IRQ transform: " |
1243 | "PCI->APIC IRQ transform: %s[%c] -> IRQ %d\n", | 1235 | "INT %c -> IRQ %d\n", 'A' + pin, irq); |
1244 | pci_name(dev), 'A' + pin, irq); | ||
1245 | dev->irq = irq; | 1236 | dev->irq = irq; |
1246 | return 0; | 1237 | return 0; |
1247 | } else | 1238 | } else |
1248 | msg = " Probably buggy MP table."; | 1239 | msg = "; probably buggy MP table"; |
1249 | } else if (pci_probe & PCI_BIOS_IRQ_SCAN) | 1240 | } else if (pci_probe & PCI_BIOS_IRQ_SCAN) |
1250 | msg = ""; | 1241 | msg = ""; |
1251 | else | 1242 | else |
1252 | msg = " Please try using pci=biosirq."; | 1243 | msg = "; please try using pci=biosirq"; |
1253 | 1244 | ||
1254 | /* | 1245 | /* |
1255 | * With IDE legacy devices the IRQ lookup failure is not | 1246 | * With IDE legacy devices the IRQ lookup failure is not |
@@ -1259,9 +1250,8 @@ static int pirq_enable_irq(struct pci_dev *dev) | |||
1259 | !(dev->class & 0x5)) | 1250 | !(dev->class & 0x5)) |
1260 | return 0; | 1251 | return 0; |
1261 | 1252 | ||
1262 | printk(KERN_WARNING | 1253 | dev_warn(&dev->dev, "can't find IRQ for PCI INT %c%s\n", |
1263 | "PCI: No IRQ known for interrupt pin %c of device %s.%s\n", | 1254 | 'A' + pin, msg); |
1264 | 'A' + pin, pci_name(dev), msg); | ||
1265 | } | 1255 | } |
1266 | return 0; | 1256 | return 0; |
1267 | } | 1257 | } |
diff --git a/arch/x86/pci/numaq_32.c b/arch/x86/pci/numaq_32.c index f4b16dc11dad..1177845d3186 100644 --- a/arch/x86/pci/numaq_32.c +++ b/arch/x86/pci/numaq_32.c | |||
@@ -131,13 +131,14 @@ static void __devinit pci_fixup_i450nx(struct pci_dev *d) | |||
131 | u8 busno, suba, subb; | 131 | u8 busno, suba, subb; |
132 | int quad = BUS2QUAD(d->bus->number); | 132 | int quad = BUS2QUAD(d->bus->number); |
133 | 133 | ||
134 | printk("PCI: Searching for i450NX host bridges on %s\n", pci_name(d)); | 134 | dev_info(&d->dev, "searching for i450NX host bridges\n"); |
135 | reg = 0xd0; | 135 | reg = 0xd0; |
136 | for(pxb=0; pxb<2; pxb++) { | 136 | for(pxb=0; pxb<2; pxb++) { |
137 | pci_read_config_byte(d, reg++, &busno); | 137 | pci_read_config_byte(d, reg++, &busno); |
138 | pci_read_config_byte(d, reg++, &suba); | 138 | pci_read_config_byte(d, reg++, &suba); |
139 | pci_read_config_byte(d, reg++, &subb); | 139 | pci_read_config_byte(d, reg++, &subb); |
140 | DBG("i450NX PXB %d: %02x/%02x/%02x\n", pxb, busno, suba, subb); | 140 | dev_dbg(&d->dev, "i450NX PXB %d: %02x/%02x/%02x\n", |
141 | pxb, busno, suba, subb); | ||
141 | if (busno) { | 142 | if (busno) { |
142 | /* Bus A */ | 143 | /* Bus A */ |
143 | pci_scan_bus_with_sysdata(QUADLOCAL2BUS(quad, busno)); | 144 | pci_scan_bus_with_sysdata(QUADLOCAL2BUS(quad, busno)); |
diff --git a/drivers/acpi/pci_slot.c b/drivers/acpi/pci_slot.c index dd376f7ad090..d5b4ef898879 100644 --- a/drivers/acpi/pci_slot.c +++ b/drivers/acpi/pci_slot.c | |||
@@ -76,9 +76,9 @@ static struct acpi_pci_driver acpi_pci_slot_driver = { | |||
76 | }; | 76 | }; |
77 | 77 | ||
78 | static int | 78 | static int |
79 | check_slot(acpi_handle handle, int *device, unsigned long *sun) | 79 | check_slot(acpi_handle handle, unsigned long *sun) |
80 | { | 80 | { |
81 | int retval = 0; | 81 | int device = -1; |
82 | unsigned long adr, sta; | 82 | unsigned long adr, sta; |
83 | acpi_status status; | 83 | acpi_status status; |
84 | struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL }; | 84 | struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL }; |
@@ -89,32 +89,27 @@ check_slot(acpi_handle handle, int *device, unsigned long *sun) | |||
89 | if (check_sta_before_sun) { | 89 | if (check_sta_before_sun) { |
90 | /* If SxFy doesn't have _STA, we just assume it's there */ | 90 | /* If SxFy doesn't have _STA, we just assume it's there */ |
91 | status = acpi_evaluate_integer(handle, "_STA", NULL, &sta); | 91 | status = acpi_evaluate_integer(handle, "_STA", NULL, &sta); |
92 | if (ACPI_SUCCESS(status) && !(sta & ACPI_STA_DEVICE_PRESENT)) { | 92 | if (ACPI_SUCCESS(status) && !(sta & ACPI_STA_DEVICE_PRESENT)) |
93 | retval = -1; | ||
94 | goto out; | 93 | goto out; |
95 | } | ||
96 | } | 94 | } |
97 | 95 | ||
98 | status = acpi_evaluate_integer(handle, "_ADR", NULL, &adr); | 96 | status = acpi_evaluate_integer(handle, "_ADR", NULL, &adr); |
99 | if (ACPI_FAILURE(status)) { | 97 | if (ACPI_FAILURE(status)) { |
100 | dbg("_ADR returned %d on %s\n", status, (char *)buffer.pointer); | 98 | dbg("_ADR returned %d on %s\n", status, (char *)buffer.pointer); |
101 | retval = -1; | ||
102 | goto out; | 99 | goto out; |
103 | } | 100 | } |
104 | 101 | ||
105 | *device = (adr >> 16) & 0xffff; | ||
106 | |||
107 | /* No _SUN == not a slot == bail */ | 102 | /* No _SUN == not a slot == bail */ |
108 | status = acpi_evaluate_integer(handle, "_SUN", NULL, sun); | 103 | status = acpi_evaluate_integer(handle, "_SUN", NULL, sun); |
109 | if (ACPI_FAILURE(status)) { | 104 | if (ACPI_FAILURE(status)) { |
110 | dbg("_SUN returned %d on %s\n", status, (char *)buffer.pointer); | 105 | dbg("_SUN returned %d on %s\n", status, (char *)buffer.pointer); |
111 | retval = -1; | ||
112 | goto out; | 106 | goto out; |
113 | } | 107 | } |
114 | 108 | ||
109 | device = (adr >> 16) & 0xffff; | ||
115 | out: | 110 | out: |
116 | kfree(buffer.pointer); | 111 | kfree(buffer.pointer); |
117 | return retval; | 112 | return device; |
118 | } | 113 | } |
119 | 114 | ||
120 | struct callback_args { | 115 | struct callback_args { |
@@ -144,7 +139,8 @@ register_slot(acpi_handle handle, u32 lvl, void *context, void **rv) | |||
144 | struct callback_args *parent_context = context; | 139 | struct callback_args *parent_context = context; |
145 | struct pci_bus *pci_bus = parent_context->pci_bus; | 140 | struct pci_bus *pci_bus = parent_context->pci_bus; |
146 | 141 | ||
147 | if (check_slot(handle, &device, &sun)) | 142 | device = check_slot(handle, &sun); |
143 | if (device < 0) | ||
148 | return AE_OK; | 144 | return AE_OK; |
149 | 145 | ||
150 | slot = kmalloc(sizeof(*slot), GFP_KERNEL); | 146 | slot = kmalloc(sizeof(*slot), GFP_KERNEL); |
diff --git a/drivers/acpi/processor_idle.c b/drivers/acpi/processor_idle.c index b7f2963693a7..283c08f5f4d4 100644 --- a/drivers/acpi/processor_idle.c +++ b/drivers/acpi/processor_idle.c | |||
@@ -1332,9 +1332,15 @@ int acpi_processor_cst_has_changed(struct acpi_processor *pr) | |||
1332 | if (!pr->flags.power_setup_done) | 1332 | if (!pr->flags.power_setup_done) |
1333 | return -ENODEV; | 1333 | return -ENODEV; |
1334 | 1334 | ||
1335 | /* Fall back to the default idle loop */ | 1335 | /* |
1336 | pm_idle = pm_idle_save; | 1336 | * Fall back to the default idle loop, when pm_idle_save had |
1337 | synchronize_sched(); /* Relies on interrupts forcing exit from idle. */ | 1337 | * been initialized. |
1338 | */ | ||
1339 | if (pm_idle_save) { | ||
1340 | pm_idle = pm_idle_save; | ||
1341 | /* Relies on interrupts forcing exit from idle. */ | ||
1342 | synchronize_sched(); | ||
1343 | } | ||
1338 | 1344 | ||
1339 | pr->flags.power = 0; | 1345 | pr->flags.power = 0; |
1340 | result = acpi_processor_get_power_info(pr); | 1346 | result = acpi_processor_get_power_info(pr); |
@@ -1896,7 +1902,8 @@ int acpi_processor_power_exit(struct acpi_processor *pr, | |||
1896 | 1902 | ||
1897 | /* Unregister the idle handler when processor #0 is removed. */ | 1903 | /* Unregister the idle handler when processor #0 is removed. */ |
1898 | if (pr->id == 0) { | 1904 | if (pr->id == 0) { |
1899 | pm_idle = pm_idle_save; | 1905 | if (pm_idle_save) |
1906 | pm_idle = pm_idle_save; | ||
1900 | 1907 | ||
1901 | /* | 1908 | /* |
1902 | * We are about to unload the current idle thread pm callback | 1909 | * We are about to unload the current idle thread pm callback |
diff --git a/drivers/acpi/processor_throttling.c b/drivers/acpi/processor_throttling.c index a2c3f9cfa549..a56fc6c4394b 100644 --- a/drivers/acpi/processor_throttling.c +++ b/drivers/acpi/processor_throttling.c | |||
@@ -827,7 +827,6 @@ static int acpi_processor_get_throttling_ptc(struct acpi_processor *pr) | |||
827 | static int acpi_processor_get_throttling(struct acpi_processor *pr) | 827 | static int acpi_processor_get_throttling(struct acpi_processor *pr) |
828 | { | 828 | { |
829 | cpumask_t saved_mask; | 829 | cpumask_t saved_mask; |
830 | cpumask_of_cpu_ptr_declare(new_mask); | ||
831 | int ret; | 830 | int ret; |
832 | 831 | ||
833 | if (!pr) | 832 | if (!pr) |
@@ -839,8 +838,7 @@ static int acpi_processor_get_throttling(struct acpi_processor *pr) | |||
839 | * Migrate task to the cpu pointed by pr. | 838 | * Migrate task to the cpu pointed by pr. |
840 | */ | 839 | */ |
841 | saved_mask = current->cpus_allowed; | 840 | saved_mask = current->cpus_allowed; |
842 | cpumask_of_cpu_ptr_next(new_mask, pr->id); | 841 | set_cpus_allowed_ptr(current, &cpumask_of_cpu(pr->id)); |
843 | set_cpus_allowed_ptr(current, new_mask); | ||
844 | ret = pr->throttling.acpi_processor_get_throttling(pr); | 842 | ret = pr->throttling.acpi_processor_get_throttling(pr); |
845 | /* restore the previous state */ | 843 | /* restore the previous state */ |
846 | set_cpus_allowed_ptr(current, &saved_mask); | 844 | set_cpus_allowed_ptr(current, &saved_mask); |
@@ -989,7 +987,6 @@ static int acpi_processor_set_throttling_ptc(struct acpi_processor *pr, | |||
989 | int acpi_processor_set_throttling(struct acpi_processor *pr, int state) | 987 | int acpi_processor_set_throttling(struct acpi_processor *pr, int state) |
990 | { | 988 | { |
991 | cpumask_t saved_mask; | 989 | cpumask_t saved_mask; |
992 | cpumask_of_cpu_ptr_declare(new_mask); | ||
993 | int ret = 0; | 990 | int ret = 0; |
994 | unsigned int i; | 991 | unsigned int i; |
995 | struct acpi_processor *match_pr; | 992 | struct acpi_processor *match_pr; |
@@ -1028,8 +1025,7 @@ int acpi_processor_set_throttling(struct acpi_processor *pr, int state) | |||
1028 | * it can be called only for the cpu pointed by pr. | 1025 | * it can be called only for the cpu pointed by pr. |
1029 | */ | 1026 | */ |
1030 | if (p_throttling->shared_type == DOMAIN_COORD_TYPE_SW_ANY) { | 1027 | if (p_throttling->shared_type == DOMAIN_COORD_TYPE_SW_ANY) { |
1031 | cpumask_of_cpu_ptr_next(new_mask, pr->id); | 1028 | set_cpus_allowed_ptr(current, &cpumask_of_cpu(pr->id)); |
1032 | set_cpus_allowed_ptr(current, new_mask); | ||
1033 | ret = p_throttling->acpi_processor_set_throttling(pr, | 1029 | ret = p_throttling->acpi_processor_set_throttling(pr, |
1034 | t_state.target_state); | 1030 | t_state.target_state); |
1035 | } else { | 1031 | } else { |
@@ -1060,8 +1056,7 @@ int acpi_processor_set_throttling(struct acpi_processor *pr, int state) | |||
1060 | continue; | 1056 | continue; |
1061 | } | 1057 | } |
1062 | t_state.cpu = i; | 1058 | t_state.cpu = i; |
1063 | cpumask_of_cpu_ptr_next(new_mask, i); | 1059 | set_cpus_allowed_ptr(current, &cpumask_of_cpu(i)); |
1064 | set_cpus_allowed_ptr(current, new_mask); | ||
1065 | ret = match_pr->throttling. | 1060 | ret = match_pr->throttling. |
1066 | acpi_processor_set_throttling( | 1061 | acpi_processor_set_throttling( |
1067 | match_pr, t_state.target_state); | 1062 | match_pr, t_state.target_state); |
diff --git a/drivers/base/memory.c b/drivers/base/memory.c index 3ad49a00029f..af0d175c025d 100644 --- a/drivers/base/memory.c +++ b/drivers/base/memory.c | |||
@@ -103,7 +103,8 @@ static ssize_t show_mem_phys_index(struct sys_device *dev, | |||
103 | /* | 103 | /* |
104 | * Show whether the section of memory is likely to be hot-removable | 104 | * Show whether the section of memory is likely to be hot-removable |
105 | */ | 105 | */ |
106 | static ssize_t show_mem_removable(struct sys_device *dev, char *buf) | 106 | static ssize_t show_mem_removable(struct sys_device *dev, |
107 | struct sysdev_attribute *attr, char *buf) | ||
107 | { | 108 | { |
108 | unsigned long start_pfn; | 109 | unsigned long start_pfn; |
109 | int ret; | 110 | int ret; |
diff --git a/drivers/char/hw_random/intel-rng.c b/drivers/char/hw_random/intel-rng.c index 27fdc0866496..8a2fce0756ec 100644 --- a/drivers/char/hw_random/intel-rng.c +++ b/drivers/char/hw_random/intel-rng.c | |||
@@ -241,7 +241,7 @@ static int __init intel_rng_hw_init(void *_intel_rng_hw) | |||
241 | struct intel_rng_hw *intel_rng_hw = _intel_rng_hw; | 241 | struct intel_rng_hw *intel_rng_hw = _intel_rng_hw; |
242 | u8 mfc, dvc; | 242 | u8 mfc, dvc; |
243 | 243 | ||
244 | /* interrupts disabled in stop_machine_run call */ | 244 | /* interrupts disabled in stop_machine call */ |
245 | 245 | ||
246 | if (!(intel_rng_hw->fwh_dec_en1_val & FWH_F8_EN_MASK)) | 246 | if (!(intel_rng_hw->fwh_dec_en1_val & FWH_F8_EN_MASK)) |
247 | pci_write_config_byte(intel_rng_hw->dev, | 247 | pci_write_config_byte(intel_rng_hw->dev, |
@@ -365,10 +365,10 @@ static int __init mod_init(void) | |||
365 | * location with the Read ID command, all activity on the system | 365 | * location with the Read ID command, all activity on the system |
366 | * must be stopped until the state is back to normal. | 366 | * must be stopped until the state is back to normal. |
367 | * | 367 | * |
368 | * Use stop_machine_run because IPIs can be blocked by disabling | 368 | * Use stop_machine because IPIs can be blocked by disabling |
369 | * interrupts. | 369 | * interrupts. |
370 | */ | 370 | */ |
371 | err = stop_machine_run(intel_rng_hw_init, intel_rng_hw, NR_CPUS); | 371 | err = stop_machine(intel_rng_hw_init, intel_rng_hw, NULL); |
372 | pci_dev_put(dev); | 372 | pci_dev_put(dev); |
373 | iounmap(intel_rng_hw->mem); | 373 | iounmap(intel_rng_hw->mem); |
374 | kfree(intel_rng_hw); | 374 | kfree(intel_rng_hw); |
diff --git a/drivers/char/pcmcia/ipwireless/hardware.c b/drivers/char/pcmcia/ipwireless/hardware.c index 929101ecbae2..4c1820cad712 100644 --- a/drivers/char/pcmcia/ipwireless/hardware.c +++ b/drivers/char/pcmcia/ipwireless/hardware.c | |||
@@ -30,11 +30,11 @@ | |||
30 | static void ipw_send_setup_packet(struct ipw_hardware *hw); | 30 | static void ipw_send_setup_packet(struct ipw_hardware *hw); |
31 | static void handle_received_SETUP_packet(struct ipw_hardware *ipw, | 31 | static void handle_received_SETUP_packet(struct ipw_hardware *ipw, |
32 | unsigned int address, | 32 | unsigned int address, |
33 | unsigned char *data, int len, | 33 | const unsigned char *data, int len, |
34 | int is_last); | 34 | int is_last); |
35 | static void ipwireless_setup_timer(unsigned long data); | 35 | static void ipwireless_setup_timer(unsigned long data); |
36 | static void handle_received_CTRL_packet(struct ipw_hardware *hw, | 36 | static void handle_received_CTRL_packet(struct ipw_hardware *hw, |
37 | unsigned int channel_idx, unsigned char *data, int len); | 37 | unsigned int channel_idx, const unsigned char *data, int len); |
38 | 38 | ||
39 | /*#define TIMING_DIAGNOSTICS*/ | 39 | /*#define TIMING_DIAGNOSTICS*/ |
40 | 40 | ||
@@ -79,8 +79,7 @@ static void report_timing(void) | |||
79 | timing_stats.last_report_time = jiffies; | 79 | timing_stats.last_report_time = jiffies; |
80 | if (!first) | 80 | if (!first) |
81 | printk(KERN_INFO IPWIRELESS_PCCARD_NAME | 81 | printk(KERN_INFO IPWIRELESS_PCCARD_NAME |
82 | ": %u us elapsed - read %lu bytes in %u us, " | 82 | ": %u us elapsed - read %lu bytes in %u us, wrote %lu bytes in %u us\n", |
83 | "wrote %lu bytes in %u us\n", | ||
84 | jiffies_to_usecs(since), | 83 | jiffies_to_usecs(since), |
85 | timing_stats.read_bytes, | 84 | timing_stats.read_bytes, |
86 | jiffies_to_usecs(timing_stats.read_time), | 85 | jiffies_to_usecs(timing_stats.read_time), |
@@ -133,29 +132,17 @@ enum { | |||
133 | #define NL_FOLLOWING_PACKET_HEADER_SIZE 1 | 132 | #define NL_FOLLOWING_PACKET_HEADER_SIZE 1 |
134 | 133 | ||
135 | struct nl_first_packet_header { | 134 | struct nl_first_packet_header { |
136 | #if defined(__BIG_ENDIAN_BITFIELD) | ||
137 | unsigned char packet_rank:2; | ||
138 | unsigned char address:3; | ||
139 | unsigned char protocol:3; | ||
140 | #else | ||
141 | unsigned char protocol:3; | 135 | unsigned char protocol:3; |
142 | unsigned char address:3; | 136 | unsigned char address:3; |
143 | unsigned char packet_rank:2; | 137 | unsigned char packet_rank:2; |
144 | #endif | ||
145 | unsigned char length_lsb; | 138 | unsigned char length_lsb; |
146 | unsigned char length_msb; | 139 | unsigned char length_msb; |
147 | }; | 140 | }; |
148 | 141 | ||
149 | struct nl_packet_header { | 142 | struct nl_packet_header { |
150 | #if defined(__BIG_ENDIAN_BITFIELD) | ||
151 | unsigned char packet_rank:2; | ||
152 | unsigned char address:3; | ||
153 | unsigned char protocol:3; | ||
154 | #else | ||
155 | unsigned char protocol:3; | 143 | unsigned char protocol:3; |
156 | unsigned char address:3; | 144 | unsigned char address:3; |
157 | unsigned char packet_rank:2; | 145 | unsigned char packet_rank:2; |
158 | #endif | ||
159 | }; | 146 | }; |
160 | 147 | ||
161 | /* Value of 'packet_rank' above */ | 148 | /* Value of 'packet_rank' above */ |
@@ -227,15 +214,12 @@ struct MEMINFREG { | |||
227 | unsigned short memreg_tx_new; /* TX2 (new) Register (R/W) */ | 214 | unsigned short memreg_tx_new; /* TX2 (new) Register (R/W) */ |
228 | }; | 215 | }; |
229 | 216 | ||
230 | #define IODMADPR 0x00 /* DMA Data Port Register (R/W) */ | ||
231 | |||
232 | #define CARD_PRESENT_VALUE (0xBEEFCAFEUL) | 217 | #define CARD_PRESENT_VALUE (0xBEEFCAFEUL) |
233 | 218 | ||
234 | #define MEMTX_TX 0x0001 | 219 | #define MEMTX_TX 0x0001 |
235 | #define MEMRX_RX 0x0001 | 220 | #define MEMRX_RX 0x0001 |
236 | #define MEMRX_RX_DONE 0x0001 | 221 | #define MEMRX_RX_DONE 0x0001 |
237 | #define MEMRX_PCINTACKK 0x0001 | 222 | #define MEMRX_PCINTACKK 0x0001 |
238 | #define MEMRX_MEMSPURIOUSINT 0x0001 | ||
239 | 223 | ||
240 | #define NL_NUM_OF_PRIORITIES 3 | 224 | #define NL_NUM_OF_PRIORITIES 3 |
241 | #define NL_NUM_OF_PROTOCOLS 3 | 225 | #define NL_NUM_OF_PROTOCOLS 3 |
@@ -245,7 +229,7 @@ struct ipw_hardware { | |||
245 | unsigned int base_port; | 229 | unsigned int base_port; |
246 | short hw_version; | 230 | short hw_version; |
247 | unsigned short ll_mtu; | 231 | unsigned short ll_mtu; |
248 | spinlock_t spinlock; | 232 | spinlock_t lock; |
249 | 233 | ||
250 | int initializing; | 234 | int initializing; |
251 | int init_loops; | 235 | int init_loops; |
@@ -386,26 +370,52 @@ static void dump_data_bytes(const char *type, const unsigned char *data, | |||
386 | length < DUMP_MAX_BYTES ? length : DUMP_MAX_BYTES); | 370 | length < DUMP_MAX_BYTES ? length : DUMP_MAX_BYTES); |
387 | } | 371 | } |
388 | 372 | ||
389 | static int do_send_fragment(struct ipw_hardware *hw, const unsigned char *data, | 373 | static void swap_packet_bitfield_to_le(unsigned char *data) |
374 | { | ||
375 | #ifdef __BIG_ENDIAN_BITFIELD | ||
376 | unsigned char tmp = *data, ret = 0; | ||
377 | |||
378 | /* | ||
379 | * transform bits from aa.bbb.ccc to ccc.bbb.aa | ||
380 | */ | ||
381 | ret |= tmp & 0xc0 >> 6; | ||
382 | ret |= tmp & 0x38 >> 1; | ||
383 | ret |= tmp & 0x07 << 5; | ||
384 | *data = ret & 0xff; | ||
385 | #endif | ||
386 | } | ||
387 | |||
388 | static void swap_packet_bitfield_from_le(unsigned char *data) | ||
389 | { | ||
390 | #ifdef __BIG_ENDIAN_BITFIELD | ||
391 | unsigned char tmp = *data, ret = 0; | ||
392 | |||
393 | /* | ||
394 | * transform bits from ccc.bbb.aa to aa.bbb.ccc | ||
395 | */ | ||
396 | ret |= tmp & 0xe0 >> 5; | ||
397 | ret |= tmp & 0x1c << 1; | ||
398 | ret |= tmp & 0x03 << 6; | ||
399 | *data = ret & 0xff; | ||
400 | #endif | ||
401 | } | ||
402 | |||
403 | static void do_send_fragment(struct ipw_hardware *hw, unsigned char *data, | ||
390 | unsigned length) | 404 | unsigned length) |
391 | { | 405 | { |
392 | int i; | 406 | unsigned i; |
393 | unsigned long flags; | 407 | unsigned long flags; |
394 | 408 | ||
395 | start_timing(); | 409 | start_timing(); |
396 | 410 | BUG_ON(length > hw->ll_mtu); | |
397 | if (length == 0) | ||
398 | return 0; | ||
399 | |||
400 | if (length > hw->ll_mtu) | ||
401 | return -1; | ||
402 | 411 | ||
403 | if (ipwireless_debug) | 412 | if (ipwireless_debug) |
404 | dump_data_bytes("send", data, length); | 413 | dump_data_bytes("send", data, length); |
405 | 414 | ||
406 | spin_lock_irqsave(&hw->spinlock, flags); | 415 | spin_lock_irqsave(&hw->lock, flags); |
407 | 416 | ||
408 | hw->tx_ready = 0; | 417 | hw->tx_ready = 0; |
418 | swap_packet_bitfield_to_le(data); | ||
409 | 419 | ||
410 | if (hw->hw_version == HW_VERSION_1) { | 420 | if (hw->hw_version == HW_VERSION_1) { |
411 | outw((unsigned short) length, hw->base_port + IODWR); | 421 | outw((unsigned short) length, hw->base_port + IODWR); |
@@ -414,7 +424,7 @@ static int do_send_fragment(struct ipw_hardware *hw, const unsigned char *data, | |||
414 | unsigned short d = data[i]; | 424 | unsigned short d = data[i]; |
415 | __le16 raw_data; | 425 | __le16 raw_data; |
416 | 426 | ||
417 | if (likely(i + 1 < length)) | 427 | if (i + 1 < length) |
418 | d |= data[i + 1] << 8; | 428 | d |= data[i + 1] << 8; |
419 | raw_data = cpu_to_le16(d); | 429 | raw_data = cpu_to_le16(d); |
420 | outw(raw_data, hw->base_port + IODWR); | 430 | outw(raw_data, hw->base_port + IODWR); |
@@ -422,32 +432,30 @@ static int do_send_fragment(struct ipw_hardware *hw, const unsigned char *data, | |||
422 | 432 | ||
423 | outw(DCR_TXDONE, hw->base_port + IODCR); | 433 | outw(DCR_TXDONE, hw->base_port + IODCR); |
424 | } else if (hw->hw_version == HW_VERSION_2) { | 434 | } else if (hw->hw_version == HW_VERSION_2) { |
425 | outw((unsigned short) length, hw->base_port + IODMADPR); | 435 | outw((unsigned short) length, hw->base_port); |
426 | 436 | ||
427 | for (i = 0; i < length; i += 2) { | 437 | for (i = 0; i < length; i += 2) { |
428 | unsigned short d = data[i]; | 438 | unsigned short d = data[i]; |
429 | __le16 raw_data; | 439 | __le16 raw_data; |
430 | 440 | ||
431 | if ((i + 1 < length)) | 441 | if (i + 1 < length) |
432 | d |= data[i + 1] << 8; | 442 | d |= data[i + 1] << 8; |
433 | raw_data = cpu_to_le16(d); | 443 | raw_data = cpu_to_le16(d); |
434 | outw(raw_data, hw->base_port + IODMADPR); | 444 | outw(raw_data, hw->base_port); |
435 | } | 445 | } |
436 | while ((i & 3) != 2) { | 446 | while ((i & 3) != 2) { |
437 | outw((unsigned short) 0xDEAD, hw->base_port + IODMADPR); | 447 | outw((unsigned short) 0xDEAD, hw->base_port); |
438 | i += 2; | 448 | i += 2; |
439 | } | 449 | } |
440 | writew(MEMRX_RX, &hw->memory_info_regs->memreg_rx); | 450 | writew(MEMRX_RX, &hw->memory_info_regs->memreg_rx); |
441 | } | 451 | } |
442 | 452 | ||
443 | spin_unlock_irqrestore(&hw->spinlock, flags); | 453 | spin_unlock_irqrestore(&hw->lock, flags); |
444 | 454 | ||
445 | end_write_timing(length); | 455 | end_write_timing(length); |
446 | |||
447 | return 0; | ||
448 | } | 456 | } |
449 | 457 | ||
450 | static int do_send_packet(struct ipw_hardware *hw, struct ipw_tx_packet *packet) | 458 | static void do_send_packet(struct ipw_hardware *hw, struct ipw_tx_packet *packet) |
451 | { | 459 | { |
452 | unsigned short fragment_data_len; | 460 | unsigned short fragment_data_len; |
453 | unsigned short data_left = packet->length - packet->offset; | 461 | unsigned short data_left = packet->length - packet->offset; |
@@ -462,6 +470,10 @@ static int do_send_packet(struct ipw_hardware *hw, struct ipw_tx_packet *packet) | |||
462 | if (data_left < fragment_data_len) | 470 | if (data_left < fragment_data_len) |
463 | fragment_data_len = data_left; | 471 | fragment_data_len = data_left; |
464 | 472 | ||
473 | /* | ||
474 | * hdr_first is now in machine bitfield order, which will be swapped | ||
475 | * to le just before it goes to hw | ||
476 | */ | ||
465 | pkt.hdr_first.protocol = packet->protocol; | 477 | pkt.hdr_first.protocol = packet->protocol; |
466 | pkt.hdr_first.address = packet->dest_addr; | 478 | pkt.hdr_first.address = packet->dest_addr; |
467 | pkt.hdr_first.packet_rank = 0; | 479 | pkt.hdr_first.packet_rank = 0; |
@@ -493,25 +505,23 @@ static int do_send_packet(struct ipw_hardware *hw, struct ipw_tx_packet *packet) | |||
493 | */ | 505 | */ |
494 | unsigned long flags; | 506 | unsigned long flags; |
495 | 507 | ||
496 | spin_lock_irqsave(&hw->spinlock, flags); | 508 | spin_lock_irqsave(&hw->lock, flags); |
497 | list_add(&packet->queue, &hw->tx_queue[0]); | 509 | list_add(&packet->queue, &hw->tx_queue[0]); |
498 | hw->tx_queued++; | 510 | hw->tx_queued++; |
499 | spin_unlock_irqrestore(&hw->spinlock, flags); | 511 | spin_unlock_irqrestore(&hw->lock, flags); |
500 | } else { | 512 | } else { |
501 | if (packet->packet_callback) | 513 | if (packet->packet_callback) |
502 | packet->packet_callback(packet->callback_data, | 514 | packet->packet_callback(packet->callback_data, |
503 | packet->length); | 515 | packet->length); |
504 | kfree(packet); | 516 | kfree(packet); |
505 | } | 517 | } |
506 | |||
507 | return 0; | ||
508 | } | 518 | } |
509 | 519 | ||
510 | static void ipw_setup_hardware(struct ipw_hardware *hw) | 520 | static void ipw_setup_hardware(struct ipw_hardware *hw) |
511 | { | 521 | { |
512 | unsigned long flags; | 522 | unsigned long flags; |
513 | 523 | ||
514 | spin_lock_irqsave(&hw->spinlock, flags); | 524 | spin_lock_irqsave(&hw->lock, flags); |
515 | if (hw->hw_version == HW_VERSION_1) { | 525 | if (hw->hw_version == HW_VERSION_1) { |
516 | /* Reset RX FIFO */ | 526 | /* Reset RX FIFO */ |
517 | outw(DCR_RXRESET, hw->base_port + IODCR); | 527 | outw(DCR_RXRESET, hw->base_port + IODCR); |
@@ -530,7 +540,7 @@ static void ipw_setup_hardware(struct ipw_hardware *hw) | |||
530 | csr |= 1; | 540 | csr |= 1; |
531 | writew(csr, &hw->memregs_CCR->reg_config_and_status); | 541 | writew(csr, &hw->memregs_CCR->reg_config_and_status); |
532 | } | 542 | } |
533 | spin_unlock_irqrestore(&hw->spinlock, flags); | 543 | spin_unlock_irqrestore(&hw->lock, flags); |
534 | } | 544 | } |
535 | 545 | ||
536 | /* | 546 | /* |
@@ -549,28 +559,23 @@ static struct ipw_rx_packet *pool_allocate(struct ipw_hardware *hw, | |||
549 | if (!packet) { | 559 | if (!packet) { |
550 | unsigned long flags; | 560 | unsigned long flags; |
551 | 561 | ||
552 | /* | 562 | spin_lock_irqsave(&hw->lock, flags); |
553 | * If this is the first fragment, then we will need to fetch a | ||
554 | * packet to put it in. | ||
555 | */ | ||
556 | spin_lock_irqsave(&hw->spinlock, flags); | ||
557 | /* If we have one in our pool, then pull it out. */ | ||
558 | if (!list_empty(&hw->rx_pool)) { | 563 | if (!list_empty(&hw->rx_pool)) { |
559 | packet = list_first_entry(&hw->rx_pool, | 564 | packet = list_first_entry(&hw->rx_pool, |
560 | struct ipw_rx_packet, queue); | 565 | struct ipw_rx_packet, queue); |
561 | list_del(&packet->queue); | ||
562 | hw->rx_pool_size--; | 566 | hw->rx_pool_size--; |
563 | spin_unlock_irqrestore(&hw->spinlock, flags); | 567 | spin_unlock_irqrestore(&hw->lock, flags); |
568 | list_del(&packet->queue); | ||
564 | } else { | 569 | } else { |
565 | /* Otherwise allocate a new one. */ | 570 | const int min_capacity = |
566 | static int min_capacity = 256; | 571 | ipwireless_ppp_mru(hw->network) + 2; |
567 | int new_capacity; | 572 | int new_capacity; |
568 | 573 | ||
569 | spin_unlock_irqrestore(&hw->spinlock, flags); | 574 | spin_unlock_irqrestore(&hw->lock, flags); |
570 | new_capacity = | 575 | new_capacity = |
571 | minimum_free_space > min_capacity | 576 | (minimum_free_space > min_capacity |
572 | ? minimum_free_space | 577 | ? minimum_free_space |
573 | : min_capacity; | 578 | : min_capacity); |
574 | packet = kmalloc(sizeof(struct ipw_rx_packet) | 579 | packet = kmalloc(sizeof(struct ipw_rx_packet) |
575 | + new_capacity, GFP_ATOMIC); | 580 | + new_capacity, GFP_ATOMIC); |
576 | if (!packet) | 581 | if (!packet) |
@@ -580,10 +585,6 @@ static struct ipw_rx_packet *pool_allocate(struct ipw_hardware *hw, | |||
580 | packet->length = 0; | 585 | packet->length = 0; |
581 | } | 586 | } |
582 | 587 | ||
583 | /* | ||
584 | * If this packet does not have sufficient capacity for the data we | ||
585 | * want to add, then make it bigger. | ||
586 | */ | ||
587 | if (packet->length + minimum_free_space > packet->capacity) { | 588 | if (packet->length + minimum_free_space > packet->capacity) { |
588 | struct ipw_rx_packet *old_packet = packet; | 589 | struct ipw_rx_packet *old_packet = packet; |
589 | 590 | ||
@@ -610,13 +611,15 @@ static void pool_free(struct ipw_hardware *hw, struct ipw_rx_packet *packet) | |||
610 | kfree(packet); | 611 | kfree(packet); |
611 | else { | 612 | else { |
612 | hw->rx_pool_size++; | 613 | hw->rx_pool_size++; |
613 | list_add_tail(&packet->queue, &hw->rx_pool); | 614 | list_add(&packet->queue, &hw->rx_pool); |
614 | } | 615 | } |
615 | } | 616 | } |
616 | 617 | ||
617 | static void queue_received_packet(struct ipw_hardware *hw, | 618 | static void queue_received_packet(struct ipw_hardware *hw, |
618 | unsigned int protocol, unsigned int address, | 619 | unsigned int protocol, |
619 | unsigned char *data, int length, int is_last) | 620 | unsigned int address, |
621 | const unsigned char *data, int length, | ||
622 | int is_last) | ||
620 | { | 623 | { |
621 | unsigned int channel_idx = address - 1; | 624 | unsigned int channel_idx = address - 1; |
622 | struct ipw_rx_packet *packet = NULL; | 625 | struct ipw_rx_packet *packet = NULL; |
@@ -658,9 +661,9 @@ static void queue_received_packet(struct ipw_hardware *hw, | |||
658 | packet = *assem; | 661 | packet = *assem; |
659 | *assem = NULL; | 662 | *assem = NULL; |
660 | /* Count queued DATA bytes only */ | 663 | /* Count queued DATA bytes only */ |
661 | spin_lock_irqsave(&hw->spinlock, flags); | 664 | spin_lock_irqsave(&hw->lock, flags); |
662 | hw->rx_bytes_queued += packet->length; | 665 | hw->rx_bytes_queued += packet->length; |
663 | spin_unlock_irqrestore(&hw->spinlock, flags); | 666 | spin_unlock_irqrestore(&hw->lock, flags); |
664 | } | 667 | } |
665 | } else { | 668 | } else { |
666 | /* If it's a CTRL packet, don't assemble, just queue it. */ | 669 | /* If it's a CTRL packet, don't assemble, just queue it. */ |
@@ -682,13 +685,13 @@ static void queue_received_packet(struct ipw_hardware *hw, | |||
682 | * network layer. | 685 | * network layer. |
683 | */ | 686 | */ |
684 | if (packet) { | 687 | if (packet) { |
685 | spin_lock_irqsave(&hw->spinlock, flags); | 688 | spin_lock_irqsave(&hw->lock, flags); |
686 | list_add_tail(&packet->queue, &hw->rx_queue); | 689 | list_add_tail(&packet->queue, &hw->rx_queue); |
687 | /* Block reception of incoming packets if queue is full. */ | 690 | /* Block reception of incoming packets if queue is full. */ |
688 | hw->blocking_rx = | 691 | hw->blocking_rx = |
689 | hw->rx_bytes_queued >= IPWIRELESS_RX_QUEUE_SIZE; | 692 | (hw->rx_bytes_queued >= IPWIRELESS_RX_QUEUE_SIZE); |
690 | 693 | ||
691 | spin_unlock_irqrestore(&hw->spinlock, flags); | 694 | spin_unlock_irqrestore(&hw->lock, flags); |
692 | schedule_work(&hw->work_rx); | 695 | schedule_work(&hw->work_rx); |
693 | } | 696 | } |
694 | } | 697 | } |
@@ -702,7 +705,7 @@ static void ipw_receive_data_work(struct work_struct *work_rx) | |||
702 | container_of(work_rx, struct ipw_hardware, work_rx); | 705 | container_of(work_rx, struct ipw_hardware, work_rx); |
703 | unsigned long flags; | 706 | unsigned long flags; |
704 | 707 | ||
705 | spin_lock_irqsave(&hw->spinlock, flags); | 708 | spin_lock_irqsave(&hw->lock, flags); |
706 | while (!list_empty(&hw->rx_queue)) { | 709 | while (!list_empty(&hw->rx_queue)) { |
707 | struct ipw_rx_packet *packet = | 710 | struct ipw_rx_packet *packet = |
708 | list_first_entry(&hw->rx_queue, | 711 | list_first_entry(&hw->rx_queue, |
@@ -720,7 +723,7 @@ static void ipw_receive_data_work(struct work_struct *work_rx) | |||
720 | if (packet->protocol == TL_PROTOCOLID_COM_DATA) { | 723 | if (packet->protocol == TL_PROTOCOLID_COM_DATA) { |
721 | if (hw->network != NULL) { | 724 | if (hw->network != NULL) { |
722 | /* If the network hasn't been disconnected. */ | 725 | /* If the network hasn't been disconnected. */ |
723 | spin_unlock_irqrestore(&hw->spinlock, flags); | 726 | spin_unlock_irqrestore(&hw->lock, flags); |
724 | /* | 727 | /* |
725 | * This must run unlocked due to tty processing | 728 | * This must run unlocked due to tty processing |
726 | * and mutex locking | 729 | * and mutex locking |
@@ -731,7 +734,7 @@ static void ipw_receive_data_work(struct work_struct *work_rx) | |||
731 | (unsigned char *)packet | 734 | (unsigned char *)packet |
732 | + sizeof(struct ipw_rx_packet), | 735 | + sizeof(struct ipw_rx_packet), |
733 | packet->length); | 736 | packet->length); |
734 | spin_lock_irqsave(&hw->spinlock, flags); | 737 | spin_lock_irqsave(&hw->lock, flags); |
735 | } | 738 | } |
736 | /* Count queued DATA bytes only */ | 739 | /* Count queued DATA bytes only */ |
737 | hw->rx_bytes_queued -= packet->length; | 740 | hw->rx_bytes_queued -= packet->length; |
@@ -755,15 +758,15 @@ static void ipw_receive_data_work(struct work_struct *work_rx) | |||
755 | if (hw->shutting_down) | 758 | if (hw->shutting_down) |
756 | break; | 759 | break; |
757 | } | 760 | } |
758 | spin_unlock_irqrestore(&hw->spinlock, flags); | 761 | spin_unlock_irqrestore(&hw->lock, flags); |
759 | } | 762 | } |
760 | 763 | ||
761 | static void handle_received_CTRL_packet(struct ipw_hardware *hw, | 764 | static void handle_received_CTRL_packet(struct ipw_hardware *hw, |
762 | unsigned int channel_idx, | 765 | unsigned int channel_idx, |
763 | unsigned char *data, int len) | 766 | const unsigned char *data, int len) |
764 | { | 767 | { |
765 | struct ipw_control_packet_body *body = | 768 | const struct ipw_control_packet_body *body = |
766 | (struct ipw_control_packet_body *) data; | 769 | (const struct ipw_control_packet_body *) data; |
767 | unsigned int changed_mask; | 770 | unsigned int changed_mask; |
768 | 771 | ||
769 | if (len != sizeof(struct ipw_control_packet_body)) { | 772 | if (len != sizeof(struct ipw_control_packet_body)) { |
@@ -805,13 +808,13 @@ static void handle_received_CTRL_packet(struct ipw_hardware *hw, | |||
805 | } | 808 | } |
806 | 809 | ||
807 | static void handle_received_packet(struct ipw_hardware *hw, | 810 | static void handle_received_packet(struct ipw_hardware *hw, |
808 | union nl_packet *packet, | 811 | const union nl_packet *packet, |
809 | unsigned short len) | 812 | unsigned short len) |
810 | { | 813 | { |
811 | unsigned int protocol = packet->hdr.protocol; | 814 | unsigned int protocol = packet->hdr.protocol; |
812 | unsigned int address = packet->hdr.address; | 815 | unsigned int address = packet->hdr.address; |
813 | unsigned int header_length; | 816 | unsigned int header_length; |
814 | unsigned char *data; | 817 | const unsigned char *data; |
815 | unsigned int data_len; | 818 | unsigned int data_len; |
816 | int is_last = packet->hdr.packet_rank & NL_LAST_PACKET; | 819 | int is_last = packet->hdr.packet_rank & NL_LAST_PACKET; |
817 | 820 | ||
@@ -850,7 +853,7 @@ static void acknowledge_data_read(struct ipw_hardware *hw) | |||
850 | static void do_receive_packet(struct ipw_hardware *hw) | 853 | static void do_receive_packet(struct ipw_hardware *hw) |
851 | { | 854 | { |
852 | unsigned len; | 855 | unsigned len; |
853 | unsigned int i; | 856 | unsigned i; |
854 | unsigned char pkt[LL_MTU_MAX]; | 857 | unsigned char pkt[LL_MTU_MAX]; |
855 | 858 | ||
856 | start_timing(); | 859 | start_timing(); |
@@ -859,8 +862,7 @@ static void do_receive_packet(struct ipw_hardware *hw) | |||
859 | len = inw(hw->base_port + IODRR); | 862 | len = inw(hw->base_port + IODRR); |
860 | if (len > hw->ll_mtu) { | 863 | if (len > hw->ll_mtu) { |
861 | printk(KERN_INFO IPWIRELESS_PCCARD_NAME | 864 | printk(KERN_INFO IPWIRELESS_PCCARD_NAME |
862 | ": received a packet of %u bytes - " | 865 | ": received a packet of %u bytes - longer than the MTU!\n", len); |
863 | "longer than the MTU!\n", len); | ||
864 | outw(DCR_RXDONE | DCR_RXRESET, hw->base_port + IODCR); | 866 | outw(DCR_RXDONE | DCR_RXRESET, hw->base_port + IODCR); |
865 | return; | 867 | return; |
866 | } | 868 | } |
@@ -873,18 +875,17 @@ static void do_receive_packet(struct ipw_hardware *hw) | |||
873 | pkt[i + 1] = (unsigned char) (data >> 8); | 875 | pkt[i + 1] = (unsigned char) (data >> 8); |
874 | } | 876 | } |
875 | } else { | 877 | } else { |
876 | len = inw(hw->base_port + IODMADPR); | 878 | len = inw(hw->base_port); |
877 | if (len > hw->ll_mtu) { | 879 | if (len > hw->ll_mtu) { |
878 | printk(KERN_INFO IPWIRELESS_PCCARD_NAME | 880 | printk(KERN_INFO IPWIRELESS_PCCARD_NAME |
879 | ": received a packet of %u bytes - " | 881 | ": received a packet of %u bytes - longer than the MTU!\n", len); |
880 | "longer than the MTU!\n", len); | ||
881 | writew(MEMRX_PCINTACKK, | 882 | writew(MEMRX_PCINTACKK, |
882 | &hw->memory_info_regs->memreg_pc_interrupt_ack); | 883 | &hw->memory_info_regs->memreg_pc_interrupt_ack); |
883 | return; | 884 | return; |
884 | } | 885 | } |
885 | 886 | ||
886 | for (i = 0; i < len; i += 2) { | 887 | for (i = 0; i < len; i += 2) { |
887 | __le16 raw_data = inw(hw->base_port + IODMADPR); | 888 | __le16 raw_data = inw(hw->base_port); |
888 | unsigned short data = le16_to_cpu(raw_data); | 889 | unsigned short data = le16_to_cpu(raw_data); |
889 | 890 | ||
890 | pkt[i] = (unsigned char) data; | 891 | pkt[i] = (unsigned char) data; |
@@ -892,13 +893,15 @@ static void do_receive_packet(struct ipw_hardware *hw) | |||
892 | } | 893 | } |
893 | 894 | ||
894 | while ((i & 3) != 2) { | 895 | while ((i & 3) != 2) { |
895 | inw(hw->base_port + IODMADPR); | 896 | inw(hw->base_port); |
896 | i += 2; | 897 | i += 2; |
897 | } | 898 | } |
898 | } | 899 | } |
899 | 900 | ||
900 | acknowledge_data_read(hw); | 901 | acknowledge_data_read(hw); |
901 | 902 | ||
903 | swap_packet_bitfield_from_le(pkt); | ||
904 | |||
902 | if (ipwireless_debug) | 905 | if (ipwireless_debug) |
903 | dump_data_bytes("recv", pkt, len); | 906 | dump_data_bytes("recv", pkt, len); |
904 | 907 | ||
@@ -916,8 +919,7 @@ static int get_current_packet_priority(struct ipw_hardware *hw) | |||
916 | * until setup is complete. | 919 | * until setup is complete. |
917 | */ | 920 | */ |
918 | return (hw->to_setup || hw->initializing | 921 | return (hw->to_setup || hw->initializing |
919 | ? PRIO_SETUP + 1 : | 922 | ? PRIO_SETUP + 1 : NL_NUM_OF_PRIORITIES); |
920 | NL_NUM_OF_PRIORITIES); | ||
921 | } | 923 | } |
922 | 924 | ||
923 | /* | 925 | /* |
@@ -928,17 +930,17 @@ static int get_packets_from_hw(struct ipw_hardware *hw) | |||
928 | int received = 0; | 930 | int received = 0; |
929 | unsigned long flags; | 931 | unsigned long flags; |
930 | 932 | ||
931 | spin_lock_irqsave(&hw->spinlock, flags); | 933 | spin_lock_irqsave(&hw->lock, flags); |
932 | while (hw->rx_ready && !hw->blocking_rx) { | 934 | while (hw->rx_ready && !hw->blocking_rx) { |
933 | received = 1; | 935 | received = 1; |
934 | hw->rx_ready--; | 936 | hw->rx_ready--; |
935 | spin_unlock_irqrestore(&hw->spinlock, flags); | 937 | spin_unlock_irqrestore(&hw->lock, flags); |
936 | 938 | ||
937 | do_receive_packet(hw); | 939 | do_receive_packet(hw); |
938 | 940 | ||
939 | spin_lock_irqsave(&hw->spinlock, flags); | 941 | spin_lock_irqsave(&hw->lock, flags); |
940 | } | 942 | } |
941 | spin_unlock_irqrestore(&hw->spinlock, flags); | 943 | spin_unlock_irqrestore(&hw->lock, flags); |
942 | 944 | ||
943 | return received; | 945 | return received; |
944 | } | 946 | } |
@@ -954,7 +956,7 @@ static int send_pending_packet(struct ipw_hardware *hw, int priority_limit) | |||
954 | int more_to_send = 0; | 956 | int more_to_send = 0; |
955 | unsigned long flags; | 957 | unsigned long flags; |
956 | 958 | ||
957 | spin_lock_irqsave(&hw->spinlock, flags); | 959 | spin_lock_irqsave(&hw->lock, flags); |
958 | if (hw->tx_queued && hw->tx_ready) { | 960 | if (hw->tx_queued && hw->tx_ready) { |
959 | int priority; | 961 | int priority; |
960 | struct ipw_tx_packet *packet = NULL; | 962 | struct ipw_tx_packet *packet = NULL; |
@@ -975,17 +977,17 @@ static int send_pending_packet(struct ipw_hardware *hw, int priority_limit) | |||
975 | } | 977 | } |
976 | if (!packet) { | 978 | if (!packet) { |
977 | hw->tx_queued = 0; | 979 | hw->tx_queued = 0; |
978 | spin_unlock_irqrestore(&hw->spinlock, flags); | 980 | spin_unlock_irqrestore(&hw->lock, flags); |
979 | return 0; | 981 | return 0; |
980 | } | 982 | } |
981 | 983 | ||
982 | spin_unlock_irqrestore(&hw->spinlock, flags); | 984 | spin_unlock_irqrestore(&hw->lock, flags); |
983 | 985 | ||
984 | /* Send */ | 986 | /* Send */ |
985 | do_send_packet(hw, packet); | 987 | do_send_packet(hw, packet); |
986 | 988 | ||
987 | /* Check if more to send */ | 989 | /* Check if more to send */ |
988 | spin_lock_irqsave(&hw->spinlock, flags); | 990 | spin_lock_irqsave(&hw->lock, flags); |
989 | for (priority = 0; priority < priority_limit; priority++) | 991 | for (priority = 0; priority < priority_limit; priority++) |
990 | if (!list_empty(&hw->tx_queue[priority])) { | 992 | if (!list_empty(&hw->tx_queue[priority])) { |
991 | more_to_send = 1; | 993 | more_to_send = 1; |
@@ -995,7 +997,7 @@ static int send_pending_packet(struct ipw_hardware *hw, int priority_limit) | |||
995 | if (!more_to_send) | 997 | if (!more_to_send) |
996 | hw->tx_queued = 0; | 998 | hw->tx_queued = 0; |
997 | } | 999 | } |
998 | spin_unlock_irqrestore(&hw->spinlock, flags); | 1000 | spin_unlock_irqrestore(&hw->lock, flags); |
999 | 1001 | ||
1000 | return more_to_send; | 1002 | return more_to_send; |
1001 | } | 1003 | } |
@@ -1008,9 +1010,9 @@ static void ipwireless_do_tasklet(unsigned long hw_) | |||
1008 | struct ipw_hardware *hw = (struct ipw_hardware *) hw_; | 1010 | struct ipw_hardware *hw = (struct ipw_hardware *) hw_; |
1009 | unsigned long flags; | 1011 | unsigned long flags; |
1010 | 1012 | ||
1011 | spin_lock_irqsave(&hw->spinlock, flags); | 1013 | spin_lock_irqsave(&hw->lock, flags); |
1012 | if (hw->shutting_down) { | 1014 | if (hw->shutting_down) { |
1013 | spin_unlock_irqrestore(&hw->spinlock, flags); | 1015 | spin_unlock_irqrestore(&hw->lock, flags); |
1014 | return; | 1016 | return; |
1015 | } | 1017 | } |
1016 | 1018 | ||
@@ -1019,7 +1021,7 @@ static void ipwireless_do_tasklet(unsigned long hw_) | |||
1019 | * Initial setup data sent to hardware | 1021 | * Initial setup data sent to hardware |
1020 | */ | 1022 | */ |
1021 | hw->to_setup = 2; | 1023 | hw->to_setup = 2; |
1022 | spin_unlock_irqrestore(&hw->spinlock, flags); | 1024 | spin_unlock_irqrestore(&hw->lock, flags); |
1023 | 1025 | ||
1024 | ipw_setup_hardware(hw); | 1026 | ipw_setup_hardware(hw); |
1025 | ipw_send_setup_packet(hw); | 1027 | ipw_send_setup_packet(hw); |
@@ -1030,7 +1032,7 @@ static void ipwireless_do_tasklet(unsigned long hw_) | |||
1030 | int priority_limit = get_current_packet_priority(hw); | 1032 | int priority_limit = get_current_packet_priority(hw); |
1031 | int again; | 1033 | int again; |
1032 | 1034 | ||
1033 | spin_unlock_irqrestore(&hw->spinlock, flags); | 1035 | spin_unlock_irqrestore(&hw->lock, flags); |
1034 | 1036 | ||
1035 | do { | 1037 | do { |
1036 | again = send_pending_packet(hw, priority_limit); | 1038 | again = send_pending_packet(hw, priority_limit); |
@@ -1068,16 +1070,16 @@ static irqreturn_t ipwireless_handle_v1_interrupt(int irq, | |||
1068 | /* Transmit complete. */ | 1070 | /* Transmit complete. */ |
1069 | if (irqn & IR_TXINTR) { | 1071 | if (irqn & IR_TXINTR) { |
1070 | ack |= IR_TXINTR; | 1072 | ack |= IR_TXINTR; |
1071 | spin_lock_irqsave(&hw->spinlock, flags); | 1073 | spin_lock_irqsave(&hw->lock, flags); |
1072 | hw->tx_ready = 1; | 1074 | hw->tx_ready = 1; |
1073 | spin_unlock_irqrestore(&hw->spinlock, flags); | 1075 | spin_unlock_irqrestore(&hw->lock, flags); |
1074 | } | 1076 | } |
1075 | /* Received data */ | 1077 | /* Received data */ |
1076 | if (irqn & IR_RXINTR) { | 1078 | if (irqn & IR_RXINTR) { |
1077 | ack |= IR_RXINTR; | 1079 | ack |= IR_RXINTR; |
1078 | spin_lock_irqsave(&hw->spinlock, flags); | 1080 | spin_lock_irqsave(&hw->lock, flags); |
1079 | hw->rx_ready++; | 1081 | hw->rx_ready++; |
1080 | spin_unlock_irqrestore(&hw->spinlock, flags); | 1082 | spin_unlock_irqrestore(&hw->lock, flags); |
1081 | } | 1083 | } |
1082 | if (ack != 0) { | 1084 | if (ack != 0) { |
1083 | outw(ack, hw->base_port + IOIR); | 1085 | outw(ack, hw->base_port + IOIR); |
@@ -1128,9 +1130,8 @@ static irqreturn_t ipwireless_handle_v2_v3_interrupt(int irq, | |||
1128 | } else { | 1130 | } else { |
1129 | return IRQ_NONE; | 1131 | return IRQ_NONE; |
1130 | } | 1132 | } |
1131 | } else { | 1133 | } else |
1132 | return IRQ_NONE; | 1134 | return IRQ_NONE; |
1133 | } | ||
1134 | } | 1135 | } |
1135 | 1136 | ||
1136 | /* | 1137 | /* |
@@ -1149,9 +1150,9 @@ static irqreturn_t ipwireless_handle_v2_v3_interrupt(int irq, | |||
1149 | if (hw->serial_number_detected) { | 1150 | if (hw->serial_number_detected) { |
1150 | if (memtx_serial != hw->last_memtx_serial) { | 1151 | if (memtx_serial != hw->last_memtx_serial) { |
1151 | hw->last_memtx_serial = memtx_serial; | 1152 | hw->last_memtx_serial = memtx_serial; |
1152 | spin_lock_irqsave(&hw->spinlock, flags); | 1153 | spin_lock_irqsave(&hw->lock, flags); |
1153 | hw->rx_ready++; | 1154 | hw->rx_ready++; |
1154 | spin_unlock_irqrestore(&hw->spinlock, flags); | 1155 | spin_unlock_irqrestore(&hw->lock, flags); |
1155 | rx = 1; | 1156 | rx = 1; |
1156 | } else | 1157 | } else |
1157 | /* Ignore 'Timer Recovery' duplicates. */ | 1158 | /* Ignore 'Timer Recovery' duplicates. */ |
@@ -1166,18 +1167,18 @@ static irqreturn_t ipwireless_handle_v2_v3_interrupt(int irq, | |||
1166 | printk(KERN_DEBUG IPWIRELESS_PCCARD_NAME | 1167 | printk(KERN_DEBUG IPWIRELESS_PCCARD_NAME |
1167 | ": memreg_tx serial num detected\n"); | 1168 | ": memreg_tx serial num detected\n"); |
1168 | 1169 | ||
1169 | spin_lock_irqsave(&hw->spinlock, flags); | 1170 | spin_lock_irqsave(&hw->lock, flags); |
1170 | hw->rx_ready++; | 1171 | hw->rx_ready++; |
1171 | spin_unlock_irqrestore(&hw->spinlock, flags); | 1172 | spin_unlock_irqrestore(&hw->lock, flags); |
1172 | } | 1173 | } |
1173 | rx = 1; | 1174 | rx = 1; |
1174 | } | 1175 | } |
1175 | } | 1176 | } |
1176 | if (memrxdone & MEMRX_RX_DONE) { | 1177 | if (memrxdone & MEMRX_RX_DONE) { |
1177 | writew(0, &hw->memory_info_regs->memreg_rx_done); | 1178 | writew(0, &hw->memory_info_regs->memreg_rx_done); |
1178 | spin_lock_irqsave(&hw->spinlock, flags); | 1179 | spin_lock_irqsave(&hw->lock, flags); |
1179 | hw->tx_ready = 1; | 1180 | hw->tx_ready = 1; |
1180 | spin_unlock_irqrestore(&hw->spinlock, flags); | 1181 | spin_unlock_irqrestore(&hw->lock, flags); |
1181 | tx = 1; | 1182 | tx = 1; |
1182 | } | 1183 | } |
1183 | if (tx) | 1184 | if (tx) |
@@ -1195,8 +1196,7 @@ static irqreturn_t ipwireless_handle_v2_v3_interrupt(int irq, | |||
1195 | ": spurious interrupt - new_tx mode\n"); | 1196 | ": spurious interrupt - new_tx mode\n"); |
1196 | else { | 1197 | else { |
1197 | printk(KERN_WARNING IPWIRELESS_PCCARD_NAME | 1198 | printk(KERN_WARNING IPWIRELESS_PCCARD_NAME |
1198 | ": no valid memreg_tx value - " | 1199 | ": no valid memreg_tx value - switching to the old memreg_tx\n"); |
1199 | "switching to the old memreg_tx\n"); | ||
1200 | hw->memreg_tx = | 1200 | hw->memreg_tx = |
1201 | &hw->memory_info_regs->memreg_tx_old; | 1201 | &hw->memory_info_regs->memreg_tx_old; |
1202 | try_mem_tx_old = 1; | 1202 | try_mem_tx_old = 1; |
@@ -1211,7 +1211,7 @@ static irqreturn_t ipwireless_handle_v2_v3_interrupt(int irq, | |||
1211 | return IRQ_HANDLED; | 1211 | return IRQ_HANDLED; |
1212 | } | 1212 | } |
1213 | 1213 | ||
1214 | irqreturn_t ipwireless_interrupt(int irq, void *dev_id, struct pt_regs *regs) | 1214 | irqreturn_t ipwireless_interrupt(int irq, void *dev_id) |
1215 | { | 1215 | { |
1216 | struct ipw_hardware *hw = dev_id; | 1216 | struct ipw_hardware *hw = dev_id; |
1217 | 1217 | ||
@@ -1226,9 +1226,9 @@ static void flush_packets_to_hw(struct ipw_hardware *hw) | |||
1226 | int priority_limit; | 1226 | int priority_limit; |
1227 | unsigned long flags; | 1227 | unsigned long flags; |
1228 | 1228 | ||
1229 | spin_lock_irqsave(&hw->spinlock, flags); | 1229 | spin_lock_irqsave(&hw->lock, flags); |
1230 | priority_limit = get_current_packet_priority(hw); | 1230 | priority_limit = get_current_packet_priority(hw); |
1231 | spin_unlock_irqrestore(&hw->spinlock, flags); | 1231 | spin_unlock_irqrestore(&hw->lock, flags); |
1232 | 1232 | ||
1233 | while (send_pending_packet(hw, priority_limit)); | 1233 | while (send_pending_packet(hw, priority_limit)); |
1234 | } | 1234 | } |
@@ -1238,10 +1238,10 @@ static void send_packet(struct ipw_hardware *hw, int priority, | |||
1238 | { | 1238 | { |
1239 | unsigned long flags; | 1239 | unsigned long flags; |
1240 | 1240 | ||
1241 | spin_lock_irqsave(&hw->spinlock, flags); | 1241 | spin_lock_irqsave(&hw->lock, flags); |
1242 | list_add_tail(&packet->queue, &hw->tx_queue[priority]); | 1242 | list_add_tail(&packet->queue, &hw->tx_queue[priority]); |
1243 | hw->tx_queued++; | 1243 | hw->tx_queued++; |
1244 | spin_unlock_irqrestore(&hw->spinlock, flags); | 1244 | spin_unlock_irqrestore(&hw->lock, flags); |
1245 | 1245 | ||
1246 | flush_packets_to_hw(hw); | 1246 | flush_packets_to_hw(hw); |
1247 | } | 1247 | } |
@@ -1291,21 +1291,20 @@ static void *alloc_ctrl_packet(int header_size, | |||
1291 | } | 1291 | } |
1292 | 1292 | ||
1293 | int ipwireless_send_packet(struct ipw_hardware *hw, unsigned int channel_idx, | 1293 | int ipwireless_send_packet(struct ipw_hardware *hw, unsigned int channel_idx, |
1294 | unsigned char *data, unsigned int length, | 1294 | const unsigned char *data, unsigned int length, |
1295 | void (*callback) (void *cb, unsigned int length), | 1295 | void (*callback) (void *cb, unsigned int length), |
1296 | void *callback_data) | 1296 | void *callback_data) |
1297 | { | 1297 | { |
1298 | struct ipw_tx_packet *packet; | 1298 | struct ipw_tx_packet *packet; |
1299 | 1299 | ||
1300 | packet = alloc_data_packet(length, | 1300 | packet = alloc_data_packet(length, (channel_idx + 1), |
1301 | (unsigned char) (channel_idx + 1), | 1301 | TL_PROTOCOLID_COM_DATA); |
1302 | TL_PROTOCOLID_COM_DATA); | ||
1303 | if (!packet) | 1302 | if (!packet) |
1304 | return -ENOMEM; | 1303 | return -ENOMEM; |
1305 | packet->packet_callback = callback; | 1304 | packet->packet_callback = callback; |
1306 | packet->callback_data = callback_data; | 1305 | packet->callback_data = callback_data; |
1307 | memcpy((unsigned char *) packet + | 1306 | memcpy((unsigned char *) packet + sizeof(struct ipw_tx_packet), data, |
1308 | sizeof(struct ipw_tx_packet), data, length); | 1307 | length); |
1309 | 1308 | ||
1310 | send_packet(hw, PRIO_DATA, packet); | 1309 | send_packet(hw, PRIO_DATA, packet); |
1311 | return 0; | 1310 | return 0; |
@@ -1321,12 +1320,11 @@ static int set_control_line(struct ipw_hardware *hw, int prio, | |||
1321 | protocolid = TL_PROTOCOLID_SETUP; | 1320 | protocolid = TL_PROTOCOLID_SETUP; |
1322 | 1321 | ||
1323 | packet = alloc_ctrl_packet(sizeof(struct ipw_control_packet), | 1322 | packet = alloc_ctrl_packet(sizeof(struct ipw_control_packet), |
1324 | (unsigned char) (channel_idx + 1), | 1323 | (channel_idx + 1), protocolid, line); |
1325 | protocolid, line); | ||
1326 | if (!packet) | 1324 | if (!packet) |
1327 | return -ENOMEM; | 1325 | return -ENOMEM; |
1328 | packet->header.length = sizeof(struct ipw_control_packet_body); | 1326 | packet->header.length = sizeof(struct ipw_control_packet_body); |
1329 | packet->body.value = (unsigned char) (state == 0 ? 0 : 1); | 1327 | packet->body.value = (state == 0 ? 0 : 1); |
1330 | send_packet(hw, prio, &packet->header); | 1328 | send_packet(hw, prio, &packet->header); |
1331 | return 0; | 1329 | return 0; |
1332 | } | 1330 | } |
@@ -1504,8 +1502,7 @@ static void handle_setup_get_version_rsp(struct ipw_hardware *hw, | |||
1504 | if (vers_no == TL_SETUP_VERSION) | 1502 | if (vers_no == TL_SETUP_VERSION) |
1505 | __handle_setup_get_version_rsp(hw); | 1503 | __handle_setup_get_version_rsp(hw); |
1506 | else | 1504 | else |
1507 | printk(KERN_ERR | 1505 | printk(KERN_ERR IPWIRELESS_PCCARD_NAME |
1508 | IPWIRELESS_PCCARD_NAME | ||
1509 | ": invalid hardware version no %u\n", | 1506 | ": invalid hardware version no %u\n", |
1510 | (unsigned int) vers_no); | 1507 | (unsigned int) vers_no); |
1511 | } | 1508 | } |
@@ -1528,10 +1525,10 @@ static void ipw_send_setup_packet(struct ipw_hardware *hw) | |||
1528 | 1525 | ||
1529 | static void handle_received_SETUP_packet(struct ipw_hardware *hw, | 1526 | static void handle_received_SETUP_packet(struct ipw_hardware *hw, |
1530 | unsigned int address, | 1527 | unsigned int address, |
1531 | unsigned char *data, int len, | 1528 | const unsigned char *data, int len, |
1532 | int is_last) | 1529 | int is_last) |
1533 | { | 1530 | { |
1534 | union ipw_setup_rx_msg *rx_msg = (union ipw_setup_rx_msg *) data; | 1531 | const union ipw_setup_rx_msg *rx_msg = (const union ipw_setup_rx_msg *) data; |
1535 | 1532 | ||
1536 | if (address != ADDR_SETUP_PROT) { | 1533 | if (address != ADDR_SETUP_PROT) { |
1537 | printk(KERN_INFO IPWIRELESS_PCCARD_NAME | 1534 | printk(KERN_INFO IPWIRELESS_PCCARD_NAME |
@@ -1629,7 +1626,7 @@ struct ipw_hardware *ipwireless_hardware_create(void) | |||
1629 | 1626 | ||
1630 | INIT_LIST_HEAD(&hw->rx_queue); | 1627 | INIT_LIST_HEAD(&hw->rx_queue); |
1631 | INIT_LIST_HEAD(&hw->rx_pool); | 1628 | INIT_LIST_HEAD(&hw->rx_pool); |
1632 | spin_lock_init(&hw->spinlock); | 1629 | spin_lock_init(&hw->lock); |
1633 | tasklet_init(&hw->tasklet, ipwireless_do_tasklet, (unsigned long) hw); | 1630 | tasklet_init(&hw->tasklet, ipwireless_do_tasklet, (unsigned long) hw); |
1634 | INIT_WORK(&hw->work_rx, ipw_receive_data_work); | 1631 | INIT_WORK(&hw->work_rx, ipw_receive_data_work); |
1635 | setup_timer(&hw->setup_timer, ipwireless_setup_timer, | 1632 | setup_timer(&hw->setup_timer, ipwireless_setup_timer, |
@@ -1651,8 +1648,8 @@ void ipwireless_init_hardware_v1(struct ipw_hardware *hw, | |||
1651 | enable_irq(hw->irq); | 1648 | enable_irq(hw->irq); |
1652 | } | 1649 | } |
1653 | hw->base_port = base_port; | 1650 | hw->base_port = base_port; |
1654 | hw->hw_version = is_v2_card ? HW_VERSION_2 : HW_VERSION_1; | 1651 | hw->hw_version = (is_v2_card ? HW_VERSION_2 : HW_VERSION_1); |
1655 | hw->ll_mtu = hw->hw_version == HW_VERSION_1 ? LL_MTU_V1 : LL_MTU_V2; | 1652 | hw->ll_mtu = (hw->hw_version == HW_VERSION_1 ? LL_MTU_V1 : LL_MTU_V2); |
1656 | hw->memregs_CCR = (struct MEMCCR __iomem *) | 1653 | hw->memregs_CCR = (struct MEMCCR __iomem *) |
1657 | ((unsigned short __iomem *) attr_memory + 0x200); | 1654 | ((unsigned short __iomem *) attr_memory + 0x200); |
1658 | hw->memory_info_regs = (struct MEMINFREG __iomem *) common_memory; | 1655 | hw->memory_info_regs = (struct MEMINFREG __iomem *) common_memory; |
@@ -1695,10 +1692,10 @@ static void ipwireless_setup_timer(unsigned long data) | |||
1695 | if (is_card_present(hw)) { | 1692 | if (is_card_present(hw)) { |
1696 | unsigned long flags; | 1693 | unsigned long flags; |
1697 | 1694 | ||
1698 | spin_lock_irqsave(&hw->spinlock, flags); | 1695 | spin_lock_irqsave(&hw->lock, flags); |
1699 | hw->to_setup = 1; | 1696 | hw->to_setup = 1; |
1700 | hw->tx_ready = 1; | 1697 | hw->tx_ready = 1; |
1701 | spin_unlock_irqrestore(&hw->spinlock, flags); | 1698 | spin_unlock_irqrestore(&hw->lock, flags); |
1702 | tasklet_schedule(&hw->tasklet); | 1699 | tasklet_schedule(&hw->tasklet); |
1703 | } | 1700 | } |
1704 | 1701 | ||
diff --git a/drivers/char/pcmcia/ipwireless/hardware.h b/drivers/char/pcmcia/ipwireless/hardware.h index 19ce5eb266b1..90a8590e43b0 100644 --- a/drivers/char/pcmcia/ipwireless/hardware.h +++ b/drivers/char/pcmcia/ipwireless/hardware.h | |||
@@ -34,14 +34,14 @@ struct ipw_network; | |||
34 | 34 | ||
35 | struct ipw_hardware *ipwireless_hardware_create(void); | 35 | struct ipw_hardware *ipwireless_hardware_create(void); |
36 | void ipwireless_hardware_free(struct ipw_hardware *hw); | 36 | void ipwireless_hardware_free(struct ipw_hardware *hw); |
37 | irqreturn_t ipwireless_interrupt(int irq, void *dev_id, struct pt_regs *regs); | 37 | irqreturn_t ipwireless_interrupt(int irq, void *dev_id); |
38 | int ipwireless_set_DTR(struct ipw_hardware *hw, unsigned int channel_idx, | 38 | int ipwireless_set_DTR(struct ipw_hardware *hw, unsigned int channel_idx, |
39 | int state); | 39 | int state); |
40 | int ipwireless_set_RTS(struct ipw_hardware *hw, unsigned int channel_idx, | 40 | int ipwireless_set_RTS(struct ipw_hardware *hw, unsigned int channel_idx, |
41 | int state); | 41 | int state); |
42 | int ipwireless_send_packet(struct ipw_hardware *hw, | 42 | int ipwireless_send_packet(struct ipw_hardware *hw, |
43 | unsigned int channel_idx, | 43 | unsigned int channel_idx, |
44 | unsigned char *data, | 44 | const unsigned char *data, |
45 | unsigned int length, | 45 | unsigned int length, |
46 | void (*packet_sent_callback) (void *cb, | 46 | void (*packet_sent_callback) (void *cb, |
47 | unsigned int length), | 47 | unsigned int length), |
diff --git a/drivers/char/pcmcia/ipwireless/main.c b/drivers/char/pcmcia/ipwireless/main.c index cc7dcea2d283..5eca7a99afe6 100644 --- a/drivers/char/pcmcia/ipwireless/main.c +++ b/drivers/char/pcmcia/ipwireless/main.c | |||
@@ -49,7 +49,7 @@ static void ipwireless_detach(struct pcmcia_device *link); | |||
49 | /* Debug mode: more verbose, print sent/recv bytes */ | 49 | /* Debug mode: more verbose, print sent/recv bytes */ |
50 | int ipwireless_debug; | 50 | int ipwireless_debug; |
51 | int ipwireless_loopback; | 51 | int ipwireless_loopback; |
52 | int ipwireless_out_queue = 1; | 52 | int ipwireless_out_queue = 10; |
53 | 53 | ||
54 | module_param_named(debug, ipwireless_debug, int, 0); | 54 | module_param_named(debug, ipwireless_debug, int, 0); |
55 | module_param_named(loopback, ipwireless_loopback, int, 0); | 55 | module_param_named(loopback, ipwireless_loopback, int, 0); |
@@ -57,7 +57,7 @@ module_param_named(out_queue, ipwireless_out_queue, int, 0); | |||
57 | MODULE_PARM_DESC(debug, "switch on debug messages [0]"); | 57 | MODULE_PARM_DESC(debug, "switch on debug messages [0]"); |
58 | MODULE_PARM_DESC(loopback, | 58 | MODULE_PARM_DESC(loopback, |
59 | "debug: enable ras_raw channel [0]"); | 59 | "debug: enable ras_raw channel [0]"); |
60 | MODULE_PARM_DESC(out_queue, "debug: set size of outgoing queue [1]"); | 60 | MODULE_PARM_DESC(out_queue, "debug: set size of outgoing PPP queue [10]"); |
61 | 61 | ||
62 | /* Executes in process context. */ | 62 | /* Executes in process context. */ |
63 | static void signalled_reboot_work(struct work_struct *work_reboot) | 63 | static void signalled_reboot_work(struct work_struct *work_reboot) |
@@ -88,8 +88,6 @@ static int config_ipwireless(struct ipw_dev *ipw) | |||
88 | unsigned short buf[64]; | 88 | unsigned short buf[64]; |
89 | cisparse_t parse; | 89 | cisparse_t parse; |
90 | unsigned short cor_value; | 90 | unsigned short cor_value; |
91 | win_req_t request_attr_memory; | ||
92 | win_req_t request_common_memory; | ||
93 | memreq_t memreq_attr_memory; | 91 | memreq_t memreq_attr_memory; |
94 | memreq_t memreq_common_memory; | 92 | memreq_t memreq_common_memory; |
95 | 93 | ||
@@ -188,6 +186,9 @@ static int config_ipwireless(struct ipw_dev *ipw) | |||
188 | goto exit0; | 186 | goto exit0; |
189 | } | 187 | } |
190 | 188 | ||
189 | request_region(link->io.BasePort1, link->io.NumPorts1, | ||
190 | IPWIRELESS_PCCARD_NAME); | ||
191 | |||
191 | /* memory settings */ | 192 | /* memory settings */ |
192 | 193 | ||
193 | tuple.DesiredTuple = CISTPL_CFTABLE_ENTRY; | 194 | tuple.DesiredTuple = CISTPL_CFTABLE_ENTRY; |
@@ -214,16 +215,16 @@ static int config_ipwireless(struct ipw_dev *ipw) | |||
214 | } | 215 | } |
215 | 216 | ||
216 | if (parse.cftable_entry.mem.nwin > 0) { | 217 | if (parse.cftable_entry.mem.nwin > 0) { |
217 | request_common_memory.Attributes = | 218 | ipw->request_common_memory.Attributes = |
218 | WIN_DATA_WIDTH_16 | WIN_MEMORY_TYPE_CM | WIN_ENABLE; | 219 | WIN_DATA_WIDTH_16 | WIN_MEMORY_TYPE_CM | WIN_ENABLE; |
219 | request_common_memory.Base = | 220 | ipw->request_common_memory.Base = |
220 | parse.cftable_entry.mem.win[0].host_addr; | 221 | parse.cftable_entry.mem.win[0].host_addr; |
221 | request_common_memory.Size = parse.cftable_entry.mem.win[0].len; | 222 | ipw->request_common_memory.Size = parse.cftable_entry.mem.win[0].len; |
222 | if (request_common_memory.Size < 0x1000) | 223 | if (ipw->request_common_memory.Size < 0x1000) |
223 | request_common_memory.Size = 0x1000; | 224 | ipw->request_common_memory.Size = 0x1000; |
224 | request_common_memory.AccessSpeed = 0; | 225 | ipw->request_common_memory.AccessSpeed = 0; |
225 | 226 | ||
226 | ret = pcmcia_request_window(&link, &request_common_memory, | 227 | ret = pcmcia_request_window(&link, &ipw->request_common_memory, |
227 | &ipw->handle_common_memory); | 228 | &ipw->handle_common_memory); |
228 | 229 | ||
229 | if (ret != CS_SUCCESS) { | 230 | if (ret != CS_SUCCESS) { |
@@ -246,16 +247,18 @@ static int config_ipwireless(struct ipw_dev *ipw) | |||
246 | ipw->is_v2_card = | 247 | ipw->is_v2_card = |
247 | parse.cftable_entry.mem.win[0].len == 0x100; | 248 | parse.cftable_entry.mem.win[0].len == 0x100; |
248 | 249 | ||
249 | ipw->common_memory = ioremap(request_common_memory.Base, | 250 | ipw->common_memory = ioremap(ipw->request_common_memory.Base, |
250 | request_common_memory.Size); | 251 | ipw->request_common_memory.Size); |
252 | request_mem_region(ipw->request_common_memory.Base, | ||
253 | ipw->request_common_memory.Size, IPWIRELESS_PCCARD_NAME); | ||
251 | 254 | ||
252 | request_attr_memory.Attributes = | 255 | ipw->request_attr_memory.Attributes = |
253 | WIN_DATA_WIDTH_16 | WIN_MEMORY_TYPE_AM | WIN_ENABLE; | 256 | WIN_DATA_WIDTH_16 | WIN_MEMORY_TYPE_AM | WIN_ENABLE; |
254 | request_attr_memory.Base = 0; | 257 | ipw->request_attr_memory.Base = 0; |
255 | request_attr_memory.Size = 0; /* this used to be 0x1000 */ | 258 | ipw->request_attr_memory.Size = 0; /* this used to be 0x1000 */ |
256 | request_attr_memory.AccessSpeed = 0; | 259 | ipw->request_attr_memory.AccessSpeed = 0; |
257 | 260 | ||
258 | ret = pcmcia_request_window(&link, &request_attr_memory, | 261 | ret = pcmcia_request_window(&link, &ipw->request_attr_memory, |
259 | &ipw->handle_attr_memory); | 262 | &ipw->handle_attr_memory); |
260 | 263 | ||
261 | if (ret != CS_SUCCESS) { | 264 | if (ret != CS_SUCCESS) { |
@@ -274,8 +277,10 @@ static int config_ipwireless(struct ipw_dev *ipw) | |||
274 | goto exit2; | 277 | goto exit2; |
275 | } | 278 | } |
276 | 279 | ||
277 | ipw->attr_memory = ioremap(request_attr_memory.Base, | 280 | ipw->attr_memory = ioremap(ipw->request_attr_memory.Base, |
278 | request_attr_memory.Size); | 281 | ipw->request_attr_memory.Size); |
282 | request_mem_region(ipw->request_attr_memory.Base, ipw->request_attr_memory.Size, | ||
283 | IPWIRELESS_PCCARD_NAME); | ||
279 | } | 284 | } |
280 | 285 | ||
281 | INIT_WORK(&ipw->work_reboot, signalled_reboot_work); | 286 | INIT_WORK(&ipw->work_reboot, signalled_reboot_work); |
@@ -311,14 +316,13 @@ static int config_ipwireless(struct ipw_dev *ipw) | |||
311 | (unsigned int) link->irq.AssignedIRQ); | 316 | (unsigned int) link->irq.AssignedIRQ); |
312 | if (ipw->attr_memory && ipw->common_memory) | 317 | if (ipw->attr_memory && ipw->common_memory) |
313 | printk(KERN_INFO IPWIRELESS_PCCARD_NAME | 318 | printk(KERN_INFO IPWIRELESS_PCCARD_NAME |
314 | ": attr memory 0x%08lx-0x%08lx, " | 319 | ": attr memory 0x%08lx-0x%08lx, common memory 0x%08lx-0x%08lx\n", |
315 | "common memory 0x%08lx-0x%08lx\n", | 320 | ipw->request_attr_memory.Base, |
316 | request_attr_memory.Base, | 321 | ipw->request_attr_memory.Base |
317 | request_attr_memory.Base | 322 | + ipw->request_attr_memory.Size - 1, |
318 | + request_attr_memory.Size - 1, | 323 | ipw->request_common_memory.Base, |
319 | request_common_memory.Base, | 324 | ipw->request_common_memory.Base |
320 | request_common_memory.Base | 325 | + ipw->request_common_memory.Size - 1); |
321 | + request_common_memory.Size - 1); | ||
322 | 326 | ||
323 | ipw->network = ipwireless_network_create(ipw->hardware); | 327 | ipw->network = ipwireless_network_create(ipw->hardware); |
324 | if (!ipw->network) | 328 | if (!ipw->network) |
@@ -350,12 +354,16 @@ exit4: | |||
350 | pcmcia_disable_device(link); | 354 | pcmcia_disable_device(link); |
351 | exit3: | 355 | exit3: |
352 | if (ipw->attr_memory) { | 356 | if (ipw->attr_memory) { |
357 | release_mem_region(ipw->request_attr_memory.Base, | ||
358 | ipw->request_attr_memory.Size); | ||
353 | iounmap(ipw->attr_memory); | 359 | iounmap(ipw->attr_memory); |
354 | pcmcia_release_window(ipw->handle_attr_memory); | 360 | pcmcia_release_window(ipw->handle_attr_memory); |
355 | pcmcia_disable_device(link); | 361 | pcmcia_disable_device(link); |
356 | } | 362 | } |
357 | exit2: | 363 | exit2: |
358 | if (ipw->common_memory) { | 364 | if (ipw->common_memory) { |
365 | release_mem_region(ipw->request_common_memory.Base, | ||
366 | ipw->request_common_memory.Size); | ||
359 | iounmap(ipw->common_memory); | 367 | iounmap(ipw->common_memory); |
360 | pcmcia_release_window(ipw->handle_common_memory); | 368 | pcmcia_release_window(ipw->handle_common_memory); |
361 | } | 369 | } |
@@ -367,19 +375,25 @@ exit0: | |||
367 | 375 | ||
368 | static void release_ipwireless(struct ipw_dev *ipw) | 376 | static void release_ipwireless(struct ipw_dev *ipw) |
369 | { | 377 | { |
370 | struct pcmcia_device *link = ipw->link; | 378 | pcmcia_disable_device(ipw->link); |
371 | |||
372 | pcmcia_disable_device(link); | ||
373 | 379 | ||
374 | if (ipw->common_memory) | 380 | if (ipw->common_memory) { |
381 | release_mem_region(ipw->request_common_memory.Base, | ||
382 | ipw->request_common_memory.Size); | ||
375 | iounmap(ipw->common_memory); | 383 | iounmap(ipw->common_memory); |
376 | if (ipw->attr_memory) | 384 | } |
385 | if (ipw->attr_memory) { | ||
386 | release_mem_region(ipw->request_attr_memory.Base, | ||
387 | ipw->request_attr_memory.Size); | ||
377 | iounmap(ipw->attr_memory); | 388 | iounmap(ipw->attr_memory); |
389 | } | ||
378 | if (ipw->common_memory) | 390 | if (ipw->common_memory) |
379 | pcmcia_release_window(ipw->handle_common_memory); | 391 | pcmcia_release_window(ipw->handle_common_memory); |
380 | if (ipw->attr_memory) | 392 | if (ipw->attr_memory) |
381 | pcmcia_release_window(ipw->handle_attr_memory); | 393 | pcmcia_release_window(ipw->handle_attr_memory); |
382 | pcmcia_disable_device(link); | 394 | |
395 | /* Break the link with Card Services */ | ||
396 | pcmcia_disable_device(ipw->link); | ||
383 | } | 397 | } |
384 | 398 | ||
385 | /* | 399 | /* |
@@ -437,10 +451,6 @@ static void ipwireless_detach(struct pcmcia_device *link) | |||
437 | 451 | ||
438 | release_ipwireless(ipw); | 452 | release_ipwireless(ipw); |
439 | 453 | ||
440 | /* Break the link with Card Services */ | ||
441 | if (link) | ||
442 | pcmcia_disable_device(link); | ||
443 | |||
444 | if (ipw->tty != NULL) | 454 | if (ipw->tty != NULL) |
445 | ipwireless_tty_free(ipw->tty); | 455 | ipwireless_tty_free(ipw->tty); |
446 | if (ipw->network != NULL) | 456 | if (ipw->network != NULL) |
diff --git a/drivers/char/pcmcia/ipwireless/main.h b/drivers/char/pcmcia/ipwireless/main.h index 1bfdcc8d47d6..0e0363af9ab2 100644 --- a/drivers/char/pcmcia/ipwireless/main.h +++ b/drivers/char/pcmcia/ipwireless/main.h | |||
@@ -45,10 +45,15 @@ struct ipw_tty; | |||
45 | struct ipw_dev { | 45 | struct ipw_dev { |
46 | struct pcmcia_device *link; | 46 | struct pcmcia_device *link; |
47 | int is_v2_card; | 47 | int is_v2_card; |
48 | |||
48 | window_handle_t handle_attr_memory; | 49 | window_handle_t handle_attr_memory; |
49 | void __iomem *attr_memory; | 50 | void __iomem *attr_memory; |
51 | win_req_t request_attr_memory; | ||
52 | |||
50 | window_handle_t handle_common_memory; | 53 | window_handle_t handle_common_memory; |
51 | void __iomem *common_memory; | 54 | void __iomem *common_memory; |
55 | win_req_t request_common_memory; | ||
56 | |||
52 | dev_node_t nodes[2]; | 57 | dev_node_t nodes[2]; |
53 | /* Reference to attribute memory, containing CIS data */ | 58 | /* Reference to attribute memory, containing CIS data */ |
54 | void *attribute_memory; | 59 | void *attribute_memory; |
diff --git a/drivers/char/pcmcia/ipwireless/network.c b/drivers/char/pcmcia/ipwireless/network.c index fe914d34f7f6..590762a7f217 100644 --- a/drivers/char/pcmcia/ipwireless/network.c +++ b/drivers/char/pcmcia/ipwireless/network.c | |||
@@ -29,7 +29,6 @@ | |||
29 | #include "main.h" | 29 | #include "main.h" |
30 | #include "tty.h" | 30 | #include "tty.h" |
31 | 31 | ||
32 | #define MAX_OUTGOING_PACKETS_QUEUED ipwireless_out_queue | ||
33 | #define MAX_ASSOCIATED_TTYS 2 | 32 | #define MAX_ASSOCIATED_TTYS 2 |
34 | 33 | ||
35 | #define SC_RCV_BITS (SC_RCV_B7_1|SC_RCV_B7_0|SC_RCV_ODDP|SC_RCV_EVNP) | 34 | #define SC_RCV_BITS (SC_RCV_B7_1|SC_RCV_B7_0|SC_RCV_ODDP|SC_RCV_EVNP) |
@@ -46,7 +45,7 @@ struct ipw_network { | |||
46 | /* Number of packets queued up in hardware module. */ | 45 | /* Number of packets queued up in hardware module. */ |
47 | int outgoing_packets_queued; | 46 | int outgoing_packets_queued; |
48 | /* Spinlock to avoid interrupts during shutdown */ | 47 | /* Spinlock to avoid interrupts during shutdown */ |
49 | spinlock_t spinlock; | 48 | spinlock_t lock; |
50 | struct mutex close_lock; | 49 | struct mutex close_lock; |
51 | 50 | ||
52 | /* PPP ioctl data, not actually used anywere */ | 51 | /* PPP ioctl data, not actually used anywere */ |
@@ -68,20 +67,20 @@ static void notify_packet_sent(void *callback_data, unsigned int packet_length) | |||
68 | struct ipw_network *network = callback_data; | 67 | struct ipw_network *network = callback_data; |
69 | unsigned long flags; | 68 | unsigned long flags; |
70 | 69 | ||
71 | spin_lock_irqsave(&network->spinlock, flags); | 70 | spin_lock_irqsave(&network->lock, flags); |
72 | network->outgoing_packets_queued--; | 71 | network->outgoing_packets_queued--; |
73 | if (network->ppp_channel != NULL) { | 72 | if (network->ppp_channel != NULL) { |
74 | if (network->ppp_blocked) { | 73 | if (network->ppp_blocked) { |
75 | network->ppp_blocked = 0; | 74 | network->ppp_blocked = 0; |
76 | spin_unlock_irqrestore(&network->spinlock, flags); | 75 | spin_unlock_irqrestore(&network->lock, flags); |
77 | ppp_output_wakeup(network->ppp_channel); | 76 | ppp_output_wakeup(network->ppp_channel); |
78 | if (ipwireless_debug) | 77 | if (ipwireless_debug) |
79 | printk(KERN_INFO IPWIRELESS_PCCARD_NAME | 78 | printk(KERN_DEBUG IPWIRELESS_PCCARD_NAME |
80 | ": ppp unblocked\n"); | 79 | ": ppp unblocked\n"); |
81 | } else | 80 | } else |
82 | spin_unlock_irqrestore(&network->spinlock, flags); | 81 | spin_unlock_irqrestore(&network->lock, flags); |
83 | } else | 82 | } else |
84 | spin_unlock_irqrestore(&network->spinlock, flags); | 83 | spin_unlock_irqrestore(&network->lock, flags); |
85 | } | 84 | } |
86 | 85 | ||
87 | /* | 86 | /* |
@@ -93,8 +92,8 @@ static int ipwireless_ppp_start_xmit(struct ppp_channel *ppp_channel, | |||
93 | struct ipw_network *network = ppp_channel->private; | 92 | struct ipw_network *network = ppp_channel->private; |
94 | unsigned long flags; | 93 | unsigned long flags; |
95 | 94 | ||
96 | spin_lock_irqsave(&network->spinlock, flags); | 95 | spin_lock_irqsave(&network->lock, flags); |
97 | if (network->outgoing_packets_queued < MAX_OUTGOING_PACKETS_QUEUED) { | 96 | if (network->outgoing_packets_queued < ipwireless_out_queue) { |
98 | unsigned char *buf; | 97 | unsigned char *buf; |
99 | static unsigned char header[] = { | 98 | static unsigned char header[] = { |
100 | PPP_ALLSTATIONS, /* 0xff */ | 99 | PPP_ALLSTATIONS, /* 0xff */ |
@@ -103,7 +102,7 @@ static int ipwireless_ppp_start_xmit(struct ppp_channel *ppp_channel, | |||
103 | int ret; | 102 | int ret; |
104 | 103 | ||
105 | network->outgoing_packets_queued++; | 104 | network->outgoing_packets_queued++; |
106 | spin_unlock_irqrestore(&network->spinlock, flags); | 105 | spin_unlock_irqrestore(&network->lock, flags); |
107 | 106 | ||
108 | /* | 107 | /* |
109 | * If we have the requested amount of headroom in the skb we | 108 | * If we have the requested amount of headroom in the skb we |
@@ -144,7 +143,9 @@ static int ipwireless_ppp_start_xmit(struct ppp_channel *ppp_channel, | |||
144 | * needs to be unblocked once we are ready to send. | 143 | * needs to be unblocked once we are ready to send. |
145 | */ | 144 | */ |
146 | network->ppp_blocked = 1; | 145 | network->ppp_blocked = 1; |
147 | spin_unlock_irqrestore(&network->spinlock, flags); | 146 | spin_unlock_irqrestore(&network->lock, flags); |
147 | if (ipwireless_debug) | ||
148 | printk(KERN_DEBUG IPWIRELESS_PCCARD_NAME ": ppp blocked\n"); | ||
148 | return 0; | 149 | return 0; |
149 | } | 150 | } |
150 | } | 151 | } |
@@ -249,11 +250,11 @@ static void do_go_online(struct work_struct *work_go_online) | |||
249 | work_go_online); | 250 | work_go_online); |
250 | unsigned long flags; | 251 | unsigned long flags; |
251 | 252 | ||
252 | spin_lock_irqsave(&network->spinlock, flags); | 253 | spin_lock_irqsave(&network->lock, flags); |
253 | if (!network->ppp_channel) { | 254 | if (!network->ppp_channel) { |
254 | struct ppp_channel *channel; | 255 | struct ppp_channel *channel; |
255 | 256 | ||
256 | spin_unlock_irqrestore(&network->spinlock, flags); | 257 | spin_unlock_irqrestore(&network->lock, flags); |
257 | channel = kzalloc(sizeof(struct ppp_channel), GFP_KERNEL); | 258 | channel = kzalloc(sizeof(struct ppp_channel), GFP_KERNEL); |
258 | if (!channel) { | 259 | if (!channel) { |
259 | printk(KERN_ERR IPWIRELESS_PCCARD_NAME | 260 | printk(KERN_ERR IPWIRELESS_PCCARD_NAME |
@@ -273,10 +274,10 @@ static void do_go_online(struct work_struct *work_go_online) | |||
273 | network->xaccm[3] = 0x60000000U; | 274 | network->xaccm[3] = 0x60000000U; |
274 | network->raccm = ~0U; | 275 | network->raccm = ~0U; |
275 | ppp_register_channel(channel); | 276 | ppp_register_channel(channel); |
276 | spin_lock_irqsave(&network->spinlock, flags); | 277 | spin_lock_irqsave(&network->lock, flags); |
277 | network->ppp_channel = channel; | 278 | network->ppp_channel = channel; |
278 | } | 279 | } |
279 | spin_unlock_irqrestore(&network->spinlock, flags); | 280 | spin_unlock_irqrestore(&network->lock, flags); |
280 | } | 281 | } |
281 | 282 | ||
282 | static void do_go_offline(struct work_struct *work_go_offline) | 283 | static void do_go_offline(struct work_struct *work_go_offline) |
@@ -287,16 +288,16 @@ static void do_go_offline(struct work_struct *work_go_offline) | |||
287 | unsigned long flags; | 288 | unsigned long flags; |
288 | 289 | ||
289 | mutex_lock(&network->close_lock); | 290 | mutex_lock(&network->close_lock); |
290 | spin_lock_irqsave(&network->spinlock, flags); | 291 | spin_lock_irqsave(&network->lock, flags); |
291 | if (network->ppp_channel != NULL) { | 292 | if (network->ppp_channel != NULL) { |
292 | struct ppp_channel *channel = network->ppp_channel; | 293 | struct ppp_channel *channel = network->ppp_channel; |
293 | 294 | ||
294 | network->ppp_channel = NULL; | 295 | network->ppp_channel = NULL; |
295 | spin_unlock_irqrestore(&network->spinlock, flags); | 296 | spin_unlock_irqrestore(&network->lock, flags); |
296 | mutex_unlock(&network->close_lock); | 297 | mutex_unlock(&network->close_lock); |
297 | ppp_unregister_channel(channel); | 298 | ppp_unregister_channel(channel); |
298 | } else { | 299 | } else { |
299 | spin_unlock_irqrestore(&network->spinlock, flags); | 300 | spin_unlock_irqrestore(&network->lock, flags); |
300 | mutex_unlock(&network->close_lock); | 301 | mutex_unlock(&network->close_lock); |
301 | } | 302 | } |
302 | } | 303 | } |
@@ -381,18 +382,18 @@ void ipwireless_network_packet_received(struct ipw_network *network, | |||
381 | * the PPP layer. | 382 | * the PPP layer. |
382 | */ | 383 | */ |
383 | mutex_lock(&network->close_lock); | 384 | mutex_lock(&network->close_lock); |
384 | spin_lock_irqsave(&network->spinlock, flags); | 385 | spin_lock_irqsave(&network->lock, flags); |
385 | if (network->ppp_channel != NULL) { | 386 | if (network->ppp_channel != NULL) { |
386 | struct sk_buff *skb; | 387 | struct sk_buff *skb; |
387 | 388 | ||
388 | spin_unlock_irqrestore(&network->spinlock, | 389 | spin_unlock_irqrestore(&network->lock, |
389 | flags); | 390 | flags); |
390 | 391 | ||
391 | /* Send the data to the ppp_generic module. */ | 392 | /* Send the data to the ppp_generic module. */ |
392 | skb = ipw_packet_received_skb(data, length); | 393 | skb = ipw_packet_received_skb(data, length); |
393 | ppp_input(network->ppp_channel, skb); | 394 | ppp_input(network->ppp_channel, skb); |
394 | } else | 395 | } else |
395 | spin_unlock_irqrestore(&network->spinlock, | 396 | spin_unlock_irqrestore(&network->lock, |
396 | flags); | 397 | flags); |
397 | mutex_unlock(&network->close_lock); | 398 | mutex_unlock(&network->close_lock); |
398 | } | 399 | } |
@@ -410,7 +411,7 @@ struct ipw_network *ipwireless_network_create(struct ipw_hardware *hw) | |||
410 | if (!network) | 411 | if (!network) |
411 | return NULL; | 412 | return NULL; |
412 | 413 | ||
413 | spin_lock_init(&network->spinlock); | 414 | spin_lock_init(&network->lock); |
414 | mutex_init(&network->close_lock); | 415 | mutex_init(&network->close_lock); |
415 | 416 | ||
416 | network->hardware = hw; | 417 | network->hardware = hw; |
@@ -478,10 +479,10 @@ int ipwireless_ppp_channel_index(struct ipw_network *network) | |||
478 | int ret = -1; | 479 | int ret = -1; |
479 | unsigned long flags; | 480 | unsigned long flags; |
480 | 481 | ||
481 | spin_lock_irqsave(&network->spinlock, flags); | 482 | spin_lock_irqsave(&network->lock, flags); |
482 | if (network->ppp_channel != NULL) | 483 | if (network->ppp_channel != NULL) |
483 | ret = ppp_channel_index(network->ppp_channel); | 484 | ret = ppp_channel_index(network->ppp_channel); |
484 | spin_unlock_irqrestore(&network->spinlock, flags); | 485 | spin_unlock_irqrestore(&network->lock, flags); |
485 | 486 | ||
486 | return ret; | 487 | return ret; |
487 | } | 488 | } |
@@ -491,10 +492,15 @@ int ipwireless_ppp_unit_number(struct ipw_network *network) | |||
491 | int ret = -1; | 492 | int ret = -1; |
492 | unsigned long flags; | 493 | unsigned long flags; |
493 | 494 | ||
494 | spin_lock_irqsave(&network->spinlock, flags); | 495 | spin_lock_irqsave(&network->lock, flags); |
495 | if (network->ppp_channel != NULL) | 496 | if (network->ppp_channel != NULL) |
496 | ret = ppp_unit_number(network->ppp_channel); | 497 | ret = ppp_unit_number(network->ppp_channel); |
497 | spin_unlock_irqrestore(&network->spinlock, flags); | 498 | spin_unlock_irqrestore(&network->lock, flags); |
498 | 499 | ||
499 | return ret; | 500 | return ret; |
500 | } | 501 | } |
502 | |||
503 | int ipwireless_ppp_mru(const struct ipw_network *network) | ||
504 | { | ||
505 | return network->mru; | ||
506 | } | ||
diff --git a/drivers/char/pcmcia/ipwireless/network.h b/drivers/char/pcmcia/ipwireless/network.h index ccacd26fc7ef..561f765b3334 100644 --- a/drivers/char/pcmcia/ipwireless/network.h +++ b/drivers/char/pcmcia/ipwireless/network.h | |||
@@ -48,5 +48,6 @@ void ipwireless_ppp_open(struct ipw_network *net); | |||
48 | void ipwireless_ppp_close(struct ipw_network *net); | 48 | void ipwireless_ppp_close(struct ipw_network *net); |
49 | int ipwireless_ppp_channel_index(struct ipw_network *net); | 49 | int ipwireless_ppp_channel_index(struct ipw_network *net); |
50 | int ipwireless_ppp_unit_number(struct ipw_network *net); | 50 | int ipwireless_ppp_unit_number(struct ipw_network *net); |
51 | int ipwireless_ppp_mru(const struct ipw_network *net); | ||
51 | 52 | ||
52 | #endif | 53 | #endif |
diff --git a/drivers/char/pcmcia/ipwireless/tty.c b/drivers/char/pcmcia/ipwireless/tty.c index 42f3815c5ce3..b1414507997c 100644 --- a/drivers/char/pcmcia/ipwireless/tty.c +++ b/drivers/char/pcmcia/ipwireless/tty.c | |||
@@ -259,7 +259,7 @@ static int ipw_write(struct tty_struct *linux_tty, | |||
259 | } | 259 | } |
260 | 260 | ||
261 | ret = ipwireless_send_packet(tty->hardware, IPW_CHANNEL_RAS, | 261 | ret = ipwireless_send_packet(tty->hardware, IPW_CHANNEL_RAS, |
262 | (unsigned char *) buf, count, | 262 | buf, count, |
263 | ipw_write_packet_sent_callback, tty); | 263 | ipw_write_packet_sent_callback, tty); |
264 | if (ret == -1) { | 264 | if (ret == -1) { |
265 | mutex_unlock(&tty->ipw_tty_mutex); | 265 | mutex_unlock(&tty->ipw_tty_mutex); |
diff --git a/drivers/cpuidle/cpuidle.c b/drivers/cpuidle/cpuidle.c index 5405769020a1..5ce07b517c58 100644 --- a/drivers/cpuidle/cpuidle.c +++ b/drivers/cpuidle/cpuidle.c | |||
@@ -94,7 +94,7 @@ void cpuidle_install_idle_handler(void) | |||
94 | */ | 94 | */ |
95 | void cpuidle_uninstall_idle_handler(void) | 95 | void cpuidle_uninstall_idle_handler(void) |
96 | { | 96 | { |
97 | if (enabled_devices && (pm_idle != pm_idle_old)) { | 97 | if (enabled_devices && pm_idle_old && (pm_idle != pm_idle_old)) { |
98 | pm_idle = pm_idle_old; | 98 | pm_idle = pm_idle_old; |
99 | cpuidle_kick_cpus(); | 99 | cpuidle_kick_cpus(); |
100 | } | 100 | } |
diff --git a/drivers/firmware/dcdbas.c b/drivers/firmware/dcdbas.c index c66817e7717b..50a071f1c945 100644 --- a/drivers/firmware/dcdbas.c +++ b/drivers/firmware/dcdbas.c | |||
@@ -245,7 +245,6 @@ static ssize_t host_control_on_shutdown_store(struct device *dev, | |||
245 | static int smi_request(struct smi_cmd *smi_cmd) | 245 | static int smi_request(struct smi_cmd *smi_cmd) |
246 | { | 246 | { |
247 | cpumask_t old_mask; | 247 | cpumask_t old_mask; |
248 | cpumask_of_cpu_ptr(new_mask, 0); | ||
249 | int ret = 0; | 248 | int ret = 0; |
250 | 249 | ||
251 | if (smi_cmd->magic != SMI_CMD_MAGIC) { | 250 | if (smi_cmd->magic != SMI_CMD_MAGIC) { |
@@ -256,7 +255,7 @@ static int smi_request(struct smi_cmd *smi_cmd) | |||
256 | 255 | ||
257 | /* SMI requires CPU 0 */ | 256 | /* SMI requires CPU 0 */ |
258 | old_mask = current->cpus_allowed; | 257 | old_mask = current->cpus_allowed; |
259 | set_cpus_allowed_ptr(current, new_mask); | 258 | set_cpus_allowed_ptr(current, &cpumask_of_cpu(0)); |
260 | if (smp_processor_id() != 0) { | 259 | if (smp_processor_id() != 0) { |
261 | dev_dbg(&dcdbas_pdev->dev, "%s: failed to get CPU 0\n", | 260 | dev_dbg(&dcdbas_pdev->dev, "%s: failed to get CPU 0\n", |
262 | __func__); | 261 | __func__); |
diff --git a/drivers/i2c/busses/i2c-bfin-twi.c b/drivers/i2c/busses/i2c-bfin-twi.c index 48d084bdf7c8..3c855ff2992f 100644 --- a/drivers/i2c/busses/i2c-bfin-twi.c +++ b/drivers/i2c/busses/i2c-bfin-twi.c | |||
@@ -49,6 +49,8 @@ struct bfin_twi_iface { | |||
49 | struct i2c_msg *pmsg; | 49 | struct i2c_msg *pmsg; |
50 | int msg_num; | 50 | int msg_num; |
51 | int cur_msg; | 51 | int cur_msg; |
52 | u16 saved_clkdiv; | ||
53 | u16 saved_control; | ||
52 | void __iomem *regs_base; | 54 | void __iomem *regs_base; |
53 | }; | 55 | }; |
54 | 56 | ||
@@ -565,32 +567,43 @@ static u32 bfin_twi_functionality(struct i2c_adapter *adap) | |||
565 | I2C_FUNC_I2C; | 567 | I2C_FUNC_I2C; |
566 | } | 568 | } |
567 | 569 | ||
568 | |||
569 | static struct i2c_algorithm bfin_twi_algorithm = { | 570 | static struct i2c_algorithm bfin_twi_algorithm = { |
570 | .master_xfer = bfin_twi_master_xfer, | 571 | .master_xfer = bfin_twi_master_xfer, |
571 | .smbus_xfer = bfin_twi_smbus_xfer, | 572 | .smbus_xfer = bfin_twi_smbus_xfer, |
572 | .functionality = bfin_twi_functionality, | 573 | .functionality = bfin_twi_functionality, |
573 | }; | 574 | }; |
574 | 575 | ||
575 | 576 | static int i2c_bfin_twi_suspend(struct platform_device *pdev, pm_message_t state) | |
576 | static int i2c_bfin_twi_suspend(struct platform_device *dev, pm_message_t state) | ||
577 | { | 577 | { |
578 | struct bfin_twi_iface *iface = platform_get_drvdata(dev); | 578 | struct bfin_twi_iface *iface = platform_get_drvdata(pdev); |
579 | |||
580 | iface->saved_clkdiv = read_CLKDIV(iface); | ||
581 | iface->saved_control = read_CONTROL(iface); | ||
582 | |||
583 | free_irq(iface->irq, iface); | ||
579 | 584 | ||
580 | /* Disable TWI */ | 585 | /* Disable TWI */ |
581 | write_CONTROL(iface, read_CONTROL(iface) & ~TWI_ENA); | 586 | write_CONTROL(iface, iface->saved_control & ~TWI_ENA); |
582 | SSYNC(); | ||
583 | 587 | ||
584 | return 0; | 588 | return 0; |
585 | } | 589 | } |
586 | 590 | ||
587 | static int i2c_bfin_twi_resume(struct platform_device *dev) | 591 | static int i2c_bfin_twi_resume(struct platform_device *pdev) |
588 | { | 592 | { |
589 | struct bfin_twi_iface *iface = platform_get_drvdata(dev); | 593 | struct bfin_twi_iface *iface = platform_get_drvdata(pdev); |
590 | 594 | ||
591 | /* Enable TWI */ | 595 | int rc = request_irq(iface->irq, bfin_twi_interrupt_entry, |
592 | write_CONTROL(iface, read_CONTROL(iface) | TWI_ENA); | 596 | IRQF_DISABLED, pdev->name, iface); |
593 | SSYNC(); | 597 | if (rc) { |
598 | dev_err(&pdev->dev, "Can't get IRQ %d !\n", iface->irq); | ||
599 | return -ENODEV; | ||
600 | } | ||
601 | |||
602 | /* Resume TWI interface clock as specified */ | ||
603 | write_CLKDIV(iface, iface->saved_clkdiv); | ||
604 | |||
605 | /* Resume TWI */ | ||
606 | write_CONTROL(iface, iface->saved_control); | ||
594 | 607 | ||
595 | return 0; | 608 | return 0; |
596 | } | 609 | } |
diff --git a/drivers/i2c/busses/i2c-gpio.c b/drivers/i2c/busses/i2c-gpio.c index 79b455a1f090..32104eac8d3d 100644 --- a/drivers/i2c/busses/i2c-gpio.c +++ b/drivers/i2c/busses/i2c-gpio.c | |||
@@ -77,7 +77,7 @@ static int i2c_gpio_getscl(void *data) | |||
77 | return gpio_get_value(pdata->scl_pin); | 77 | return gpio_get_value(pdata->scl_pin); |
78 | } | 78 | } |
79 | 79 | ||
80 | static int __init i2c_gpio_probe(struct platform_device *pdev) | 80 | static int __devinit i2c_gpio_probe(struct platform_device *pdev) |
81 | { | 81 | { |
82 | struct i2c_gpio_platform_data *pdata; | 82 | struct i2c_gpio_platform_data *pdata; |
83 | struct i2c_algo_bit_data *bit_data; | 83 | struct i2c_algo_bit_data *bit_data; |
@@ -174,7 +174,7 @@ err_alloc_adap: | |||
174 | return ret; | 174 | return ret; |
175 | } | 175 | } |
176 | 176 | ||
177 | static int __exit i2c_gpio_remove(struct platform_device *pdev) | 177 | static int __devexit i2c_gpio_remove(struct platform_device *pdev) |
178 | { | 178 | { |
179 | struct i2c_gpio_platform_data *pdata; | 179 | struct i2c_gpio_platform_data *pdata; |
180 | struct i2c_adapter *adap; | 180 | struct i2c_adapter *adap; |
@@ -196,14 +196,15 @@ static struct platform_driver i2c_gpio_driver = { | |||
196 | .name = "i2c-gpio", | 196 | .name = "i2c-gpio", |
197 | .owner = THIS_MODULE, | 197 | .owner = THIS_MODULE, |
198 | }, | 198 | }, |
199 | .remove = __exit_p(i2c_gpio_remove), | 199 | .probe = i2c_gpio_probe, |
200 | .remove = __devexit_p(i2c_gpio_remove), | ||
200 | }; | 201 | }; |
201 | 202 | ||
202 | static int __init i2c_gpio_init(void) | 203 | static int __init i2c_gpio_init(void) |
203 | { | 204 | { |
204 | int ret; | 205 | int ret; |
205 | 206 | ||
206 | ret = platform_driver_probe(&i2c_gpio_driver, i2c_gpio_probe); | 207 | ret = platform_driver_register(&i2c_gpio_driver); |
207 | if (ret) | 208 | if (ret) |
208 | printk(KERN_ERR "i2c-gpio: probe failed: %d\n", ret); | 209 | printk(KERN_ERR "i2c-gpio: probe failed: %d\n", ret); |
209 | 210 | ||
diff --git a/drivers/i2c/busses/i2c-s3c2410.c b/drivers/i2c/busses/i2c-s3c2410.c index 007390ad9810..4864723c7425 100644 --- a/drivers/i2c/busses/i2c-s3c2410.c +++ b/drivers/i2c/busses/i2c-s3c2410.c | |||
@@ -33,6 +33,7 @@ | |||
33 | #include <linux/err.h> | 33 | #include <linux/err.h> |
34 | #include <linux/platform_device.h> | 34 | #include <linux/platform_device.h> |
35 | #include <linux/clk.h> | 35 | #include <linux/clk.h> |
36 | #include <linux/cpufreq.h> | ||
36 | 37 | ||
37 | #include <asm/hardware.h> | 38 | #include <asm/hardware.h> |
38 | #include <asm/irq.h> | 39 | #include <asm/irq.h> |
@@ -64,6 +65,7 @@ struct s3c24xx_i2c { | |||
64 | unsigned int tx_setup; | 65 | unsigned int tx_setup; |
65 | 66 | ||
66 | enum s3c24xx_i2c_state state; | 67 | enum s3c24xx_i2c_state state; |
68 | unsigned long clkrate; | ||
67 | 69 | ||
68 | void __iomem *regs; | 70 | void __iomem *regs; |
69 | struct clk *clk; | 71 | struct clk *clk; |
@@ -71,6 +73,10 @@ struct s3c24xx_i2c { | |||
71 | struct resource *irq; | 73 | struct resource *irq; |
72 | struct resource *ioarea; | 74 | struct resource *ioarea; |
73 | struct i2c_adapter adap; | 75 | struct i2c_adapter adap; |
76 | |||
77 | #ifdef CONFIG_CPU_FREQ | ||
78 | struct notifier_block freq_transition; | ||
79 | #endif | ||
74 | }; | 80 | }; |
75 | 81 | ||
76 | /* default platform data to use if not supplied in the platform_device | 82 | /* default platform data to use if not supplied in the platform_device |
@@ -501,6 +507,9 @@ static int s3c24xx_i2c_doxfer(struct s3c24xx_i2c *i2c, struct i2c_msg *msgs, int | |||
501 | unsigned long timeout; | 507 | unsigned long timeout; |
502 | int ret; | 508 | int ret; |
503 | 509 | ||
510 | if (!readl(i2c->regs + S3C2410_IICCON) & S3C2410_IICCON_IRQEN) | ||
511 | return -EIO; | ||
512 | |||
504 | ret = s3c24xx_i2c_set_master(i2c); | 513 | ret = s3c24xx_i2c_set_master(i2c); |
505 | if (ret != 0) { | 514 | if (ret != 0) { |
506 | dev_err(i2c->dev, "cannot get bus (error %d)\n", ret); | 515 | dev_err(i2c->dev, "cannot get bus (error %d)\n", ret); |
@@ -636,27 +645,28 @@ static inline int freq_acceptable(unsigned int freq, unsigned int wanted) | |||
636 | return (diff >= -2 && diff <= 2); | 645 | return (diff >= -2 && diff <= 2); |
637 | } | 646 | } |
638 | 647 | ||
639 | /* s3c24xx_i2c_getdivisor | 648 | /* s3c24xx_i2c_clockrate |
640 | * | 649 | * |
641 | * work out a divisor for the user requested frequency setting, | 650 | * work out a divisor for the user requested frequency setting, |
642 | * either by the requested frequency, or scanning the acceptable | 651 | * either by the requested frequency, or scanning the acceptable |
643 | * range of frequencies until something is found | 652 | * range of frequencies until something is found |
644 | */ | 653 | */ |
645 | 654 | ||
646 | static int s3c24xx_i2c_getdivisor(struct s3c24xx_i2c *i2c, | 655 | static int s3c24xx_i2c_clockrate(struct s3c24xx_i2c *i2c, unsigned int *got) |
647 | struct s3c2410_platform_i2c *pdata, | ||
648 | unsigned long *iicon, | ||
649 | unsigned int *got) | ||
650 | { | 656 | { |
657 | struct s3c2410_platform_i2c *pdata; | ||
651 | unsigned long clkin = clk_get_rate(i2c->clk); | 658 | unsigned long clkin = clk_get_rate(i2c->clk); |
652 | |||
653 | unsigned int divs, div1; | 659 | unsigned int divs, div1; |
660 | u32 iiccon; | ||
654 | int freq; | 661 | int freq; |
655 | int start, end; | 662 | int start, end; |
656 | 663 | ||
664 | i2c->clkrate = clkin; | ||
665 | |||
666 | pdata = s3c24xx_i2c_get_platformdata(i2c->adap.dev.parent); | ||
657 | clkin /= 1000; /* clkin now in KHz */ | 667 | clkin /= 1000; /* clkin now in KHz */ |
658 | 668 | ||
659 | dev_dbg(i2c->dev, "pdata %p, freq %lu %lu..%lu\n", | 669 | dev_dbg(i2c->dev, "pdata %p, freq %lu %lu..%lu\n", |
660 | pdata, pdata->bus_freq, pdata->min_freq, pdata->max_freq); | 670 | pdata, pdata->bus_freq, pdata->min_freq, pdata->max_freq); |
661 | 671 | ||
662 | if (pdata->bus_freq != 0) { | 672 | if (pdata->bus_freq != 0) { |
@@ -688,11 +698,79 @@ static int s3c24xx_i2c_getdivisor(struct s3c24xx_i2c *i2c, | |||
688 | 698 | ||
689 | found: | 699 | found: |
690 | *got = freq; | 700 | *got = freq; |
691 | *iicon |= (divs-1); | 701 | |
692 | *iicon |= (div1 == 512) ? S3C2410_IICCON_TXDIV_512 : 0; | 702 | iiccon = readl(i2c->regs + S3C2410_IICCON); |
703 | iiccon &= ~(S3C2410_IICCON_SCALEMASK | S3C2410_IICCON_TXDIV_512); | ||
704 | iiccon |= (divs-1); | ||
705 | |||
706 | if (div1 == 512) | ||
707 | iiccon |= S3C2410_IICCON_TXDIV_512; | ||
708 | |||
709 | writel(iiccon, i2c->regs + S3C2410_IICCON); | ||
710 | |||
711 | return 0; | ||
712 | } | ||
713 | |||
714 | #ifdef CONFIG_CPU_FREQ | ||
715 | |||
716 | #define freq_to_i2c(_n) container_of(_n, struct s3c24xx_i2c, freq_transition) | ||
717 | |||
718 | static int s3c24xx_i2c_cpufreq_transition(struct notifier_block *nb, | ||
719 | unsigned long val, void *data) | ||
720 | { | ||
721 | struct s3c24xx_i2c *i2c = freq_to_i2c(nb); | ||
722 | unsigned long flags; | ||
723 | unsigned int got; | ||
724 | int delta_f; | ||
725 | int ret; | ||
726 | |||
727 | delta_f = clk_get_rate(i2c->clk) - i2c->clkrate; | ||
728 | |||
729 | /* if we're post-change and the input clock has slowed down | ||
730 | * or at pre-change and the clock is about to speed up, then | ||
731 | * adjust our clock rate. <0 is slow, >0 speedup. | ||
732 | */ | ||
733 | |||
734 | if ((val == CPUFREQ_POSTCHANGE && delta_f < 0) || | ||
735 | (val == CPUFREQ_PRECHANGE && delta_f > 0)) { | ||
736 | spin_lock_irqsave(&i2c->lock, flags); | ||
737 | ret = s3c24xx_i2c_clockrate(i2c, &got); | ||
738 | spin_unlock_irqrestore(&i2c->lock, flags); | ||
739 | |||
740 | if (ret < 0) | ||
741 | dev_err(i2c->dev, "cannot find frequency\n"); | ||
742 | else | ||
743 | dev_info(i2c->dev, "setting freq %d\n", got); | ||
744 | } | ||
745 | |||
746 | return 0; | ||
747 | } | ||
748 | |||
749 | static inline int s3c24xx_i2c_register_cpufreq(struct s3c24xx_i2c *i2c) | ||
750 | { | ||
751 | i2c->freq_transition.notifier_call = s3c24xx_i2c_cpufreq_transition; | ||
752 | |||
753 | return cpufreq_register_notifier(&i2c->freq_transition, | ||
754 | CPUFREQ_TRANSITION_NOTIFIER); | ||
755 | } | ||
756 | |||
757 | static inline void s3c24xx_i2c_deregister_cpufreq(struct s3c24xx_i2c *i2c) | ||
758 | { | ||
759 | cpufreq_unregister_notifier(&i2c->freq_transition, | ||
760 | CPUFREQ_TRANSITION_NOTIFIER); | ||
761 | } | ||
762 | |||
763 | #else | ||
764 | static inline int s3c24xx_i2c_register_cpufreq(struct s3c24xx_i2c *i2c) | ||
765 | { | ||
693 | return 0; | 766 | return 0; |
694 | } | 767 | } |
695 | 768 | ||
769 | static inline void s3c24xx_i2c_deregister_cpufreq(struct s3c24xx_i2c *i2c) | ||
770 | { | ||
771 | } | ||
772 | #endif | ||
773 | |||
696 | /* s3c24xx_i2c_init | 774 | /* s3c24xx_i2c_init |
697 | * | 775 | * |
698 | * initialise the controller, set the IO lines and frequency | 776 | * initialise the controller, set the IO lines and frequency |
@@ -719,9 +797,12 @@ static int s3c24xx_i2c_init(struct s3c24xx_i2c *i2c) | |||
719 | 797 | ||
720 | dev_info(i2c->dev, "slave address 0x%02x\n", pdata->slave_addr); | 798 | dev_info(i2c->dev, "slave address 0x%02x\n", pdata->slave_addr); |
721 | 799 | ||
800 | writel(iicon, i2c->regs + S3C2410_IICCON); | ||
801 | |||
722 | /* we need to work out the divisors for the clock... */ | 802 | /* we need to work out the divisors for the clock... */ |
723 | 803 | ||
724 | if (s3c24xx_i2c_getdivisor(i2c, pdata, &iicon, &freq) != 0) { | 804 | if (s3c24xx_i2c_clockrate(i2c, &freq) != 0) { |
805 | writel(0, i2c->regs + S3C2410_IICCON); | ||
725 | dev_err(i2c->dev, "cannot meet bus frequency required\n"); | 806 | dev_err(i2c->dev, "cannot meet bus frequency required\n"); |
726 | return -EINVAL; | 807 | return -EINVAL; |
727 | } | 808 | } |
@@ -730,8 +811,6 @@ static int s3c24xx_i2c_init(struct s3c24xx_i2c *i2c) | |||
730 | 811 | ||
731 | dev_info(i2c->dev, "bus frequency set to %d KHz\n", freq); | 812 | dev_info(i2c->dev, "bus frequency set to %d KHz\n", freq); |
732 | dev_dbg(i2c->dev, "S3C2410_IICCON=0x%02lx\n", iicon); | 813 | dev_dbg(i2c->dev, "S3C2410_IICCON=0x%02lx\n", iicon); |
733 | |||
734 | writel(iicon, i2c->regs + S3C2410_IICCON); | ||
735 | 814 | ||
736 | /* check for s3c2440 i2c controller */ | 815 | /* check for s3c2440 i2c controller */ |
737 | 816 | ||
@@ -752,9 +831,12 @@ static int s3c24xx_i2c_init(struct s3c24xx_i2c *i2c) | |||
752 | static int s3c24xx_i2c_probe(struct platform_device *pdev) | 831 | static int s3c24xx_i2c_probe(struct platform_device *pdev) |
753 | { | 832 | { |
754 | struct s3c24xx_i2c *i2c = &s3c24xx_i2c; | 833 | struct s3c24xx_i2c *i2c = &s3c24xx_i2c; |
834 | struct s3c2410_platform_i2c *pdata; | ||
755 | struct resource *res; | 835 | struct resource *res; |
756 | int ret; | 836 | int ret; |
757 | 837 | ||
838 | pdata = s3c24xx_i2c_get_platformdata(&pdev->dev); | ||
839 | |||
758 | /* find the clock and enable it */ | 840 | /* find the clock and enable it */ |
759 | 841 | ||
760 | i2c->dev = &pdev->dev; | 842 | i2c->dev = &pdev->dev; |
@@ -832,17 +914,34 @@ static int s3c24xx_i2c_probe(struct platform_device *pdev) | |||
832 | dev_dbg(&pdev->dev, "irq resource %p (%lu)\n", res, | 914 | dev_dbg(&pdev->dev, "irq resource %p (%lu)\n", res, |
833 | (unsigned long)res->start); | 915 | (unsigned long)res->start); |
834 | 916 | ||
835 | ret = i2c_add_adapter(&i2c->adap); | 917 | ret = s3c24xx_i2c_register_cpufreq(i2c); |
836 | if (ret < 0) { | 918 | if (ret < 0) { |
837 | dev_err(&pdev->dev, "failed to add bus to i2c core\n"); | 919 | dev_err(&pdev->dev, "failed to register cpufreq notifier\n"); |
838 | goto err_irq; | 920 | goto err_irq; |
839 | } | 921 | } |
840 | 922 | ||
923 | /* Note, previous versions of the driver used i2c_add_adapter() | ||
924 | * to add the bus at any number. We now pass the bus number via | ||
925 | * the platform data, so if unset it will now default to always | ||
926 | * being bus 0. | ||
927 | */ | ||
928 | |||
929 | i2c->adap.nr = pdata->bus_num; | ||
930 | |||
931 | ret = i2c_add_numbered_adapter(&i2c->adap); | ||
932 | if (ret < 0) { | ||
933 | dev_err(&pdev->dev, "failed to add bus to i2c core\n"); | ||
934 | goto err_cpufreq; | ||
935 | } | ||
936 | |||
841 | platform_set_drvdata(pdev, i2c); | 937 | platform_set_drvdata(pdev, i2c); |
842 | 938 | ||
843 | dev_info(&pdev->dev, "%s: S3C I2C adapter\n", i2c->adap.dev.bus_id); | 939 | dev_info(&pdev->dev, "%s: S3C I2C adapter\n", i2c->adap.dev.bus_id); |
844 | return 0; | 940 | return 0; |
845 | 941 | ||
942 | err_cpufreq: | ||
943 | s3c24xx_i2c_deregister_cpufreq(i2c); | ||
944 | |||
846 | err_irq: | 945 | err_irq: |
847 | free_irq(i2c->irq->start, i2c); | 946 | free_irq(i2c->irq->start, i2c); |
848 | 947 | ||
@@ -870,6 +969,8 @@ static int s3c24xx_i2c_remove(struct platform_device *pdev) | |||
870 | { | 969 | { |
871 | struct s3c24xx_i2c *i2c = platform_get_drvdata(pdev); | 970 | struct s3c24xx_i2c *i2c = platform_get_drvdata(pdev); |
872 | 971 | ||
972 | s3c24xx_i2c_deregister_cpufreq(i2c); | ||
973 | |||
873 | i2c_del_adapter(&i2c->adap); | 974 | i2c_del_adapter(&i2c->adap); |
874 | free_irq(i2c->irq->start, i2c); | 975 | free_irq(i2c->irq->start, i2c); |
875 | 976 | ||
diff --git a/drivers/input/keyboard/sh_keysc.c b/drivers/input/keyboard/sh_keysc.c index 8486abc457ed..c600ab7f93e8 100644 --- a/drivers/input/keyboard/sh_keysc.c +++ b/drivers/input/keyboard/sh_keysc.c | |||
@@ -158,25 +158,18 @@ static int __devinit sh_keysc_probe(struct platform_device *pdev) | |||
158 | memcpy(&priv->pdata, pdev->dev.platform_data, sizeof(priv->pdata)); | 158 | memcpy(&priv->pdata, pdev->dev.platform_data, sizeof(priv->pdata)); |
159 | pdata = &priv->pdata; | 159 | pdata = &priv->pdata; |
160 | 160 | ||
161 | res = request_mem_region(res->start, res_size(res), pdev->name); | ||
162 | if (res == NULL) { | ||
163 | dev_err(&pdev->dev, "failed to request I/O memory\n"); | ||
164 | error = -EBUSY; | ||
165 | goto err1; | ||
166 | } | ||
167 | |||
168 | priv->iomem_base = ioremap_nocache(res->start, res_size(res)); | 161 | priv->iomem_base = ioremap_nocache(res->start, res_size(res)); |
169 | if (priv->iomem_base == NULL) { | 162 | if (priv->iomem_base == NULL) { |
170 | dev_err(&pdev->dev, "failed to remap I/O memory\n"); | 163 | dev_err(&pdev->dev, "failed to remap I/O memory\n"); |
171 | error = -ENXIO; | 164 | error = -ENXIO; |
172 | goto err2; | 165 | goto err1; |
173 | } | 166 | } |
174 | 167 | ||
175 | priv->input = input_allocate_device(); | 168 | priv->input = input_allocate_device(); |
176 | if (!priv->input) { | 169 | if (!priv->input) { |
177 | dev_err(&pdev->dev, "failed to allocate input device\n"); | 170 | dev_err(&pdev->dev, "failed to allocate input device\n"); |
178 | error = -ENOMEM; | 171 | error = -ENOMEM; |
179 | goto err3; | 172 | goto err2; |
180 | } | 173 | } |
181 | 174 | ||
182 | input = priv->input; | 175 | input = priv->input; |
@@ -194,7 +187,7 @@ static int __devinit sh_keysc_probe(struct platform_device *pdev) | |||
194 | error = request_irq(irq, sh_keysc_isr, 0, pdev->name, pdev); | 187 | error = request_irq(irq, sh_keysc_isr, 0, pdev->name, pdev); |
195 | if (error) { | 188 | if (error) { |
196 | dev_err(&pdev->dev, "failed to request IRQ\n"); | 189 | dev_err(&pdev->dev, "failed to request IRQ\n"); |
197 | goto err4; | 190 | goto err3; |
198 | } | 191 | } |
199 | 192 | ||
200 | for (i = 0; i < SH_KEYSC_MAXKEYS; i++) { | 193 | for (i = 0; i < SH_KEYSC_MAXKEYS; i++) { |
@@ -206,7 +199,7 @@ static int __devinit sh_keysc_probe(struct platform_device *pdev) | |||
206 | error = input_register_device(input); | 199 | error = input_register_device(input); |
207 | if (error) { | 200 | if (error) { |
208 | dev_err(&pdev->dev, "failed to register input device\n"); | 201 | dev_err(&pdev->dev, "failed to register input device\n"); |
209 | goto err5; | 202 | goto err4; |
210 | } | 203 | } |
211 | 204 | ||
212 | iowrite16((sh_keysc_mode[pdata->mode].kymd << 8) | | 205 | iowrite16((sh_keysc_mode[pdata->mode].kymd << 8) | |
@@ -214,14 +207,12 @@ static int __devinit sh_keysc_probe(struct platform_device *pdev) | |||
214 | iowrite16(0, priv->iomem_base + KYOUTDR_OFFS); | 207 | iowrite16(0, priv->iomem_base + KYOUTDR_OFFS); |
215 | iowrite16(KYCR2_IRQ_LEVEL, priv->iomem_base + KYCR2_OFFS); | 208 | iowrite16(KYCR2_IRQ_LEVEL, priv->iomem_base + KYCR2_OFFS); |
216 | return 0; | 209 | return 0; |
217 | err5: | ||
218 | free_irq(irq, pdev); | ||
219 | err4: | 210 | err4: |
220 | input_free_device(input); | 211 | free_irq(irq, pdev); |
221 | err3: | 212 | err3: |
222 | iounmap(priv->iomem_base); | 213 | input_free_device(input); |
223 | err2: | 214 | err2: |
224 | release_mem_region(res->start, res_size(res)); | 215 | iounmap(priv->iomem_base); |
225 | err1: | 216 | err1: |
226 | platform_set_drvdata(pdev, NULL); | 217 | platform_set_drvdata(pdev, NULL); |
227 | kfree(priv); | 218 | kfree(priv); |
@@ -232,7 +223,6 @@ static int __devinit sh_keysc_probe(struct platform_device *pdev) | |||
232 | static int __devexit sh_keysc_remove(struct platform_device *pdev) | 223 | static int __devexit sh_keysc_remove(struct platform_device *pdev) |
233 | { | 224 | { |
234 | struct sh_keysc_priv *priv = platform_get_drvdata(pdev); | 225 | struct sh_keysc_priv *priv = platform_get_drvdata(pdev); |
235 | struct resource *res; | ||
236 | 226 | ||
237 | iowrite16(KYCR2_IRQ_DISABLED, priv->iomem_base + KYCR2_OFFS); | 227 | iowrite16(KYCR2_IRQ_DISABLED, priv->iomem_base + KYCR2_OFFS); |
238 | 228 | ||
@@ -240,9 +230,6 @@ static int __devexit sh_keysc_remove(struct platform_device *pdev) | |||
240 | free_irq(platform_get_irq(pdev, 0), pdev); | 230 | free_irq(platform_get_irq(pdev, 0), pdev); |
241 | iounmap(priv->iomem_base); | 231 | iounmap(priv->iomem_base); |
242 | 232 | ||
243 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); | ||
244 | release_mem_region(res->start, res_size(res)); | ||
245 | |||
246 | platform_set_drvdata(pdev, NULL); | 233 | platform_set_drvdata(pdev, NULL); |
247 | kfree(priv); | 234 | kfree(priv); |
248 | return 0; | 235 | return 0; |
diff --git a/drivers/input/misc/uinput.c b/drivers/input/misc/uinput.c index 2bcfa0b35061..223d56d5555b 100644 --- a/drivers/input/misc/uinput.c +++ b/drivers/input/misc/uinput.c | |||
@@ -37,7 +37,6 @@ | |||
37 | #include <linux/fs.h> | 37 | #include <linux/fs.h> |
38 | #include <linux/miscdevice.h> | 38 | #include <linux/miscdevice.h> |
39 | #include <linux/uinput.h> | 39 | #include <linux/uinput.h> |
40 | #include <linux/smp_lock.h> | ||
41 | 40 | ||
42 | static int uinput_dev_event(struct input_dev *dev, unsigned int type, unsigned int code, int value) | 41 | static int uinput_dev_event(struct input_dev *dev, unsigned int type, unsigned int code, int value) |
43 | { | 42 | { |
diff --git a/drivers/input/serio/serio.c b/drivers/input/serio/serio.c index 78f2abb5c11b..2f12d60eee3b 100644 --- a/drivers/input/serio/serio.c +++ b/drivers/input/serio/serio.c | |||
@@ -63,8 +63,9 @@ static LIST_HEAD(serio_list); | |||
63 | static struct bus_type serio_bus; | 63 | static struct bus_type serio_bus; |
64 | 64 | ||
65 | static void serio_add_port(struct serio *serio); | 65 | static void serio_add_port(struct serio *serio); |
66 | static void serio_reconnect_port(struct serio *serio); | 66 | static int serio_reconnect_port(struct serio *serio); |
67 | static void serio_disconnect_port(struct serio *serio); | 67 | static void serio_disconnect_port(struct serio *serio); |
68 | static void serio_reconnect_chain(struct serio *serio); | ||
68 | static void serio_attach_driver(struct serio_driver *drv); | 69 | static void serio_attach_driver(struct serio_driver *drv); |
69 | 70 | ||
70 | static int serio_connect_driver(struct serio *serio, struct serio_driver *drv) | 71 | static int serio_connect_driver(struct serio *serio, struct serio_driver *drv) |
@@ -161,6 +162,7 @@ static void serio_find_driver(struct serio *serio) | |||
161 | enum serio_event_type { | 162 | enum serio_event_type { |
162 | SERIO_RESCAN_PORT, | 163 | SERIO_RESCAN_PORT, |
163 | SERIO_RECONNECT_PORT, | 164 | SERIO_RECONNECT_PORT, |
165 | SERIO_RECONNECT_CHAIN, | ||
164 | SERIO_REGISTER_PORT, | 166 | SERIO_REGISTER_PORT, |
165 | SERIO_ATTACH_DRIVER, | 167 | SERIO_ATTACH_DRIVER, |
166 | }; | 168 | }; |
@@ -315,6 +317,10 @@ static void serio_handle_event(void) | |||
315 | serio_find_driver(event->object); | 317 | serio_find_driver(event->object); |
316 | break; | 318 | break; |
317 | 319 | ||
320 | case SERIO_RECONNECT_CHAIN: | ||
321 | serio_reconnect_chain(event->object); | ||
322 | break; | ||
323 | |||
318 | case SERIO_ATTACH_DRIVER: | 324 | case SERIO_ATTACH_DRIVER: |
319 | serio_attach_driver(event->object); | 325 | serio_attach_driver(event->object); |
320 | break; | 326 | break; |
@@ -470,7 +476,7 @@ static ssize_t serio_rebind_driver(struct device *dev, struct device_attribute * | |||
470 | if (!strncmp(buf, "none", count)) { | 476 | if (!strncmp(buf, "none", count)) { |
471 | serio_disconnect_port(serio); | 477 | serio_disconnect_port(serio); |
472 | } else if (!strncmp(buf, "reconnect", count)) { | 478 | } else if (!strncmp(buf, "reconnect", count)) { |
473 | serio_reconnect_port(serio); | 479 | serio_reconnect_chain(serio); |
474 | } else if (!strncmp(buf, "rescan", count)) { | 480 | } else if (!strncmp(buf, "rescan", count)) { |
475 | serio_disconnect_port(serio); | 481 | serio_disconnect_port(serio); |
476 | serio_find_driver(serio); | 482 | serio_find_driver(serio); |
@@ -620,14 +626,30 @@ static void serio_destroy_port(struct serio *serio) | |||
620 | } | 626 | } |
621 | 627 | ||
622 | /* | 628 | /* |
629 | * Reconnect serio port (re-initialize attached device). | ||
630 | * If reconnect fails (old device is no longer attached or | ||
631 | * there was no device to begin with) we do full rescan in | ||
632 | * hope of finding a driver for the port. | ||
633 | */ | ||
634 | static int serio_reconnect_port(struct serio *serio) | ||
635 | { | ||
636 | int error = serio_reconnect_driver(serio); | ||
637 | |||
638 | if (error) { | ||
639 | serio_disconnect_port(serio); | ||
640 | serio_find_driver(serio); | ||
641 | } | ||
642 | |||
643 | return error; | ||
644 | } | ||
645 | |||
646 | /* | ||
623 | * Reconnect serio port and all its children (re-initialize attached devices) | 647 | * Reconnect serio port and all its children (re-initialize attached devices) |
624 | */ | 648 | */ |
625 | static void serio_reconnect_port(struct serio *serio) | 649 | static void serio_reconnect_chain(struct serio *serio) |
626 | { | 650 | { |
627 | do { | 651 | do { |
628 | if (serio_reconnect_driver(serio)) { | 652 | if (serio_reconnect_port(serio)) { |
629 | serio_disconnect_port(serio); | ||
630 | serio_find_driver(serio); | ||
631 | /* Ok, old children are now gone, we are done */ | 653 | /* Ok, old children are now gone, we are done */ |
632 | break; | 654 | break; |
633 | } | 655 | } |
@@ -673,7 +695,7 @@ void serio_rescan(struct serio *serio) | |||
673 | 695 | ||
674 | void serio_reconnect(struct serio *serio) | 696 | void serio_reconnect(struct serio *serio) |
675 | { | 697 | { |
676 | serio_queue_event(serio, NULL, SERIO_RECONNECT_PORT); | 698 | serio_queue_event(serio, NULL, SERIO_RECONNECT_CHAIN); |
677 | } | 699 | } |
678 | 700 | ||
679 | /* | 701 | /* |
@@ -927,19 +949,16 @@ static int serio_suspend(struct device *dev, pm_message_t state) | |||
927 | 949 | ||
928 | static int serio_resume(struct device *dev) | 950 | static int serio_resume(struct device *dev) |
929 | { | 951 | { |
930 | struct serio *serio = to_serio_port(dev); | 952 | /* |
931 | 953 | * Driver reconnect can take a while, so better let kseriod | |
932 | if (dev->power.power_state.event != PM_EVENT_ON && | 954 | * deal with it. |
933 | serio_reconnect_driver(serio)) { | 955 | */ |
934 | /* | 956 | if (dev->power.power_state.event != PM_EVENT_ON) { |
935 | * Driver re-probing can take a while, so better let kseriod | 957 | dev->power.power_state = PMSG_ON; |
936 | * deal with it. | 958 | serio_queue_event(to_serio_port(dev), NULL, |
937 | */ | 959 | SERIO_RECONNECT_PORT); |
938 | serio_rescan(serio); | ||
939 | } | 960 | } |
940 | 961 | ||
941 | dev->power.power_state = PMSG_ON; | ||
942 | |||
943 | return 0; | 962 | return 0; |
944 | } | 963 | } |
945 | #endif /* CONFIG_PM */ | 964 | #endif /* CONFIG_PM */ |
diff --git a/drivers/input/touchscreen/Kconfig b/drivers/input/touchscreen/Kconfig index e57366521572..6e60a97a234c 100644 --- a/drivers/input/touchscreen/Kconfig +++ b/drivers/input/touchscreen/Kconfig | |||
@@ -205,6 +205,18 @@ config TOUCHSCREEN_TOUCHWIN | |||
205 | To compile this driver as a module, choose M here: the | 205 | To compile this driver as a module, choose M here: the |
206 | module will be called touchwin. | 206 | module will be called touchwin. |
207 | 207 | ||
208 | config TOUCHSCREEN_ATMEL_TSADCC | ||
209 | tristate "Atmel Touchscreen Interface" | ||
210 | depends on ARCH_AT91SAM9RL | ||
211 | help | ||
212 | Say Y here if you have a 4-wire touchscreen connected to the | ||
213 | ADC Controller on your Atmel SoC (such as the AT91SAM9RL). | ||
214 | |||
215 | If unsure, say N. | ||
216 | |||
217 | To compile this driver as a module, choose M here: the | ||
218 | module will be called atmel_tsadcc. | ||
219 | |||
208 | config TOUCHSCREEN_UCB1400 | 220 | config TOUCHSCREEN_UCB1400 |
209 | tristate "Philips UCB1400 touchscreen" | 221 | tristate "Philips UCB1400 touchscreen" |
210 | select AC97_BUS | 222 | select AC97_BUS |
diff --git a/drivers/input/touchscreen/Makefile b/drivers/input/touchscreen/Makefile index 39a804cd80f1..15cf29079489 100644 --- a/drivers/input/touchscreen/Makefile +++ b/drivers/input/touchscreen/Makefile | |||
@@ -7,6 +7,7 @@ | |||
7 | wm97xx-ts-y := wm97xx-core.o | 7 | wm97xx-ts-y := wm97xx-core.o |
8 | 8 | ||
9 | obj-$(CONFIG_TOUCHSCREEN_ADS7846) += ads7846.o | 9 | obj-$(CONFIG_TOUCHSCREEN_ADS7846) += ads7846.o |
10 | obj-$(CONFIG_TOUCHSCREEN_ATMEL_TSADCC) += atmel_tsadcc.o | ||
10 | obj-$(CONFIG_TOUCHSCREEN_BITSY) += h3600_ts_input.o | 11 | obj-$(CONFIG_TOUCHSCREEN_BITSY) += h3600_ts_input.o |
11 | obj-$(CONFIG_TOUCHSCREEN_CORGI) += corgi_ts.o | 12 | obj-$(CONFIG_TOUCHSCREEN_CORGI) += corgi_ts.o |
12 | obj-$(CONFIG_TOUCHSCREEN_GUNZE) += gunze.o | 13 | obj-$(CONFIG_TOUCHSCREEN_GUNZE) += gunze.o |
diff --git a/drivers/input/touchscreen/ads7846.c b/drivers/input/touchscreen/ads7846.c index 907a45fe9d40..ce6f48c695f5 100644 --- a/drivers/input/touchscreen/ads7846.c +++ b/drivers/input/touchscreen/ads7846.c | |||
@@ -517,7 +517,9 @@ static void ads7846_rx(void *ads) | |||
517 | if (x == MAX_12BIT) | 517 | if (x == MAX_12BIT) |
518 | x = 0; | 518 | x = 0; |
519 | 519 | ||
520 | if (likely(x && z1)) { | 520 | if (ts->model == 7843) { |
521 | Rt = ts->pressure_max / 2; | ||
522 | } else if (likely(x && z1)) { | ||
521 | /* compute touch pressure resistance using equation #2 */ | 523 | /* compute touch pressure resistance using equation #2 */ |
522 | Rt = z2; | 524 | Rt = z2; |
523 | Rt -= z1; | 525 | Rt -= z1; |
@@ -525,11 +527,9 @@ static void ads7846_rx(void *ads) | |||
525 | Rt *= ts->x_plate_ohms; | 527 | Rt *= ts->x_plate_ohms; |
526 | Rt /= z1; | 528 | Rt /= z1; |
527 | Rt = (Rt + 2047) >> 12; | 529 | Rt = (Rt + 2047) >> 12; |
528 | } else | 530 | } else { |
529 | Rt = 0; | 531 | Rt = 0; |
530 | 532 | } | |
531 | if (ts->model == 7843) | ||
532 | Rt = ts->pressure_max / 2; | ||
533 | 533 | ||
534 | /* Sample found inconsistent by debouncing or pressure is beyond | 534 | /* Sample found inconsistent by debouncing or pressure is beyond |
535 | * the maximum. Don't report it to user space, repeat at least | 535 | * the maximum. Don't report it to user space, repeat at least |
@@ -633,19 +633,17 @@ static void ads7846_rx_val(void *ads) | |||
633 | struct ads7846 *ts = ads; | 633 | struct ads7846 *ts = ads; |
634 | struct spi_message *m; | 634 | struct spi_message *m; |
635 | struct spi_transfer *t; | 635 | struct spi_transfer *t; |
636 | u16 *rx_val; | ||
637 | int val; | 636 | int val; |
638 | int action; | 637 | int action; |
639 | int status; | 638 | int status; |
640 | 639 | ||
641 | m = &ts->msg[ts->msg_idx]; | 640 | m = &ts->msg[ts->msg_idx]; |
642 | t = list_entry(m->transfers.prev, struct spi_transfer, transfer_list); | 641 | t = list_entry(m->transfers.prev, struct spi_transfer, transfer_list); |
643 | rx_val = t->rx_buf; | ||
644 | 642 | ||
645 | /* adjust: on-wire is a must-ignore bit, a BE12 value, then padding; | 643 | /* adjust: on-wire is a must-ignore bit, a BE12 value, then padding; |
646 | * built from two 8 bit values written msb-first. | 644 | * built from two 8 bit values written msb-first. |
647 | */ | 645 | */ |
648 | val = be16_to_cpu(*rx_val) >> 3; | 646 | val = be16_to_cpup((__be16 *)t->rx_buf) >> 3; |
649 | 647 | ||
650 | action = ts->filter(ts->filter_data, ts->msg_idx, &val); | 648 | action = ts->filter(ts->filter_data, ts->msg_idx, &val); |
651 | switch (action) { | 649 | switch (action) { |
@@ -659,7 +657,7 @@ static void ads7846_rx_val(void *ads) | |||
659 | m = ts->last_msg; | 657 | m = ts->last_msg; |
660 | break; | 658 | break; |
661 | case ADS7846_FILTER_OK: | 659 | case ADS7846_FILTER_OK: |
662 | *rx_val = val; | 660 | *(u16 *)t->rx_buf = val; |
663 | ts->tc.ignore = 0; | 661 | ts->tc.ignore = 0; |
664 | m = &ts->msg[++ts->msg_idx]; | 662 | m = &ts->msg[++ts->msg_idx]; |
665 | break; | 663 | break; |
diff --git a/drivers/input/touchscreen/atmel_tsadcc.c b/drivers/input/touchscreen/atmel_tsadcc.c new file mode 100644 index 000000000000..eee126b19e8b --- /dev/null +++ b/drivers/input/touchscreen/atmel_tsadcc.c | |||
@@ -0,0 +1,332 @@ | |||
1 | /* | ||
2 | * Atmel Touch Screen Driver | ||
3 | * | ||
4 | * Copyright (c) 2008 ATMEL | ||
5 | * Copyright (c) 2008 Dan Liang | ||
6 | * Copyright (c) 2008 TimeSys Corporation | ||
7 | * Copyright (c) 2008 Justin Waters | ||
8 | * | ||
9 | * Based on touchscreen code from Atmel Corporation. | ||
10 | * | ||
11 | * This program is free software; you can redistribute it and/or modify | ||
12 | * it under the terms of the GNU General Public License version 2 as | ||
13 | * published by the Free Software Foundation. | ||
14 | */ | ||
15 | #include <linux/init.h> | ||
16 | #include <linux/err.h> | ||
17 | #include <linux/kernel.h> | ||
18 | #include <linux/module.h> | ||
19 | #include <linux/input.h> | ||
20 | #include <linux/slab.h> | ||
21 | #include <linux/interrupt.h> | ||
22 | #include <linux/clk.h> | ||
23 | #include <linux/platform_device.h> | ||
24 | #include <linux/io.h> | ||
25 | |||
26 | /* Register definitions based on AT91SAM9RL64 preliminary draft datasheet */ | ||
27 | |||
28 | #define ATMEL_TSADCC_CR 0x00 /* Control register */ | ||
29 | #define ATMEL_TSADCC_SWRST (1 << 0) /* Software Reset*/ | ||
30 | #define ATMEL_TSADCC_START (1 << 1) /* Start conversion */ | ||
31 | |||
32 | #define ATMEL_TSADCC_MR 0x04 /* Mode register */ | ||
33 | #define ATMEL_TSADCC_TSAMOD (3 << 0) /* ADC mode */ | ||
34 | #define ATMEL_TSADCC_TSAMOD_ADC_ONLY_MODE (0x0) /* ADC Mode */ | ||
35 | #define ATMEL_TSADCC_TSAMOD_TS_ONLY_MODE (0x1) /* Touch Screen Only Mode */ | ||
36 | #define ATMEL_TSADCC_LOWRES (1 << 4) /* Resolution selection */ | ||
37 | #define ATMEL_TSADCC_SLEEP (1 << 5) /* Sleep mode */ | ||
38 | #define ATMEL_TSADCC_PENDET (1 << 6) /* Pen Detect selection */ | ||
39 | #define ATMEL_TSADCC_PRESCAL (0x3f << 8) /* Prescalar Rate Selection */ | ||
40 | #define ATMEL_TSADCC_STARTUP (0x7f << 16) /* Start Up time */ | ||
41 | #define ATMEL_TSADCC_SHTIM (0xf << 24) /* Sample & Hold time */ | ||
42 | #define ATMEL_TSADCC_PENDBC (0xf << 28) /* Pen Detect debouncing time */ | ||
43 | |||
44 | #define ATMEL_TSADCC_TRGR 0x08 /* Trigger register */ | ||
45 | #define ATMEL_TSADCC_TRGMOD (7 << 0) /* Trigger mode */ | ||
46 | #define ATMEL_TSADCC_TRGMOD_NONE (0 << 0) | ||
47 | #define ATMEL_TSADCC_TRGMOD_EXT_RISING (1 << 0) | ||
48 | #define ATMEL_TSADCC_TRGMOD_EXT_FALLING (2 << 0) | ||
49 | #define ATMEL_TSADCC_TRGMOD_EXT_ANY (3 << 0) | ||
50 | #define ATMEL_TSADCC_TRGMOD_PENDET (4 << 0) | ||
51 | #define ATMEL_TSADCC_TRGMOD_PERIOD (5 << 0) | ||
52 | #define ATMEL_TSADCC_TRGMOD_CONTINUOUS (6 << 0) | ||
53 | #define ATMEL_TSADCC_TRGPER (0xffff << 16) /* Trigger period */ | ||
54 | |||
55 | #define ATMEL_TSADCC_TSR 0x0C /* Touch Screen register */ | ||
56 | #define ATMEL_TSADCC_TSFREQ (0xf << 0) /* TS Frequency in Interleaved mode */ | ||
57 | #define ATMEL_TSADCC_TSSHTIM (0xf << 24) /* Sample & Hold time */ | ||
58 | |||
59 | #define ATMEL_TSADCC_CHER 0x10 /* Channel Enable register */ | ||
60 | #define ATMEL_TSADCC_CHDR 0x14 /* Channel Disable register */ | ||
61 | #define ATMEL_TSADCC_CHSR 0x18 /* Channel Status register */ | ||
62 | #define ATMEL_TSADCC_CH(n) (1 << (n)) /* Channel number */ | ||
63 | |||
64 | #define ATMEL_TSADCC_SR 0x1C /* Status register */ | ||
65 | #define ATMEL_TSADCC_EOC(n) (1 << ((n)+0)) /* End of conversion for channel N */ | ||
66 | #define ATMEL_TSADCC_OVRE(n) (1 << ((n)+8)) /* Overrun error for channel N */ | ||
67 | #define ATMEL_TSADCC_DRDY (1 << 16) /* Data Ready */ | ||
68 | #define ATMEL_TSADCC_GOVRE (1 << 17) /* General Overrun Error */ | ||
69 | #define ATMEL_TSADCC_ENDRX (1 << 18) /* End of RX Buffer */ | ||
70 | #define ATMEL_TSADCC_RXBUFF (1 << 19) /* TX Buffer full */ | ||
71 | #define ATMEL_TSADCC_PENCNT (1 << 20) /* Pen contact */ | ||
72 | #define ATMEL_TSADCC_NOCNT (1 << 21) /* No contact */ | ||
73 | |||
74 | #define ATMEL_TSADCC_LCDR 0x20 /* Last Converted Data register */ | ||
75 | #define ATMEL_TSADCC_DATA (0x3ff << 0) /* Channel data */ | ||
76 | |||
77 | #define ATMEL_TSADCC_IER 0x24 /* Interrupt Enable register */ | ||
78 | #define ATMEL_TSADCC_IDR 0x28 /* Interrupt Disable register */ | ||
79 | #define ATMEL_TSADCC_IMR 0x2C /* Interrupt Mask register */ | ||
80 | #define ATMEL_TSADCC_CDR0 0x30 /* Channel Data 0 */ | ||
81 | #define ATMEL_TSADCC_CDR1 0x34 /* Channel Data 1 */ | ||
82 | #define ATMEL_TSADCC_CDR2 0x38 /* Channel Data 2 */ | ||
83 | #define ATMEL_TSADCC_CDR3 0x3C /* Channel Data 3 */ | ||
84 | #define ATMEL_TSADCC_CDR4 0x40 /* Channel Data 4 */ | ||
85 | #define ATMEL_TSADCC_CDR5 0x44 /* Channel Data 5 */ | ||
86 | |||
87 | #define ADC_CLOCK 1000000 | ||
88 | |||
89 | struct atmel_tsadcc { | ||
90 | struct input_dev *input; | ||
91 | char phys[32]; | ||
92 | struct clk *clk; | ||
93 | int irq; | ||
94 | }; | ||
95 | |||
96 | static void __iomem *tsc_base; | ||
97 | |||
98 | #define atmel_tsadcc_read(reg) __raw_readl(tsc_base + (reg)) | ||
99 | #define atmel_tsadcc_write(reg, val) __raw_writel((val), tsc_base + (reg)) | ||
100 | |||
101 | static irqreturn_t atmel_tsadcc_interrupt(int irq, void *dev) | ||
102 | { | ||
103 | struct input_dev *input_dev = ((struct atmel_tsadcc *)dev)->input; | ||
104 | |||
105 | unsigned int absx; | ||
106 | unsigned int absy; | ||
107 | unsigned int status; | ||
108 | unsigned int reg; | ||
109 | |||
110 | status = atmel_tsadcc_read(ATMEL_TSADCC_SR); | ||
111 | status &= atmel_tsadcc_read(ATMEL_TSADCC_IMR); | ||
112 | |||
113 | if (status & ATMEL_TSADCC_NOCNT) { | ||
114 | /* Contact lost */ | ||
115 | reg = atmel_tsadcc_read(ATMEL_TSADCC_MR) | ATMEL_TSADCC_PENDBC; | ||
116 | |||
117 | atmel_tsadcc_write(ATMEL_TSADCC_MR, reg); | ||
118 | atmel_tsadcc_write(ATMEL_TSADCC_TRGR, ATMEL_TSADCC_TRGMOD_NONE); | ||
119 | atmel_tsadcc_write(ATMEL_TSADCC_IDR, | ||
120 | ATMEL_TSADCC_EOC(3) | ATMEL_TSADCC_NOCNT); | ||
121 | atmel_tsadcc_write(ATMEL_TSADCC_IER, ATMEL_TSADCC_PENCNT); | ||
122 | |||
123 | input_report_key(input_dev, BTN_TOUCH, 0); | ||
124 | input_sync(input_dev); | ||
125 | |||
126 | } else if (status & ATMEL_TSADCC_PENCNT) { | ||
127 | /* Pen detected */ | ||
128 | reg = atmel_tsadcc_read(ATMEL_TSADCC_MR); | ||
129 | reg &= ~ATMEL_TSADCC_PENDBC; | ||
130 | |||
131 | atmel_tsadcc_write(ATMEL_TSADCC_IDR, ATMEL_TSADCC_PENCNT); | ||
132 | atmel_tsadcc_write(ATMEL_TSADCC_MR, reg); | ||
133 | atmel_tsadcc_write(ATMEL_TSADCC_IER, | ||
134 | ATMEL_TSADCC_EOC(3) | ATMEL_TSADCC_NOCNT); | ||
135 | atmel_tsadcc_write(ATMEL_TSADCC_TRGR, | ||
136 | ATMEL_TSADCC_TRGMOD_PERIOD | (0x0FFF << 16)); | ||
137 | |||
138 | } else if (status & ATMEL_TSADCC_EOC(3)) { | ||
139 | /* Conversion finished */ | ||
140 | |||
141 | absx = atmel_tsadcc_read(ATMEL_TSADCC_CDR3) << 10; | ||
142 | absx /= atmel_tsadcc_read(ATMEL_TSADCC_CDR2); | ||
143 | |||
144 | absy = atmel_tsadcc_read(ATMEL_TSADCC_CDR1) << 10; | ||
145 | absy /= atmel_tsadcc_read(ATMEL_TSADCC_CDR0); | ||
146 | |||
147 | input_report_abs(input_dev, ABS_X, absx); | ||
148 | input_report_abs(input_dev, ABS_Y, absy); | ||
149 | input_report_key(input_dev, BTN_TOUCH, 1); | ||
150 | input_sync(input_dev); | ||
151 | } | ||
152 | |||
153 | return IRQ_HANDLED; | ||
154 | } | ||
155 | |||
156 | /* | ||
157 | * The functions for inserting/removing us as a module. | ||
158 | */ | ||
159 | |||
160 | static int __devinit atmel_tsadcc_probe(struct platform_device *pdev) | ||
161 | { | ||
162 | struct atmel_tsadcc *ts_dev; | ||
163 | struct input_dev *input_dev; | ||
164 | struct resource *res; | ||
165 | int err = 0; | ||
166 | unsigned int prsc; | ||
167 | unsigned int reg; | ||
168 | |||
169 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); | ||
170 | if (!res) { | ||
171 | dev_err(&pdev->dev, "no mmio resource defined.\n"); | ||
172 | return -ENXIO; | ||
173 | } | ||
174 | |||
175 | /* Allocate memory for device */ | ||
176 | ts_dev = kzalloc(sizeof(struct atmel_tsadcc), GFP_KERNEL); | ||
177 | if (!ts_dev) { | ||
178 | dev_err(&pdev->dev, "failed to allocate memory.\n"); | ||
179 | return -ENOMEM; | ||
180 | } | ||
181 | platform_set_drvdata(pdev, ts_dev); | ||
182 | |||
183 | input_dev = input_allocate_device(); | ||
184 | if (!input_dev) { | ||
185 | dev_err(&pdev->dev, "failed to allocate input device.\n"); | ||
186 | err = -EBUSY; | ||
187 | goto err_free_mem; | ||
188 | } | ||
189 | |||
190 | ts_dev->irq = platform_get_irq(pdev, 0); | ||
191 | if (ts_dev->irq < 0) { | ||
192 | dev_err(&pdev->dev, "no irq ID is designated.\n"); | ||
193 | err = -ENODEV; | ||
194 | goto err_free_dev; | ||
195 | } | ||
196 | |||
197 | if (!request_mem_region(res->start, res->end - res->start + 1, | ||
198 | "atmel tsadcc regs")) { | ||
199 | dev_err(&pdev->dev, "resources is unavailable.\n"); | ||
200 | err = -EBUSY; | ||
201 | goto err_free_dev; | ||
202 | } | ||
203 | |||
204 | tsc_base = ioremap(res->start, res->end - res->start + 1); | ||
205 | if (!tsc_base) { | ||
206 | dev_err(&pdev->dev, "failed to map registers.\n"); | ||
207 | err = -ENOMEM; | ||
208 | goto err_release_mem; | ||
209 | } | ||
210 | |||
211 | err = request_irq(ts_dev->irq, atmel_tsadcc_interrupt, IRQF_DISABLED, | ||
212 | pdev->dev.driver->name, ts_dev); | ||
213 | if (err) { | ||
214 | dev_err(&pdev->dev, "failed to allocate irq.\n"); | ||
215 | goto err_unmap_regs; | ||
216 | } | ||
217 | |||
218 | ts_dev->clk = clk_get(&pdev->dev, "tsc_clk"); | ||
219 | if (IS_ERR(ts_dev->clk)) { | ||
220 | dev_err(&pdev->dev, "failed to get ts_clk\n"); | ||
221 | err = PTR_ERR(ts_dev->clk); | ||
222 | goto err_free_irq; | ||
223 | } | ||
224 | |||
225 | ts_dev->input = input_dev; | ||
226 | |||
227 | snprintf(ts_dev->phys, sizeof(ts_dev->phys), | ||
228 | "%s/input0", pdev->dev.bus_id); | ||
229 | |||
230 | input_dev->name = "atmel touch screen controller"; | ||
231 | input_dev->phys = ts_dev->phys; | ||
232 | input_dev->dev.parent = &pdev->dev; | ||
233 | |||
234 | input_dev->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS); | ||
235 | input_dev->keybit[BIT_WORD(BTN_TOUCH)] = BIT_MASK(BTN_TOUCH); | ||
236 | |||
237 | input_set_abs_params(input_dev, ABS_X, 0, 0x3FF, 0, 0); | ||
238 | input_set_abs_params(input_dev, ABS_Y, 0, 0x3FF, 0, 0); | ||
239 | |||
240 | /* clk_enable() always returns 0, no need to check it */ | ||
241 | clk_enable(ts_dev->clk); | ||
242 | |||
243 | prsc = clk_get_rate(ts_dev->clk); | ||
244 | dev_info(&pdev->dev, "Master clock is set at: %d Hz\n", prsc); | ||
245 | |||
246 | prsc = prsc / ADC_CLOCK / 2 - 1; | ||
247 | |||
248 | reg = ATMEL_TSADCC_TSAMOD_TS_ONLY_MODE | | ||
249 | ((0x00 << 5) & ATMEL_TSADCC_SLEEP) | /* Normal Mode */ | ||
250 | ((0x01 << 6) & ATMEL_TSADCC_PENDET) | /* Enable Pen Detect */ | ||
251 | ((prsc << 8) & ATMEL_TSADCC_PRESCAL) | /* PRESCAL */ | ||
252 | ((0x13 << 16) & ATMEL_TSADCC_STARTUP) | /* STARTUP */ | ||
253 | ((0x0F << 28) & ATMEL_TSADCC_PENDBC); /* PENDBC */ | ||
254 | |||
255 | atmel_tsadcc_write(ATMEL_TSADCC_CR, ATMEL_TSADCC_SWRST); | ||
256 | atmel_tsadcc_write(ATMEL_TSADCC_MR, reg); | ||
257 | atmel_tsadcc_write(ATMEL_TSADCC_TRGR, ATMEL_TSADCC_TRGMOD_NONE); | ||
258 | atmel_tsadcc_write(ATMEL_TSADCC_TSR, (0x3 << 24) & ATMEL_TSADCC_TSSHTIM); | ||
259 | |||
260 | atmel_tsadcc_read(ATMEL_TSADCC_SR); | ||
261 | atmel_tsadcc_write(ATMEL_TSADCC_IER, ATMEL_TSADCC_PENCNT); | ||
262 | |||
263 | /* All went ok, so register to the input system */ | ||
264 | err = input_register_device(input_dev); | ||
265 | if (err) | ||
266 | goto err_fail; | ||
267 | |||
268 | return 0; | ||
269 | |||
270 | err_fail: | ||
271 | clk_disable(ts_dev->clk); | ||
272 | clk_put(ts_dev->clk); | ||
273 | err_free_irq: | ||
274 | free_irq(ts_dev->irq, ts_dev); | ||
275 | err_unmap_regs: | ||
276 | iounmap(tsc_base); | ||
277 | err_release_mem: | ||
278 | release_mem_region(res->start, res->end - res->start + 1); | ||
279 | err_free_dev: | ||
280 | input_free_device(ts_dev->input); | ||
281 | err_free_mem: | ||
282 | kfree(ts_dev); | ||
283 | return err; | ||
284 | } | ||
285 | |||
286 | static int __devexit atmel_tsadcc_remove(struct platform_device *pdev) | ||
287 | { | ||
288 | struct atmel_tsadcc *ts_dev = dev_get_drvdata(&pdev->dev); | ||
289 | struct resource *res; | ||
290 | |||
291 | free_irq(ts_dev->irq, ts_dev); | ||
292 | |||
293 | input_unregister_device(ts_dev->input); | ||
294 | |||
295 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); | ||
296 | iounmap(tsc_base); | ||
297 | release_mem_region(res->start, res->end - res->start + 1); | ||
298 | |||
299 | clk_disable(ts_dev->clk); | ||
300 | clk_put(ts_dev->clk); | ||
301 | |||
302 | kfree(ts_dev); | ||
303 | |||
304 | return 0; | ||
305 | } | ||
306 | |||
307 | static struct platform_driver atmel_tsadcc_driver = { | ||
308 | .probe = atmel_tsadcc_probe, | ||
309 | .remove = __devexit_p(atmel_tsadcc_remove), | ||
310 | .driver = { | ||
311 | .name = "atmel_tsadcc", | ||
312 | }, | ||
313 | }; | ||
314 | |||
315 | static int __init atmel_tsadcc_init(void) | ||
316 | { | ||
317 | return platform_driver_register(&atmel_tsadcc_driver); | ||
318 | } | ||
319 | |||
320 | static void __exit atmel_tsadcc_exit(void) | ||
321 | { | ||
322 | platform_driver_unregister(&atmel_tsadcc_driver); | ||
323 | } | ||
324 | |||
325 | module_init(atmel_tsadcc_init); | ||
326 | module_exit(atmel_tsadcc_exit); | ||
327 | |||
328 | |||
329 | MODULE_LICENSE("GPL"); | ||
330 | MODULE_DESCRIPTION("Atmel TouchScreen Driver"); | ||
331 | MODULE_AUTHOR("Dan Liang <dan.liang@atmel.com>"); | ||
332 | |||
diff --git a/drivers/isdn/hardware/mISDN/Kconfig b/drivers/isdn/hardware/mISDN/Kconfig index 9cd5f5f62280..14793480c453 100644 --- a/drivers/isdn/hardware/mISDN/Kconfig +++ b/drivers/isdn/hardware/mISDN/Kconfig | |||
@@ -7,7 +7,6 @@ config MISDN_HFCPCI | |||
7 | tristate "Support for HFC PCI cards" | 7 | tristate "Support for HFC PCI cards" |
8 | depends on MISDN | 8 | depends on MISDN |
9 | depends on PCI | 9 | depends on PCI |
10 | depends on VIRT_TO_BUS | ||
11 | help | 10 | help |
12 | Enable support for cards with Cologne Chip AG's | 11 | Enable support for cards with Cologne Chip AG's |
13 | HFC PCI chip. | 12 | HFC PCI chip. |
diff --git a/drivers/isdn/hardware/mISDN/hfcpci.c b/drivers/isdn/hardware/mISDN/hfcpci.c index 917968530e1e..3231814e7efa 100644 --- a/drivers/isdn/hardware/mISDN/hfcpci.c +++ b/drivers/isdn/hardware/mISDN/hfcpci.c | |||
@@ -1988,8 +1988,7 @@ setup_hw(struct hfc_pci *hc) | |||
1988 | printk(KERN_INFO | 1988 | printk(KERN_INFO |
1989 | "HFC-PCI: defined at mem %#lx fifo %#lx(%#lx) IRQ %d HZ %d\n", | 1989 | "HFC-PCI: defined at mem %#lx fifo %#lx(%#lx) IRQ %d HZ %d\n", |
1990 | (u_long) hc->hw.pci_io, (u_long) hc->hw.fifos, | 1990 | (u_long) hc->hw.pci_io, (u_long) hc->hw.fifos, |
1991 | (u_long) virt_to_bus(hc->hw.fifos), | 1991 | (u_long) hc->hw.dmahandle, hc->irq, HZ); |
1992 | hc->irq, HZ); | ||
1993 | /* enable memory mapped ports, disable busmaster */ | 1992 | /* enable memory mapped ports, disable busmaster */ |
1994 | pci_write_config_word(hc->pdev, PCI_COMMAND, PCI_ENA_MEMIO); | 1993 | pci_write_config_word(hc->pdev, PCI_COMMAND, PCI_ENA_MEMIO); |
1995 | hc->hw.int_m2 = 0; | 1994 | hc->hw.int_m2 = 0; |
diff --git a/drivers/lguest/core.c b/drivers/lguest/core.c index 5eea4356d703..90663e01a56e 100644 --- a/drivers/lguest/core.c +++ b/drivers/lguest/core.c | |||
@@ -135,6 +135,7 @@ static void unmap_switcher(void) | |||
135 | /* Now we just need to free the pages we copied the switcher into */ | 135 | /* Now we just need to free the pages we copied the switcher into */ |
136 | for (i = 0; i < TOTAL_SWITCHER_PAGES; i++) | 136 | for (i = 0; i < TOTAL_SWITCHER_PAGES; i++) |
137 | __free_pages(switcher_page[i], 0); | 137 | __free_pages(switcher_page[i], 0); |
138 | kfree(switcher_page); | ||
138 | } | 139 | } |
139 | 140 | ||
140 | /*H:032 | 141 | /*H:032 |
diff --git a/drivers/lguest/interrupts_and_traps.c b/drivers/lguest/interrupts_and_traps.c index 0414ddf87587..a1039068f95c 100644 --- a/drivers/lguest/interrupts_and_traps.c +++ b/drivers/lguest/interrupts_and_traps.c | |||
@@ -406,7 +406,8 @@ void load_guest_idt_entry(struct lg_cpu *cpu, unsigned int num, u32 lo, u32 hi) | |||
406 | * deliver_trap() to bounce it back into the Guest. */ | 406 | * deliver_trap() to bounce it back into the Guest. */ |
407 | static void default_idt_entry(struct desc_struct *idt, | 407 | static void default_idt_entry(struct desc_struct *idt, |
408 | int trap, | 408 | int trap, |
409 | const unsigned long handler) | 409 | const unsigned long handler, |
410 | const struct desc_struct *base) | ||
410 | { | 411 | { |
411 | /* A present interrupt gate. */ | 412 | /* A present interrupt gate. */ |
412 | u32 flags = 0x8e00; | 413 | u32 flags = 0x8e00; |
@@ -415,6 +416,10 @@ static void default_idt_entry(struct desc_struct *idt, | |||
415 | * the Guest to use the "int" instruction to trigger it. */ | 416 | * the Guest to use the "int" instruction to trigger it. */ |
416 | if (trap == LGUEST_TRAP_ENTRY) | 417 | if (trap == LGUEST_TRAP_ENTRY) |
417 | flags |= (GUEST_PL << 13); | 418 | flags |= (GUEST_PL << 13); |
419 | else if (base) | ||
420 | /* Copy priv. level from what Guest asked for. This allows | ||
421 | * debug (int 3) traps from Guest userspace, for example. */ | ||
422 | flags |= (base->b & 0x6000); | ||
418 | 423 | ||
419 | /* Now pack it into the IDT entry in its weird format. */ | 424 | /* Now pack it into the IDT entry in its weird format. */ |
420 | idt->a = (LGUEST_CS<<16) | (handler&0x0000FFFF); | 425 | idt->a = (LGUEST_CS<<16) | (handler&0x0000FFFF); |
@@ -428,7 +433,7 @@ void setup_default_idt_entries(struct lguest_ro_state *state, | |||
428 | unsigned int i; | 433 | unsigned int i; |
429 | 434 | ||
430 | for (i = 0; i < ARRAY_SIZE(state->guest_idt); i++) | 435 | for (i = 0; i < ARRAY_SIZE(state->guest_idt); i++) |
431 | default_idt_entry(&state->guest_idt[i], i, def[i]); | 436 | default_idt_entry(&state->guest_idt[i], i, def[i], NULL); |
432 | } | 437 | } |
433 | 438 | ||
434 | /*H:240 We don't use the IDT entries in the "struct lguest" directly, instead | 439 | /*H:240 We don't use the IDT entries in the "struct lguest" directly, instead |
@@ -442,6 +447,8 @@ void copy_traps(const struct lg_cpu *cpu, struct desc_struct *idt, | |||
442 | /* We can simply copy the direct traps, otherwise we use the default | 447 | /* We can simply copy the direct traps, otherwise we use the default |
443 | * ones in the Switcher: they will return to the Host. */ | 448 | * ones in the Switcher: they will return to the Host. */ |
444 | for (i = 0; i < ARRAY_SIZE(cpu->arch.idt); i++) { | 449 | for (i = 0; i < ARRAY_SIZE(cpu->arch.idt); i++) { |
450 | const struct desc_struct *gidt = &cpu->arch.idt[i]; | ||
451 | |||
445 | /* If no Guest can ever override this trap, leave it alone. */ | 452 | /* If no Guest can ever override this trap, leave it alone. */ |
446 | if (!direct_trap(i)) | 453 | if (!direct_trap(i)) |
447 | continue; | 454 | continue; |
@@ -449,12 +456,15 @@ void copy_traps(const struct lg_cpu *cpu, struct desc_struct *idt, | |||
449 | /* Only trap gates (type 15) can go direct to the Guest. | 456 | /* Only trap gates (type 15) can go direct to the Guest. |
450 | * Interrupt gates (type 14) disable interrupts as they are | 457 | * Interrupt gates (type 14) disable interrupts as they are |
451 | * entered, which we never let the Guest do. Not present | 458 | * entered, which we never let the Guest do. Not present |
452 | * entries (type 0x0) also can't go direct, of course. */ | 459 | * entries (type 0x0) also can't go direct, of course. |
453 | if (idt_type(cpu->arch.idt[i].a, cpu->arch.idt[i].b) == 0xF) | 460 | * |
454 | idt[i] = cpu->arch.idt[i]; | 461 | * If it can't go direct, we still need to copy the priv. level: |
462 | * they might want to give userspace access to a software | ||
463 | * interrupt. */ | ||
464 | if (idt_type(gidt->a, gidt->b) == 0xF) | ||
465 | idt[i] = *gidt; | ||
455 | else | 466 | else |
456 | /* Reset it to the default. */ | 467 | default_idt_entry(&idt[i], i, def[i], gidt); |
457 | default_idt_entry(&idt[i], i, def[i]); | ||
458 | } | 468 | } |
459 | } | 469 | } |
460 | 470 | ||
diff --git a/drivers/lguest/x86/core.c b/drivers/lguest/x86/core.c index 95dfda52b4f9..bf7942327bda 100644 --- a/drivers/lguest/x86/core.c +++ b/drivers/lguest/x86/core.c | |||
@@ -480,7 +480,7 @@ void __init lguest_arch_host_init(void) | |||
480 | * bit on its CPU, depending on the argument (0 == unset). */ | 480 | * bit on its CPU, depending on the argument (0 == unset). */ |
481 | on_each_cpu(adjust_pge, (void *)0, 1); | 481 | on_each_cpu(adjust_pge, (void *)0, 1); |
482 | /* Turn off the feature in the global feature set. */ | 482 | /* Turn off the feature in the global feature set. */ |
483 | clear_bit(X86_FEATURE_PGE, boot_cpu_data.x86_capability); | 483 | clear_cpu_cap(&boot_cpu_data, X86_FEATURE_PGE); |
484 | } | 484 | } |
485 | put_online_cpus(); | 485 | put_online_cpus(); |
486 | }; | 486 | }; |
@@ -491,7 +491,7 @@ void __exit lguest_arch_host_fini(void) | |||
491 | /* If we had PGE before we started, turn it back on now. */ | 491 | /* If we had PGE before we started, turn it back on now. */ |
492 | get_online_cpus(); | 492 | get_online_cpus(); |
493 | if (cpu_had_pge) { | 493 | if (cpu_had_pge) { |
494 | set_bit(X86_FEATURE_PGE, boot_cpu_data.x86_capability); | 494 | set_cpu_cap(&boot_cpu_data, X86_FEATURE_PGE); |
495 | /* adjust_pge's argument "1" means set PGE. */ | 495 | /* adjust_pge's argument "1" means set PGE. */ |
496 | on_each_cpu(adjust_pge, (void *)1, 1); | 496 | on_each_cpu(adjust_pge, (void *)1, 1); |
497 | } | 497 | } |
diff --git a/drivers/media/common/saa7146_fops.c b/drivers/media/common/saa7146_fops.c index 171afe7da6b6..cf6a817d5059 100644 --- a/drivers/media/common/saa7146_fops.c +++ b/drivers/media/common/saa7146_fops.c | |||
@@ -563,7 +563,7 @@ int saa7146_unregister_device(struct video_device **vid, struct saa7146_dev* dev | |||
563 | 563 | ||
564 | DEB_EE(("dev:%p\n",dev)); | 564 | DEB_EE(("dev:%p\n",dev)); |
565 | 565 | ||
566 | if( VFL_TYPE_GRABBER == (*vid)->type ) { | 566 | if ((*vid)->vfl_type == VFL_TYPE_GRABBER) { |
567 | vv->video_minor = -1; | 567 | vv->video_minor = -1; |
568 | } else { | 568 | } else { |
569 | vv->vbi_minor = -1; | 569 | vv->vbi_minor = -1; |
diff --git a/drivers/media/common/saa7146_video.c b/drivers/media/common/saa7146_video.c index a5e62750eea3..e8bc7abf2409 100644 --- a/drivers/media/common/saa7146_video.c +++ b/drivers/media/common/saa7146_video.c | |||
@@ -656,7 +656,7 @@ static int saa7146_pgtable_build(struct saa7146_dev *dev, struct saa7146_buf *bu | |||
656 | 656 | ||
657 | /* if we have a user buffer, the first page may not be | 657 | /* if we have a user buffer, the first page may not be |
658 | aligned to a page boundary. */ | 658 | aligned to a page boundary. */ |
659 | pt1->offset = list->offset; | 659 | pt1->offset = dma->sglist->offset; |
660 | pt2->offset = pt1->offset+o1; | 660 | pt2->offset = pt1->offset+o1; |
661 | pt3->offset = pt1->offset+o2; | 661 | pt3->offset = pt1->offset+o2; |
662 | 662 | ||
@@ -958,21 +958,18 @@ int saa7146_video_do_ioctl(struct inode *inode, struct file *file, unsigned int | |||
958 | case VIDIOC_ENUM_FMT: | 958 | case VIDIOC_ENUM_FMT: |
959 | { | 959 | { |
960 | struct v4l2_fmtdesc *f = arg; | 960 | struct v4l2_fmtdesc *f = arg; |
961 | int index; | ||
962 | 961 | ||
963 | switch (f->type) { | 962 | switch (f->type) { |
964 | case V4L2_BUF_TYPE_VIDEO_CAPTURE: | 963 | case V4L2_BUF_TYPE_VIDEO_CAPTURE: |
965 | case V4L2_BUF_TYPE_VIDEO_OVERLAY: { | 964 | case V4L2_BUF_TYPE_VIDEO_OVERLAY: |
966 | index = f->index; | 965 | if (f->index >= NUM_FORMATS) |
967 | if (index < 0 || index >= NUM_FORMATS) { | ||
968 | return -EINVAL; | 966 | return -EINVAL; |
969 | } | 967 | strlcpy((char *)f->description, formats[f->index].name, |
970 | memset(f,0,sizeof(*f)); | 968 | sizeof(f->description)); |
971 | f->index = index; | 969 | f->pixelformat = formats[f->index].pixelformat; |
972 | strlcpy((char *)f->description,formats[index].name,sizeof(f->description)); | 970 | f->flags = 0; |
973 | f->pixelformat = formats[index].pixelformat; | 971 | memset(f->reserved, 0, sizeof(f->reserved)); |
974 | break; | 972 | break; |
975 | } | ||
976 | default: | 973 | default: |
977 | return -EINVAL; | 974 | return -EINVAL; |
978 | } | 975 | } |
diff --git a/drivers/media/common/tuners/Kconfig b/drivers/media/common/tuners/Kconfig index 850d5689b14d..6f92beaa5ac8 100644 --- a/drivers/media/common/tuners/Kconfig +++ b/drivers/media/common/tuners/Kconfig | |||
@@ -21,9 +21,8 @@ config MEDIA_TUNER | |||
21 | tristate | 21 | tristate |
22 | default VIDEO_MEDIA && I2C | 22 | default VIDEO_MEDIA && I2C |
23 | depends on VIDEO_MEDIA && I2C | 23 | depends on VIDEO_MEDIA && I2C |
24 | select FW_LOADER if !MEDIA_TUNER_CUSTOMIZE && HOTPLUG | 24 | select MEDIA_TUNER_XC2028 if !MEDIA_TUNER_CUSTOMIZE |
25 | select MEDIA_TUNER_XC2028 if !MEDIA_TUNER_CUSTOMIZE && HOTPLUG | 25 | select MEDIA_TUNER_XC5000 if !MEDIA_TUNER_CUSTOMIZE |
26 | select MEDIA_TUNER_XC5000 if !MEDIA_TUNER_CUSTOMIZE && HOTPLUG | ||
27 | select MEDIA_TUNER_MT20XX if !MEDIA_TUNER_CUSTOMIZE | 26 | select MEDIA_TUNER_MT20XX if !MEDIA_TUNER_CUSTOMIZE |
28 | select MEDIA_TUNER_TDA8290 if !MEDIA_TUNER_CUSTOMIZE | 27 | select MEDIA_TUNER_TDA8290 if !MEDIA_TUNER_CUSTOMIZE |
29 | select MEDIA_TUNER_TEA5761 if !MEDIA_TUNER_CUSTOMIZE | 28 | select MEDIA_TUNER_TEA5761 if !MEDIA_TUNER_CUSTOMIZE |
@@ -138,8 +137,6 @@ config MEDIA_TUNER_QT1010 | |||
138 | config MEDIA_TUNER_XC2028 | 137 | config MEDIA_TUNER_XC2028 |
139 | tristate "XCeive xc2028/xc3028 tuners" | 138 | tristate "XCeive xc2028/xc3028 tuners" |
140 | depends on VIDEO_MEDIA && I2C | 139 | depends on VIDEO_MEDIA && I2C |
141 | depends on HOTPLUG | ||
142 | select FW_LOADER | ||
143 | default m if MEDIA_TUNER_CUSTOMIZE | 140 | default m if MEDIA_TUNER_CUSTOMIZE |
144 | help | 141 | help |
145 | Say Y here to include support for the xc2028/xc3028 tuners. | 142 | Say Y here to include support for the xc2028/xc3028 tuners. |
@@ -147,8 +144,6 @@ config MEDIA_TUNER_XC2028 | |||
147 | config MEDIA_TUNER_XC5000 | 144 | config MEDIA_TUNER_XC5000 |
148 | tristate "Xceive XC5000 silicon tuner" | 145 | tristate "Xceive XC5000 silicon tuner" |
149 | depends on VIDEO_MEDIA && I2C | 146 | depends on VIDEO_MEDIA && I2C |
150 | depends on HOTPLUG | ||
151 | select FW_LOADER | ||
152 | default m if DVB_FE_CUSTOMISE | 147 | default m if DVB_FE_CUSTOMISE |
153 | help | 148 | help |
154 | A driver for the silicon tuner XC5000 from Xceive. | 149 | A driver for the silicon tuner XC5000 from Xceive. |
@@ -162,4 +157,11 @@ config MEDIA_TUNER_MXL5005S | |||
162 | help | 157 | help |
163 | A driver for the silicon tuner MXL5005S from MaxLinear. | 158 | A driver for the silicon tuner MXL5005S from MaxLinear. |
164 | 159 | ||
160 | config MEDIA_TUNER_MXL5007T | ||
161 | tristate "MaxLinear MxL5007T silicon tuner" | ||
162 | depends on VIDEO_MEDIA && I2C | ||
163 | default m if DVB_FE_CUSTOMISE | ||
164 | help | ||
165 | A driver for the silicon tuner MxL5007T from MaxLinear. | ||
166 | |||
165 | endif # MEDIA_TUNER_CUSTOMIZE | 167 | endif # MEDIA_TUNER_CUSTOMIZE |
diff --git a/drivers/media/common/tuners/Makefile b/drivers/media/common/tuners/Makefile index 55f7e6706297..4dfbe5b8264f 100644 --- a/drivers/media/common/tuners/Makefile +++ b/drivers/media/common/tuners/Makefile | |||
@@ -21,6 +21,7 @@ obj-$(CONFIG_MEDIA_TUNER_MT2266) += mt2266.o | |||
21 | obj-$(CONFIG_MEDIA_TUNER_QT1010) += qt1010.o | 21 | obj-$(CONFIG_MEDIA_TUNER_QT1010) += qt1010.o |
22 | obj-$(CONFIG_MEDIA_TUNER_MT2131) += mt2131.o | 22 | obj-$(CONFIG_MEDIA_TUNER_MT2131) += mt2131.o |
23 | obj-$(CONFIG_MEDIA_TUNER_MXL5005S) += mxl5005s.o | 23 | obj-$(CONFIG_MEDIA_TUNER_MXL5005S) += mxl5005s.o |
24 | obj-$(CONFIG_MEDIA_TUNER_MXL5007T) += mxl5007t.o | ||
24 | 25 | ||
25 | EXTRA_CFLAGS += -Idrivers/media/dvb/dvb-core | 26 | EXTRA_CFLAGS += -Idrivers/media/dvb/dvb-core |
26 | EXTRA_CFLAGS += -Idrivers/media/dvb/frontends | 27 | EXTRA_CFLAGS += -Idrivers/media/dvb/frontends |
diff --git a/drivers/media/common/tuners/mt20xx.c b/drivers/media/common/tuners/mt20xx.c index fbcb28233737..35b763a16d53 100644 --- a/drivers/media/common/tuners/mt20xx.c +++ b/drivers/media/common/tuners/mt20xx.c | |||
@@ -148,7 +148,8 @@ static int mt2032_compute_freq(struct dvb_frontend *fe, | |||
148 | tuner_dbg("mt2032: rfin=%d lo2=%d lo2n=%d lo2a=%d num=%d lo2freq=%d\n", | 148 | tuner_dbg("mt2032: rfin=%d lo2=%d lo2n=%d lo2a=%d num=%d lo2freq=%d\n", |
149 | rfin,lo2,lo2n,lo2a,lo2num,lo2freq); | 149 | rfin,lo2,lo2n,lo2a,lo2num,lo2freq); |
150 | 150 | ||
151 | if(lo1a<0 || lo1a>7 || lo1n<17 ||lo1n>48 || lo2a<0 ||lo2a >7 ||lo2n<17 || lo2n>30) { | 151 | if (lo1a > 7 || lo1n < 17 || lo1n > 48 || lo2a > 7 || lo2n < 17 || |
152 | lo2n > 30) { | ||
152 | tuner_info("mt2032: frequency parameters out of range: %d %d %d %d\n", | 153 | tuner_info("mt2032: frequency parameters out of range: %d %d %d %d\n", |
153 | lo1a, lo1n, lo2a,lo2n); | 154 | lo1a, lo1n, lo2a,lo2n); |
154 | return(-1); | 155 | return(-1); |
diff --git a/drivers/media/common/tuners/mxl5007t.c b/drivers/media/common/tuners/mxl5007t.c new file mode 100644 index 000000000000..cb25e43502fe --- /dev/null +++ b/drivers/media/common/tuners/mxl5007t.c | |||
@@ -0,0 +1,1030 @@ | |||
1 | /* | ||
2 | * mxl5007t.c - driver for the MaxLinear MxL5007T silicon tuner | ||
3 | * | ||
4 | * Copyright (C) 2008 Michael Krufky <mkrufky@linuxtv.org> | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify | ||
7 | * it under the terms of the GNU General Public License as published by | ||
8 | * the Free Software Foundation; either version 2 of the License, or | ||
9 | * (at your option) any later version. | ||
10 | * | ||
11 | * This program is distributed in the hope that it will be useful, | ||
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
14 | * GNU General Public License for more details. | ||
15 | * | ||
16 | * You should have received a copy of the GNU General Public License | ||
17 | * along with this program; if not, write to the Free Software | ||
18 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
19 | */ | ||
20 | |||
21 | #include <linux/i2c.h> | ||
22 | #include <linux/types.h> | ||
23 | #include <linux/videodev2.h> | ||
24 | #include "tuner-i2c.h" | ||
25 | #include "mxl5007t.h" | ||
26 | |||
27 | static DEFINE_MUTEX(mxl5007t_list_mutex); | ||
28 | static LIST_HEAD(hybrid_tuner_instance_list); | ||
29 | |||
30 | static int mxl5007t_debug; | ||
31 | module_param_named(debug, mxl5007t_debug, int, 0644); | ||
32 | MODULE_PARM_DESC(debug, "set debug level"); | ||
33 | |||
34 | /* ------------------------------------------------------------------------- */ | ||
35 | |||
36 | #define mxl_printk(kern, fmt, arg...) \ | ||
37 | printk(kern "%s: " fmt "\n", __func__, ##arg) | ||
38 | |||
39 | #define mxl_err(fmt, arg...) \ | ||
40 | mxl_printk(KERN_ERR, "%d: " fmt, __LINE__, ##arg) | ||
41 | |||
42 | #define mxl_warn(fmt, arg...) \ | ||
43 | mxl_printk(KERN_WARNING, fmt, ##arg) | ||
44 | |||
45 | #define mxl_info(fmt, arg...) \ | ||
46 | mxl_printk(KERN_INFO, fmt, ##arg) | ||
47 | |||
48 | #define mxl_debug(fmt, arg...) \ | ||
49 | ({ \ | ||
50 | if (mxl5007t_debug) \ | ||
51 | mxl_printk(KERN_DEBUG, fmt, ##arg); \ | ||
52 | }) | ||
53 | |||
54 | #define mxl_fail(ret) \ | ||
55 | ({ \ | ||
56 | int __ret; \ | ||
57 | __ret = (ret < 0); \ | ||
58 | if (__ret) \ | ||
59 | mxl_printk(KERN_ERR, "error %d on line %d", \ | ||
60 | ret, __LINE__); \ | ||
61 | __ret; \ | ||
62 | }) | ||
63 | |||
64 | /* ------------------------------------------------------------------------- */ | ||
65 | |||
66 | #define MHz 1000000 | ||
67 | |||
68 | enum mxl5007t_mode { | ||
69 | MxL_MODE_OTA_DVBT_ATSC = 0, | ||
70 | MxL_MODE_OTA_NTSC_PAL_GH = 1, | ||
71 | MxL_MODE_OTA_PAL_IB = 2, | ||
72 | MxL_MODE_OTA_PAL_D_SECAM_KL = 3, | ||
73 | MxL_MODE_OTA_ISDBT = 4, | ||
74 | MxL_MODE_CABLE_DIGITAL = 0x10, | ||
75 | MxL_MODE_CABLE_NTSC_PAL_GH = 0x11, | ||
76 | MxL_MODE_CABLE_PAL_IB = 0x12, | ||
77 | MxL_MODE_CABLE_PAL_D_SECAM_KL = 0x13, | ||
78 | MxL_MODE_CABLE_SCTE40 = 0x14, | ||
79 | }; | ||
80 | |||
81 | enum mxl5007t_chip_version { | ||
82 | MxL_UNKNOWN_ID = 0x00, | ||
83 | MxL_5007_V1_F1 = 0x11, | ||
84 | MxL_5007_V1_F2 = 0x12, | ||
85 | MxL_5007_V2_100_F1 = 0x21, | ||
86 | MxL_5007_V2_100_F2 = 0x22, | ||
87 | MxL_5007_V2_200_F1 = 0x23, | ||
88 | MxL_5007_V2_200_F2 = 0x24, | ||
89 | }; | ||
90 | |||
91 | struct reg_pair_t { | ||
92 | u8 reg; | ||
93 | u8 val; | ||
94 | }; | ||
95 | |||
96 | /* ------------------------------------------------------------------------- */ | ||
97 | |||
98 | static struct reg_pair_t init_tab[] = { | ||
99 | { 0x0b, 0x44 }, /* XTAL */ | ||
100 | { 0x0c, 0x60 }, /* IF */ | ||
101 | { 0x10, 0x00 }, /* MISC */ | ||
102 | { 0x12, 0xca }, /* IDAC */ | ||
103 | { 0x16, 0x90 }, /* MODE */ | ||
104 | { 0x32, 0x38 }, /* MODE Analog/Digital */ | ||
105 | { 0xd8, 0x18 }, /* CLK_OUT_ENABLE */ | ||
106 | { 0x2c, 0x34 }, /* OVERRIDE */ | ||
107 | { 0x4d, 0x40 }, /* OVERRIDE */ | ||
108 | { 0x7f, 0x02 }, /* OVERRIDE */ | ||
109 | { 0x9a, 0x52 }, /* OVERRIDE */ | ||
110 | { 0x48, 0x5a }, /* OVERRIDE */ | ||
111 | { 0x76, 0x1a }, /* OVERRIDE */ | ||
112 | { 0x6a, 0x48 }, /* OVERRIDE */ | ||
113 | { 0x64, 0x28 }, /* OVERRIDE */ | ||
114 | { 0x66, 0xe6 }, /* OVERRIDE */ | ||
115 | { 0x35, 0x0e }, /* OVERRIDE */ | ||
116 | { 0x7e, 0x01 }, /* OVERRIDE */ | ||
117 | { 0x83, 0x00 }, /* OVERRIDE */ | ||
118 | { 0x04, 0x0b }, /* OVERRIDE */ | ||
119 | { 0x05, 0x01 }, /* TOP_MASTER_ENABLE */ | ||
120 | { 0, 0 } | ||
121 | }; | ||
122 | |||
123 | static struct reg_pair_t init_tab_cable[] = { | ||
124 | { 0x0b, 0x44 }, /* XTAL */ | ||
125 | { 0x0c, 0x60 }, /* IF */ | ||
126 | { 0x10, 0x00 }, /* MISC */ | ||
127 | { 0x12, 0xca }, /* IDAC */ | ||
128 | { 0x16, 0x90 }, /* MODE */ | ||
129 | { 0x32, 0x38 }, /* MODE A/D */ | ||
130 | { 0x71, 0x3f }, /* TOP1 */ | ||
131 | { 0x72, 0x3f }, /* TOP2 */ | ||
132 | { 0x74, 0x3f }, /* TOP3 */ | ||
133 | { 0xd8, 0x18 }, /* CLK_OUT_ENABLE */ | ||
134 | { 0x2c, 0x34 }, /* OVERRIDE */ | ||
135 | { 0x4d, 0x40 }, /* OVERRIDE */ | ||
136 | { 0x7f, 0x02 }, /* OVERRIDE */ | ||
137 | { 0x9a, 0x52 }, /* OVERRIDE */ | ||
138 | { 0x48, 0x5a }, /* OVERRIDE */ | ||
139 | { 0x76, 0x1a }, /* OVERRIDE */ | ||
140 | { 0x6a, 0x48 }, /* OVERRIDE */ | ||
141 | { 0x64, 0x28 }, /* OVERRIDE */ | ||
142 | { 0x66, 0xe6 }, /* OVERRIDE */ | ||
143 | { 0x35, 0x0e }, /* OVERRIDE */ | ||
144 | { 0x7e, 0x01 }, /* OVERRIDE */ | ||
145 | { 0x04, 0x0b }, /* OVERRIDE */ | ||
146 | { 0x68, 0xb4 }, /* OVERRIDE */ | ||
147 | { 0x36, 0x00 }, /* OVERRIDE */ | ||
148 | { 0x05, 0x01 }, /* TOP_MASTER_ENABLE */ | ||
149 | { 0, 0 } | ||
150 | }; | ||
151 | |||
152 | /* ------------------------------------------------------------------------- */ | ||
153 | |||
154 | static struct reg_pair_t reg_pair_rftune[] = { | ||
155 | { 0x11, 0x00 }, /* abort tune */ | ||
156 | { 0x13, 0x15 }, | ||
157 | { 0x14, 0x40 }, | ||
158 | { 0x15, 0x0e }, | ||
159 | { 0x11, 0x02 }, /* start tune */ | ||
160 | { 0, 0 } | ||
161 | }; | ||
162 | |||
163 | /* ------------------------------------------------------------------------- */ | ||
164 | |||
165 | struct mxl5007t_state { | ||
166 | struct list_head hybrid_tuner_instance_list; | ||
167 | struct tuner_i2c_props i2c_props; | ||
168 | |||
169 | struct mutex lock; | ||
170 | |||
171 | struct mxl5007t_config *config; | ||
172 | |||
173 | enum mxl5007t_chip_version chip_id; | ||
174 | |||
175 | struct reg_pair_t tab_init[ARRAY_SIZE(init_tab)]; | ||
176 | struct reg_pair_t tab_init_cable[ARRAY_SIZE(init_tab_cable)]; | ||
177 | struct reg_pair_t tab_rftune[ARRAY_SIZE(reg_pair_rftune)]; | ||
178 | |||
179 | u32 frequency; | ||
180 | u32 bandwidth; | ||
181 | }; | ||
182 | |||
183 | /* ------------------------------------------------------------------------- */ | ||
184 | |||
185 | /* called by _init and _rftun to manipulate the register arrays */ | ||
186 | |||
187 | static void set_reg_bits(struct reg_pair_t *reg_pair, u8 reg, u8 mask, u8 val) | ||
188 | { | ||
189 | unsigned int i = 0; | ||
190 | |||
191 | while (reg_pair[i].reg || reg_pair[i].val) { | ||
192 | if (reg_pair[i].reg == reg) { | ||
193 | reg_pair[i].val &= ~mask; | ||
194 | reg_pair[i].val |= val; | ||
195 | } | ||
196 | i++; | ||
197 | |||
198 | } | ||
199 | return; | ||
200 | } | ||
201 | |||
202 | static void copy_reg_bits(struct reg_pair_t *reg_pair1, | ||
203 | struct reg_pair_t *reg_pair2) | ||
204 | { | ||
205 | unsigned int i, j; | ||
206 | |||
207 | i = j = 0; | ||
208 | |||
209 | while (reg_pair1[i].reg || reg_pair1[i].val) { | ||
210 | while (reg_pair2[j].reg || reg_pair2[j].reg) { | ||
211 | if (reg_pair1[i].reg != reg_pair2[j].reg) { | ||
212 | j++; | ||
213 | continue; | ||
214 | } | ||
215 | reg_pair2[j].val = reg_pair1[i].val; | ||
216 | break; | ||
217 | } | ||
218 | i++; | ||
219 | } | ||
220 | return; | ||
221 | } | ||
222 | |||
223 | /* ------------------------------------------------------------------------- */ | ||
224 | |||
225 | static void mxl5007t_set_mode_bits(struct mxl5007t_state *state, | ||
226 | enum mxl5007t_mode mode, | ||
227 | s32 if_diff_out_level) | ||
228 | { | ||
229 | switch (mode) { | ||
230 | case MxL_MODE_OTA_DVBT_ATSC: | ||
231 | set_reg_bits(state->tab_init, 0x32, 0x0f, 0x06); | ||
232 | set_reg_bits(state->tab_init, 0x35, 0xff, 0x0e); | ||
233 | break; | ||
234 | case MxL_MODE_OTA_ISDBT: | ||
235 | set_reg_bits(state->tab_init, 0x32, 0x0f, 0x06); | ||
236 | set_reg_bits(state->tab_init, 0x35, 0xff, 0x12); | ||
237 | break; | ||
238 | case MxL_MODE_OTA_NTSC_PAL_GH: | ||
239 | set_reg_bits(state->tab_init, 0x16, 0x70, 0x00); | ||
240 | set_reg_bits(state->tab_init, 0x32, 0xff, 0x85); | ||
241 | break; | ||
242 | case MxL_MODE_OTA_PAL_IB: | ||
243 | set_reg_bits(state->tab_init, 0x16, 0x70, 0x10); | ||
244 | set_reg_bits(state->tab_init, 0x32, 0xff, 0x85); | ||
245 | break; | ||
246 | case MxL_MODE_OTA_PAL_D_SECAM_KL: | ||
247 | set_reg_bits(state->tab_init, 0x16, 0x70, 0x20); | ||
248 | set_reg_bits(state->tab_init, 0x32, 0xff, 0x85); | ||
249 | break; | ||
250 | case MxL_MODE_CABLE_DIGITAL: | ||
251 | set_reg_bits(state->tab_init_cable, 0x71, 0xff, 0x01); | ||
252 | set_reg_bits(state->tab_init_cable, 0x72, 0xff, | ||
253 | 8 - if_diff_out_level); | ||
254 | set_reg_bits(state->tab_init_cable, 0x74, 0xff, 0x17); | ||
255 | break; | ||
256 | case MxL_MODE_CABLE_NTSC_PAL_GH: | ||
257 | set_reg_bits(state->tab_init, 0x16, 0x70, 0x00); | ||
258 | set_reg_bits(state->tab_init, 0x32, 0xff, 0x85); | ||
259 | set_reg_bits(state->tab_init_cable, 0x71, 0xff, 0x01); | ||
260 | set_reg_bits(state->tab_init_cable, 0x72, 0xff, | ||
261 | 8 - if_diff_out_level); | ||
262 | set_reg_bits(state->tab_init_cable, 0x74, 0xff, 0x17); | ||
263 | break; | ||
264 | case MxL_MODE_CABLE_PAL_IB: | ||
265 | set_reg_bits(state->tab_init, 0x16, 0x70, 0x10); | ||
266 | set_reg_bits(state->tab_init, 0x32, 0xff, 0x85); | ||
267 | set_reg_bits(state->tab_init_cable, 0x71, 0xff, 0x01); | ||
268 | set_reg_bits(state->tab_init_cable, 0x72, 0xff, | ||
269 | 8 - if_diff_out_level); | ||
270 | set_reg_bits(state->tab_init_cable, 0x74, 0xff, 0x17); | ||
271 | break; | ||
272 | case MxL_MODE_CABLE_PAL_D_SECAM_KL: | ||
273 | set_reg_bits(state->tab_init, 0x16, 0x70, 0x20); | ||
274 | set_reg_bits(state->tab_init, 0x32, 0xff, 0x85); | ||
275 | set_reg_bits(state->tab_init_cable, 0x71, 0xff, 0x01); | ||
276 | set_reg_bits(state->tab_init_cable, 0x72, 0xff, | ||
277 | 8 - if_diff_out_level); | ||
278 | set_reg_bits(state->tab_init_cable, 0x74, 0xff, 0x17); | ||
279 | break; | ||
280 | case MxL_MODE_CABLE_SCTE40: | ||
281 | set_reg_bits(state->tab_init_cable, 0x36, 0xff, 0x08); | ||
282 | set_reg_bits(state->tab_init_cable, 0x68, 0xff, 0xbc); | ||
283 | set_reg_bits(state->tab_init_cable, 0x71, 0xff, 0x01); | ||
284 | set_reg_bits(state->tab_init_cable, 0x72, 0xff, | ||
285 | 8 - if_diff_out_level); | ||
286 | set_reg_bits(state->tab_init_cable, 0x74, 0xff, 0x17); | ||
287 | break; | ||
288 | default: | ||
289 | mxl_fail(-EINVAL); | ||
290 | } | ||
291 | return; | ||
292 | } | ||
293 | |||
294 | static void mxl5007t_set_if_freq_bits(struct mxl5007t_state *state, | ||
295 | enum mxl5007t_if_freq if_freq, | ||
296 | int invert_if) | ||
297 | { | ||
298 | u8 val; | ||
299 | |||
300 | switch (if_freq) { | ||
301 | case MxL_IF_4_MHZ: | ||
302 | val = 0x00; | ||
303 | break; | ||
304 | case MxL_IF_4_5_MHZ: | ||
305 | val = 0x20; | ||
306 | break; | ||
307 | case MxL_IF_4_57_MHZ: | ||
308 | val = 0x30; | ||
309 | break; | ||
310 | case MxL_IF_5_MHZ: | ||
311 | val = 0x40; | ||
312 | break; | ||
313 | case MxL_IF_5_38_MHZ: | ||
314 | val = 0x50; | ||
315 | break; | ||
316 | case MxL_IF_6_MHZ: | ||
317 | val = 0x60; | ||
318 | break; | ||
319 | case MxL_IF_6_28_MHZ: | ||
320 | val = 0x70; | ||
321 | break; | ||
322 | case MxL_IF_9_1915_MHZ: | ||
323 | val = 0x80; | ||
324 | break; | ||
325 | case MxL_IF_35_25_MHZ: | ||
326 | val = 0x90; | ||
327 | break; | ||
328 | case MxL_IF_36_15_MHZ: | ||
329 | val = 0xa0; | ||
330 | break; | ||
331 | case MxL_IF_44_MHZ: | ||
332 | val = 0xb0; | ||
333 | break; | ||
334 | default: | ||
335 | mxl_fail(-EINVAL); | ||
336 | return; | ||
337 | } | ||
338 | set_reg_bits(state->tab_init, 0x0c, 0xf0, val); | ||
339 | |||
340 | /* set inverted IF or normal IF */ | ||
341 | set_reg_bits(state->tab_init, 0x0c, 0x08, invert_if ? 0x08 : 0x00); | ||
342 | |||
343 | return; | ||
344 | } | ||
345 | |||
346 | static void mxl5007t_set_xtal_freq_bits(struct mxl5007t_state *state, | ||
347 | enum mxl5007t_xtal_freq xtal_freq) | ||
348 | { | ||
349 | u8 val; | ||
350 | |||
351 | switch (xtal_freq) { | ||
352 | case MxL_XTAL_16_MHZ: | ||
353 | val = 0x00; /* select xtal freq & Ref Freq */ | ||
354 | break; | ||
355 | case MxL_XTAL_20_MHZ: | ||
356 | val = 0x11; | ||
357 | break; | ||
358 | case MxL_XTAL_20_25_MHZ: | ||
359 | val = 0x22; | ||
360 | break; | ||
361 | case MxL_XTAL_20_48_MHZ: | ||
362 | val = 0x33; | ||
363 | break; | ||
364 | case MxL_XTAL_24_MHZ: | ||
365 | val = 0x44; | ||
366 | break; | ||
367 | case MxL_XTAL_25_MHZ: | ||
368 | val = 0x55; | ||
369 | break; | ||
370 | case MxL_XTAL_25_14_MHZ: | ||
371 | val = 0x66; | ||
372 | break; | ||
373 | case MxL_XTAL_27_MHZ: | ||
374 | val = 0x77; | ||
375 | break; | ||
376 | case MxL_XTAL_28_8_MHZ: | ||
377 | val = 0x88; | ||
378 | break; | ||
379 | case MxL_XTAL_32_MHZ: | ||
380 | val = 0x99; | ||
381 | break; | ||
382 | case MxL_XTAL_40_MHZ: | ||
383 | val = 0xaa; | ||
384 | break; | ||
385 | case MxL_XTAL_44_MHZ: | ||
386 | val = 0xbb; | ||
387 | break; | ||
388 | case MxL_XTAL_48_MHZ: | ||
389 | val = 0xcc; | ||
390 | break; | ||
391 | case MxL_XTAL_49_3811_MHZ: | ||
392 | val = 0xdd; | ||
393 | break; | ||
394 | default: | ||
395 | mxl_fail(-EINVAL); | ||
396 | return; | ||
397 | } | ||
398 | set_reg_bits(state->tab_init, 0x0b, 0xff, val); | ||
399 | |||
400 | return; | ||
401 | } | ||
402 | |||
403 | static struct reg_pair_t *mxl5007t_calc_init_regs(struct mxl5007t_state *state, | ||
404 | enum mxl5007t_mode mode) | ||
405 | { | ||
406 | struct mxl5007t_config *cfg = state->config; | ||
407 | |||
408 | memcpy(&state->tab_init, &init_tab, sizeof(init_tab)); | ||
409 | memcpy(&state->tab_init_cable, &init_tab_cable, sizeof(init_tab_cable)); | ||
410 | |||
411 | mxl5007t_set_mode_bits(state, mode, cfg->if_diff_out_level); | ||
412 | mxl5007t_set_if_freq_bits(state, cfg->if_freq_hz, cfg->invert_if); | ||
413 | mxl5007t_set_xtal_freq_bits(state, cfg->xtal_freq_hz); | ||
414 | |||
415 | set_reg_bits(state->tab_init, 0x10, 0x40, cfg->loop_thru_enable << 6); | ||
416 | |||
417 | set_reg_bits(state->tab_init, 0xd8, 0x08, cfg->clk_out_enable << 3); | ||
418 | |||
419 | set_reg_bits(state->tab_init, 0x10, 0x07, cfg->clk_out_amp); | ||
420 | |||
421 | /* set IDAC to automatic mode control by AGC */ | ||
422 | set_reg_bits(state->tab_init, 0x12, 0x80, 0x00); | ||
423 | |||
424 | if (mode >= MxL_MODE_CABLE_DIGITAL) { | ||
425 | copy_reg_bits(state->tab_init, state->tab_init_cable); | ||
426 | return state->tab_init_cable; | ||
427 | } else | ||
428 | return state->tab_init; | ||
429 | } | ||
430 | |||
431 | /* ------------------------------------------------------------------------- */ | ||
432 | |||
433 | enum mxl5007t_bw_mhz { | ||
434 | MxL_BW_6MHz = 6, | ||
435 | MxL_BW_7MHz = 7, | ||
436 | MxL_BW_8MHz = 8, | ||
437 | }; | ||
438 | |||
439 | static void mxl5007t_set_bw_bits(struct mxl5007t_state *state, | ||
440 | enum mxl5007t_bw_mhz bw) | ||
441 | { | ||
442 | u8 val; | ||
443 | |||
444 | switch (bw) { | ||
445 | case MxL_BW_6MHz: | ||
446 | val = 0x15; /* set DIG_MODEINDEX, DIG_MODEINDEX_A, | ||
447 | * and DIG_MODEINDEX_CSF */ | ||
448 | break; | ||
449 | case MxL_BW_7MHz: | ||
450 | val = 0x21; | ||
451 | break; | ||
452 | case MxL_BW_8MHz: | ||
453 | val = 0x3f; | ||
454 | break; | ||
455 | default: | ||
456 | mxl_fail(-EINVAL); | ||
457 | return; | ||
458 | } | ||
459 | set_reg_bits(state->tab_rftune, 0x13, 0x3f, val); | ||
460 | |||
461 | return; | ||
462 | } | ||
463 | |||
464 | static struct | ||
465 | reg_pair_t *mxl5007t_calc_rf_tune_regs(struct mxl5007t_state *state, | ||
466 | u32 rf_freq, enum mxl5007t_bw_mhz bw) | ||
467 | { | ||
468 | u32 dig_rf_freq = 0; | ||
469 | u32 temp; | ||
470 | u32 frac_divider = 1000000; | ||
471 | unsigned int i; | ||
472 | |||
473 | memcpy(&state->tab_rftune, ®_pair_rftune, sizeof(reg_pair_rftune)); | ||
474 | |||
475 | mxl5007t_set_bw_bits(state, bw); | ||
476 | |||
477 | /* Convert RF frequency into 16 bits => | ||
478 | * 10 bit integer (MHz) + 6 bit fraction */ | ||
479 | dig_rf_freq = rf_freq / MHz; | ||
480 | |||
481 | temp = rf_freq % MHz; | ||
482 | |||
483 | for (i = 0; i < 6; i++) { | ||
484 | dig_rf_freq <<= 1; | ||
485 | frac_divider /= 2; | ||
486 | if (temp > frac_divider) { | ||
487 | temp -= frac_divider; | ||
488 | dig_rf_freq++; | ||
489 | } | ||
490 | } | ||
491 | |||
492 | /* add to have shift center point by 7.8124 kHz */ | ||
493 | if (temp > 7812) | ||
494 | dig_rf_freq++; | ||
495 | |||
496 | set_reg_bits(state->tab_rftune, 0x14, 0xff, (u8)dig_rf_freq); | ||
497 | set_reg_bits(state->tab_rftune, 0x15, 0xff, (u8)(dig_rf_freq >> 8)); | ||
498 | |||
499 | return state->tab_rftune; | ||
500 | } | ||
501 | |||
502 | /* ------------------------------------------------------------------------- */ | ||
503 | |||
504 | static int mxl5007t_write_reg(struct mxl5007t_state *state, u8 reg, u8 val) | ||
505 | { | ||
506 | u8 buf[] = { reg, val }; | ||
507 | struct i2c_msg msg = { .addr = state->i2c_props.addr, .flags = 0, | ||
508 | .buf = buf, .len = 2 }; | ||
509 | int ret; | ||
510 | |||
511 | ret = i2c_transfer(state->i2c_props.adap, &msg, 1); | ||
512 | if (ret != 1) { | ||
513 | mxl_err("failed!"); | ||
514 | return -EREMOTEIO; | ||
515 | } | ||
516 | return 0; | ||
517 | } | ||
518 | |||
519 | static int mxl5007t_write_regs(struct mxl5007t_state *state, | ||
520 | struct reg_pair_t *reg_pair) | ||
521 | { | ||
522 | unsigned int i = 0; | ||
523 | int ret = 0; | ||
524 | |||
525 | while ((ret == 0) && (reg_pair[i].reg || reg_pair[i].val)) { | ||
526 | ret = mxl5007t_write_reg(state, | ||
527 | reg_pair[i].reg, reg_pair[i].val); | ||
528 | i++; | ||
529 | } | ||
530 | return ret; | ||
531 | } | ||
532 | |||
533 | static int mxl5007t_read_reg(struct mxl5007t_state *state, u8 reg, u8 *val) | ||
534 | { | ||
535 | struct i2c_msg msg[] = { | ||
536 | { .addr = state->i2c_props.addr, .flags = 0, | ||
537 | .buf = ®, .len = 1 }, | ||
538 | { .addr = state->i2c_props.addr, .flags = I2C_M_RD, | ||
539 | .buf = val, .len = 1 }, | ||
540 | }; | ||
541 | int ret; | ||
542 | |||
543 | ret = i2c_transfer(state->i2c_props.adap, msg, 2); | ||
544 | if (ret != 2) { | ||
545 | mxl_err("failed!"); | ||
546 | return -EREMOTEIO; | ||
547 | } | ||
548 | return 0; | ||
549 | } | ||
550 | |||
551 | static int mxl5007t_soft_reset(struct mxl5007t_state *state) | ||
552 | { | ||
553 | u8 d = 0xff; | ||
554 | struct i2c_msg msg = { .addr = state->i2c_props.addr, .flags = 0, | ||
555 | .buf = &d, .len = 1 }; | ||
556 | |||
557 | int ret = i2c_transfer(state->i2c_props.adap, &msg, 1); | ||
558 | |||
559 | if (ret != 1) { | ||
560 | mxl_err("failed!"); | ||
561 | return -EREMOTEIO; | ||
562 | } | ||
563 | return 0; | ||
564 | } | ||
565 | |||
566 | static int mxl5007t_tuner_init(struct mxl5007t_state *state, | ||
567 | enum mxl5007t_mode mode) | ||
568 | { | ||
569 | struct reg_pair_t *init_regs; | ||
570 | int ret; | ||
571 | |||
572 | ret = mxl5007t_soft_reset(state); | ||
573 | if (mxl_fail(ret)) | ||
574 | goto fail; | ||
575 | |||
576 | /* calculate initialization reg array */ | ||
577 | init_regs = mxl5007t_calc_init_regs(state, mode); | ||
578 | |||
579 | ret = mxl5007t_write_regs(state, init_regs); | ||
580 | if (mxl_fail(ret)) | ||
581 | goto fail; | ||
582 | mdelay(1); | ||
583 | |||
584 | ret = mxl5007t_write_reg(state, 0x2c, 0x35); | ||
585 | mxl_fail(ret); | ||
586 | fail: | ||
587 | return ret; | ||
588 | } | ||
589 | |||
590 | static int mxl5007t_tuner_rf_tune(struct mxl5007t_state *state, u32 rf_freq_hz, | ||
591 | enum mxl5007t_bw_mhz bw) | ||
592 | { | ||
593 | struct reg_pair_t *rf_tune_regs; | ||
594 | int ret; | ||
595 | |||
596 | /* calculate channel change reg array */ | ||
597 | rf_tune_regs = mxl5007t_calc_rf_tune_regs(state, rf_freq_hz, bw); | ||
598 | |||
599 | ret = mxl5007t_write_regs(state, rf_tune_regs); | ||
600 | if (mxl_fail(ret)) | ||
601 | goto fail; | ||
602 | msleep(3); | ||
603 | fail: | ||
604 | return ret; | ||
605 | } | ||
606 | |||
607 | /* ------------------------------------------------------------------------- */ | ||
608 | |||
609 | static int mxl5007t_synth_lock_status(struct mxl5007t_state *state, | ||
610 | int *rf_locked, int *ref_locked) | ||
611 | { | ||
612 | u8 d; | ||
613 | int ret; | ||
614 | |||
615 | *rf_locked = 0; | ||
616 | *ref_locked = 0; | ||
617 | |||
618 | ret = mxl5007t_read_reg(state, 0xcf, &d); | ||
619 | if (mxl_fail(ret)) | ||
620 | goto fail; | ||
621 | |||
622 | if ((d & 0x0c) == 0x0c) | ||
623 | *rf_locked = 1; | ||
624 | |||
625 | if ((d & 0x03) == 0x03) | ||
626 | *ref_locked = 1; | ||
627 | fail: | ||
628 | return ret; | ||
629 | } | ||
630 | |||
631 | static int mxl5007t_check_rf_input_power(struct mxl5007t_state *state, | ||
632 | s32 *rf_input_level) | ||
633 | { | ||
634 | u8 d1, d2; | ||
635 | int ret; | ||
636 | |||
637 | ret = mxl5007t_read_reg(state, 0xb7, &d1); | ||
638 | if (mxl_fail(ret)) | ||
639 | goto fail; | ||
640 | |||
641 | ret = mxl5007t_read_reg(state, 0xbf, &d2); | ||
642 | if (mxl_fail(ret)) | ||
643 | goto fail; | ||
644 | |||
645 | d2 = d2 >> 4; | ||
646 | if (d2 > 7) | ||
647 | d2 += 0xf0; | ||
648 | |||
649 | *rf_input_level = (s32)(d1 + d2 - 113); | ||
650 | fail: | ||
651 | return ret; | ||
652 | } | ||
653 | |||
654 | /* ------------------------------------------------------------------------- */ | ||
655 | |||
656 | static int mxl5007t_get_status(struct dvb_frontend *fe, u32 *status) | ||
657 | { | ||
658 | struct mxl5007t_state *state = fe->tuner_priv; | ||
659 | int rf_locked, ref_locked; | ||
660 | s32 rf_input_level; | ||
661 | int ret; | ||
662 | |||
663 | if (fe->ops.i2c_gate_ctrl) | ||
664 | fe->ops.i2c_gate_ctrl(fe, 1); | ||
665 | |||
666 | ret = mxl5007t_synth_lock_status(state, &rf_locked, &ref_locked); | ||
667 | if (mxl_fail(ret)) | ||
668 | goto fail; | ||
669 | mxl_debug("%s%s", rf_locked ? "rf locked " : "", | ||
670 | ref_locked ? "ref locked" : ""); | ||
671 | |||
672 | ret = mxl5007t_check_rf_input_power(state, &rf_input_level); | ||
673 | if (mxl_fail(ret)) | ||
674 | goto fail; | ||
675 | mxl_debug("rf input power: %d", rf_input_level); | ||
676 | fail: | ||
677 | if (fe->ops.i2c_gate_ctrl) | ||
678 | fe->ops.i2c_gate_ctrl(fe, 0); | ||
679 | |||
680 | return ret; | ||
681 | } | ||
682 | |||
683 | /* ------------------------------------------------------------------------- */ | ||
684 | |||
685 | static int mxl5007t_set_params(struct dvb_frontend *fe, | ||
686 | struct dvb_frontend_parameters *params) | ||
687 | { | ||
688 | struct mxl5007t_state *state = fe->tuner_priv; | ||
689 | enum mxl5007t_bw_mhz bw; | ||
690 | enum mxl5007t_mode mode; | ||
691 | int ret; | ||
692 | u32 freq = params->frequency; | ||
693 | |||
694 | if (fe->ops.info.type == FE_ATSC) { | ||
695 | switch (params->u.vsb.modulation) { | ||
696 | case VSB_8: | ||
697 | case VSB_16: | ||
698 | mode = MxL_MODE_OTA_DVBT_ATSC; | ||
699 | break; | ||
700 | case QAM_64: | ||
701 | case QAM_256: | ||
702 | mode = MxL_MODE_CABLE_DIGITAL; | ||
703 | break; | ||
704 | default: | ||
705 | mxl_err("modulation not set!"); | ||
706 | return -EINVAL; | ||
707 | } | ||
708 | bw = MxL_BW_6MHz; | ||
709 | } else if (fe->ops.info.type == FE_OFDM) { | ||
710 | switch (params->u.ofdm.bandwidth) { | ||
711 | case BANDWIDTH_6_MHZ: | ||
712 | bw = MxL_BW_6MHz; | ||
713 | break; | ||
714 | case BANDWIDTH_7_MHZ: | ||
715 | bw = MxL_BW_7MHz; | ||
716 | break; | ||
717 | case BANDWIDTH_8_MHZ: | ||
718 | bw = MxL_BW_8MHz; | ||
719 | break; | ||
720 | default: | ||
721 | mxl_err("bandwidth not set!"); | ||
722 | return -EINVAL; | ||
723 | } | ||
724 | mode = MxL_MODE_OTA_DVBT_ATSC; | ||
725 | } else { | ||
726 | mxl_err("modulation type not supported!"); | ||
727 | return -EINVAL; | ||
728 | } | ||
729 | |||
730 | if (fe->ops.i2c_gate_ctrl) | ||
731 | fe->ops.i2c_gate_ctrl(fe, 1); | ||
732 | |||
733 | mutex_lock(&state->lock); | ||
734 | |||
735 | ret = mxl5007t_tuner_init(state, mode); | ||
736 | if (mxl_fail(ret)) | ||
737 | goto fail; | ||
738 | |||
739 | ret = mxl5007t_tuner_rf_tune(state, freq, bw); | ||
740 | if (mxl_fail(ret)) | ||
741 | goto fail; | ||
742 | |||
743 | state->frequency = freq; | ||
744 | state->bandwidth = (fe->ops.info.type == FE_OFDM) ? | ||
745 | params->u.ofdm.bandwidth : 0; | ||
746 | fail: | ||
747 | mutex_unlock(&state->lock); | ||
748 | |||
749 | if (fe->ops.i2c_gate_ctrl) | ||
750 | fe->ops.i2c_gate_ctrl(fe, 0); | ||
751 | |||
752 | return ret; | ||
753 | } | ||
754 | |||
755 | static int mxl5007t_set_analog_params(struct dvb_frontend *fe, | ||
756 | struct analog_parameters *params) | ||
757 | { | ||
758 | struct mxl5007t_state *state = fe->tuner_priv; | ||
759 | enum mxl5007t_bw_mhz bw = 0; /* FIXME */ | ||
760 | enum mxl5007t_mode cbl_mode; | ||
761 | enum mxl5007t_mode ota_mode; | ||
762 | char *mode_name; | ||
763 | int ret; | ||
764 | u32 freq = params->frequency * 62500; | ||
765 | |||
766 | #define cable 1 | ||
767 | if (params->std & V4L2_STD_MN) { | ||
768 | cbl_mode = MxL_MODE_CABLE_NTSC_PAL_GH; | ||
769 | ota_mode = MxL_MODE_OTA_NTSC_PAL_GH; | ||
770 | mode_name = "MN"; | ||
771 | } else if (params->std & V4L2_STD_B) { | ||
772 | cbl_mode = MxL_MODE_CABLE_PAL_IB; | ||
773 | ota_mode = MxL_MODE_OTA_PAL_IB; | ||
774 | mode_name = "B"; | ||
775 | } else if (params->std & V4L2_STD_GH) { | ||
776 | cbl_mode = MxL_MODE_CABLE_NTSC_PAL_GH; | ||
777 | ota_mode = MxL_MODE_OTA_NTSC_PAL_GH; | ||
778 | mode_name = "GH"; | ||
779 | } else if (params->std & V4L2_STD_PAL_I) { | ||
780 | cbl_mode = MxL_MODE_CABLE_PAL_IB; | ||
781 | ota_mode = MxL_MODE_OTA_PAL_IB; | ||
782 | mode_name = "I"; | ||
783 | } else if (params->std & V4L2_STD_DK) { | ||
784 | cbl_mode = MxL_MODE_CABLE_PAL_D_SECAM_KL; | ||
785 | ota_mode = MxL_MODE_OTA_PAL_D_SECAM_KL; | ||
786 | mode_name = "DK"; | ||
787 | } else if (params->std & V4L2_STD_SECAM_L) { | ||
788 | cbl_mode = MxL_MODE_CABLE_PAL_D_SECAM_KL; | ||
789 | ota_mode = MxL_MODE_OTA_PAL_D_SECAM_KL; | ||
790 | mode_name = "L"; | ||
791 | } else if (params->std & V4L2_STD_SECAM_LC) { | ||
792 | cbl_mode = MxL_MODE_CABLE_PAL_D_SECAM_KL; | ||
793 | ota_mode = MxL_MODE_OTA_PAL_D_SECAM_KL; | ||
794 | mode_name = "L'"; | ||
795 | } else { | ||
796 | mode_name = "xx"; | ||
797 | /* FIXME */ | ||
798 | cbl_mode = MxL_MODE_CABLE_NTSC_PAL_GH; | ||
799 | ota_mode = MxL_MODE_OTA_NTSC_PAL_GH; | ||
800 | } | ||
801 | mxl_debug("setting mxl5007 to system %s", mode_name); | ||
802 | |||
803 | if (fe->ops.i2c_gate_ctrl) | ||
804 | fe->ops.i2c_gate_ctrl(fe, 1); | ||
805 | |||
806 | mutex_lock(&state->lock); | ||
807 | |||
808 | ret = mxl5007t_tuner_init(state, cable ? cbl_mode : ota_mode); | ||
809 | if (mxl_fail(ret)) | ||
810 | goto fail; | ||
811 | |||
812 | ret = mxl5007t_tuner_rf_tune(state, freq, bw); | ||
813 | if (mxl_fail(ret)) | ||
814 | goto fail; | ||
815 | |||
816 | state->frequency = freq; | ||
817 | state->bandwidth = 0; | ||
818 | fail: | ||
819 | mutex_unlock(&state->lock); | ||
820 | |||
821 | if (fe->ops.i2c_gate_ctrl) | ||
822 | fe->ops.i2c_gate_ctrl(fe, 0); | ||
823 | |||
824 | return ret; | ||
825 | } | ||
826 | |||
827 | /* ------------------------------------------------------------------------- */ | ||
828 | |||
829 | static int mxl5007t_init(struct dvb_frontend *fe) | ||
830 | { | ||
831 | struct mxl5007t_state *state = fe->tuner_priv; | ||
832 | int ret; | ||
833 | u8 d; | ||
834 | |||
835 | if (fe->ops.i2c_gate_ctrl) | ||
836 | fe->ops.i2c_gate_ctrl(fe, 1); | ||
837 | |||
838 | ret = mxl5007t_read_reg(state, 0x05, &d); | ||
839 | if (mxl_fail(ret)) | ||
840 | goto fail; | ||
841 | |||
842 | ret = mxl5007t_write_reg(state, 0x05, d | 0x01); | ||
843 | mxl_fail(ret); | ||
844 | fail: | ||
845 | if (fe->ops.i2c_gate_ctrl) | ||
846 | fe->ops.i2c_gate_ctrl(fe, 0); | ||
847 | |||
848 | return ret; | ||
849 | } | ||
850 | |||
851 | static int mxl5007t_sleep(struct dvb_frontend *fe) | ||
852 | { | ||
853 | struct mxl5007t_state *state = fe->tuner_priv; | ||
854 | int ret; | ||
855 | u8 d; | ||
856 | |||
857 | if (fe->ops.i2c_gate_ctrl) | ||
858 | fe->ops.i2c_gate_ctrl(fe, 1); | ||
859 | |||
860 | ret = mxl5007t_read_reg(state, 0x05, &d); | ||
861 | if (mxl_fail(ret)) | ||
862 | goto fail; | ||
863 | |||
864 | ret = mxl5007t_write_reg(state, 0x05, d & ~0x01); | ||
865 | mxl_fail(ret); | ||
866 | fail: | ||
867 | if (fe->ops.i2c_gate_ctrl) | ||
868 | fe->ops.i2c_gate_ctrl(fe, 0); | ||
869 | |||
870 | return ret; | ||
871 | } | ||
872 | |||
873 | /* ------------------------------------------------------------------------- */ | ||
874 | |||
875 | static int mxl5007t_get_frequency(struct dvb_frontend *fe, u32 *frequency) | ||
876 | { | ||
877 | struct mxl5007t_state *state = fe->tuner_priv; | ||
878 | *frequency = state->frequency; | ||
879 | return 0; | ||
880 | } | ||
881 | |||
882 | static int mxl5007t_get_bandwidth(struct dvb_frontend *fe, u32 *bandwidth) | ||
883 | { | ||
884 | struct mxl5007t_state *state = fe->tuner_priv; | ||
885 | *bandwidth = state->bandwidth; | ||
886 | return 0; | ||
887 | } | ||
888 | |||
889 | static int mxl5007t_release(struct dvb_frontend *fe) | ||
890 | { | ||
891 | struct mxl5007t_state *state = fe->tuner_priv; | ||
892 | |||
893 | mutex_lock(&mxl5007t_list_mutex); | ||
894 | |||
895 | if (state) | ||
896 | hybrid_tuner_release_state(state); | ||
897 | |||
898 | mutex_unlock(&mxl5007t_list_mutex); | ||
899 | |||
900 | fe->tuner_priv = NULL; | ||
901 | |||
902 | return 0; | ||
903 | } | ||
904 | |||
905 | /* ------------------------------------------------------------------------- */ | ||
906 | |||
907 | static struct dvb_tuner_ops mxl5007t_tuner_ops = { | ||
908 | .info = { | ||
909 | .name = "MaxLinear MxL5007T", | ||
910 | }, | ||
911 | .init = mxl5007t_init, | ||
912 | .sleep = mxl5007t_sleep, | ||
913 | .set_params = mxl5007t_set_params, | ||
914 | .set_analog_params = mxl5007t_set_analog_params, | ||
915 | .get_status = mxl5007t_get_status, | ||
916 | .get_frequency = mxl5007t_get_frequency, | ||
917 | .get_bandwidth = mxl5007t_get_bandwidth, | ||
918 | .release = mxl5007t_release, | ||
919 | }; | ||
920 | |||
921 | static int mxl5007t_get_chip_id(struct mxl5007t_state *state) | ||
922 | { | ||
923 | char *name; | ||
924 | int ret; | ||
925 | u8 id; | ||
926 | |||
927 | ret = mxl5007t_read_reg(state, 0xd3, &id); | ||
928 | if (mxl_fail(ret)) | ||
929 | goto fail; | ||
930 | |||
931 | switch (id) { | ||
932 | case MxL_5007_V1_F1: | ||
933 | name = "MxL5007.v1.f1"; | ||
934 | break; | ||
935 | case MxL_5007_V1_F2: | ||
936 | name = "MxL5007.v1.f2"; | ||
937 | break; | ||
938 | case MxL_5007_V2_100_F1: | ||
939 | name = "MxL5007.v2.100.f1"; | ||
940 | break; | ||
941 | case MxL_5007_V2_100_F2: | ||
942 | name = "MxL5007.v2.100.f2"; | ||
943 | break; | ||
944 | case MxL_5007_V2_200_F1: | ||
945 | name = "MxL5007.v2.200.f1"; | ||
946 | break; | ||
947 | case MxL_5007_V2_200_F2: | ||
948 | name = "MxL5007.v2.200.f2"; | ||
949 | break; | ||
950 | default: | ||
951 | name = "MxL5007T"; | ||
952 | id = MxL_UNKNOWN_ID; | ||
953 | } | ||
954 | state->chip_id = id; | ||
955 | mxl_info("%s detected @ %d-%04x", name, | ||
956 | i2c_adapter_id(state->i2c_props.adap), | ||
957 | state->i2c_props.addr); | ||
958 | return 0; | ||
959 | fail: | ||
960 | mxl_warn("unable to identify device @ %d-%04x", | ||
961 | i2c_adapter_id(state->i2c_props.adap), | ||
962 | state->i2c_props.addr); | ||
963 | |||
964 | state->chip_id = MxL_UNKNOWN_ID; | ||
965 | return ret; | ||
966 | } | ||
967 | |||
968 | struct dvb_frontend *mxl5007t_attach(struct dvb_frontend *fe, | ||
969 | struct i2c_adapter *i2c, u8 addr, | ||
970 | struct mxl5007t_config *cfg) | ||
971 | { | ||
972 | struct mxl5007t_state *state = NULL; | ||
973 | int instance, ret; | ||
974 | |||
975 | mutex_lock(&mxl5007t_list_mutex); | ||
976 | instance = hybrid_tuner_request_state(struct mxl5007t_state, state, | ||
977 | hybrid_tuner_instance_list, | ||
978 | i2c, addr, "mxl5007"); | ||
979 | switch (instance) { | ||
980 | case 0: | ||
981 | goto fail; | ||
982 | break; | ||
983 | case 1: | ||
984 | /* new tuner instance */ | ||
985 | state->config = cfg; | ||
986 | |||
987 | mutex_init(&state->lock); | ||
988 | |||
989 | if (fe->ops.i2c_gate_ctrl) | ||
990 | fe->ops.i2c_gate_ctrl(fe, 1); | ||
991 | |||
992 | ret = mxl5007t_get_chip_id(state); | ||
993 | |||
994 | if (fe->ops.i2c_gate_ctrl) | ||
995 | fe->ops.i2c_gate_ctrl(fe, 0); | ||
996 | |||
997 | /* check return value of mxl5007t_get_chip_id */ | ||
998 | if (mxl_fail(ret)) | ||
999 | goto fail; | ||
1000 | break; | ||
1001 | default: | ||
1002 | /* existing tuner instance */ | ||
1003 | break; | ||
1004 | } | ||
1005 | fe->tuner_priv = state; | ||
1006 | mutex_unlock(&mxl5007t_list_mutex); | ||
1007 | |||
1008 | memcpy(&fe->ops.tuner_ops, &mxl5007t_tuner_ops, | ||
1009 | sizeof(struct dvb_tuner_ops)); | ||
1010 | |||
1011 | return fe; | ||
1012 | fail: | ||
1013 | mutex_unlock(&mxl5007t_list_mutex); | ||
1014 | |||
1015 | mxl5007t_release(fe); | ||
1016 | return NULL; | ||
1017 | } | ||
1018 | EXPORT_SYMBOL_GPL(mxl5007t_attach); | ||
1019 | MODULE_DESCRIPTION("MaxLinear MxL5007T Silicon IC tuner driver"); | ||
1020 | MODULE_AUTHOR("Michael Krufky <mkrufky@linuxtv.org>"); | ||
1021 | MODULE_LICENSE("GPL"); | ||
1022 | MODULE_VERSION("0.1"); | ||
1023 | |||
1024 | /* | ||
1025 | * Overrides for Emacs so that we follow Linus's tabbing style. | ||
1026 | * --------------------------------------------------------------------------- | ||
1027 | * Local variables: | ||
1028 | * c-basic-offset: 8 | ||
1029 | * End: | ||
1030 | */ | ||
diff --git a/drivers/media/common/tuners/mxl5007t.h b/drivers/media/common/tuners/mxl5007t.h new file mode 100644 index 000000000000..aa3eea0b5262 --- /dev/null +++ b/drivers/media/common/tuners/mxl5007t.h | |||
@@ -0,0 +1,104 @@ | |||
1 | /* | ||
2 | * mxl5007t.h - driver for the MaxLinear MxL5007T silicon tuner | ||
3 | * | ||
4 | * Copyright (C) 2008 Michael Krufky <mkrufky@linuxtv.org> | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify | ||
7 | * it under the terms of the GNU General Public License as published by | ||
8 | * the Free Software Foundation; either version 2 of the License, or | ||
9 | * (at your option) any later version. | ||
10 | * | ||
11 | * This program is distributed in the hope that it will be useful, | ||
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
14 | * GNU General Public License for more details. | ||
15 | * | ||
16 | * You should have received a copy of the GNU General Public License | ||
17 | * along with this program; if not, write to the Free Software | ||
18 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
19 | */ | ||
20 | |||
21 | #ifndef __MXL5007T_H__ | ||
22 | #define __MXL5007T_H__ | ||
23 | |||
24 | #include "dvb_frontend.h" | ||
25 | |||
26 | /* ------------------------------------------------------------------------- */ | ||
27 | |||
28 | enum mxl5007t_if_freq { | ||
29 | MxL_IF_4_MHZ, /* 4000000 */ | ||
30 | MxL_IF_4_5_MHZ, /* 4500000 */ | ||
31 | MxL_IF_4_57_MHZ, /* 4570000 */ | ||
32 | MxL_IF_5_MHZ, /* 5000000 */ | ||
33 | MxL_IF_5_38_MHZ, /* 5380000 */ | ||
34 | MxL_IF_6_MHZ, /* 6000000 */ | ||
35 | MxL_IF_6_28_MHZ, /* 6280000 */ | ||
36 | MxL_IF_9_1915_MHZ, /* 9191500 */ | ||
37 | MxL_IF_35_25_MHZ, /* 35250000 */ | ||
38 | MxL_IF_36_15_MHZ, /* 36150000 */ | ||
39 | MxL_IF_44_MHZ, /* 44000000 */ | ||
40 | }; | ||
41 | |||
42 | enum mxl5007t_xtal_freq { | ||
43 | MxL_XTAL_16_MHZ, /* 16000000 */ | ||
44 | MxL_XTAL_20_MHZ, /* 20000000 */ | ||
45 | MxL_XTAL_20_25_MHZ, /* 20250000 */ | ||
46 | MxL_XTAL_20_48_MHZ, /* 20480000 */ | ||
47 | MxL_XTAL_24_MHZ, /* 24000000 */ | ||
48 | MxL_XTAL_25_MHZ, /* 25000000 */ | ||
49 | MxL_XTAL_25_14_MHZ, /* 25140000 */ | ||
50 | MxL_XTAL_27_MHZ, /* 27000000 */ | ||
51 | MxL_XTAL_28_8_MHZ, /* 28800000 */ | ||
52 | MxL_XTAL_32_MHZ, /* 32000000 */ | ||
53 | MxL_XTAL_40_MHZ, /* 40000000 */ | ||
54 | MxL_XTAL_44_MHZ, /* 44000000 */ | ||
55 | MxL_XTAL_48_MHZ, /* 48000000 */ | ||
56 | MxL_XTAL_49_3811_MHZ, /* 49381100 */ | ||
57 | }; | ||
58 | |||
59 | enum mxl5007t_clkout_amp { | ||
60 | MxL_CLKOUT_AMP_0_94V = 0, | ||
61 | MxL_CLKOUT_AMP_0_53V = 1, | ||
62 | MxL_CLKOUT_AMP_0_37V = 2, | ||
63 | MxL_CLKOUT_AMP_0_28V = 3, | ||
64 | MxL_CLKOUT_AMP_0_23V = 4, | ||
65 | MxL_CLKOUT_AMP_0_20V = 5, | ||
66 | MxL_CLKOUT_AMP_0_17V = 6, | ||
67 | MxL_CLKOUT_AMP_0_15V = 7, | ||
68 | }; | ||
69 | |||
70 | struct mxl5007t_config { | ||
71 | s32 if_diff_out_level; | ||
72 | enum mxl5007t_clkout_amp clk_out_amp; | ||
73 | enum mxl5007t_xtal_freq xtal_freq_hz; | ||
74 | enum mxl5007t_if_freq if_freq_hz; | ||
75 | unsigned int invert_if:1; | ||
76 | unsigned int loop_thru_enable:1; | ||
77 | unsigned int clk_out_enable:1; | ||
78 | }; | ||
79 | |||
80 | #if defined(CONFIG_MEDIA_TUNER_MXL5007T) || (defined(CONFIG_MEDIA_TUNER_MXL5007T_MODULE) && defined(MODULE)) | ||
81 | extern struct dvb_frontend *mxl5007t_attach(struct dvb_frontend *fe, | ||
82 | struct i2c_adapter *i2c, u8 addr, | ||
83 | struct mxl5007t_config *cfg); | ||
84 | #else | ||
85 | static inline struct dvb_frontend *mxl5007t_attach(struct dvb_frontend *fe, | ||
86 | struct i2c_adapter *i2c, | ||
87 | u8 addr, | ||
88 | struct mxl5007t_config *cfg) | ||
89 | { | ||
90 | printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__); | ||
91 | return NULL; | ||
92 | } | ||
93 | #endif | ||
94 | |||
95 | #endif /* __MXL5007T_H__ */ | ||
96 | |||
97 | /* | ||
98 | * Overrides for Emacs so that we follow Linus's tabbing style. | ||
99 | * --------------------------------------------------------------------------- | ||
100 | * Local variables: | ||
101 | * c-basic-offset: 8 | ||
102 | * End: | ||
103 | */ | ||
104 | |||
diff --git a/drivers/media/common/tuners/tda9887.c b/drivers/media/common/tuners/tda9887.c index a0545ba957b0..72abf0b73486 100644 --- a/drivers/media/common/tuners/tda9887.c +++ b/drivers/media/common/tuners/tda9887.c | |||
@@ -6,7 +6,7 @@ | |||
6 | #include <linux/errno.h> | 6 | #include <linux/errno.h> |
7 | #include <linux/slab.h> | 7 | #include <linux/slab.h> |
8 | #include <linux/delay.h> | 8 | #include <linux/delay.h> |
9 | #include <linux/videodev.h> | 9 | #include <linux/videodev2.h> |
10 | #include <media/v4l2-common.h> | 10 | #include <media/v4l2-common.h> |
11 | #include <media/tuner.h> | 11 | #include <media/tuner.h> |
12 | #include "tuner-i2c.h" | 12 | #include "tuner-i2c.h" |
diff --git a/drivers/media/common/tuners/tuner-simple.c b/drivers/media/common/tuners/tuner-simple.c index 266c255cf0d8..597e47f5d69c 100644 --- a/drivers/media/common/tuners/tuner-simple.c +++ b/drivers/media/common/tuners/tuner-simple.c | |||
@@ -6,7 +6,7 @@ | |||
6 | */ | 6 | */ |
7 | #include <linux/delay.h> | 7 | #include <linux/delay.h> |
8 | #include <linux/i2c.h> | 8 | #include <linux/i2c.h> |
9 | #include <linux/videodev.h> | 9 | #include <linux/videodev2.h> |
10 | #include <media/tuner.h> | 10 | #include <media/tuner.h> |
11 | #include <media/v4l2-common.h> | 11 | #include <media/v4l2-common.h> |
12 | #include <media/tuner-types.h> | 12 | #include <media/tuner-types.h> |
diff --git a/drivers/media/dvb/bt8xx/Kconfig b/drivers/media/dvb/bt8xx/Kconfig index 7588db1319d0..7e9c090fc04e 100644 --- a/drivers/media/dvb/bt8xx/Kconfig +++ b/drivers/media/dvb/bt8xx/Kconfig | |||
@@ -1,7 +1,6 @@ | |||
1 | config DVB_BT8XX | 1 | config DVB_BT8XX |
2 | tristate "BT8xx based PCI cards" | 2 | tristate "BT8xx based PCI cards" |
3 | depends on DVB_CORE && PCI && I2C && VIDEO_BT848 | 3 | depends on DVB_CORE && PCI && I2C && VIDEO_BT848 |
4 | depends on HOTPLUG # due to FW_LOADER | ||
5 | select DVB_MT352 if !DVB_FE_CUSTOMISE | 4 | select DVB_MT352 if !DVB_FE_CUSTOMISE |
6 | select DVB_SP887X if !DVB_FE_CUSTOMISE | 5 | select DVB_SP887X if !DVB_FE_CUSTOMISE |
7 | select DVB_NXT6000 if !DVB_FE_CUSTOMISE | 6 | select DVB_NXT6000 if !DVB_FE_CUSTOMISE |
@@ -10,7 +9,6 @@ config DVB_BT8XX | |||
10 | select DVB_LGDT330X if !DVB_FE_CUSTOMISE | 9 | select DVB_LGDT330X if !DVB_FE_CUSTOMISE |
11 | select DVB_ZL10353 if !DVB_FE_CUSTOMISE | 10 | select DVB_ZL10353 if !DVB_FE_CUSTOMISE |
12 | select MEDIA_TUNER_SIMPLE if !DVB_FE_CUSTOMISE | 11 | select MEDIA_TUNER_SIMPLE if !DVB_FE_CUSTOMISE |
13 | select FW_LOADER | ||
14 | help | 12 | help |
15 | Support for PCI cards based on the Bt8xx PCI bridge. Examples are | 13 | Support for PCI cards based on the Bt8xx PCI bridge. Examples are |
16 | the Nebula cards, the Pinnacle PCTV cards, the Twinhan DST cards, | 14 | the Nebula cards, the Pinnacle PCTV cards, the Twinhan DST cards, |
diff --git a/drivers/media/dvb/dvb-usb/Kconfig b/drivers/media/dvb/dvb-usb/Kconfig index a577c0f89f67..e84152b7576d 100644 --- a/drivers/media/dvb/dvb-usb/Kconfig +++ b/drivers/media/dvb/dvb-usb/Kconfig | |||
@@ -1,8 +1,6 @@ | |||
1 | config DVB_USB | 1 | config DVB_USB |
2 | tristate "Support for various USB DVB devices" | 2 | tristate "Support for various USB DVB devices" |
3 | depends on DVB_CORE && USB && I2C && INPUT | 3 | depends on DVB_CORE && USB && I2C && INPUT |
4 | depends on HOTPLUG # due to FW_LOADER | ||
5 | select FW_LOADER | ||
6 | help | 4 | help |
7 | By enabling this you will be able to choose the various supported | 5 | By enabling this you will be able to choose the various supported |
8 | USB1.1 and USB2.0 DVB devices. | 6 | USB1.1 and USB2.0 DVB devices. |
@@ -246,6 +244,14 @@ config DVB_USB_AF9005_REMOTE | |||
246 | Say Y here to support the default remote control decoding for the | 244 | Say Y here to support the default remote control decoding for the |
247 | Afatech AF9005 based receiver. | 245 | Afatech AF9005 based receiver. |
248 | 246 | ||
247 | config DVB_USB_DW2102 | ||
248 | tristate "DvbWorld 2102 DVB-S USB2.0 receiver" | ||
249 | depends on DVB_USB | ||
250 | select DVB_STV0299 if !DVB_FE_CUSTOMISE | ||
251 | select DVB_PLL if !DVB_FE_CUSTOMISE | ||
252 | help | ||
253 | Say Y here to support the DvbWorld 2102 DVB-S USB2.0 receiver. | ||
254 | |||
249 | config DVB_USB_ANYSEE | 255 | config DVB_USB_ANYSEE |
250 | tristate "Anysee DVB-T/C USB2.0 support" | 256 | tristate "Anysee DVB-T/C USB2.0 support" |
251 | depends on DVB_USB | 257 | depends on DVB_USB |
diff --git a/drivers/media/dvb/dvb-usb/Makefile b/drivers/media/dvb/dvb-usb/Makefile index 44c11e45e564..e206f1ea0027 100644 --- a/drivers/media/dvb/dvb-usb/Makefile +++ b/drivers/media/dvb/dvb-usb/Makefile | |||
@@ -64,6 +64,9 @@ obj-$(CONFIG_DVB_USB_AF9005_REMOTE) += dvb-usb-af9005-remote.o | |||
64 | dvb-usb-anysee-objs = anysee.o | 64 | dvb-usb-anysee-objs = anysee.o |
65 | obj-$(CONFIG_DVB_USB_ANYSEE) += dvb-usb-anysee.o | 65 | obj-$(CONFIG_DVB_USB_ANYSEE) += dvb-usb-anysee.o |
66 | 66 | ||
67 | dvb-usb-dw2102-objs = dw2102.o | ||
68 | obj-$(CONFIG_DVB_USB_DW2102) += dvb-usb-dw2102.o | ||
69 | |||
67 | EXTRA_CFLAGS += -Idrivers/media/dvb/dvb-core/ -Idrivers/media/dvb/frontends/ | 70 | EXTRA_CFLAGS += -Idrivers/media/dvb/dvb-core/ -Idrivers/media/dvb/frontends/ |
68 | # due to tuner-xc3028 | 71 | # due to tuner-xc3028 |
69 | EXTRA_CFLAGS += -Idrivers/media/common/tuners | 72 | EXTRA_CFLAGS += -Idrivers/media/common/tuners |
diff --git a/drivers/media/dvb/dvb-usb/anysee.c b/drivers/media/dvb/dvb-usb/anysee.c index adfd4fc82efd..2f408d2e1ef3 100644 --- a/drivers/media/dvb/dvb-usb/anysee.c +++ b/drivers/media/dvb/dvb-usb/anysee.c | |||
@@ -43,7 +43,7 @@ module_param_named(debug, dvb_usb_anysee_debug, int, 0644); | |||
43 | MODULE_PARM_DESC(debug, "set debugging level" DVB_USB_DEBUG_STATUS); | 43 | MODULE_PARM_DESC(debug, "set debugging level" DVB_USB_DEBUG_STATUS); |
44 | DVB_DEFINE_MOD_OPT_ADAPTER_NR(adapter_nr); | 44 | DVB_DEFINE_MOD_OPT_ADAPTER_NR(adapter_nr); |
45 | 45 | ||
46 | struct mutex anysee_usb_mutex; | 46 | static struct mutex anysee_usb_mutex; |
47 | 47 | ||
48 | static int anysee_ctrl_msg(struct dvb_usb_device *d, u8 *sbuf, u8 slen, | 48 | static int anysee_ctrl_msg(struct dvb_usb_device *d, u8 *sbuf, u8 slen, |
49 | u8 *rbuf, u8 rlen) | 49 | u8 *rbuf, u8 rlen) |
diff --git a/drivers/media/dvb/dvb-usb/dvb-usb-ids.h b/drivers/media/dvb/dvb-usb/dvb-usb-ids.h index e5238b31e946..029b437caf9a 100644 --- a/drivers/media/dvb/dvb-usb/dvb-usb-ids.h +++ b/drivers/media/dvb/dvb-usb/dvb-usb-ids.h | |||
@@ -204,5 +204,6 @@ | |||
204 | #define USB_PID_ASUS_U3000 0x171f | 204 | #define USB_PID_ASUS_U3000 0x171f |
205 | #define USB_PID_ASUS_U3100 0x173f | 205 | #define USB_PID_ASUS_U3100 0x173f |
206 | #define USB_PID_YUAN_EC372S 0x1edc | 206 | #define USB_PID_YUAN_EC372S 0x1edc |
207 | #define USB_PID_DW2102 0x2102 | ||
207 | 208 | ||
208 | #endif | 209 | #endif |
diff --git a/drivers/media/dvb/dvb-usb/dw2102.c b/drivers/media/dvb/dvb-usb/dw2102.c new file mode 100644 index 000000000000..a4d898b44e55 --- /dev/null +++ b/drivers/media/dvb/dvb-usb/dw2102.c | |||
@@ -0,0 +1,425 @@ | |||
1 | /* DVB USB framework compliant Linux driver for the DVBWorld DVB-S 2102 Card | ||
2 | * | ||
3 | * Copyright (C) 2008 Igor M. Liplianin (liplianin@me.by) | ||
4 | * | ||
5 | * This program is free software; you can redistribute it and/or modify it | ||
6 | * under the terms of the GNU General Public License as published by the | ||
7 | * Free Software Foundation, version 2. | ||
8 | * | ||
9 | * see Documentation/dvb/README.dvb-usb for more information | ||
10 | */ | ||
11 | #include <linux/version.h> | ||
12 | #include "dw2102.h" | ||
13 | #include "stv0299.h" | ||
14 | #include "z0194a.h" | ||
15 | |||
16 | #ifndef USB_PID_DW2102 | ||
17 | #define USB_PID_DW2102 0x2102 | ||
18 | #endif | ||
19 | |||
20 | #define DW2102_READ_MSG 0 | ||
21 | #define DW2102_WRITE_MSG 1 | ||
22 | |||
23 | #define REG_1F_SYMBOLRATE_BYTE0 0x1f | ||
24 | #define REG_20_SYMBOLRATE_BYTE1 0x20 | ||
25 | #define REG_21_SYMBOLRATE_BYTE2 0x21 | ||
26 | |||
27 | #define DW2102_VOLTAGE_CTRL (0x1800) | ||
28 | #define DW2102_RC_QUERY (0x1a00) | ||
29 | |||
30 | struct dw2102_state { | ||
31 | u32 last_key_pressed; | ||
32 | }; | ||
33 | struct dw2102_rc_keys { | ||
34 | u32 keycode; | ||
35 | u32 event; | ||
36 | }; | ||
37 | |||
38 | DVB_DEFINE_MOD_OPT_ADAPTER_NR(adapter_nr); | ||
39 | |||
40 | static int dw2102_op_rw(struct usb_device *dev, u8 request, u16 value, | ||
41 | u8 *data, u16 len, int flags) | ||
42 | { | ||
43 | int ret; | ||
44 | u8 u8buf[len]; | ||
45 | |||
46 | unsigned int pipe = (flags == DW2102_READ_MSG) ? | ||
47 | usb_rcvctrlpipe(dev, 0) : usb_sndctrlpipe(dev, 0); | ||
48 | u8 request_type = (flags == DW2102_READ_MSG) ? USB_DIR_IN : USB_DIR_OUT; | ||
49 | |||
50 | if (flags == DW2102_WRITE_MSG) | ||
51 | memcpy(u8buf, data, len); | ||
52 | ret = usb_control_msg(dev, pipe, request, | ||
53 | request_type | USB_TYPE_VENDOR, value, 0 , u8buf, len, 2000); | ||
54 | |||
55 | if (flags == DW2102_READ_MSG) | ||
56 | memcpy(data, u8buf, len); | ||
57 | return ret; | ||
58 | } | ||
59 | |||
60 | /* I2C */ | ||
61 | |||
62 | static int dw2102_i2c_transfer(struct i2c_adapter *adap, struct i2c_msg msg[], | ||
63 | int num) | ||
64 | { | ||
65 | struct dvb_usb_device *d = i2c_get_adapdata(adap); | ||
66 | int i = 0, ret = 0; | ||
67 | u8 buf6[] = {0x2c, 0x05, 0xc0, 0, 0, 0, 0}; | ||
68 | u8 request; | ||
69 | u16 value; | ||
70 | |||
71 | if (!d) | ||
72 | return -ENODEV; | ||
73 | if (mutex_lock_interruptible(&d->i2c_mutex) < 0) | ||
74 | return -EAGAIN; | ||
75 | |||
76 | switch (num) { | ||
77 | case 2: | ||
78 | /* read stv0299 register */ | ||
79 | request = 0xb5; | ||
80 | value = msg[0].buf[0];/* register */ | ||
81 | for (i = 0; i < msg[1].len; i++) { | ||
82 | value = value + i; | ||
83 | ret = dw2102_op_rw(d->udev, 0xb5, | ||
84 | value, buf6, 2, DW2102_READ_MSG); | ||
85 | msg[1].buf[i] = buf6[0]; | ||
86 | |||
87 | } | ||
88 | break; | ||
89 | case 1: | ||
90 | switch (msg[0].addr) { | ||
91 | case 0x68: | ||
92 | /* write to stv0299 register */ | ||
93 | buf6[0] = 0x2a; | ||
94 | buf6[1] = msg[0].buf[0]; | ||
95 | buf6[2] = msg[0].buf[1]; | ||
96 | ret = dw2102_op_rw(d->udev, 0xb2, | ||
97 | 0, buf6, 3, DW2102_WRITE_MSG); | ||
98 | break; | ||
99 | case 0x60: | ||
100 | if (msg[0].flags == 0) { | ||
101 | /* write to tuner pll */ | ||
102 | buf6[0] = 0x2c; | ||
103 | buf6[1] = 5; | ||
104 | buf6[2] = 0xc0; | ||
105 | buf6[3] = msg[0].buf[0]; | ||
106 | buf6[4] = msg[0].buf[1]; | ||
107 | buf6[5] = msg[0].buf[2]; | ||
108 | buf6[6] = msg[0].buf[3]; | ||
109 | ret = dw2102_op_rw(d->udev, 0xb2, | ||
110 | 0, buf6, 7, DW2102_WRITE_MSG); | ||
111 | } else { | ||
112 | /* write to tuner pll */ | ||
113 | ret = dw2102_op_rw(d->udev, 0xb5, | ||
114 | 0, buf6, 1, DW2102_READ_MSG); | ||
115 | msg[0].buf[0] = buf6[0]; | ||
116 | } | ||
117 | break; | ||
118 | case (DW2102_RC_QUERY): | ||
119 | ret = dw2102_op_rw(d->udev, 0xb8, | ||
120 | 0, buf6, 2, DW2102_READ_MSG); | ||
121 | msg[0].buf[0] = buf6[0]; | ||
122 | msg[0].buf[1] = buf6[1]; | ||
123 | break; | ||
124 | case (DW2102_VOLTAGE_CTRL): | ||
125 | buf6[0] = 0x30; | ||
126 | buf6[1] = msg[0].buf[0]; | ||
127 | ret = dw2102_op_rw(d->udev, 0xb2, | ||
128 | 0, buf6, 2, DW2102_WRITE_MSG); | ||
129 | break; | ||
130 | } | ||
131 | |||
132 | break; | ||
133 | } | ||
134 | |||
135 | mutex_unlock(&d->i2c_mutex); | ||
136 | return num; | ||
137 | } | ||
138 | |||
139 | static u32 dw2102_i2c_func(struct i2c_adapter *adapter) | ||
140 | { | ||
141 | return I2C_FUNC_I2C; | ||
142 | } | ||
143 | |||
144 | static struct i2c_algorithm dw2102_i2c_algo = { | ||
145 | .master_xfer = dw2102_i2c_transfer, | ||
146 | .functionality = dw2102_i2c_func, | ||
147 | }; | ||
148 | |||
149 | static int dw2102_set_voltage(struct dvb_frontend *fe, fe_sec_voltage_t voltage) | ||
150 | { | ||
151 | static u8 command_13v[1] = {0x00}; | ||
152 | static u8 command_18v[1] = {0x01}; | ||
153 | struct i2c_msg msg[] = { | ||
154 | {.addr = DW2102_VOLTAGE_CTRL, .flags = 0, | ||
155 | .buf = command_13v, .len = 1}, | ||
156 | }; | ||
157 | |||
158 | struct dvb_usb_adapter *udev_adap = | ||
159 | (struct dvb_usb_adapter *)(fe->dvb->priv); | ||
160 | if (voltage == SEC_VOLTAGE_18) | ||
161 | msg[0].buf = command_18v; | ||
162 | i2c_transfer(&udev_adap->dev->i2c_adap, msg, 1); | ||
163 | return 0; | ||
164 | } | ||
165 | |||
166 | static int dw2102_frontend_attach(struct dvb_usb_adapter *d) | ||
167 | { | ||
168 | d->fe = dvb_attach(stv0299_attach, &sharp_z0194a_config, | ||
169 | &d->dev->i2c_adap); | ||
170 | if (d->fe != NULL) { | ||
171 | d->fe->ops.set_voltage = dw2102_set_voltage; | ||
172 | info("Attached stv0299!\n"); | ||
173 | return 0; | ||
174 | } | ||
175 | return -EIO; | ||
176 | } | ||
177 | |||
178 | static int dw2102_tuner_attach(struct dvb_usb_adapter *adap) | ||
179 | { | ||
180 | dvb_attach(dvb_pll_attach, adap->fe, 0x60, | ||
181 | &adap->dev->i2c_adap, DVB_PLL_OPERA1); | ||
182 | return 0; | ||
183 | } | ||
184 | |||
185 | static struct dvb_usb_rc_key dw2102_rc_keys[] = { | ||
186 | { 0xf8, 0x0a, KEY_Q }, /*power*/ | ||
187 | { 0xf8, 0x0c, KEY_M }, /*mute*/ | ||
188 | { 0xf8, 0x11, KEY_1 }, | ||
189 | { 0xf8, 0x12, KEY_2 }, | ||
190 | { 0xf8, 0x13, KEY_3 }, | ||
191 | { 0xf8, 0x14, KEY_4 }, | ||
192 | { 0xf8, 0x15, KEY_5 }, | ||
193 | { 0xf8, 0x16, KEY_6 }, | ||
194 | { 0xf8, 0x17, KEY_7 }, | ||
195 | { 0xf8, 0x18, KEY_8 }, | ||
196 | { 0xf8, 0x19, KEY_9 }, | ||
197 | { 0xf8, 0x10, KEY_0 }, | ||
198 | { 0xf8, 0x1c, KEY_PAGEUP }, /*ch+*/ | ||
199 | { 0xf8, 0x0f, KEY_PAGEDOWN }, /*ch-*/ | ||
200 | { 0xf8, 0x1a, KEY_O }, /*vol+*/ | ||
201 | { 0xf8, 0x0e, KEY_Z }, /*vol-*/ | ||
202 | { 0xf8, 0x04, KEY_R }, /*rec*/ | ||
203 | { 0xf8, 0x09, KEY_D }, /*fav*/ | ||
204 | { 0xf8, 0x08, KEY_BACKSPACE }, /*rewind*/ | ||
205 | { 0xf8, 0x07, KEY_A }, /*fast*/ | ||
206 | { 0xf8, 0x0b, KEY_P }, /*pause*/ | ||
207 | { 0xf8, 0x02, KEY_ESC }, /*cancel*/ | ||
208 | { 0xf8, 0x03, KEY_G }, /*tab*/ | ||
209 | { 0xf8, 0x00, KEY_UP }, /*up*/ | ||
210 | { 0xf8, 0x1f, KEY_ENTER }, /*ok*/ | ||
211 | { 0xf8, 0x01, KEY_DOWN }, /*down*/ | ||
212 | { 0xf8, 0x05, KEY_C }, /*cap*/ | ||
213 | { 0xf8, 0x06, KEY_S }, /*stop*/ | ||
214 | { 0xf8, 0x40, KEY_F }, /*full*/ | ||
215 | { 0xf8, 0x1e, KEY_W }, /*tvmode*/ | ||
216 | { 0xf8, 0x1b, KEY_B }, /*recall*/ | ||
217 | |||
218 | }; | ||
219 | |||
220 | |||
221 | |||
222 | static int dw2102_rc_query(struct dvb_usb_device *d, u32 *event, int *state) | ||
223 | { | ||
224 | struct dw2102_state *st = d->priv; | ||
225 | u8 key[2]; | ||
226 | struct i2c_msg msg[] = { | ||
227 | {.addr = DW2102_RC_QUERY, .flags = I2C_M_RD, .buf = key, | ||
228 | .len = 2}, | ||
229 | }; | ||
230 | int i; | ||
231 | |||
232 | *state = REMOTE_NO_KEY_PRESSED; | ||
233 | if (dw2102_i2c_transfer(&d->i2c_adap, msg, 1) == 1) { | ||
234 | for (i = 0; i < ARRAY_SIZE(dw2102_rc_keys); i++) { | ||
235 | if (dw2102_rc_keys[i].data == msg[0].buf[0]) { | ||
236 | *state = REMOTE_KEY_PRESSED; | ||
237 | *event = dw2102_rc_keys[i].event; | ||
238 | st->last_key_pressed = | ||
239 | dw2102_rc_keys[i].event; | ||
240 | break; | ||
241 | } | ||
242 | st->last_key_pressed = 0; | ||
243 | } | ||
244 | } | ||
245 | /* info("key: %x %x\n",key[0],key[1]); */ | ||
246 | return 0; | ||
247 | } | ||
248 | |||
249 | static struct usb_device_id dw2102_table[] = { | ||
250 | {USB_DEVICE(USB_VID_CYPRESS, USB_PID_DW2102)}, | ||
251 | {USB_DEVICE(USB_VID_CYPRESS, 0x2101)}, | ||
252 | { } | ||
253 | }; | ||
254 | |||
255 | MODULE_DEVICE_TABLE(usb, dw2102_table); | ||
256 | |||
257 | static int dw2102_load_firmware(struct usb_device *dev, | ||
258 | const struct firmware *frmwr) | ||
259 | { | ||
260 | u8 *b, *p; | ||
261 | int ret = 0, i; | ||
262 | u8 reset; | ||
263 | u8 reset16 [] = {0, 0, 0, 0, 0, 0, 0}; | ||
264 | const struct firmware *fw; | ||
265 | const char *filename = "dvb-usb-dw2101.fw"; | ||
266 | switch (dev->descriptor.idProduct) { | ||
267 | case 0x2101: | ||
268 | ret = request_firmware(&fw, filename, &dev->dev); | ||
269 | if (ret != 0) { | ||
270 | err("did not find the firmware file. (%s) " | ||
271 | "Please see linux/Documentation/dvb/ for more details " | ||
272 | "on firmware-problems.", filename); | ||
273 | return ret; | ||
274 | } | ||
275 | break; | ||
276 | case USB_PID_DW2102: | ||
277 | fw = frmwr; | ||
278 | break; | ||
279 | } | ||
280 | info("start downloading DW2102 firmware"); | ||
281 | p = kmalloc(fw->size, GFP_KERNEL); | ||
282 | reset = 1; | ||
283 | /*stop the CPU*/ | ||
284 | dw2102_op_rw(dev, 0xa0, 0x7f92, &reset, 1, DW2102_WRITE_MSG); | ||
285 | dw2102_op_rw(dev, 0xa0, 0xe600, &reset, 1, DW2102_WRITE_MSG); | ||
286 | |||
287 | if (p != NULL) { | ||
288 | memcpy(p, fw->data, fw->size); | ||
289 | for (i = 0; i < fw->size; i += 0x40) { | ||
290 | b = (u8 *) p + i; | ||
291 | if (dw2102_op_rw | ||
292 | (dev, 0xa0, i, b , 0x40, | ||
293 | DW2102_WRITE_MSG) != 0x40 | ||
294 | ) { | ||
295 | err("error while transferring firmware"); | ||
296 | ret = -EINVAL; | ||
297 | break; | ||
298 | } | ||
299 | } | ||
300 | /* restart the CPU */ | ||
301 | reset = 0; | ||
302 | if (ret || dw2102_op_rw | ||
303 | (dev, 0xa0, 0x7f92, &reset, 1, | ||
304 | DW2102_WRITE_MSG) != 1) { | ||
305 | err("could not restart the USB controller CPU."); | ||
306 | ret = -EINVAL; | ||
307 | } | ||
308 | if (ret || dw2102_op_rw | ||
309 | (dev, 0xa0, 0xe600, &reset, 1, | ||
310 | DW2102_WRITE_MSG) != 1) { | ||
311 | err("could not restart the USB controller CPU."); | ||
312 | ret = -EINVAL; | ||
313 | } | ||
314 | /* init registers */ | ||
315 | switch (dev->descriptor.idProduct) { | ||
316 | case USB_PID_DW2102: | ||
317 | dw2102_op_rw | ||
318 | (dev, 0xbf, 0x0040, &reset, 0, | ||
319 | DW2102_WRITE_MSG); | ||
320 | dw2102_op_rw | ||
321 | (dev, 0xb9, 0x0000, &reset16[0], 2, | ||
322 | DW2102_READ_MSG); | ||
323 | break; | ||
324 | case 0x2101: | ||
325 | dw2102_op_rw | ||
326 | (dev, 0xbc, 0x0030, &reset16[0], 2, | ||
327 | DW2102_READ_MSG); | ||
328 | dw2102_op_rw | ||
329 | (dev, 0xba, 0x0000, &reset16[0], 7, | ||
330 | DW2102_READ_MSG); | ||
331 | dw2102_op_rw | ||
332 | (dev, 0xba, 0x0000, &reset16[0], 7, | ||
333 | DW2102_READ_MSG); | ||
334 | dw2102_op_rw | ||
335 | (dev, 0xb9, 0x0000, &reset16[0], 2, | ||
336 | DW2102_READ_MSG); | ||
337 | break; | ||
338 | } | ||
339 | kfree(p); | ||
340 | } | ||
341 | return ret; | ||
342 | } | ||
343 | |||
344 | static struct dvb_usb_device_properties dw2102_properties = { | ||
345 | .caps = DVB_USB_IS_AN_I2C_ADAPTER, | ||
346 | .usb_ctrl = DEVICE_SPECIFIC, | ||
347 | .firmware = "dvb-usb-dw2102.fw", | ||
348 | .size_of_priv = sizeof(struct dw2102_state), | ||
349 | .no_reconnect = 1, | ||
350 | |||
351 | .i2c_algo = &dw2102_i2c_algo, | ||
352 | .rc_key_map = dw2102_rc_keys, | ||
353 | .rc_key_map_size = ARRAY_SIZE(dw2102_rc_keys), | ||
354 | .rc_interval = 150, | ||
355 | .rc_query = dw2102_rc_query, | ||
356 | |||
357 | .generic_bulk_ctrl_endpoint = 0x81, | ||
358 | /* parameter for the MPEG2-data transfer */ | ||
359 | .num_adapters = 1, | ||
360 | .download_firmware = dw2102_load_firmware, | ||
361 | .adapter = { | ||
362 | { | ||
363 | .frontend_attach = dw2102_frontend_attach, | ||
364 | .streaming_ctrl = NULL, | ||
365 | .tuner_attach = dw2102_tuner_attach, | ||
366 | .stream = { | ||
367 | .type = USB_BULK, | ||
368 | .count = 8, | ||
369 | .endpoint = 0x82, | ||
370 | .u = { | ||
371 | .bulk = { | ||
372 | .buffersize = 4096, | ||
373 | } | ||
374 | } | ||
375 | }, | ||
376 | } | ||
377 | }, | ||
378 | .num_device_descs = 2, | ||
379 | .devices = { | ||
380 | {"DVBWorld DVB-S 2102 USB2.0", | ||
381 | {&dw2102_table[0], NULL}, | ||
382 | {NULL}, | ||
383 | }, | ||
384 | {"DVBWorld DVB-S 2101 USB2.0", | ||
385 | {&dw2102_table[1], NULL}, | ||
386 | {NULL}, | ||
387 | }, | ||
388 | } | ||
389 | }; | ||
390 | |||
391 | static int dw2102_probe(struct usb_interface *intf, | ||
392 | const struct usb_device_id *id) | ||
393 | { | ||
394 | return dvb_usb_device_init(intf, &dw2102_properties, | ||
395 | THIS_MODULE, NULL, adapter_nr); | ||
396 | } | ||
397 | |||
398 | static struct usb_driver dw2102_driver = { | ||
399 | .name = "dw2102", | ||
400 | .probe = dw2102_probe, | ||
401 | .disconnect = dvb_usb_device_exit, | ||
402 | .id_table = dw2102_table, | ||
403 | }; | ||
404 | |||
405 | static int __init dw2102_module_init(void) | ||
406 | { | ||
407 | int ret = usb_register(&dw2102_driver); | ||
408 | if (ret) | ||
409 | err("usb_register failed. Error number %d", ret); | ||
410 | |||
411 | return ret; | ||
412 | } | ||
413 | |||
414 | static void __exit dw2102_module_exit(void) | ||
415 | { | ||
416 | usb_deregister(&dw2102_driver); | ||
417 | } | ||
418 | |||
419 | module_init(dw2102_module_init); | ||
420 | module_exit(dw2102_module_exit); | ||
421 | |||
422 | MODULE_AUTHOR("Igor M. Liplianin (c) liplianin@me.by"); | ||
423 | MODULE_DESCRIPTION("Driver for DVBWorld DVB-S 2101 2102 USB2.0 device"); | ||
424 | MODULE_VERSION("0.1"); | ||
425 | MODULE_LICENSE("GPL"); | ||
diff --git a/drivers/media/dvb/dvb-usb/dw2102.h b/drivers/media/dvb/dvb-usb/dw2102.h new file mode 100644 index 000000000000..7a310f906837 --- /dev/null +++ b/drivers/media/dvb/dvb-usb/dw2102.h | |||
@@ -0,0 +1,9 @@ | |||
1 | #ifndef _DW2102_H_ | ||
2 | #define _DW2102_H_ | ||
3 | |||
4 | #define DVB_USB_LOG_PREFIX "dw2102" | ||
5 | #include "dvb-usb.h" | ||
6 | |||
7 | extern int dvb_usb_dw2102_debug; | ||
8 | #define deb_xfer(args...) dprintk(dvb_usb_dw2102_debug, 0x02, args) | ||
9 | #endif | ||
diff --git a/drivers/media/dvb/frontends/Kconfig b/drivers/media/dvb/frontends/Kconfig index c20553c4da1f..574dffe91b68 100644 --- a/drivers/media/dvb/frontends/Kconfig +++ b/drivers/media/dvb/frontends/Kconfig | |||
@@ -97,9 +97,8 @@ comment "DVB-T (terrestrial) frontends" | |||
97 | 97 | ||
98 | config DVB_SP8870 | 98 | config DVB_SP8870 |
99 | tristate "Spase sp8870 based" | 99 | tristate "Spase sp8870 based" |
100 | depends on DVB_CORE && I2C && HOTPLUG | 100 | depends on DVB_CORE && I2C |
101 | default m if DVB_FE_CUSTOMISE | 101 | default m if DVB_FE_CUSTOMISE |
102 | select FW_LOADER | ||
103 | help | 102 | help |
104 | A DVB-T tuner module. Say Y when you want to support this frontend. | 103 | A DVB-T tuner module. Say Y when you want to support this frontend. |
105 | 104 | ||
@@ -110,9 +109,8 @@ config DVB_SP8870 | |||
110 | 109 | ||
111 | config DVB_SP887X | 110 | config DVB_SP887X |
112 | tristate "Spase sp887x based" | 111 | tristate "Spase sp887x based" |
113 | depends on DVB_CORE && I2C && HOTPLUG | 112 | depends on DVB_CORE && I2C |
114 | default m if DVB_FE_CUSTOMISE | 113 | default m if DVB_FE_CUSTOMISE |
115 | select FW_LOADER | ||
116 | help | 114 | help |
117 | A DVB-T tuner module. Say Y when you want to support this frontend. | 115 | A DVB-T tuner module. Say Y when you want to support this frontend. |
118 | 116 | ||
@@ -135,6 +133,20 @@ config DVB_CX22702 | |||
135 | help | 133 | help |
136 | A DVB-T tuner module. Say Y when you want to support this frontend. | 134 | A DVB-T tuner module. Say Y when you want to support this frontend. |
137 | 135 | ||
136 | config DVB_DRX397XD | ||
137 | tristate "Micronas DRX3975D/DRX3977D based" | ||
138 | depends on DVB_CORE && I2C && HOTPLUG | ||
139 | default m if DVB_FE_CUSTOMISE | ||
140 | select FW_LOADER | ||
141 | help | ||
142 | A DVB-T tuner module. Say Y when you want to support this frontend. | ||
143 | |||
144 | TODO: | ||
145 | This driver needs external firmware. Please use the command | ||
146 | "<kerneldir>/Documentation/dvb/get_dvb_firmware drx397xD" to | ||
147 | download/extract them, and then copy them to /usr/lib/hotplug/firmware | ||
148 | or /lib/firmware (depending on configuration of firmware hotplug). | ||
149 | |||
138 | config DVB_L64781 | 150 | config DVB_L64781 |
139 | tristate "LSI L64781" | 151 | tristate "LSI L64781" |
140 | depends on DVB_CORE && I2C | 152 | depends on DVB_CORE && I2C |
@@ -144,9 +156,8 @@ config DVB_L64781 | |||
144 | 156 | ||
145 | config DVB_TDA1004X | 157 | config DVB_TDA1004X |
146 | tristate "Philips TDA10045H/TDA10046H based" | 158 | tristate "Philips TDA10045H/TDA10046H based" |
147 | depends on DVB_CORE && I2C && HOTPLUG | 159 | depends on DVB_CORE && I2C |
148 | default m if DVB_FE_CUSTOMISE | 160 | default m if DVB_FE_CUSTOMISE |
149 | select FW_LOADER | ||
150 | help | 161 | help |
151 | A DVB-T tuner module. Say Y when you want to support this frontend. | 162 | A DVB-T tuner module. Say Y when you want to support this frontend. |
152 | 163 | ||
@@ -211,9 +222,8 @@ config DVB_DIB7000P | |||
211 | 222 | ||
212 | config DVB_TDA10048 | 223 | config DVB_TDA10048 |
213 | tristate "Philips TDA10048HN based" | 224 | tristate "Philips TDA10048HN based" |
214 | depends on DVB_CORE && I2C && HOTPLUG | 225 | depends on DVB_CORE && I2C |
215 | default m if DVB_FE_CUSTOMISE | 226 | default m if DVB_FE_CUSTOMISE |
216 | select FW_LOADER | ||
217 | help | 227 | help |
218 | A DVB-T tuner module. Say Y when you want to support this frontend. | 228 | A DVB-T tuner module. Say Y when you want to support this frontend. |
219 | 229 | ||
@@ -253,9 +263,8 @@ comment "ATSC (North American/Korean Terrestrial/Cable DTV) frontends" | |||
253 | 263 | ||
254 | config DVB_NXT200X | 264 | config DVB_NXT200X |
255 | tristate "NxtWave Communications NXT2002/NXT2004 based" | 265 | tristate "NxtWave Communications NXT2002/NXT2004 based" |
256 | depends on DVB_CORE && I2C && HOTPLUG | 266 | depends on DVB_CORE && I2C |
257 | default m if DVB_FE_CUSTOMISE | 267 | default m if DVB_FE_CUSTOMISE |
258 | select FW_LOADER | ||
259 | help | 268 | help |
260 | An ATSC 8VSB and QAM64/256 tuner module. Say Y when you want | 269 | An ATSC 8VSB and QAM64/256 tuner module. Say Y when you want |
261 | to support this frontend. | 270 | to support this frontend. |
@@ -268,9 +277,8 @@ config DVB_NXT200X | |||
268 | 277 | ||
269 | config DVB_OR51211 | 278 | config DVB_OR51211 |
270 | tristate "Oren OR51211 based" | 279 | tristate "Oren OR51211 based" |
271 | depends on DVB_CORE && I2C && HOTPLUG | 280 | depends on DVB_CORE && I2C |
272 | default m if DVB_FE_CUSTOMISE | 281 | default m if DVB_FE_CUSTOMISE |
273 | select FW_LOADER | ||
274 | help | 282 | help |
275 | An ATSC 8VSB tuner module. Say Y when you want to support this frontend. | 283 | An ATSC 8VSB tuner module. Say Y when you want to support this frontend. |
276 | 284 | ||
@@ -281,9 +289,8 @@ config DVB_OR51211 | |||
281 | 289 | ||
282 | config DVB_OR51132 | 290 | config DVB_OR51132 |
283 | tristate "Oren OR51132 based" | 291 | tristate "Oren OR51132 based" |
284 | depends on DVB_CORE && I2C && HOTPLUG | 292 | depends on DVB_CORE && I2C |
285 | default m if DVB_FE_CUSTOMISE | 293 | default m if DVB_FE_CUSTOMISE |
286 | select FW_LOADER | ||
287 | help | 294 | help |
288 | An ATSC 8VSB and QAM64/256 tuner module. Say Y when you want | 295 | An ATSC 8VSB and QAM64/256 tuner module. Say Y when you want |
289 | to support this frontend. | 296 | to support this frontend. |
@@ -297,9 +304,8 @@ config DVB_OR51132 | |||
297 | 304 | ||
298 | config DVB_BCM3510 | 305 | config DVB_BCM3510 |
299 | tristate "Broadcom BCM3510" | 306 | tristate "Broadcom BCM3510" |
300 | depends on DVB_CORE && I2C && HOTPLUG | 307 | depends on DVB_CORE && I2C |
301 | default m if DVB_FE_CUSTOMISE | 308 | default m if DVB_FE_CUSTOMISE |
302 | select FW_LOADER | ||
303 | help | 309 | help |
304 | An ATSC 8VSB/16VSB and QAM64/256 tuner module. Say Y when you want to | 310 | An ATSC 8VSB/16VSB and QAM64/256 tuner module. Say Y when you want to |
305 | support this frontend. | 311 | support this frontend. |
diff --git a/drivers/media/dvb/frontends/Makefile b/drivers/media/dvb/frontends/Makefile index a89dc0fc4c6f..028da55611c0 100644 --- a/drivers/media/dvb/frontends/Makefile +++ b/drivers/media/dvb/frontends/Makefile | |||
@@ -25,6 +25,7 @@ obj-$(CONFIG_DVB_NXT6000) += nxt6000.o | |||
25 | obj-$(CONFIG_DVB_MT352) += mt352.o | 25 | obj-$(CONFIG_DVB_MT352) += mt352.o |
26 | obj-$(CONFIG_DVB_ZL10353) += zl10353.o | 26 | obj-$(CONFIG_DVB_ZL10353) += zl10353.o |
27 | obj-$(CONFIG_DVB_CX22702) += cx22702.o | 27 | obj-$(CONFIG_DVB_CX22702) += cx22702.o |
28 | obj-$(CONFIG_DVB_DRX397XD) += drx397xD.o | ||
28 | obj-$(CONFIG_DVB_TDA10021) += tda10021.o | 29 | obj-$(CONFIG_DVB_TDA10021) += tda10021.o |
29 | obj-$(CONFIG_DVB_TDA10023) += tda10023.o | 30 | obj-$(CONFIG_DVB_TDA10023) += tda10023.o |
30 | obj-$(CONFIG_DVB_STV0297) += stv0297.o | 31 | obj-$(CONFIG_DVB_STV0297) += stv0297.o |
diff --git a/drivers/media/dvb/frontends/drx397xD.c b/drivers/media/dvb/frontends/drx397xD.c new file mode 100644 index 000000000000..3cbed874a6f8 --- /dev/null +++ b/drivers/media/dvb/frontends/drx397xD.c | |||
@@ -0,0 +1,1504 @@ | |||
1 | /* | ||
2 | * Driver for Micronas drx397xD demodulator | ||
3 | * | ||
4 | * Copyright (C) 2007 Henk Vergonet <Henk.Vergonet@gmail.com> | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify | ||
7 | * it under the terms of the GNU General Public License as published by | ||
8 | * the Free Software Foundation; either version 2 of the License, or | ||
9 | * (at your option) any later version. | ||
10 | * | ||
11 | * This program is distributed in the hope that it will be useful, | ||
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
14 | * GNU General Public License for more details. | ||
15 | * | ||
16 | * You should have received a copy of the GNU General Public License | ||
17 | * along with this program; If not, see <http://www.gnu.org/licenses/>. | ||
18 | */ | ||
19 | |||
20 | #define DEBUG /* uncomment if you want debugging output */ | ||
21 | #include <linux/kernel.h> | ||
22 | #include <linux/module.h> | ||
23 | #include <linux/moduleparam.h> | ||
24 | #include <linux/init.h> | ||
25 | #include <linux/device.h> | ||
26 | #include <linux/delay.h> | ||
27 | #include <linux/string.h> | ||
28 | #include <linux/firmware.h> | ||
29 | #include <asm/div64.h> | ||
30 | |||
31 | #include "dvb_frontend.h" | ||
32 | #include "drx397xD.h" | ||
33 | |||
34 | static const char mod_name[] = "drx397xD"; | ||
35 | |||
36 | #define MAX_CLOCK_DRIFT 200 /* maximal 200 PPM allowed */ | ||
37 | |||
38 | #define F_SET_0D0h 1 | ||
39 | #define F_SET_0D4h 2 | ||
40 | |||
41 | typedef enum fw_ix { | ||
42 | #define _FW_ENTRY(a, b) b | ||
43 | #include "drx397xD_fw.h" | ||
44 | } fw_ix_t; | ||
45 | |||
46 | /* chip specifics */ | ||
47 | struct drx397xD_state { | ||
48 | struct i2c_adapter *i2c; | ||
49 | struct dvb_frontend frontend; | ||
50 | struct drx397xD_config config; | ||
51 | fw_ix_t chip_rev; | ||
52 | int flags; | ||
53 | u32 bandwidth_parm; /* internal bandwidth conversions */ | ||
54 | u32 f_osc; /* w90: actual osc frequency [Hz] */ | ||
55 | }; | ||
56 | |||
57 | /******************************************************************************* | ||
58 | * Firmware | ||
59 | ******************************************************************************/ | ||
60 | |||
61 | static const char *blob_name[] = { | ||
62 | #define _BLOB_ENTRY(a, b) a | ||
63 | #include "drx397xD_fw.h" | ||
64 | }; | ||
65 | |||
66 | typedef enum blob_ix { | ||
67 | #define _BLOB_ENTRY(a, b) b | ||
68 | #include "drx397xD_fw.h" | ||
69 | } blob_ix_t; | ||
70 | |||
71 | static struct { | ||
72 | const char *name; | ||
73 | const struct firmware *file; | ||
74 | rwlock_t lock; | ||
75 | int refcnt; | ||
76 | const u8 *data[ARRAY_SIZE(blob_name)]; | ||
77 | } fw[] = { | ||
78 | #define _FW_ENTRY(a, b) { \ | ||
79 | .name = a, \ | ||
80 | .file = 0, \ | ||
81 | .lock = RW_LOCK_UNLOCKED, \ | ||
82 | .refcnt = 0, \ | ||
83 | .data = { } } | ||
84 | #include "drx397xD_fw.h" | ||
85 | }; | ||
86 | |||
87 | /* use only with writer lock aquired */ | ||
88 | static void _drx_release_fw(struct drx397xD_state *s, fw_ix_t ix) | ||
89 | { | ||
90 | memset(&fw[ix].data[0], 0, sizeof(fw[0].data)); | ||
91 | if (fw[ix].file) | ||
92 | release_firmware(fw[ix].file); | ||
93 | } | ||
94 | |||
95 | static void drx_release_fw(struct drx397xD_state *s) | ||
96 | { | ||
97 | fw_ix_t ix = s->chip_rev; | ||
98 | |||
99 | pr_debug("%s\n", __FUNCTION__); | ||
100 | |||
101 | write_lock(&fw[ix].lock); | ||
102 | if (fw[ix].refcnt) { | ||
103 | fw[ix].refcnt--; | ||
104 | if (fw[ix].refcnt == 0) | ||
105 | _drx_release_fw(s, ix); | ||
106 | } | ||
107 | write_unlock(&fw[ix].lock); | ||
108 | } | ||
109 | |||
110 | static int drx_load_fw(struct drx397xD_state *s, fw_ix_t ix) | ||
111 | { | ||
112 | const u8 *data; | ||
113 | size_t size, len; | ||
114 | int i = 0, j, rc = -EINVAL; | ||
115 | |||
116 | pr_debug("%s\n", __FUNCTION__); | ||
117 | |||
118 | if (ix < 0 || ix >= ARRAY_SIZE(fw)) | ||
119 | return -EINVAL; | ||
120 | s->chip_rev = ix; | ||
121 | |||
122 | write_lock(&fw[ix].lock); | ||
123 | if (fw[ix].file) { | ||
124 | rc = 0; | ||
125 | goto exit_ok; | ||
126 | } | ||
127 | memset(&fw[ix].data[0], 0, sizeof(fw[0].data)); | ||
128 | |||
129 | if (request_firmware(&fw[ix].file, fw[ix].name, &s->i2c->dev) != 0) { | ||
130 | printk(KERN_ERR "%s: Firmware \"%s\" not available\n", | ||
131 | mod_name, fw[ix].name); | ||
132 | rc = -ENOENT; | ||
133 | goto exit_err; | ||
134 | } | ||
135 | |||
136 | if (!fw[ix].file->data || fw[ix].file->size < 10) | ||
137 | goto exit_corrupt; | ||
138 | |||
139 | data = fw[ix].file->data; | ||
140 | size = fw[ix].file->size; | ||
141 | |||
142 | if (data[i++] != 2) /* check firmware version */ | ||
143 | goto exit_corrupt; | ||
144 | |||
145 | do { | ||
146 | switch (data[i++]) { | ||
147 | case 0x00: /* bytecode */ | ||
148 | if (i >= size) | ||
149 | break; | ||
150 | i += data[i]; | ||
151 | case 0x01: /* reset */ | ||
152 | case 0x02: /* sleep */ | ||
153 | i++; | ||
154 | break; | ||
155 | case 0xfe: /* name */ | ||
156 | len = strnlen(&data[i], size - i); | ||
157 | if (i + len + 1 >= size) | ||
158 | goto exit_corrupt; | ||
159 | if (data[i + len + 1] != 0) | ||
160 | goto exit_corrupt; | ||
161 | for (j = 0; j < ARRAY_SIZE(blob_name); j++) { | ||
162 | if (strcmp(blob_name[j], &data[i]) == 0) { | ||
163 | fw[ix].data[j] = &data[i + len + 1]; | ||
164 | pr_debug("Loading %s\n", blob_name[j]); | ||
165 | } | ||
166 | } | ||
167 | i += len + 1; | ||
168 | break; | ||
169 | case 0xff: /* file terminator */ | ||
170 | if (i == size) { | ||
171 | rc = 0; | ||
172 | goto exit_ok; | ||
173 | } | ||
174 | default: | ||
175 | goto exit_corrupt; | ||
176 | } | ||
177 | } while (i < size); | ||
178 | exit_corrupt: | ||
179 | printk(KERN_ERR "%s: Firmware is corrupt\n", mod_name); | ||
180 | exit_err: | ||
181 | _drx_release_fw(s, ix); | ||
182 | fw[ix].refcnt--; | ||
183 | exit_ok: | ||
184 | fw[ix].refcnt++; | ||
185 | write_unlock(&fw[ix].lock); | ||
186 | return rc; | ||
187 | } | ||
188 | |||
189 | /******************************************************************************* | ||
190 | * i2c bus IO | ||
191 | ******************************************************************************/ | ||
192 | |||
193 | static int write_fw(struct drx397xD_state *s, blob_ix_t ix) | ||
194 | { | ||
195 | struct i2c_msg msg = {.addr = s->config.demod_address,.flags = 0 }; | ||
196 | const u8 *data; | ||
197 | int len, rc = 0, i = 0; | ||
198 | |||
199 | if (ix < 0 || ix >= ARRAY_SIZE(blob_name)) { | ||
200 | pr_debug("%s drx_fw_ix_t out of range\n", __FUNCTION__); | ||
201 | return -EINVAL; | ||
202 | } | ||
203 | pr_debug("%s %s\n", __FUNCTION__, blob_name[ix]); | ||
204 | |||
205 | read_lock(&fw[s->chip_rev].lock); | ||
206 | data = fw[s->chip_rev].data[ix]; | ||
207 | if (!data) { | ||
208 | rc = -EINVAL; | ||
209 | goto exit_rc; | ||
210 | } | ||
211 | |||
212 | for (;;) { | ||
213 | switch (data[i++]) { | ||
214 | case 0: /* bytecode */ | ||
215 | len = data[i++]; | ||
216 | msg.len = len; | ||
217 | msg.buf = (__u8 *) &data[i]; | ||
218 | if (i2c_transfer(s->i2c, &msg, 1) != 1) { | ||
219 | rc = -EIO; | ||
220 | goto exit_rc; | ||
221 | } | ||
222 | i += len; | ||
223 | break; | ||
224 | case 1: /* reset */ | ||
225 | case 2: /* sleep */ | ||
226 | i++; | ||
227 | break; | ||
228 | default: | ||
229 | goto exit_rc; | ||
230 | } | ||
231 | } | ||
232 | exit_rc: | ||
233 | read_unlock(&fw[s->chip_rev].lock); | ||
234 | return 0; | ||
235 | } | ||
236 | |||
237 | /* Function is not endian safe, use the RD16 wrapper below */ | ||
238 | static int _read16(struct drx397xD_state *s, u32 i2c_adr) | ||
239 | { | ||
240 | int rc; | ||
241 | u8 a[4]; | ||
242 | u16 v; | ||
243 | struct i2c_msg msg[2] = { | ||
244 | { | ||
245 | .addr = s->config.demod_address, | ||
246 | .flags = 0, | ||
247 | .buf = a, | ||
248 | .len = sizeof(a) | ||
249 | } | ||
250 | , { | ||
251 | .addr = s->config.demod_address, | ||
252 | .flags = I2C_M_RD, | ||
253 | .buf = (u8 *) & v, | ||
254 | .len = sizeof(v) | ||
255 | } | ||
256 | }; | ||
257 | |||
258 | *(u32 *) a = i2c_adr; | ||
259 | |||
260 | rc = i2c_transfer(s->i2c, msg, 2); | ||
261 | if (rc != 2) | ||
262 | return -EIO; | ||
263 | |||
264 | return le16_to_cpu(v); | ||
265 | } | ||
266 | |||
267 | /* Function is not endian safe, use the WR16.. wrappers below */ | ||
268 | static int _write16(struct drx397xD_state *s, u32 i2c_adr, u16 val) | ||
269 | { | ||
270 | u8 a[6]; | ||
271 | int rc; | ||
272 | struct i2c_msg msg = { | ||
273 | .addr = s->config.demod_address, | ||
274 | .flags = 0, | ||
275 | .buf = a, | ||
276 | .len = sizeof(a) | ||
277 | }; | ||
278 | |||
279 | *(u32 *) a = i2c_adr; | ||
280 | *(u16 *) & a[4] = val; | ||
281 | |||
282 | rc = i2c_transfer(s->i2c, &msg, 1); | ||
283 | if (rc != 1) | ||
284 | return -EIO; | ||
285 | return 0; | ||
286 | } | ||
287 | |||
288 | #define WR16(ss,adr, val) \ | ||
289 | _write16(ss, I2C_ADR_C0(adr), cpu_to_le16(val)) | ||
290 | #define WR16_E0(ss,adr, val) \ | ||
291 | _write16(ss, I2C_ADR_E0(adr), cpu_to_le16(val)) | ||
292 | #define RD16(ss,adr) \ | ||
293 | _read16(ss, I2C_ADR_C0(adr)) | ||
294 | |||
295 | #define EXIT_RC( cmd ) if ( (rc = (cmd)) < 0) goto exit_rc | ||
296 | |||
297 | /******************************************************************************* | ||
298 | * Tuner callback | ||
299 | ******************************************************************************/ | ||
300 | |||
301 | static int PLL_Set(struct drx397xD_state *s, | ||
302 | struct dvb_frontend_parameters *fep, int *df_tuner) | ||
303 | { | ||
304 | struct dvb_frontend *fe = &s->frontend; | ||
305 | u32 f_tuner, f = fep->frequency; | ||
306 | int rc; | ||
307 | |||
308 | pr_debug("%s\n", __FUNCTION__); | ||
309 | |||
310 | if ((f > s->frontend.ops.tuner_ops.info.frequency_max) || | ||
311 | (f < s->frontend.ops.tuner_ops.info.frequency_min)) | ||
312 | return -EINVAL; | ||
313 | |||
314 | *df_tuner = 0; | ||
315 | if (!s->frontend.ops.tuner_ops.set_params || | ||
316 | !s->frontend.ops.tuner_ops.get_frequency) | ||
317 | return -ENOSYS; | ||
318 | |||
319 | rc = s->frontend.ops.tuner_ops.set_params(fe, fep); | ||
320 | if (rc < 0) | ||
321 | return rc; | ||
322 | |||
323 | rc = s->frontend.ops.tuner_ops.get_frequency(fe, &f_tuner); | ||
324 | if (rc < 0) | ||
325 | return rc; | ||
326 | |||
327 | *df_tuner = f_tuner - f; | ||
328 | pr_debug("%s requested %d [Hz] tuner %d [Hz]\n", __FUNCTION__, f, | ||
329 | f_tuner); | ||
330 | |||
331 | return 0; | ||
332 | } | ||
333 | |||
334 | /******************************************************************************* | ||
335 | * Demodulator helper functions | ||
336 | ******************************************************************************/ | ||
337 | |||
338 | static int SC_WaitForReady(struct drx397xD_state *s) | ||
339 | { | ||
340 | int cnt = 1000; | ||
341 | int rc; | ||
342 | |||
343 | pr_debug("%s\n", __FUNCTION__); | ||
344 | |||
345 | while (cnt--) { | ||
346 | rc = RD16(s, 0x820043); | ||
347 | if (rc == 0) | ||
348 | return 0; | ||
349 | } | ||
350 | return -1; | ||
351 | } | ||
352 | |||
353 | static int SC_SendCommand(struct drx397xD_state *s, int cmd) | ||
354 | { | ||
355 | int rc; | ||
356 | |||
357 | pr_debug("%s\n", __FUNCTION__); | ||
358 | |||
359 | WR16(s, 0x820043, cmd); | ||
360 | SC_WaitForReady(s); | ||
361 | rc = RD16(s, 0x820042); | ||
362 | if ((rc & 0xffff) == 0xffff) | ||
363 | return -1; | ||
364 | return 0; | ||
365 | } | ||
366 | |||
367 | static int HI_Command(struct drx397xD_state *s, u16 cmd) | ||
368 | { | ||
369 | int rc, cnt = 1000; | ||
370 | |||
371 | pr_debug("%s\n", __FUNCTION__); | ||
372 | |||
373 | rc = WR16(s, 0x420032, cmd); | ||
374 | if (rc < 0) | ||
375 | return rc; | ||
376 | |||
377 | do { | ||
378 | rc = RD16(s, 0x420032); | ||
379 | if (rc == 0) { | ||
380 | rc = RD16(s, 0x420031); | ||
381 | return rc; | ||
382 | } | ||
383 | if (rc < 0) | ||
384 | return rc; | ||
385 | } while (--cnt); | ||
386 | return rc; | ||
387 | } | ||
388 | |||
389 | static int HI_CfgCommand(struct drx397xD_state *s) | ||
390 | { | ||
391 | |||
392 | pr_debug("%s\n", __FUNCTION__); | ||
393 | |||
394 | WR16(s, 0x420033, 0x3973); | ||
395 | WR16(s, 0x420034, s->config.w50); // code 4, log 4 | ||
396 | WR16(s, 0x420035, s->config.w52); // code 15, log 9 | ||
397 | WR16(s, 0x420036, s->config.demod_address << 1); | ||
398 | WR16(s, 0x420037, s->config.w56); // code (set_i2c ?? initX 1 ), log 1 | ||
399 | // WR16(s, 0x420033, 0x3973); | ||
400 | if ((s->config.w56 & 8) == 0) | ||
401 | return HI_Command(s, 3); | ||
402 | return WR16(s, 0x420032, 0x3); | ||
403 | } | ||
404 | |||
405 | static const u8 fastIncrDecLUT_15273[] = { | ||
406 | 0x0e, 0x0f, 0x0f, 0x10, 0x11, 0x12, 0x12, 0x13, 0x14, | ||
407 | 0x15, 0x16, 0x17, 0x18, 0x1a, 0x1b, 0x1c, 0x1d, 0x1f | ||
408 | }; | ||
409 | |||
410 | static const u8 slowIncrDecLUT_15272[] = { | ||
411 | 3, 4, 4, 5, 6 | ||
412 | }; | ||
413 | |||
414 | static int SetCfgIfAgc(struct drx397xD_state *s, struct drx397xD_CfgIfAgc *agc) | ||
415 | { | ||
416 | u16 w06 = agc->w06; | ||
417 | u16 w08 = agc->w08; | ||
418 | u16 w0A = agc->w0A; | ||
419 | u16 w0C = agc->w0C; | ||
420 | int quot, rem, i, rc = -EINVAL; | ||
421 | |||
422 | pr_debug("%s\n", __FUNCTION__); | ||
423 | |||
424 | if (agc->w04 > 0x3ff) | ||
425 | goto exit_rc; | ||
426 | |||
427 | if (agc->d00 == 1) { | ||
428 | EXIT_RC(RD16(s, 0x0c20010)); | ||
429 | rc &= ~0x10; | ||
430 | EXIT_RC(WR16(s, 0x0c20010, rc)); | ||
431 | return WR16(s, 0x0c20030, agc->w04 & 0x7ff); | ||
432 | } | ||
433 | |||
434 | if (agc->d00 != 0) | ||
435 | goto exit_rc; | ||
436 | if (w0A < w08) | ||
437 | goto exit_rc; | ||
438 | if (w0A > 0x3ff) | ||
439 | goto exit_rc; | ||
440 | if (w0C > 0x3ff) | ||
441 | goto exit_rc; | ||
442 | if (w06 > 0x3ff) | ||
443 | goto exit_rc; | ||
444 | |||
445 | EXIT_RC(RD16(s, 0x0c20010)); | ||
446 | rc |= 0x10; | ||
447 | EXIT_RC(WR16(s, 0x0c20010, rc)); | ||
448 | |||
449 | EXIT_RC(WR16(s, 0x0c20025, (w06 >> 1) & 0x1ff)); | ||
450 | EXIT_RC(WR16(s, 0x0c20031, (w0A - w08) >> 1)); | ||
451 | EXIT_RC(WR16(s, 0x0c20032, ((w0A + w08) >> 1) - 0x1ff)); | ||
452 | |||
453 | quot = w0C / 113; | ||
454 | rem = w0C % 113; | ||
455 | if (quot <= 8) { | ||
456 | quot = 8 - quot; | ||
457 | } else { | ||
458 | quot = 0; | ||
459 | rem += 113; | ||
460 | } | ||
461 | |||
462 | EXIT_RC(WR16(s, 0x0c20024, quot)); | ||
463 | |||
464 | i = fastIncrDecLUT_15273[rem / 8]; | ||
465 | EXIT_RC(WR16(s, 0x0c2002d, i)); | ||
466 | EXIT_RC(WR16(s, 0x0c2002e, i)); | ||
467 | |||
468 | i = slowIncrDecLUT_15272[rem / 28]; | ||
469 | EXIT_RC(WR16(s, 0x0c2002b, i)); | ||
470 | rc = WR16(s, 0x0c2002c, i); | ||
471 | exit_rc: | ||
472 | return rc; | ||
473 | } | ||
474 | |||
475 | static int SetCfgRfAgc(struct drx397xD_state *s, struct drx397xD_CfgRfAgc *agc) | ||
476 | { | ||
477 | u16 w04 = agc->w04; | ||
478 | u16 w06 = agc->w06; | ||
479 | int rc = -1; | ||
480 | |||
481 | pr_debug("%s %d 0x%x 0x%x\n", __FUNCTION__, agc->d00, w04, w06); | ||
482 | |||
483 | if (w04 > 0x3ff) | ||
484 | goto exit_rc; | ||
485 | |||
486 | switch (agc->d00) { | ||
487 | case 1: | ||
488 | if (w04 == 0x3ff) | ||
489 | w04 = 0x400; | ||
490 | |||
491 | EXIT_RC(WR16(s, 0x0c20036, w04)); | ||
492 | s->config.w9C &= ~2; | ||
493 | EXIT_RC(WR16(s, 0x0c20015, s->config.w9C)); | ||
494 | EXIT_RC(RD16(s, 0x0c20010)); | ||
495 | rc &= 0xbfdf; | ||
496 | EXIT_RC(WR16(s, 0x0c20010, rc)); | ||
497 | EXIT_RC(RD16(s, 0x0c20013)); | ||
498 | rc &= ~2; | ||
499 | break; | ||
500 | case 0: | ||
501 | // loc_8000659 | ||
502 | s->config.w9C &= ~2; | ||
503 | EXIT_RC(WR16(s, 0x0c20015, s->config.w9C)); | ||
504 | EXIT_RC(RD16(s, 0x0c20010)); | ||
505 | rc &= 0xbfdf; | ||
506 | rc |= 0x4000; | ||
507 | EXIT_RC(WR16(s, 0x0c20010, rc)); | ||
508 | EXIT_RC(WR16(s, 0x0c20051, (w06 >> 4) & 0x3f)); | ||
509 | EXIT_RC(RD16(s, 0x0c20013)); | ||
510 | rc &= ~2; | ||
511 | break; | ||
512 | default: | ||
513 | s->config.w9C |= 2; | ||
514 | EXIT_RC(WR16(s, 0x0c20015, s->config.w9C)); | ||
515 | EXIT_RC(RD16(s, 0x0c20010)); | ||
516 | rc &= 0xbfdf; | ||
517 | EXIT_RC(WR16(s, 0x0c20010, rc)); | ||
518 | |||
519 | EXIT_RC(WR16(s, 0x0c20036, 0)); | ||
520 | |||
521 | EXIT_RC(RD16(s, 0x0c20013)); | ||
522 | rc |= 2; | ||
523 | } | ||
524 | rc = WR16(s, 0x0c20013, rc); | ||
525 | exit_rc: | ||
526 | return rc; | ||
527 | } | ||
528 | |||
529 | static int GetLockStatus(struct drx397xD_state *s, int *lockstat) | ||
530 | { | ||
531 | int rc; | ||
532 | |||
533 | *lockstat = 0; | ||
534 | |||
535 | rc = RD16(s, 0x082004b); | ||
536 | if (rc < 0) | ||
537 | return rc; | ||
538 | |||
539 | if (s->config.d60 != 2) | ||
540 | return 0; | ||
541 | |||
542 | if ((rc & 7) == 7) | ||
543 | *lockstat |= 1; | ||
544 | if ((rc & 3) == 3) | ||
545 | *lockstat |= 2; | ||
546 | if (rc & 1) | ||
547 | *lockstat |= 4; | ||
548 | return 0; | ||
549 | } | ||
550 | |||
551 | static int CorrectSysClockDeviation(struct drx397xD_state *s) | ||
552 | { | ||
553 | int rc = -EINVAL; | ||
554 | int lockstat; | ||
555 | u32 clk, clk_limit; | ||
556 | |||
557 | pr_debug("%s\n", __FUNCTION__); | ||
558 | |||
559 | if (s->config.d5C == 0) { | ||
560 | EXIT_RC(WR16(s, 0x08200e8, 0x010)); | ||
561 | EXIT_RC(WR16(s, 0x08200e9, 0x113)); | ||
562 | s->config.d5C = 1; | ||
563 | return rc; | ||
564 | } | ||
565 | if (s->config.d5C != 1) | ||
566 | goto exit_rc; | ||
567 | |||
568 | rc = RD16(s, 0x0820048); | ||
569 | |||
570 | rc = GetLockStatus(s, &lockstat); | ||
571 | if (rc < 0) | ||
572 | goto exit_rc; | ||
573 | if ((lockstat & 1) == 0) | ||
574 | goto exit_rc; | ||
575 | |||
576 | EXIT_RC(WR16(s, 0x0420033, 0x200)); | ||
577 | EXIT_RC(WR16(s, 0x0420034, 0xc5)); | ||
578 | EXIT_RC(WR16(s, 0x0420035, 0x10)); | ||
579 | EXIT_RC(WR16(s, 0x0420036, 0x1)); | ||
580 | EXIT_RC(WR16(s, 0x0420037, 0xa)); | ||
581 | EXIT_RC(HI_Command(s, 6)); | ||
582 | EXIT_RC(RD16(s, 0x0420040)); | ||
583 | clk = rc; | ||
584 | EXIT_RC(RD16(s, 0x0420041)); | ||
585 | clk |= rc << 16; | ||
586 | |||
587 | if (clk <= 0x26ffff) | ||
588 | goto exit_rc; | ||
589 | if (clk > 0x610000) | ||
590 | goto exit_rc; | ||
591 | |||
592 | if (!s->bandwidth_parm) | ||
593 | return -EINVAL; | ||
594 | |||
595 | /* round & convert to Hz */ | ||
596 | clk = ((u64) (clk + 0x800000) * s->bandwidth_parm + (1 << 20)) >> 21; | ||
597 | clk_limit = s->config.f_osc * MAX_CLOCK_DRIFT / 1000; | ||
598 | |||
599 | if (clk - s->config.f_osc * 1000 + clk_limit <= 2 * clk_limit) { | ||
600 | s->f_osc = clk; | ||
601 | pr_debug("%s: osc %d %d [Hz]\n", __FUNCTION__, | ||
602 | s->config.f_osc * 1000, clk - s->config.f_osc * 1000); | ||
603 | } | ||
604 | rc = WR16(s, 0x08200e8, 0); | ||
605 | exit_rc: | ||
606 | return rc; | ||
607 | } | ||
608 | |||
609 | static int ConfigureMPEGOutput(struct drx397xD_state *s, int type) | ||
610 | { | ||
611 | int rc, si, bp; | ||
612 | |||
613 | pr_debug("%s\n", __FUNCTION__); | ||
614 | |||
615 | si = s->config.wA0; | ||
616 | if (s->config.w98 == 0) { | ||
617 | si |= 1; | ||
618 | bp = 0; | ||
619 | } else { | ||
620 | si &= ~1; | ||
621 | bp = 0x200; | ||
622 | } | ||
623 | if (s->config.w9A == 0) { | ||
624 | si |= 0x80; | ||
625 | } else { | ||
626 | si &= ~0x80; | ||
627 | } | ||
628 | |||
629 | EXIT_RC(WR16(s, 0x2150045, 0)); | ||
630 | EXIT_RC(WR16(s, 0x2150010, si)); | ||
631 | EXIT_RC(WR16(s, 0x2150011, bp)); | ||
632 | rc = WR16(s, 0x2150012, (type == 0 ? 0xfff : 0)); | ||
633 | exit_rc: | ||
634 | return rc; | ||
635 | } | ||
636 | |||
637 | static int drx_tune(struct drx397xD_state *s, | ||
638 | struct dvb_frontend_parameters *fep) | ||
639 | { | ||
640 | u16 v22 = 0; | ||
641 | u16 v1C = 0; | ||
642 | u16 v1A = 0; | ||
643 | u16 v18 = 0; | ||
644 | u32 edi = 0, ebx = 0, ebp = 0, edx = 0; | ||
645 | u16 v20 = 0, v1E = 0, v16 = 0, v14 = 0, v12 = 0, v10 = 0, v0E = 0; | ||
646 | |||
647 | int rc, df_tuner; | ||
648 | int a, b, c, d; | ||
649 | pr_debug("%s %d\n", __FUNCTION__, s->config.d60); | ||
650 | |||
651 | if (s->config.d60 != 2) | ||
652 | goto set_tuner; | ||
653 | rc = CorrectSysClockDeviation(s); | ||
654 | if (rc < 0) | ||
655 | goto set_tuner; | ||
656 | |||
657 | s->config.d60 = 1; | ||
658 | rc = ConfigureMPEGOutput(s, 0); | ||
659 | if (rc < 0) | ||
660 | goto set_tuner; | ||
661 | set_tuner: | ||
662 | |||
663 | rc = PLL_Set(s, fep, &df_tuner); | ||
664 | if (rc < 0) { | ||
665 | printk(KERN_ERR "Error in pll_set\n"); | ||
666 | goto exit_rc; | ||
667 | } | ||
668 | msleep(200); | ||
669 | |||
670 | a = rc = RD16(s, 0x2150016); | ||
671 | if (rc < 0) | ||
672 | goto exit_rc; | ||
673 | b = rc = RD16(s, 0x2150010); | ||
674 | if (rc < 0) | ||
675 | goto exit_rc; | ||
676 | c = rc = RD16(s, 0x2150034); | ||
677 | if (rc < 0) | ||
678 | goto exit_rc; | ||
679 | d = rc = RD16(s, 0x2150035); | ||
680 | if (rc < 0) | ||
681 | goto exit_rc; | ||
682 | rc = WR16(s, 0x2150014, c); | ||
683 | rc = WR16(s, 0x2150015, d); | ||
684 | rc = WR16(s, 0x2150010, 0); | ||
685 | rc = WR16(s, 0x2150000, 2); | ||
686 | rc = WR16(s, 0x2150036, 0x0fff); | ||
687 | rc = WR16(s, 0x2150016, a); | ||
688 | |||
689 | rc = WR16(s, 0x2150010, 2); | ||
690 | rc = WR16(s, 0x2150007, 0); | ||
691 | rc = WR16(s, 0x2150000, 1); | ||
692 | rc = WR16(s, 0x2110000, 0); | ||
693 | rc = WR16(s, 0x0800000, 0); | ||
694 | rc = WR16(s, 0x2800000, 0); | ||
695 | rc = WR16(s, 0x2110010, 0x664); | ||
696 | |||
697 | rc = write_fw(s, DRXD_ResetECRAM); | ||
698 | rc = WR16(s, 0x2110000, 1); | ||
699 | |||
700 | rc = write_fw(s, DRXD_InitSC); | ||
701 | if (rc < 0) | ||
702 | goto exit_rc; | ||
703 | |||
704 | rc = SetCfgIfAgc(s, &s->config.ifagc); | ||
705 | if (rc < 0) | ||
706 | goto exit_rc; | ||
707 | |||
708 | rc = SetCfgRfAgc(s, &s->config.rfagc); | ||
709 | if (rc < 0) | ||
710 | goto exit_rc; | ||
711 | |||
712 | if (fep->u.ofdm.transmission_mode != TRANSMISSION_MODE_2K) | ||
713 | v22 = 1; | ||
714 | switch (fep->u.ofdm.transmission_mode) { | ||
715 | case TRANSMISSION_MODE_8K: | ||
716 | edi = 1; | ||
717 | if (s->chip_rev == DRXD_FW_B1) | ||
718 | break; | ||
719 | |||
720 | rc = WR16(s, 0x2010010, 0); | ||
721 | if (rc < 0) | ||
722 | break; | ||
723 | v1C = 0x63; | ||
724 | v1A = 0x53; | ||
725 | v18 = 0x43; | ||
726 | break; | ||
727 | default: | ||
728 | edi = 0; | ||
729 | if (s->chip_rev == DRXD_FW_B1) | ||
730 | break; | ||
731 | |||
732 | rc = WR16(s, 0x2010010, 1); | ||
733 | if (rc < 0) | ||
734 | break; | ||
735 | |||
736 | v1C = 0x61; | ||
737 | v1A = 0x47; | ||
738 | v18 = 0x41; | ||
739 | } | ||
740 | |||
741 | switch (fep->u.ofdm.guard_interval) { | ||
742 | case GUARD_INTERVAL_1_4: | ||
743 | edi |= 0x0c; | ||
744 | break; | ||
745 | case GUARD_INTERVAL_1_8: | ||
746 | edi |= 0x08; | ||
747 | break; | ||
748 | case GUARD_INTERVAL_1_16: | ||
749 | edi |= 0x04; | ||
750 | break; | ||
751 | case GUARD_INTERVAL_1_32: | ||
752 | break; | ||
753 | default: | ||
754 | v22 |= 2; | ||
755 | } | ||
756 | |||
757 | ebx = 0; | ||
758 | ebp = 0; | ||
759 | v20 = 0; | ||
760 | v1E = 0; | ||
761 | v16 = 0; | ||
762 | v14 = 0; | ||
763 | v12 = 0; | ||
764 | v10 = 0; | ||
765 | v0E = 0; | ||
766 | |||
767 | switch (fep->u.ofdm.hierarchy_information) { | ||
768 | case HIERARCHY_1: | ||
769 | edi |= 0x40; | ||
770 | if (s->chip_rev == DRXD_FW_B1) | ||
771 | break; | ||
772 | rc = WR16(s, 0x1c10047, 1); | ||
773 | if (rc < 0) | ||
774 | goto exit_rc; | ||
775 | rc = WR16(s, 0x2010012, 1); | ||
776 | if (rc < 0) | ||
777 | goto exit_rc; | ||
778 | ebx = 0x19f; | ||
779 | ebp = 0x1fb; | ||
780 | v20 = 0x0c0; | ||
781 | v1E = 0x195; | ||
782 | v16 = 0x1d6; | ||
783 | v14 = 0x1ef; | ||
784 | v12 = 4; | ||
785 | v10 = 5; | ||
786 | v0E = 5; | ||
787 | break; | ||
788 | case HIERARCHY_2: | ||
789 | edi |= 0x80; | ||
790 | if (s->chip_rev == DRXD_FW_B1) | ||
791 | break; | ||
792 | rc = WR16(s, 0x1c10047, 2); | ||
793 | if (rc < 0) | ||
794 | goto exit_rc; | ||
795 | rc = WR16(s, 0x2010012, 2); | ||
796 | if (rc < 0) | ||
797 | goto exit_rc; | ||
798 | ebx = 0x08f; | ||
799 | ebp = 0x12f; | ||
800 | v20 = 0x0c0; | ||
801 | v1E = 0x11e; | ||
802 | v16 = 0x1d6; | ||
803 | v14 = 0x15e; | ||
804 | v12 = 4; | ||
805 | v10 = 5; | ||
806 | v0E = 5; | ||
807 | break; | ||
808 | case HIERARCHY_4: | ||
809 | edi |= 0xc0; | ||
810 | if (s->chip_rev == DRXD_FW_B1) | ||
811 | break; | ||
812 | rc = WR16(s, 0x1c10047, 3); | ||
813 | if (rc < 0) | ||
814 | goto exit_rc; | ||
815 | rc = WR16(s, 0x2010012, 3); | ||
816 | if (rc < 0) | ||
817 | goto exit_rc; | ||
818 | ebx = 0x14d; | ||
819 | ebp = 0x197; | ||
820 | v20 = 0x0c0; | ||
821 | v1E = 0x1ce; | ||
822 | v16 = 0x1d6; | ||
823 | v14 = 0x11a; | ||
824 | v12 = 4; | ||
825 | v10 = 6; | ||
826 | v0E = 5; | ||
827 | break; | ||
828 | default: | ||
829 | v22 |= 8; | ||
830 | if (s->chip_rev == DRXD_FW_B1) | ||
831 | break; | ||
832 | rc = WR16(s, 0x1c10047, 0); | ||
833 | if (rc < 0) | ||
834 | goto exit_rc; | ||
835 | rc = WR16(s, 0x2010012, 0); | ||
836 | if (rc < 0) | ||
837 | goto exit_rc; | ||
838 | // QPSK QAM16 QAM64 | ||
839 | ebx = 0x19f; // 62 | ||
840 | ebp = 0x1fb; // 15 | ||
841 | v20 = 0x16a; // 62 | ||
842 | v1E = 0x195; // 62 | ||
843 | v16 = 0x1bb; // 15 | ||
844 | v14 = 0x1ef; // 15 | ||
845 | v12 = 5; // 16 | ||
846 | v10 = 5; // 16 | ||
847 | v0E = 5; // 16 | ||
848 | } | ||
849 | |||
850 | switch (fep->u.ofdm.constellation) { | ||
851 | default: | ||
852 | v22 |= 4; | ||
853 | case QPSK: | ||
854 | if (s->chip_rev == DRXD_FW_B1) | ||
855 | break; | ||
856 | |||
857 | rc = WR16(s, 0x1c10046, 0); | ||
858 | if (rc < 0) | ||
859 | goto exit_rc; | ||
860 | rc = WR16(s, 0x2010011, 0); | ||
861 | if (rc < 0) | ||
862 | goto exit_rc; | ||
863 | rc = WR16(s, 0x201001a, 0x10); | ||
864 | if (rc < 0) | ||
865 | goto exit_rc; | ||
866 | rc = WR16(s, 0x201001b, 0); | ||
867 | if (rc < 0) | ||
868 | goto exit_rc; | ||
869 | rc = WR16(s, 0x201001c, 0); | ||
870 | if (rc < 0) | ||
871 | goto exit_rc; | ||
872 | rc = WR16(s, 0x1c10062, v20); | ||
873 | if (rc < 0) | ||
874 | goto exit_rc; | ||
875 | rc = WR16(s, 0x1c1002a, v1C); | ||
876 | if (rc < 0) | ||
877 | goto exit_rc; | ||
878 | rc = WR16(s, 0x1c10015, v16); | ||
879 | if (rc < 0) | ||
880 | goto exit_rc; | ||
881 | rc = WR16(s, 0x1c10016, v12); | ||
882 | if (rc < 0) | ||
883 | goto exit_rc; | ||
884 | break; | ||
885 | case QAM_16: | ||
886 | edi |= 0x10; | ||
887 | if (s->chip_rev == DRXD_FW_B1) | ||
888 | break; | ||
889 | |||
890 | rc = WR16(s, 0x1c10046, 1); | ||
891 | if (rc < 0) | ||
892 | goto exit_rc; | ||
893 | rc = WR16(s, 0x2010011, 1); | ||
894 | if (rc < 0) | ||
895 | goto exit_rc; | ||
896 | rc = WR16(s, 0x201001a, 0x10); | ||
897 | if (rc < 0) | ||
898 | goto exit_rc; | ||
899 | rc = WR16(s, 0x201001b, 4); | ||
900 | if (rc < 0) | ||
901 | goto exit_rc; | ||
902 | rc = WR16(s, 0x201001c, 0); | ||
903 | if (rc < 0) | ||
904 | goto exit_rc; | ||
905 | rc = WR16(s, 0x1c10062, v1E); | ||
906 | if (rc < 0) | ||
907 | goto exit_rc; | ||
908 | rc = WR16(s, 0x1c1002a, v1A); | ||
909 | if (rc < 0) | ||
910 | goto exit_rc; | ||
911 | rc = WR16(s, 0x1c10015, v14); | ||
912 | if (rc < 0) | ||
913 | goto exit_rc; | ||
914 | rc = WR16(s, 0x1c10016, v10); | ||
915 | if (rc < 0) | ||
916 | goto exit_rc; | ||
917 | break; | ||
918 | case QAM_64: | ||
919 | edi |= 0x20; | ||
920 | rc = WR16(s, 0x1c10046, 2); | ||
921 | if (rc < 0) | ||
922 | goto exit_rc; | ||
923 | rc = WR16(s, 0x2010011, 2); | ||
924 | if (rc < 0) | ||
925 | goto exit_rc; | ||
926 | rc = WR16(s, 0x201001a, 0x20); | ||
927 | if (rc < 0) | ||
928 | goto exit_rc; | ||
929 | rc = WR16(s, 0x201001b, 8); | ||
930 | if (rc < 0) | ||
931 | goto exit_rc; | ||
932 | rc = WR16(s, 0x201001c, 2); | ||
933 | if (rc < 0) | ||
934 | goto exit_rc; | ||
935 | rc = WR16(s, 0x1c10062, ebx); | ||
936 | if (rc < 0) | ||
937 | goto exit_rc; | ||
938 | rc = WR16(s, 0x1c1002a, v18); | ||
939 | if (rc < 0) | ||
940 | goto exit_rc; | ||
941 | rc = WR16(s, 0x1c10015, ebp); | ||
942 | if (rc < 0) | ||
943 | goto exit_rc; | ||
944 | rc = WR16(s, 0x1c10016, v0E); | ||
945 | if (rc < 0) | ||
946 | goto exit_rc; | ||
947 | break; | ||
948 | } | ||
949 | |||
950 | if (s->config.s20d24 == 1) { | ||
951 | rc = WR16(s, 0x2010013, 0); | ||
952 | } else { | ||
953 | rc = WR16(s, 0x2010013, 1); | ||
954 | edi |= 0x1000; | ||
955 | } | ||
956 | |||
957 | switch (fep->u.ofdm.code_rate_HP) { | ||
958 | default: | ||
959 | v22 |= 0x10; | ||
960 | case FEC_1_2: | ||
961 | if (s->chip_rev == DRXD_FW_B1) | ||
962 | break; | ||
963 | rc = WR16(s, 0x2090011, 0); | ||
964 | break; | ||
965 | case FEC_2_3: | ||
966 | edi |= 0x200; | ||
967 | if (s->chip_rev == DRXD_FW_B1) | ||
968 | break; | ||
969 | rc = WR16(s, 0x2090011, 1); | ||
970 | break; | ||
971 | case FEC_3_4: | ||
972 | edi |= 0x400; | ||
973 | if (s->chip_rev == DRXD_FW_B1) | ||
974 | break; | ||
975 | rc = WR16(s, 0x2090011, 2); | ||
976 | break; | ||
977 | case FEC_5_6: /* 5 */ | ||
978 | edi |= 0x600; | ||
979 | if (s->chip_rev == DRXD_FW_B1) | ||
980 | break; | ||
981 | rc = WR16(s, 0x2090011, 3); | ||
982 | break; | ||
983 | case FEC_7_8: /* 7 */ | ||
984 | edi |= 0x800; | ||
985 | if (s->chip_rev == DRXD_FW_B1) | ||
986 | break; | ||
987 | rc = WR16(s, 0x2090011, 4); | ||
988 | break; | ||
989 | }; | ||
990 | if (rc < 0) | ||
991 | goto exit_rc; | ||
992 | |||
993 | switch (fep->u.ofdm.bandwidth) { | ||
994 | default: | ||
995 | rc = -EINVAL; | ||
996 | goto exit_rc; | ||
997 | case BANDWIDTH_8_MHZ: /* 0 */ | ||
998 | case BANDWIDTH_AUTO: | ||
999 | rc = WR16(s, 0x0c2003f, 0x32); | ||
1000 | s->bandwidth_parm = ebx = 0x8b8249; // 9142857 | ||
1001 | edx = 0; | ||
1002 | break; | ||
1003 | case BANDWIDTH_7_MHZ: | ||
1004 | rc = WR16(s, 0x0c2003f, 0x3b); | ||
1005 | s->bandwidth_parm = ebx = 0x7a1200; // 8000000 | ||
1006 | edx = 0x4807; | ||
1007 | break; | ||
1008 | case BANDWIDTH_6_MHZ: | ||
1009 | rc = WR16(s, 0x0c2003f, 0x47); | ||
1010 | s->bandwidth_parm = ebx = 0x68a1b6; // 6857142 | ||
1011 | edx = 0x0f07; | ||
1012 | break; | ||
1013 | }; | ||
1014 | |||
1015 | if (rc < 0) | ||
1016 | goto exit_rc; | ||
1017 | |||
1018 | rc = WR16(s, 0x08200ec, edx); | ||
1019 | if (rc < 0) | ||
1020 | goto exit_rc; | ||
1021 | |||
1022 | rc = RD16(s, 0x0820050); | ||
1023 | if (rc < 0) | ||
1024 | goto exit_rc; | ||
1025 | rc = WR16(s, 0x0820050, rc); | ||
1026 | |||
1027 | { | ||
1028 | /* Configure bandwidth specific factor */ | ||
1029 | ebx = div64_u64(((u64) (s->f_osc) << 21) + (ebx >> 1), | ||
1030 | (u64)ebx) - 0x800000; | ||
1031 | EXIT_RC(WR16(s, 0x0c50010, ebx & 0xffff)); | ||
1032 | EXIT_RC(WR16(s, 0x0c50011, ebx >> 16)); | ||
1033 | |||
1034 | /* drx397xD oscillator calibration */ | ||
1035 | ebx = div64_u64(((u64) (s->config.f_if + df_tuner) << 28) + | ||
1036 | (s->f_osc >> 1), (u64)s->f_osc); | ||
1037 | } | ||
1038 | ebx &= 0xfffffff; | ||
1039 | if (fep->inversion == INVERSION_ON) | ||
1040 | ebx = 0x10000000 - ebx; | ||
1041 | |||
1042 | EXIT_RC(WR16(s, 0x0c30010, ebx & 0xffff)); | ||
1043 | EXIT_RC(WR16(s, 0x0c30011, ebx >> 16)); | ||
1044 | |||
1045 | EXIT_RC(WR16(s, 0x0800000, 1)); | ||
1046 | EXIT_RC(RD16(s, 0x0800000)); | ||
1047 | |||
1048 | |||
1049 | EXIT_RC(SC_WaitForReady(s)); | ||
1050 | EXIT_RC(WR16(s, 0x0820042, 0)); | ||
1051 | EXIT_RC(WR16(s, 0x0820041, v22)); | ||
1052 | EXIT_RC(WR16(s, 0x0820040, edi)); | ||
1053 | EXIT_RC(SC_SendCommand(s, 3)); | ||
1054 | |||
1055 | rc = RD16(s, 0x0800000); | ||
1056 | |||
1057 | SC_WaitForReady(s); | ||
1058 | WR16(s, 0x0820042, 0); | ||
1059 | WR16(s, 0x0820041, 1); | ||
1060 | WR16(s, 0x0820040, 1); | ||
1061 | SC_SendCommand(s, 1); | ||
1062 | |||
1063 | // rc = WR16(s, 0x2150000, 1); | ||
1064 | // if (rc < 0) goto exit_rc; | ||
1065 | |||
1066 | rc = WR16(s, 0x2150000, 2); | ||
1067 | rc = WR16(s, 0x2150016, a); | ||
1068 | rc = WR16(s, 0x2150010, 4); | ||
1069 | rc = WR16(s, 0x2150036, 0); | ||
1070 | rc = WR16(s, 0x2150000, 1); | ||
1071 | s->config.d60 = 2; | ||
1072 | exit_rc: | ||
1073 | return rc; | ||
1074 | } | ||
1075 | |||
1076 | /******************************************************************************* | ||
1077 | * DVB interface | ||
1078 | ******************************************************************************/ | ||
1079 | |||
1080 | static int drx397x_init(struct dvb_frontend *fe) | ||
1081 | { | ||
1082 | struct drx397xD_state *s = fe->demodulator_priv; | ||
1083 | int rc; | ||
1084 | |||
1085 | pr_debug("%s\n", __FUNCTION__); | ||
1086 | |||
1087 | s->config.rfagc.d00 = 2; /* 0x7c */ | ||
1088 | s->config.rfagc.w04 = 0; | ||
1089 | s->config.rfagc.w06 = 0x3ff; | ||
1090 | |||
1091 | s->config.ifagc.d00 = 0; /* 0x68 */ | ||
1092 | s->config.ifagc.w04 = 0; | ||
1093 | s->config.ifagc.w06 = 140; | ||
1094 | s->config.ifagc.w08 = 0; | ||
1095 | s->config.ifagc.w0A = 0x3ff; | ||
1096 | s->config.ifagc.w0C = 0x388; | ||
1097 | |||
1098 | /* for signal strenght calculations */ | ||
1099 | s->config.ss76 = 820; | ||
1100 | s->config.ss78 = 2200; | ||
1101 | s->config.ss7A = 150; | ||
1102 | |||
1103 | /* HI_CfgCommand */ | ||
1104 | s->config.w50 = 4; | ||
1105 | s->config.w52 = 9; // 0xf; | ||
1106 | |||
1107 | s->config.f_if = 42800000; /* d14: intermediate frequency [Hz] */ | ||
1108 | s->config.f_osc = 48000; /* s66 : oscillator frequency [kHz] */ | ||
1109 | s->config.w92 = 12000; // 20000; | ||
1110 | |||
1111 | s->config.w9C = 0x000e; | ||
1112 | s->config.w9E = 0x0000; | ||
1113 | |||
1114 | /* ConfigureMPEGOutput params */ | ||
1115 | s->config.wA0 = 4; | ||
1116 | s->config.w98 = 1; // 0; | ||
1117 | s->config.w9A = 1; | ||
1118 | |||
1119 | /* get chip revision */ | ||
1120 | rc = RD16(s, 0x2410019); | ||
1121 | if (rc < 0) | ||
1122 | return -ENODEV; | ||
1123 | |||
1124 | if (rc == 0) { | ||
1125 | printk(KERN_INFO "%s: chip revision A2\n", mod_name); | ||
1126 | rc = drx_load_fw(s, DRXD_FW_A2); | ||
1127 | } else { | ||
1128 | |||
1129 | rc = (rc >> 12) - 3; | ||
1130 | switch (rc) { | ||
1131 | case 1: | ||
1132 | s->flags |= F_SET_0D4h; | ||
1133 | case 0: | ||
1134 | case 4: | ||
1135 | s->flags |= F_SET_0D0h; | ||
1136 | break; | ||
1137 | case 2: | ||
1138 | case 5: | ||
1139 | break; | ||
1140 | case 3: | ||
1141 | s->flags |= F_SET_0D4h; | ||
1142 | break; | ||
1143 | default: | ||
1144 | return -ENODEV; | ||
1145 | }; | ||
1146 | printk(KERN_INFO "%s: chip revision B1.%d\n", mod_name, rc); | ||
1147 | rc = drx_load_fw(s, DRXD_FW_B1); | ||
1148 | } | ||
1149 | if (rc < 0) | ||
1150 | goto error; | ||
1151 | |||
1152 | rc = WR16(s, 0x0420033, 0x3973); | ||
1153 | if (rc < 0) | ||
1154 | goto error; | ||
1155 | |||
1156 | rc = HI_Command(s, 2); | ||
1157 | |||
1158 | msleep(1); | ||
1159 | |||
1160 | if (s->chip_rev == DRXD_FW_A2) { | ||
1161 | rc = WR16(s, 0x043012d, 0x47F); | ||
1162 | if (rc < 0) | ||
1163 | goto error; | ||
1164 | } | ||
1165 | rc = WR16_E0(s, 0x0400000, 0); | ||
1166 | if (rc < 0) | ||
1167 | goto error; | ||
1168 | |||
1169 | if (s->config.w92 > 20000 || s->config.w92 % 4000) { | ||
1170 | printk(KERN_ERR "%s: invalid osc frequency\n", mod_name); | ||
1171 | rc = -1; | ||
1172 | goto error; | ||
1173 | } | ||
1174 | |||
1175 | rc = WR16(s, 0x2410010, 1); | ||
1176 | if (rc < 0) | ||
1177 | goto error; | ||
1178 | rc = WR16(s, 0x2410011, 0x15); | ||
1179 | if (rc < 0) | ||
1180 | goto error; | ||
1181 | rc = WR16(s, 0x2410012, s->config.w92 / 4000); | ||
1182 | if (rc < 0) | ||
1183 | goto error; | ||
1184 | #ifdef ORIG_FW | ||
1185 | rc = WR16(s, 0x2410015, 2); | ||
1186 | if (rc < 0) | ||
1187 | goto error; | ||
1188 | #endif | ||
1189 | rc = WR16(s, 0x2410017, 0x3973); | ||
1190 | if (rc < 0) | ||
1191 | goto error; | ||
1192 | |||
1193 | s->f_osc = s->config.f_osc * 1000; /* initial estimator */ | ||
1194 | |||
1195 | s->config.w56 = 1; | ||
1196 | |||
1197 | rc = HI_CfgCommand(s); | ||
1198 | if (rc < 0) | ||
1199 | goto error; | ||
1200 | |||
1201 | rc = write_fw(s, DRXD_InitAtomicRead); | ||
1202 | if (rc < 0) | ||
1203 | goto error; | ||
1204 | |||
1205 | if (s->chip_rev == DRXD_FW_A2) { | ||
1206 | rc = WR16(s, 0x2150013, 0); | ||
1207 | if (rc < 0) | ||
1208 | goto error; | ||
1209 | } | ||
1210 | |||
1211 | rc = WR16_E0(s, 0x0400002, 0); | ||
1212 | if (rc < 0) | ||
1213 | goto error; | ||
1214 | rc = WR16(s, 0x0400002, 0); | ||
1215 | if (rc < 0) | ||
1216 | goto error; | ||
1217 | |||
1218 | if (s->chip_rev == DRXD_FW_A2) { | ||
1219 | rc = write_fw(s, DRXD_ResetCEFR); | ||
1220 | if (rc < 0) | ||
1221 | goto error; | ||
1222 | } | ||
1223 | rc = write_fw(s, DRXD_microcode); | ||
1224 | if (rc < 0) | ||
1225 | goto error; | ||
1226 | |||
1227 | s->config.w9C = 0x0e; | ||
1228 | if (s->flags & F_SET_0D0h) { | ||
1229 | s->config.w9C = 0; | ||
1230 | rc = RD16(s, 0x0c20010); | ||
1231 | if (rc < 0) | ||
1232 | goto write_DRXD_InitFE_1; | ||
1233 | |||
1234 | rc &= ~0x1000; | ||
1235 | rc = WR16(s, 0x0c20010, rc); | ||
1236 | if (rc < 0) | ||
1237 | goto write_DRXD_InitFE_1; | ||
1238 | |||
1239 | rc = RD16(s, 0x0c20011); | ||
1240 | if (rc < 0) | ||
1241 | goto write_DRXD_InitFE_1; | ||
1242 | |||
1243 | rc &= ~0x8; | ||
1244 | rc = WR16(s, 0x0c20011, rc); | ||
1245 | if (rc < 0) | ||
1246 | goto write_DRXD_InitFE_1; | ||
1247 | |||
1248 | rc = WR16(s, 0x0c20012, 1); | ||
1249 | } | ||
1250 | |||
1251 | write_DRXD_InitFE_1: | ||
1252 | |||
1253 | rc = write_fw(s, DRXD_InitFE_1); | ||
1254 | if (rc < 0) | ||
1255 | goto error; | ||
1256 | |||
1257 | rc = 1; | ||
1258 | if (s->chip_rev == DRXD_FW_B1) { | ||
1259 | if (s->flags & F_SET_0D0h) | ||
1260 | rc = 0; | ||
1261 | } else { | ||
1262 | if (s->flags & F_SET_0D0h) | ||
1263 | rc = 4; | ||
1264 | } | ||
1265 | |||
1266 | rc = WR16(s, 0x0C20012, rc); | ||
1267 | if (rc < 0) | ||
1268 | goto error; | ||
1269 | |||
1270 | rc = WR16(s, 0x0C20013, s->config.w9E); | ||
1271 | if (rc < 0) | ||
1272 | goto error; | ||
1273 | rc = WR16(s, 0x0C20015, s->config.w9C); | ||
1274 | if (rc < 0) | ||
1275 | goto error; | ||
1276 | |||
1277 | rc = write_fw(s, DRXD_InitFE_2); | ||
1278 | if (rc < 0) | ||
1279 | goto error; | ||
1280 | rc = write_fw(s, DRXD_InitFT); | ||
1281 | if (rc < 0) | ||
1282 | goto error; | ||
1283 | rc = write_fw(s, DRXD_InitCP); | ||
1284 | if (rc < 0) | ||
1285 | goto error; | ||
1286 | rc = write_fw(s, DRXD_InitCE); | ||
1287 | if (rc < 0) | ||
1288 | goto error; | ||
1289 | rc = write_fw(s, DRXD_InitEQ); | ||
1290 | if (rc < 0) | ||
1291 | goto error; | ||
1292 | rc = write_fw(s, DRXD_InitEC); | ||
1293 | if (rc < 0) | ||
1294 | goto error; | ||
1295 | rc = write_fw(s, DRXD_InitSC); | ||
1296 | if (rc < 0) | ||
1297 | goto error; | ||
1298 | |||
1299 | rc = SetCfgIfAgc(s, &s->config.ifagc); | ||
1300 | if (rc < 0) | ||
1301 | goto error; | ||
1302 | |||
1303 | rc = SetCfgRfAgc(s, &s->config.rfagc); | ||
1304 | if (rc < 0) | ||
1305 | goto error; | ||
1306 | |||
1307 | rc = ConfigureMPEGOutput(s, 1); | ||
1308 | rc = WR16(s, 0x08201fe, 0x0017); | ||
1309 | rc = WR16(s, 0x08201ff, 0x0101); | ||
1310 | |||
1311 | s->config.d5C = 0; | ||
1312 | s->config.d60 = 1; | ||
1313 | s->config.d48 = 1; | ||
1314 | error: | ||
1315 | return rc; | ||
1316 | } | ||
1317 | |||
1318 | static int drx397x_get_frontend(struct dvb_frontend *fe, | ||
1319 | struct dvb_frontend_parameters *params) | ||
1320 | { | ||
1321 | return 0; | ||
1322 | } | ||
1323 | |||
1324 | static int drx397x_set_frontend(struct dvb_frontend *fe, | ||
1325 | struct dvb_frontend_parameters *params) | ||
1326 | { | ||
1327 | struct drx397xD_state *s = fe->demodulator_priv; | ||
1328 | |||
1329 | s->config.s20d24 = 1; // 0; | ||
1330 | return drx_tune(s, params); | ||
1331 | } | ||
1332 | |||
1333 | static int drx397x_get_tune_settings(struct dvb_frontend *fe, | ||
1334 | struct dvb_frontend_tune_settings | ||
1335 | *fe_tune_settings) | ||
1336 | { | ||
1337 | fe_tune_settings->min_delay_ms = 10000; | ||
1338 | fe_tune_settings->step_size = 0; | ||
1339 | fe_tune_settings->max_drift = 0; | ||
1340 | return 0; | ||
1341 | } | ||
1342 | |||
1343 | static int drx397x_read_status(struct dvb_frontend *fe, fe_status_t * status) | ||
1344 | { | ||
1345 | struct drx397xD_state *s = fe->demodulator_priv; | ||
1346 | int lockstat; | ||
1347 | |||
1348 | GetLockStatus(s, &lockstat); | ||
1349 | /* TODO */ | ||
1350 | // if (lockstat & 1) | ||
1351 | // CorrectSysClockDeviation(s); | ||
1352 | |||
1353 | *status = 0; | ||
1354 | if (lockstat & 2) { | ||
1355 | CorrectSysClockDeviation(s); | ||
1356 | ConfigureMPEGOutput(s, 1); | ||
1357 | *status = FE_HAS_LOCK | FE_HAS_SYNC | FE_HAS_VITERBI; | ||
1358 | } | ||
1359 | if (lockstat & 4) { | ||
1360 | *status |= FE_HAS_CARRIER | FE_HAS_SIGNAL; | ||
1361 | } | ||
1362 | |||
1363 | return 0; | ||
1364 | } | ||
1365 | |||
1366 | static int drx397x_read_ber(struct dvb_frontend *fe, unsigned int *ber) | ||
1367 | { | ||
1368 | *ber = 0; | ||
1369 | return 0; | ||
1370 | } | ||
1371 | |||
1372 | static int drx397x_read_snr(struct dvb_frontend *fe, u16 * snr) | ||
1373 | { | ||
1374 | *snr = 0; | ||
1375 | return 0; | ||
1376 | } | ||
1377 | |||
1378 | static int drx397x_read_signal_strength(struct dvb_frontend *fe, u16 * strength) | ||
1379 | { | ||
1380 | struct drx397xD_state *s = fe->demodulator_priv; | ||
1381 | int rc; | ||
1382 | |||
1383 | if (s->config.ifagc.d00 == 2) { | ||
1384 | *strength = 0xffff; | ||
1385 | return 0; | ||
1386 | } | ||
1387 | rc = RD16(s, 0x0c20035); | ||
1388 | if (rc < 0) { | ||
1389 | *strength = 0; | ||
1390 | return 0; | ||
1391 | } | ||
1392 | rc &= 0x3ff; | ||
1393 | /* Signal strength is calculated using the following formula: | ||
1394 | * | ||
1395 | * a = 2200 * 150 / (2200 + 150); | ||
1396 | * a = a * 3300 / (a + 820); | ||
1397 | * b = 2200 * 3300 / (2200 + 820); | ||
1398 | * c = (((b-a) * rc) >> 10 + a) << 4; | ||
1399 | * strength = ~c & 0xffff; | ||
1400 | * | ||
1401 | * The following does the same but with less rounding errors: | ||
1402 | */ | ||
1403 | *strength = ~(7720 + (rc * 30744 >> 10)); | ||
1404 | return 0; | ||
1405 | } | ||
1406 | |||
1407 | static int drx397x_read_ucblocks(struct dvb_frontend *fe, | ||
1408 | unsigned int *ucblocks) | ||
1409 | { | ||
1410 | *ucblocks = 0; | ||
1411 | return 0; | ||
1412 | } | ||
1413 | |||
1414 | static int drx397x_sleep(struct dvb_frontend *fe) | ||
1415 | { | ||
1416 | return 0; | ||
1417 | } | ||
1418 | |||
1419 | static void drx397x_release(struct dvb_frontend *fe) | ||
1420 | { | ||
1421 | struct drx397xD_state *s = fe->demodulator_priv; | ||
1422 | printk(KERN_INFO "%s: release demodulator\n", mod_name); | ||
1423 | if (s) { | ||
1424 | drx_release_fw(s); | ||
1425 | kfree(s); | ||
1426 | } | ||
1427 | |||
1428 | } | ||
1429 | |||
1430 | static struct dvb_frontend_ops drx397x_ops = { | ||
1431 | |||
1432 | .info = { | ||
1433 | .name = "Micronas DRX397xD DVB-T Frontend", | ||
1434 | .type = FE_OFDM, | ||
1435 | .frequency_min = 47125000, | ||
1436 | .frequency_max = 855250000, | ||
1437 | .frequency_stepsize = 166667, | ||
1438 | .frequency_tolerance = 0, | ||
1439 | .caps = /* 0x0C01B2EAE */ | ||
1440 | FE_CAN_FEC_1_2 | // = 0x2, | ||
1441 | FE_CAN_FEC_2_3 | // = 0x4, | ||
1442 | FE_CAN_FEC_3_4 | // = 0x8, | ||
1443 | FE_CAN_FEC_5_6 | // = 0x20, | ||
1444 | FE_CAN_FEC_7_8 | // = 0x80, | ||
1445 | FE_CAN_FEC_AUTO | // = 0x200, | ||
1446 | FE_CAN_QPSK | // = 0x400, | ||
1447 | FE_CAN_QAM_16 | // = 0x800, | ||
1448 | FE_CAN_QAM_64 | // = 0x2000, | ||
1449 | FE_CAN_QAM_AUTO | // = 0x10000, | ||
1450 | FE_CAN_TRANSMISSION_MODE_AUTO | // = 0x20000, | ||
1451 | FE_CAN_GUARD_INTERVAL_AUTO | // = 0x80000, | ||
1452 | FE_CAN_HIERARCHY_AUTO | // = 0x100000, | ||
1453 | FE_CAN_RECOVER | // = 0x40000000, | ||
1454 | FE_CAN_MUTE_TS // = 0x80000000 | ||
1455 | }, | ||
1456 | |||
1457 | .release = drx397x_release, | ||
1458 | .init = drx397x_init, | ||
1459 | .sleep = drx397x_sleep, | ||
1460 | |||
1461 | .set_frontend = drx397x_set_frontend, | ||
1462 | .get_tune_settings = drx397x_get_tune_settings, | ||
1463 | .get_frontend = drx397x_get_frontend, | ||
1464 | |||
1465 | .read_status = drx397x_read_status, | ||
1466 | .read_snr = drx397x_read_snr, | ||
1467 | .read_signal_strength = drx397x_read_signal_strength, | ||
1468 | .read_ber = drx397x_read_ber, | ||
1469 | .read_ucblocks = drx397x_read_ucblocks, | ||
1470 | }; | ||
1471 | |||
1472 | struct dvb_frontend *drx397xD_attach(const struct drx397xD_config *config, | ||
1473 | struct i2c_adapter *i2c) | ||
1474 | { | ||
1475 | struct drx397xD_state *s = NULL; | ||
1476 | |||
1477 | /* allocate memory for the internal state */ | ||
1478 | s = kzalloc(sizeof(struct drx397xD_state), GFP_KERNEL); | ||
1479 | if (s == NULL) | ||
1480 | goto error; | ||
1481 | |||
1482 | /* setup the state */ | ||
1483 | s->i2c = i2c; | ||
1484 | memcpy(&s->config, config, sizeof(struct drx397xD_config)); | ||
1485 | |||
1486 | /* check if the demod is there */ | ||
1487 | if (RD16(s, 0x2410019) < 0) | ||
1488 | goto error; | ||
1489 | |||
1490 | /* create dvb_frontend */ | ||
1491 | memcpy(&s->frontend.ops, &drx397x_ops, sizeof(struct dvb_frontend_ops)); | ||
1492 | s->frontend.demodulator_priv = s; | ||
1493 | |||
1494 | return &s->frontend; | ||
1495 | error: | ||
1496 | kfree(s); | ||
1497 | return NULL; | ||
1498 | } | ||
1499 | |||
1500 | MODULE_DESCRIPTION("Micronas DRX397xD DVB-T Frontend"); | ||
1501 | MODULE_AUTHOR("Henk Vergonet"); | ||
1502 | MODULE_LICENSE("GPL"); | ||
1503 | |||
1504 | EXPORT_SYMBOL(drx397xD_attach); | ||
diff --git a/drivers/media/dvb/frontends/drx397xD.h b/drivers/media/dvb/frontends/drx397xD.h new file mode 100644 index 000000000000..ddc7a07971b7 --- /dev/null +++ b/drivers/media/dvb/frontends/drx397xD.h | |||
@@ -0,0 +1,130 @@ | |||
1 | /* | ||
2 | * Driver for Micronas DVB-T drx397xD demodulator | ||
3 | * | ||
4 | * Copyright (C) 2007 Henk vergonet <Henk.Vergonet@gmail.com> | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify | ||
7 | * it under the terms of the GNU General Public License as published by | ||
8 | * the Free Software Foundation; either version 2 of the License, or | ||
9 | * (at your option) any later version. | ||
10 | * | ||
11 | * This program is distributed in the hope that it will be useful, | ||
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
14 | * | ||
15 | * GNU General Public License for more details. | ||
16 | * | ||
17 | * You should have received a copy of the GNU General Public License | ||
18 | * along with this program; if not, write to the Free Software | ||
19 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.= | ||
20 | */ | ||
21 | |||
22 | #ifndef _DRX397XD_H_INCLUDED | ||
23 | #define _DRX397XD_H_INCLUDED | ||
24 | |||
25 | #include <linux/dvb/frontend.h> | ||
26 | |||
27 | #define DRX_F_STEPSIZE 166667 | ||
28 | #define DRX_F_OFFSET 36000000 | ||
29 | |||
30 | #define I2C_ADR_C0(x) \ | ||
31 | ( (u32)cpu_to_le32( \ | ||
32 | (u32)( \ | ||
33 | (((u32)(x) & (u32)0x000000ffUL) ) | \ | ||
34 | (((u32)(x) & (u32)0x0000ff00UL) << 16) | \ | ||
35 | (((u32)(x) & (u32)0x0fff0000UL) >> 8) | \ | ||
36 | ( (u32)0x00c00000UL) \ | ||
37 | )) \ | ||
38 | ) | ||
39 | |||
40 | #define I2C_ADR_E0(x) \ | ||
41 | ( (u32)cpu_to_le32( \ | ||
42 | (u32)( \ | ||
43 | (((u32)(x) & (u32)0x000000ffUL) ) | \ | ||
44 | (((u32)(x) & (u32)0x0000ff00UL) << 16) | \ | ||
45 | (((u32)(x) & (u32)0x0fff0000UL) >> 8) | \ | ||
46 | ( (u32)0x00e00000UL) \ | ||
47 | )) \ | ||
48 | ) | ||
49 | |||
50 | struct drx397xD_CfgRfAgc /* 0x7c */ | ||
51 | { | ||
52 | int d00; /* 2 */ | ||
53 | u16 w04; | ||
54 | u16 w06; | ||
55 | }; | ||
56 | |||
57 | struct drx397xD_CfgIfAgc /* 0x68 */ | ||
58 | { | ||
59 | int d00; /* 0 */ | ||
60 | u16 w04; /* 0 */ | ||
61 | u16 w06; | ||
62 | u16 w08; | ||
63 | u16 w0A; | ||
64 | u16 w0C; | ||
65 | }; | ||
66 | |||
67 | struct drx397xD_s20 { | ||
68 | int d04; | ||
69 | u32 d18; | ||
70 | u32 d1C; | ||
71 | u32 d20; | ||
72 | u32 d14; | ||
73 | u32 d24; | ||
74 | u32 d0C; | ||
75 | u32 d08; | ||
76 | }; | ||
77 | |||
78 | struct drx397xD_config | ||
79 | { | ||
80 | /* demodulator's I2C address */ | ||
81 | u8 demod_address; /* 0x0f */ | ||
82 | |||
83 | struct drx397xD_CfgIfAgc ifagc; /* 0x68 */ | ||
84 | struct drx397xD_CfgRfAgc rfagc; /* 0x7c */ | ||
85 | u32 s20d24; | ||
86 | |||
87 | /* HI_CfgCommand parameters */ | ||
88 | u16 w50, w52, /* w54, */ w56; | ||
89 | |||
90 | int d5C; | ||
91 | int d60; | ||
92 | int d48; | ||
93 | int d28; | ||
94 | |||
95 | u32 f_if; /* d14: intermediate frequency [Hz] */ | ||
96 | /* 36000000 on Cinergy 2400i DT */ | ||
97 | /* 42800000 on Pinnacle Hybrid PRO 330e */ | ||
98 | |||
99 | u16 f_osc; /* s66: 48000 oscillator frequency [kHz] */ | ||
100 | |||
101 | u16 w92; /* 20000 */ | ||
102 | |||
103 | u16 wA0; | ||
104 | u16 w98; | ||
105 | u16 w9A; | ||
106 | |||
107 | u16 w9C; /* 0xe0 */ | ||
108 | u16 w9E; /* 0x00 */ | ||
109 | |||
110 | /* used for signal strength calculations in | ||
111 | drx397x_read_signal_strength | ||
112 | */ | ||
113 | u16 ss78; // 2200 | ||
114 | u16 ss7A; // 150 | ||
115 | u16 ss76; // 820 | ||
116 | }; | ||
117 | |||
118 | #if defined(CONFIG_DVB_DRX397XD) || (defined(CONFIG_DVB_DRX397XD_MODULE) && defined(MODULE)) | ||
119 | extern struct dvb_frontend* drx397xD_attach(const struct drx397xD_config *config, | ||
120 | struct i2c_adapter *i2c); | ||
121 | #else | ||
122 | static inline struct dvb_frontend* drx397xD_attach(const struct drx397xD_config *config, | ||
123 | struct i2c_adapter *i2c) | ||
124 | { | ||
125 | printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __FUNCTION__); | ||
126 | return NULL; | ||
127 | } | ||
128 | #endif /* CONFIG_DVB_DRX397XD */ | ||
129 | |||
130 | #endif /* _DRX397XD_H_INCLUDED */ | ||
diff --git a/drivers/media/dvb/frontends/drx397xD_fw.h b/drivers/media/dvb/frontends/drx397xD_fw.h new file mode 100644 index 000000000000..01de02a81cd4 --- /dev/null +++ b/drivers/media/dvb/frontends/drx397xD_fw.h | |||
@@ -0,0 +1,40 @@ | |||
1 | /* | ||
2 | * Firmware definitions for Micronas drx397xD | ||
3 | * | ||
4 | * Copyright (C) 2007 Henk Vergonet <Henk.Vergonet@gmail.com> | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify | ||
7 | * it under the terms of the GNU General Public License as published by | ||
8 | * the Free Software Foundation; either version 2 of the License, or | ||
9 | * (at your option) any later version. | ||
10 | * | ||
11 | * This program is distributed in the hope that it will be useful, | ||
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
14 | * GNU General Public License for more details. | ||
15 | * | ||
16 | * You should have received a copy of the GNU General Public License | ||
17 | * along with this program; If not, see <http://www.gnu.org/licenses/>. | ||
18 | */ | ||
19 | |||
20 | #ifdef _FW_ENTRY | ||
21 | _FW_ENTRY("drx397xD.A2.fw", DRXD_FW_A2 = 0 ), | ||
22 | _FW_ENTRY("drx397xD.B1.fw", DRXD_FW_B1 ), | ||
23 | #undef _FW_ENTRY | ||
24 | #endif /* _FW_ENTRY */ | ||
25 | |||
26 | #ifdef _BLOB_ENTRY | ||
27 | _BLOB_ENTRY("InitAtomicRead", DRXD_InitAtomicRead = 0 ), | ||
28 | _BLOB_ENTRY("InitCE", DRXD_InitCE ), | ||
29 | _BLOB_ENTRY("InitCP", DRXD_InitCP ), | ||
30 | _BLOB_ENTRY("InitEC", DRXD_InitEC ), | ||
31 | _BLOB_ENTRY("InitEQ", DRXD_InitEQ ), | ||
32 | _BLOB_ENTRY("InitFE_1", DRXD_InitFE_1 ), | ||
33 | _BLOB_ENTRY("InitFE_2", DRXD_InitFE_2 ), | ||
34 | _BLOB_ENTRY("InitFT", DRXD_InitFT ), | ||
35 | _BLOB_ENTRY("InitSC", DRXD_InitSC ), | ||
36 | _BLOB_ENTRY("ResetCEFR", DRXD_ResetCEFR ), | ||
37 | _BLOB_ENTRY("ResetECRAM", DRXD_ResetECRAM ), | ||
38 | _BLOB_ENTRY("microcode", DRXD_microcode ), | ||
39 | #undef _BLOB_ENTRY | ||
40 | #endif /* _BLOB_ENTRY */ | ||
diff --git a/drivers/media/dvb/frontends/z0194a.h b/drivers/media/dvb/frontends/z0194a.h new file mode 100644 index 000000000000..d2876d2e1769 --- /dev/null +++ b/drivers/media/dvb/frontends/z0194a.h | |||
@@ -0,0 +1,97 @@ | |||
1 | /* z0194a.h Sharp z0194a tuner support | ||
2 | * | ||
3 | * Copyright (C) 2008 Igor M. Liplianin (liplianin@me.by) | ||
4 | * | ||
5 | * This program is free software; you can redistribute it and/or modify it | ||
6 | * under the terms of the GNU General Public License as published by the | ||
7 | * Free Software Foundation, version 2. | ||
8 | * | ||
9 | * see Documentation/dvb/README.dvb-usb for more information | ||
10 | */ | ||
11 | |||
12 | #ifndef Z0194A | ||
13 | #define Z0194A | ||
14 | |||
15 | static int sharp_z0194a__set_symbol_rate(struct dvb_frontend *fe, | ||
16 | u32 srate, u32 ratio) | ||
17 | { | ||
18 | u8 aclk = 0; | ||
19 | u8 bclk = 0; | ||
20 | |||
21 | if (srate < 1500000) { | ||
22 | aclk = 0xb7; bclk = 0x47; } | ||
23 | else if (srate < 3000000) { | ||
24 | aclk = 0xb7; bclk = 0x4b; } | ||
25 | else if (srate < 7000000) { | ||
26 | aclk = 0xb7; bclk = 0x4f; } | ||
27 | else if (srate < 14000000) { | ||
28 | aclk = 0xb7; bclk = 0x53; } | ||
29 | else if (srate < 30000000) { | ||
30 | aclk = 0xb6; bclk = 0x53; } | ||
31 | else if (srate < 45000000) { | ||
32 | aclk = 0xb4; bclk = 0x51; } | ||
33 | |||
34 | stv0299_writereg(fe, 0x13, aclk); | ||
35 | stv0299_writereg(fe, 0x14, bclk); | ||
36 | stv0299_writereg(fe, 0x1f, (ratio >> 16) & 0xff); | ||
37 | stv0299_writereg(fe, 0x20, (ratio >> 8) & 0xff); | ||
38 | stv0299_writereg(fe, 0x21, (ratio) & 0xf0); | ||
39 | |||
40 | return 0; | ||
41 | } | ||
42 | |||
43 | static u8 sharp_z0194a__inittab[] = { | ||
44 | 0x01, 0x15, | ||
45 | 0x02, 0x00, | ||
46 | 0x03, 0x00, | ||
47 | 0x04, 0x7d, /* F22FR = 0x7d, F22 = f_VCO / 128 / 0x7d = 22 kHz */ | ||
48 | 0x05, 0x35, /* I2CT = 0, SCLT = 1, SDAT = 1 */ | ||
49 | 0x06, 0x40, /* DAC not used, set to high impendance mode */ | ||
50 | 0x07, 0x00, /* DAC LSB */ | ||
51 | 0x08, 0x40, /* DiSEqC off, LNB power on OP2/LOCK pin on */ | ||
52 | 0x09, 0x00, /* FIFO */ | ||
53 | 0x0c, 0x51, /* OP1 ctl = Normal, OP1 val = 1 (LNB Power ON) */ | ||
54 | 0x0d, 0x82, /* DC offset compensation = ON, beta_agc1 = 2 */ | ||
55 | 0x0e, 0x23, /* alpha_tmg = 2, beta_tmg = 3 */ | ||
56 | 0x10, 0x3f, /* AGC2 0x3d */ | ||
57 | 0x11, 0x84, | ||
58 | 0x12, 0xb9, | ||
59 | 0x15, 0xc9, /* lock detector threshold */ | ||
60 | 0x16, 0x00, | ||
61 | 0x17, 0x00, | ||
62 | 0x18, 0x00, | ||
63 | 0x19, 0x00, | ||
64 | 0x1a, 0x00, | ||
65 | 0x1f, 0x50, | ||
66 | 0x20, 0x00, | ||
67 | 0x21, 0x00, | ||
68 | 0x22, 0x00, | ||
69 | 0x23, 0x00, | ||
70 | 0x28, 0x00, /* out imp: normal out type: parallel FEC mode:0 */ | ||
71 | 0x29, 0x1e, /* 1/2 threshold */ | ||
72 | 0x2a, 0x14, /* 2/3 threshold */ | ||
73 | 0x2b, 0x0f, /* 3/4 threshold */ | ||
74 | 0x2c, 0x09, /* 5/6 threshold */ | ||
75 | 0x2d, 0x05, /* 7/8 threshold */ | ||
76 | 0x2e, 0x01, | ||
77 | 0x31, 0x1f, /* test all FECs */ | ||
78 | 0x32, 0x19, /* viterbi and synchro search */ | ||
79 | 0x33, 0xfc, /* rs control */ | ||
80 | 0x34, 0x93, /* error control */ | ||
81 | 0x0f, 0x52, | ||
82 | 0xff, 0xff | ||
83 | }; | ||
84 | |||
85 | static struct stv0299_config sharp_z0194a_config = { | ||
86 | .demod_address = 0x68, | ||
87 | .inittab = sharp_z0194a__inittab, | ||
88 | .mclk = 88000000UL, | ||
89 | .invert = 1, | ||
90 | .skip_reinit = 0, | ||
91 | .lock_output = STV0299_LOCKOUTPUT_1, | ||
92 | .volt13_op0_op1 = STV0299_VOLT13_OP1, | ||
93 | .min_delay_ms = 100, | ||
94 | .set_symbol_rate = sharp_z0194a__set_symbol_rate, | ||
95 | }; | ||
96 | |||
97 | #endif | ||
diff --git a/drivers/media/dvb/siano/smscoreapi.c b/drivers/media/dvb/siano/smscoreapi.c index b4b8ed795c95..c5f45fed69dc 100644 --- a/drivers/media/dvb/siano/smscoreapi.c +++ b/drivers/media/dvb/siano/smscoreapi.c | |||
@@ -110,12 +110,12 @@ struct smscore_registry_entry_t { | |||
110 | enum sms_device_type_st type; | 110 | enum sms_device_type_st type; |
111 | }; | 111 | }; |
112 | 112 | ||
113 | struct list_head g_smscore_notifyees; | 113 | static struct list_head g_smscore_notifyees; |
114 | struct list_head g_smscore_devices; | 114 | static struct list_head g_smscore_devices; |
115 | struct mutex g_smscore_deviceslock; | 115 | static struct mutex g_smscore_deviceslock; |
116 | 116 | ||
117 | struct list_head g_smscore_registry; | 117 | static struct list_head g_smscore_registry; |
118 | struct mutex g_smscore_registrylock; | 118 | static struct mutex g_smscore_registrylock; |
119 | 119 | ||
120 | static int default_mode = 4; | 120 | static int default_mode = 4; |
121 | 121 | ||
@@ -1187,7 +1187,7 @@ int smsclient_sendrequest(struct smscore_client_t *client, | |||
1187 | } | 1187 | } |
1188 | 1188 | ||
1189 | 1189 | ||
1190 | int smscore_module_init(void) | 1190 | static int __init smscore_module_init(void) |
1191 | { | 1191 | { |
1192 | int rc = 0; | 1192 | int rc = 0; |
1193 | 1193 | ||
@@ -1209,7 +1209,7 @@ int smscore_module_init(void) | |||
1209 | return rc; | 1209 | return rc; |
1210 | } | 1210 | } |
1211 | 1211 | ||
1212 | void smscore_module_exit(void) | 1212 | static void __exit smscore_module_exit(void) |
1213 | { | 1213 | { |
1214 | 1214 | ||
1215 | kmutex_lock(&g_smscore_deviceslock); | 1215 | kmutex_lock(&g_smscore_deviceslock); |
diff --git a/drivers/media/dvb/siano/smsdvb.c b/drivers/media/dvb/siano/smsdvb.c index 6f9c18563867..229274a14110 100644 --- a/drivers/media/dvb/siano/smsdvb.c +++ b/drivers/media/dvb/siano/smsdvb.c | |||
@@ -27,8 +27,8 @@ | |||
27 | 27 | ||
28 | DVB_DEFINE_MOD_OPT_ADAPTER_NR(adapter_nr); | 28 | DVB_DEFINE_MOD_OPT_ADAPTER_NR(adapter_nr); |
29 | 29 | ||
30 | struct list_head g_smsdvb_clients; | 30 | static struct list_head g_smsdvb_clients; |
31 | struct mutex g_smsdvb_clientslock; | 31 | static struct mutex g_smsdvb_clientslock; |
32 | 32 | ||
33 | static int smsdvb_onresponse(void *context, struct smscore_buffer_t *cb) | 33 | static int smsdvb_onresponse(void *context, struct smscore_buffer_t *cb) |
34 | { | 34 | { |
diff --git a/drivers/media/dvb/ttpci/Kconfig b/drivers/media/dvb/ttpci/Kconfig index 87c973ac668b..41b5a988b619 100644 --- a/drivers/media/dvb/ttpci/Kconfig +++ b/drivers/media/dvb/ttpci/Kconfig | |||
@@ -5,8 +5,6 @@ config TTPCI_EEPROM | |||
5 | config DVB_AV7110 | 5 | config DVB_AV7110 |
6 | tristate "AV7110 cards" | 6 | tristate "AV7110 cards" |
7 | depends on DVB_CORE && PCI && I2C | 7 | depends on DVB_CORE && PCI && I2C |
8 | depends on HOTPLUG | ||
9 | select FW_LOADER if !DVB_AV7110_FIRMWARE | ||
10 | select TTPCI_EEPROM | 8 | select TTPCI_EEPROM |
11 | select VIDEO_SAA7146_VV | 9 | select VIDEO_SAA7146_VV |
12 | depends on VIDEO_DEV # dependencies of VIDEO_SAA7146_VV | 10 | depends on VIDEO_DEV # dependencies of VIDEO_SAA7146_VV |
@@ -127,14 +125,12 @@ config DVB_BUDGET_AV | |||
127 | depends on DVB_BUDGET_CORE && I2C | 125 | depends on DVB_BUDGET_CORE && I2C |
128 | select VIDEO_SAA7146_VV | 126 | select VIDEO_SAA7146_VV |
129 | depends on VIDEO_DEV # dependencies of VIDEO_SAA7146_VV | 127 | depends on VIDEO_DEV # dependencies of VIDEO_SAA7146_VV |
130 | depends on HOTPLUG # dependency of FW_LOADER | ||
131 | select DVB_PLL if !DVB_FE_CUSTOMISE | 128 | select DVB_PLL if !DVB_FE_CUSTOMISE |
132 | select DVB_STV0299 if !DVB_FE_CUSTOMISE | 129 | select DVB_STV0299 if !DVB_FE_CUSTOMISE |
133 | select DVB_TDA1004X if !DVB_FE_CUSTOMISE | 130 | select DVB_TDA1004X if !DVB_FE_CUSTOMISE |
134 | select DVB_TDA10021 if !DVB_FE_CUSTOMISE | 131 | select DVB_TDA10021 if !DVB_FE_CUSTOMISE |
135 | select DVB_TDA10023 if !DVB_FE_CUSTOMISE | 132 | select DVB_TDA10023 if !DVB_FE_CUSTOMISE |
136 | select DVB_TUA6100 if !DVB_FE_CUSTOMISE | 133 | select DVB_TUA6100 if !DVB_FE_CUSTOMISE |
137 | select FW_LOADER | ||
138 | help | 134 | help |
139 | Support for simple SAA7146 based DVB cards | 135 | Support for simple SAA7146 based DVB cards |
140 | (so called Budget- or Nova-PCI cards) without onboard | 136 | (so called Budget- or Nova-PCI cards) without onboard |
diff --git a/drivers/media/dvb/ttusb-dec/Kconfig b/drivers/media/dvb/ttusb-dec/Kconfig index a23cc0aa17d3..d5f48a3102bd 100644 --- a/drivers/media/dvb/ttusb-dec/Kconfig +++ b/drivers/media/dvb/ttusb-dec/Kconfig | |||
@@ -1,8 +1,6 @@ | |||
1 | config DVB_TTUSB_DEC | 1 | config DVB_TTUSB_DEC |
2 | tristate "Technotrend/Hauppauge USB DEC devices" | 2 | tristate "Technotrend/Hauppauge USB DEC devices" |
3 | depends on DVB_CORE && USB && INPUT | 3 | depends on DVB_CORE && USB && INPUT |
4 | depends on HOTPLUG # due to FW_LOADER | ||
5 | select FW_LOADER | ||
6 | select CRC32 | 4 | select CRC32 |
7 | help | 5 | help |
8 | Support for external USB adapters designed by Technotrend and | 6 | Support for external USB adapters designed by Technotrend and |
diff --git a/drivers/media/radio/dsbr100.c b/drivers/media/radio/dsbr100.c index 4e3f83e4e48f..1ed88f3abe61 100644 --- a/drivers/media/radio/dsbr100.c +++ b/drivers/media/radio/dsbr100.c | |||
@@ -85,6 +85,7 @@ | |||
85 | #include <linux/input.h> | 85 | #include <linux/input.h> |
86 | #include <linux/videodev2.h> | 86 | #include <linux/videodev2.h> |
87 | #include <media/v4l2-common.h> | 87 | #include <media/v4l2-common.h> |
88 | #include <media/v4l2-ioctl.h> | ||
88 | #include <linux/usb.h> | 89 | #include <linux/usb.h> |
89 | 90 | ||
90 | /* | 91 | /* |
@@ -444,14 +445,7 @@ static const struct file_operations usb_dsbr100_fops = { | |||
444 | .llseek = no_llseek, | 445 | .llseek = no_llseek, |
445 | }; | 446 | }; |
446 | 447 | ||
447 | /* V4L2 interface */ | 448 | static const struct v4l2_ioctl_ops usb_dsbr100_ioctl_ops = { |
448 | static struct video_device dsbr100_videodev_template = | ||
449 | { | ||
450 | .owner = THIS_MODULE, | ||
451 | .name = "D-Link DSB-R 100", | ||
452 | .type = VID_TYPE_TUNER, | ||
453 | .fops = &usb_dsbr100_fops, | ||
454 | .release = video_device_release, | ||
455 | .vidioc_querycap = vidioc_querycap, | 449 | .vidioc_querycap = vidioc_querycap, |
456 | .vidioc_g_tuner = vidioc_g_tuner, | 450 | .vidioc_g_tuner = vidioc_g_tuner, |
457 | .vidioc_s_tuner = vidioc_s_tuner, | 451 | .vidioc_s_tuner = vidioc_s_tuner, |
@@ -466,6 +460,14 @@ static struct video_device dsbr100_videodev_template = | |||
466 | .vidioc_s_input = vidioc_s_input, | 460 | .vidioc_s_input = vidioc_s_input, |
467 | }; | 461 | }; |
468 | 462 | ||
463 | /* V4L2 interface */ | ||
464 | static struct video_device dsbr100_videodev_template = { | ||
465 | .name = "D-Link DSB-R 100", | ||
466 | .fops = &usb_dsbr100_fops, | ||
467 | .ioctl_ops = &usb_dsbr100_ioctl_ops, | ||
468 | .release = video_device_release, | ||
469 | }; | ||
470 | |||
469 | /* check if the device is present and register with v4l and | 471 | /* check if the device is present and register with v4l and |
470 | usb if it is */ | 472 | usb if it is */ |
471 | static int usb_dsbr100_probe(struct usb_interface *intf, | 473 | static int usb_dsbr100_probe(struct usb_interface *intf, |
diff --git a/drivers/media/radio/miropcm20-radio.c b/drivers/media/radio/miropcm20-radio.c index 09fe6f1cdf14..7fd7ee2d32c1 100644 --- a/drivers/media/radio/miropcm20-radio.c +++ b/drivers/media/radio/miropcm20-radio.c | |||
@@ -23,6 +23,7 @@ | |||
23 | #include <linux/init.h> | 23 | #include <linux/init.h> |
24 | #include <linux/videodev.h> | 24 | #include <linux/videodev.h> |
25 | #include <media/v4l2-common.h> | 25 | #include <media/v4l2-common.h> |
26 | #include <media/v4l2-ioctl.h> | ||
26 | #include "oss/aci.h" | 27 | #include "oss/aci.h" |
27 | #include "miropcm20-rds-core.h" | 28 | #include "miropcm20-rds-core.h" |
28 | 29 | ||
@@ -228,9 +229,7 @@ static const struct file_operations pcm20_fops = { | |||
228 | }; | 229 | }; |
229 | 230 | ||
230 | static struct video_device pcm20_radio = { | 231 | static struct video_device pcm20_radio = { |
231 | .owner = THIS_MODULE, | ||
232 | .name = "Miro PCM 20 radio", | 232 | .name = "Miro PCM 20 radio", |
233 | .type = VID_TYPE_TUNER, | ||
234 | .fops = &pcm20_fops, | 233 | .fops = &pcm20_fops, |
235 | .priv = &pcm20_unit | 234 | .priv = &pcm20_unit |
236 | }; | 235 | }; |
diff --git a/drivers/media/radio/radio-aimslab.c b/drivers/media/radio/radio-aimslab.c index 1ec18ed1a733..eba9209b3024 100644 --- a/drivers/media/radio/radio-aimslab.c +++ b/drivers/media/radio/radio-aimslab.c | |||
@@ -36,6 +36,7 @@ | |||
36 | #include <asm/uaccess.h> /* copy to/from user */ | 36 | #include <asm/uaccess.h> /* copy to/from user */ |
37 | #include <linux/videodev2.h> /* kernel radio structs */ | 37 | #include <linux/videodev2.h> /* kernel radio structs */ |
38 | #include <media/v4l2-common.h> | 38 | #include <media/v4l2-common.h> |
39 | #include <media/v4l2-ioctl.h> | ||
39 | 40 | ||
40 | #include <linux/version.h> /* for KERNEL_VERSION MACRO */ | 41 | #include <linux/version.h> /* for KERNEL_VERSION MACRO */ |
41 | #define RADIO_VERSION KERNEL_VERSION(0,0,2) | 42 | #define RADIO_VERSION KERNEL_VERSION(0,0,2) |
@@ -388,12 +389,7 @@ static const struct file_operations rtrack_fops = { | |||
388 | .llseek = no_llseek, | 389 | .llseek = no_llseek, |
389 | }; | 390 | }; |
390 | 391 | ||
391 | static struct video_device rtrack_radio= | 392 | static const struct v4l2_ioctl_ops rtrack_ioctl_ops = { |
392 | { | ||
393 | .owner = THIS_MODULE, | ||
394 | .name = "RadioTrack radio", | ||
395 | .type = VID_TYPE_TUNER, | ||
396 | .fops = &rtrack_fops, | ||
397 | .vidioc_querycap = vidioc_querycap, | 393 | .vidioc_querycap = vidioc_querycap, |
398 | .vidioc_g_tuner = vidioc_g_tuner, | 394 | .vidioc_g_tuner = vidioc_g_tuner, |
399 | .vidioc_s_tuner = vidioc_s_tuner, | 395 | .vidioc_s_tuner = vidioc_s_tuner, |
@@ -408,6 +404,12 @@ static struct video_device rtrack_radio= | |||
408 | .vidioc_s_ctrl = vidioc_s_ctrl, | 404 | .vidioc_s_ctrl = vidioc_s_ctrl, |
409 | }; | 405 | }; |
410 | 406 | ||
407 | static struct video_device rtrack_radio = { | ||
408 | .name = "RadioTrack radio", | ||
409 | .fops = &rtrack_fops, | ||
410 | .ioctl_ops = &rtrack_ioctl_ops, | ||
411 | }; | ||
412 | |||
411 | static int __init rtrack_init(void) | 413 | static int __init rtrack_init(void) |
412 | { | 414 | { |
413 | if(io==-1) | 415 | if(io==-1) |
diff --git a/drivers/media/radio/radio-aztech.c b/drivers/media/radio/radio-aztech.c index 46cdb549eac7..3fe5504428c5 100644 --- a/drivers/media/radio/radio-aztech.c +++ b/drivers/media/radio/radio-aztech.c | |||
@@ -33,6 +33,7 @@ | |||
33 | #include <asm/uaccess.h> /* copy to/from user */ | 33 | #include <asm/uaccess.h> /* copy to/from user */ |
34 | #include <linux/videodev2.h> /* kernel radio structs */ | 34 | #include <linux/videodev2.h> /* kernel radio structs */ |
35 | #include <media/v4l2-common.h> | 35 | #include <media/v4l2-common.h> |
36 | #include <media/v4l2-ioctl.h> | ||
36 | 37 | ||
37 | #include <linux/version.h> /* for KERNEL_VERSION MACRO */ | 38 | #include <linux/version.h> /* for KERNEL_VERSION MACRO */ |
38 | #define RADIO_VERSION KERNEL_VERSION(0,0,2) | 39 | #define RADIO_VERSION KERNEL_VERSION(0,0,2) |
@@ -352,12 +353,7 @@ static const struct file_operations aztech_fops = { | |||
352 | .llseek = no_llseek, | 353 | .llseek = no_llseek, |
353 | }; | 354 | }; |
354 | 355 | ||
355 | static struct video_device aztech_radio= | 356 | static const struct v4l2_ioctl_ops aztech_ioctl_ops = { |
356 | { | ||
357 | .owner = THIS_MODULE, | ||
358 | .name = "Aztech radio", | ||
359 | .type = VID_TYPE_TUNER, | ||
360 | .fops = &aztech_fops, | ||
361 | .vidioc_querycap = vidioc_querycap, | 357 | .vidioc_querycap = vidioc_querycap, |
362 | .vidioc_g_tuner = vidioc_g_tuner, | 358 | .vidioc_g_tuner = vidioc_g_tuner, |
363 | .vidioc_s_tuner = vidioc_s_tuner, | 359 | .vidioc_s_tuner = vidioc_s_tuner, |
@@ -372,6 +368,12 @@ static struct video_device aztech_radio= | |||
372 | .vidioc_s_ctrl = vidioc_s_ctrl, | 368 | .vidioc_s_ctrl = vidioc_s_ctrl, |
373 | }; | 369 | }; |
374 | 370 | ||
371 | static struct video_device aztech_radio = { | ||
372 | .name = "Aztech radio", | ||
373 | .fops = &aztech_fops, | ||
374 | .ioctl_ops = &aztech_ioctl_ops, | ||
375 | }; | ||
376 | |||
375 | module_param_named(debug,aztech_radio.debug, int, 0644); | 377 | module_param_named(debug,aztech_radio.debug, int, 0644); |
376 | MODULE_PARM_DESC(debug,"activates debug info"); | 378 | MODULE_PARM_DESC(debug,"activates debug info"); |
377 | 379 | ||
diff --git a/drivers/media/radio/radio-cadet.c b/drivers/media/radio/radio-cadet.c index b14db53ea456..6166e726ed72 100644 --- a/drivers/media/radio/radio-cadet.c +++ b/drivers/media/radio/radio-cadet.c | |||
@@ -39,6 +39,7 @@ | |||
39 | #include <asm/uaccess.h> /* copy to/from user */ | 39 | #include <asm/uaccess.h> /* copy to/from user */ |
40 | #include <linux/videodev2.h> /* V4L2 API defs */ | 40 | #include <linux/videodev2.h> /* V4L2 API defs */ |
41 | #include <media/v4l2-common.h> | 41 | #include <media/v4l2-common.h> |
42 | #include <media/v4l2-ioctl.h> | ||
42 | #include <linux/param.h> | 43 | #include <linux/param.h> |
43 | #include <linux/pnp.h> | 44 | #include <linux/pnp.h> |
44 | 45 | ||
@@ -569,12 +570,7 @@ static const struct file_operations cadet_fops = { | |||
569 | .llseek = no_llseek, | 570 | .llseek = no_llseek, |
570 | }; | 571 | }; |
571 | 572 | ||
572 | static struct video_device cadet_radio= | 573 | static const struct v4l2_ioctl_ops cadet_ioctl_ops = { |
573 | { | ||
574 | .owner = THIS_MODULE, | ||
575 | .name = "Cadet radio", | ||
576 | .type = VID_TYPE_TUNER, | ||
577 | .fops = &cadet_fops, | ||
578 | .vidioc_querycap = vidioc_querycap, | 574 | .vidioc_querycap = vidioc_querycap, |
579 | .vidioc_g_tuner = vidioc_g_tuner, | 575 | .vidioc_g_tuner = vidioc_g_tuner, |
580 | .vidioc_s_tuner = vidioc_s_tuner, | 576 | .vidioc_s_tuner = vidioc_s_tuner, |
@@ -589,6 +585,12 @@ static struct video_device cadet_radio= | |||
589 | .vidioc_s_input = vidioc_s_input, | 585 | .vidioc_s_input = vidioc_s_input, |
590 | }; | 586 | }; |
591 | 587 | ||
588 | static struct video_device cadet_radio = { | ||
589 | .name = "Cadet radio", | ||
590 | .fops = &cadet_fops, | ||
591 | .ioctl_ops = &cadet_ioctl_ops, | ||
592 | }; | ||
593 | |||
592 | #ifdef CONFIG_PNP | 594 | #ifdef CONFIG_PNP |
593 | 595 | ||
594 | static struct pnp_device_id cadet_pnp_devices[] = { | 596 | static struct pnp_device_id cadet_pnp_devices[] = { |
diff --git a/drivers/media/radio/radio-gemtek-pci.c b/drivers/media/radio/radio-gemtek-pci.c index de49be971480..36e754e3ffb2 100644 --- a/drivers/media/radio/radio-gemtek-pci.c +++ b/drivers/media/radio/radio-gemtek-pci.c | |||
@@ -46,6 +46,7 @@ | |||
46 | #include <linux/pci.h> | 46 | #include <linux/pci.h> |
47 | #include <linux/videodev2.h> | 47 | #include <linux/videodev2.h> |
48 | #include <media/v4l2-common.h> | 48 | #include <media/v4l2-common.h> |
49 | #include <media/v4l2-ioctl.h> | ||
49 | #include <linux/errno.h> | 50 | #include <linux/errno.h> |
50 | 51 | ||
51 | #include <linux/version.h> /* for KERNEL_VERSION MACRO */ | 52 | #include <linux/version.h> /* for KERNEL_VERSION MACRO */ |
@@ -374,11 +375,7 @@ static const struct file_operations gemtek_pci_fops = { | |||
374 | .llseek = no_llseek, | 375 | .llseek = no_llseek, |
375 | }; | 376 | }; |
376 | 377 | ||
377 | static struct video_device vdev_template = { | 378 | static const struct v4l2_ioctl_ops gemtek_pci_ioctl_ops = { |
378 | .owner = THIS_MODULE, | ||
379 | .name = "Gemtek PCI Radio", | ||
380 | .type = VID_TYPE_TUNER, | ||
381 | .fops = &gemtek_pci_fops, | ||
382 | .vidioc_querycap = vidioc_querycap, | 379 | .vidioc_querycap = vidioc_querycap, |
383 | .vidioc_g_tuner = vidioc_g_tuner, | 380 | .vidioc_g_tuner = vidioc_g_tuner, |
384 | .vidioc_s_tuner = vidioc_s_tuner, | 381 | .vidioc_s_tuner = vidioc_s_tuner, |
@@ -393,6 +390,12 @@ static struct video_device vdev_template = { | |||
393 | .vidioc_s_ctrl = vidioc_s_ctrl, | 390 | .vidioc_s_ctrl = vidioc_s_ctrl, |
394 | }; | 391 | }; |
395 | 392 | ||
393 | static struct video_device vdev_template = { | ||
394 | .name = "Gemtek PCI Radio", | ||
395 | .fops = &gemtek_pci_fops, | ||
396 | .ioctl_ops = &gemtek_pci_ioctl_ops, | ||
397 | }; | ||
398 | |||
396 | static int __devinit gemtek_pci_probe( struct pci_dev *pci_dev, const struct pci_device_id *pci_id ) | 399 | static int __devinit gemtek_pci_probe( struct pci_dev *pci_dev, const struct pci_device_id *pci_id ) |
397 | { | 400 | { |
398 | struct gemtek_pci_card *card; | 401 | struct gemtek_pci_card *card; |
diff --git a/drivers/media/radio/radio-gemtek.c b/drivers/media/radio/radio-gemtek.c index 81f6aeb1cd11..2b1a6221de6d 100644 --- a/drivers/media/radio/radio-gemtek.c +++ b/drivers/media/radio/radio-gemtek.c | |||
@@ -23,6 +23,7 @@ | |||
23 | #include <asm/io.h> /* outb, outb_p */ | 23 | #include <asm/io.h> /* outb, outb_p */ |
24 | #include <asm/uaccess.h> /* copy to/from user */ | 24 | #include <asm/uaccess.h> /* copy to/from user */ |
25 | #include <linux/videodev2.h> /* kernel radio structs */ | 25 | #include <linux/videodev2.h> /* kernel radio structs */ |
26 | #include <media/v4l2-ioctl.h> | ||
26 | #include <media/v4l2-common.h> | 27 | #include <media/v4l2-common.h> |
27 | #include <linux/spinlock.h> | 28 | #include <linux/spinlock.h> |
28 | 29 | ||
@@ -552,11 +553,7 @@ static int vidioc_s_audio(struct file *file, void *priv, struct v4l2_audio *a) | |||
552 | return 0; | 553 | return 0; |
553 | } | 554 | } |
554 | 555 | ||
555 | static struct video_device gemtek_radio = { | 556 | static const struct v4l2_ioctl_ops gemtek_ioctl_ops = { |
556 | .owner = THIS_MODULE, | ||
557 | .name = "GemTek Radio card", | ||
558 | .type = VID_TYPE_TUNER, | ||
559 | .fops = &gemtek_fops, | ||
560 | .vidioc_querycap = vidioc_querycap, | 557 | .vidioc_querycap = vidioc_querycap, |
561 | .vidioc_g_tuner = vidioc_g_tuner, | 558 | .vidioc_g_tuner = vidioc_g_tuner, |
562 | .vidioc_s_tuner = vidioc_s_tuner, | 559 | .vidioc_s_tuner = vidioc_s_tuner, |
@@ -571,6 +568,12 @@ static struct video_device gemtek_radio = { | |||
571 | .vidioc_s_ctrl = vidioc_s_ctrl | 568 | .vidioc_s_ctrl = vidioc_s_ctrl |
572 | }; | 569 | }; |
573 | 570 | ||
571 | static struct video_device gemtek_radio = { | ||
572 | .name = "GemTek Radio card", | ||
573 | .fops = &gemtek_fops, | ||
574 | .ioctl_ops = &gemtek_ioctl_ops, | ||
575 | }; | ||
576 | |||
574 | /* | 577 | /* |
575 | * Initialization / cleanup related stuff. | 578 | * Initialization / cleanup related stuff. |
576 | */ | 579 | */ |
diff --git a/drivers/media/radio/radio-maestro.c b/drivers/media/radio/radio-maestro.c index bddd3c409aa9..0ada1c697e8a 100644 --- a/drivers/media/radio/radio-maestro.c +++ b/drivers/media/radio/radio-maestro.c | |||
@@ -27,6 +27,7 @@ | |||
27 | #include <linux/pci.h> | 27 | #include <linux/pci.h> |
28 | #include <linux/videodev2.h> | 28 | #include <linux/videodev2.h> |
29 | #include <media/v4l2-common.h> | 29 | #include <media/v4l2-common.h> |
30 | #include <media/v4l2-ioctl.h> | ||
30 | 31 | ||
31 | #include <linux/version.h> /* for KERNEL_VERSION MACRO */ | 32 | #include <linux/version.h> /* for KERNEL_VERSION MACRO */ |
32 | #define RADIO_VERSION KERNEL_VERSION(0,0,6) | 33 | #define RADIO_VERSION KERNEL_VERSION(0,0,6) |
@@ -354,10 +355,7 @@ static u16 __devinit radio_power_on(struct radio_device *dev) | |||
354 | return (ofreq == radio_bits_get(dev)); | 355 | return (ofreq == radio_bits_get(dev)); |
355 | } | 356 | } |
356 | 357 | ||
357 | static struct video_device maestro_radio = { | 358 | static const struct v4l2_ioctl_ops maestro_ioctl_ops = { |
358 | .name = "Maestro radio", | ||
359 | .type = VID_TYPE_TUNER, | ||
360 | .fops = &maestro_fops, | ||
361 | .vidioc_querycap = vidioc_querycap, | 359 | .vidioc_querycap = vidioc_querycap, |
362 | .vidioc_g_tuner = vidioc_g_tuner, | 360 | .vidioc_g_tuner = vidioc_g_tuner, |
363 | .vidioc_s_tuner = vidioc_s_tuner, | 361 | .vidioc_s_tuner = vidioc_s_tuner, |
@@ -372,6 +370,12 @@ static struct video_device maestro_radio = { | |||
372 | .vidioc_s_ctrl = vidioc_s_ctrl, | 370 | .vidioc_s_ctrl = vidioc_s_ctrl, |
373 | }; | 371 | }; |
374 | 372 | ||
373 | static struct video_device maestro_radio = { | ||
374 | .name = "Maestro radio", | ||
375 | .fops = &maestro_fops, | ||
376 | .ioctl_ops = &maestro_ioctl_ops, | ||
377 | }; | ||
378 | |||
375 | static int __devinit maestro_probe(struct pci_dev *pdev, | 379 | static int __devinit maestro_probe(struct pci_dev *pdev, |
376 | const struct pci_device_id *ent) | 380 | const struct pci_device_id *ent) |
377 | { | 381 | { |
diff --git a/drivers/media/radio/radio-maxiradio.c b/drivers/media/radio/radio-maxiradio.c index 0133ecf3e040..43c75497dc49 100644 --- a/drivers/media/radio/radio-maxiradio.c +++ b/drivers/media/radio/radio-maxiradio.c | |||
@@ -44,6 +44,7 @@ | |||
44 | #include <linux/pci.h> | 44 | #include <linux/pci.h> |
45 | #include <linux/videodev2.h> | 45 | #include <linux/videodev2.h> |
46 | #include <media/v4l2-common.h> | 46 | #include <media/v4l2-common.h> |
47 | #include <media/v4l2-ioctl.h> | ||
47 | 48 | ||
48 | #define DRIVER_VERSION "0.77" | 49 | #define DRIVER_VERSION "0.77" |
49 | 50 | ||
@@ -373,13 +374,7 @@ static int vidioc_s_ctrl (struct file *file, void *priv, | |||
373 | return -EINVAL; | 374 | return -EINVAL; |
374 | } | 375 | } |
375 | 376 | ||
376 | static struct video_device maxiradio_radio = | 377 | static const struct v4l2_ioctl_ops maxiradio_ioctl_ops = { |
377 | { | ||
378 | .owner = THIS_MODULE, | ||
379 | .name = "Maxi Radio FM2000 radio", | ||
380 | .type = VID_TYPE_TUNER, | ||
381 | .fops = &maxiradio_fops, | ||
382 | |||
383 | .vidioc_querycap = vidioc_querycap, | 378 | .vidioc_querycap = vidioc_querycap, |
384 | .vidioc_g_tuner = vidioc_g_tuner, | 379 | .vidioc_g_tuner = vidioc_g_tuner, |
385 | .vidioc_s_tuner = vidioc_s_tuner, | 380 | .vidioc_s_tuner = vidioc_s_tuner, |
@@ -394,6 +389,12 @@ static struct video_device maxiradio_radio = | |||
394 | .vidioc_s_ctrl = vidioc_s_ctrl, | 389 | .vidioc_s_ctrl = vidioc_s_ctrl, |
395 | }; | 390 | }; |
396 | 391 | ||
392 | static struct video_device maxiradio_radio = { | ||
393 | .name = "Maxi Radio FM2000 radio", | ||
394 | .fops = &maxiradio_fops, | ||
395 | .ioctl_ops = &maxiradio_ioctl_ops, | ||
396 | }; | ||
397 | |||
397 | static int __devinit maxiradio_init_one(struct pci_dev *pdev, const struct pci_device_id *ent) | 398 | static int __devinit maxiradio_init_one(struct pci_dev *pdev, const struct pci_device_id *ent) |
398 | { | 399 | { |
399 | if(!request_region(pci_resource_start(pdev, 0), | 400 | if(!request_region(pci_resource_start(pdev, 0), |
diff --git a/drivers/media/radio/radio-rtrack2.c b/drivers/media/radio/radio-rtrack2.c index 070802103dc3..e2dde0807268 100644 --- a/drivers/media/radio/radio-rtrack2.c +++ b/drivers/media/radio/radio-rtrack2.c | |||
@@ -17,6 +17,7 @@ | |||
17 | #include <asm/uaccess.h> /* copy to/from user */ | 17 | #include <asm/uaccess.h> /* copy to/from user */ |
18 | #include <linux/videodev2.h> /* kernel radio structs */ | 18 | #include <linux/videodev2.h> /* kernel radio structs */ |
19 | #include <media/v4l2-common.h> | 19 | #include <media/v4l2-common.h> |
20 | #include <media/v4l2-ioctl.h> | ||
20 | #include <linux/spinlock.h> | 21 | #include <linux/spinlock.h> |
21 | 22 | ||
22 | #include <linux/version.h> /* for KERNEL_VERSION MACRO */ | 23 | #include <linux/version.h> /* for KERNEL_VERSION MACRO */ |
@@ -294,12 +295,7 @@ static const struct file_operations rtrack2_fops = { | |||
294 | .llseek = no_llseek, | 295 | .llseek = no_llseek, |
295 | }; | 296 | }; |
296 | 297 | ||
297 | static struct video_device rtrack2_radio= | 298 | static const struct v4l2_ioctl_ops rtrack2_ioctl_ops = { |
298 | { | ||
299 | .owner = THIS_MODULE, | ||
300 | .name = "RadioTrack II radio", | ||
301 | .type = VID_TYPE_TUNER, | ||
302 | .fops = &rtrack2_fops, | ||
303 | .vidioc_querycap = vidioc_querycap, | 299 | .vidioc_querycap = vidioc_querycap, |
304 | .vidioc_g_tuner = vidioc_g_tuner, | 300 | .vidioc_g_tuner = vidioc_g_tuner, |
305 | .vidioc_s_tuner = vidioc_s_tuner, | 301 | .vidioc_s_tuner = vidioc_s_tuner, |
@@ -314,6 +310,12 @@ static struct video_device rtrack2_radio= | |||
314 | .vidioc_s_input = vidioc_s_input, | 310 | .vidioc_s_input = vidioc_s_input, |
315 | }; | 311 | }; |
316 | 312 | ||
313 | static struct video_device rtrack2_radio = { | ||
314 | .name = "RadioTrack II radio", | ||
315 | .fops = &rtrack2_fops, | ||
316 | .ioctl_ops = &rtrack2_ioctl_ops, | ||
317 | }; | ||
318 | |||
317 | static int __init rtrack2_init(void) | 319 | static int __init rtrack2_init(void) |
318 | { | 320 | { |
319 | if(io==-1) | 321 | if(io==-1) |
diff --git a/drivers/media/radio/radio-sf16fmi.c b/drivers/media/radio/radio-sf16fmi.c index 66e052fd3909..bb5d92f104af 100644 --- a/drivers/media/radio/radio-sf16fmi.c +++ b/drivers/media/radio/radio-sf16fmi.c | |||
@@ -24,6 +24,7 @@ | |||
24 | #include <linux/delay.h> /* udelay */ | 24 | #include <linux/delay.h> /* udelay */ |
25 | #include <linux/videodev2.h> /* kernel radio structs */ | 25 | #include <linux/videodev2.h> /* kernel radio structs */ |
26 | #include <media/v4l2-common.h> | 26 | #include <media/v4l2-common.h> |
27 | #include <media/v4l2-ioctl.h> | ||
27 | #include <linux/isapnp.h> | 28 | #include <linux/isapnp.h> |
28 | #include <asm/io.h> /* outb, outb_p */ | 29 | #include <asm/io.h> /* outb, outb_p */ |
29 | #include <asm/uaccess.h> /* copy to/from user */ | 30 | #include <asm/uaccess.h> /* copy to/from user */ |
@@ -294,12 +295,7 @@ static const struct file_operations fmi_fops = { | |||
294 | .llseek = no_llseek, | 295 | .llseek = no_llseek, |
295 | }; | 296 | }; |
296 | 297 | ||
297 | static struct video_device fmi_radio= | 298 | static const struct v4l2_ioctl_ops fmi_ioctl_ops = { |
298 | { | ||
299 | .owner = THIS_MODULE, | ||
300 | .name = "SF16FMx radio", | ||
301 | .type = VID_TYPE_TUNER, | ||
302 | .fops = &fmi_fops, | ||
303 | .vidioc_querycap = vidioc_querycap, | 299 | .vidioc_querycap = vidioc_querycap, |
304 | .vidioc_g_tuner = vidioc_g_tuner, | 300 | .vidioc_g_tuner = vidioc_g_tuner, |
305 | .vidioc_s_tuner = vidioc_s_tuner, | 301 | .vidioc_s_tuner = vidioc_s_tuner, |
@@ -314,6 +310,12 @@ static struct video_device fmi_radio= | |||
314 | .vidioc_s_ctrl = vidioc_s_ctrl, | 310 | .vidioc_s_ctrl = vidioc_s_ctrl, |
315 | }; | 311 | }; |
316 | 312 | ||
313 | static struct video_device fmi_radio = { | ||
314 | .name = "SF16FMx radio", | ||
315 | .fops = &fmi_fops, | ||
316 | .ioctl_ops = &fmi_ioctl_ops, | ||
317 | }; | ||
318 | |||
317 | /* ladis: this is my card. does any other types exist? */ | 319 | /* ladis: this is my card. does any other types exist? */ |
318 | static struct isapnp_device_id id_table[] __devinitdata = { | 320 | static struct isapnp_device_id id_table[] __devinitdata = { |
319 | { ISAPNP_ANY_ID, ISAPNP_ANY_ID, | 321 | { ISAPNP_ANY_ID, ISAPNP_ANY_ID, |
diff --git a/drivers/media/radio/radio-sf16fmr2.c b/drivers/media/radio/radio-sf16fmr2.c index b0ccf7cb5952..6290553d24be 100644 --- a/drivers/media/radio/radio-sf16fmr2.c +++ b/drivers/media/radio/radio-sf16fmr2.c | |||
@@ -22,6 +22,7 @@ | |||
22 | #include <asm/uaccess.h> /* copy to/from user */ | 22 | #include <asm/uaccess.h> /* copy to/from user */ |
23 | #include <linux/videodev2.h> /* kernel radio structs */ | 23 | #include <linux/videodev2.h> /* kernel radio structs */ |
24 | #include <media/v4l2-common.h> | 24 | #include <media/v4l2-common.h> |
25 | #include <media/v4l2-ioctl.h> | ||
25 | #include <linux/mutex.h> | 26 | #include <linux/mutex.h> |
26 | 27 | ||
27 | static struct mutex lock; | 28 | static struct mutex lock; |
@@ -410,12 +411,7 @@ static const struct file_operations fmr2_fops = { | |||
410 | .llseek = no_llseek, | 411 | .llseek = no_llseek, |
411 | }; | 412 | }; |
412 | 413 | ||
413 | static struct video_device fmr2_radio= | 414 | static const struct v4l2_ioctl_ops fmr2_ioctl_ops = { |
414 | { | ||
415 | .owner = THIS_MODULE, | ||
416 | .name = "SF16FMR2 radio", | ||
417 | . type = VID_TYPE_TUNER, | ||
418 | .fops = &fmr2_fops, | ||
419 | .vidioc_querycap = vidioc_querycap, | 415 | .vidioc_querycap = vidioc_querycap, |
420 | .vidioc_g_tuner = vidioc_g_tuner, | 416 | .vidioc_g_tuner = vidioc_g_tuner, |
421 | .vidioc_s_tuner = vidioc_s_tuner, | 417 | .vidioc_s_tuner = vidioc_s_tuner, |
@@ -430,6 +426,12 @@ static struct video_device fmr2_radio= | |||
430 | .vidioc_s_ctrl = vidioc_s_ctrl, | 426 | .vidioc_s_ctrl = vidioc_s_ctrl, |
431 | }; | 427 | }; |
432 | 428 | ||
429 | static struct video_device fmr2_radio = { | ||
430 | .name = "SF16FMR2 radio", | ||
431 | .fops = &fmr2_fops, | ||
432 | .ioctl_ops = &fmr2_ioctl_ops, | ||
433 | }; | ||
434 | |||
433 | static int __init fmr2_init(void) | 435 | static int __init fmr2_init(void) |
434 | { | 436 | { |
435 | fmr2_unit.port = io; | 437 | fmr2_unit.port = io; |
diff --git a/drivers/media/radio/radio-si470x.c b/drivers/media/radio/radio-si470x.c index dc93a882b385..a4984ff87c9c 100644 --- a/drivers/media/radio/radio-si470x.c +++ b/drivers/media/radio/radio-si470x.c | |||
@@ -133,6 +133,7 @@ | |||
133 | #include <linux/videodev2.h> | 133 | #include <linux/videodev2.h> |
134 | #include <linux/mutex.h> | 134 | #include <linux/mutex.h> |
135 | #include <media/v4l2-common.h> | 135 | #include <media/v4l2-common.h> |
136 | #include <media/v4l2-ioctl.h> | ||
136 | #include <media/rds.h> | 137 | #include <media/rds.h> |
137 | #include <asm/unaligned.h> | 138 | #include <asm/unaligned.h> |
138 | 139 | ||
@@ -1585,15 +1586,7 @@ done: | |||
1585 | return retval; | 1586 | return retval; |
1586 | } | 1587 | } |
1587 | 1588 | ||
1588 | 1589 | static const struct v4l2_ioctl_ops si470x_ioctl_ops = { | |
1589 | /* | ||
1590 | * si470x_viddev_tamples - video device interface | ||
1591 | */ | ||
1592 | static struct video_device si470x_viddev_template = { | ||
1593 | .fops = &si470x_fops, | ||
1594 | .name = DRIVER_NAME, | ||
1595 | .type = VID_TYPE_TUNER, | ||
1596 | .release = video_device_release, | ||
1597 | .vidioc_querycap = si470x_vidioc_querycap, | 1590 | .vidioc_querycap = si470x_vidioc_querycap, |
1598 | .vidioc_g_input = si470x_vidioc_g_input, | 1591 | .vidioc_g_input = si470x_vidioc_g_input, |
1599 | .vidioc_s_input = si470x_vidioc_s_input, | 1592 | .vidioc_s_input = si470x_vidioc_s_input, |
@@ -1607,7 +1600,16 @@ static struct video_device si470x_viddev_template = { | |||
1607 | .vidioc_g_frequency = si470x_vidioc_g_frequency, | 1600 | .vidioc_g_frequency = si470x_vidioc_g_frequency, |
1608 | .vidioc_s_frequency = si470x_vidioc_s_frequency, | 1601 | .vidioc_s_frequency = si470x_vidioc_s_frequency, |
1609 | .vidioc_s_hw_freq_seek = si470x_vidioc_s_hw_freq_seek, | 1602 | .vidioc_s_hw_freq_seek = si470x_vidioc_s_hw_freq_seek, |
1610 | .owner = THIS_MODULE, | 1603 | }; |
1604 | |||
1605 | /* | ||
1606 | * si470x_viddev_tamples - video device interface | ||
1607 | */ | ||
1608 | static struct video_device si470x_viddev_template = { | ||
1609 | .fops = &si470x_fops, | ||
1610 | .ioctl_ops = &si470x_ioctl_ops, | ||
1611 | .name = DRIVER_NAME, | ||
1612 | .release = video_device_release, | ||
1611 | }; | 1613 | }; |
1612 | 1614 | ||
1613 | 1615 | ||
diff --git a/drivers/media/radio/radio-terratec.c b/drivers/media/radio/radio-terratec.c index acc32080e9bd..cefa44fc5aed 100644 --- a/drivers/media/radio/radio-terratec.c +++ b/drivers/media/radio/radio-terratec.c | |||
@@ -32,6 +32,7 @@ | |||
32 | #include <asm/uaccess.h> /* copy to/from user */ | 32 | #include <asm/uaccess.h> /* copy to/from user */ |
33 | #include <linux/videodev2.h> /* kernel radio structs */ | 33 | #include <linux/videodev2.h> /* kernel radio structs */ |
34 | #include <media/v4l2-common.h> | 34 | #include <media/v4l2-common.h> |
35 | #include <media/v4l2-ioctl.h> | ||
35 | #include <linux/spinlock.h> | 36 | #include <linux/spinlock.h> |
36 | 37 | ||
37 | #include <linux/version.h> /* for KERNEL_VERSION MACRO */ | 38 | #include <linux/version.h> /* for KERNEL_VERSION MACRO */ |
@@ -366,12 +367,7 @@ static const struct file_operations terratec_fops = { | |||
366 | .llseek = no_llseek, | 367 | .llseek = no_llseek, |
367 | }; | 368 | }; |
368 | 369 | ||
369 | static struct video_device terratec_radio= | 370 | static const struct v4l2_ioctl_ops terratec_ioctl_ops = { |
370 | { | ||
371 | .owner = THIS_MODULE, | ||
372 | .name = "TerraTec ActiveRadio", | ||
373 | .type = VID_TYPE_TUNER, | ||
374 | .fops = &terratec_fops, | ||
375 | .vidioc_querycap = vidioc_querycap, | 371 | .vidioc_querycap = vidioc_querycap, |
376 | .vidioc_g_tuner = vidioc_g_tuner, | 372 | .vidioc_g_tuner = vidioc_g_tuner, |
377 | .vidioc_s_tuner = vidioc_s_tuner, | 373 | .vidioc_s_tuner = vidioc_s_tuner, |
@@ -386,6 +382,12 @@ static struct video_device terratec_radio= | |||
386 | .vidioc_s_input = vidioc_s_input, | 382 | .vidioc_s_input = vidioc_s_input, |
387 | }; | 383 | }; |
388 | 384 | ||
385 | static struct video_device terratec_radio = { | ||
386 | .name = "TerraTec ActiveRadio", | ||
387 | .fops = &terratec_fops, | ||
388 | .ioctl_ops = &terratec_ioctl_ops, | ||
389 | }; | ||
390 | |||
389 | static int __init terratec_init(void) | 391 | static int __init terratec_init(void) |
390 | { | 392 | { |
391 | if(io==-1) | 393 | if(io==-1) |
diff --git a/drivers/media/radio/radio-trust.c b/drivers/media/radio/radio-trust.c index 4ebdfbadeb9c..d70172d23edb 100644 --- a/drivers/media/radio/radio-trust.c +++ b/drivers/media/radio/radio-trust.c | |||
@@ -23,6 +23,7 @@ | |||
23 | #include <asm/uaccess.h> | 23 | #include <asm/uaccess.h> |
24 | #include <linux/videodev2.h> | 24 | #include <linux/videodev2.h> |
25 | #include <media/v4l2-common.h> | 25 | #include <media/v4l2-common.h> |
26 | #include <media/v4l2-ioctl.h> | ||
26 | 27 | ||
27 | #include <linux/version.h> /* for KERNEL_VERSION MACRO */ | 28 | #include <linux/version.h> /* for KERNEL_VERSION MACRO */ |
28 | #define RADIO_VERSION KERNEL_VERSION(0,0,2) | 29 | #define RADIO_VERSION KERNEL_VERSION(0,0,2) |
@@ -346,12 +347,7 @@ static const struct file_operations trust_fops = { | |||
346 | .llseek = no_llseek, | 347 | .llseek = no_llseek, |
347 | }; | 348 | }; |
348 | 349 | ||
349 | static struct video_device trust_radio= | 350 | static const struct v4l2_ioctl_ops trust_ioctl_ops = { |
350 | { | ||
351 | .owner = THIS_MODULE, | ||
352 | .name = "Trust FM Radio", | ||
353 | .type = VID_TYPE_TUNER, | ||
354 | .fops = &trust_fops, | ||
355 | .vidioc_querycap = vidioc_querycap, | 351 | .vidioc_querycap = vidioc_querycap, |
356 | .vidioc_g_tuner = vidioc_g_tuner, | 352 | .vidioc_g_tuner = vidioc_g_tuner, |
357 | .vidioc_s_tuner = vidioc_s_tuner, | 353 | .vidioc_s_tuner = vidioc_s_tuner, |
@@ -366,6 +362,12 @@ static struct video_device trust_radio= | |||
366 | .vidioc_s_input = vidioc_s_input, | 362 | .vidioc_s_input = vidioc_s_input, |
367 | }; | 363 | }; |
368 | 364 | ||
365 | static struct video_device trust_radio = { | ||
366 | .name = "Trust FM Radio", | ||
367 | .fops = &trust_fops, | ||
368 | .ioctl_ops = &trust_ioctl_ops, | ||
369 | }; | ||
370 | |||
369 | static int __init trust_init(void) | 371 | static int __init trust_init(void) |
370 | { | 372 | { |
371 | if(io == -1) { | 373 | if(io == -1) { |
diff --git a/drivers/media/radio/radio-typhoon.c b/drivers/media/radio/radio-typhoon.c index 18f2abd7e255..f8d62cfea774 100644 --- a/drivers/media/radio/radio-typhoon.c +++ b/drivers/media/radio/radio-typhoon.c | |||
@@ -40,6 +40,7 @@ | |||
40 | #include <asm/uaccess.h> /* copy to/from user */ | 40 | #include <asm/uaccess.h> /* copy to/from user */ |
41 | #include <linux/videodev2.h> /* kernel radio structs */ | 41 | #include <linux/videodev2.h> /* kernel radio structs */ |
42 | #include <media/v4l2-common.h> | 42 | #include <media/v4l2-common.h> |
43 | #include <media/v4l2-ioctl.h> | ||
43 | 44 | ||
44 | #include <linux/version.h> /* for KERNEL_VERSION MACRO */ | 45 | #include <linux/version.h> /* for KERNEL_VERSION MACRO */ |
45 | #define RADIO_VERSION KERNEL_VERSION(0,1,1) | 46 | #define RADIO_VERSION KERNEL_VERSION(0,1,1) |
@@ -344,12 +345,7 @@ static const struct file_operations typhoon_fops = { | |||
344 | .llseek = no_llseek, | 345 | .llseek = no_llseek, |
345 | }; | 346 | }; |
346 | 347 | ||
347 | static struct video_device typhoon_radio = | 348 | static const struct v4l2_ioctl_ops typhoon_ioctl_ops = { |
348 | { | ||
349 | .owner = THIS_MODULE, | ||
350 | .name = "Typhoon Radio", | ||
351 | .type = VID_TYPE_TUNER, | ||
352 | .fops = &typhoon_fops, | ||
353 | .vidioc_querycap = vidioc_querycap, | 349 | .vidioc_querycap = vidioc_querycap, |
354 | .vidioc_g_tuner = vidioc_g_tuner, | 350 | .vidioc_g_tuner = vidioc_g_tuner, |
355 | .vidioc_s_tuner = vidioc_s_tuner, | 351 | .vidioc_s_tuner = vidioc_s_tuner, |
@@ -364,6 +360,12 @@ static struct video_device typhoon_radio = | |||
364 | .vidioc_s_ctrl = vidioc_s_ctrl, | 360 | .vidioc_s_ctrl = vidioc_s_ctrl, |
365 | }; | 361 | }; |
366 | 362 | ||
363 | static struct video_device typhoon_radio = { | ||
364 | .name = "Typhoon Radio", | ||
365 | .fops = &typhoon_fops, | ||
366 | .ioctl_ops = &typhoon_ioctl_ops, | ||
367 | }; | ||
368 | |||
367 | #ifdef CONFIG_RADIO_TYPHOON_PROC_FS | 369 | #ifdef CONFIG_RADIO_TYPHOON_PROC_FS |
368 | 370 | ||
369 | static int typhoon_proc_show(struct seq_file *m, void *v) | 371 | static int typhoon_proc_show(struct seq_file *m, void *v) |
diff --git a/drivers/media/radio/radio-zoltrix.c b/drivers/media/radio/radio-zoltrix.c index 43773c56c62f..9f17a332fa11 100644 --- a/drivers/media/radio/radio-zoltrix.c +++ b/drivers/media/radio/radio-zoltrix.c | |||
@@ -37,6 +37,7 @@ | |||
37 | #include <asm/uaccess.h> /* copy to/from user */ | 37 | #include <asm/uaccess.h> /* copy to/from user */ |
38 | #include <linux/videodev2.h> /* kernel radio structs */ | 38 | #include <linux/videodev2.h> /* kernel radio structs */ |
39 | #include <media/v4l2-common.h> | 39 | #include <media/v4l2-common.h> |
40 | #include <media/v4l2-ioctl.h> | ||
40 | 41 | ||
41 | #include <linux/version.h> /* for KERNEL_VERSION MACRO */ | 42 | #include <linux/version.h> /* for KERNEL_VERSION MACRO */ |
42 | #define RADIO_VERSION KERNEL_VERSION(0,0,2) | 43 | #define RADIO_VERSION KERNEL_VERSION(0,0,2) |
@@ -407,12 +408,7 @@ static const struct file_operations zoltrix_fops = | |||
407 | .llseek = no_llseek, | 408 | .llseek = no_llseek, |
408 | }; | 409 | }; |
409 | 410 | ||
410 | static struct video_device zoltrix_radio = | 411 | static const struct v4l2_ioctl_ops zoltrix_ioctl_ops = { |
411 | { | ||
412 | .owner = THIS_MODULE, | ||
413 | .name = "Zoltrix Radio Plus", | ||
414 | .type = VID_TYPE_TUNER, | ||
415 | .fops = &zoltrix_fops, | ||
416 | .vidioc_querycap = vidioc_querycap, | 412 | .vidioc_querycap = vidioc_querycap, |
417 | .vidioc_g_tuner = vidioc_g_tuner, | 413 | .vidioc_g_tuner = vidioc_g_tuner, |
418 | .vidioc_s_tuner = vidioc_s_tuner, | 414 | .vidioc_s_tuner = vidioc_s_tuner, |
@@ -427,6 +423,12 @@ static struct video_device zoltrix_radio = | |||
427 | .vidioc_s_ctrl = vidioc_s_ctrl, | 423 | .vidioc_s_ctrl = vidioc_s_ctrl, |
428 | }; | 424 | }; |
429 | 425 | ||
426 | static struct video_device zoltrix_radio = { | ||
427 | .name = "Zoltrix Radio Plus", | ||
428 | .fops = &zoltrix_fops, | ||
429 | .ioctl_ops = &zoltrix_ioctl_ops, | ||
430 | }; | ||
431 | |||
430 | static int __init zoltrix_init(void) | 432 | static int __init zoltrix_init(void) |
431 | { | 433 | { |
432 | if (io == -1) { | 434 | if (io == -1) { |
diff --git a/drivers/media/video/Kconfig b/drivers/media/video/Kconfig index f606d2951fde..d4a6e56a7135 100644 --- a/drivers/media/video/Kconfig +++ b/drivers/media/video/Kconfig | |||
@@ -487,17 +487,6 @@ config VIDEO_PMS | |||
487 | To compile this driver as a module, choose M here: the | 487 | To compile this driver as a module, choose M here: the |
488 | module will be called pms. | 488 | module will be called pms. |
489 | 489 | ||
490 | config VIDEO_PLANB | ||
491 | tristate "PlanB Video-In on PowerMac" | ||
492 | depends on PPC_PMAC && VIDEO_V4L1 && BROKEN | ||
493 | help | ||
494 | PlanB is the V4L driver for the PowerMac 7x00/8x00 series video | ||
495 | input hardware. If you want to experiment with this, say Y. | ||
496 | Otherwise, or if you don't understand a word, say N. See | ||
497 | <http://www.cpu.lu/~mlan/linux/dev/planb.html> for more info. | ||
498 | |||
499 | Saying M will compile this driver as a module (planb). | ||
500 | |||
501 | config VIDEO_BWQCAM | 490 | config VIDEO_BWQCAM |
502 | tristate "Quickcam BW Video For Linux" | 491 | tristate "Quickcam BW Video For Linux" |
503 | depends on PARPORT && VIDEO_V4L1 | 492 | depends on PARPORT && VIDEO_V4L1 |
@@ -806,13 +795,7 @@ menuconfig V4L_USB_DRIVERS | |||
806 | 795 | ||
807 | if V4L_USB_DRIVERS && USB | 796 | if V4L_USB_DRIVERS && USB |
808 | 797 | ||
809 | config USB_VIDEO_CLASS | 798 | source "drivers/media/video/uvc/Kconfig" |
810 | tristate "USB Video Class (UVC)" | ||
811 | ---help--- | ||
812 | Support for the USB Video Class (UVC). Currently only video | ||
813 | input devices, such as webcams, are supported. | ||
814 | |||
815 | For more information see: <http://linux-uvc.berlios.de/> | ||
816 | 799 | ||
817 | source "drivers/media/video/gspca/Kconfig" | 800 | source "drivers/media/video/gspca/Kconfig" |
818 | 801 | ||
diff --git a/drivers/media/video/Makefile b/drivers/media/video/Makefile index 45d5db5abb1e..bbc6f8b82297 100644 --- a/drivers/media/video/Makefile +++ b/drivers/media/video/Makefile | |||
@@ -10,6 +10,8 @@ msp3400-objs := msp3400-driver.o msp3400-kthreads.o | |||
10 | 10 | ||
11 | stkwebcam-objs := stk-webcam.o stk-sensor.o | 11 | stkwebcam-objs := stk-webcam.o stk-sensor.o |
12 | 12 | ||
13 | videodev-objs := v4l2-dev.o v4l2-ioctl.o | ||
14 | |||
13 | obj-$(CONFIG_VIDEO_DEV) += videodev.o compat_ioctl32.o v4l2-int-device.o | 15 | obj-$(CONFIG_VIDEO_DEV) += videodev.o compat_ioctl32.o v4l2-int-device.o |
14 | 16 | ||
15 | obj-$(CONFIG_VIDEO_V4L2_COMMON) += v4l2-common.o | 17 | obj-$(CONFIG_VIDEO_V4L2_COMMON) += v4l2-common.o |
@@ -55,7 +57,6 @@ obj-$(CONFIG_VIDEO_ZORAN_DC30) += zr36050.o zr36016.o | |||
55 | obj-$(CONFIG_VIDEO_ZORAN_ZR36060) += zr36060.o | 57 | obj-$(CONFIG_VIDEO_ZORAN_ZR36060) += zr36060.o |
56 | 58 | ||
57 | obj-$(CONFIG_VIDEO_PMS) += pms.o | 59 | obj-$(CONFIG_VIDEO_PMS) += pms.o |
58 | obj-$(CONFIG_VIDEO_PLANB) += planb.o | ||
59 | obj-$(CONFIG_VIDEO_VINO) += vino.o indycam.o | 60 | obj-$(CONFIG_VIDEO_VINO) += vino.o indycam.o |
60 | obj-$(CONFIG_VIDEO_STRADIS) += stradis.o | 61 | obj-$(CONFIG_VIDEO_STRADIS) += stradis.o |
61 | obj-$(CONFIG_VIDEO_CPIA) += cpia.o | 62 | obj-$(CONFIG_VIDEO_CPIA) += cpia.o |
diff --git a/drivers/media/video/arv.c b/drivers/media/video/arv.c index 8c7d1958856b..56ebfd5ef6fa 100644 --- a/drivers/media/video/arv.c +++ b/drivers/media/video/arv.c | |||
@@ -754,7 +754,6 @@ static const struct file_operations ar_fops = { | |||
754 | }; | 754 | }; |
755 | 755 | ||
756 | static struct video_device ar_template = { | 756 | static struct video_device ar_template = { |
757 | .owner = THIS_MODULE, | ||
758 | .name = "Colour AR VGA", | 757 | .name = "Colour AR VGA", |
759 | .type = VID_TYPE_CAPTURE, | 758 | .type = VID_TYPE_CAPTURE, |
760 | .fops = &ar_fops, | 759 | .fops = &ar_fops, |
diff --git a/drivers/media/video/au0828/Kconfig b/drivers/media/video/au0828/Kconfig index 52b2491581a8..ed9a50f189fc 100644 --- a/drivers/media/video/au0828/Kconfig +++ b/drivers/media/video/au0828/Kconfig | |||
@@ -6,6 +6,7 @@ config VIDEO_AU0828 | |||
6 | select VIDEO_TVEEPROM | 6 | select VIDEO_TVEEPROM |
7 | select DVB_AU8522 if !DVB_FE_CUSTOMIZE | 7 | select DVB_AU8522 if !DVB_FE_CUSTOMIZE |
8 | select MEDIA_TUNER_XC5000 if !DVB_FE_CUSTOMIZE | 8 | select MEDIA_TUNER_XC5000 if !DVB_FE_CUSTOMIZE |
9 | select MEDIA_TUNER_MXL5007T if !DVB_FE_CUSTOMIZE | ||
9 | ---help--- | 10 | ---help--- |
10 | This is a video4linux driver for Auvitek's USB device. | 11 | This is a video4linux driver for Auvitek's USB device. |
11 | 12 | ||
diff --git a/drivers/media/video/au0828/au0828-cards.c b/drivers/media/video/au0828/au0828-cards.c index 898e12395e7c..443e59009762 100644 --- a/drivers/media/video/au0828/au0828-cards.c +++ b/drivers/media/video/au0828/au0828-cards.c | |||
@@ -32,6 +32,9 @@ struct au0828_board au0828_boards[] = { | |||
32 | [AU0828_BOARD_HAUPPAUGE_HVR950Q] = { | 32 | [AU0828_BOARD_HAUPPAUGE_HVR950Q] = { |
33 | .name = "Hauppauge HVR950Q", | 33 | .name = "Hauppauge HVR950Q", |
34 | }, | 34 | }, |
35 | [AU0828_BOARD_HAUPPAUGE_HVR950Q_MXL] = { | ||
36 | .name = "Hauppauge HVR950Q rev xxF8", | ||
37 | }, | ||
35 | [AU0828_BOARD_DVICO_FUSIONHDTV7] = { | 38 | [AU0828_BOARD_DVICO_FUSIONHDTV7] = { |
36 | .name = "DViCO FusionHDTV USB", | 39 | .name = "DViCO FusionHDTV USB", |
37 | }, | 40 | }, |
@@ -49,6 +52,7 @@ int au0828_tuner_callback(void *priv, int command, int arg) | |||
49 | switch (dev->board) { | 52 | switch (dev->board) { |
50 | case AU0828_BOARD_HAUPPAUGE_HVR850: | 53 | case AU0828_BOARD_HAUPPAUGE_HVR850: |
51 | case AU0828_BOARD_HAUPPAUGE_HVR950Q: | 54 | case AU0828_BOARD_HAUPPAUGE_HVR950Q: |
55 | case AU0828_BOARD_HAUPPAUGE_HVR950Q_MXL: | ||
52 | case AU0828_BOARD_DVICO_FUSIONHDTV7: | 56 | case AU0828_BOARD_DVICO_FUSIONHDTV7: |
53 | if (command == 0) { | 57 | if (command == 0) { |
54 | /* Tuner Reset Command from xc5000 */ | 58 | /* Tuner Reset Command from xc5000 */ |
@@ -110,6 +114,7 @@ void au0828_card_setup(struct au0828_dev *dev) | |||
110 | switch (dev->board) { | 114 | switch (dev->board) { |
111 | case AU0828_BOARD_HAUPPAUGE_HVR850: | 115 | case AU0828_BOARD_HAUPPAUGE_HVR850: |
112 | case AU0828_BOARD_HAUPPAUGE_HVR950Q: | 116 | case AU0828_BOARD_HAUPPAUGE_HVR950Q: |
117 | case AU0828_BOARD_HAUPPAUGE_HVR950Q_MXL: | ||
113 | if (dev->i2c_rc == 0) | 118 | if (dev->i2c_rc == 0) |
114 | hauppauge_eeprom(dev, eeprom+0xa0); | 119 | hauppauge_eeprom(dev, eeprom+0xa0); |
115 | break; | 120 | break; |
@@ -128,6 +133,7 @@ void au0828_gpio_setup(struct au0828_dev *dev) | |||
128 | switch (dev->board) { | 133 | switch (dev->board) { |
129 | case AU0828_BOARD_HAUPPAUGE_HVR850: | 134 | case AU0828_BOARD_HAUPPAUGE_HVR850: |
130 | case AU0828_BOARD_HAUPPAUGE_HVR950Q: | 135 | case AU0828_BOARD_HAUPPAUGE_HVR950Q: |
136 | case AU0828_BOARD_HAUPPAUGE_HVR950Q_MXL: | ||
131 | /* GPIO's | 137 | /* GPIO's |
132 | * 4 - CS5340 | 138 | * 4 - CS5340 |
133 | * 5 - AU8522 Demodulator | 139 | * 5 - AU8522 Demodulator |
@@ -193,6 +199,12 @@ struct usb_device_id au0828_usb_id_table [] = { | |||
193 | .driver_info = AU0828_BOARD_HAUPPAUGE_HVR950Q }, | 199 | .driver_info = AU0828_BOARD_HAUPPAUGE_HVR950Q }, |
194 | { USB_DEVICE(0x0fd9, 0x0008), | 200 | { USB_DEVICE(0x0fd9, 0x0008), |
195 | .driver_info = AU0828_BOARD_HAUPPAUGE_HVR950Q }, | 201 | .driver_info = AU0828_BOARD_HAUPPAUGE_HVR950Q }, |
202 | { USB_DEVICE(0x2040, 0x7201), | ||
203 | .driver_info = AU0828_BOARD_HAUPPAUGE_HVR950Q_MXL }, | ||
204 | { USB_DEVICE(0x2040, 0x7211), | ||
205 | .driver_info = AU0828_BOARD_HAUPPAUGE_HVR950Q_MXL }, | ||
206 | { USB_DEVICE(0x2040, 0x7281), | ||
207 | .driver_info = AU0828_BOARD_HAUPPAUGE_HVR950Q_MXL }, | ||
196 | { }, | 208 | { }, |
197 | }; | 209 | }; |
198 | 210 | ||
diff --git a/drivers/media/video/au0828/au0828-cards.h b/drivers/media/video/au0828/au0828-cards.h index e26f54a961d0..c37f5fd0fa80 100644 --- a/drivers/media/video/au0828/au0828-cards.h +++ b/drivers/media/video/au0828/au0828-cards.h | |||
@@ -23,3 +23,4 @@ | |||
23 | #define AU0828_BOARD_HAUPPAUGE_HVR950Q 1 | 23 | #define AU0828_BOARD_HAUPPAUGE_HVR950Q 1 |
24 | #define AU0828_BOARD_HAUPPAUGE_HVR850 2 | 24 | #define AU0828_BOARD_HAUPPAUGE_HVR850 2 |
25 | #define AU0828_BOARD_DVICO_FUSIONHDTV7 3 | 25 | #define AU0828_BOARD_DVICO_FUSIONHDTV7 3 |
26 | #define AU0828_BOARD_HAUPPAUGE_HVR950Q_MXL 4 | ||
diff --git a/drivers/media/video/au0828/au0828-dvb.c b/drivers/media/video/au0828/au0828-dvb.c index c6d470590380..584a83a94a2a 100644 --- a/drivers/media/video/au0828/au0828-dvb.c +++ b/drivers/media/video/au0828/au0828-dvb.c | |||
@@ -28,6 +28,7 @@ | |||
28 | #include "au0828.h" | 28 | #include "au0828.h" |
29 | #include "au8522.h" | 29 | #include "au8522.h" |
30 | #include "xc5000.h" | 30 | #include "xc5000.h" |
31 | #include "mxl5007t.h" | ||
31 | 32 | ||
32 | DVB_DEFINE_MOD_OPT_ADAPTER_NR(adapter_nr); | 33 | DVB_DEFINE_MOD_OPT_ADAPTER_NR(adapter_nr); |
33 | 34 | ||
@@ -45,6 +46,11 @@ static struct xc5000_config hauppauge_hvr950q_tunerconfig = { | |||
45 | .tuner_callback = au0828_tuner_callback | 46 | .tuner_callback = au0828_tuner_callback |
46 | }; | 47 | }; |
47 | 48 | ||
49 | static struct mxl5007t_config mxl5007t_hvr950q_config = { | ||
50 | .xtal_freq_hz = MxL_XTAL_24_MHZ, | ||
51 | .if_freq_hz = MxL_IF_6_MHZ, | ||
52 | }; | ||
53 | |||
48 | /*-------------------------------------------------------------------*/ | 54 | /*-------------------------------------------------------------------*/ |
49 | static void urb_completion(struct urb *purb) | 55 | static void urb_completion(struct urb *purb) |
50 | { | 56 | { |
@@ -342,6 +348,15 @@ int au0828_dvb_register(struct au0828_dev *dev) | |||
342 | &dev->i2c_adap, | 348 | &dev->i2c_adap, |
343 | &hauppauge_hvr950q_tunerconfig, dev); | 349 | &hauppauge_hvr950q_tunerconfig, dev); |
344 | break; | 350 | break; |
351 | case AU0828_BOARD_HAUPPAUGE_HVR950Q_MXL: | ||
352 | dvb->frontend = dvb_attach(au8522_attach, | ||
353 | &hauppauge_hvr950q_config, | ||
354 | &dev->i2c_adap); | ||
355 | if (dvb->frontend != NULL) | ||
356 | dvb_attach(mxl5007t_attach, dvb->frontend, | ||
357 | &dev->i2c_adap, 0x60, | ||
358 | &mxl5007t_hvr950q_config); | ||
359 | break; | ||
345 | default: | 360 | default: |
346 | printk(KERN_WARNING "The frontend of your DVB/ATSC card " | 361 | printk(KERN_WARNING "The frontend of your DVB/ATSC card " |
347 | "isn't supported yet\n"); | 362 | "isn't supported yet\n"); |
diff --git a/drivers/media/video/bt8xx/Kconfig b/drivers/media/video/bt8xx/Kconfig index 24a34fc1f2b3..ce71e8e7b835 100644 --- a/drivers/media/video/bt8xx/Kconfig +++ b/drivers/media/video/bt8xx/Kconfig | |||
@@ -1,9 +1,7 @@ | |||
1 | config VIDEO_BT848 | 1 | config VIDEO_BT848 |
2 | tristate "BT848 Video For Linux" | 2 | tristate "BT848 Video For Linux" |
3 | depends on VIDEO_DEV && PCI && I2C && VIDEO_V4L2 && INPUT | 3 | depends on VIDEO_DEV && PCI && I2C && VIDEO_V4L2 && INPUT |
4 | depends on HOTPLUG # due to FW_LOADER | ||
5 | select I2C_ALGOBIT | 4 | select I2C_ALGOBIT |
6 | select FW_LOADER | ||
7 | select VIDEO_BTCX | 5 | select VIDEO_BTCX |
8 | select VIDEOBUF_DMA_SG | 6 | select VIDEOBUF_DMA_SG |
9 | select VIDEO_IR | 7 | select VIDEO_IR |
diff --git a/drivers/media/video/bt8xx/bttv-driver.c b/drivers/media/video/bt8xx/bttv-driver.c index 0ea559a7fe59..85bf31ab8789 100644 --- a/drivers/media/video/bt8xx/bttv-driver.c +++ b/drivers/media/video/bt8xx/bttv-driver.c | |||
@@ -45,6 +45,7 @@ | |||
45 | #include <linux/kdev_t.h> | 45 | #include <linux/kdev_t.h> |
46 | #include "bttvp.h" | 46 | #include "bttvp.h" |
47 | #include <media/v4l2-common.h> | 47 | #include <media/v4l2-common.h> |
48 | #include <media/v4l2-ioctl.h> | ||
48 | #include <media/tvaudio.h> | 49 | #include <media/tvaudio.h> |
49 | #include <media/msp3400.h> | 50 | #include <media/msp3400.h> |
50 | 51 | ||
@@ -163,8 +164,8 @@ MODULE_LICENSE("GPL"); | |||
163 | static ssize_t show_card(struct device *cd, | 164 | static ssize_t show_card(struct device *cd, |
164 | struct device_attribute *attr, char *buf) | 165 | struct device_attribute *attr, char *buf) |
165 | { | 166 | { |
166 | struct video_device *vfd = container_of(cd, struct video_device, class_dev); | 167 | struct video_device *vfd = container_of(cd, struct video_device, dev); |
167 | struct bttv *btv = dev_get_drvdata(vfd->dev); | 168 | struct bttv *btv = dev_get_drvdata(vfd->parent); |
168 | return sprintf(buf, "%d\n", btv ? btv->c.type : UNSET); | 169 | return sprintf(buf, "%d\n", btv ? btv->c.type : UNSET); |
169 | } | 170 | } |
170 | static DEVICE_ATTR(card, S_IRUGO, show_card, NULL); | 171 | static DEVICE_ATTR(card, S_IRUGO, show_card, NULL); |
@@ -3357,10 +3358,7 @@ static const struct file_operations bttv_fops = | |||
3357 | .poll = bttv_poll, | 3358 | .poll = bttv_poll, |
3358 | }; | 3359 | }; |
3359 | 3360 | ||
3360 | static struct video_device bttv_video_template = | 3361 | static const struct v4l2_ioctl_ops bttv_ioctl_ops = { |
3361 | { | ||
3362 | .fops = &bttv_fops, | ||
3363 | .minor = -1, | ||
3364 | .vidioc_querycap = bttv_querycap, | 3362 | .vidioc_querycap = bttv_querycap, |
3365 | .vidioc_enum_fmt_vid_cap = bttv_enum_fmt_vid_cap, | 3363 | .vidioc_enum_fmt_vid_cap = bttv_enum_fmt_vid_cap, |
3366 | .vidioc_g_fmt_vid_cap = bttv_g_fmt_vid_cap, | 3364 | .vidioc_g_fmt_vid_cap = bttv_g_fmt_vid_cap, |
@@ -3411,8 +3409,14 @@ static struct video_device bttv_video_template = | |||
3411 | .vidioc_g_register = bttv_g_register, | 3409 | .vidioc_g_register = bttv_g_register, |
3412 | .vidioc_s_register = bttv_s_register, | 3410 | .vidioc_s_register = bttv_s_register, |
3413 | #endif | 3411 | #endif |
3414 | .tvnorms = BTTV_NORMS, | 3412 | }; |
3415 | .current_norm = V4L2_STD_PAL, | 3413 | |
3414 | static struct video_device bttv_video_template = { | ||
3415 | .fops = &bttv_fops, | ||
3416 | .minor = -1, | ||
3417 | .ioctl_ops = &bttv_ioctl_ops, | ||
3418 | .tvnorms = BTTV_NORMS, | ||
3419 | .current_norm = V4L2_STD_PAL, | ||
3416 | }; | 3420 | }; |
3417 | 3421 | ||
3418 | /* ----------------------------------------------------------------------- */ | 3422 | /* ----------------------------------------------------------------------- */ |
@@ -3635,10 +3639,7 @@ static const struct file_operations radio_fops = | |||
3635 | .poll = radio_poll, | 3639 | .poll = radio_poll, |
3636 | }; | 3640 | }; |
3637 | 3641 | ||
3638 | static struct video_device radio_template = | 3642 | static const struct v4l2_ioctl_ops radio_ioctl_ops = { |
3639 | { | ||
3640 | .fops = &radio_fops, | ||
3641 | .minor = -1, | ||
3642 | .vidioc_querycap = radio_querycap, | 3643 | .vidioc_querycap = radio_querycap, |
3643 | .vidioc_g_tuner = radio_g_tuner, | 3644 | .vidioc_g_tuner = radio_g_tuner, |
3644 | .vidioc_enum_input = radio_enum_input, | 3645 | .vidioc_enum_input = radio_enum_input, |
@@ -3655,6 +3656,12 @@ static struct video_device radio_template = | |||
3655 | .vidioc_s_frequency = bttv_s_frequency, | 3656 | .vidioc_s_frequency = bttv_s_frequency, |
3656 | }; | 3657 | }; |
3657 | 3658 | ||
3659 | static struct video_device radio_template = { | ||
3660 | .fops = &radio_fops, | ||
3661 | .minor = -1, | ||
3662 | .ioctl_ops = &radio_ioctl_ops, | ||
3663 | }; | ||
3664 | |||
3658 | /* ----------------------------------------------------------------------- */ | 3665 | /* ----------------------------------------------------------------------- */ |
3659 | /* some debug code */ | 3666 | /* some debug code */ |
3660 | 3667 | ||
@@ -4175,8 +4182,7 @@ static irqreturn_t bttv_irq(int irq, void *dev_id) | |||
4175 | 4182 | ||
4176 | static struct video_device *vdev_init(struct bttv *btv, | 4183 | static struct video_device *vdev_init(struct bttv *btv, |
4177 | const struct video_device *template, | 4184 | const struct video_device *template, |
4178 | const char *type_name, | 4185 | const char *type_name) |
4179 | const int type) | ||
4180 | { | 4186 | { |
4181 | struct video_device *vfd; | 4187 | struct video_device *vfd; |
4182 | 4188 | ||
@@ -4185,9 +4191,8 @@ static struct video_device *vdev_init(struct bttv *btv, | |||
4185 | return NULL; | 4191 | return NULL; |
4186 | *vfd = *template; | 4192 | *vfd = *template; |
4187 | vfd->minor = -1; | 4193 | vfd->minor = -1; |
4188 | vfd->dev = &btv->c.pci->dev; | 4194 | vfd->parent = &btv->c.pci->dev; |
4189 | vfd->release = video_device_release; | 4195 | vfd->release = video_device_release; |
4190 | vfd->type = type; | ||
4191 | vfd->debug = bttv_debug; | 4196 | vfd->debug = bttv_debug; |
4192 | snprintf(vfd->name, sizeof(vfd->name), "BT%d%s %s (%s)", | 4197 | snprintf(vfd->name, sizeof(vfd->name), "BT%d%s %s (%s)", |
4193 | btv->id, (btv->id==848 && btv->revision==0x12) ? "A" : "", | 4198 | btv->id, (btv->id==848 && btv->revision==0x12) ? "A" : "", |
@@ -4223,20 +4228,11 @@ static void bttv_unregister_video(struct bttv *btv) | |||
4223 | /* register video4linux devices */ | 4228 | /* register video4linux devices */ |
4224 | static int __devinit bttv_register_video(struct bttv *btv) | 4229 | static int __devinit bttv_register_video(struct bttv *btv) |
4225 | { | 4230 | { |
4226 | int video_type = VID_TYPE_CAPTURE | | 4231 | if (no_overlay > 0) |
4227 | VID_TYPE_TUNER | | ||
4228 | VID_TYPE_CLIPPING| | ||
4229 | VID_TYPE_SCALES; | ||
4230 | |||
4231 | if (no_overlay <= 0) { | ||
4232 | bttv_video_template.type |= VID_TYPE_OVERLAY; | ||
4233 | } else { | ||
4234 | printk("bttv: Overlay support disabled.\n"); | 4232 | printk("bttv: Overlay support disabled.\n"); |
4235 | } | ||
4236 | 4233 | ||
4237 | /* video */ | 4234 | /* video */ |
4238 | btv->video_dev = vdev_init(btv, &bttv_video_template, | 4235 | btv->video_dev = vdev_init(btv, &bttv_video_template, "video"); |
4239 | "video", video_type); | ||
4240 | 4236 | ||
4241 | if (NULL == btv->video_dev) | 4237 | if (NULL == btv->video_dev) |
4242 | goto err; | 4238 | goto err; |
@@ -4244,7 +4240,7 @@ static int __devinit bttv_register_video(struct bttv *btv) | |||
4244 | goto err; | 4240 | goto err; |
4245 | printk(KERN_INFO "bttv%d: registered device video%d\n", | 4241 | printk(KERN_INFO "bttv%d: registered device video%d\n", |
4246 | btv->c.nr,btv->video_dev->minor & 0x1f); | 4242 | btv->c.nr,btv->video_dev->minor & 0x1f); |
4247 | if (device_create_file(&btv->video_dev->class_dev, | 4243 | if (device_create_file(&btv->video_dev->dev, |
4248 | &dev_attr_card)<0) { | 4244 | &dev_attr_card)<0) { |
4249 | printk(KERN_ERR "bttv%d: device_create_file 'card' " | 4245 | printk(KERN_ERR "bttv%d: device_create_file 'card' " |
4250 | "failed\n", btv->c.nr); | 4246 | "failed\n", btv->c.nr); |
@@ -4252,8 +4248,7 @@ static int __devinit bttv_register_video(struct bttv *btv) | |||
4252 | } | 4248 | } |
4253 | 4249 | ||
4254 | /* vbi */ | 4250 | /* vbi */ |
4255 | btv->vbi_dev = vdev_init(btv, &bttv_video_template, | 4251 | btv->vbi_dev = vdev_init(btv, &bttv_video_template, "vbi"); |
4256 | "vbi", VID_TYPE_TUNER | VID_TYPE_TELETEXT); | ||
4257 | 4252 | ||
4258 | if (NULL == btv->vbi_dev) | 4253 | if (NULL == btv->vbi_dev) |
4259 | goto err; | 4254 | goto err; |
@@ -4265,8 +4260,7 @@ static int __devinit bttv_register_video(struct bttv *btv) | |||
4265 | if (!btv->has_radio) | 4260 | if (!btv->has_radio) |
4266 | return 0; | 4261 | return 0; |
4267 | /* radio */ | 4262 | /* radio */ |
4268 | btv->radio_dev = vdev_init(btv, &radio_template, | 4263 | btv->radio_dev = vdev_init(btv, &radio_template, "radio"); |
4269 | "radio", VID_TYPE_TUNER); | ||
4270 | if (NULL == btv->radio_dev) | 4264 | if (NULL == btv->radio_dev) |
4271 | goto err; | 4265 | goto err; |
4272 | if (video_register_device(btv->radio_dev, VFL_TYPE_RADIO,radio_nr)<0) | 4266 | if (video_register_device(btv->radio_dev, VFL_TYPE_RADIO,radio_nr)<0) |
diff --git a/drivers/media/video/bt8xx/bttv-risc.c b/drivers/media/video/bt8xx/bttv-risc.c index 0af586876e72..649682aac1ac 100644 --- a/drivers/media/video/bt8xx/bttv-risc.c +++ b/drivers/media/video/bt8xx/bttv-risc.c | |||
@@ -31,6 +31,7 @@ | |||
31 | #include <linux/interrupt.h> | 31 | #include <linux/interrupt.h> |
32 | #include <asm/page.h> | 32 | #include <asm/page.h> |
33 | #include <asm/pgtable.h> | 33 | #include <asm/pgtable.h> |
34 | #include <media/v4l2-ioctl.h> | ||
34 | 35 | ||
35 | #include "bttvp.h" | 36 | #include "bttvp.h" |
36 | 37 | ||
diff --git a/drivers/media/video/bt8xx/bttv-vbi.c b/drivers/media/video/bt8xx/bttv-vbi.c index 68f28e5fa040..6819e21a3773 100644 --- a/drivers/media/video/bt8xx/bttv-vbi.c +++ b/drivers/media/video/bt8xx/bttv-vbi.c | |||
@@ -29,6 +29,7 @@ | |||
29 | #include <linux/kernel.h> | 29 | #include <linux/kernel.h> |
30 | #include <linux/interrupt.h> | 30 | #include <linux/interrupt.h> |
31 | #include <linux/kdev_t.h> | 31 | #include <linux/kdev_t.h> |
32 | #include <media/v4l2-ioctl.h> | ||
32 | #include <asm/io.h> | 33 | #include <asm/io.h> |
33 | #include "bttvp.h" | 34 | #include "bttvp.h" |
34 | 35 | ||
diff --git a/drivers/media/video/bw-qcam.c b/drivers/media/video/bw-qcam.c index b364adaae78d..d3b3268bace8 100644 --- a/drivers/media/video/bw-qcam.c +++ b/drivers/media/video/bw-qcam.c | |||
@@ -74,6 +74,7 @@ OTHER DEALINGS IN THE SOFTWARE. | |||
74 | #include <linux/sched.h> | 74 | #include <linux/sched.h> |
75 | #include <linux/videodev.h> | 75 | #include <linux/videodev.h> |
76 | #include <media/v4l2-common.h> | 76 | #include <media/v4l2-common.h> |
77 | #include <media/v4l2-ioctl.h> | ||
77 | #include <linux/mutex.h> | 78 | #include <linux/mutex.h> |
78 | #include <asm/uaccess.h> | 79 | #include <asm/uaccess.h> |
79 | 80 | ||
@@ -906,9 +907,7 @@ static const struct file_operations qcam_fops = { | |||
906 | }; | 907 | }; |
907 | static struct video_device qcam_template= | 908 | static struct video_device qcam_template= |
908 | { | 909 | { |
909 | .owner = THIS_MODULE, | ||
910 | .name = "Connectix Quickcam", | 910 | .name = "Connectix Quickcam", |
911 | .type = VID_TYPE_CAPTURE, | ||
912 | .fops = &qcam_fops, | 911 | .fops = &qcam_fops, |
913 | }; | 912 | }; |
914 | 913 | ||
diff --git a/drivers/media/video/c-qcam.c b/drivers/media/video/c-qcam.c index fe1e67bb1ca8..fe9379b282d3 100644 --- a/drivers/media/video/c-qcam.c +++ b/drivers/media/video/c-qcam.c | |||
@@ -35,6 +35,7 @@ | |||
35 | #include <linux/sched.h> | 35 | #include <linux/sched.h> |
36 | #include <linux/videodev.h> | 36 | #include <linux/videodev.h> |
37 | #include <media/v4l2-common.h> | 37 | #include <media/v4l2-common.h> |
38 | #include <media/v4l2-ioctl.h> | ||
38 | #include <linux/mutex.h> | 39 | #include <linux/mutex.h> |
39 | #include <linux/jiffies.h> | 40 | #include <linux/jiffies.h> |
40 | 41 | ||
@@ -701,9 +702,7 @@ static const struct file_operations qcam_fops = { | |||
701 | 702 | ||
702 | static struct video_device qcam_template= | 703 | static struct video_device qcam_template= |
703 | { | 704 | { |
704 | .owner = THIS_MODULE, | ||
705 | .name = "Colour QuickCam", | 705 | .name = "Colour QuickCam", |
706 | .type = VID_TYPE_CAPTURE, | ||
707 | .fops = &qcam_fops, | 706 | .fops = &qcam_fops, |
708 | }; | 707 | }; |
709 | 708 | ||
diff --git a/drivers/media/video/cafe_ccic.c b/drivers/media/video/cafe_ccic.c index d99453faaab7..c149b7d712e5 100644 --- a/drivers/media/video/cafe_ccic.c +++ b/drivers/media/video/cafe_ccic.c | |||
@@ -25,6 +25,7 @@ | |||
25 | #include <linux/spinlock.h> | 25 | #include <linux/spinlock.h> |
26 | #include <linux/videodev2.h> | 26 | #include <linux/videodev2.h> |
27 | #include <media/v4l2-common.h> | 27 | #include <media/v4l2-common.h> |
28 | #include <media/v4l2-ioctl.h> | ||
28 | #include <media/v4l2-chip-ident.h> | 29 | #include <media/v4l2-chip-ident.h> |
29 | #include <linux/device.h> | 30 | #include <linux/device.h> |
30 | #include <linux/wait.h> | 31 | #include <linux/wait.h> |
@@ -1768,17 +1769,7 @@ static const struct file_operations cafe_v4l_fops = { | |||
1768 | .llseek = no_llseek, | 1769 | .llseek = no_llseek, |
1769 | }; | 1770 | }; |
1770 | 1771 | ||
1771 | static struct video_device cafe_v4l_template = { | 1772 | static const struct v4l2_ioctl_ops cafe_v4l_ioctl_ops = { |
1772 | .name = "cafe", | ||
1773 | .type = VFL_TYPE_GRABBER, | ||
1774 | .type2 = VID_TYPE_CAPTURE, | ||
1775 | .minor = -1, /* Get one dynamically */ | ||
1776 | .tvnorms = V4L2_STD_NTSC_M, | ||
1777 | .current_norm = V4L2_STD_NTSC_M, /* make mplayer happy */ | ||
1778 | |||
1779 | .fops = &cafe_v4l_fops, | ||
1780 | .release = cafe_v4l_dev_release, | ||
1781 | |||
1782 | .vidioc_querycap = cafe_vidioc_querycap, | 1773 | .vidioc_querycap = cafe_vidioc_querycap, |
1783 | .vidioc_enum_fmt_vid_cap = cafe_vidioc_enum_fmt_vid_cap, | 1774 | .vidioc_enum_fmt_vid_cap = cafe_vidioc_enum_fmt_vid_cap, |
1784 | .vidioc_try_fmt_vid_cap = cafe_vidioc_try_fmt_vid_cap, | 1775 | .vidioc_try_fmt_vid_cap = cafe_vidioc_try_fmt_vid_cap, |
@@ -1801,6 +1792,17 @@ static struct video_device cafe_v4l_template = { | |||
1801 | .vidioc_s_parm = cafe_vidioc_s_parm, | 1792 | .vidioc_s_parm = cafe_vidioc_s_parm, |
1802 | }; | 1793 | }; |
1803 | 1794 | ||
1795 | static struct video_device cafe_v4l_template = { | ||
1796 | .name = "cafe", | ||
1797 | .minor = -1, /* Get one dynamically */ | ||
1798 | .tvnorms = V4L2_STD_NTSC_M, | ||
1799 | .current_norm = V4L2_STD_NTSC_M, /* make mplayer happy */ | ||
1800 | |||
1801 | .fops = &cafe_v4l_fops, | ||
1802 | .ioctl_ops = &cafe_v4l_ioctl_ops, | ||
1803 | .release = cafe_v4l_dev_release, | ||
1804 | }; | ||
1805 | |||
1804 | 1806 | ||
1805 | 1807 | ||
1806 | 1808 | ||
@@ -2157,7 +2159,7 @@ static int cafe_pci_probe(struct pci_dev *pdev, | |||
2157 | cam->v4ldev = cafe_v4l_template; | 2159 | cam->v4ldev = cafe_v4l_template; |
2158 | cam->v4ldev.debug = 0; | 2160 | cam->v4ldev.debug = 0; |
2159 | // cam->v4ldev.debug = V4L2_DEBUG_IOCTL_ARG; | 2161 | // cam->v4ldev.debug = V4L2_DEBUG_IOCTL_ARG; |
2160 | cam->v4ldev.dev = &pdev->dev; | 2162 | cam->v4ldev.parent = &pdev->dev; |
2161 | ret = video_register_device(&cam->v4ldev, VFL_TYPE_GRABBER, -1); | 2163 | ret = video_register_device(&cam->v4ldev, VFL_TYPE_GRABBER, -1); |
2162 | if (ret) | 2164 | if (ret) |
2163 | goto out_smbus; | 2165 | goto out_smbus; |
diff --git a/drivers/media/video/compat_ioctl32.c b/drivers/media/video/compat_ioctl32.c index 54de0cd482e9..bd5d9de5a008 100644 --- a/drivers/media/video/compat_ioctl32.c +++ b/drivers/media/video/compat_ioctl32.c | |||
@@ -17,7 +17,7 @@ | |||
17 | #include <linux/videodev2.h> | 17 | #include <linux/videodev2.h> |
18 | #include <linux/module.h> | 18 | #include <linux/module.h> |
19 | #include <linux/smp_lock.h> | 19 | #include <linux/smp_lock.h> |
20 | #include <media/v4l2-common.h> | 20 | #include <media/v4l2-ioctl.h> |
21 | 21 | ||
22 | #ifdef CONFIG_COMPAT | 22 | #ifdef CONFIG_COMPAT |
23 | 23 | ||
diff --git a/drivers/media/video/cpia.c b/drivers/media/video/cpia.c index 2a81376ef503..dc8cc6115e2f 100644 --- a/drivers/media/video/cpia.c +++ b/drivers/media/video/cpia.c | |||
@@ -3799,9 +3799,7 @@ static const struct file_operations cpia_fops = { | |||
3799 | }; | 3799 | }; |
3800 | 3800 | ||
3801 | static struct video_device cpia_template = { | 3801 | static struct video_device cpia_template = { |
3802 | .owner = THIS_MODULE, | ||
3803 | .name = "CPiA Camera", | 3802 | .name = "CPiA Camera", |
3804 | .type = VID_TYPE_CAPTURE, | ||
3805 | .fops = &cpia_fops, | 3803 | .fops = &cpia_fops, |
3806 | }; | 3804 | }; |
3807 | 3805 | ||
diff --git a/drivers/media/video/cpia.h b/drivers/media/video/cpia.h index 5096058bf579..8f0cfee4b8a1 100644 --- a/drivers/media/video/cpia.h +++ b/drivers/media/video/cpia.h | |||
@@ -46,6 +46,7 @@ | |||
46 | #include <asm/uaccess.h> | 46 | #include <asm/uaccess.h> |
47 | #include <linux/videodev.h> | 47 | #include <linux/videodev.h> |
48 | #include <media/v4l2-common.h> | 48 | #include <media/v4l2-common.h> |
49 | #include <media/v4l2-ioctl.h> | ||
49 | #include <linux/list.h> | 50 | #include <linux/list.h> |
50 | #include <linux/mutex.h> | 51 | #include <linux/mutex.h> |
51 | 52 | ||
diff --git a/drivers/media/video/cpia2/cpia2_core.c b/drivers/media/video/cpia2/cpia2_core.c index f2e8b1c82c66..af8b9ec8e358 100644 --- a/drivers/media/video/cpia2/cpia2_core.c +++ b/drivers/media/video/cpia2/cpia2_core.c | |||
@@ -32,6 +32,7 @@ | |||
32 | #include "cpia2.h" | 32 | #include "cpia2.h" |
33 | 33 | ||
34 | #include <linux/slab.h> | 34 | #include <linux/slab.h> |
35 | #include <linux/mm.h> | ||
35 | #include <linux/vmalloc.h> | 36 | #include <linux/vmalloc.h> |
36 | #include <linux/firmware.h> | 37 | #include <linux/firmware.h> |
37 | 38 | ||
diff --git a/drivers/media/video/cpia2/cpia2_v4l.c b/drivers/media/video/cpia2/cpia2_v4l.c index 7ce2789fa976..515c8b57a60d 100644 --- a/drivers/media/video/cpia2/cpia2_v4l.c +++ b/drivers/media/video/cpia2/cpia2_v4l.c | |||
@@ -37,6 +37,7 @@ | |||
37 | #include <linux/sched.h> | 37 | #include <linux/sched.h> |
38 | #include <linux/slab.h> | 38 | #include <linux/slab.h> |
39 | #include <linux/init.h> | 39 | #include <linux/init.h> |
40 | #include <media/v4l2-ioctl.h> | ||
40 | 41 | ||
41 | #include "cpia2.h" | 42 | #include "cpia2.h" |
42 | #include "cpia2dev.h" | 43 | #include "cpia2dev.h" |
@@ -1935,11 +1936,7 @@ static const struct file_operations fops_template = { | |||
1935 | 1936 | ||
1936 | static struct video_device cpia2_template = { | 1937 | static struct video_device cpia2_template = { |
1937 | /* I could not find any place for the old .initialize initializer?? */ | 1938 | /* I could not find any place for the old .initialize initializer?? */ |
1938 | .owner= THIS_MODULE, | ||
1939 | .name= "CPiA2 Camera", | 1939 | .name= "CPiA2 Camera", |
1940 | .type= VID_TYPE_CAPTURE, | ||
1941 | .type2 = V4L2_CAP_VIDEO_CAPTURE | | ||
1942 | V4L2_CAP_STREAMING, | ||
1943 | .minor= -1, | 1940 | .minor= -1, |
1944 | .fops= &fops_template, | 1941 | .fops= &fops_template, |
1945 | .release= video_device_release, | 1942 | .release= video_device_release, |
diff --git a/drivers/media/video/cs5345.c b/drivers/media/video/cs5345.c index 1c3fa3a7470a..61d14d26686f 100644 --- a/drivers/media/video/cs5345.c +++ b/drivers/media/video/cs5345.c | |||
@@ -111,7 +111,7 @@ static int cs5345_command(struct i2c_client *client, unsigned cmd, void *arg) | |||
111 | if (cmd == VIDIOC_DBG_G_REGISTER) | 111 | if (cmd == VIDIOC_DBG_G_REGISTER) |
112 | reg->val = cs5345_read(client, reg->reg & 0x1f); | 112 | reg->val = cs5345_read(client, reg->reg & 0x1f); |
113 | else | 113 | else |
114 | cs5345_write(client, reg->reg & 0x1f, reg->val & 0x1f); | 114 | cs5345_write(client, reg->reg & 0x1f, reg->val & 0xff); |
115 | break; | 115 | break; |
116 | } | 116 | } |
117 | #endif | 117 | #endif |
diff --git a/drivers/media/video/cs53l32a.c b/drivers/media/video/cs53l32a.c index 645b339152d3..e30a589c0e18 100644 --- a/drivers/media/video/cs53l32a.c +++ b/drivers/media/video/cs53l32a.c | |||
@@ -26,7 +26,7 @@ | |||
26 | #include <asm/uaccess.h> | 26 | #include <asm/uaccess.h> |
27 | #include <linux/i2c.h> | 27 | #include <linux/i2c.h> |
28 | #include <linux/i2c-id.h> | 28 | #include <linux/i2c-id.h> |
29 | #include <linux/videodev.h> | 29 | #include <linux/videodev2.h> |
30 | #include <media/v4l2-common.h> | 30 | #include <media/v4l2-common.h> |
31 | #include <media/v4l2-chip-ident.h> | 31 | #include <media/v4l2-chip-ident.h> |
32 | #include <media/v4l2-i2c-drv-legacy.h> | 32 | #include <media/v4l2-i2c-drv-legacy.h> |
diff --git a/drivers/media/video/cx18/Kconfig b/drivers/media/video/cx18/Kconfig index 9aefdc5ea79a..ef48565de7f1 100644 --- a/drivers/media/video/cx18/Kconfig +++ b/drivers/media/video/cx18/Kconfig | |||
@@ -2,9 +2,7 @@ config VIDEO_CX18 | |||
2 | tristate "Conexant cx23418 MPEG encoder support" | 2 | tristate "Conexant cx23418 MPEG encoder support" |
3 | depends on VIDEO_V4L2 && DVB_CORE && PCI && I2C && EXPERIMENTAL | 3 | depends on VIDEO_V4L2 && DVB_CORE && PCI && I2C && EXPERIMENTAL |
4 | depends on INPUT # due to VIDEO_IR | 4 | depends on INPUT # due to VIDEO_IR |
5 | depends on HOTPLUG # due to FW_LOADER | ||
6 | select I2C_ALGOBIT | 5 | select I2C_ALGOBIT |
7 | select FW_LOADER | ||
8 | select VIDEO_IR | 6 | select VIDEO_IR |
9 | select VIDEO_TUNER | 7 | select VIDEO_TUNER |
10 | select VIDEO_TVEEPROM | 8 | select VIDEO_TVEEPROM |
diff --git a/drivers/media/video/cx18/cx18-av-audio.c b/drivers/media/video/cx18/cx18-av-audio.c index c40a286de1b9..0b55837880a7 100644 --- a/drivers/media/video/cx18/cx18-av-audio.c +++ b/drivers/media/video/cx18/cx18-av-audio.c | |||
@@ -30,7 +30,6 @@ static int set_audclk_freq(struct cx18 *cx, u32 freq) | |||
30 | if (freq != 32000 && freq != 44100 && freq != 48000) | 30 | if (freq != 32000 && freq != 44100 && freq != 48000) |
31 | return -EINVAL; | 31 | return -EINVAL; |
32 | 32 | ||
33 | /* common for all inputs and rates */ | ||
34 | /* SA_MCLK_SEL=1, SA_MCLK_DIV=0x10 */ | 33 | /* SA_MCLK_SEL=1, SA_MCLK_DIV=0x10 */ |
35 | cx18_av_write(cx, 0x127, 0x50); | 34 | cx18_av_write(cx, 0x127, 0x50); |
36 | 35 | ||
@@ -38,15 +37,30 @@ static int set_audclk_freq(struct cx18 *cx, u32 freq) | |||
38 | switch (freq) { | 37 | switch (freq) { |
39 | case 32000: | 38 | case 32000: |
40 | /* VID_PLL and AUX_PLL */ | 39 | /* VID_PLL and AUX_PLL */ |
41 | cx18_av_write4(cx, 0x108, 0x1006040f); | 40 | cx18_av_write4(cx, 0x108, 0x1408040f); |
42 | 41 | ||
43 | /* AUX_PLL_FRAC */ | 42 | /* AUX_PLL_FRAC */ |
44 | cx18_av_write4(cx, 0x110, 0x01bb39ee); | 43 | /* 0x8.9504318a * 28,636,363.636 / 0x14 = 32000 * 384 */ |
44 | cx18_av_write4(cx, 0x110, 0x012a0863); | ||
45 | 45 | ||
46 | /* src3/4/6_ctl = 0x0801f77f */ | 46 | /* src3/4/6_ctl */ |
47 | /* 0x1.f77f = (4 * 15734.26) / 32000 */ | ||
47 | cx18_av_write4(cx, 0x900, 0x0801f77f); | 48 | cx18_av_write4(cx, 0x900, 0x0801f77f); |
48 | cx18_av_write4(cx, 0x904, 0x0801f77f); | 49 | cx18_av_write4(cx, 0x904, 0x0801f77f); |
49 | cx18_av_write4(cx, 0x90c, 0x0801f77f); | 50 | cx18_av_write4(cx, 0x90c, 0x0801f77f); |
51 | |||
52 | /* SA_MCLK_SEL=1, SA_MCLK_DIV=0x14 */ | ||
53 | cx18_av_write(cx, 0x127, 0x54); | ||
54 | |||
55 | /* AUD_COUNT = 0x2fff = 8 samples * 4 * 384 - 1 */ | ||
56 | cx18_av_write4(cx, 0x12c, 0x11202fff); | ||
57 | |||
58 | /* | ||
59 | * EN_AV_LOCK = 1 | ||
60 | * VID_COUNT = 0x0d2ef8 = 107999.000 * 8 = | ||
61 | * ((8 samples/32,000) * (13,500,000 * 8) * 4 - 1) * 8 | ||
62 | */ | ||
63 | cx18_av_write4(cx, 0x128, 0xa10d2ef8); | ||
50 | break; | 64 | break; |
51 | 65 | ||
52 | case 44100: | 66 | case 44100: |
@@ -54,12 +68,24 @@ static int set_audclk_freq(struct cx18 *cx, u32 freq) | |||
54 | cx18_av_write4(cx, 0x108, 0x1009040f); | 68 | cx18_av_write4(cx, 0x108, 0x1009040f); |
55 | 69 | ||
56 | /* AUX_PLL_FRAC */ | 70 | /* AUX_PLL_FRAC */ |
57 | cx18_av_write4(cx, 0x110, 0x00ec6bd6); | 71 | /* 0x9.7635e7 * 28,636,363.63 / 0x10 = 44100 * 384 */ |
72 | cx18_av_write4(cx, 0x110, 0x00ec6bce); | ||
58 | 73 | ||
59 | /* src3/4/6_ctl = 0x08016d59 */ | 74 | /* src3/4/6_ctl */ |
75 | /* 0x1.6d59 = (4 * 15734.26) / 44100 */ | ||
60 | cx18_av_write4(cx, 0x900, 0x08016d59); | 76 | cx18_av_write4(cx, 0x900, 0x08016d59); |
61 | cx18_av_write4(cx, 0x904, 0x08016d59); | 77 | cx18_av_write4(cx, 0x904, 0x08016d59); |
62 | cx18_av_write4(cx, 0x90c, 0x08016d59); | 78 | cx18_av_write4(cx, 0x90c, 0x08016d59); |
79 | |||
80 | /* AUD_COUNT = 0x92ff = 49 samples * 2 * 384 - 1 */ | ||
81 | cx18_av_write4(cx, 0x12c, 0x112092ff); | ||
82 | |||
83 | /* | ||
84 | * EN_AV_LOCK = 1 | ||
85 | * VID_COUNT = 0x1d4bf8 = 239999.000 * 8 = | ||
86 | * ((49 samples/44,100) * (13,500,000 * 8) * 2 - 1) * 8 | ||
87 | */ | ||
88 | cx18_av_write4(cx, 0x128, 0xa11d4bf8); | ||
63 | break; | 89 | break; |
64 | 90 | ||
65 | case 48000: | 91 | case 48000: |
@@ -67,12 +93,24 @@ static int set_audclk_freq(struct cx18 *cx, u32 freq) | |||
67 | cx18_av_write4(cx, 0x108, 0x100a040f); | 93 | cx18_av_write4(cx, 0x108, 0x100a040f); |
68 | 94 | ||
69 | /* AUX_PLL_FRAC */ | 95 | /* AUX_PLL_FRAC */ |
70 | cx18_av_write4(cx, 0x110, 0x0098d6e5); | 96 | /* 0xa.4c6b6ea * 28,636,363.63 / 0x10 = 48000 * 384 */ |
97 | cx18_av_write4(cx, 0x110, 0x0098d6dd); | ||
71 | 98 | ||
72 | /* src3/4/6_ctl = 0x08014faa */ | 99 | /* src3/4/6_ctl */ |
100 | /* 0x1.4faa = (4 * 15734.26) / 48000 */ | ||
73 | cx18_av_write4(cx, 0x900, 0x08014faa); | 101 | cx18_av_write4(cx, 0x900, 0x08014faa); |
74 | cx18_av_write4(cx, 0x904, 0x08014faa); | 102 | cx18_av_write4(cx, 0x904, 0x08014faa); |
75 | cx18_av_write4(cx, 0x90c, 0x08014faa); | 103 | cx18_av_write4(cx, 0x90c, 0x08014faa); |
104 | |||
105 | /* AUD_COUNT = 0x5fff = 4 samples * 16 * 384 - 1 */ | ||
106 | cx18_av_write4(cx, 0x12c, 0x11205fff); | ||
107 | |||
108 | /* | ||
109 | * EN_AV_LOCK = 1 | ||
110 | * VID_COUNT = 0x1193f8 = 143999.000 * 8 = | ||
111 | * ((4 samples/48,000) * (13,500,000 * 8) * 16 - 1) * 8 | ||
112 | */ | ||
113 | cx18_av_write4(cx, 0x128, 0xa11193f8); | ||
76 | break; | 114 | break; |
77 | } | 115 | } |
78 | } else { | 116 | } else { |
@@ -82,18 +120,31 @@ static int set_audclk_freq(struct cx18 *cx, u32 freq) | |||
82 | cx18_av_write4(cx, 0x108, 0x1e08040f); | 120 | cx18_av_write4(cx, 0x108, 0x1e08040f); |
83 | 121 | ||
84 | /* AUX_PLL_FRAC */ | 122 | /* AUX_PLL_FRAC */ |
85 | cx18_av_write4(cx, 0x110, 0x012a0869); | 123 | /* 0x8.9504318 * 28,636,363.63 / 0x1e = 32000 * 256 */ |
124 | cx18_av_write4(cx, 0x110, 0x012a0863); | ||
86 | 125 | ||
87 | /* src1_ctl = 0x08010000 */ | 126 | /* src1_ctl */ |
127 | /* 0x1.0000 = 32000/32000 */ | ||
88 | cx18_av_write4(cx, 0x8f8, 0x08010000); | 128 | cx18_av_write4(cx, 0x8f8, 0x08010000); |
89 | 129 | ||
90 | /* src3/4/6_ctl = 0x08020000 */ | 130 | /* src3/4/6_ctl */ |
131 | /* 0x2.0000 = 2 * (32000/32000) */ | ||
91 | cx18_av_write4(cx, 0x900, 0x08020000); | 132 | cx18_av_write4(cx, 0x900, 0x08020000); |
92 | cx18_av_write4(cx, 0x904, 0x08020000); | 133 | cx18_av_write4(cx, 0x904, 0x08020000); |
93 | cx18_av_write4(cx, 0x90c, 0x08020000); | 134 | cx18_av_write4(cx, 0x90c, 0x08020000); |
94 | 135 | ||
95 | /* SA_MCLK_SEL=1, SA_MCLK_DIV=0x14 */ | 136 | /* SA_MCLK_SEL=1, SA_MCLK_DIV=0x14 */ |
96 | cx18_av_write(cx, 0x127, 0x54); | 137 | cx18_av_write(cx, 0x127, 0x54); |
138 | |||
139 | /* AUD_COUNT = 0x1fff = 8 samples * 4 * 256 - 1 */ | ||
140 | cx18_av_write4(cx, 0x12c, 0x11201fff); | ||
141 | |||
142 | /* | ||
143 | * EN_AV_LOCK = 1 | ||
144 | * VID_COUNT = 0x0d2ef8 = 107999.000 * 8 = | ||
145 | * ((8 samples/32,000) * (13,500,000 * 8) * 4 - 1) * 8 | ||
146 | */ | ||
147 | cx18_av_write4(cx, 0x128, 0xa10d2ef8); | ||
97 | break; | 148 | break; |
98 | 149 | ||
99 | case 44100: | 150 | case 44100: |
@@ -101,15 +152,28 @@ static int set_audclk_freq(struct cx18 *cx, u32 freq) | |||
101 | cx18_av_write4(cx, 0x108, 0x1809040f); | 152 | cx18_av_write4(cx, 0x108, 0x1809040f); |
102 | 153 | ||
103 | /* AUX_PLL_FRAC */ | 154 | /* AUX_PLL_FRAC */ |
104 | cx18_av_write4(cx, 0x110, 0x00ec6bd6); | 155 | /* 0x9.7635e74 * 28,636,363.63 / 0x18 = 44100 * 256 */ |
156 | cx18_av_write4(cx, 0x110, 0x00ec6bce); | ||
105 | 157 | ||
106 | /* src1_ctl = 0x08010000 */ | 158 | /* src1_ctl */ |
159 | /* 0x1.60cd = 44100/32000 */ | ||
107 | cx18_av_write4(cx, 0x8f8, 0x080160cd); | 160 | cx18_av_write4(cx, 0x8f8, 0x080160cd); |
108 | 161 | ||
109 | /* src3/4/6_ctl = 0x08020000 */ | 162 | /* src3/4/6_ctl */ |
163 | /* 0x1.7385 = 2 * (32000/44100) */ | ||
110 | cx18_av_write4(cx, 0x900, 0x08017385); | 164 | cx18_av_write4(cx, 0x900, 0x08017385); |
111 | cx18_av_write4(cx, 0x904, 0x08017385); | 165 | cx18_av_write4(cx, 0x904, 0x08017385); |
112 | cx18_av_write4(cx, 0x90c, 0x08017385); | 166 | cx18_av_write4(cx, 0x90c, 0x08017385); |
167 | |||
168 | /* AUD_COUNT = 0x61ff = 49 samples * 2 * 256 - 1 */ | ||
169 | cx18_av_write4(cx, 0x12c, 0x112061ff); | ||
170 | |||
171 | /* | ||
172 | * EN_AV_LOCK = 1 | ||
173 | * VID_COUNT = 0x1d4bf8 = 239999.000 * 8 = | ||
174 | * ((49 samples/44,100) * (13,500,000 * 8) * 2 - 1) * 8 | ||
175 | */ | ||
176 | cx18_av_write4(cx, 0x128, 0xa11d4bf8); | ||
113 | break; | 177 | break; |
114 | 178 | ||
115 | case 48000: | 179 | case 48000: |
@@ -117,15 +181,28 @@ static int set_audclk_freq(struct cx18 *cx, u32 freq) | |||
117 | cx18_av_write4(cx, 0x108, 0x180a040f); | 181 | cx18_av_write4(cx, 0x108, 0x180a040f); |
118 | 182 | ||
119 | /* AUX_PLL_FRAC */ | 183 | /* AUX_PLL_FRAC */ |
120 | cx18_av_write4(cx, 0x110, 0x0098d6e5); | 184 | /* 0xa.4c6b6ea * 28,636,363.63 / 0x18 = 48000 * 256 */ |
185 | cx18_av_write4(cx, 0x110, 0x0098d6dd); | ||
121 | 186 | ||
122 | /* src1_ctl = 0x08010000 */ | 187 | /* src1_ctl */ |
188 | /* 0x1.8000 = 48000/32000 */ | ||
123 | cx18_av_write4(cx, 0x8f8, 0x08018000); | 189 | cx18_av_write4(cx, 0x8f8, 0x08018000); |
124 | 190 | ||
125 | /* src3/4/6_ctl = 0x08020000 */ | 191 | /* src3/4/6_ctl */ |
192 | /* 0x1.5555 = 2 * (32000/48000) */ | ||
126 | cx18_av_write4(cx, 0x900, 0x08015555); | 193 | cx18_av_write4(cx, 0x900, 0x08015555); |
127 | cx18_av_write4(cx, 0x904, 0x08015555); | 194 | cx18_av_write4(cx, 0x904, 0x08015555); |
128 | cx18_av_write4(cx, 0x90c, 0x08015555); | 195 | cx18_av_write4(cx, 0x90c, 0x08015555); |
196 | |||
197 | /* AUD_COUNT = 0x3fff = 4 samples * 16 * 256 - 1 */ | ||
198 | cx18_av_write4(cx, 0x12c, 0x11203fff); | ||
199 | |||
200 | /* | ||
201 | * EN_AV_LOCK = 1 | ||
202 | * VID_COUNT = 0x1193f8 = 143999.000 * 8 = | ||
203 | * ((4 samples/48,000) * (13,500,000 * 8) * 16 - 1) * 8 | ||
204 | */ | ||
205 | cx18_av_write4(cx, 0x128, 0xa11193f8); | ||
129 | break; | 206 | break; |
130 | } | 207 | } |
131 | } | 208 | } |
diff --git a/drivers/media/video/cx18/cx18-driver.h b/drivers/media/video/cx18/cx18-driver.h index 45e31b04730e..4801bc7fb5b2 100644 --- a/drivers/media/video/cx18/cx18-driver.h +++ b/drivers/media/video/cx18/cx18-driver.h | |||
@@ -46,6 +46,7 @@ | |||
46 | #include <linux/dvb/video.h> | 46 | #include <linux/dvb/video.h> |
47 | #include <linux/dvb/audio.h> | 47 | #include <linux/dvb/audio.h> |
48 | #include <media/v4l2-common.h> | 48 | #include <media/v4l2-common.h> |
49 | #include <media/v4l2-ioctl.h> | ||
49 | #include <media/tuner.h> | 50 | #include <media/tuner.h> |
50 | #include "cx18-mailbox.h" | 51 | #include "cx18-mailbox.h" |
51 | #include "cx18-av-core.h" | 52 | #include "cx18-av-core.h" |
diff --git a/drivers/media/video/cx18/cx18-firmware.c b/drivers/media/video/cx18/cx18-firmware.c index 2d630d9f7496..78fadd2ada5d 100644 --- a/drivers/media/video/cx18/cx18-firmware.c +++ b/drivers/media/video/cx18/cx18-firmware.c | |||
@@ -86,10 +86,6 @@ | |||
86 | 86 | ||
87 | #define CX18_DSP0_INTERRUPT_MASK 0xd0004C | 87 | #define CX18_DSP0_INTERRUPT_MASK 0xd0004C |
88 | 88 | ||
89 | /* Encoder/decoder firmware sizes */ | ||
90 | #define CX18_FW_CPU_SIZE (158332) | ||
91 | #define CX18_FW_APU_SIZE (141200) | ||
92 | |||
93 | #define APU_ROM_SYNC1 0x6D676553 /* "mgeS" */ | 89 | #define APU_ROM_SYNC1 0x6D676553 /* "mgeS" */ |
94 | #define APU_ROM_SYNC2 0x72646548 /* "rdeH" */ | 90 | #define APU_ROM_SYNC2 0x72646548 /* "rdeH" */ |
95 | 91 | ||
@@ -100,35 +96,22 @@ struct cx18_apu_rom_seghdr { | |||
100 | u32 size; | 96 | u32 size; |
101 | }; | 97 | }; |
102 | 98 | ||
103 | static int load_cpu_fw_direct(const char *fn, u8 __iomem *mem, struct cx18 *cx, long size) | 99 | static int load_cpu_fw_direct(const char *fn, u8 __iomem *mem, struct cx18 *cx) |
104 | { | 100 | { |
105 | const struct firmware *fw = NULL; | 101 | const struct firmware *fw = NULL; |
106 | int retries = 3; | ||
107 | int i, j; | 102 | int i, j; |
103 | unsigned size; | ||
108 | u32 __iomem *dst = (u32 __iomem *)mem; | 104 | u32 __iomem *dst = (u32 __iomem *)mem; |
109 | const u32 *src; | 105 | const u32 *src; |
110 | 106 | ||
111 | retry: | 107 | if (request_firmware(&fw, fn, &cx->dev->dev)) { |
112 | if (!retries || request_firmware(&fw, fn, &cx->dev->dev)) { | 108 | CX18_ERR("Unable to open firmware %s\n", fn); |
113 | CX18_ERR("Unable to open firmware %s (must be %ld bytes)\n", | ||
114 | fn, size); | ||
115 | CX18_ERR("Did you put the firmware in the hotplug firmware directory?\n"); | 109 | CX18_ERR("Did you put the firmware in the hotplug firmware directory?\n"); |
116 | return -ENOMEM; | 110 | return -ENOMEM; |
117 | } | 111 | } |
118 | 112 | ||
119 | src = (const u32 *)fw->data; | 113 | src = (const u32 *)fw->data; |
120 | 114 | ||
121 | if (fw->size != size) { | ||
122 | /* Due to race conditions in firmware loading (esp. with | ||
123 | udev <0.95) the wrong file was sometimes loaded. So we check | ||
124 | filesizes to see if at least the right-sized file was | ||
125 | loaded. If not, then we retry. */ | ||
126 | CX18_INFO("retry: file loaded was not %s (expected size %ld, got %zd)\n", | ||
127 | fn, size, fw->size); | ||
128 | release_firmware(fw); | ||
129 | retries--; | ||
130 | goto retry; | ||
131 | } | ||
132 | for (i = 0; i < fw->size; i += 4096) { | 115 | for (i = 0; i < fw->size; i += 4096) { |
133 | setup_page(i); | 116 | setup_page(i); |
134 | for (j = i; j < fw->size && j < i + 4096; j += 4) { | 117 | for (j = i; j < fw->size && j < i + 4096; j += 4) { |
@@ -145,15 +128,16 @@ retry: | |||
145 | } | 128 | } |
146 | if (!test_bit(CX18_F_I_LOADED_FW, &cx->i_flags)) | 129 | if (!test_bit(CX18_F_I_LOADED_FW, &cx->i_flags)) |
147 | CX18_INFO("loaded %s firmware (%zd bytes)\n", fn, fw->size); | 130 | CX18_INFO("loaded %s firmware (%zd bytes)\n", fn, fw->size); |
131 | size = fw->size; | ||
148 | release_firmware(fw); | 132 | release_firmware(fw); |
149 | return size; | 133 | return size; |
150 | } | 134 | } |
151 | 135 | ||
152 | static int load_apu_fw_direct(const char *fn, u8 __iomem *dst, struct cx18 *cx, long size) | 136 | static int load_apu_fw_direct(const char *fn, u8 __iomem *dst, struct cx18 *cx) |
153 | { | 137 | { |
154 | const struct firmware *fw = NULL; | 138 | const struct firmware *fw = NULL; |
155 | int retries = 3; | ||
156 | int i, j; | 139 | int i, j; |
140 | unsigned size; | ||
157 | const u32 *src; | 141 | const u32 *src; |
158 | struct cx18_apu_rom_seghdr seghdr; | 142 | struct cx18_apu_rom_seghdr seghdr; |
159 | const u8 *vers; | 143 | const u8 *vers; |
@@ -161,10 +145,8 @@ static int load_apu_fw_direct(const char *fn, u8 __iomem *dst, struct cx18 *cx, | |||
161 | u32 apu_version = 0; | 145 | u32 apu_version = 0; |
162 | int sz; | 146 | int sz; |
163 | 147 | ||
164 | retry: | 148 | if (request_firmware(&fw, fn, &cx->dev->dev)) { |
165 | if (!retries || request_firmware(&fw, fn, &cx->dev->dev)) { | 149 | CX18_ERR("unable to open firmware %s\n", fn); |
166 | CX18_ERR("unable to open firmware %s (must be %ld bytes)\n", | ||
167 | fn, size); | ||
168 | CX18_ERR("did you put the firmware in the hotplug firmware directory?\n"); | 150 | CX18_ERR("did you put the firmware in the hotplug firmware directory?\n"); |
169 | return -ENOMEM; | 151 | return -ENOMEM; |
170 | } | 152 | } |
@@ -173,19 +155,8 @@ retry: | |||
173 | vers = fw->data + sizeof(seghdr); | 155 | vers = fw->data + sizeof(seghdr); |
174 | sz = fw->size; | 156 | sz = fw->size; |
175 | 157 | ||
176 | if (fw->size != size) { | ||
177 | /* Due to race conditions in firmware loading (esp. with | ||
178 | udev <0.95) the wrong file was sometimes loaded. So we check | ||
179 | filesizes to see if at least the right-sized file was | ||
180 | loaded. If not, then we retry. */ | ||
181 | CX18_INFO("retry: file loaded was not %s (expected size %ld, got %zd)\n", | ||
182 | fn, size, fw->size); | ||
183 | release_firmware(fw); | ||
184 | retries--; | ||
185 | goto retry; | ||
186 | } | ||
187 | apu_version = (vers[0] << 24) | (vers[4] << 16) | vers[32]; | 158 | apu_version = (vers[0] << 24) | (vers[4] << 16) | vers[32]; |
188 | while (offset + sizeof(seghdr) < size) { | 159 | while (offset + sizeof(seghdr) < fw->size) { |
189 | /* TODO: byteswapping */ | 160 | /* TODO: byteswapping */ |
190 | memcpy(&seghdr, src + offset / 4, sizeof(seghdr)); | 161 | memcpy(&seghdr, src + offset / 4, sizeof(seghdr)); |
191 | offset += sizeof(seghdr); | 162 | offset += sizeof(seghdr); |
@@ -215,6 +186,7 @@ retry: | |||
215 | if (!test_bit(CX18_F_I_LOADED_FW, &cx->i_flags)) | 186 | if (!test_bit(CX18_F_I_LOADED_FW, &cx->i_flags)) |
216 | CX18_INFO("loaded %s firmware V%08x (%zd bytes)\n", | 187 | CX18_INFO("loaded %s firmware V%08x (%zd bytes)\n", |
217 | fn, apu_version, fw->size); | 188 | fn, apu_version, fw->size); |
189 | size = fw->size; | ||
218 | release_firmware(fw); | 190 | release_firmware(fw); |
219 | /* Clear bit0 for APU to start from 0 */ | 191 | /* Clear bit0 for APU to start from 0 */ |
220 | write_reg(read_reg(0xc72030) & ~1, 0xc72030); | 192 | write_reg(read_reg(0xc72030) & ~1, 0xc72030); |
@@ -340,7 +312,7 @@ int cx18_firmware_init(struct cx18 *cx) | |||
340 | /* Only if the processor is not running */ | 312 | /* Only if the processor is not running */ |
341 | if (read_reg(CX18_PROC_SOFT_RESET) & 8) { | 313 | if (read_reg(CX18_PROC_SOFT_RESET) & 8) { |
342 | int sz = load_apu_fw_direct("v4l-cx23418-apu.fw", | 314 | int sz = load_apu_fw_direct("v4l-cx23418-apu.fw", |
343 | cx->enc_mem, cx, CX18_FW_APU_SIZE); | 315 | cx->enc_mem, cx); |
344 | 316 | ||
345 | write_enc(0xE51FF004, 0); | 317 | write_enc(0xE51FF004, 0); |
346 | write_enc(0xa00000, 4); /* todo: not hardcoded */ | 318 | write_enc(0xa00000, 4); /* todo: not hardcoded */ |
@@ -348,7 +320,7 @@ int cx18_firmware_init(struct cx18 *cx) | |||
348 | cx18_msleep_timeout(500, 0); | 320 | cx18_msleep_timeout(500, 0); |
349 | 321 | ||
350 | sz = sz <= 0 ? sz : load_cpu_fw_direct("v4l-cx23418-cpu.fw", | 322 | sz = sz <= 0 ? sz : load_cpu_fw_direct("v4l-cx23418-cpu.fw", |
351 | cx->enc_mem, cx, CX18_FW_CPU_SIZE); | 323 | cx->enc_mem, cx); |
352 | 324 | ||
353 | if (sz > 0) { | 325 | if (sz > 0) { |
354 | int retries = 0; | 326 | int retries = 0; |
diff --git a/drivers/media/video/cx18/cx18-ioctl.c b/drivers/media/video/cx18/cx18-ioctl.c index 0d74e59e503e..a7f839631d6a 100644 --- a/drivers/media/video/cx18/cx18-ioctl.c +++ b/drivers/media/video/cx18/cx18-ioctl.c | |||
@@ -787,50 +787,54 @@ int cx18_v4l2_ioctl(struct inode *inode, struct file *filp, unsigned int cmd, | |||
787 | return res; | 787 | return res; |
788 | } | 788 | } |
789 | 789 | ||
790 | void cx18_set_funcs(struct video_device *vdev) | 790 | static const struct v4l2_ioctl_ops cx18_ioctl_ops = { |
791 | { | 791 | .vidioc_querycap = cx18_querycap, |
792 | vdev->vidioc_querycap = cx18_querycap; | 792 | .vidioc_g_priority = cx18_g_priority, |
793 | vdev->vidioc_g_priority = cx18_g_priority; | 793 | .vidioc_s_priority = cx18_s_priority, |
794 | vdev->vidioc_s_priority = cx18_s_priority; | 794 | .vidioc_s_audio = cx18_s_audio, |
795 | vdev->vidioc_s_audio = cx18_s_audio; | 795 | .vidioc_g_audio = cx18_g_audio, |
796 | vdev->vidioc_g_audio = cx18_g_audio; | 796 | .vidioc_enumaudio = cx18_enumaudio, |
797 | vdev->vidioc_enumaudio = cx18_enumaudio; | 797 | .vidioc_enum_input = cx18_enum_input, |
798 | vdev->vidioc_enum_input = cx18_enum_input; | 798 | .vidioc_cropcap = cx18_cropcap, |
799 | vdev->vidioc_cropcap = cx18_cropcap; | 799 | .vidioc_s_crop = cx18_s_crop, |
800 | vdev->vidioc_s_crop = cx18_s_crop; | 800 | .vidioc_g_crop = cx18_g_crop, |
801 | vdev->vidioc_g_crop = cx18_g_crop; | 801 | .vidioc_g_input = cx18_g_input, |
802 | vdev->vidioc_g_input = cx18_g_input; | 802 | .vidioc_s_input = cx18_s_input, |
803 | vdev->vidioc_s_input = cx18_s_input; | 803 | .vidioc_g_frequency = cx18_g_frequency, |
804 | vdev->vidioc_g_frequency = cx18_g_frequency; | 804 | .vidioc_s_frequency = cx18_s_frequency, |
805 | vdev->vidioc_s_frequency = cx18_s_frequency; | 805 | .vidioc_s_tuner = cx18_s_tuner, |
806 | vdev->vidioc_s_tuner = cx18_s_tuner; | 806 | .vidioc_g_tuner = cx18_g_tuner, |
807 | vdev->vidioc_g_tuner = cx18_g_tuner; | 807 | .vidioc_g_enc_index = cx18_g_enc_index, |
808 | vdev->vidioc_g_enc_index = cx18_g_enc_index; | 808 | .vidioc_g_std = cx18_g_std, |
809 | vdev->vidioc_g_std = cx18_g_std; | 809 | .vidioc_s_std = cx18_s_std, |
810 | vdev->vidioc_s_std = cx18_s_std; | 810 | .vidioc_log_status = cx18_log_status, |
811 | vdev->vidioc_log_status = cx18_log_status; | 811 | .vidioc_enum_fmt_vid_cap = cx18_enum_fmt_vid_cap, |
812 | vdev->vidioc_enum_fmt_vid_cap = cx18_enum_fmt_vid_cap; | 812 | .vidioc_encoder_cmd = cx18_encoder_cmd, |
813 | vdev->vidioc_encoder_cmd = cx18_encoder_cmd; | 813 | .vidioc_try_encoder_cmd = cx18_try_encoder_cmd, |
814 | vdev->vidioc_try_encoder_cmd = cx18_try_encoder_cmd; | 814 | .vidioc_g_fmt_vid_cap = cx18_g_fmt_vid_cap, |
815 | vdev->vidioc_g_fmt_vid_cap = cx18_g_fmt_vid_cap; | 815 | .vidioc_g_fmt_vbi_cap = cx18_g_fmt_vbi_cap, |
816 | vdev->vidioc_g_fmt_vbi_cap = cx18_g_fmt_vbi_cap; | 816 | .vidioc_g_fmt_sliced_vbi_cap = cx18_g_fmt_sliced_vbi_cap, |
817 | vdev->vidioc_g_fmt_sliced_vbi_cap = cx18_g_fmt_sliced_vbi_cap; | 817 | .vidioc_s_fmt_vid_cap = cx18_s_fmt_vid_cap, |
818 | vdev->vidioc_s_fmt_vid_cap = cx18_s_fmt_vid_cap; | 818 | .vidioc_s_fmt_vbi_cap = cx18_s_fmt_vbi_cap, |
819 | vdev->vidioc_s_fmt_vbi_cap = cx18_s_fmt_vbi_cap; | 819 | .vidioc_s_fmt_sliced_vbi_cap = cx18_s_fmt_sliced_vbi_cap, |
820 | vdev->vidioc_s_fmt_sliced_vbi_cap = cx18_s_fmt_sliced_vbi_cap; | 820 | .vidioc_try_fmt_vid_cap = cx18_try_fmt_vid_cap, |
821 | vdev->vidioc_try_fmt_vid_cap = cx18_try_fmt_vid_cap; | 821 | .vidioc_try_fmt_vbi_cap = cx18_try_fmt_vbi_cap, |
822 | vdev->vidioc_try_fmt_vbi_cap = cx18_try_fmt_vbi_cap; | 822 | .vidioc_try_fmt_sliced_vbi_cap = cx18_try_fmt_sliced_vbi_cap, |
823 | vdev->vidioc_try_fmt_sliced_vbi_cap = cx18_try_fmt_sliced_vbi_cap; | 823 | .vidioc_g_sliced_vbi_cap = cx18_g_sliced_vbi_cap, |
824 | vdev->vidioc_g_sliced_vbi_cap = cx18_g_sliced_vbi_cap; | 824 | .vidioc_g_chip_ident = cx18_g_chip_ident, |
825 | vdev->vidioc_g_chip_ident = cx18_g_chip_ident; | ||
826 | #ifdef CONFIG_VIDEO_ADV_DEBUG | 825 | #ifdef CONFIG_VIDEO_ADV_DEBUG |
827 | vdev->vidioc_g_register = cx18_g_register; | 826 | .vidioc_g_register = cx18_g_register, |
828 | vdev->vidioc_s_register = cx18_s_register; | 827 | .vidioc_s_register = cx18_s_register, |
829 | #endif | 828 | #endif |
830 | vdev->vidioc_default = cx18_default; | 829 | .vidioc_default = cx18_default, |
831 | vdev->vidioc_queryctrl = cx18_queryctrl; | 830 | .vidioc_queryctrl = cx18_queryctrl, |
832 | vdev->vidioc_querymenu = cx18_querymenu; | 831 | .vidioc_querymenu = cx18_querymenu, |
833 | vdev->vidioc_g_ext_ctrls = cx18_g_ext_ctrls; | 832 | .vidioc_g_ext_ctrls = cx18_g_ext_ctrls, |
834 | vdev->vidioc_s_ext_ctrls = cx18_s_ext_ctrls; | 833 | .vidioc_s_ext_ctrls = cx18_s_ext_ctrls, |
835 | vdev->vidioc_try_ext_ctrls = cx18_try_ext_ctrls; | 834 | .vidioc_try_ext_ctrls = cx18_try_ext_ctrls, |
835 | }; | ||
836 | |||
837 | void cx18_set_funcs(struct video_device *vdev) | ||
838 | { | ||
839 | vdev->ioctl_ops = &cx18_ioctl_ops; | ||
836 | } | 840 | } |
diff --git a/drivers/media/video/cx18/cx18-streams.c b/drivers/media/video/cx18/cx18-streams.c index 1728b1d832a9..0da57f583bf7 100644 --- a/drivers/media/video/cx18/cx18-streams.c +++ b/drivers/media/video/cx18/cx18-streams.c | |||
@@ -187,14 +187,11 @@ static int cx18_prep_dev(struct cx18 *cx, int type) | |||
187 | return -ENOMEM; | 187 | return -ENOMEM; |
188 | } | 188 | } |
189 | 189 | ||
190 | s->v4l2dev->type = | ||
191 | VID_TYPE_CAPTURE | VID_TYPE_TUNER | VID_TYPE_TELETEXT | | ||
192 | VID_TYPE_CLIPPING | VID_TYPE_SCALES | VID_TYPE_MPEG_ENCODER; | ||
193 | snprintf(s->v4l2dev->name, sizeof(s->v4l2dev->name), "cx18-%d", | 190 | snprintf(s->v4l2dev->name, sizeof(s->v4l2dev->name), "cx18-%d", |
194 | cx->num); | 191 | cx->num); |
195 | 192 | ||
196 | s->v4l2dev->minor = minor; | 193 | s->v4l2dev->minor = minor; |
197 | s->v4l2dev->dev = &cx->dev->dev; | 194 | s->v4l2dev->parent = &cx->dev->dev; |
198 | s->v4l2dev->fops = cx18_stream_info[type].fops; | 195 | s->v4l2dev->fops = cx18_stream_info[type].fops; |
199 | s->v4l2dev->release = video_device_release; | 196 | s->v4l2dev->release = video_device_release; |
200 | s->v4l2dev->tvnorms = V4L2_STD_ALL; | 197 | s->v4l2dev->tvnorms = V4L2_STD_ALL; |
diff --git a/drivers/media/video/cx23885/Kconfig b/drivers/media/video/cx23885/Kconfig index 5cfb46bbdaa9..e60bd31b51a3 100644 --- a/drivers/media/video/cx23885/Kconfig +++ b/drivers/media/video/cx23885/Kconfig | |||
@@ -1,9 +1,7 @@ | |||
1 | config VIDEO_CX23885 | 1 | config VIDEO_CX23885 |
2 | tristate "Conexant cx23885 (2388x successor) support" | 2 | tristate "Conexant cx23885 (2388x successor) support" |
3 | depends on DVB_CORE && VIDEO_DEV && PCI && I2C && INPUT | 3 | depends on DVB_CORE && VIDEO_DEV && PCI && I2C && INPUT |
4 | depends on HOTPLUG # due to FW_LOADER | ||
5 | select I2C_ALGOBIT | 4 | select I2C_ALGOBIT |
6 | select FW_LOADER | ||
7 | select VIDEO_BTCX | 5 | select VIDEO_BTCX |
8 | select VIDEO_TUNER | 6 | select VIDEO_TUNER |
9 | select VIDEO_TVEEPROM | 7 | select VIDEO_TVEEPROM |
diff --git a/drivers/media/video/cx23885/cx23885-417.c b/drivers/media/video/cx23885/cx23885-417.c index e7ef093265af..8118091568fc 100644 --- a/drivers/media/video/cx23885/cx23885-417.c +++ b/drivers/media/video/cx23885/cx23885-417.c | |||
@@ -32,6 +32,7 @@ | |||
32 | #include <linux/device.h> | 32 | #include <linux/device.h> |
33 | #include <linux/firmware.h> | 33 | #include <linux/firmware.h> |
34 | #include <media/v4l2-common.h> | 34 | #include <media/v4l2-common.h> |
35 | #include <media/v4l2-ioctl.h> | ||
35 | #include <media/cx2341x.h> | 36 | #include <media/cx2341x.h> |
36 | 37 | ||
37 | #include "cx23885.h" | 38 | #include "cx23885.h" |
@@ -1699,14 +1700,7 @@ static struct file_operations mpeg_fops = { | |||
1699 | .llseek = no_llseek, | 1700 | .llseek = no_llseek, |
1700 | }; | 1701 | }; |
1701 | 1702 | ||
1702 | static struct video_device cx23885_mpeg_template = { | 1703 | static const struct v4l2_ioctl_ops mpeg_ioctl_ops = { |
1703 | .name = "cx23885", | ||
1704 | .type = VID_TYPE_CAPTURE | | ||
1705 | VID_TYPE_TUNER | | ||
1706 | VID_TYPE_SCALES | | ||
1707 | VID_TYPE_MPEG_ENCODER, | ||
1708 | .fops = &mpeg_fops, | ||
1709 | .minor = -1, | ||
1710 | .vidioc_s_std = vidioc_s_std, | 1704 | .vidioc_s_std = vidioc_s_std, |
1711 | .vidioc_enum_input = vidioc_enum_input, | 1705 | .vidioc_enum_input = vidioc_enum_input, |
1712 | .vidioc_g_input = vidioc_g_input, | 1706 | .vidioc_g_input = vidioc_g_input, |
@@ -1735,6 +1729,13 @@ static struct video_device cx23885_mpeg_template = { | |||
1735 | .vidioc_queryctrl = vidioc_queryctrl, | 1729 | .vidioc_queryctrl = vidioc_queryctrl, |
1736 | }; | 1730 | }; |
1737 | 1731 | ||
1732 | static struct video_device cx23885_mpeg_template = { | ||
1733 | .name = "cx23885", | ||
1734 | .fops = &mpeg_fops, | ||
1735 | .ioctl_ops = &mpeg_ioctl_ops, | ||
1736 | .minor = -1, | ||
1737 | }; | ||
1738 | |||
1738 | void cx23885_417_unregister(struct cx23885_dev *dev) | 1739 | void cx23885_417_unregister(struct cx23885_dev *dev) |
1739 | { | 1740 | { |
1740 | dprintk(1, "%s()\n", __func__); | 1741 | dprintk(1, "%s()\n", __func__); |
@@ -1766,7 +1767,7 @@ static struct video_device *cx23885_video_dev_alloc( | |||
1766 | vfd->minor = -1; | 1767 | vfd->minor = -1; |
1767 | snprintf(vfd->name, sizeof(vfd->name), "%s %s (%s)", dev->name, | 1768 | snprintf(vfd->name, sizeof(vfd->name), "%s %s (%s)", dev->name, |
1768 | type, cx23885_boards[tsport->dev->board].name); | 1769 | type, cx23885_boards[tsport->dev->board].name); |
1769 | vfd->dev = &pci->dev; | 1770 | vfd->parent = &pci->dev; |
1770 | vfd->release = video_device_release; | 1771 | vfd->release = video_device_release; |
1771 | return vfd; | 1772 | return vfd; |
1772 | } | 1773 | } |
diff --git a/drivers/media/video/cx23885/cx23885-cards.c b/drivers/media/video/cx23885/cx23885-cards.c index fd7112c11d35..a19de850955d 100644 --- a/drivers/media/video/cx23885/cx23885-cards.c +++ b/drivers/media/video/cx23885/cx23885-cards.c | |||
@@ -145,6 +145,7 @@ struct cx23885_board cx23885_boards[] = { | |||
145 | }, | 145 | }, |
146 | [CX23885_BOARD_DVICO_FUSIONHDTV_7_DUAL_EXP] = { | 146 | [CX23885_BOARD_DVICO_FUSIONHDTV_7_DUAL_EXP] = { |
147 | .name = "DViCO FusionHDTV7 Dual Express", | 147 | .name = "DViCO FusionHDTV7 Dual Express", |
148 | .portb = CX23885_MPEG_DVB, | ||
148 | .portc = CX23885_MPEG_DVB, | 149 | .portc = CX23885_MPEG_DVB, |
149 | }, | 150 | }, |
150 | }; | 151 | }; |
@@ -325,25 +326,41 @@ int cx23885_tuner_callback(void *priv, int command, int arg) | |||
325 | { | 326 | { |
326 | struct cx23885_i2c *bus = priv; | 327 | struct cx23885_i2c *bus = priv; |
327 | struct cx23885_dev *dev = bus->dev; | 328 | struct cx23885_dev *dev = bus->dev; |
329 | u32 bitmask = 0; | ||
330 | |||
331 | if (command != 0) { | ||
332 | printk(KERN_ERR "%s(): Unknown command 0x%x.\n", | ||
333 | __func__, command); | ||
334 | return -EINVAL; | ||
335 | } | ||
328 | 336 | ||
329 | switch(dev->board) { | 337 | switch(dev->board) { |
330 | case CX23885_BOARD_HAUPPAUGE_HVR1500Q: | 338 | case CX23885_BOARD_HAUPPAUGE_HVR1500Q: |
331 | if(command == 0) { /* Tuner Reset Command from xc5000 */ | 339 | /* Tuner Reset Command from xc5000 */ |
332 | /* Drive the tuner into reset and out */ | 340 | if (command == 0) |
333 | cx_clear(GP0_IO, 0x00000004); | 341 | bitmask = 0x04; |
334 | mdelay(200); | 342 | break; |
335 | cx_set(GP0_IO, 0x00000004); | 343 | case CX23885_BOARD_DVICO_FUSIONHDTV_7_DUAL_EXP: |
336 | return 0; | 344 | if (command == 0) { |
337 | } | 345 | |
338 | else { | 346 | /* Two identical tuners on two different i2c buses, |
339 | printk(KERN_ERR | 347 | * we need to reset the correct gpio. */ |
340 | "%s(): Unknow command.\n", __func__); | 348 | if (bus->nr == 0) |
341 | return -EINVAL; | 349 | bitmask = 0x01; |
350 | else if (bus->nr == 1) | ||
351 | bitmask = 0x04; | ||
342 | } | 352 | } |
343 | break; | 353 | break; |
344 | } | 354 | } |
345 | 355 | ||
346 | return 0; /* Should never be here */ | 356 | if (bitmask) { |
357 | /* Drive the tuner into reset and back out */ | ||
358 | cx_clear(GP0_IO, bitmask); | ||
359 | mdelay(200); | ||
360 | cx_set(GP0_IO, bitmask); | ||
361 | } | ||
362 | |||
363 | return 0; | ||
347 | } | 364 | } |
348 | 365 | ||
349 | void cx23885_gpio_setup(struct cx23885_dev *dev) | 366 | void cx23885_gpio_setup(struct cx23885_dev *dev) |
@@ -435,6 +452,19 @@ void cx23885_gpio_setup(struct cx23885_dev *dev) | |||
435 | mdelay(20); | 452 | mdelay(20); |
436 | cx_set(GP0_IO, 0x00050005); | 453 | cx_set(GP0_IO, 0x00050005); |
437 | break; | 454 | break; |
455 | case CX23885_BOARD_DVICO_FUSIONHDTV_7_DUAL_EXP: | ||
456 | /* GPIO-0 xc5000 tuner reset i2c bus 0 */ | ||
457 | /* GPIO-1 s5h1409 demod reset i2c bus 0 */ | ||
458 | /* GPIO-2 xc5000 tuner reset i2c bus 1 */ | ||
459 | /* GPIO-3 s5h1409 demod reset i2c bus 0 */ | ||
460 | |||
461 | /* Put the parts into reset and back */ | ||
462 | cx_set(GP0_IO, 0x000f0000); | ||
463 | mdelay(20); | ||
464 | cx_clear(GP0_IO, 0x0000000f); | ||
465 | mdelay(20); | ||
466 | cx_set(GP0_IO, 0x000f000f); | ||
467 | break; | ||
438 | } | 468 | } |
439 | } | 469 | } |
440 | 470 | ||
diff --git a/drivers/media/video/cx23885/cx23885-core.c b/drivers/media/video/cx23885/cx23885-core.c index d17343ea0d33..6286a9cf957e 100644 --- a/drivers/media/video/cx23885/cx23885-core.c +++ b/drivers/media/video/cx23885/cx23885-core.c | |||
@@ -76,6 +76,117 @@ LIST_HEAD(cx23885_devlist); | |||
76 | * 0x00010ea0 0x00010xxx Free | 76 | * 0x00010ea0 0x00010xxx Free |
77 | */ | 77 | */ |
78 | 78 | ||
79 | static struct sram_channel cx23885_sram_channels[] = { | ||
80 | [SRAM_CH01] = { | ||
81 | .name = "VID A", | ||
82 | .cmds_start = 0x10000, | ||
83 | .ctrl_start = 0x10380, | ||
84 | .cdt = 0x104c0, | ||
85 | .fifo_start = 0x40, | ||
86 | .fifo_size = 0x2800, | ||
87 | .ptr1_reg = DMA1_PTR1, | ||
88 | .ptr2_reg = DMA1_PTR2, | ||
89 | .cnt1_reg = DMA1_CNT1, | ||
90 | .cnt2_reg = DMA1_CNT2, | ||
91 | }, | ||
92 | [SRAM_CH02] = { | ||
93 | .name = "ch2", | ||
94 | .cmds_start = 0x0, | ||
95 | .ctrl_start = 0x0, | ||
96 | .cdt = 0x0, | ||
97 | .fifo_start = 0x0, | ||
98 | .fifo_size = 0x0, | ||
99 | .ptr1_reg = DMA2_PTR1, | ||
100 | .ptr2_reg = DMA2_PTR2, | ||
101 | .cnt1_reg = DMA2_CNT1, | ||
102 | .cnt2_reg = DMA2_CNT2, | ||
103 | }, | ||
104 | [SRAM_CH03] = { | ||
105 | .name = "TS1 B", | ||
106 | .cmds_start = 0x100A0, | ||
107 | .ctrl_start = 0x10400, | ||
108 | .cdt = 0x10580, | ||
109 | .fifo_start = 0x5000, | ||
110 | .fifo_size = 0x1000, | ||
111 | .ptr1_reg = DMA3_PTR1, | ||
112 | .ptr2_reg = DMA3_PTR2, | ||
113 | .cnt1_reg = DMA3_CNT1, | ||
114 | .cnt2_reg = DMA3_CNT2, | ||
115 | }, | ||
116 | [SRAM_CH04] = { | ||
117 | .name = "ch4", | ||
118 | .cmds_start = 0x0, | ||
119 | .ctrl_start = 0x0, | ||
120 | .cdt = 0x0, | ||
121 | .fifo_start = 0x0, | ||
122 | .fifo_size = 0x0, | ||
123 | .ptr1_reg = DMA4_PTR1, | ||
124 | .ptr2_reg = DMA4_PTR2, | ||
125 | .cnt1_reg = DMA4_CNT1, | ||
126 | .cnt2_reg = DMA4_CNT2, | ||
127 | }, | ||
128 | [SRAM_CH05] = { | ||
129 | .name = "ch5", | ||
130 | .cmds_start = 0x0, | ||
131 | .ctrl_start = 0x0, | ||
132 | .cdt = 0x0, | ||
133 | .fifo_start = 0x0, | ||
134 | .fifo_size = 0x0, | ||
135 | .ptr1_reg = DMA5_PTR1, | ||
136 | .ptr2_reg = DMA5_PTR2, | ||
137 | .cnt1_reg = DMA5_CNT1, | ||
138 | .cnt2_reg = DMA5_CNT2, | ||
139 | }, | ||
140 | [SRAM_CH06] = { | ||
141 | .name = "TS2 C", | ||
142 | .cmds_start = 0x10140, | ||
143 | .ctrl_start = 0x10440, | ||
144 | .cdt = 0x105e0, | ||
145 | .fifo_start = 0x6000, | ||
146 | .fifo_size = 0x1000, | ||
147 | .ptr1_reg = DMA5_PTR1, | ||
148 | .ptr2_reg = DMA5_PTR2, | ||
149 | .cnt1_reg = DMA5_CNT1, | ||
150 | .cnt2_reg = DMA5_CNT2, | ||
151 | }, | ||
152 | [SRAM_CH07] = { | ||
153 | .name = "ch7", | ||
154 | .cmds_start = 0x0, | ||
155 | .ctrl_start = 0x0, | ||
156 | .cdt = 0x0, | ||
157 | .fifo_start = 0x0, | ||
158 | .fifo_size = 0x0, | ||
159 | .ptr1_reg = DMA6_PTR1, | ||
160 | .ptr2_reg = DMA6_PTR2, | ||
161 | .cnt1_reg = DMA6_CNT1, | ||
162 | .cnt2_reg = DMA6_CNT2, | ||
163 | }, | ||
164 | [SRAM_CH08] = { | ||
165 | .name = "ch8", | ||
166 | .cmds_start = 0x0, | ||
167 | .ctrl_start = 0x0, | ||
168 | .cdt = 0x0, | ||
169 | .fifo_start = 0x0, | ||
170 | .fifo_size = 0x0, | ||
171 | .ptr1_reg = DMA7_PTR1, | ||
172 | .ptr2_reg = DMA7_PTR2, | ||
173 | .cnt1_reg = DMA7_CNT1, | ||
174 | .cnt2_reg = DMA7_CNT2, | ||
175 | }, | ||
176 | [SRAM_CH09] = { | ||
177 | .name = "ch9", | ||
178 | .cmds_start = 0x0, | ||
179 | .ctrl_start = 0x0, | ||
180 | .cdt = 0x0, | ||
181 | .fifo_start = 0x0, | ||
182 | .fifo_size = 0x0, | ||
183 | .ptr1_reg = DMA8_PTR1, | ||
184 | .ptr2_reg = DMA8_PTR2, | ||
185 | .cnt1_reg = DMA8_CNT1, | ||
186 | .cnt2_reg = DMA8_CNT2, | ||
187 | }, | ||
188 | }; | ||
189 | |||
79 | static struct sram_channel cx23887_sram_channels[] = { | 190 | static struct sram_channel cx23887_sram_channels[] = { |
80 | [SRAM_CH01] = { | 191 | [SRAM_CH01] = { |
81 | .name = "VID A", | 192 | .name = "VID A", |
@@ -104,8 +215,8 @@ static struct sram_channel cx23887_sram_channels[] = { | |||
104 | [SRAM_CH03] = { | 215 | [SRAM_CH03] = { |
105 | .name = "TS1 B", | 216 | .name = "TS1 B", |
106 | .cmds_start = 0x100A0, | 217 | .cmds_start = 0x100A0, |
107 | .ctrl_start = 0x10780, | 218 | .ctrl_start = 0x10630, |
108 | .cdt = 0x10400, | 219 | .cdt = 0x10870, |
109 | .fifo_start = 0x5000, | 220 | .fifo_start = 0x5000, |
110 | .fifo_size = 0x1000, | 221 | .fifo_size = 0x1000, |
111 | .ptr1_reg = DMA3_PTR1, | 222 | .ptr1_reg = DMA3_PTR1, |
@@ -140,7 +251,7 @@ static struct sram_channel cx23887_sram_channels[] = { | |||
140 | [SRAM_CH06] = { | 251 | [SRAM_CH06] = { |
141 | .name = "TS2 C", | 252 | .name = "TS2 C", |
142 | .cmds_start = 0x10140, | 253 | .cmds_start = 0x10140, |
143 | .ctrl_start = 0x10680, | 254 | .ctrl_start = 0x10670, |
144 | .cdt = 0x108d0, | 255 | .cdt = 0x108d0, |
145 | .fifo_start = 0x6000, | 256 | .fifo_start = 0x6000, |
146 | .fifo_size = 0x1000, | 257 | .fifo_size = 0x1000, |
@@ -460,6 +571,7 @@ static void cx23885_reset(struct cx23885_dev *dev) | |||
460 | cx_write(AUDIO_INT_INT_STAT, 0xffffffff); | 571 | cx_write(AUDIO_INT_INT_STAT, 0xffffffff); |
461 | cx_write(AUDIO_EXT_INT_STAT, 0xffffffff); | 572 | cx_write(AUDIO_EXT_INT_STAT, 0xffffffff); |
462 | cx_write(CLK_DELAY, cx_read(CLK_DELAY) & 0x80000000); | 573 | cx_write(CLK_DELAY, cx_read(CLK_DELAY) & 0x80000000); |
574 | cx_write(PAD_CTRL, 0x00500300); | ||
463 | 575 | ||
464 | mdelay(100); | 576 | mdelay(100); |
465 | 577 | ||
@@ -625,7 +737,6 @@ static int cx23885_dev_setup(struct cx23885_dev *dev) | |||
625 | atomic_inc(&dev->refcount); | 737 | atomic_inc(&dev->refcount); |
626 | 738 | ||
627 | dev->nr = cx23885_devcount++; | 739 | dev->nr = cx23885_devcount++; |
628 | dev->sram_channels = cx23887_sram_channels; | ||
629 | sprintf(dev->name, "cx23885[%d]", dev->nr); | 740 | sprintf(dev->name, "cx23885[%d]", dev->nr); |
630 | 741 | ||
631 | mutex_lock(&devlist); | 742 | mutex_lock(&devlist); |
@@ -637,11 +748,13 @@ static int cx23885_dev_setup(struct cx23885_dev *dev) | |||
637 | dev->bridge = CX23885_BRIDGE_887; | 748 | dev->bridge = CX23885_BRIDGE_887; |
638 | /* Apply a sensible clock frequency for the PCIe bridge */ | 749 | /* Apply a sensible clock frequency for the PCIe bridge */ |
639 | dev->clk_freq = 25000000; | 750 | dev->clk_freq = 25000000; |
751 | dev->sram_channels = cx23887_sram_channels; | ||
640 | } else | 752 | } else |
641 | if(dev->pci->device == 0x8852) { | 753 | if(dev->pci->device == 0x8852) { |
642 | dev->bridge = CX23885_BRIDGE_885; | 754 | dev->bridge = CX23885_BRIDGE_885; |
643 | /* Apply a sensible clock frequency for the PCIe bridge */ | 755 | /* Apply a sensible clock frequency for the PCIe bridge */ |
644 | dev->clk_freq = 28000000; | 756 | dev->clk_freq = 28000000; |
757 | dev->sram_channels = cx23885_sram_channels; | ||
645 | } else | 758 | } else |
646 | BUG(); | 759 | BUG(); |
647 | 760 | ||
@@ -1010,8 +1123,9 @@ static void cx23885_tsport_reg_dump(struct cx23885_tsport *port) | |||
1010 | port->reg_gpcnt_ctl, cx_read(port->reg_gpcnt_ctl)); | 1123 | port->reg_gpcnt_ctl, cx_read(port->reg_gpcnt_ctl)); |
1011 | dprintk(1, "%s() dma_ctl(0x%08X) 0x%08x\n", __func__, | 1124 | dprintk(1, "%s() dma_ctl(0x%08X) 0x%08x\n", __func__, |
1012 | port->reg_dma_ctl, cx_read(port->reg_dma_ctl)); | 1125 | port->reg_dma_ctl, cx_read(port->reg_dma_ctl)); |
1013 | dprintk(1, "%s() src_sel(0x%08X) 0x%08x\n", __func__, | 1126 | if (port->reg_src_sel) |
1014 | port->reg_src_sel, cx_read(port->reg_src_sel)); | 1127 | dprintk(1, "%s() src_sel(0x%08X) 0x%08x\n", __func__, |
1128 | port->reg_src_sel, cx_read(port->reg_src_sel)); | ||
1015 | dprintk(1, "%s() lngth(0x%08X) 0x%08x\n", __func__, | 1129 | dprintk(1, "%s() lngth(0x%08X) 0x%08x\n", __func__, |
1016 | port->reg_lngth, cx_read(port->reg_lngth)); | 1130 | port->reg_lngth, cx_read(port->reg_lngth)); |
1017 | dprintk(1, "%s() hw_sop_ctrl(0x%08X) 0x%08x\n", __func__, | 1131 | dprintk(1, "%s() hw_sop_ctrl(0x%08X) 0x%08x\n", __func__, |
@@ -1042,6 +1156,9 @@ static int cx23885_start_dma(struct cx23885_tsport *port, | |||
1042 | dprintk(1, "%s() w: %d, h: %d, f: %d\n", __func__, | 1156 | dprintk(1, "%s() w: %d, h: %d, f: %d\n", __func__, |
1043 | buf->vb.width, buf->vb.height, buf->vb.field); | 1157 | buf->vb.width, buf->vb.height, buf->vb.field); |
1044 | 1158 | ||
1159 | /* Stop the fifo and risc engine for this port */ | ||
1160 | cx_clear(port->reg_dma_ctl, port->dma_ctl_val); | ||
1161 | |||
1045 | /* setup fifo + format */ | 1162 | /* setup fifo + format */ |
1046 | cx23885_sram_channel_setup(dev, | 1163 | cx23885_sram_channel_setup(dev, |
1047 | &dev->sram_channels[ port->sram_chno ], | 1164 | &dev->sram_channels[ port->sram_chno ], |
@@ -1083,7 +1200,21 @@ static int cx23885_start_dma(struct cx23885_tsport *port, | |||
1083 | cx_write(port->reg_gpcnt_ctl, 3); | 1200 | cx_write(port->reg_gpcnt_ctl, 3); |
1084 | q->count = 1; | 1201 | q->count = 1; |
1085 | 1202 | ||
1086 | if (cx23885_boards[dev->board].portb & CX23885_MPEG_ENCODER) { | 1203 | /* Set VIDB pins to input */ |
1204 | if (cx23885_boards[dev->board].portb == CX23885_MPEG_DVB) { | ||
1205 | reg = cx_read(PAD_CTRL); | ||
1206 | reg &= ~0x3; /* Clear TS1_OE & TS1_SOP_OE */ | ||
1207 | cx_write(PAD_CTRL, reg); | ||
1208 | } | ||
1209 | |||
1210 | /* Set VIDC pins to input */ | ||
1211 | if (cx23885_boards[dev->board].portc == CX23885_MPEG_DVB) { | ||
1212 | reg = cx_read(PAD_CTRL); | ||
1213 | reg &= ~0x4; /* Clear TS2_SOP_OE */ | ||
1214 | cx_write(PAD_CTRL, reg); | ||
1215 | } | ||
1216 | |||
1217 | if (cx23885_boards[dev->board].portb == CX23885_MPEG_ENCODER) { | ||
1087 | 1218 | ||
1088 | reg = cx_read(PAD_CTRL); | 1219 | reg = cx_read(PAD_CTRL); |
1089 | reg = reg & ~0x1; /* Clear TS1_OE */ | 1220 | reg = reg & ~0x1; /* Clear TS1_OE */ |
@@ -1133,7 +1264,7 @@ static int cx23885_stop_dma(struct cx23885_tsport *port) | |||
1133 | cx_clear(port->reg_ts_int_msk, port->ts_int_msk_val); | 1264 | cx_clear(port->reg_ts_int_msk, port->ts_int_msk_val); |
1134 | cx_clear(port->reg_dma_ctl, port->dma_ctl_val); | 1265 | cx_clear(port->reg_dma_ctl, port->dma_ctl_val); |
1135 | 1266 | ||
1136 | if (cx23885_boards[dev->board].portb & CX23885_MPEG_ENCODER) { | 1267 | if (cx23885_boards[dev->board].portb == CX23885_MPEG_ENCODER) { |
1137 | 1268 | ||
1138 | reg = cx_read(PAD_CTRL); | 1269 | reg = cx_read(PAD_CTRL); |
1139 | 1270 | ||
diff --git a/drivers/media/video/cx23885/cx23885-video.c b/drivers/media/video/cx23885/cx23885-video.c index 043fc4e5c586..ad2235dab5b1 100644 --- a/drivers/media/video/cx23885/cx23885-video.c +++ b/drivers/media/video/cx23885/cx23885-video.c | |||
@@ -33,6 +33,7 @@ | |||
33 | 33 | ||
34 | #include "cx23885.h" | 34 | #include "cx23885.h" |
35 | #include <media/v4l2-common.h> | 35 | #include <media/v4l2-common.h> |
36 | #include <media/v4l2-ioctl.h> | ||
36 | 37 | ||
37 | #ifdef CONFIG_VIDEO_V4L1_COMPAT | 38 | #ifdef CONFIG_VIDEO_V4L1_COMPAT |
38 | /* Include V4L1 specific functions. Should be removed soon */ | 39 | /* Include V4L1 specific functions. Should be removed soon */ |
@@ -326,7 +327,7 @@ struct video_device *cx23885_vdev_init(struct cx23885_dev *dev, | |||
326 | return NULL; | 327 | return NULL; |
327 | *vfd = *template; | 328 | *vfd = *template; |
328 | vfd->minor = -1; | 329 | vfd->minor = -1; |
329 | vfd->dev = &pci->dev; | 330 | vfd->parent = &pci->dev; |
330 | vfd->release = video_device_release; | 331 | vfd->release = video_device_release; |
331 | snprintf(vfd->name, sizeof(vfd->name), "%s %s (%s)", | 332 | snprintf(vfd->name, sizeof(vfd->name), "%s %s (%s)", |
332 | dev->name, type, cx23885_boards[dev->board].name); | 333 | dev->name, type, cx23885_boards[dev->board].name); |
@@ -1433,12 +1434,7 @@ static const struct file_operations video_fops = { | |||
1433 | .llseek = no_llseek, | 1434 | .llseek = no_llseek, |
1434 | }; | 1435 | }; |
1435 | 1436 | ||
1436 | static struct video_device cx23885_vbi_template; | 1437 | static const struct v4l2_ioctl_ops video_ioctl_ops = { |
1437 | static struct video_device cx23885_video_template = { | ||
1438 | .name = "cx23885-video", | ||
1439 | .type = VID_TYPE_CAPTURE|VID_TYPE_TUNER|VID_TYPE_SCALES, | ||
1440 | .fops = &video_fops, | ||
1441 | .minor = -1, | ||
1442 | .vidioc_querycap = vidioc_querycap, | 1438 | .vidioc_querycap = vidioc_querycap, |
1443 | .vidioc_enum_fmt_vid_cap = vidioc_enum_fmt_vid_cap, | 1439 | .vidioc_enum_fmt_vid_cap = vidioc_enum_fmt_vid_cap, |
1444 | .vidioc_g_fmt_vid_cap = vidioc_g_fmt_vid_cap, | 1440 | .vidioc_g_fmt_vid_cap = vidioc_g_fmt_vid_cap, |
@@ -1471,6 +1467,14 @@ static struct video_device cx23885_video_template = { | |||
1471 | .vidioc_g_register = vidioc_g_register, | 1467 | .vidioc_g_register = vidioc_g_register, |
1472 | .vidioc_s_register = vidioc_s_register, | 1468 | .vidioc_s_register = vidioc_s_register, |
1473 | #endif | 1469 | #endif |
1470 | }; | ||
1471 | |||
1472 | static struct video_device cx23885_vbi_template; | ||
1473 | static struct video_device cx23885_video_template = { | ||
1474 | .name = "cx23885-video", | ||
1475 | .fops = &video_fops, | ||
1476 | .minor = -1, | ||
1477 | .ioctl_ops = &video_ioctl_ops, | ||
1474 | .tvnorms = CX23885_NORMS, | 1478 | .tvnorms = CX23885_NORMS, |
1475 | .current_norm = V4L2_STD_NTSC_M, | 1479 | .current_norm = V4L2_STD_NTSC_M, |
1476 | }; | 1480 | }; |
@@ -1512,7 +1516,6 @@ int cx23885_video_register(struct cx23885_dev *dev) | |||
1512 | memcpy(&cx23885_vbi_template, &cx23885_video_template, | 1516 | memcpy(&cx23885_vbi_template, &cx23885_video_template, |
1513 | sizeof(cx23885_vbi_template)); | 1517 | sizeof(cx23885_vbi_template)); |
1514 | strcpy(cx23885_vbi_template.name, "cx23885-vbi"); | 1518 | strcpy(cx23885_vbi_template.name, "cx23885-vbi"); |
1515 | cx23885_vbi_template.type = VID_TYPE_TELETEXT|VID_TYPE_TUNER; | ||
1516 | 1519 | ||
1517 | dev->tvnorm = cx23885_video_template.current_norm; | 1520 | dev->tvnorm = cx23885_video_template.current_norm; |
1518 | 1521 | ||
diff --git a/drivers/media/video/cx25840/Kconfig b/drivers/media/video/cx25840/Kconfig index 448f4cd0ce34..de515dadadc2 100644 --- a/drivers/media/video/cx25840/Kconfig +++ b/drivers/media/video/cx25840/Kconfig | |||
@@ -1,8 +1,6 @@ | |||
1 | config VIDEO_CX25840 | 1 | config VIDEO_CX25840 |
2 | tristate "Conexant CX2584x audio/video decoders" | 2 | tristate "Conexant CX2584x audio/video decoders" |
3 | depends on VIDEO_V4L2 && I2C && EXPERIMENTAL | 3 | depends on VIDEO_V4L2 && I2C && EXPERIMENTAL |
4 | depends on HOTPLUG # due to FW_LOADER | ||
5 | select FW_LOADER | ||
6 | ---help--- | 4 | ---help--- |
7 | Support for the Conexant CX2584x audio/video decoders. | 5 | Support for the Conexant CX2584x audio/video decoders. |
8 | 6 | ||
diff --git a/drivers/media/video/cx25840/cx25840-core.c b/drivers/media/video/cx25840/cx25840-core.c index e7bf4f4c1319..209d3bcb5dbb 100644 --- a/drivers/media/video/cx25840/cx25840-core.c +++ b/drivers/media/video/cx25840/cx25840-core.c | |||
@@ -50,7 +50,7 @@ MODULE_LICENSE("GPL"); | |||
50 | 50 | ||
51 | static unsigned short normal_i2c[] = { 0x88 >> 1, I2C_CLIENT_END }; | 51 | static unsigned short normal_i2c[] = { 0x88 >> 1, I2C_CLIENT_END }; |
52 | 52 | ||
53 | int cx25840_debug; | 53 | static int cx25840_debug; |
54 | 54 | ||
55 | module_param_named(debug,cx25840_debug, int, 0644); | 55 | module_param_named(debug,cx25840_debug, int, 0644); |
56 | 56 | ||
diff --git a/drivers/media/video/cx25840/cx25840-core.h b/drivers/media/video/cx25840/cx25840-core.h index 72916ba975a8..b87337e590b4 100644 --- a/drivers/media/video/cx25840/cx25840-core.h +++ b/drivers/media/video/cx25840/cx25840-core.h | |||
@@ -24,8 +24,6 @@ | |||
24 | #include <linux/videodev2.h> | 24 | #include <linux/videodev2.h> |
25 | #include <linux/i2c.h> | 25 | #include <linux/i2c.h> |
26 | 26 | ||
27 | extern int cx25840_debug; | ||
28 | |||
29 | /* ENABLE_PVR150_WORKAROUND activates a workaround for a hardware bug that is | 27 | /* ENABLE_PVR150_WORKAROUND activates a workaround for a hardware bug that is |
30 | present in Hauppauge PVR-150 (and possibly PVR-500) cards that have | 28 | present in Hauppauge PVR-150 (and possibly PVR-500) cards that have |
31 | certain NTSC tuners (tveeprom tuner model numbers 85, 99 and 112). The | 29 | certain NTSC tuners (tveeprom tuner model numbers 85, 99 and 112). The |
diff --git a/drivers/media/video/cx88/Kconfig b/drivers/media/video/cx88/Kconfig index 10e20d8196dc..9dd7bdf659b9 100644 --- a/drivers/media/video/cx88/Kconfig +++ b/drivers/media/video/cx88/Kconfig | |||
@@ -33,9 +33,8 @@ config VIDEO_CX88_ALSA | |||
33 | 33 | ||
34 | config VIDEO_CX88_BLACKBIRD | 34 | config VIDEO_CX88_BLACKBIRD |
35 | tristate "Blackbird MPEG encoder support (cx2388x + cx23416)" | 35 | tristate "Blackbird MPEG encoder support (cx2388x + cx23416)" |
36 | depends on VIDEO_CX88 && HOTPLUG | 36 | depends on VIDEO_CX88 |
37 | select VIDEO_CX2341X | 37 | select VIDEO_CX2341X |
38 | select FW_LOADER | ||
39 | ---help--- | 38 | ---help--- |
40 | This adds support for MPEG encoder cards based on the | 39 | This adds support for MPEG encoder cards based on the |
41 | Blackbird reference design, using the Conexant 2388x | 40 | Blackbird reference design, using the Conexant 2388x |
diff --git a/drivers/media/video/cx88/cx88-blackbird.c b/drivers/media/video/cx88/cx88-blackbird.c index bfdca5847764..9a1374a38ec7 100644 --- a/drivers/media/video/cx88/cx88-blackbird.c +++ b/drivers/media/video/cx88/cx88-blackbird.c | |||
@@ -33,6 +33,7 @@ | |||
33 | #include <linux/device.h> | 33 | #include <linux/device.h> |
34 | #include <linux/firmware.h> | 34 | #include <linux/firmware.h> |
35 | #include <media/v4l2-common.h> | 35 | #include <media/v4l2-common.h> |
36 | #include <media/v4l2-ioctl.h> | ||
36 | #include <media/cx2341x.h> | 37 | #include <media/cx2341x.h> |
37 | 38 | ||
38 | #include "cx88.h" | 39 | #include "cx88.h" |
@@ -1174,12 +1175,7 @@ static const struct file_operations mpeg_fops = | |||
1174 | .llseek = no_llseek, | 1175 | .llseek = no_llseek, |
1175 | }; | 1176 | }; |
1176 | 1177 | ||
1177 | static struct video_device cx8802_mpeg_template = | 1178 | static const struct v4l2_ioctl_ops mpeg_ioctl_ops = { |
1178 | { | ||
1179 | .name = "cx8802", | ||
1180 | .type = VID_TYPE_CAPTURE|VID_TYPE_TUNER|VID_TYPE_SCALES|VID_TYPE_MPEG_ENCODER, | ||
1181 | .fops = &mpeg_fops, | ||
1182 | .minor = -1, | ||
1183 | .vidioc_querymenu = vidioc_querymenu, | 1179 | .vidioc_querymenu = vidioc_querymenu, |
1184 | .vidioc_querycap = vidioc_querycap, | 1180 | .vidioc_querycap = vidioc_querycap, |
1185 | .vidioc_enum_fmt_vid_cap = vidioc_enum_fmt_vid_cap, | 1181 | .vidioc_enum_fmt_vid_cap = vidioc_enum_fmt_vid_cap, |
@@ -1207,6 +1203,13 @@ static struct video_device cx8802_mpeg_template = | |||
1207 | .vidioc_g_tuner = vidioc_g_tuner, | 1203 | .vidioc_g_tuner = vidioc_g_tuner, |
1208 | .vidioc_s_tuner = vidioc_s_tuner, | 1204 | .vidioc_s_tuner = vidioc_s_tuner, |
1209 | .vidioc_s_std = vidioc_s_std, | 1205 | .vidioc_s_std = vidioc_s_std, |
1206 | }; | ||
1207 | |||
1208 | static struct video_device cx8802_mpeg_template = { | ||
1209 | .name = "cx8802", | ||
1210 | .fops = &mpeg_fops, | ||
1211 | .ioctl_ops = &mpeg_ioctl_ops, | ||
1212 | .minor = -1, | ||
1210 | .tvnorms = CX88_NORMS, | 1213 | .tvnorms = CX88_NORMS, |
1211 | .current_norm = V4L2_STD_NTSC_M, | 1214 | .current_norm = V4L2_STD_NTSC_M, |
1212 | }; | 1215 | }; |
diff --git a/drivers/media/video/cx88/cx88-cards.c b/drivers/media/video/cx88/cx88-cards.c index fa6d398e97b9..de199a206a15 100644 --- a/drivers/media/video/cx88/cx88-cards.c +++ b/drivers/media/video/cx88/cx88-cards.c | |||
@@ -1348,7 +1348,7 @@ static const struct cx88_board cx88_boards[] = { | |||
1348 | .tuner_addr = ADDR_UNSET, | 1348 | .tuner_addr = ADDR_UNSET, |
1349 | .radio_addr = ADDR_UNSET, | 1349 | .radio_addr = ADDR_UNSET, |
1350 | .tda9887_conf = TDA9887_PRESENT, | 1350 | .tda9887_conf = TDA9887_PRESENT, |
1351 | .audio_chip = AUDIO_CHIP_WM8775, | 1351 | .audio_chip = V4L2_IDENT_WM8775, |
1352 | .input = {{ | 1352 | .input = {{ |
1353 | .type = CX88_VMUX_TELEVISION, | 1353 | .type = CX88_VMUX_TELEVISION, |
1354 | .vmux = 0, | 1354 | .vmux = 0, |
diff --git a/drivers/media/video/cx88/cx88-core.c b/drivers/media/video/cx88/cx88-core.c index 60eeda3057e9..d656fec59010 100644 --- a/drivers/media/video/cx88/cx88-core.c +++ b/drivers/media/video/cx88/cx88-core.c | |||
@@ -40,6 +40,7 @@ | |||
40 | 40 | ||
41 | #include "cx88.h" | 41 | #include "cx88.h" |
42 | #include <media/v4l2-common.h> | 42 | #include <media/v4l2-common.h> |
43 | #include <media/v4l2-ioctl.h> | ||
43 | 44 | ||
44 | MODULE_DESCRIPTION("v4l2 driver module for cx2388x based TV cards"); | 45 | MODULE_DESCRIPTION("v4l2 driver module for cx2388x based TV cards"); |
45 | MODULE_AUTHOR("Gerd Knorr <kraxel@bytesex.org> [SuSE Labs]"); | 46 | MODULE_AUTHOR("Gerd Knorr <kraxel@bytesex.org> [SuSE Labs]"); |
@@ -1006,7 +1007,7 @@ struct video_device *cx88_vdev_init(struct cx88_core *core, | |||
1006 | return NULL; | 1007 | return NULL; |
1007 | *vfd = *template; | 1008 | *vfd = *template; |
1008 | vfd->minor = -1; | 1009 | vfd->minor = -1; |
1009 | vfd->dev = &pci->dev; | 1010 | vfd->parent = &pci->dev; |
1010 | vfd->release = video_device_release; | 1011 | vfd->release = video_device_release; |
1011 | snprintf(vfd->name, sizeof(vfd->name), "%s %s (%s)", | 1012 | snprintf(vfd->name, sizeof(vfd->name), "%s %s (%s)", |
1012 | core->name, type, core->board.name); | 1013 | core->name, type, core->board.name); |
diff --git a/drivers/media/video/cx88/cx88-video.c b/drivers/media/video/cx88/cx88-video.c index 0fed5cd2ccea..ef4d56ea0027 100644 --- a/drivers/media/video/cx88/cx88-video.c +++ b/drivers/media/video/cx88/cx88-video.c | |||
@@ -39,6 +39,7 @@ | |||
39 | 39 | ||
40 | #include "cx88.h" | 40 | #include "cx88.h" |
41 | #include <media/v4l2-common.h> | 41 | #include <media/v4l2-common.h> |
42 | #include <media/v4l2-ioctl.h> | ||
42 | 43 | ||
43 | #ifdef CONFIG_VIDEO_V4L1_COMPAT | 44 | #ifdef CONFIG_VIDEO_V4L1_COMPAT |
44 | /* Include V4L1 specific functions. Should be removed soon */ | 45 | /* Include V4L1 specific functions. Should be removed soon */ |
@@ -447,7 +448,7 @@ int cx88_video_mux(struct cx88_core *core, unsigned int input) | |||
447 | the initialization. Some boards may use different | 448 | the initialization. Some boards may use different |
448 | routes for different inputs. HVR-1300 surely does */ | 449 | routes for different inputs. HVR-1300 surely does */ |
449 | if (core->board.audio_chip && | 450 | if (core->board.audio_chip && |
450 | core->board.audio_chip == AUDIO_CHIP_WM8775) { | 451 | core->board.audio_chip == V4L2_IDENT_WM8775) { |
451 | struct v4l2_routing route; | 452 | struct v4l2_routing route; |
452 | 453 | ||
453 | route.input = INPUT(input).audioroute; | 454 | route.input = INPUT(input).audioroute; |
@@ -1682,13 +1683,7 @@ static const struct file_operations video_fops = | |||
1682 | .llseek = no_llseek, | 1683 | .llseek = no_llseek, |
1683 | }; | 1684 | }; |
1684 | 1685 | ||
1685 | static struct video_device cx8800_vbi_template; | 1686 | static const struct v4l2_ioctl_ops video_ioctl_ops = { |
1686 | static struct video_device cx8800_video_template = | ||
1687 | { | ||
1688 | .name = "cx8800-video", | ||
1689 | .type = VID_TYPE_CAPTURE|VID_TYPE_TUNER|VID_TYPE_SCALES, | ||
1690 | .fops = &video_fops, | ||
1691 | .minor = -1, | ||
1692 | .vidioc_querycap = vidioc_querycap, | 1687 | .vidioc_querycap = vidioc_querycap, |
1693 | .vidioc_enum_fmt_vid_cap = vidioc_enum_fmt_vid_cap, | 1688 | .vidioc_enum_fmt_vid_cap = vidioc_enum_fmt_vid_cap, |
1694 | .vidioc_g_fmt_vid_cap = vidioc_g_fmt_vid_cap, | 1689 | .vidioc_g_fmt_vid_cap = vidioc_g_fmt_vid_cap, |
@@ -1721,6 +1716,15 @@ static struct video_device cx8800_video_template = | |||
1721 | .vidioc_g_register = vidioc_g_register, | 1716 | .vidioc_g_register = vidioc_g_register, |
1722 | .vidioc_s_register = vidioc_s_register, | 1717 | .vidioc_s_register = vidioc_s_register, |
1723 | #endif | 1718 | #endif |
1719 | }; | ||
1720 | |||
1721 | static struct video_device cx8800_vbi_template; | ||
1722 | |||
1723 | static struct video_device cx8800_video_template = { | ||
1724 | .name = "cx8800-video", | ||
1725 | .fops = &video_fops, | ||
1726 | .minor = -1, | ||
1727 | .ioctl_ops = &video_ioctl_ops, | ||
1724 | .tvnorms = CX88_NORMS, | 1728 | .tvnorms = CX88_NORMS, |
1725 | .current_norm = V4L2_STD_NTSC_M, | 1729 | .current_norm = V4L2_STD_NTSC_M, |
1726 | }; | 1730 | }; |
@@ -1735,12 +1739,7 @@ static const struct file_operations radio_fops = | |||
1735 | .llseek = no_llseek, | 1739 | .llseek = no_llseek, |
1736 | }; | 1740 | }; |
1737 | 1741 | ||
1738 | static struct video_device cx8800_radio_template = | 1742 | static const struct v4l2_ioctl_ops radio_ioctl_ops = { |
1739 | { | ||
1740 | .name = "cx8800-radio", | ||
1741 | .type = VID_TYPE_TUNER, | ||
1742 | .fops = &radio_fops, | ||
1743 | .minor = -1, | ||
1744 | .vidioc_querycap = radio_querycap, | 1743 | .vidioc_querycap = radio_querycap, |
1745 | .vidioc_g_tuner = radio_g_tuner, | 1744 | .vidioc_g_tuner = radio_g_tuner, |
1746 | .vidioc_enum_input = radio_enum_input, | 1745 | .vidioc_enum_input = radio_enum_input, |
@@ -1759,6 +1758,13 @@ static struct video_device cx8800_radio_template = | |||
1759 | #endif | 1758 | #endif |
1760 | }; | 1759 | }; |
1761 | 1760 | ||
1761 | static struct video_device cx8800_radio_template = { | ||
1762 | .name = "cx8800-radio", | ||
1763 | .fops = &radio_fops, | ||
1764 | .minor = -1, | ||
1765 | .ioctl_ops = &radio_ioctl_ops, | ||
1766 | }; | ||
1767 | |||
1762 | /* ----------------------------------------------------------- */ | 1768 | /* ----------------------------------------------------------- */ |
1763 | 1769 | ||
1764 | static void cx8800_unregister_video(struct cx8800_dev *dev) | 1770 | static void cx8800_unregister_video(struct cx8800_dev *dev) |
@@ -1830,7 +1836,6 @@ static int __devinit cx8800_initdev(struct pci_dev *pci_dev, | |||
1830 | memcpy( &cx8800_vbi_template, &cx8800_video_template, | 1836 | memcpy( &cx8800_vbi_template, &cx8800_video_template, |
1831 | sizeof(cx8800_vbi_template) ); | 1837 | sizeof(cx8800_vbi_template) ); |
1832 | strcpy(cx8800_vbi_template.name,"cx8800-vbi"); | 1838 | strcpy(cx8800_vbi_template.name,"cx8800-vbi"); |
1833 | cx8800_vbi_template.type = VID_TYPE_TELETEXT|VID_TYPE_TUNER; | ||
1834 | 1839 | ||
1835 | /* initialize driver struct */ | 1840 | /* initialize driver struct */ |
1836 | spin_lock_init(&dev->slock); | 1841 | spin_lock_init(&dev->slock); |
@@ -1866,7 +1871,7 @@ static int __devinit cx8800_initdev(struct pci_dev *pci_dev, | |||
1866 | 1871 | ||
1867 | /* load and configure helper modules */ | 1872 | /* load and configure helper modules */ |
1868 | 1873 | ||
1869 | if (core->board.audio_chip == AUDIO_CHIP_WM8775) | 1874 | if (core->board.audio_chip == V4L2_IDENT_WM8775) |
1870 | request_module("wm8775"); | 1875 | request_module("wm8775"); |
1871 | 1876 | ||
1872 | switch (core->boardnr) { | 1877 | switch (core->boardnr) { |
diff --git a/drivers/media/video/cx88/cx88.h b/drivers/media/video/cx88/cx88.h index 14ac173f4071..54fe65094711 100644 --- a/drivers/media/video/cx88/cx88.h +++ b/drivers/media/video/cx88/cx88.h | |||
@@ -29,8 +29,8 @@ | |||
29 | #include <media/tuner.h> | 29 | #include <media/tuner.h> |
30 | #include <media/tveeprom.h> | 30 | #include <media/tveeprom.h> |
31 | #include <media/videobuf-dma-sg.h> | 31 | #include <media/videobuf-dma-sg.h> |
32 | #include <media/v4l2-chip-ident.h> | ||
32 | #include <media/cx2341x.h> | 33 | #include <media/cx2341x.h> |
33 | #include <media/audiochip.h> | ||
34 | #if defined(CONFIG_VIDEO_CX88_DVB) || defined(CONFIG_VIDEO_CX88_DVB_MODULE) | 34 | #if defined(CONFIG_VIDEO_CX88_DVB) || defined(CONFIG_VIDEO_CX88_DVB_MODULE) |
35 | #include <media/videobuf-dvb.h> | 35 | #include <media/videobuf-dvb.h> |
36 | #endif | 36 | #endif |
@@ -252,7 +252,7 @@ struct cx88_board { | |||
252 | struct cx88_input input[MAX_CX88_INPUT]; | 252 | struct cx88_input input[MAX_CX88_INPUT]; |
253 | struct cx88_input radio; | 253 | struct cx88_input radio; |
254 | enum cx88_board_type mpeg; | 254 | enum cx88_board_type mpeg; |
255 | enum audiochip audio_chip; | 255 | unsigned int audio_chip; |
256 | }; | 256 | }; |
257 | 257 | ||
258 | struct cx88_subid { | 258 | struct cx88_subid { |
diff --git a/drivers/media/video/em28xx/em28xx-cards.c b/drivers/media/video/em28xx/em28xx-cards.c index 05f0d5a15058..476ae44a62d2 100644 --- a/drivers/media/video/em28xx/em28xx-cards.c +++ b/drivers/media/video/em28xx/em28xx-cards.c | |||
@@ -32,8 +32,8 @@ | |||
32 | #include <media/saa7115.h> | 32 | #include <media/saa7115.h> |
33 | #include <media/tvp5150.h> | 33 | #include <media/tvp5150.h> |
34 | #include <media/tveeprom.h> | 34 | #include <media/tveeprom.h> |
35 | #include <media/audiochip.h> | ||
36 | #include <media/v4l2-common.h> | 35 | #include <media/v4l2-common.h> |
36 | #include <media/v4l2-chip-ident.h> | ||
37 | 37 | ||
38 | #include "em28xx.h" | 38 | #include "em28xx.h" |
39 | 39 | ||
@@ -52,6 +52,15 @@ struct em28xx_hash_table { | |||
52 | }; | 52 | }; |
53 | 53 | ||
54 | struct em28xx_board em28xx_boards[] = { | 54 | struct em28xx_board em28xx_boards[] = { |
55 | [EM2750_BOARD_UNKNOWN] = { | ||
56 | .name = "Unknown EM2750/EM2751 webcam grabber", | ||
57 | .vchannels = 1, | ||
58 | .input = { { | ||
59 | .type = EM28XX_VMUX_COMPOSITE1, | ||
60 | .vmux = 0, | ||
61 | .amux = 0, | ||
62 | } }, | ||
63 | }, | ||
55 | [EM2800_BOARD_UNKNOWN] = { | 64 | [EM2800_BOARD_UNKNOWN] = { |
56 | .name = "Unknown EM2800 video grabber", | 65 | .name = "Unknown EM2800 video grabber", |
57 | .is_em2800 = 1, | 66 | .is_em2800 = 1, |
@@ -73,6 +82,39 @@ struct em28xx_board em28xx_boards[] = { | |||
73 | .is_em2800 = 0, | 82 | .is_em2800 = 0, |
74 | .tuner_type = TUNER_ABSENT, | 83 | .tuner_type = TUNER_ABSENT, |
75 | }, | 84 | }, |
85 | [EM2750_BOARD_DLCW_130] = { | ||
86 | /* Beijing Huaqi Information Digital Technology Co., Ltd */ | ||
87 | .name = "Huaqi DLCW-130", | ||
88 | .valid = EM28XX_BOARD_NOT_VALIDATED, | ||
89 | .vchannels = 1, | ||
90 | .input = { { | ||
91 | .type = EM28XX_VMUX_COMPOSITE1, | ||
92 | .vmux = 0, | ||
93 | .amux = 0, | ||
94 | } }, | ||
95 | }, | ||
96 | [EM2800_BOARD_KWORLD_USB2800] = { | ||
97 | .name = "Kworld USB2800", | ||
98 | .valid = EM28XX_BOARD_NOT_VALIDATED, | ||
99 | .is_em2800 = 1, | ||
100 | .vchannels = 3, | ||
101 | .tuner_type = TUNER_PHILIPS_FCV1236D, | ||
102 | .tda9887_conf = TDA9887_PRESENT, | ||
103 | .decoder = EM28XX_SAA7113, | ||
104 | .input = { { | ||
105 | .type = EM28XX_VMUX_TELEVISION, | ||
106 | .vmux = SAA7115_COMPOSITE2, | ||
107 | .amux = 0, | ||
108 | }, { | ||
109 | .type = EM28XX_VMUX_COMPOSITE1, | ||
110 | .vmux = SAA7115_COMPOSITE0, | ||
111 | .amux = 1, | ||
112 | }, { | ||
113 | .type = EM28XX_VMUX_SVIDEO, | ||
114 | .vmux = SAA7115_SVIDEO3, | ||
115 | .amux = 1, | ||
116 | } }, | ||
117 | }, | ||
76 | [EM2820_BOARD_KWORLD_PVRTV2800RF] = { | 118 | [EM2820_BOARD_KWORLD_PVRTV2800RF] = { |
77 | .name = "Kworld PVR TV 2800 RF", | 119 | .name = "Kworld PVR TV 2800 RF", |
78 | .is_em2800 = 0, | 120 | .is_em2800 = 0, |
@@ -151,6 +193,376 @@ struct em28xx_board em28xx_boards[] = { | |||
151 | MSP_DSP_IN_SCART, MSP_DSP_IN_SCART), | 193 | MSP_DSP_IN_SCART, MSP_DSP_IN_SCART), |
152 | } }, | 194 | } }, |
153 | }, | 195 | }, |
196 | [EM2820_BOARD_DLINK_USB_TV] = { | ||
197 | .name = "D-Link DUB-T210 TV Tuner", | ||
198 | .valid = EM28XX_BOARD_NOT_VALIDATED, | ||
199 | .vchannels = 3, | ||
200 | .is_em2800 = 0, | ||
201 | .tuner_type = TUNER_LG_PAL_NEW_TAPC, | ||
202 | .tda9887_conf = TDA9887_PRESENT, | ||
203 | .decoder = EM28XX_SAA7113, | ||
204 | .input = { { | ||
205 | .type = EM28XX_VMUX_TELEVISION, | ||
206 | .vmux = SAA7115_COMPOSITE2, | ||
207 | .amux = 1, | ||
208 | }, { | ||
209 | .type = EM28XX_VMUX_COMPOSITE1, | ||
210 | .vmux = SAA7115_COMPOSITE0, | ||
211 | .amux = 1, | ||
212 | }, { | ||
213 | .type = EM28XX_VMUX_SVIDEO, | ||
214 | .vmux = SAA7115_SVIDEO3, | ||
215 | .amux = 1, | ||
216 | } }, | ||
217 | }, | ||
218 | [EM2820_BOARD_HERCULES_SMART_TV_USB2] = { | ||
219 | .name = "Hercules Smart TV USB 2.0", | ||
220 | .valid = EM28XX_BOARD_NOT_VALIDATED, | ||
221 | .vchannels = 3, | ||
222 | .tuner_type = TUNER_LG_PAL_NEW_TAPC, | ||
223 | .tda9887_conf = TDA9887_PRESENT, | ||
224 | .decoder = EM28XX_SAA7113, | ||
225 | .input = { { | ||
226 | .type = EM28XX_VMUX_TELEVISION, | ||
227 | .vmux = SAA7115_COMPOSITE2, | ||
228 | .amux = 1, | ||
229 | }, { | ||
230 | .type = EM28XX_VMUX_COMPOSITE1, | ||
231 | .vmux = SAA7115_COMPOSITE0, | ||
232 | .amux = 1, | ||
233 | }, { | ||
234 | .type = EM28XX_VMUX_SVIDEO, | ||
235 | .vmux = SAA7115_SVIDEO3, | ||
236 | .amux = 1, | ||
237 | } }, | ||
238 | }, | ||
239 | [EM2820_BOARD_PINNACLE_USB_2_FM1216ME] = { | ||
240 | .name = "Pinnacle PCTV USB 2 (Philips FM1216ME)", | ||
241 | .valid = EM28XX_BOARD_NOT_VALIDATED, | ||
242 | .vchannels = 3, | ||
243 | .is_em2800 = 0, | ||
244 | .tuner_type = TUNER_PHILIPS_FM1216ME_MK3, | ||
245 | .tda9887_conf = TDA9887_PRESENT, | ||
246 | .decoder = EM28XX_SAA7113, | ||
247 | .input = { { | ||
248 | .type = EM28XX_VMUX_TELEVISION, | ||
249 | .vmux = SAA7115_COMPOSITE2, | ||
250 | .amux = 0, | ||
251 | }, { | ||
252 | .type = EM28XX_VMUX_COMPOSITE1, | ||
253 | .vmux = SAA7115_COMPOSITE0, | ||
254 | .amux = 1, | ||
255 | }, { | ||
256 | .type = EM28XX_VMUX_SVIDEO, | ||
257 | .vmux = SAA7115_SVIDEO3, | ||
258 | .amux = 1, | ||
259 | } }, | ||
260 | }, | ||
261 | [EM2820_BOARD_GADMEI_UTV310] = { | ||
262 | .name = "Gadmei UTV310", | ||
263 | .valid = EM28XX_BOARD_NOT_VALIDATED, | ||
264 | .vchannels = 3, | ||
265 | .tuner_type = TUNER_TNF_5335MF, | ||
266 | .tda9887_conf = TDA9887_PRESENT, | ||
267 | .decoder = EM28XX_SAA7113, | ||
268 | .input = { { | ||
269 | .type = EM28XX_VMUX_TELEVISION, | ||
270 | .vmux = SAA7115_COMPOSITE1, | ||
271 | .amux = 1, | ||
272 | }, { | ||
273 | .type = EM28XX_VMUX_COMPOSITE1, | ||
274 | .vmux = SAA7115_COMPOSITE0, | ||
275 | .amux = 1, | ||
276 | }, { | ||
277 | .type = EM28XX_VMUX_SVIDEO, | ||
278 | .vmux = SAA7115_SVIDEO3, | ||
279 | .amux = 1, | ||
280 | } }, | ||
281 | }, | ||
282 | [EM2820_BOARD_LEADTEK_WINFAST_USBII_DELUXE] = { | ||
283 | .name = "Leadtek Winfast USB II Deluxe", | ||
284 | .valid = EM28XX_BOARD_NOT_VALIDATED, | ||
285 | .vchannels = 3, | ||
286 | .tuner_type = TUNER_PHILIPS_FM1216ME_MK3, | ||
287 | .tda9887_conf = TDA9887_PRESENT, | ||
288 | .decoder = EM28XX_SAA7114, | ||
289 | .input = { { | ||
290 | .type = EM28XX_VMUX_TELEVISION, | ||
291 | .vmux = 2, | ||
292 | .amux = 0, | ||
293 | }, { | ||
294 | .type = EM28XX_VMUX_COMPOSITE1, | ||
295 | .vmux = 0, | ||
296 | .amux = 1, | ||
297 | }, { | ||
298 | .type = EM28XX_VMUX_SVIDEO, | ||
299 | .vmux = 9, | ||
300 | .amux = 1, | ||
301 | } }, | ||
302 | }, | ||
303 | [EM2820_BOARD_PINNACLE_DVC_100] = { | ||
304 | .name = "Pinnacle Dazzle DVC 100", | ||
305 | .valid = EM28XX_BOARD_NOT_VALIDATED, | ||
306 | .vchannels = 3, | ||
307 | .decoder = EM28XX_SAA7113, | ||
308 | .input = { { | ||
309 | .type = EM28XX_VMUX_COMPOSITE1, | ||
310 | .vmux = SAA7115_COMPOSITE0, | ||
311 | .amux = 1, | ||
312 | }, { | ||
313 | .type = EM28XX_VMUX_SVIDEO, | ||
314 | .vmux = SAA7115_SVIDEO3, | ||
315 | .amux = 1, | ||
316 | } }, | ||
317 | }, | ||
318 | [EM2820_BOARD_VIDEOLOGY_20K14XUSB] = { | ||
319 | .name = "Videology 20K14XUSB USB2.0", | ||
320 | .valid = EM28XX_BOARD_NOT_VALIDATED, | ||
321 | .vchannels = 1, | ||
322 | .input = { { | ||
323 | .type = EM28XX_VMUX_COMPOSITE1, | ||
324 | .vmux = 0, | ||
325 | .amux = 0, | ||
326 | } }, | ||
327 | }, | ||
328 | [EM2821_BOARD_PROLINK_PLAYTV_USB2] = { | ||
329 | .name = "SIIG AVTuner-PVR/Prolink PlayTV USB 2.0", | ||
330 | .valid = EM28XX_BOARD_NOT_VALIDATED, | ||
331 | .vchannels = 3, | ||
332 | .is_em2800 = 0, | ||
333 | .tuner_type = TUNER_LG_PAL_NEW_TAPC, /* unknown? */ | ||
334 | .tda9887_conf = TDA9887_PRESENT, /* unknown? */ | ||
335 | .decoder = EM28XX_SAA7113, | ||
336 | .input = { { | ||
337 | .type = EM28XX_VMUX_TELEVISION, | ||
338 | .vmux = SAA7115_COMPOSITE2, | ||
339 | .amux = 1, | ||
340 | }, { | ||
341 | .type = EM28XX_VMUX_COMPOSITE1, | ||
342 | .vmux = SAA7115_COMPOSITE0, | ||
343 | .amux = 1, | ||
344 | }, { | ||
345 | .type = EM28XX_VMUX_SVIDEO, | ||
346 | .vmux = SAA7115_SVIDEO3, | ||
347 | .amux = 1, | ||
348 | } }, | ||
349 | }, | ||
350 | [EM2821_BOARD_SUPERCOMP_USB_2] = { | ||
351 | .name = "Supercomp USB 2.0 TV", | ||
352 | .valid = EM28XX_BOARD_NOT_VALIDATED, | ||
353 | .vchannels = 3, | ||
354 | .is_em2800 = 0, | ||
355 | .tuner_type = TUNER_PHILIPS_FM1236_MK3, | ||
356 | .tda9887_conf = TDA9887_PRESENT | | ||
357 | TDA9887_PORT1_ACTIVE | | ||
358 | TDA9887_PORT2_ACTIVE, | ||
359 | .decoder = EM28XX_SAA7113, | ||
360 | .input = { { | ||
361 | .type = EM28XX_VMUX_TELEVISION, | ||
362 | .vmux = SAA7115_COMPOSITE2, | ||
363 | .amux = 1, | ||
364 | }, { | ||
365 | .type = EM28XX_VMUX_COMPOSITE1, | ||
366 | .vmux = SAA7115_COMPOSITE0, | ||
367 | .amux = 0, | ||
368 | }, { | ||
369 | .type = EM28XX_VMUX_SVIDEO, | ||
370 | .vmux = SAA7115_SVIDEO3, | ||
371 | .amux = 1, | ||
372 | } }, | ||
373 | }, | ||
374 | [EM2821_BOARD_USBGEAR_VD204] = { | ||
375 | .name = "Usbgear VD204v9", | ||
376 | .valid = EM28XX_BOARD_NOT_VALIDATED, | ||
377 | .vchannels = 2, | ||
378 | .decoder = EM28XX_SAA7113, | ||
379 | .input = { { | ||
380 | .type = EM28XX_VMUX_COMPOSITE1, | ||
381 | .vmux = SAA7115_COMPOSITE0, | ||
382 | .amux = 1, | ||
383 | }, { | ||
384 | .type = EM28XX_VMUX_SVIDEO, | ||
385 | .vmux = SAA7115_SVIDEO3, | ||
386 | .amux = 1, | ||
387 | } }, | ||
388 | }, | ||
389 | [EM2860_BOARD_NETGMBH_CAM] = { | ||
390 | /* Beijing Huaqi Information Digital Technology Co., Ltd */ | ||
391 | .name = "NetGMBH Cam", | ||
392 | .valid = EM28XX_BOARD_NOT_VALIDATED, | ||
393 | .vchannels = 1, | ||
394 | .input = { { | ||
395 | .type = EM28XX_VMUX_COMPOSITE1, | ||
396 | .vmux = 0, | ||
397 | .amux = 0, | ||
398 | } }, | ||
399 | }, | ||
400 | [EM2860_BOARD_TYPHOON_DVD_MAKER] = { | ||
401 | .name = "Typhoon DVD Maker", | ||
402 | .valid = EM28XX_BOARD_NOT_VALIDATED, | ||
403 | .vchannels = 2, | ||
404 | .decoder = EM28XX_SAA7113, | ||
405 | .input = { { | ||
406 | .type = EM28XX_VMUX_COMPOSITE1, | ||
407 | .vmux = SAA7115_COMPOSITE0, | ||
408 | .amux = 1, | ||
409 | }, { | ||
410 | .type = EM28XX_VMUX_SVIDEO, | ||
411 | .vmux = SAA7115_SVIDEO3, | ||
412 | .amux = 1, | ||
413 | } }, | ||
414 | }, | ||
415 | [EM2860_BOARD_GADMEI_UTV330] = { | ||
416 | .name = "Gadmei UTV330", | ||
417 | .valid = EM28XX_BOARD_NOT_VALIDATED, | ||
418 | .vchannels = 3, | ||
419 | .tuner_type = TUNER_TNF_5335MF, | ||
420 | .tda9887_conf = TDA9887_PRESENT, | ||
421 | .decoder = EM28XX_SAA7113, | ||
422 | .input = { { | ||
423 | .type = EM28XX_VMUX_TELEVISION, | ||
424 | .vmux = SAA7115_COMPOSITE2, | ||
425 | .amux = 0, | ||
426 | }, { | ||
427 | .type = EM28XX_VMUX_COMPOSITE1, | ||
428 | .vmux = SAA7115_COMPOSITE0, | ||
429 | .amux = 1, | ||
430 | }, { | ||
431 | .type = EM28XX_VMUX_SVIDEO, | ||
432 | .vmux = SAA7115_SVIDEO3, | ||
433 | .amux = 1, | ||
434 | } }, | ||
435 | }, | ||
436 | [EM2860_BOARD_TERRATEC_HYBRID_XS] = { | ||
437 | .name = "Terratec Cinergy A Hybrid XS", | ||
438 | .valid = EM28XX_BOARD_NOT_VALIDATED, | ||
439 | .vchannels = 3, | ||
440 | .tuner_type = TUNER_XC2028, | ||
441 | .decoder = EM28XX_TVP5150, | ||
442 | .input = { { | ||
443 | .type = EM28XX_VMUX_TELEVISION, | ||
444 | .vmux = TVP5150_COMPOSITE0, | ||
445 | .amux = 0, | ||
446 | }, { | ||
447 | .type = EM28XX_VMUX_COMPOSITE1, | ||
448 | .vmux = TVP5150_COMPOSITE1, | ||
449 | .amux = 1, | ||
450 | }, { | ||
451 | .type = EM28XX_VMUX_SVIDEO, | ||
452 | .vmux = TVP5150_SVIDEO, | ||
453 | .amux = 1, | ||
454 | } }, | ||
455 | }, | ||
456 | [EM2861_BOARD_KWORLD_PVRTV_300U] = { | ||
457 | .name = "KWorld PVRTV 300U", | ||
458 | .valid = EM28XX_BOARD_NOT_VALIDATED, | ||
459 | .vchannels = 3, | ||
460 | .tuner_type = TUNER_XC2028, | ||
461 | .decoder = EM28XX_TVP5150, | ||
462 | .input = { { | ||
463 | .type = EM28XX_VMUX_TELEVISION, | ||
464 | .vmux = TVP5150_COMPOSITE0, | ||
465 | .amux = 0, | ||
466 | }, { | ||
467 | .type = EM28XX_VMUX_COMPOSITE1, | ||
468 | .vmux = TVP5150_COMPOSITE1, | ||
469 | .amux = 1, | ||
470 | }, { | ||
471 | .type = EM28XX_VMUX_SVIDEO, | ||
472 | .vmux = TVP5150_SVIDEO, | ||
473 | .amux = 1, | ||
474 | } }, | ||
475 | }, | ||
476 | [EM2861_BOARD_YAKUMO_MOVIE_MIXER] = { | ||
477 | .name = "Yakumo MovieMixer", | ||
478 | .valid = EM28XX_BOARD_NOT_VALIDATED, | ||
479 | .vchannels = 1, | ||
480 | .decoder = EM28XX_TVP5150, | ||
481 | .input = { { | ||
482 | .type = EM28XX_VMUX_TELEVISION, | ||
483 | .vmux = TVP5150_COMPOSITE0, | ||
484 | .amux = 0, | ||
485 | }, { | ||
486 | .type = EM28XX_VMUX_COMPOSITE1, | ||
487 | .vmux = TVP5150_COMPOSITE1, | ||
488 | .amux = 1, | ||
489 | }, { | ||
490 | .type = EM28XX_VMUX_SVIDEO, | ||
491 | .vmux = TVP5150_SVIDEO, | ||
492 | .amux = 1, | ||
493 | } }, | ||
494 | }, | ||
495 | [EM2861_BOARD_PLEXTOR_PX_TV100U] = { | ||
496 | .name = "Plextor ConvertX PX-TV100U", | ||
497 | .valid = EM28XX_BOARD_NOT_VALIDATED, | ||
498 | .vchannels = 3, | ||
499 | .tuner_type = TUNER_TNF_5335MF, | ||
500 | .tda9887_conf = TDA9887_PRESENT, | ||
501 | .decoder = EM28XX_TVP5150, | ||
502 | .input = { { | ||
503 | .type = EM28XX_VMUX_TELEVISION, | ||
504 | .vmux = TVP5150_COMPOSITE0, | ||
505 | .amux = 1, | ||
506 | }, { | ||
507 | .type = EM28XX_VMUX_COMPOSITE1, | ||
508 | .vmux = TVP5150_COMPOSITE1, | ||
509 | .amux = 1, | ||
510 | }, { | ||
511 | .type = EM28XX_VMUX_SVIDEO, | ||
512 | .vmux = TVP5150_SVIDEO, | ||
513 | .amux = 1, | ||
514 | } }, | ||
515 | }, | ||
516 | [EM2870_BOARD_TERRATEC_XS] = { | ||
517 | .name = "Terratec Cinergy T XS", | ||
518 | .valid = EM28XX_BOARD_NOT_VALIDATED, | ||
519 | .tuner_type = TUNER_XC2028, | ||
520 | }, | ||
521 | [EM2870_BOARD_TERRATEC_XS_MT2060] = { | ||
522 | .name = "Terratec Cinergy T XS (MT2060)", | ||
523 | .valid = EM28XX_BOARD_NOT_VALIDATED, | ||
524 | .tuner_type = TUNER_ABSENT, /* MT2060 */ | ||
525 | }, | ||
526 | [EM2870_BOARD_KWORLD_350U] = { | ||
527 | .name = "Kworld 350 U DVB-T", | ||
528 | .valid = EM28XX_BOARD_NOT_VALIDATED, | ||
529 | .tuner_type = TUNER_XC2028, | ||
530 | }, | ||
531 | [EM2870_BOARD_KWORLD_355U] = { | ||
532 | .name = "Kworld 355 U DVB-T", | ||
533 | .valid = EM28XX_BOARD_NOT_VALIDATED, | ||
534 | }, | ||
535 | [EM2870_BOARD_PINNACLE_PCTV_DVB] = { | ||
536 | .name = "Pinnacle PCTV DVB-T", | ||
537 | .valid = EM28XX_BOARD_NOT_VALIDATED, | ||
538 | .tuner_type = TUNER_ABSENT, /* MT2060 */ | ||
539 | }, | ||
540 | [EM2870_BOARD_COMPRO_VIDEOMATE] = { | ||
541 | .name = "Compro, VideoMate U3", | ||
542 | .valid = EM28XX_BOARD_NOT_VALIDATED, | ||
543 | .tuner_type = TUNER_ABSENT, /* MT2060 */ | ||
544 | }, | ||
545 | [EM2880_BOARD_TERRATEC_HYBRID_XS_FR] = { | ||
546 | .name = "Terratec Hybrid XS Secam", | ||
547 | .valid = EM28XX_BOARD_NOT_VALIDATED, | ||
548 | .vchannels = 3, | ||
549 | .has_msp34xx = 1, | ||
550 | .tuner_type = TUNER_XC2028, | ||
551 | .decoder = EM28XX_TVP5150, | ||
552 | .input = { { | ||
553 | .type = EM28XX_VMUX_TELEVISION, | ||
554 | .vmux = TVP5150_COMPOSITE0, | ||
555 | .amux = 0, | ||
556 | }, { | ||
557 | .type = EM28XX_VMUX_COMPOSITE1, | ||
558 | .vmux = TVP5150_COMPOSITE1, | ||
559 | .amux = 1, | ||
560 | }, { | ||
561 | .type = EM28XX_VMUX_SVIDEO, | ||
562 | .vmux = TVP5150_SVIDEO, | ||
563 | .amux = 1, | ||
564 | } }, | ||
565 | }, | ||
154 | [EM2880_BOARD_HAUPPAUGE_WINTV_HVR_900] = { | 566 | [EM2880_BOARD_HAUPPAUGE_WINTV_HVR_900] = { |
155 | .name = "Hauppauge WinTV HVR 900", | 567 | .name = "Hauppauge WinTV HVR 900", |
156 | .vchannels = 3, | 568 | .vchannels = 3, |
@@ -194,7 +606,7 @@ struct em28xx_board em28xx_boards[] = { | |||
194 | .amux = 1, | 606 | .amux = 1, |
195 | } }, | 607 | } }, |
196 | }, | 608 | }, |
197 | [EM2880_BOARD_HAUPPAUGE_WINTV_HVR_950] = { | 609 | [EM2883_BOARD_HAUPPAUGE_WINTV_HVR_950] = { |
198 | .name = "Hauppauge WinTV HVR 950", | 610 | .name = "Hauppauge WinTV HVR 950", |
199 | .vchannels = 3, | 611 | .vchannels = 3, |
200 | .tda9887_conf = TDA9887_PRESENT, | 612 | .tda9887_conf = TDA9887_PRESENT, |
@@ -240,12 +652,36 @@ struct em28xx_board em28xx_boards[] = { | |||
240 | .amux = 1, | 652 | .amux = 1, |
241 | } }, | 653 | } }, |
242 | }, | 654 | }, |
655 | [EM2880_BOARD_AMD_ATI_TV_WONDER_HD_600] = { | ||
656 | .name = "AMD ATI TV Wonder HD 600", | ||
657 | .vchannels = 3, | ||
658 | .tda9887_conf = TDA9887_PRESENT, | ||
659 | .tuner_type = TUNER_XC2028, | ||
660 | .mts_firmware = 1, | ||
661 | .has_12mhz_i2s = 1, | ||
662 | .has_dvb = 1, | ||
663 | .decoder = EM28XX_TVP5150, | ||
664 | .input = { { | ||
665 | .type = EM28XX_VMUX_TELEVISION, | ||
666 | .vmux = TVP5150_COMPOSITE0, | ||
667 | .amux = 0, | ||
668 | }, { | ||
669 | .type = EM28XX_VMUX_COMPOSITE1, | ||
670 | .vmux = TVP5150_COMPOSITE1, | ||
671 | .amux = 1, | ||
672 | }, { | ||
673 | .type = EM28XX_VMUX_SVIDEO, | ||
674 | .vmux = TVP5150_SVIDEO, | ||
675 | .amux = 1, | ||
676 | } }, | ||
677 | }, | ||
243 | [EM2880_BOARD_TERRATEC_HYBRID_XS] = { | 678 | [EM2880_BOARD_TERRATEC_HYBRID_XS] = { |
244 | .name = "Terratec Hybrid XS", | 679 | .name = "Terratec Hybrid XS", |
245 | .vchannels = 3, | 680 | .vchannels = 3, |
246 | .tda9887_conf = TDA9887_PRESENT, | 681 | .tda9887_conf = TDA9887_PRESENT, |
247 | .tuner_type = TUNER_XC2028, | 682 | .tuner_type = TUNER_XC2028, |
248 | .decoder = EM28XX_TVP5150, | 683 | .decoder = EM28XX_TVP5150, |
684 | .has_dvb = 1, | ||
249 | .input = { { | 685 | .input = { { |
250 | .type = EM28XX_VMUX_TELEVISION, | 686 | .type = EM28XX_VMUX_TELEVISION, |
251 | .vmux = TVP5150_COMPOSITE0, | 687 | .vmux = TVP5150_COMPOSITE0, |
@@ -328,6 +764,21 @@ struct em28xx_board em28xx_boards[] = { | |||
328 | .amux = 1, | 764 | .amux = 1, |
329 | } }, | 765 | } }, |
330 | }, | 766 | }, |
767 | [EM2800_BOARD_GRABBEEX_USB2800] = { | ||
768 | .name = "eMPIA Technology, Inc. GrabBeeX+ Video Encoder", | ||
769 | .is_em2800 = 1, | ||
770 | .vchannels = 2, | ||
771 | .decoder = EM28XX_SAA7113, | ||
772 | .input = { { | ||
773 | .type = EM28XX_VMUX_COMPOSITE1, | ||
774 | .vmux = SAA7115_COMPOSITE0, | ||
775 | .amux = 1, | ||
776 | }, { | ||
777 | .type = EM28XX_VMUX_SVIDEO, | ||
778 | .vmux = SAA7115_SVIDEO3, | ||
779 | .amux = 1, | ||
780 | } }, | ||
781 | }, | ||
331 | [EM2800_BOARD_LEADTEK_WINFAST_USBII] = { | 782 | [EM2800_BOARD_LEADTEK_WINFAST_USBII] = { |
332 | .name = "Leadtek Winfast USB II", | 783 | .name = "Leadtek Winfast USB II", |
333 | .is_em2800 = 1, | 784 | .is_em2800 = 1, |
@@ -439,13 +890,232 @@ struct em28xx_board em28xx_boards[] = { | |||
439 | .amux = 0, | 890 | .amux = 0, |
440 | } }, | 891 | } }, |
441 | }, | 892 | }, |
893 | [EM2880_BOARD_MSI_DIGIVOX_AD] = { | ||
894 | .name = "MSI DigiVox A/D", | ||
895 | .valid = EM28XX_BOARD_NOT_VALIDATED, | ||
896 | .vchannels = 3, | ||
897 | .tuner_type = TUNER_XC2028, | ||
898 | .decoder = EM28XX_TVP5150, | ||
899 | .input = { { | ||
900 | .type = EM28XX_VMUX_TELEVISION, | ||
901 | .vmux = TVP5150_COMPOSITE0, | ||
902 | .amux = 0, | ||
903 | }, { | ||
904 | .type = EM28XX_VMUX_COMPOSITE1, | ||
905 | .vmux = TVP5150_COMPOSITE1, | ||
906 | .amux = 1, | ||
907 | }, { | ||
908 | .type = EM28XX_VMUX_SVIDEO, | ||
909 | .vmux = TVP5150_SVIDEO, | ||
910 | .amux = 1, | ||
911 | } }, | ||
912 | }, | ||
913 | [EM2880_BOARD_MSI_DIGIVOX_AD_II] = { | ||
914 | .name = "MSI DigiVox A/D II", | ||
915 | .valid = EM28XX_BOARD_NOT_VALIDATED, | ||
916 | .vchannels = 3, | ||
917 | .tuner_type = TUNER_XC2028, | ||
918 | .decoder = EM28XX_TVP5150, | ||
919 | .input = { { | ||
920 | .type = EM28XX_VMUX_TELEVISION, | ||
921 | .vmux = TVP5150_COMPOSITE0, | ||
922 | .amux = 0, | ||
923 | }, { | ||
924 | .type = EM28XX_VMUX_COMPOSITE1, | ||
925 | .vmux = TVP5150_COMPOSITE1, | ||
926 | .amux = 1, | ||
927 | }, { | ||
928 | .type = EM28XX_VMUX_SVIDEO, | ||
929 | .vmux = TVP5150_SVIDEO, | ||
930 | .amux = 1, | ||
931 | } }, | ||
932 | }, | ||
933 | [EM2880_BOARD_KWORLD_DVB_305U] = { | ||
934 | .name = "KWorld DVB-T 305U", | ||
935 | .valid = EM28XX_BOARD_NOT_VALIDATED, | ||
936 | .vchannels = 3, | ||
937 | .tuner_type = TUNER_XC2028, | ||
938 | .decoder = EM28XX_TVP5150, | ||
939 | .input = { { | ||
940 | .type = EM28XX_VMUX_TELEVISION, | ||
941 | .vmux = TVP5150_COMPOSITE0, | ||
942 | .amux = 0, | ||
943 | }, { | ||
944 | .type = EM28XX_VMUX_COMPOSITE1, | ||
945 | .vmux = TVP5150_COMPOSITE1, | ||
946 | .amux = 1, | ||
947 | }, { | ||
948 | .type = EM28XX_VMUX_SVIDEO, | ||
949 | .vmux = TVP5150_SVIDEO, | ||
950 | .amux = 1, | ||
951 | } }, | ||
952 | }, | ||
953 | [EM2880_BOARD_KWORLD_DVB_310U] = { | ||
954 | .name = "KWorld DVB-T 310U", | ||
955 | .valid = EM28XX_BOARD_NOT_VALIDATED, | ||
956 | .vchannels = 3, | ||
957 | .tuner_type = TUNER_XC2028, | ||
958 | .decoder = EM28XX_TVP5150, | ||
959 | .input = { { | ||
960 | .type = EM28XX_VMUX_TELEVISION, | ||
961 | .vmux = TVP5150_COMPOSITE0, | ||
962 | .amux = 0, | ||
963 | }, { | ||
964 | .type = EM28XX_VMUX_COMPOSITE1, | ||
965 | .vmux = TVP5150_COMPOSITE1, | ||
966 | .amux = 1, | ||
967 | }, { | ||
968 | .type = EM28XX_VMUX_SVIDEO, | ||
969 | .vmux = TVP5150_SVIDEO, | ||
970 | .amux = 1, | ||
971 | } }, | ||
972 | }, | ||
973 | [EM2881_BOARD_DNT_DA2_HYBRID] = { | ||
974 | .name = "DNT DA2 Hybrid", | ||
975 | .valid = EM28XX_BOARD_NOT_VALIDATED, | ||
976 | .vchannels = 3, | ||
977 | .tuner_type = TUNER_XC2028, | ||
978 | .decoder = EM28XX_TVP5150, | ||
979 | .input = { { | ||
980 | .type = EM28XX_VMUX_TELEVISION, | ||
981 | .vmux = TVP5150_COMPOSITE0, | ||
982 | .amux = 0, | ||
983 | }, { | ||
984 | .type = EM28XX_VMUX_COMPOSITE1, | ||
985 | .vmux = TVP5150_COMPOSITE1, | ||
986 | .amux = 1, | ||
987 | }, { | ||
988 | .type = EM28XX_VMUX_SVIDEO, | ||
989 | .vmux = TVP5150_SVIDEO, | ||
990 | .amux = 1, | ||
991 | } }, | ||
992 | }, | ||
993 | [EM2881_BOARD_PINNACLE_HYBRID_PRO] = { | ||
994 | .name = "Pinnacle Hybrid Pro", | ||
995 | .valid = EM28XX_BOARD_NOT_VALIDATED, | ||
996 | .vchannels = 3, | ||
997 | .tuner_type = TUNER_XC2028, | ||
998 | .decoder = EM28XX_TVP5150, | ||
999 | .input = { { | ||
1000 | .type = EM28XX_VMUX_TELEVISION, | ||
1001 | .vmux = TVP5150_COMPOSITE0, | ||
1002 | .amux = 0, | ||
1003 | }, { | ||
1004 | .type = EM28XX_VMUX_COMPOSITE1, | ||
1005 | .vmux = TVP5150_COMPOSITE1, | ||
1006 | .amux = 1, | ||
1007 | }, { | ||
1008 | .type = EM28XX_VMUX_SVIDEO, | ||
1009 | .vmux = TVP5150_SVIDEO, | ||
1010 | .amux = 1, | ||
1011 | } }, | ||
1012 | }, | ||
1013 | [EM2882_BOARD_PINNACLE_HYBRID_PRO] = { | ||
1014 | .name = "Pinnacle Hybrid Pro (2)", | ||
1015 | .valid = EM28XX_BOARD_NOT_VALIDATED, | ||
1016 | .vchannels = 3, | ||
1017 | .tuner_type = TUNER_XC2028, | ||
1018 | .decoder = EM28XX_TVP5150, | ||
1019 | .input = { { | ||
1020 | .type = EM28XX_VMUX_TELEVISION, | ||
1021 | .vmux = TVP5150_COMPOSITE0, | ||
1022 | .amux = 0, | ||
1023 | }, { | ||
1024 | .type = EM28XX_VMUX_COMPOSITE1, | ||
1025 | .vmux = TVP5150_COMPOSITE1, | ||
1026 | .amux = 1, | ||
1027 | }, { | ||
1028 | .type = EM28XX_VMUX_SVIDEO, | ||
1029 | .vmux = TVP5150_SVIDEO, | ||
1030 | .amux = 1, | ||
1031 | } }, | ||
1032 | }, | ||
1033 | [EM2882_BOARD_KWORLD_VS_DVBT] = { | ||
1034 | .name = "Kworld VS-DVB-T 323UR", | ||
1035 | .valid = EM28XX_BOARD_NOT_VALIDATED, | ||
1036 | .vchannels = 3, | ||
1037 | .tuner_type = TUNER_XC2028, | ||
1038 | .decoder = EM28XX_TVP5150, | ||
1039 | .input = { { | ||
1040 | .type = EM28XX_VMUX_TELEVISION, | ||
1041 | .vmux = TVP5150_COMPOSITE0, | ||
1042 | .amux = 0, | ||
1043 | }, { | ||
1044 | .type = EM28XX_VMUX_COMPOSITE1, | ||
1045 | .vmux = TVP5150_COMPOSITE1, | ||
1046 | .amux = 1, | ||
1047 | }, { | ||
1048 | .type = EM28XX_VMUX_SVIDEO, | ||
1049 | .vmux = TVP5150_SVIDEO, | ||
1050 | .amux = 1, | ||
1051 | } }, | ||
1052 | }, | ||
1053 | [EM2882_BOARD_TERRATEC_HYBRID_XS] = { | ||
1054 | .name = "Terratec Hybrid XS (em2882)", | ||
1055 | .valid = EM28XX_BOARD_NOT_VALIDATED, | ||
1056 | .vchannels = 3, | ||
1057 | .tuner_type = TUNER_XC2028, | ||
1058 | .decoder = EM28XX_TVP5150, | ||
1059 | .input = { { | ||
1060 | .type = EM28XX_VMUX_TELEVISION, | ||
1061 | .vmux = TVP5150_COMPOSITE0, | ||
1062 | .amux = 0, | ||
1063 | }, { | ||
1064 | .type = EM28XX_VMUX_COMPOSITE1, | ||
1065 | .vmux = TVP5150_COMPOSITE1, | ||
1066 | .amux = 1, | ||
1067 | }, { | ||
1068 | .type = EM28XX_VMUX_SVIDEO, | ||
1069 | .vmux = TVP5150_SVIDEO, | ||
1070 | .amux = 1, | ||
1071 | } }, | ||
1072 | }, | ||
1073 | [EM2883_BOARD_KWORLD_HYBRID_A316] = { | ||
1074 | .name = "Kworld PlusTV HD Hybrid 330", | ||
1075 | .valid = EM28XX_BOARD_NOT_VALIDATED, | ||
1076 | .vchannels = 3, | ||
1077 | .is_em2800 = 0, | ||
1078 | .tuner_type = TUNER_XC2028, | ||
1079 | .decoder = EM28XX_TVP5150, | ||
1080 | .input = { { | ||
1081 | .type = EM28XX_VMUX_TELEVISION, | ||
1082 | .vmux = TVP5150_COMPOSITE0, | ||
1083 | .amux = 0, | ||
1084 | }, { | ||
1085 | .type = EM28XX_VMUX_COMPOSITE1, | ||
1086 | .vmux = TVP5150_COMPOSITE1, | ||
1087 | .amux = 1, | ||
1088 | }, { | ||
1089 | .type = EM28XX_VMUX_SVIDEO, | ||
1090 | .vmux = TVP5150_SVIDEO, | ||
1091 | .amux = 1, | ||
1092 | } }, | ||
1093 | }, | ||
1094 | [EM2820_BOARD_COMPRO_VIDEOMATE_FORYOU] = { | ||
1095 | .name = "Compro VideoMate ForYou/Stereo", | ||
1096 | .vchannels = 2, | ||
1097 | .tuner_type = TUNER_LG_PAL_NEW_TAPC, | ||
1098 | .tda9887_conf = TDA9887_PRESENT, | ||
1099 | .decoder = EM28XX_TVP5150, | ||
1100 | .input = { { | ||
1101 | .type = EM28XX_VMUX_TELEVISION, | ||
1102 | .vmux = TVP5150_COMPOSITE0, | ||
1103 | .amux = EM28XX_AMUX_LINE_IN, | ||
1104 | }, { | ||
1105 | .type = EM28XX_VMUX_SVIDEO, | ||
1106 | .vmux = TVP5150_SVIDEO, | ||
1107 | .amux = EM28XX_AMUX_LINE_IN, | ||
1108 | } }, | ||
1109 | }, | ||
442 | }; | 1110 | }; |
443 | const unsigned int em28xx_bcount = ARRAY_SIZE(em28xx_boards); | 1111 | const unsigned int em28xx_bcount = ARRAY_SIZE(em28xx_boards); |
444 | 1112 | ||
445 | /* table of devices that work with this driver */ | 1113 | /* table of devices that work with this driver */ |
446 | struct usb_device_id em28xx_id_table [] = { | 1114 | struct usb_device_id em28xx_id_table [] = { |
447 | { USB_DEVICE(0xeb1a, 0x2750), | 1115 | { USB_DEVICE(0xeb1a, 0x2750), |
448 | .driver_info = EM2820_BOARD_UNKNOWN }, | 1116 | .driver_info = EM2750_BOARD_UNKNOWN }, |
1117 | { USB_DEVICE(0xeb1a, 0x2751), | ||
1118 | .driver_info = EM2750_BOARD_UNKNOWN }, | ||
449 | { USB_DEVICE(0xeb1a, 0x2800), | 1119 | { USB_DEVICE(0xeb1a, 0x2800), |
450 | .driver_info = EM2800_BOARD_UNKNOWN }, | 1120 | .driver_info = EM2800_BOARD_UNKNOWN }, |
451 | { USB_DEVICE(0xeb1a, 0x2820), | 1121 | { USB_DEVICE(0xeb1a, 0x2820), |
@@ -462,36 +1132,78 @@ struct usb_device_id em28xx_id_table [] = { | |||
462 | .driver_info = EM2820_BOARD_UNKNOWN }, | 1132 | .driver_info = EM2820_BOARD_UNKNOWN }, |
463 | { USB_DEVICE(0xeb1a, 0x2883), | 1133 | { USB_DEVICE(0xeb1a, 0x2883), |
464 | .driver_info = EM2820_BOARD_UNKNOWN }, | 1134 | .driver_info = EM2820_BOARD_UNKNOWN }, |
1135 | { USB_DEVICE(0xeb1a, 0xe300), | ||
1136 | .driver_info = EM2861_BOARD_KWORLD_PVRTV_300U }, | ||
1137 | { USB_DEVICE(0xeb1a, 0xe305), | ||
1138 | .driver_info = EM2880_BOARD_KWORLD_DVB_305U }, | ||
1139 | { USB_DEVICE(0xeb1a, 0xe310), | ||
1140 | .driver_info = EM2880_BOARD_MSI_DIGIVOX_AD }, | ||
1141 | { USB_DEVICE(0xeb1a, 0xa316), | ||
1142 | .driver_info = EM2883_BOARD_KWORLD_HYBRID_A316 }, | ||
1143 | { USB_DEVICE(0xeb1a, 0xe320), | ||
1144 | .driver_info = EM2880_BOARD_MSI_DIGIVOX_AD_II }, | ||
1145 | { USB_DEVICE(0xeb1a, 0xe323), | ||
1146 | .driver_info = EM2882_BOARD_KWORLD_VS_DVBT }, | ||
1147 | { USB_DEVICE(0xeb1a, 0xe350), | ||
1148 | .driver_info = EM2870_BOARD_KWORLD_350U }, | ||
1149 | { USB_DEVICE(0xeb1a, 0xe355), | ||
1150 | .driver_info = EM2870_BOARD_KWORLD_355U }, | ||
1151 | { USB_DEVICE(0xeb1a, 0x2801), | ||
1152 | .driver_info = EM2800_BOARD_GRABBEEX_USB2800 }, | ||
1153 | { USB_DEVICE(0xeb1a, 0xe357), | ||
1154 | .driver_info = EM2870_BOARD_KWORLD_355U }, | ||
465 | { USB_DEVICE(0x0ccd, 0x0036), | 1155 | { USB_DEVICE(0x0ccd, 0x0036), |
466 | .driver_info = EM2820_BOARD_TERRATEC_CINERGY_250 }, | 1156 | .driver_info = EM2820_BOARD_TERRATEC_CINERGY_250 }, |
467 | { USB_DEVICE(0x2304, 0x0208), | 1157 | { USB_DEVICE(0x0ccd, 0x004c), |
468 | .driver_info = EM2820_BOARD_PINNACLE_USB_2 }, | 1158 | .driver_info = EM2880_BOARD_TERRATEC_HYBRID_XS_FR }, |
1159 | { USB_DEVICE(0x0ccd, 0x004f), | ||
1160 | .driver_info = EM2860_BOARD_TERRATEC_HYBRID_XS }, | ||
1161 | { USB_DEVICE(0x0ccd, 0x005e), | ||
1162 | .driver_info = EM2882_BOARD_TERRATEC_HYBRID_XS }, | ||
1163 | { USB_DEVICE(0x0ccd, 0x0042), | ||
1164 | .driver_info = EM2880_BOARD_TERRATEC_HYBRID_XS }, | ||
1165 | { USB_DEVICE(0x0ccd, 0x0043), | ||
1166 | .driver_info = EM2870_BOARD_TERRATEC_XS }, | ||
1167 | { USB_DEVICE(0x0ccd, 0x0047), | ||
1168 | .driver_info = EM2880_BOARD_TERRATEC_PRODIGY_XS }, | ||
1169 | { USB_DEVICE(0x185b, 0x2870), | ||
1170 | .driver_info = EM2870_BOARD_COMPRO_VIDEOMATE }, | ||
1171 | { USB_DEVICE(0x185b, 0x2041), | ||
1172 | .driver_info = EM2820_BOARD_COMPRO_VIDEOMATE_FORYOU }, | ||
469 | { USB_DEVICE(0x2040, 0x4200), | 1173 | { USB_DEVICE(0x2040, 0x4200), |
470 | .driver_info = EM2820_BOARD_HAUPPAUGE_WINTV_USB_2 }, | 1174 | .driver_info = EM2820_BOARD_HAUPPAUGE_WINTV_USB_2 }, |
471 | { USB_DEVICE(0x2040, 0x4201), | 1175 | { USB_DEVICE(0x2040, 0x4201), |
472 | .driver_info = EM2820_BOARD_HAUPPAUGE_WINTV_USB_2 }, | 1176 | .driver_info = EM2820_BOARD_HAUPPAUGE_WINTV_USB_2 }, |
473 | { USB_DEVICE(0x2304, 0x0207), | ||
474 | .driver_info = EM2820_BOARD_PINNACLE_DVC_90 }, | ||
475 | { USB_DEVICE(0x2304, 0x021a), | ||
476 | .driver_info = EM2820_BOARD_PINNACLE_DVC_90 }, | ||
477 | { USB_DEVICE(0x2304, 0x0227), | ||
478 | .driver_info = EM2880_BOARD_PINNACLE_PCTV_HD_PRO }, | ||
479 | { USB_DEVICE(0x2040, 0x6500), | 1177 | { USB_DEVICE(0x2040, 0x6500), |
480 | .driver_info = EM2880_BOARD_HAUPPAUGE_WINTV_HVR_900 }, | 1178 | .driver_info = EM2880_BOARD_HAUPPAUGE_WINTV_HVR_900 }, |
481 | { USB_DEVICE(0x2040, 0x6502), | 1179 | { USB_DEVICE(0x2040, 0x6502), |
482 | .driver_info = EM2880_BOARD_HAUPPAUGE_WINTV_HVR_900_R2 }, | 1180 | .driver_info = EM2880_BOARD_HAUPPAUGE_WINTV_HVR_900_R2 }, |
483 | { USB_DEVICE(0x2040, 0x6513), /* HCW HVR-980 */ | 1181 | { USB_DEVICE(0x2040, 0x6513), /* HCW HVR-980 */ |
484 | .driver_info = EM2880_BOARD_HAUPPAUGE_WINTV_HVR_950 }, | 1182 | .driver_info = EM2883_BOARD_HAUPPAUGE_WINTV_HVR_950 }, |
485 | { USB_DEVICE(0x2040, 0x6517), /* HP HVR-950 */ | 1183 | { USB_DEVICE(0x2040, 0x6517), /* HP HVR-950 */ |
486 | .driver_info = EM2880_BOARD_HAUPPAUGE_WINTV_HVR_950 }, | 1184 | .driver_info = EM2883_BOARD_HAUPPAUGE_WINTV_HVR_950 }, |
487 | { USB_DEVICE(0x2040, 0x651b), /* RP HVR-950 */ | 1185 | { USB_DEVICE(0x2040, 0x651b), /* RP HVR-950 */ |
488 | .driver_info = EM2880_BOARD_HAUPPAUGE_WINTV_HVR_950 }, | 1186 | .driver_info = EM2883_BOARD_HAUPPAUGE_WINTV_HVR_950 }, |
489 | { USB_DEVICE(0x2040, 0x651f), /* HCW HVR-850 */ | 1187 | { USB_DEVICE(0x2040, 0x651f), /* HCW HVR-850 */ |
490 | .driver_info = EM2880_BOARD_HAUPPAUGE_WINTV_HVR_950 }, | 1188 | .driver_info = EM2883_BOARD_HAUPPAUGE_WINTV_HVR_950 }, |
491 | { USB_DEVICE(0x0ccd, 0x0042), | 1189 | { USB_DEVICE(0x0438, 0xb002), |
492 | .driver_info = EM2880_BOARD_TERRATEC_HYBRID_XS }, | 1190 | .driver_info = EM2880_BOARD_AMD_ATI_TV_WONDER_HD_600 }, |
493 | { USB_DEVICE(0x0ccd, 0x0047), | 1191 | { USB_DEVICE(0x2001, 0xf112), |
494 | .driver_info = EM2880_BOARD_TERRATEC_PRODIGY_XS }, | 1192 | .driver_info = EM2820_BOARD_DLINK_USB_TV }, |
1193 | { USB_DEVICE(0x2304, 0x0207), | ||
1194 | .driver_info = EM2820_BOARD_PINNACLE_DVC_90 }, | ||
1195 | { USB_DEVICE(0x2304, 0x0208), | ||
1196 | .driver_info = EM2820_BOARD_PINNACLE_USB_2 }, | ||
1197 | { USB_DEVICE(0x2304, 0x021a), | ||
1198 | .driver_info = EM2820_BOARD_PINNACLE_DVC_90 }, | ||
1199 | { USB_DEVICE(0x2304, 0x0226), | ||
1200 | .driver_info = EM2882_BOARD_PINNACLE_HYBRID_PRO }, | ||
1201 | { USB_DEVICE(0x2304, 0x0227), | ||
1202 | .driver_info = EM2880_BOARD_PINNACLE_PCTV_HD_PRO }, | ||
1203 | { USB_DEVICE(0x0413, 0x6023), | ||
1204 | .driver_info = EM2800_BOARD_LEADTEK_WINFAST_USBII }, | ||
1205 | { USB_DEVICE(0x093b, 0xa005), | ||
1206 | .driver_info = EM2861_BOARD_PLEXTOR_PX_TV100U }, | ||
495 | { }, | 1207 | { }, |
496 | }; | 1208 | }; |
497 | MODULE_DEVICE_TABLE(usb, em28xx_id_table); | 1209 | MODULE_DEVICE_TABLE(usb, em28xx_id_table); |
@@ -500,6 +1212,18 @@ MODULE_DEVICE_TABLE(usb, em28xx_id_table); | |||
500 | * Reset sequences for analog/digital modes | 1212 | * Reset sequences for analog/digital modes |
501 | */ | 1213 | */ |
502 | 1214 | ||
1215 | /* Reset for the most [analog] boards */ | ||
1216 | static struct em28xx_reg_seq default_analog[] = { | ||
1217 | {EM28XX_R08_GPIO, 0x6d, ~EM_GPIO_4, 10}, | ||
1218 | { -1, -1, -1, -1}, | ||
1219 | }; | ||
1220 | |||
1221 | /* Reset for the most [digital] boards */ | ||
1222 | static struct em28xx_reg_seq default_digital[] = { | ||
1223 | {EM28XX_R08_GPIO, 0x6e, ~EM_GPIO_4, 10}, | ||
1224 | { -1, -1, -1, -1}, | ||
1225 | }; | ||
1226 | |||
503 | /* Board Hauppauge WinTV HVR 900 analog */ | 1227 | /* Board Hauppauge WinTV HVR 900 analog */ |
504 | static struct em28xx_reg_seq hauppauge_wintv_hvr_900_analog[] = { | 1228 | static struct em28xx_reg_seq hauppauge_wintv_hvr_900_analog[] = { |
505 | {EM28XX_R08_GPIO, 0x2d, ~EM_GPIO_4, 10}, | 1229 | {EM28XX_R08_GPIO, 0x2d, ~EM_GPIO_4, 10}, |
@@ -515,14 +1239,42 @@ static struct em28xx_reg_seq hauppauge_wintv_hvr_900_digital[] = { | |||
515 | { -1, -1, -1, -1}, | 1239 | { -1, -1, -1, -1}, |
516 | }; | 1240 | }; |
517 | 1241 | ||
518 | /* Board Hauppauge WinTV HVR 900 tuner_callback */ | 1242 | /* Boards - EM2880 MSI DIGIVOX AD and EM2880_BOARD_MSI_DIGIVOX_AD_II */ |
519 | static struct em28xx_reg_seq hauppauge_wintv_hvr_900_tuner_callback[] = { | 1243 | static struct em28xx_reg_seq em2880_msi_digivox_ad_analog[] = { |
1244 | {EM28XX_R08_GPIO, 0x69, ~EM_GPIO_4, 10}, | ||
1245 | { -1, -1, -1, -1}, | ||
1246 | }; | ||
1247 | |||
1248 | /* Boards - EM2880 MSI DIGIVOX AD and EM2880_BOARD_MSI_DIGIVOX_AD_II */ | ||
1249 | static struct em28xx_reg_seq em2880_msi_digivox_ad_digital[] = { | ||
1250 | {EM28XX_R08_GPIO, 0x6a, ~EM_GPIO_4, 10}, | ||
1251 | { -1, -1, -1, -1}, | ||
1252 | }; | ||
1253 | |||
1254 | /* Board - EM2870 Kworld 355u | ||
1255 | Analog - No input analog */ | ||
1256 | static struct em28xx_reg_seq em2870_kworld_355u_digital[] = { | ||
1257 | {EM2880_R04_GPO, 0x01, 0xff, 10}, | ||
1258 | { -1, -1, -1, -1}, | ||
1259 | }; | ||
1260 | |||
1261 | /* Callback for the most boards */ | ||
1262 | static struct em28xx_reg_seq default_callback[] = { | ||
520 | {EM28XX_R08_GPIO, EM_GPIO_4, EM_GPIO_4, 10}, | 1263 | {EM28XX_R08_GPIO, EM_GPIO_4, EM_GPIO_4, 10}, |
521 | {EM28XX_R08_GPIO, 0, EM_GPIO_4, 10}, | 1264 | {EM28XX_R08_GPIO, 0, EM_GPIO_4, 10}, |
522 | {EM28XX_R08_GPIO, EM_GPIO_4, EM_GPIO_4, 10}, | 1265 | {EM28XX_R08_GPIO, EM_GPIO_4, EM_GPIO_4, 10}, |
523 | { -1, -1, -1, -1}, | 1266 | { -1, -1, -1, -1}, |
524 | }; | 1267 | }; |
525 | 1268 | ||
1269 | /* Callback for EM2882 TERRATEC HYBRID XS */ | ||
1270 | static struct em28xx_reg_seq em2882_terratec_hybrid_xs_digital[] = { | ||
1271 | {EM28XX_R08_GPIO, 0x2e, 0xff, 6}, | ||
1272 | {EM28XX_R08_GPIO, 0x3e, ~EM_GPIO_4, 6}, | ||
1273 | {EM2880_R04_GPO, 0x04, 0xff, 10}, | ||
1274 | {EM2880_R04_GPO, 0x0c, 0xff, 10}, | ||
1275 | { -1, -1, -1, -1}, | ||
1276 | }; | ||
1277 | |||
526 | /* | 1278 | /* |
527 | * EEPROM hash table for devices with generic USB IDs | 1279 | * EEPROM hash table for devices with generic USB IDs |
528 | */ | 1280 | */ |
@@ -569,6 +1321,7 @@ static void em28xx_set_model(struct em28xx *dev) | |||
569 | dev->max_range_640_480 = em28xx_boards[dev->model].max_range_640_480; | 1321 | dev->max_range_640_480 = em28xx_boards[dev->model].max_range_640_480; |
570 | dev->has_dvb = em28xx_boards[dev->model].has_dvb; | 1322 | dev->has_dvb = em28xx_boards[dev->model].has_dvb; |
571 | dev->has_snapshot_button = em28xx_boards[dev->model].has_snapshot_button; | 1323 | dev->has_snapshot_button = em28xx_boards[dev->model].has_snapshot_button; |
1324 | dev->valid = em28xx_boards[dev->model].valid; | ||
572 | } | 1325 | } |
573 | 1326 | ||
574 | /* Since em28xx_pre_card_setup() requires a proper dev->model, | 1327 | /* Since em28xx_pre_card_setup() requires a proper dev->model, |
@@ -604,19 +1357,171 @@ void em28xx_pre_card_setup(struct em28xx *dev) | |||
604 | case EM2880_BOARD_TERRATEC_PRODIGY_XS: | 1357 | case EM2880_BOARD_TERRATEC_PRODIGY_XS: |
605 | case EM2880_BOARD_HAUPPAUGE_WINTV_HVR_900: | 1358 | case EM2880_BOARD_HAUPPAUGE_WINTV_HVR_900: |
606 | case EM2880_BOARD_HAUPPAUGE_WINTV_HVR_900_R2: | 1359 | case EM2880_BOARD_HAUPPAUGE_WINTV_HVR_900_R2: |
607 | case EM2880_BOARD_TERRATEC_HYBRID_XS: | 1360 | case EM2860_BOARD_TERRATEC_HYBRID_XS: |
608 | case EM2880_BOARD_HAUPPAUGE_WINTV_HVR_950: | 1361 | case EM2883_BOARD_HAUPPAUGE_WINTV_HVR_950: |
609 | case EM2880_BOARD_PINNACLE_PCTV_HD_PRO: | 1362 | case EM2880_BOARD_PINNACLE_PCTV_HD_PRO: |
1363 | case EM2882_BOARD_PINNACLE_HYBRID_PRO: | ||
1364 | case EM2883_BOARD_KWORLD_HYBRID_A316: | ||
1365 | case EM2880_BOARD_AMD_ATI_TV_WONDER_HD_600: | ||
1366 | em28xx_write_regs(dev, EM28XX_R0F_XCLK, "\x27", 1); | ||
1367 | em28xx_write_regs(dev, EM28XX_R06_I2C_CLK, "\x40", 1); | ||
1368 | msleep(50); | ||
1369 | |||
1370 | /* Sets GPO/GPIO sequences for this device */ | ||
1371 | dev->analog_gpio = hauppauge_wintv_hvr_900_analog; | ||
1372 | dev->digital_gpio = hauppauge_wintv_hvr_900_digital; | ||
1373 | dev->tun_analog_gpio = default_callback; | ||
1374 | dev->tun_digital_gpio = default_callback; | ||
1375 | break; | ||
1376 | |||
1377 | case EM2882_BOARD_TERRATEC_HYBRID_XS: | ||
610 | em28xx_write_regs(dev, EM28XX_R0F_XCLK, "\x27", 1); | 1378 | em28xx_write_regs(dev, EM28XX_R0F_XCLK, "\x27", 1); |
611 | em28xx_write_regs(dev, EM28XX_R06_I2C_CLK, "\x40", 1); | 1379 | em28xx_write_regs(dev, EM28XX_R06_I2C_CLK, "\x40", 1); |
612 | msleep(50); | 1380 | msleep(50); |
613 | 1381 | ||
1382 | /* should be added ir_codes here */ | ||
1383 | |||
614 | /* Sets GPO/GPIO sequences for this device */ | 1384 | /* Sets GPO/GPIO sequences for this device */ |
615 | dev->analog_gpio = hauppauge_wintv_hvr_900_analog; | 1385 | dev->analog_gpio = hauppauge_wintv_hvr_900_analog; |
616 | dev->digital_gpio = hauppauge_wintv_hvr_900_digital; | 1386 | dev->digital_gpio = hauppauge_wintv_hvr_900_digital; |
617 | dev->tun_analog_gpio = hauppauge_wintv_hvr_900_tuner_callback; | 1387 | dev->tun_analog_gpio = default_callback; |
618 | dev->tun_digital_gpio = hauppauge_wintv_hvr_900_tuner_callback; | 1388 | dev->tun_digital_gpio = em2882_terratec_hybrid_xs_digital; |
1389 | break; | ||
1390 | |||
1391 | case EM2880_BOARD_TERRATEC_HYBRID_XS_FR: | ||
1392 | case EM2880_BOARD_TERRATEC_HYBRID_XS: | ||
1393 | case EM2870_BOARD_TERRATEC_XS: | ||
1394 | case EM2881_BOARD_PINNACLE_HYBRID_PRO: | ||
1395 | case EM2880_BOARD_KWORLD_DVB_310U: | ||
1396 | case EM2870_BOARD_KWORLD_350U: | ||
1397 | case EM2881_BOARD_DNT_DA2_HYBRID: | ||
1398 | em28xx_write_regs(dev, EM28XX_R0F_XCLK, "\x27", 1); | ||
1399 | em28xx_write_regs(dev, EM28XX_R06_I2C_CLK, "\x40", 1); | ||
1400 | msleep(50); | ||
1401 | |||
1402 | /* NOTE: EM2881_DNT_DA2_HYBRID spend 140 msleep for digital | ||
1403 | and analog commands. If this commands doesn't work, | ||
1404 | add this timer. */ | ||
619 | 1405 | ||
1406 | /* Sets GPO/GPIO sequences for this device */ | ||
1407 | dev->analog_gpio = default_analog; | ||
1408 | dev->digital_gpio = default_digital; | ||
1409 | dev->tun_analog_gpio = default_callback; | ||
1410 | dev->tun_digital_gpio = default_callback; | ||
1411 | break; | ||
1412 | |||
1413 | case EM2880_BOARD_MSI_DIGIVOX_AD: | ||
1414 | case EM2880_BOARD_MSI_DIGIVOX_AD_II: | ||
1415 | em28xx_write_regs(dev, EM28XX_R0F_XCLK, "\x27", 1); | ||
1416 | em28xx_write_regs(dev, EM28XX_R06_I2C_CLK, "\x40", 1); | ||
1417 | msleep(50); | ||
1418 | |||
1419 | /* Sets GPO/GPIO sequences for this device */ | ||
1420 | dev->analog_gpio = em2880_msi_digivox_ad_analog; | ||
1421 | dev->digital_gpio = em2880_msi_digivox_ad_digital; | ||
1422 | dev->tun_analog_gpio = default_callback; | ||
1423 | dev->tun_digital_gpio = default_callback; | ||
1424 | break; | ||
1425 | |||
1426 | case EM2750_BOARD_UNKNOWN: | ||
1427 | case EM2750_BOARD_DLCW_130: | ||
1428 | em28xx_write_regs(dev, EM28XX_R0F_XCLK, "\x0a", 1); | ||
1429 | break; | ||
1430 | |||
1431 | case EM2861_BOARD_PLEXTOR_PX_TV100U: | ||
1432 | em28xx_write_regs(dev, EM28XX_R0F_XCLK, "\x27", 1); | ||
1433 | em28xx_write_regs(dev, EM28XX_R06_I2C_CLK, "\x40", 1); | ||
1434 | /* FIXME guess */ | ||
1435 | /* Turn on analog audio output */ | ||
1436 | em28xx_write_regs_req(dev, 0x00, 0x08, "\xfd", 1); | ||
1437 | break; | ||
1438 | |||
1439 | case EM2861_BOARD_KWORLD_PVRTV_300U: | ||
1440 | case EM2880_BOARD_KWORLD_DVB_305U: | ||
1441 | em28xx_write_regs(dev, EM28XX_R0F_XCLK, "\x27", 1); | ||
1442 | em28xx_write_regs(dev, EM28XX_R06_I2C_CLK, "\x4c", 1); | ||
1443 | msleep(10); | ||
1444 | em28xx_write_regs(dev, 0x08, "\x6d", 1); | ||
1445 | msleep(10); | ||
1446 | em28xx_write_regs(dev, 0x08, "\x7d", 1); | ||
1447 | msleep(10); | ||
1448 | break; | ||
1449 | |||
1450 | case EM2870_BOARD_KWORLD_355U: | ||
1451 | em28xx_write_regs(dev, EM28XX_R0F_XCLK, "\x27", 1); | ||
1452 | em28xx_write_regs(dev, EM28XX_R06_I2C_CLK, "\x40", 1); | ||
1453 | msleep(50); | ||
1454 | |||
1455 | /* Sets GPO/GPIO sequences for this device */ | ||
1456 | dev->digital_gpio = em2870_kworld_355u_digital; | ||
1457 | break; | ||
1458 | |||
1459 | case EM2870_BOARD_COMPRO_VIDEOMATE: | ||
1460 | em28xx_write_regs(dev, EM28XX_R0F_XCLK, "\x27", 1); | ||
1461 | em28xx_write_regs(dev, EM28XX_R06_I2C_CLK, "\x40", 1); | ||
1462 | /* TODO: someone can do some cleanup here... | ||
1463 | not everything's needed */ | ||
1464 | em28xx_write_regs(dev, 0x04, "\x00", 1); | ||
1465 | msleep(10); | ||
1466 | em28xx_write_regs(dev, 0x04, "\x01", 1); | ||
1467 | msleep(10); | ||
1468 | em28xx_write_regs(dev, 0x08, "\xfd", 1); | ||
1469 | mdelay(70); | ||
1470 | em28xx_write_regs(dev, 0x08, "\xfc", 1); | ||
1471 | mdelay(70); | ||
1472 | em28xx_write_regs(dev, 0x08, "\xdc", 1); | ||
1473 | mdelay(70); | ||
1474 | em28xx_write_regs(dev, 0x08, "\xfc", 1); | ||
1475 | mdelay(70); | ||
1476 | break; | ||
1477 | |||
1478 | case EM2870_BOARD_TERRATEC_XS_MT2060: | ||
1479 | em28xx_write_regs(dev, EM28XX_R0F_XCLK, "\x27", 1); | ||
1480 | em28xx_write_regs(dev, EM28XX_R06_I2C_CLK, "\x40", 1); | ||
1481 | /* this device needs some gpio writes to get the DVB-T | ||
1482 | demod work */ | ||
1483 | em28xx_write_regs(dev, 0x08, "\xfe", 1); | ||
1484 | mdelay(70); | ||
1485 | em28xx_write_regs(dev, 0x08, "\xde", 1); | ||
1486 | mdelay(70); | ||
1487 | dev->em28xx_write_regs(dev, 0x08, "\xfe", 1); | ||
1488 | mdelay(70); | ||
1489 | break; | ||
1490 | |||
1491 | case EM2870_BOARD_PINNACLE_PCTV_DVB: | ||
1492 | em28xx_write_regs(dev, EM28XX_R06_I2C_CLK, "\x40", 1); | ||
1493 | /* this device needs some gpio writes to get the | ||
1494 | DVB-T demod work */ | ||
1495 | em28xx_write_regs(dev, 0x08, "\xfe", 1); | ||
1496 | mdelay(70); | ||
1497 | em28xx_write_regs(dev, 0x08, "\xde", 1); | ||
1498 | mdelay(70); | ||
1499 | em28xx_write_regs(dev, 0x08, "\xfe", 1); | ||
1500 | mdelay(70); | ||
1501 | /* switch em2880 rc protocol */ | ||
1502 | em28xx_write_regs(dev, EM28XX_R0F_XCLK, "\x22", 1); | ||
1503 | /* should be added ir_codes here */ | ||
1504 | break; | ||
1505 | |||
1506 | case EM2820_BOARD_GADMEI_UTV310: | ||
1507 | em28xx_write_regs(dev, EM28XX_R0F_XCLK, "\x27", 1); | ||
1508 | em28xx_write_regs(dev, EM28XX_R06_I2C_CLK, "\x40", 1); | ||
1509 | /* Turn on analog audio output */ | ||
1510 | em28xx_write_regs_req(dev, 0x00, 0x08, "\xfd", 1); | ||
1511 | break; | ||
1512 | |||
1513 | case EM2860_BOARD_GADMEI_UTV330: | ||
1514 | /* Turn on IR */ | ||
1515 | em28xx_write_regs(dev, EM28XX_R0F_XCLK, "\x07", 1); | ||
1516 | em28xx_write_regs(dev, EM28XX_R06_I2C_CLK, "\x40", 1); | ||
1517 | /* should be added ir_codes here */ | ||
1518 | break; | ||
1519 | |||
1520 | case EM2820_BOARD_MSI_VOX_USB_2: | ||
1521 | em28xx_write_regs(dev, EM28XX_R0F_XCLK, "\x27", 1); | ||
1522 | em28xx_write_regs(dev, EM28XX_R06_I2C_CLK, "\x40", 1); | ||
1523 | /* enables audio for that device */ | ||
1524 | em28xx_write_regs_req(dev, 0x00, 0x08, "\xfd", 1); | ||
620 | break; | 1525 | break; |
621 | } | 1526 | } |
622 | 1527 | ||
@@ -639,12 +1544,16 @@ static void em28xx_setup_xc3028(struct em28xx *dev, struct xc2028_ctrl *ctl) | |||
639 | case EM2880_BOARD_HAUPPAUGE_WINTV_HVR_900: | 1544 | case EM2880_BOARD_HAUPPAUGE_WINTV_HVR_900: |
640 | ctl->demod = XC3028_FE_ZARLINK456; | 1545 | ctl->demod = XC3028_FE_ZARLINK456; |
641 | break; | 1546 | break; |
1547 | case EM2880_BOARD_TERRATEC_HYBRID_XS: | ||
1548 | ctl->demod = XC3028_FE_ZARLINK456; | ||
1549 | break; | ||
642 | case EM2880_BOARD_HAUPPAUGE_WINTV_HVR_900_R2: | 1550 | case EM2880_BOARD_HAUPPAUGE_WINTV_HVR_900_R2: |
643 | /* djh - Not sure which demod we need here */ | 1551 | /* djh - Not sure which demod we need here */ |
644 | ctl->demod = XC3028_FE_DEFAULT; | 1552 | ctl->demod = XC3028_FE_DEFAULT; |
645 | break; | 1553 | break; |
646 | case EM2880_BOARD_HAUPPAUGE_WINTV_HVR_950: | 1554 | case EM2883_BOARD_HAUPPAUGE_WINTV_HVR_950: |
647 | case EM2880_BOARD_PINNACLE_PCTV_HD_PRO: | 1555 | case EM2880_BOARD_PINNACLE_PCTV_HD_PRO: |
1556 | case EM2880_BOARD_AMD_ATI_TV_WONDER_HD_600: | ||
648 | /* FIXME: Better to specify the needed IF */ | 1557 | /* FIXME: Better to specify the needed IF */ |
649 | ctl->demod = XC3028_FE_DEFAULT; | 1558 | ctl->demod = XC3028_FE_DEFAULT; |
650 | break; | 1559 | break; |
@@ -809,6 +1718,8 @@ void em28xx_set_ir(struct em28xx *dev, struct IR_i2c *ir) | |||
809 | break; | 1718 | break; |
810 | case (EM2800_BOARD_KWORLD_USB2800): | 1719 | case (EM2800_BOARD_KWORLD_USB2800): |
811 | break; | 1720 | break; |
1721 | case (EM2800_BOARD_GRABBEEX_USB2800): | ||
1722 | break; | ||
812 | } | 1723 | } |
813 | } | 1724 | } |
814 | 1725 | ||
@@ -823,7 +1734,7 @@ void em28xx_card_setup(struct em28xx *dev) | |||
823 | case EM2820_BOARD_HAUPPAUGE_WINTV_USB_2: | 1734 | case EM2820_BOARD_HAUPPAUGE_WINTV_USB_2: |
824 | case EM2880_BOARD_HAUPPAUGE_WINTV_HVR_900: | 1735 | case EM2880_BOARD_HAUPPAUGE_WINTV_HVR_900: |
825 | case EM2880_BOARD_HAUPPAUGE_WINTV_HVR_900_R2: | 1736 | case EM2880_BOARD_HAUPPAUGE_WINTV_HVR_900_R2: |
826 | case EM2880_BOARD_HAUPPAUGE_WINTV_HVR_950: | 1737 | case EM2883_BOARD_HAUPPAUGE_WINTV_HVR_950: |
827 | { | 1738 | { |
828 | struct tveeprom tv; | 1739 | struct tveeprom tv; |
829 | #ifdef CONFIG_MODULES | 1740 | #ifdef CONFIG_MODULES |
@@ -836,7 +1747,7 @@ void em28xx_card_setup(struct em28xx *dev) | |||
836 | 1747 | ||
837 | dev->tuner_type = tv.tuner_type; | 1748 | dev->tuner_type = tv.tuner_type; |
838 | 1749 | ||
839 | if (tv.audio_processor == AUDIO_CHIP_MSP34XX) { | 1750 | if (tv.audio_processor == V4L2_IDENT_MSPX4XX) { |
840 | dev->i2s_speed = 2048000; | 1751 | dev->i2s_speed = 2048000; |
841 | dev->has_msp34xx = 1; | 1752 | dev->has_msp34xx = 1; |
842 | } | 1753 | } |
@@ -854,11 +1765,21 @@ void em28xx_card_setup(struct em28xx *dev) | |||
854 | case EM2800_BOARD_UNKNOWN: | 1765 | case EM2800_BOARD_UNKNOWN: |
855 | if (!em28xx_hint_board(dev)) | 1766 | if (!em28xx_hint_board(dev)) |
856 | em28xx_set_model(dev); | 1767 | em28xx_set_model(dev); |
1768 | break; | ||
857 | } | 1769 | } |
858 | 1770 | ||
859 | if (dev->has_snapshot_button) | 1771 | if (dev->has_snapshot_button) |
860 | em28xx_register_snapshot_button(dev); | 1772 | em28xx_register_snapshot_button(dev); |
861 | 1773 | ||
1774 | if (dev->valid == EM28XX_BOARD_NOT_VALIDATED) { | ||
1775 | em28xx_errdev("\n\n"); | ||
1776 | em28xx_errdev("The support for this board weren't " | ||
1777 | "valid yet.\n"); | ||
1778 | em28xx_errdev("Please send a report of having this working\n"); | ||
1779 | em28xx_errdev("not to V4L mailing list (and/or to other " | ||
1780 | "addresses)\n\n"); | ||
1781 | } | ||
1782 | |||
862 | /* Allow override tuner type by a module parameter */ | 1783 | /* Allow override tuner type by a module parameter */ |
863 | if (tuner >= 0) | 1784 | if (tuner >= 0) |
864 | dev->tuner_type = tuner; | 1785 | dev->tuner_type = tuner; |
diff --git a/drivers/media/video/em28xx/em28xx-dvb.c b/drivers/media/video/em28xx/em28xx-dvb.c index cc61cfb23a4a..4b992bc0083c 100644 --- a/drivers/media/video/em28xx/em28xx-dvb.c +++ b/drivers/media/video/em28xx/em28xx-dvb.c | |||
@@ -6,6 +6,7 @@ | |||
6 | (c) 2008 Devin Heitmueller <devin.heitmueller@gmail.com> | 6 | (c) 2008 Devin Heitmueller <devin.heitmueller@gmail.com> |
7 | - Fixes for the driver to properly work with HVR-950 | 7 | - Fixes for the driver to properly work with HVR-950 |
8 | - Fixes for the driver to properly work with Pinnacle PCTV HD Pro Stick | 8 | - Fixes for the driver to properly work with Pinnacle PCTV HD Pro Stick |
9 | - Fixes for the driver to properly work with AMD ATI TV Wonder HD 600 | ||
9 | 10 | ||
10 | (c) 2008 Aidan Thornton <makosoft@googlemail.com> | 11 | (c) 2008 Aidan Thornton <makosoft@googlemail.com> |
11 | 12 | ||
@@ -409,8 +410,9 @@ static int dvb_init(struct em28xx *dev) | |||
409 | em28xx_set_mode(dev, EM28XX_DIGITAL_MODE); | 410 | em28xx_set_mode(dev, EM28XX_DIGITAL_MODE); |
410 | /* init frontend */ | 411 | /* init frontend */ |
411 | switch (dev->model) { | 412 | switch (dev->model) { |
412 | case EM2880_BOARD_HAUPPAUGE_WINTV_HVR_950: | 413 | case EM2883_BOARD_HAUPPAUGE_WINTV_HVR_950: |
413 | case EM2880_BOARD_PINNACLE_PCTV_HD_PRO: | 414 | case EM2880_BOARD_PINNACLE_PCTV_HD_PRO: |
415 | case EM2880_BOARD_AMD_ATI_TV_WONDER_HD_600: | ||
414 | dvb->frontend = dvb_attach(lgdt330x_attach, | 416 | dvb->frontend = dvb_attach(lgdt330x_attach, |
415 | &em2880_lgdt3303_dev, | 417 | &em2880_lgdt3303_dev, |
416 | &dev->i2c_adap); | 418 | &dev->i2c_adap); |
@@ -441,6 +443,15 @@ static int dvb_init(struct em28xx *dev) | |||
441 | } | 443 | } |
442 | break; | 444 | break; |
443 | #endif | 445 | #endif |
446 | case EM2880_BOARD_TERRATEC_HYBRID_XS: | ||
447 | dvb->frontend = dvb_attach(zl10353_attach, | ||
448 | &em28xx_zl10353_with_xc3028, | ||
449 | &dev->i2c_adap); | ||
450 | if (attach_xc3028(0x61, dev) < 0) { | ||
451 | result = -EINVAL; | ||
452 | goto out_free; | ||
453 | } | ||
454 | break; | ||
444 | default: | 455 | default: |
445 | printk(KERN_ERR "%s/2: The frontend of your DVB/ATSC card" | 456 | printk(KERN_ERR "%s/2: The frontend of your DVB/ATSC card" |
446 | " isn't supported yet\n", | 457 | " isn't supported yet\n", |
diff --git a/drivers/media/video/em28xx/em28xx-video.c b/drivers/media/video/em28xx/em28xx-video.c index 2d9f14d2a00b..49ab0629702e 100644 --- a/drivers/media/video/em28xx/em28xx-video.c +++ b/drivers/media/video/em28xx/em28xx-video.c | |||
@@ -38,6 +38,7 @@ | |||
38 | 38 | ||
39 | #include "em28xx.h" | 39 | #include "em28xx.h" |
40 | #include <media/v4l2-common.h> | 40 | #include <media/v4l2-common.h> |
41 | #include <media/v4l2-ioctl.h> | ||
41 | #include <media/msp3400.h> | 42 | #include <media/msp3400.h> |
42 | #include <media/tuner.h> | 43 | #include <media/tuner.h> |
43 | 44 | ||
@@ -1763,20 +1764,7 @@ static const struct file_operations em28xx_v4l_fops = { | |||
1763 | .compat_ioctl = v4l_compat_ioctl32, | 1764 | .compat_ioctl = v4l_compat_ioctl32, |
1764 | }; | 1765 | }; |
1765 | 1766 | ||
1766 | static const struct file_operations radio_fops = { | 1767 | static const struct v4l2_ioctl_ops video_ioctl_ops = { |
1767 | .owner = THIS_MODULE, | ||
1768 | .open = em28xx_v4l2_open, | ||
1769 | .release = em28xx_v4l2_close, | ||
1770 | .ioctl = video_ioctl2, | ||
1771 | .compat_ioctl = v4l_compat_ioctl32, | ||
1772 | .llseek = no_llseek, | ||
1773 | }; | ||
1774 | |||
1775 | static const struct video_device em28xx_video_template = { | ||
1776 | .fops = &em28xx_v4l_fops, | ||
1777 | .release = video_device_release, | ||
1778 | |||
1779 | .minor = -1, | ||
1780 | .vidioc_querycap = vidioc_querycap, | 1768 | .vidioc_querycap = vidioc_querycap, |
1781 | .vidioc_enum_fmt_vid_cap = vidioc_enum_fmt_vid_cap, | 1769 | .vidioc_enum_fmt_vid_cap = vidioc_enum_fmt_vid_cap, |
1782 | .vidioc_g_fmt_vid_cap = vidioc_g_fmt_vid_cap, | 1770 | .vidioc_g_fmt_vid_cap = vidioc_g_fmt_vid_cap, |
@@ -1814,16 +1802,29 @@ static const struct video_device em28xx_video_template = { | |||
1814 | #ifdef CONFIG_VIDEO_V4L1_COMPAT | 1802 | #ifdef CONFIG_VIDEO_V4L1_COMPAT |
1815 | .vidiocgmbuf = vidiocgmbuf, | 1803 | .vidiocgmbuf = vidiocgmbuf, |
1816 | #endif | 1804 | #endif |
1805 | }; | ||
1806 | |||
1807 | static const struct video_device em28xx_video_template = { | ||
1808 | .fops = &em28xx_v4l_fops, | ||
1809 | .release = video_device_release, | ||
1810 | .ioctl_ops = &video_ioctl_ops, | ||
1811 | |||
1812 | .minor = -1, | ||
1817 | 1813 | ||
1818 | .tvnorms = V4L2_STD_ALL, | 1814 | .tvnorms = V4L2_STD_ALL, |
1819 | .current_norm = V4L2_STD_PAL, | 1815 | .current_norm = V4L2_STD_PAL, |
1820 | }; | 1816 | }; |
1821 | 1817 | ||
1822 | static struct video_device em28xx_radio_template = { | 1818 | static const struct file_operations radio_fops = { |
1823 | .name = "em28xx-radio", | 1819 | .owner = THIS_MODULE, |
1824 | .type = VID_TYPE_TUNER, | 1820 | .open = em28xx_v4l2_open, |
1825 | .fops = &radio_fops, | 1821 | .release = em28xx_v4l2_close, |
1826 | .minor = -1, | 1822 | .ioctl = video_ioctl2, |
1823 | .compat_ioctl = v4l_compat_ioctl32, | ||
1824 | .llseek = no_llseek, | ||
1825 | }; | ||
1826 | |||
1827 | static const struct v4l2_ioctl_ops radio_ioctl_ops = { | ||
1827 | .vidioc_querycap = radio_querycap, | 1828 | .vidioc_querycap = radio_querycap, |
1828 | .vidioc_g_tuner = radio_g_tuner, | 1829 | .vidioc_g_tuner = radio_g_tuner, |
1829 | .vidioc_enum_input = radio_enum_input, | 1830 | .vidioc_enum_input = radio_enum_input, |
@@ -1842,6 +1843,13 @@ static struct video_device em28xx_radio_template = { | |||
1842 | #endif | 1843 | #endif |
1843 | }; | 1844 | }; |
1844 | 1845 | ||
1846 | static struct video_device em28xx_radio_template = { | ||
1847 | .name = "em28xx-radio", | ||
1848 | .fops = &radio_fops, | ||
1849 | .ioctl_ops = &radio_ioctl_ops, | ||
1850 | .minor = -1, | ||
1851 | }; | ||
1852 | |||
1845 | /******************************** usb interface ******************************/ | 1853 | /******************************** usb interface ******************************/ |
1846 | 1854 | ||
1847 | 1855 | ||
@@ -1882,7 +1890,6 @@ EXPORT_SYMBOL(em28xx_unregister_extension); | |||
1882 | 1890 | ||
1883 | static struct video_device *em28xx_vdev_init(struct em28xx *dev, | 1891 | static struct video_device *em28xx_vdev_init(struct em28xx *dev, |
1884 | const struct video_device *template, | 1892 | const struct video_device *template, |
1885 | const int type, | ||
1886 | const char *type_name) | 1893 | const char *type_name) |
1887 | { | 1894 | { |
1888 | struct video_device *vfd; | 1895 | struct video_device *vfd; |
@@ -1892,9 +1899,8 @@ static struct video_device *em28xx_vdev_init(struct em28xx *dev, | |||
1892 | return NULL; | 1899 | return NULL; |
1893 | *vfd = *template; | 1900 | *vfd = *template; |
1894 | vfd->minor = -1; | 1901 | vfd->minor = -1; |
1895 | vfd->dev = &dev->udev->dev; | 1902 | vfd->parent = &dev->udev->dev; |
1896 | vfd->release = video_device_release; | 1903 | vfd->release = video_device_release; |
1897 | vfd->type = type; | ||
1898 | vfd->debug = video_debug; | 1904 | vfd->debug = video_debug; |
1899 | 1905 | ||
1900 | snprintf(vfd->name, sizeof(vfd->name), "%s %s", | 1906 | snprintf(vfd->name, sizeof(vfd->name), "%s %s", |
@@ -1972,14 +1978,11 @@ static int em28xx_init_dev(struct em28xx **devhandle, struct usb_device *udev, | |||
1972 | list_add_tail(&dev->devlist, &em28xx_devlist); | 1978 | list_add_tail(&dev->devlist, &em28xx_devlist); |
1973 | 1979 | ||
1974 | /* allocate and fill video video_device struct */ | 1980 | /* allocate and fill video video_device struct */ |
1975 | dev->vdev = em28xx_vdev_init(dev, &em28xx_video_template, | 1981 | dev->vdev = em28xx_vdev_init(dev, &em28xx_video_template, "video"); |
1976 | VID_TYPE_CAPTURE, "video"); | ||
1977 | if (NULL == dev->vdev) { | 1982 | if (NULL == dev->vdev) { |
1978 | em28xx_errdev("cannot allocate video_device.\n"); | 1983 | em28xx_errdev("cannot allocate video_device.\n"); |
1979 | goto fail_unreg; | 1984 | goto fail_unreg; |
1980 | } | 1985 | } |
1981 | if (dev->tuner_type != TUNER_ABSENT) | ||
1982 | dev->vdev->type |= VID_TYPE_TUNER; | ||
1983 | 1986 | ||
1984 | /* register v4l2 video video_device */ | 1987 | /* register v4l2 video video_device */ |
1985 | retval = video_register_device(dev->vdev, VFL_TYPE_GRABBER, | 1988 | retval = video_register_device(dev->vdev, VFL_TYPE_GRABBER, |
@@ -1991,8 +1994,7 @@ static int em28xx_init_dev(struct em28xx **devhandle, struct usb_device *udev, | |||
1991 | } | 1994 | } |
1992 | 1995 | ||
1993 | /* Allocate and fill vbi video_device struct */ | 1996 | /* Allocate and fill vbi video_device struct */ |
1994 | dev->vbi_dev = em28xx_vdev_init(dev, &em28xx_video_template, | 1997 | dev->vbi_dev = em28xx_vdev_init(dev, &em28xx_video_template, "vbi"); |
1995 | VFL_TYPE_VBI, "vbi"); | ||
1996 | /* register v4l2 vbi video_device */ | 1998 | /* register v4l2 vbi video_device */ |
1997 | if (video_register_device(dev->vbi_dev, VFL_TYPE_VBI, | 1999 | if (video_register_device(dev->vbi_dev, VFL_TYPE_VBI, |
1998 | vbi_nr[dev->devno]) < 0) { | 2000 | vbi_nr[dev->devno]) < 0) { |
@@ -2002,8 +2004,7 @@ static int em28xx_init_dev(struct em28xx **devhandle, struct usb_device *udev, | |||
2002 | } | 2004 | } |
2003 | 2005 | ||
2004 | if (em28xx_boards[dev->model].radio.type == EM28XX_RADIO) { | 2006 | if (em28xx_boards[dev->model].radio.type == EM28XX_RADIO) { |
2005 | dev->radio_dev = em28xx_vdev_init(dev, &em28xx_radio_template, | 2007 | dev->radio_dev = em28xx_vdev_init(dev, &em28xx_radio_template, "radio"); |
2006 | VFL_TYPE_RADIO, "radio"); | ||
2007 | if (NULL == dev->radio_dev) { | 2008 | if (NULL == dev->radio_dev) { |
2008 | em28xx_errdev("cannot allocate video_device.\n"); | 2009 | em28xx_errdev("cannot allocate video_device.\n"); |
2009 | goto fail_unreg; | 2010 | goto fail_unreg; |
diff --git a/drivers/media/video/em28xx/em28xx.h b/drivers/media/video/em28xx/em28xx.h index 89842c5d64a1..9a3310748685 100644 --- a/drivers/media/video/em28xx/em28xx.h +++ b/drivers/media/video/em28xx/em28xx.h | |||
@@ -54,15 +54,58 @@ | |||
54 | #define EM2880_BOARD_TERRATEC_PRODIGY_XS 13 | 54 | #define EM2880_BOARD_TERRATEC_PRODIGY_XS 13 |
55 | #define EM2820_BOARD_PROLINK_PLAYTV_USB2 14 | 55 | #define EM2820_BOARD_PROLINK_PLAYTV_USB2 14 |
56 | #define EM2800_BOARD_VGEAR_POCKETTV 15 | 56 | #define EM2800_BOARD_VGEAR_POCKETTV 15 |
57 | #define EM2880_BOARD_HAUPPAUGE_WINTV_HVR_950 16 | 57 | #define EM2883_BOARD_HAUPPAUGE_WINTV_HVR_950 16 |
58 | #define EM2880_BOARD_PINNACLE_PCTV_HD_PRO 17 | 58 | #define EM2880_BOARD_PINNACLE_PCTV_HD_PRO 17 |
59 | #define EM2880_BOARD_HAUPPAUGE_WINTV_HVR_900_R2 18 | 59 | #define EM2880_BOARD_HAUPPAUGE_WINTV_HVR_900_R2 18 |
60 | #define EM2860_BOARD_POINTNIX_INTRAORAL_CAMERA 19 | 60 | #define EM2860_BOARD_POINTNIX_INTRAORAL_CAMERA 19 |
61 | #define EM2880_BOARD_AMD_ATI_TV_WONDER_HD_600 20 | ||
62 | #define EM2800_BOARD_GRABBEEX_USB2800 21 | ||
63 | #define EM2750_BOARD_UNKNOWN 22 | ||
64 | #define EM2750_BOARD_DLCW_130 23 | ||
65 | #define EM2820_BOARD_DLINK_USB_TV 24 | ||
66 | #define EM2820_BOARD_GADMEI_UTV310 25 | ||
67 | #define EM2820_BOARD_HERCULES_SMART_TV_USB2 26 | ||
68 | #define EM2820_BOARD_PINNACLE_USB_2_FM1216ME 27 | ||
69 | #define EM2820_BOARD_LEADTEK_WINFAST_USBII_DELUXE 28 | ||
70 | #define EM2820_BOARD_PINNACLE_DVC_100 29 | ||
71 | #define EM2820_BOARD_VIDEOLOGY_20K14XUSB 30 | ||
72 | #define EM2821_BOARD_USBGEAR_VD204 31 | ||
73 | #define EM2821_BOARD_SUPERCOMP_USB_2 32 | ||
74 | #define EM2821_BOARD_PROLINK_PLAYTV_USB2 33 | ||
75 | #define EM2860_BOARD_TERRATEC_HYBRID_XS 34 | ||
76 | #define EM2860_BOARD_TYPHOON_DVD_MAKER 35 | ||
77 | #define EM2860_BOARD_NETGMBH_CAM 36 | ||
78 | #define EM2860_BOARD_GADMEI_UTV330 37 | ||
79 | #define EM2861_BOARD_YAKUMO_MOVIE_MIXER 38 | ||
80 | #define EM2861_BOARD_KWORLD_PVRTV_300U 39 | ||
81 | #define EM2861_BOARD_PLEXTOR_PX_TV100U 40 | ||
82 | #define EM2870_BOARD_KWORLD_350U 41 | ||
83 | #define EM2870_BOARD_KWORLD_355U 42 | ||
84 | #define EM2870_BOARD_TERRATEC_XS 43 | ||
85 | #define EM2870_BOARD_TERRATEC_XS_MT2060 44 | ||
86 | #define EM2870_BOARD_PINNACLE_PCTV_DVB 45 | ||
87 | #define EM2870_BOARD_COMPRO_VIDEOMATE 46 | ||
88 | #define EM2880_BOARD_KWORLD_DVB_305U 47 | ||
89 | #define EM2880_BOARD_KWORLD_DVB_310U 48 | ||
90 | #define EM2880_BOARD_MSI_DIGIVOX_AD 49 | ||
91 | #define EM2880_BOARD_MSI_DIGIVOX_AD_II 50 | ||
92 | #define EM2880_BOARD_TERRATEC_HYBRID_XS_FR 51 | ||
93 | #define EM2881_BOARD_DNT_DA2_HYBRID 52 | ||
94 | #define EM2881_BOARD_PINNACLE_HYBRID_PRO 53 | ||
95 | #define EM2882_BOARD_KWORLD_VS_DVBT 54 | ||
96 | #define EM2882_BOARD_TERRATEC_HYBRID_XS 55 | ||
97 | #define EM2882_BOARD_PINNACLE_HYBRID_PRO 56 | ||
98 | #define EM2883_BOARD_KWORLD_HYBRID_A316 57 | ||
99 | #define EM2820_BOARD_COMPRO_VIDEOMATE_FORYOU 58 | ||
61 | 100 | ||
62 | /* Limits minimum and default number of buffers */ | 101 | /* Limits minimum and default number of buffers */ |
63 | #define EM28XX_MIN_BUF 4 | 102 | #define EM28XX_MIN_BUF 4 |
64 | #define EM28XX_DEF_BUF 8 | 103 | #define EM28XX_DEF_BUF 8 |
65 | 104 | ||
105 | /* Params for validated field */ | ||
106 | #define EM28XX_BOARD_NOT_VALIDATED 1 | ||
107 | #define EM28XX_BOARD_VALIDATED 0 | ||
108 | |||
66 | /* maximum number of em28xx boards */ | 109 | /* maximum number of em28xx boards */ |
67 | #define EM28XX_MAXBOARDS 4 /*FIXME: should be bigger */ | 110 | #define EM28XX_MAXBOARDS 4 /*FIXME: should be bigger */ |
68 | 111 | ||
@@ -251,6 +294,7 @@ struct em28xx_board { | |||
251 | unsigned int max_range_640_480:1; | 294 | unsigned int max_range_640_480:1; |
252 | unsigned int has_dvb:1; | 295 | unsigned int has_dvb:1; |
253 | unsigned int has_snapshot_button:1; | 296 | unsigned int has_snapshot_button:1; |
297 | unsigned int valid:1; | ||
254 | 298 | ||
255 | enum em28xx_decoder decoder; | 299 | enum em28xx_decoder decoder; |
256 | 300 | ||
@@ -331,6 +375,7 @@ struct em28xx { | |||
331 | unsigned int max_range_640_480:1; | 375 | unsigned int max_range_640_480:1; |
332 | unsigned int has_dvb:1; | 376 | unsigned int has_dvb:1; |
333 | unsigned int has_snapshot_button:1; | 377 | unsigned int has_snapshot_button:1; |
378 | unsigned int valid:1; /* report for validated boards */ | ||
334 | 379 | ||
335 | /* Some older em28xx chips needs a waiting time after writing */ | 380 | /* Some older em28xx chips needs a waiting time after writing */ |
336 | unsigned int wait_after_write; | 381 | unsigned int wait_after_write; |
@@ -360,7 +405,7 @@ struct em28xx { | |||
360 | v4l2_std_id norm; /* selected tv norm */ | 405 | v4l2_std_id norm; /* selected tv norm */ |
361 | int ctl_freq; /* selected frequency */ | 406 | int ctl_freq; /* selected frequency */ |
362 | unsigned int ctl_input; /* selected input */ | 407 | unsigned int ctl_input; /* selected input */ |
363 | unsigned int ctl_ainput; /* slected audio input */ | 408 | unsigned int ctl_ainput;/* selected audio input */ |
364 | int mute; | 409 | int mute; |
365 | int volume; | 410 | int volume; |
366 | /* frame properties */ | 411 | /* frame properties */ |
diff --git a/drivers/media/video/et61x251/et61x251_core.c b/drivers/media/video/et61x251/et61x251_core.c index 15d037ae25c5..2d170d101c21 100644 --- a/drivers/media/video/et61x251/et61x251_core.c +++ b/drivers/media/video/et61x251/et61x251_core.c | |||
@@ -34,6 +34,7 @@ | |||
34 | #include <linux/mm.h> | 34 | #include <linux/mm.h> |
35 | #include <linux/vmalloc.h> | 35 | #include <linux/vmalloc.h> |
36 | #include <linux/page-flags.h> | 36 | #include <linux/page-flags.h> |
37 | #include <media/v4l2-ioctl.h> | ||
37 | #include <asm/byteorder.h> | 38 | #include <asm/byteorder.h> |
38 | #include <asm/page.h> | 39 | #include <asm/page.h> |
39 | #include <asm/uaccess.h> | 40 | #include <asm/uaccess.h> |
@@ -985,7 +986,7 @@ static DEVICE_ATTR(i2c_val, S_IRUGO | S_IWUSR, | |||
985 | 986 | ||
986 | static int et61x251_create_sysfs(struct et61x251_device* cam) | 987 | static int et61x251_create_sysfs(struct et61x251_device* cam) |
987 | { | 988 | { |
988 | struct device *classdev = &(cam->v4ldev->class_dev); | 989 | struct device *classdev = &(cam->v4ldev->dev); |
989 | int err = 0; | 990 | int err = 0; |
990 | 991 | ||
991 | if ((err = device_create_file(classdev, &dev_attr_reg))) | 992 | if ((err = device_create_file(classdev, &dev_attr_reg))) |
@@ -2584,8 +2585,6 @@ et61x251_usb_probe(struct usb_interface* intf, const struct usb_device_id* id) | |||
2584 | } | 2585 | } |
2585 | 2586 | ||
2586 | strcpy(cam->v4ldev->name, "ET61X[12]51 PC Camera"); | 2587 | strcpy(cam->v4ldev->name, "ET61X[12]51 PC Camera"); |
2587 | cam->v4ldev->owner = THIS_MODULE; | ||
2588 | cam->v4ldev->type = VID_TYPE_CAPTURE | VID_TYPE_SCALES; | ||
2589 | cam->v4ldev->fops = &et61x251_fops; | 2588 | cam->v4ldev->fops = &et61x251_fops; |
2590 | cam->v4ldev->minor = video_nr[dev_nr]; | 2589 | cam->v4ldev->minor = video_nr[dev_nr]; |
2591 | cam->v4ldev->release = video_device_release; | 2590 | cam->v4ldev->release = video_device_release; |
diff --git a/drivers/media/video/gspca/conex.c b/drivers/media/video/gspca/conex.c index 013d593b0c67..44b0bffeb20e 100644 --- a/drivers/media/video/gspca/conex.c +++ b/drivers/media/video/gspca/conex.c | |||
@@ -25,9 +25,6 @@ | |||
25 | #define CONEX_CAM 1 /* special JPEG header */ | 25 | #define CONEX_CAM 1 /* special JPEG header */ |
26 | #include "jpeg.h" | 26 | #include "jpeg.h" |
27 | 27 | ||
28 | #define DRIVER_VERSION_NUMBER KERNEL_VERSION(2, 1, 7) | ||
29 | static const char version[] = "2.1.7"; | ||
30 | |||
31 | MODULE_AUTHOR("Michel Xhaard <mxhaard@users.sourceforge.net>"); | 28 | MODULE_AUTHOR("Michel Xhaard <mxhaard@users.sourceforge.net>"); |
32 | MODULE_DESCRIPTION("GSPCA USB Conexant Camera Driver"); | 29 | MODULE_DESCRIPTION("GSPCA USB Conexant Camera Driver"); |
33 | MODULE_LICENSE("GPL"); | 30 | MODULE_LICENSE("GPL"); |
@@ -818,7 +815,6 @@ static int sd_config(struct gspca_dev *gspca_dev, | |||
818 | struct cam *cam; | 815 | struct cam *cam; |
819 | 816 | ||
820 | cam = &gspca_dev->cam; | 817 | cam = &gspca_dev->cam; |
821 | cam->dev_name = (char *) id->driver_info; | ||
822 | cam->epaddr = 0x01; | 818 | cam->epaddr = 0x01; |
823 | cam->cam_mode = vga_mode; | 819 | cam->cam_mode = vga_mode; |
824 | cam->nmodes = sizeof vga_mode / sizeof vga_mode[0]; | 820 | cam->nmodes = sizeof vga_mode / sizeof vga_mode[0]; |
@@ -1011,9 +1007,8 @@ static struct sd_desc sd_desc = { | |||
1011 | }; | 1007 | }; |
1012 | 1008 | ||
1013 | /* -- module initialisation -- */ | 1009 | /* -- module initialisation -- */ |
1014 | #define DVNM(name) .driver_info = (kernel_ulong_t) name | ||
1015 | static __devinitdata struct usb_device_id device_table[] = { | 1010 | static __devinitdata struct usb_device_id device_table[] = { |
1016 | {USB_DEVICE(0x0572, 0x0041), DVNM("Creative Notebook cx11646")}, | 1011 | {USB_DEVICE(0x0572, 0x0041)}, |
1017 | {} | 1012 | {} |
1018 | }; | 1013 | }; |
1019 | MODULE_DEVICE_TABLE(usb, device_table); | 1014 | MODULE_DEVICE_TABLE(usb, device_table); |
@@ -1038,7 +1033,7 @@ static int __init sd_mod_init(void) | |||
1038 | { | 1033 | { |
1039 | if (usb_register(&sd_driver) < 0) | 1034 | if (usb_register(&sd_driver) < 0) |
1040 | return -1; | 1035 | return -1; |
1041 | PDEBUG(D_PROBE, "v%s registered", version); | 1036 | PDEBUG(D_PROBE, "registered"); |
1042 | return 0; | 1037 | return 0; |
1043 | } | 1038 | } |
1044 | static void __exit sd_mod_exit(void) | 1039 | static void __exit sd_mod_exit(void) |
diff --git a/drivers/media/video/gspca/etoms.c b/drivers/media/video/gspca/etoms.c index 8ab4ea7201a9..c8c2f02fcf00 100644 --- a/drivers/media/video/gspca/etoms.c +++ b/drivers/media/video/gspca/etoms.c | |||
@@ -22,9 +22,6 @@ | |||
22 | 22 | ||
23 | #include "gspca.h" | 23 | #include "gspca.h" |
24 | 24 | ||
25 | #define DRIVER_VERSION_NUMBER KERNEL_VERSION(2, 1, 7) | ||
26 | static const char version[] = "2.1.7"; | ||
27 | |||
28 | MODULE_AUTHOR("Michel Xhaard <mxhaard@users.sourceforge.net>"); | 25 | MODULE_AUTHOR("Michel Xhaard <mxhaard@users.sourceforge.net>"); |
29 | MODULE_DESCRIPTION("Etoms USB Camera Driver"); | 26 | MODULE_DESCRIPTION("Etoms USB Camera Driver"); |
30 | MODULE_LICENSE("GPL"); | 27 | MODULE_LICENSE("GPL"); |
@@ -602,26 +599,10 @@ static int sd_config(struct gspca_dev *gspca_dev, | |||
602 | { | 599 | { |
603 | struct sd *sd = (struct sd *) gspca_dev; | 600 | struct sd *sd = (struct sd *) gspca_dev; |
604 | struct cam *cam; | 601 | struct cam *cam; |
605 | __u16 vendor; | 602 | |
606 | __u16 product; | ||
607 | |||
608 | vendor = id->idVendor; | ||
609 | product = id->idProduct; | ||
610 | /* switch (vendor) { */ | ||
611 | /* case 0x102c: * Etoms */ | ||
612 | switch (product) { | ||
613 | case 0x6151: | ||
614 | sd->sensor = SENSOR_PAS106; /* Etoms61x151 */ | ||
615 | break; | ||
616 | case 0x6251: | ||
617 | sd->sensor = SENSOR_TAS5130CXX; /* Etoms61x251 */ | ||
618 | break; | ||
619 | /* } */ | ||
620 | /* break; */ | ||
621 | } | ||
622 | cam = &gspca_dev->cam; | 603 | cam = &gspca_dev->cam; |
623 | cam->dev_name = (char *) id->driver_info; | ||
624 | cam->epaddr = 1; | 604 | cam->epaddr = 1; |
605 | sd->sensor = id->driver_info; | ||
625 | if (sd->sensor == SENSOR_PAS106) { | 606 | if (sd->sensor == SENSOR_PAS106) { |
626 | cam->cam_mode = sif_mode; | 607 | cam->cam_mode = sif_mode; |
627 | cam->nmodes = sizeof sif_mode / sizeof sif_mode[0]; | 608 | cam->nmodes = sizeof sif_mode / sizeof sif_mode[0]; |
@@ -911,12 +892,11 @@ static struct sd_desc sd_desc = { | |||
911 | }; | 892 | }; |
912 | 893 | ||
913 | /* -- module initialisation -- */ | 894 | /* -- module initialisation -- */ |
914 | #define DVNM(name) .driver_info = (kernel_ulong_t) name | ||
915 | static __devinitdata struct usb_device_id device_table[] = { | 895 | static __devinitdata struct usb_device_id device_table[] = { |
916 | #ifndef CONFIG_USB_ET61X251 | 896 | #ifndef CONFIG_USB_ET61X251 |
917 | {USB_DEVICE(0x102c, 0x6151), DVNM("Qcam Sangha CIF")}, | 897 | {USB_DEVICE(0x102c, 0x6151), .driver_info = SENSOR_PAS106}, |
918 | #endif | 898 | #endif |
919 | {USB_DEVICE(0x102c, 0x6251), DVNM("Qcam xxxxxx VGA")}, | 899 | {USB_DEVICE(0x102c, 0x6251), .driver_info = SENSOR_TAS5130CXX}, |
920 | {} | 900 | {} |
921 | }; | 901 | }; |
922 | 902 | ||
@@ -942,7 +922,7 @@ static int __init sd_mod_init(void) | |||
942 | { | 922 | { |
943 | if (usb_register(&sd_driver) < 0) | 923 | if (usb_register(&sd_driver) < 0) |
944 | return -1; | 924 | return -1; |
945 | PDEBUG(D_PROBE, "v%s registered", version); | 925 | PDEBUG(D_PROBE, "registered"); |
946 | return 0; | 926 | return 0; |
947 | } | 927 | } |
948 | 928 | ||
diff --git a/drivers/media/video/gspca/gspca.c b/drivers/media/video/gspca/gspca.c index 16e367cec760..3a051c925ff6 100644 --- a/drivers/media/video/gspca/gspca.c +++ b/drivers/media/video/gspca/gspca.c | |||
@@ -32,6 +32,7 @@ | |||
32 | #include <asm/page.h> | 32 | #include <asm/page.h> |
33 | #include <linux/uaccess.h> | 33 | #include <linux/uaccess.h> |
34 | #include <linux/jiffies.h> | 34 | #include <linux/jiffies.h> |
35 | #include <media/v4l2-ioctl.h> | ||
35 | 36 | ||
36 | #include "gspca.h" | 37 | #include "gspca.h" |
37 | 38 | ||
@@ -42,8 +43,7 @@ MODULE_AUTHOR("Jean-Francois Moine <http://moinejf.free.fr>"); | |||
42 | MODULE_DESCRIPTION("GSPCA USB Camera Driver"); | 43 | MODULE_DESCRIPTION("GSPCA USB Camera Driver"); |
43 | MODULE_LICENSE("GPL"); | 44 | MODULE_LICENSE("GPL"); |
44 | 45 | ||
45 | #define DRIVER_VERSION_NUMBER KERNEL_VERSION(2, 1, 7) | 46 | #define DRIVER_VERSION_NUMBER KERNEL_VERSION(2, 2, 0) |
46 | static const char version[] = "2.1.7"; | ||
47 | 47 | ||
48 | static int video_nr = -1; | 48 | static int video_nr = -1; |
49 | 49 | ||
@@ -209,6 +209,8 @@ struct gspca_frame *gspca_frame_add(struct gspca_dev *gspca_dev, | |||
209 | &frame->v4l2_buf.timestamp); | 209 | &frame->v4l2_buf.timestamp); |
210 | frame->v4l2_buf.sequence = ++gspca_dev->sequence; | 210 | frame->v4l2_buf.sequence = ++gspca_dev->sequence; |
211 | } else if (gspca_dev->last_packet_type == DISCARD_PACKET) { | 211 | } else if (gspca_dev->last_packet_type == DISCARD_PACKET) { |
212 | if (packet_type == LAST_PACKET) | ||
213 | gspca_dev->last_packet_type = packet_type; | ||
212 | return frame; | 214 | return frame; |
213 | } | 215 | } |
214 | 216 | ||
@@ -399,7 +401,7 @@ static struct usb_host_endpoint *alt_isoc(struct usb_host_interface *alt, | |||
399 | * This routine may be called many times when the bandwidth is too small | 401 | * This routine may be called many times when the bandwidth is too small |
400 | * (the bandwidth is checked on urb submit). | 402 | * (the bandwidth is checked on urb submit). |
401 | */ | 403 | */ |
402 | struct usb_host_endpoint *get_isoc_ep(struct gspca_dev *gspca_dev) | 404 | static struct usb_host_endpoint *get_isoc_ep(struct gspca_dev *gspca_dev) |
403 | { | 405 | { |
404 | struct usb_interface *intf; | 406 | struct usb_interface *intf; |
405 | struct usb_host_endpoint *ep; | 407 | struct usb_host_endpoint *ep; |
@@ -832,7 +834,16 @@ static int vidioc_querycap(struct file *file, void *priv, | |||
832 | 834 | ||
833 | memset(cap, 0, sizeof *cap); | 835 | memset(cap, 0, sizeof *cap); |
834 | strncpy(cap->driver, gspca_dev->sd_desc->name, sizeof cap->driver); | 836 | strncpy(cap->driver, gspca_dev->sd_desc->name, sizeof cap->driver); |
835 | strncpy(cap->card, gspca_dev->cam.dev_name, sizeof cap->card); | 837 | /* strncpy(cap->card, gspca_dev->cam.dev_name, sizeof cap->card); */ |
838 | if (gspca_dev->dev->product != NULL) { | ||
839 | strncpy(cap->card, gspca_dev->dev->product, | ||
840 | sizeof cap->card); | ||
841 | } else { | ||
842 | snprintf(cap->card, sizeof cap->card, | ||
843 | "USB Camera (%04x:%04x)", | ||
844 | le16_to_cpu(gspca_dev->dev->descriptor.idVendor), | ||
845 | le16_to_cpu(gspca_dev->dev->descriptor.idProduct)); | ||
846 | } | ||
836 | strncpy(cap->bus_info, gspca_dev->dev->bus->bus_name, | 847 | strncpy(cap->bus_info, gspca_dev->dev->bus->bus_name, |
837 | sizeof cap->bus_info); | 848 | sizeof cap->bus_info); |
838 | cap->version = DRIVER_VERSION_NUMBER; | 849 | cap->version = DRIVER_VERSION_NUMBER; |
@@ -1649,12 +1660,7 @@ static struct file_operations dev_fops = { | |||
1649 | .poll = dev_poll, | 1660 | .poll = dev_poll, |
1650 | }; | 1661 | }; |
1651 | 1662 | ||
1652 | static struct video_device gspca_template = { | 1663 | static const struct v4l2_ioctl_ops dev_ioctl_ops = { |
1653 | .name = "gspca main driver", | ||
1654 | .type = VID_TYPE_CAPTURE, | ||
1655 | .fops = &dev_fops, | ||
1656 | .release = dev_release, /* mandatory */ | ||
1657 | .minor = -1, | ||
1658 | .vidioc_querycap = vidioc_querycap, | 1664 | .vidioc_querycap = vidioc_querycap, |
1659 | .vidioc_dqbuf = vidioc_dqbuf, | 1665 | .vidioc_dqbuf = vidioc_dqbuf, |
1660 | .vidioc_qbuf = vidioc_qbuf, | 1666 | .vidioc_qbuf = vidioc_qbuf, |
@@ -1683,6 +1689,14 @@ static struct video_device gspca_template = { | |||
1683 | #endif | 1689 | #endif |
1684 | }; | 1690 | }; |
1685 | 1691 | ||
1692 | static struct video_device gspca_template = { | ||
1693 | .name = "gspca main driver", | ||
1694 | .fops = &dev_fops, | ||
1695 | .ioctl_ops = &dev_ioctl_ops, | ||
1696 | .release = dev_release, /* mandatory */ | ||
1697 | .minor = -1, | ||
1698 | }; | ||
1699 | |||
1686 | /* | 1700 | /* |
1687 | * probe and create a new gspca device | 1701 | * probe and create a new gspca device |
1688 | * | 1702 | * |
@@ -1740,10 +1754,11 @@ int gspca_dev_probe(struct usb_interface *intf, | |||
1740 | 1754 | ||
1741 | /* init video stuff */ | 1755 | /* init video stuff */ |
1742 | memcpy(&gspca_dev->vdev, &gspca_template, sizeof gspca_template); | 1756 | memcpy(&gspca_dev->vdev, &gspca_template, sizeof gspca_template); |
1743 | gspca_dev->vdev.dev = &dev->dev; | 1757 | gspca_dev->vdev.parent = &dev->dev; |
1744 | memcpy(&gspca_dev->fops, &dev_fops, sizeof gspca_dev->fops); | 1758 | memcpy(&gspca_dev->fops, &dev_fops, sizeof gspca_dev->fops); |
1745 | gspca_dev->vdev.fops = &gspca_dev->fops; | 1759 | gspca_dev->vdev.fops = &gspca_dev->fops; |
1746 | gspca_dev->fops.owner = module; /* module protection */ | 1760 | gspca_dev->fops.owner = module; /* module protection */ |
1761 | gspca_dev->present = 1; | ||
1747 | ret = video_register_device(&gspca_dev->vdev, | 1762 | ret = video_register_device(&gspca_dev->vdev, |
1748 | VFL_TYPE_GRABBER, | 1763 | VFL_TYPE_GRABBER, |
1749 | video_nr); | 1764 | video_nr); |
@@ -1752,7 +1767,6 @@ int gspca_dev_probe(struct usb_interface *intf, | |||
1752 | goto out; | 1767 | goto out; |
1753 | } | 1768 | } |
1754 | 1769 | ||
1755 | gspca_dev->present = 1; | ||
1756 | usb_set_intfdata(intf, gspca_dev); | 1770 | usb_set_intfdata(intf, gspca_dev); |
1757 | PDEBUG(D_PROBE, "probe ok"); | 1771 | PDEBUG(D_PROBE, "probe ok"); |
1758 | return 0; | 1772 | return 0; |
@@ -1885,7 +1899,10 @@ EXPORT_SYMBOL(gspca_auto_gain_n_exposure); | |||
1885 | /* -- module insert / remove -- */ | 1899 | /* -- module insert / remove -- */ |
1886 | static int __init gspca_init(void) | 1900 | static int __init gspca_init(void) |
1887 | { | 1901 | { |
1888 | info("main v%s registered", version); | 1902 | info("main v%d.%d.%d registered", |
1903 | (DRIVER_VERSION_NUMBER >> 16) & 0xff, | ||
1904 | (DRIVER_VERSION_NUMBER >> 8) & 0xff, | ||
1905 | DRIVER_VERSION_NUMBER & 0xff); | ||
1889 | return 0; | 1906 | return 0; |
1890 | } | 1907 | } |
1891 | static void __exit gspca_exit(void) | 1908 | static void __exit gspca_exit(void) |
diff --git a/drivers/media/video/gspca/mars.c b/drivers/media/video/gspca/mars.c index 88c2b02f380a..21c4ee56a10a 100644 --- a/drivers/media/video/gspca/mars.c +++ b/drivers/media/video/gspca/mars.c | |||
@@ -24,9 +24,6 @@ | |||
24 | #include "gspca.h" | 24 | #include "gspca.h" |
25 | #include "jpeg.h" | 25 | #include "jpeg.h" |
26 | 26 | ||
27 | #define DRIVER_VERSION_NUMBER KERNEL_VERSION(2, 1, 7) | ||
28 | static const char version[] = "2.1.7"; | ||
29 | |||
30 | MODULE_AUTHOR("Michel Xhaard <mxhaard@users.sourceforge.net>"); | 27 | MODULE_AUTHOR("Michel Xhaard <mxhaard@users.sourceforge.net>"); |
31 | MODULE_DESCRIPTION("GSPCA/Mars USB Camera Driver"); | 28 | MODULE_DESCRIPTION("GSPCA/Mars USB Camera Driver"); |
32 | MODULE_LICENSE("GPL"); | 29 | MODULE_LICENSE("GPL"); |
@@ -140,7 +137,6 @@ static int sd_config(struct gspca_dev *gspca_dev, | |||
140 | struct cam *cam; | 137 | struct cam *cam; |
141 | 138 | ||
142 | cam = &gspca_dev->cam; | 139 | cam = &gspca_dev->cam; |
143 | cam->dev_name = (char *) id->driver_info; | ||
144 | cam->epaddr = 0x01; | 140 | cam->epaddr = 0x01; |
145 | cam->cam_mode = vga_mode; | 141 | cam->cam_mode = vga_mode; |
146 | cam->nmodes = sizeof vga_mode / sizeof vga_mode[0]; | 142 | cam->nmodes = sizeof vga_mode / sizeof vga_mode[0]; |
@@ -424,9 +420,8 @@ static const struct sd_desc sd_desc = { | |||
424 | }; | 420 | }; |
425 | 421 | ||
426 | /* -- module initialisation -- */ | 422 | /* -- module initialisation -- */ |
427 | #define DVNM(name) .driver_info = (kernel_ulong_t) name | ||
428 | static const __devinitdata struct usb_device_id device_table[] = { | 423 | static const __devinitdata struct usb_device_id device_table[] = { |
429 | {USB_DEVICE(0x093a, 0x050f), DVNM("Mars-Semi Pc-Camera")}, | 424 | {USB_DEVICE(0x093a, 0x050f)}, |
430 | {} | 425 | {} |
431 | }; | 426 | }; |
432 | MODULE_DEVICE_TABLE(usb, device_table); | 427 | MODULE_DEVICE_TABLE(usb, device_table); |
@@ -451,7 +446,7 @@ static int __init sd_mod_init(void) | |||
451 | { | 446 | { |
452 | if (usb_register(&sd_driver) < 0) | 447 | if (usb_register(&sd_driver) < 0) |
453 | return -1; | 448 | return -1; |
454 | PDEBUG(D_PROBE, "v%s registered", version); | 449 | PDEBUG(D_PROBE, "registered"); |
455 | return 0; | 450 | return 0; |
456 | } | 451 | } |
457 | static void __exit sd_mod_exit(void) | 452 | static void __exit sd_mod_exit(void) |
diff --git a/drivers/media/video/gspca/ov519.c b/drivers/media/video/gspca/ov519.c index 08d99c3b78e2..83139efc4629 100644 --- a/drivers/media/video/gspca/ov519.c +++ b/drivers/media/video/gspca/ov519.c | |||
@@ -24,9 +24,6 @@ | |||
24 | 24 | ||
25 | #include "gspca.h" | 25 | #include "gspca.h" |
26 | 26 | ||
27 | #define DRIVER_VERSION_NUMBER KERNEL_VERSION(2, 1, 7) | ||
28 | static const char version[] = "2.1.7"; | ||
29 | |||
30 | MODULE_AUTHOR("Jean-Francois Moine <http://moinejf.free.fr>"); | 27 | MODULE_AUTHOR("Jean-Francois Moine <http://moinejf.free.fr>"); |
31 | MODULE_DESCRIPTION("OV519 USB Camera Driver"); | 28 | MODULE_DESCRIPTION("OV519 USB Camera Driver"); |
32 | MODULE_LICENSE("GPL"); | 29 | MODULE_LICENSE("GPL"); |
@@ -1375,7 +1372,6 @@ static int sd_config(struct gspca_dev *gspca_dev, | |||
1375 | cam->cam_mode = sif_mode; | 1372 | cam->cam_mode = sif_mode; |
1376 | cam->nmodes = sizeof sif_mode / sizeof sif_mode[0]; | 1373 | cam->nmodes = sizeof sif_mode / sizeof sif_mode[0]; |
1377 | } | 1374 | } |
1378 | cam->dev_name = (char *) id->driver_info; | ||
1379 | sd->brightness = sd_ctrls[SD_BRIGHTNESS].qctrl.default_value; | 1375 | sd->brightness = sd_ctrls[SD_BRIGHTNESS].qctrl.default_value; |
1380 | sd->contrast = sd_ctrls[SD_CONTRAST].qctrl.default_value; | 1376 | sd->contrast = sd_ctrls[SD_CONTRAST].qctrl.default_value; |
1381 | sd->colors = sd_ctrls[SD_COLOR].qctrl.default_value; | 1377 | sd->colors = sd_ctrls[SD_COLOR].qctrl.default_value; |
@@ -2129,21 +2125,20 @@ static const struct sd_desc sd_desc = { | |||
2129 | }; | 2125 | }; |
2130 | 2126 | ||
2131 | /* -- module initialisation -- */ | 2127 | /* -- module initialisation -- */ |
2132 | #define DVNM(name) .driver_info = (kernel_ulong_t) name | ||
2133 | static const __devinitdata struct usb_device_id device_table[] = { | 2128 | static const __devinitdata struct usb_device_id device_table[] = { |
2134 | {USB_DEVICE(0x041e, 0x4052), DVNM("Creative Live! VISTA IM")}, | 2129 | {USB_DEVICE(0x041e, 0x4052)}, |
2135 | {USB_DEVICE(0x041e, 0x405f), DVNM("Creative Live! VISTA VF0330")}, | 2130 | {USB_DEVICE(0x041e, 0x405f)}, |
2136 | {USB_DEVICE(0x041e, 0x4060), DVNM("Creative Live! VISTA VF0350")}, | 2131 | {USB_DEVICE(0x041e, 0x4060)}, |
2137 | {USB_DEVICE(0x041e, 0x4061), DVNM("Creative Live! VISTA VF0400")}, | 2132 | {USB_DEVICE(0x041e, 0x4061)}, |
2138 | {USB_DEVICE(0x041e, 0x4064), DVNM("Creative Live! VISTA VF0420")}, | 2133 | {USB_DEVICE(0x041e, 0x4064)}, |
2139 | {USB_DEVICE(0x041e, 0x4068), DVNM("Creative Live! VISTA VF0470")}, | 2134 | {USB_DEVICE(0x041e, 0x4068)}, |
2140 | {USB_DEVICE(0x045e, 0x028c), DVNM("Microsoft xbox cam")}, | 2135 | {USB_DEVICE(0x045e, 0x028c)}, |
2141 | {USB_DEVICE(0x054c, 0x0154), DVNM("Sonny toy4")}, | 2136 | {USB_DEVICE(0x054c, 0x0154)}, |
2142 | {USB_DEVICE(0x054c, 0x0155), DVNM("Sonny toy5")}, | 2137 | {USB_DEVICE(0x054c, 0x0155)}, |
2143 | {USB_DEVICE(0x05a9, 0x0519), DVNM("OmniVision")}, | 2138 | {USB_DEVICE(0x05a9, 0x0519)}, |
2144 | {USB_DEVICE(0x05a9, 0x0530), DVNM("OmniVision")}, | 2139 | {USB_DEVICE(0x05a9, 0x0530)}, |
2145 | {USB_DEVICE(0x05a9, 0x4519), DVNM("OmniVision")}, | 2140 | {USB_DEVICE(0x05a9, 0x4519)}, |
2146 | {USB_DEVICE(0x05a9, 0x8519), DVNM("OmniVision")}, | 2141 | {USB_DEVICE(0x05a9, 0x8519)}, |
2147 | {} | 2142 | {} |
2148 | }; | 2143 | }; |
2149 | #undef DVNAME | 2144 | #undef DVNAME |
@@ -2169,7 +2164,7 @@ static int __init sd_mod_init(void) | |||
2169 | { | 2164 | { |
2170 | if (usb_register(&sd_driver) < 0) | 2165 | if (usb_register(&sd_driver) < 0) |
2171 | return -1; | 2166 | return -1; |
2172 | PDEBUG(D_PROBE, "v%s registered", version); | 2167 | PDEBUG(D_PROBE, "registered"); |
2173 | return 0; | 2168 | return 0; |
2174 | } | 2169 | } |
2175 | static void __exit sd_mod_exit(void) | 2170 | static void __exit sd_mod_exit(void) |
diff --git a/drivers/media/video/gspca/pac207.c b/drivers/media/video/gspca/pac207.c index fa7abc411090..7ef18d578811 100644 --- a/drivers/media/video/gspca/pac207.c +++ b/drivers/media/video/gspca/pac207.c | |||
@@ -27,9 +27,6 @@ | |||
27 | 27 | ||
28 | #include "gspca.h" | 28 | #include "gspca.h" |
29 | 29 | ||
30 | #define DRIVER_VERSION_NUMBER KERNEL_VERSION(2, 1, 7) | ||
31 | static const char version[] = "2.1.7"; | ||
32 | |||
33 | MODULE_AUTHOR("Hans de Goede <j.w.r.degoede@hhs.nl>"); | 30 | MODULE_AUTHOR("Hans de Goede <j.w.r.degoede@hhs.nl>"); |
34 | MODULE_DESCRIPTION("Pixart PAC207"); | 31 | MODULE_DESCRIPTION("Pixart PAC207"); |
35 | MODULE_LICENSE("GPL"); | 32 | MODULE_LICENSE("GPL"); |
@@ -208,7 +205,7 @@ static int pac207_write_regs(struct gspca_dev *gspca_dev, u16 index, | |||
208 | } | 205 | } |
209 | 206 | ||
210 | 207 | ||
211 | int pac207_write_reg(struct gspca_dev *gspca_dev, u16 index, u16 value) | 208 | static int pac207_write_reg(struct gspca_dev *gspca_dev, u16 index, u16 value) |
212 | { | 209 | { |
213 | struct usb_device *udev = gspca_dev->dev; | 210 | struct usb_device *udev = gspca_dev->dev; |
214 | int err; | 211 | int err; |
@@ -223,8 +220,7 @@ int pac207_write_reg(struct gspca_dev *gspca_dev, u16 index, u16 value) | |||
223 | return err; | 220 | return err; |
224 | } | 221 | } |
225 | 222 | ||
226 | 223 | static int pac207_read_reg(struct gspca_dev *gspca_dev, u16 index) | |
227 | int pac207_read_reg(struct gspca_dev *gspca_dev, u16 index) | ||
228 | { | 224 | { |
229 | struct usb_device *udev = gspca_dev->dev; | 225 | struct usb_device *udev = gspca_dev->dev; |
230 | int res; | 226 | int res; |
@@ -574,17 +570,16 @@ static const struct sd_desc sd_desc = { | |||
574 | }; | 570 | }; |
575 | 571 | ||
576 | /* -- module initialisation -- */ | 572 | /* -- module initialisation -- */ |
577 | #define DVNM(name) .driver_info = (kernel_ulong_t) name | ||
578 | static const __devinitdata struct usb_device_id device_table[] = { | 573 | static const __devinitdata struct usb_device_id device_table[] = { |
579 | {USB_DEVICE(0x041e, 0x4028), DVNM("Creative Webcam Vista Plus")}, | 574 | {USB_DEVICE(0x041e, 0x4028)}, |
580 | {USB_DEVICE(0x093a, 0x2460), DVNM("Q-Tec Webcam 100")}, | 575 | {USB_DEVICE(0x093a, 0x2460)}, |
581 | {USB_DEVICE(0x093a, 0x2463), DVNM("Philips spc200nc pac207")}, | 576 | {USB_DEVICE(0x093a, 0x2463)}, |
582 | {USB_DEVICE(0x093a, 0x2464), DVNM("Labtec Webcam 1200")}, | 577 | {USB_DEVICE(0x093a, 0x2464)}, |
583 | {USB_DEVICE(0x093a, 0x2468), DVNM("PAC207")}, | 578 | {USB_DEVICE(0x093a, 0x2468)}, |
584 | {USB_DEVICE(0x093a, 0x2470), DVNM("Genius GF112")}, | 579 | {USB_DEVICE(0x093a, 0x2470)}, |
585 | {USB_DEVICE(0x093a, 0x2471), DVNM("Genius VideoCam GE111")}, | 580 | {USB_DEVICE(0x093a, 0x2471)}, |
586 | {USB_DEVICE(0x093a, 0x2472), DVNM("Genius VideoCam GE110")}, | 581 | {USB_DEVICE(0x093a, 0x2472)}, |
587 | {USB_DEVICE(0x2001, 0xf115), DVNM("D-Link DSB-C120")}, | 582 | {USB_DEVICE(0x2001, 0xf115)}, |
588 | {} | 583 | {} |
589 | }; | 584 | }; |
590 | MODULE_DEVICE_TABLE(usb, device_table); | 585 | MODULE_DEVICE_TABLE(usb, device_table); |
@@ -609,7 +604,7 @@ static int __init sd_mod_init(void) | |||
609 | { | 604 | { |
610 | if (usb_register(&sd_driver) < 0) | 605 | if (usb_register(&sd_driver) < 0) |
611 | return -1; | 606 | return -1; |
612 | PDEBUG(D_PROBE, "v%s registered", version); | 607 | PDEBUG(D_PROBE, "registered"); |
613 | return 0; | 608 | return 0; |
614 | } | 609 | } |
615 | static void __exit sd_mod_exit(void) | 610 | static void __exit sd_mod_exit(void) |
diff --git a/drivers/media/video/gspca/pac7311.c b/drivers/media/video/gspca/pac7311.c index 5c052e31be4a..ea3d7021f401 100644 --- a/drivers/media/video/gspca/pac7311.c +++ b/drivers/media/video/gspca/pac7311.c | |||
@@ -23,9 +23,6 @@ | |||
23 | 23 | ||
24 | #include "gspca.h" | 24 | #include "gspca.h" |
25 | 25 | ||
26 | #define DRIVER_VERSION_NUMBER KERNEL_VERSION(2, 1, 7) | ||
27 | static const char version[] = "2.1.7"; | ||
28 | |||
29 | MODULE_AUTHOR("Thomas Kaiser thomas@kaiser-linux.li"); | 26 | MODULE_AUTHOR("Thomas Kaiser thomas@kaiser-linux.li"); |
30 | MODULE_DESCRIPTION("Pixart PAC7311"); | 27 | MODULE_DESCRIPTION("Pixart PAC7311"); |
31 | MODULE_LICENSE("GPL"); | 28 | MODULE_LICENSE("GPL"); |
@@ -266,7 +263,6 @@ static int sd_config(struct gspca_dev *gspca_dev, | |||
266 | reg_w(gspca_dev, 0x3e, 0x20); | 263 | reg_w(gspca_dev, 0x3e, 0x20); |
267 | 264 | ||
268 | cam = &gspca_dev->cam; | 265 | cam = &gspca_dev->cam; |
269 | cam->dev_name = (char *) id->driver_info; | ||
270 | cam->epaddr = 0x05; | 266 | cam->epaddr = 0x05; |
271 | cam->cam_mode = vga_mode; | 267 | cam->cam_mode = vga_mode; |
272 | cam->nmodes = ARRAY_SIZE(vga_mode); | 268 | cam->nmodes = ARRAY_SIZE(vga_mode); |
@@ -713,16 +709,14 @@ static struct sd_desc sd_desc = { | |||
713 | }; | 709 | }; |
714 | 710 | ||
715 | /* -- module initialisation -- */ | 711 | /* -- module initialisation -- */ |
716 | #define DVNM(name) .driver_info = (kernel_ulong_t) name | ||
717 | static __devinitdata struct usb_device_id device_table[] = { | 712 | static __devinitdata struct usb_device_id device_table[] = { |
718 | {USB_DEVICE(0x093a, 0x2600), DVNM("Typhoon")}, | 713 | {USB_DEVICE(0x093a, 0x2600)}, |
719 | {USB_DEVICE(0x093a, 0x2601), DVNM("Philips SPC610NC")}, | 714 | {USB_DEVICE(0x093a, 0x2601)}, |
720 | {USB_DEVICE(0x093a, 0x2603), DVNM("PAC7312")}, | 715 | {USB_DEVICE(0x093a, 0x2603)}, |
721 | {USB_DEVICE(0x093a, 0x2608), DVNM("Trust WB-3300p")}, | 716 | {USB_DEVICE(0x093a, 0x2608)}, |
722 | {USB_DEVICE(0x093a, 0x260e), DVNM("Gigaware VGA PC Camera")}, | 717 | {USB_DEVICE(0x093a, 0x260e)}, |
723 | /* and also ', Trust WB-3350p, SIGMA cam 2350' */ | 718 | {USB_DEVICE(0x093a, 0x260f)}, |
724 | {USB_DEVICE(0x093a, 0x260f), DVNM("SnakeCam")}, | 719 | {USB_DEVICE(0x093a, 0x2621)}, |
725 | {USB_DEVICE(0x093a, 0x2621), DVNM("PAC731x")}, | ||
726 | {} | 720 | {} |
727 | }; | 721 | }; |
728 | MODULE_DEVICE_TABLE(usb, device_table); | 722 | MODULE_DEVICE_TABLE(usb, device_table); |
@@ -747,7 +741,7 @@ static int __init sd_mod_init(void) | |||
747 | { | 741 | { |
748 | if (usb_register(&sd_driver) < 0) | 742 | if (usb_register(&sd_driver) < 0) |
749 | return -1; | 743 | return -1; |
750 | PDEBUG(D_PROBE, "v%s registered", version); | 744 | PDEBUG(D_PROBE, "registered"); |
751 | return 0; | 745 | return 0; |
752 | } | 746 | } |
753 | static void __exit sd_mod_exit(void) | 747 | static void __exit sd_mod_exit(void) |
diff --git a/drivers/media/video/gspca/sonixb.c b/drivers/media/video/gspca/sonixb.c index dbeebe8625c5..e18748c5a14d 100644 --- a/drivers/media/video/gspca/sonixb.c +++ b/drivers/media/video/gspca/sonixb.c | |||
@@ -24,9 +24,6 @@ | |||
24 | 24 | ||
25 | #include "gspca.h" | 25 | #include "gspca.h" |
26 | 26 | ||
27 | #define DRIVER_VERSION_NUMBER KERNEL_VERSION(2, 1, 8) | ||
28 | static const char version[] = "2.1.8"; | ||
29 | |||
30 | MODULE_AUTHOR("Michel Xhaard <mxhaard@users.sourceforge.net>"); | 27 | MODULE_AUTHOR("Michel Xhaard <mxhaard@users.sourceforge.net>"); |
31 | MODULE_DESCRIPTION("GSPCA/SN9C102 USB Camera Driver"); | 28 | MODULE_DESCRIPTION("GSPCA/SN9C102 USB Camera Driver"); |
32 | MODULE_LICENSE("GPL"); | 29 | MODULE_LICENSE("GPL"); |
@@ -44,25 +41,29 @@ struct sd { | |||
44 | unsigned char brightness; | 41 | unsigned char brightness; |
45 | unsigned char autogain; | 42 | unsigned char autogain; |
46 | unsigned char autogain_ignore_frames; | 43 | unsigned char autogain_ignore_frames; |
44 | unsigned char frames_to_drop; | ||
47 | unsigned char freq; /* light freq filter setting */ | 45 | unsigned char freq; /* light freq filter setting */ |
48 | unsigned char saturation; | ||
49 | unsigned char hue; | ||
50 | unsigned char contrast; | ||
51 | 46 | ||
52 | unsigned char fr_h_sz; /* size of frame header */ | 47 | unsigned char fr_h_sz; /* size of frame header */ |
53 | char sensor; /* Type of image sensor chip */ | 48 | char sensor; /* Type of image sensor chip */ |
54 | #define SENSOR_HV7131R 0 | 49 | #define SENSOR_HV7131R 0 |
55 | #define SENSOR_OV6650 1 | 50 | #define SENSOR_OV6650 1 |
56 | #define SENSOR_OV7630 2 | 51 | #define SENSOR_OV7630 2 |
57 | #define SENSOR_OV7630_3 3 | 52 | #define SENSOR_PAS106 3 |
58 | #define SENSOR_PAS106 4 | 53 | #define SENSOR_PAS202 4 |
59 | #define SENSOR_PAS202 5 | 54 | #define SENSOR_TAS5110 5 |
60 | #define SENSOR_TAS5110 6 | 55 | #define SENSOR_TAS5130CXX 6 |
61 | #define SENSOR_TAS5130CXX 7 | ||
62 | char sensor_has_gain; | 56 | char sensor_has_gain; |
63 | __u8 sensor_addr; | 57 | __u8 sensor_addr; |
58 | __u8 reg11; | ||
64 | }; | 59 | }; |
65 | 60 | ||
61 | /* flags used in the device id table */ | ||
62 | #define F_GAIN 0x01 /* has gain */ | ||
63 | #define F_AUTO 0x02 /* has autogain */ | ||
64 | #define F_SIF 0x04 /* sif or vga */ | ||
65 | #define F_H18 0x08 /* long (18 b) or short (12 b) frame header */ | ||
66 | |||
66 | #define COMP2 0x8f | 67 | #define COMP2 0x8f |
67 | #define COMP 0xc7 /* 0x87 //0x07 */ | 68 | #define COMP 0xc7 /* 0x87 //0x07 */ |
68 | #define COMP1 0xc9 /* 0x89 //0x09 */ | 69 | #define COMP1 0xc9 /* 0x89 //0x09 */ |
@@ -92,12 +93,6 @@ static int sd_setautogain(struct gspca_dev *gspca_dev, __s32 val); | |||
92 | static int sd_getautogain(struct gspca_dev *gspca_dev, __s32 *val); | 93 | static int sd_getautogain(struct gspca_dev *gspca_dev, __s32 *val); |
93 | static int sd_setfreq(struct gspca_dev *gspca_dev, __s32 val); | 94 | static int sd_setfreq(struct gspca_dev *gspca_dev, __s32 val); |
94 | static int sd_getfreq(struct gspca_dev *gspca_dev, __s32 *val); | 95 | static int sd_getfreq(struct gspca_dev *gspca_dev, __s32 *val); |
95 | static int sd_setsaturation(struct gspca_dev *gspca_dev, __s32 val); | ||
96 | static int sd_getsaturation(struct gspca_dev *gspca_dev, __s32 *val); | ||
97 | static int sd_sethue(struct gspca_dev *gspca_dev, __s32 val); | ||
98 | static int sd_gethue(struct gspca_dev *gspca_dev, __s32 *val); | ||
99 | static int sd_setcontrast(struct gspca_dev *gspca_dev, __s32 val); | ||
100 | static int sd_getcontrast(struct gspca_dev *gspca_dev, __s32 *val); | ||
101 | 96 | ||
102 | static struct ctrl sd_ctrls[] = { | 97 | static struct ctrl sd_ctrls[] = { |
103 | { | 98 | { |
@@ -174,48 +169,6 @@ static struct ctrl sd_ctrls[] = { | |||
174 | .set = sd_setfreq, | 169 | .set = sd_setfreq, |
175 | .get = sd_getfreq, | 170 | .get = sd_getfreq, |
176 | }, | 171 | }, |
177 | { | ||
178 | { | ||
179 | .id = V4L2_CID_SATURATION, | ||
180 | .type = V4L2_CTRL_TYPE_INTEGER, | ||
181 | .name = "Saturation", | ||
182 | .minimum = 0, | ||
183 | .maximum = 255, | ||
184 | .step = 1, | ||
185 | #define SATURATION_DEF 127 | ||
186 | .default_value = SATURATION_DEF, | ||
187 | }, | ||
188 | .set = sd_setsaturation, | ||
189 | .get = sd_getsaturation, | ||
190 | }, | ||
191 | { | ||
192 | { | ||
193 | .id = V4L2_CID_HUE, | ||
194 | .type = V4L2_CTRL_TYPE_INTEGER, | ||
195 | .name = "Hue", | ||
196 | .minimum = 0, | ||
197 | .maximum = 255, | ||
198 | .step = 1, | ||
199 | #define HUE_DEF 127 | ||
200 | .default_value = HUE_DEF, | ||
201 | }, | ||
202 | .set = sd_sethue, | ||
203 | .get = sd_gethue, | ||
204 | }, | ||
205 | { | ||
206 | { | ||
207 | .id = V4L2_CID_CONTRAST, | ||
208 | .type = V4L2_CTRL_TYPE_INTEGER, | ||
209 | .name = "Contrast", | ||
210 | .minimum = 0, | ||
211 | .maximum = 255, | ||
212 | .step = 1, | ||
213 | #define CONTRAST_DEF 127 | ||
214 | .default_value = CONTRAST_DEF, | ||
215 | }, | ||
216 | .set = sd_setcontrast, | ||
217 | .get = sd_getcontrast, | ||
218 | }, | ||
219 | }; | 172 | }; |
220 | 173 | ||
221 | static struct v4l2_pix_format vga_mode[] = { | 174 | static struct v4l2_pix_format vga_mode[] = { |
@@ -248,8 +201,6 @@ static struct v4l2_pix_format sif_mode[] = { | |||
248 | .priv = 0}, | 201 | .priv = 0}, |
249 | }; | 202 | }; |
250 | 203 | ||
251 | static const __u8 probe_ov7630[] = {0x08, 0x44}; | ||
252 | |||
253 | static const __u8 initHv7131[] = { | 204 | static const __u8 initHv7131[] = { |
254 | 0x46, 0x77, 0x00, 0x04, 0x00, 0x00, 0x00, 0x80, 0x11, 0x00, 0x00, 0x00, | 205 | 0x46, 0x77, 0x00, 0x04, 0x00, 0x00, 0x00, 0x80, 0x11, 0x00, 0x00, 0x00, |
255 | 0x00, 0x00, | 206 | 0x00, 0x00, |
@@ -321,7 +272,7 @@ static const __u8 initOv7630_3[] = { | |||
321 | 0x10, 0x20, 0x30, 0x40, 0x50, 0x60, 0x70, 0x80, /* r21 .. r28 */ | 272 | 0x10, 0x20, 0x30, 0x40, 0x50, 0x60, 0x70, 0x80, /* r21 .. r28 */ |
322 | 0x90, 0xa0, 0xb0, 0xc0, 0xd0, 0xe0, 0xf0, 0xff /* r29 .. r30 */ | 273 | 0x90, 0xa0, 0xb0, 0xc0, 0xd0, 0xe0, 0xf0, 0xff /* r29 .. r30 */ |
323 | }; | 274 | }; |
324 | static const __u8 ov7630_sensor_init_com[][8] = { | 275 | static const __u8 ov7630_sensor_init[][8] = { |
325 | {0xa0, 0x21, 0x12, 0x80, 0x00, 0x00, 0x00, 0x10}, | 276 | {0xa0, 0x21, 0x12, 0x80, 0x00, 0x00, 0x00, 0x10}, |
326 | {0xb0, 0x21, 0x01, 0x77, 0x3a, 0x00, 0x00, 0x10}, | 277 | {0xb0, 0x21, 0x01, 0x77, 0x3a, 0x00, 0x00, 0x10}, |
327 | /* {0xd0, 0x21, 0x12, 0x7c, 0x01, 0x80, 0x34, 0x10}, jfm */ | 278 | /* {0xd0, 0x21, 0x12, 0x7c, 0x01, 0x80, 0x34, 0x10}, jfm */ |
@@ -342,17 +293,6 @@ static const __u8 ov7630_sensor_init_com[][8] = { | |||
342 | {0xa0, 0x21, 0x7d, 0xf7, 0x8e, 0x00, 0x30, 0x10}, | 293 | {0xa0, 0x21, 0x7d, 0xf7, 0x8e, 0x00, 0x30, 0x10}, |
343 | {0xd0, 0x21, 0x17, 0x1c, 0xbd, 0x06, 0xf6, 0x10}, | 294 | {0xd0, 0x21, 0x17, 0x1c, 0xbd, 0x06, 0xf6, 0x10}, |
344 | }; | 295 | }; |
345 | static const __u8 ov7630_sensor_init[][8] = { | ||
346 | {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, /* delay 200ms */ | ||
347 | {0xa0, 0x21, 0x11, 0x01, 0xbd, 0x06, 0xf6, 0x10}, /* jfm */ | ||
348 | {0xa0, 0x21, 0x10, 0x57, 0xbd, 0x06, 0xf6, 0x16}, | ||
349 | {0xa0, 0x21, 0x76, 0x02, 0xbd, 0x06, 0xf6, 0x16}, | ||
350 | {0xa0, 0x21, 0x00, 0x10, 0xbd, 0x06, 0xf6, 0x15}, /* gain */ | ||
351 | }; | ||
352 | static const __u8 ov7630_sensor_init_3[][8] = { | ||
353 | {0xa0, 0x21, 0x2a, 0xa0, 0x00, 0x00, 0x00, 0x10}, | ||
354 | {0xa0, 0x21, 0x2a, 0x80, 0x00, 0x00, 0x00, 0x10}, | ||
355 | }; | ||
356 | 296 | ||
357 | static const __u8 initPas106[] = { | 297 | static const __u8 initPas106[] = { |
358 | 0x04, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x81, 0x40, 0x00, 0x00, 0x00, | 298 | 0x04, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x81, 0x40, 0x00, 0x00, 0x00, |
@@ -542,7 +482,6 @@ static void setbrightness(struct gspca_dev *gspca_dev) | |||
542 | 482 | ||
543 | switch (sd->sensor) { | 483 | switch (sd->sensor) { |
544 | case SENSOR_OV6650: | 484 | case SENSOR_OV6650: |
545 | case SENSOR_OV7630_3: | ||
546 | case SENSOR_OV7630: { | 485 | case SENSOR_OV7630: { |
547 | __u8 i2cOV[] = | 486 | __u8 i2cOV[] = |
548 | {0xa0, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x10}; | 487 | {0xa0, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x10}; |
@@ -635,7 +574,7 @@ static void setsensorgain(struct gspca_dev *gspca_dev) | |||
635 | case SENSOR_OV6650: | 574 | case SENSOR_OV6650: |
636 | gain >>= 1; | 575 | gain >>= 1; |
637 | /* fall thru */ | 576 | /* fall thru */ |
638 | case SENSOR_OV7630_3: { | 577 | case SENSOR_OV7630: { |
639 | __u8 i2c[] = {0xa0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10}; | 578 | __u8 i2c[] = {0xa0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10}; |
640 | 579 | ||
641 | i2c[1] = sd->sensor_addr; | 580 | i2c[1] = sd->sensor_addr; |
@@ -690,7 +629,7 @@ static void setexposure(struct gspca_dev *gspca_dev) | |||
690 | break; | 629 | break; |
691 | } | 630 | } |
692 | case SENSOR_OV6650: | 631 | case SENSOR_OV6650: |
693 | case SENSOR_OV7630_3: { | 632 | case SENSOR_OV7630: { |
694 | /* The ov6650 / ov7630 have 2 registers which both influence | 633 | /* The ov6650 / ov7630 have 2 registers which both influence |
695 | exposure, register 11, whose low nibble sets the nr off fps | 634 | exposure, register 11, whose low nibble sets the nr off fps |
696 | according to: fps = 30 / (low_nibble + 1) | 635 | according to: fps = 30 / (low_nibble + 1) |
@@ -705,16 +644,20 @@ static void setexposure(struct gspca_dev *gspca_dev) | |||
705 | The code maps our 0 - 510 ms exposure ctrl to these 2 | 644 | The code maps our 0 - 510 ms exposure ctrl to these 2 |
706 | registers, trying to keep fps as high as possible. | 645 | registers, trying to keep fps as high as possible. |
707 | */ | 646 | */ |
708 | __u8 i2c[] = {0xb0, 0x00, 0x10, 0x00, 0xc0, 0x00, 0x00, 0x10}; | 647 | __u8 i2c[] = {0xb0, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x10}; |
709 | int reg10, reg11; | 648 | int reg10, reg11, reg10_max; |
649 | |||
710 | /* ov6645 datasheet says reg10_max is 9a, but that uses | 650 | /* ov6645 datasheet says reg10_max is 9a, but that uses |
711 | tline * 2 * reg10 as formula for calculating texpo, the | 651 | tline * 2 * reg10 as formula for calculating texpo, the |
712 | ov6650 probably uses the same formula as the 7730 which uses | 652 | ov6650 probably uses the same formula as the 7730 which uses |
713 | tline * 4 * reg10, which explains why the reg10max we've | 653 | tline * 4 * reg10, which explains why the reg10max we've |
714 | found experimentally for the ov6650 is exactly half that of | 654 | found experimentally for the ov6650 is exactly half that of |
715 | the ov6645. The ov7630 datasheet says the max is 0x41. */ | 655 | the ov6645. The ov7630 datasheet says the max is 0x41. */ |
716 | const int reg10_max = (sd->sensor == SENSOR_OV6650) | 656 | if (sd->sensor == SENSOR_OV6650) { |
717 | ? 0x4d : 0x41; | 657 | reg10_max = 0x4d; |
658 | i2c[4] = 0xc0; /* OV6650 needs non default vsync pol */ | ||
659 | } else | ||
660 | reg10_max = 0x41; | ||
718 | 661 | ||
719 | reg11 = (60 * sd->exposure + 999) / 1000; | 662 | reg11 = (60 * sd->exposure + 999) / 1000; |
720 | if (reg11 < 1) | 663 | if (reg11 < 1) |
@@ -735,20 +678,23 @@ static void setexposure(struct gspca_dev *gspca_dev) | |||
735 | else if (reg10 > reg10_max) | 678 | else if (reg10 > reg10_max) |
736 | reg10 = reg10_max; | 679 | reg10 = reg10_max; |
737 | 680 | ||
681 | /* In 640x480, if the reg11 has less than 3, the image is | ||
682 | unstable (not enough bandwidth). */ | ||
683 | if (gspca_dev->width == 640 && reg11 < 3) | ||
684 | reg11 = 3; | ||
685 | |||
738 | /* Write reg 10 and reg11 low nibble */ | 686 | /* Write reg 10 and reg11 low nibble */ |
739 | i2c[1] = sd->sensor_addr; | 687 | i2c[1] = sd->sensor_addr; |
740 | i2c[3] = reg10; | 688 | i2c[3] = reg10; |
741 | i2c[4] |= reg11 - 1; | 689 | i2c[4] |= reg11 - 1; |
742 | if (sd->sensor == SENSOR_OV7630_3) { | 690 | |
743 | __u8 reg76 = reg10 & 0x03; | 691 | /* If register 11 didn't change, don't change it */ |
744 | __u8 i2c_reg76[] = {0xa0, 0x21, 0x76, 0x00, | 692 | if (sd->reg11 == reg11 ) |
745 | 0x00, 0x00, 0x00, 0x10}; | 693 | i2c[0] = 0xa0; |
746 | reg10 >>= 2; | 694 | |
747 | i2c_reg76[3] = reg76; | 695 | if (i2c_w(gspca_dev, i2c) == 0) |
748 | if (i2c_w(gspca_dev, i2c_reg76) < 0) | 696 | sd->reg11 = reg11; |
749 | PDEBUG(D_ERR, "i2c error exposure"); | 697 | else |
750 | } | ||
751 | if (i2c_w(gspca_dev, i2c) < 0) | ||
752 | PDEBUG(D_ERR, "i2c error exposure"); | 698 | PDEBUG(D_ERR, "i2c error exposure"); |
753 | break; | 699 | break; |
754 | } | 700 | } |
@@ -761,11 +707,11 @@ static void setfreq(struct gspca_dev *gspca_dev) | |||
761 | 707 | ||
762 | switch (sd->sensor) { | 708 | switch (sd->sensor) { |
763 | case SENSOR_OV6650: | 709 | case SENSOR_OV6650: |
764 | case SENSOR_OV7630_3: { | 710 | case SENSOR_OV7630: { |
765 | /* Framerate adjust register for artificial light 50 hz flicker | 711 | /* Framerate adjust register for artificial light 50 hz flicker |
766 | compensation, identical to ov6630 0x2b register, see ov6630 | 712 | compensation, for the ov6650 this is identical to ov6630 |
767 | datasheet. | 713 | 0x2b register, see ov6630 datasheet. |
768 | 0x4f -> (30 fps -> 25 fps), 0x00 -> no adjustment */ | 714 | 0x4f / 0x8a -> (30 fps -> 25 fps), 0x00 -> no adjustment */ |
769 | __u8 i2c[] = {0xa0, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x10}; | 715 | __u8 i2c[] = {0xa0, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x10}; |
770 | switch (sd->freq) { | 716 | switch (sd->freq) { |
771 | default: | 717 | default: |
@@ -786,69 +732,6 @@ static void setfreq(struct gspca_dev *gspca_dev) | |||
786 | } | 732 | } |
787 | } | 733 | } |
788 | 734 | ||
789 | static void setsaturation(struct gspca_dev *gspca_dev) | ||
790 | { | ||
791 | struct sd *sd = (struct sd *) gspca_dev; | ||
792 | |||
793 | switch (sd->sensor) { | ||
794 | /* case SENSOR_OV6650: */ | ||
795 | case SENSOR_OV7630_3: | ||
796 | case SENSOR_OV7630: { | ||
797 | __u8 i2c[] = {0xa0, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x10}; | ||
798 | i2c[1] = sd->sensor_addr; | ||
799 | i2c[3] = sd->saturation & 0xf0; | ||
800 | if (i2c_w(gspca_dev, i2c) < 0) | ||
801 | PDEBUG(D_ERR, "i2c error setsaturation"); | ||
802 | else | ||
803 | PDEBUG(D_CONF, "saturation set to: %d", | ||
804 | (int)sd->saturation); | ||
805 | break; | ||
806 | } | ||
807 | } | ||
808 | } | ||
809 | |||
810 | static void sethue(struct gspca_dev *gspca_dev) | ||
811 | { | ||
812 | struct sd *sd = (struct sd *) gspca_dev; | ||
813 | |||
814 | switch (sd->sensor) { | ||
815 | /* case SENSOR_OV6650: */ | ||
816 | case SENSOR_OV7630_3: | ||
817 | case SENSOR_OV7630: { | ||
818 | __u8 i2c[] = {0xa0, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x10}; | ||
819 | i2c[1] = sd->sensor_addr; | ||
820 | i2c[3] = 0x20 | (sd->hue >> 3); | ||
821 | if (i2c_w(gspca_dev, i2c) < 0) | ||
822 | PDEBUG(D_ERR, "i2c error setsaturation"); | ||
823 | else | ||
824 | PDEBUG(D_CONF, "hue set to: %d", (int)sd->hue); | ||
825 | break; | ||
826 | } | ||
827 | } | ||
828 | } | ||
829 | |||
830 | static void setcontrast(struct gspca_dev *gspca_dev) | ||
831 | { | ||
832 | struct sd *sd = (struct sd *) gspca_dev; | ||
833 | |||
834 | switch (sd->sensor) { | ||
835 | /* case SENSOR_OV6650: */ | ||
836 | case SENSOR_OV7630_3: | ||
837 | case SENSOR_OV7630: { | ||
838 | __u8 i2c[] = {0xa0, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x10}; | ||
839 | i2c[1] = sd->sensor_addr; | ||
840 | i2c[3] = 0x20 | (sd->contrast >> 3); | ||
841 | if (i2c_w(gspca_dev, i2c) < 0) | ||
842 | PDEBUG(D_ERR, "i2c error setcontrast"); | ||
843 | else | ||
844 | PDEBUG(D_CONF, "contrast set to: %d", | ||
845 | (int)sd->contrast); | ||
846 | break; | ||
847 | } | ||
848 | } | ||
849 | } | ||
850 | |||
851 | |||
852 | static void do_autogain(struct gspca_dev *gspca_dev) | 735 | static void do_autogain(struct gspca_dev *gspca_dev) |
853 | { | 736 | { |
854 | struct sd *sd = (struct sd *) gspca_dev; | 737 | struct sd *sd = (struct sd *) gspca_dev; |
@@ -874,88 +757,32 @@ static int sd_config(struct gspca_dev *gspca_dev, | |||
874 | { | 757 | { |
875 | struct sd *sd = (struct sd *) gspca_dev; | 758 | struct sd *sd = (struct sd *) gspca_dev; |
876 | struct cam *cam; | 759 | struct cam *cam; |
877 | __u16 product; | ||
878 | int sif = 0; | 760 | int sif = 0; |
879 | 761 | ||
880 | /* nctrls depends upon the sensor, so we use a per cam copy */ | 762 | /* nctrls depends upon the sensor, so we use a per cam copy */ |
881 | memcpy(&sd->sd_desc, gspca_dev->sd_desc, sizeof(struct sd_desc)); | 763 | memcpy(&sd->sd_desc, gspca_dev->sd_desc, sizeof(struct sd_desc)); |
882 | gspca_dev->sd_desc = &sd->sd_desc; | 764 | gspca_dev->sd_desc = &sd->sd_desc; |
883 | 765 | ||
884 | sd->fr_h_sz = 12; /* default size of the frame header */ | 766 | /* copy the webcam info from the device id */ |
885 | sd->sd_desc.nctrls = 2; /* default nb of ctrls */ | 767 | sd->sensor = (id->driver_info >> 24) & 0xff; |
886 | sd->autogain = AUTOGAIN_DEF; /* default is autogain active */ | 768 | if (id->driver_info & (F_GAIN << 16)) |
887 | 769 | sd->sensor_has_gain = 1; | |
888 | product = id->idProduct; | 770 | if (id->driver_info & (F_AUTO << 16)) |
889 | /* switch (id->idVendor) { */ | 771 | sd->sd_desc.dq_callback = do_autogain; |
890 | /* case 0x0c45: * Sonix */ | 772 | if (id->driver_info & (F_SIF << 16)) |
891 | switch (product) { | 773 | sif = 1; |
892 | case 0x6001: /* SN9C102 */ | 774 | if (id->driver_info & (F_H18 << 16)) |
893 | case 0x6005: /* SN9C101 */ | 775 | sd->fr_h_sz = 18; /* size of frame header */ |
894 | case 0x6007: /* SN9C101 */ | 776 | else |
895 | sd->sensor = SENSOR_TAS5110; | 777 | sd->fr_h_sz = 12; |
896 | sd->sensor_has_gain = 1; | 778 | sd->sd_desc.nctrls = (id->driver_info >> 8) & 0xff; |
897 | sd->sd_desc.nctrls = 4; | 779 | sd->sensor_addr = id->driver_info & 0xff; |
898 | sd->sd_desc.dq_callback = do_autogain; | ||
899 | sif = 1; | ||
900 | break; | ||
901 | case 0x6009: /* SN9C101 */ | ||
902 | case 0x600d: /* SN9C101 */ | ||
903 | case 0x6029: /* SN9C101 */ | ||
904 | sd->sensor = SENSOR_PAS106; | ||
905 | sif = 1; | ||
906 | break; | ||
907 | case 0x6011: /* SN9C101 - SN9C101G */ | ||
908 | sd->sensor = SENSOR_OV6650; | ||
909 | sd->sensor_has_gain = 1; | ||
910 | sd->sensor_addr = 0x60; | ||
911 | sd->sd_desc.nctrls = 5; | ||
912 | sd->sd_desc.dq_callback = do_autogain; | ||
913 | sif = 1; | ||
914 | break; | ||
915 | case 0x6019: /* SN9C101 */ | ||
916 | case 0x602c: /* SN9C102 */ | ||
917 | case 0x602e: /* SN9C102 */ | ||
918 | sd->sensor = SENSOR_OV7630; | ||
919 | sd->sensor_addr = 0x21; | ||
920 | break; | ||
921 | case 0x60b0: /* SN9C103 */ | ||
922 | sd->sensor = SENSOR_OV7630_3; | ||
923 | sd->sensor_addr = 0x21; | ||
924 | sd->fr_h_sz = 18; /* size of frame header */ | ||
925 | sd->sensor_has_gain = 1; | ||
926 | sd->sd_desc.nctrls = 8; | ||
927 | sd->sd_desc.dq_callback = do_autogain; | ||
928 | sd->autogain = 0; | ||
929 | break; | ||
930 | case 0x6024: /* SN9C102 */ | ||
931 | case 0x6025: /* SN9C102 */ | ||
932 | sd->sensor = SENSOR_TAS5130CXX; | ||
933 | break; | ||
934 | case 0x6028: /* SN9C102 */ | ||
935 | sd->sensor = SENSOR_PAS202; | ||
936 | break; | ||
937 | case 0x602d: /* SN9C102 */ | ||
938 | sd->sensor = SENSOR_HV7131R; | ||
939 | break; | ||
940 | case 0x60af: /* SN9C103 */ | ||
941 | sd->sensor = SENSOR_PAS202; | ||
942 | sd->fr_h_sz = 18; /* size of frame header (?) */ | ||
943 | break; | ||
944 | } | ||
945 | /* break; */ | ||
946 | /* } */ | ||
947 | 780 | ||
948 | cam = &gspca_dev->cam; | 781 | cam = &gspca_dev->cam; |
949 | cam->dev_name = (char *) id->driver_info; | ||
950 | cam->epaddr = 0x01; | 782 | cam->epaddr = 0x01; |
951 | if (!sif) { | 783 | if (!sif) { |
952 | cam->cam_mode = vga_mode; | 784 | cam->cam_mode = vga_mode; |
953 | cam->nmodes = ARRAY_SIZE(vga_mode); | 785 | cam->nmodes = ARRAY_SIZE(vga_mode); |
954 | if (sd->sensor == SENSOR_OV7630_3) { | ||
955 | /* We only have 320x240 & 640x480 */ | ||
956 | cam->cam_mode++; | ||
957 | cam->nmodes--; | ||
958 | } | ||
959 | } else { | 786 | } else { |
960 | cam->cam_mode = sif_mode; | 787 | cam->cam_mode = sif_mode; |
961 | cam->nmodes = ARRAY_SIZE(sif_mode); | 788 | cam->nmodes = ARRAY_SIZE(sif_mode); |
@@ -963,12 +790,9 @@ static int sd_config(struct gspca_dev *gspca_dev, | |||
963 | sd->brightness = BRIGHTNESS_DEF; | 790 | sd->brightness = BRIGHTNESS_DEF; |
964 | sd->gain = GAIN_DEF; | 791 | sd->gain = GAIN_DEF; |
965 | sd->exposure = EXPOSURE_DEF; | 792 | sd->exposure = EXPOSURE_DEF; |
793 | sd->autogain = AUTOGAIN_DEF; | ||
966 | sd->freq = FREQ_DEF; | 794 | sd->freq = FREQ_DEF; |
967 | sd->contrast = CONTRAST_DEF; | 795 | |
968 | sd->saturation = SATURATION_DEF; | ||
969 | sd->hue = HUE_DEF; | ||
970 | if (sd->sensor == SENSOR_OV7630_3) /* jfm: from win trace */ | ||
971 | reg_w(gspca_dev, 0x01, probe_ov7630, sizeof probe_ov7630); | ||
972 | return 0; | 796 | return 0; |
973 | } | 797 | } |
974 | 798 | ||
@@ -1002,9 +826,8 @@ static void pas106_i2cinit(struct gspca_dev *gspca_dev) | |||
1002 | static void sd_start(struct gspca_dev *gspca_dev) | 826 | static void sd_start(struct gspca_dev *gspca_dev) |
1003 | { | 827 | { |
1004 | struct sd *sd = (struct sd *) gspca_dev; | 828 | struct sd *sd = (struct sd *) gspca_dev; |
1005 | int mode, l; | 829 | int mode, l = 0x1f; |
1006 | const __u8 *sn9c10x; | 830 | const __u8 *sn9c10x; |
1007 | __u8 reg01, reg17; | ||
1008 | __u8 reg17_19[3]; | 831 | __u8 reg17_19[3]; |
1009 | 832 | ||
1010 | mode = gspca_dev->cam.cam_mode[(int) gspca_dev->curr_mode].priv; | 833 | mode = gspca_dev->cam.cam_mode[(int) gspca_dev->curr_mode].priv; |
@@ -1022,13 +845,11 @@ static void sd_start(struct gspca_dev *gspca_dev) | |||
1022 | reg17_19[2] = 0x20; | 845 | reg17_19[2] = 0x20; |
1023 | break; | 846 | break; |
1024 | case SENSOR_OV7630: | 847 | case SENSOR_OV7630: |
1025 | sn9c10x = initOv7630; | 848 | if (sd->fr_h_sz == 18) { /* SN9C103 */ |
1026 | reg17_19[0] = 0x68; | 849 | sn9c10x = initOv7630_3; |
1027 | reg17_19[1] = (mode << 4) | COMP2; | 850 | l = sizeof initOv7630_3; |
1028 | reg17_19[2] = MCK_INIT1; | 851 | } else |
1029 | break; | 852 | sn9c10x = initOv7630; |
1030 | case SENSOR_OV7630_3: | ||
1031 | sn9c10x = initOv7630_3; | ||
1032 | reg17_19[0] = 0x68; | 853 | reg17_19[0] = 0x68; |
1033 | reg17_19[1] = (mode << 4) | COMP2; | 854 | reg17_19[1] = (mode << 4) | COMP2; |
1034 | reg17_19[2] = MCK_INIT1; | 855 | reg17_19[2] = MCK_INIT1; |
@@ -1059,30 +880,11 @@ static void sd_start(struct gspca_dev *gspca_dev) | |||
1059 | reg17_19[2] = mode ? 0x23 : 0x43; | 880 | reg17_19[2] = mode ? 0x23 : 0x43; |
1060 | break; | 881 | break; |
1061 | } | 882 | } |
1062 | switch (sd->sensor) { | ||
1063 | case SENSOR_OV7630: | ||
1064 | reg01 = 0x06; | ||
1065 | reg17 = 0x29; | ||
1066 | l = sizeof initOv7630; | ||
1067 | break; | ||
1068 | case SENSOR_OV7630_3: | ||
1069 | reg01 = 0x44; | ||
1070 | reg17 = 0x68; | ||
1071 | l = sizeof initOv7630_3; | ||
1072 | break; | ||
1073 | default: | ||
1074 | reg01 = sn9c10x[0]; | ||
1075 | reg17 = sn9c10x[0x17 - 1]; | ||
1076 | l = 0x1f; | ||
1077 | break; | ||
1078 | } | ||
1079 | 883 | ||
1080 | /* reg 0x01 bit 2 video transfert on */ | 884 | /* reg 0x01 bit 2 video transfert on */ |
1081 | reg_w(gspca_dev, 0x01, ®01, 1); | 885 | reg_w(gspca_dev, 0x01, &sn9c10x[0x01 - 1], 1); |
1082 | /* reg 0x17 SensorClk enable inv Clk 0x60 */ | 886 | /* reg 0x17 SensorClk enable inv Clk 0x60 */ |
1083 | reg_w(gspca_dev, 0x17, ®17, 1); | 887 | reg_w(gspca_dev, 0x17, &sn9c10x[0x17 - 1], 1); |
1084 | /*fixme: for ov7630 102 | ||
1085 | reg_w(gspca_dev, 0x01, {0x06, sn9c10x[1]}, 2); */ | ||
1086 | /* Set the registers from the template */ | 888 | /* Set the registers from the template */ |
1087 | reg_w_big(gspca_dev, 0x01, sn9c10x, l); | 889 | reg_w_big(gspca_dev, 0x01, sn9c10x, l); |
1088 | switch (sd->sensor) { | 890 | switch (sd->sensor) { |
@@ -1095,17 +897,13 @@ static void sd_start(struct gspca_dev *gspca_dev) | |||
1095 | sizeof ov6650_sensor_init); | 897 | sizeof ov6650_sensor_init); |
1096 | break; | 898 | break; |
1097 | case SENSOR_OV7630: | 899 | case SENSOR_OV7630: |
1098 | i2c_w_vector(gspca_dev, ov7630_sensor_init_com, | ||
1099 | sizeof ov7630_sensor_init_com); | ||
1100 | msleep(200); | ||
1101 | i2c_w_vector(gspca_dev, ov7630_sensor_init, | 900 | i2c_w_vector(gspca_dev, ov7630_sensor_init, |
1102 | sizeof ov7630_sensor_init); | 901 | sizeof ov7630_sensor_init); |
1103 | break; | 902 | if (sd->fr_h_sz == 18) { /* SN9C103 */ |
1104 | case SENSOR_OV7630_3: | 903 | const __u8 i2c[] = { 0xa0, 0x21, 0x13, 0x80, 0x00, |
1105 | i2c_w_vector(gspca_dev, ov7630_sensor_init_com, | 904 | 0x00, 0x00, 0x10 }; |
1106 | sizeof ov7630_sensor_init_com); | 905 | i2c_w(gspca_dev, i2c); |
1107 | msleep(200); | 906 | } |
1108 | i2c_w(gspca_dev, ov7630_sensor_init_3[mode]); | ||
1109 | break; | 907 | break; |
1110 | case SENSOR_PAS106: | 908 | case SENSOR_PAS106: |
1111 | pas106_i2cinit(gspca_dev); | 909 | pas106_i2cinit(gspca_dev); |
@@ -1145,14 +943,14 @@ static void sd_start(struct gspca_dev *gspca_dev) | |||
1145 | reg_w(gspca_dev, 0x18, ®17_19[1], 2); | 943 | reg_w(gspca_dev, 0x18, ®17_19[1], 2); |
1146 | msleep(20); | 944 | msleep(20); |
1147 | 945 | ||
946 | sd->reg11 = -1; | ||
947 | |||
1148 | setgain(gspca_dev); | 948 | setgain(gspca_dev); |
1149 | setbrightness(gspca_dev); | 949 | setbrightness(gspca_dev); |
1150 | setexposure(gspca_dev); | 950 | setexposure(gspca_dev); |
1151 | setfreq(gspca_dev); | 951 | setfreq(gspca_dev); |
1152 | setsaturation(gspca_dev); | ||
1153 | sethue(gspca_dev); | ||
1154 | setcontrast(gspca_dev); | ||
1155 | 952 | ||
953 | sd->frames_to_drop = 0; | ||
1156 | sd->autogain_ignore_frames = 0; | 954 | sd->autogain_ignore_frames = 0; |
1157 | atomic_set(&sd->avg_lum, -1); | 955 | atomic_set(&sd->avg_lum, -1); |
1158 | } | 956 | } |
@@ -1198,21 +996,31 @@ static void sd_pkt_scan(struct gspca_dev *gspca_dev, | |||
1198 | && data[3 + i] == 0xc4 | 996 | && data[3 + i] == 0xc4 |
1199 | && data[4 + i] == 0xc4 | 997 | && data[4 + i] == 0xc4 |
1200 | && data[5 + i] == 0x96) { /* start of frame */ | 998 | && data[5 + i] == 0x96) { /* start of frame */ |
1201 | frame = gspca_frame_add(gspca_dev, LAST_PACKET, | 999 | int lum = -1; |
1202 | frame, data, 0); | 1000 | int pkt_type = LAST_PACKET; |
1001 | |||
1203 | if (len - i < sd->fr_h_sz) { | 1002 | if (len - i < sd->fr_h_sz) { |
1204 | atomic_set(&sd->avg_lum, -1); | ||
1205 | PDEBUG(D_STREAM, "packet too short to" | 1003 | PDEBUG(D_STREAM, "packet too short to" |
1206 | " get avg brightness"); | 1004 | " get avg brightness"); |
1207 | } else if (sd->fr_h_sz == 12) { | 1005 | } else if (sd->fr_h_sz == 12) { |
1208 | atomic_set(&sd->avg_lum, | 1006 | lum = data[i + 8] + (data[i + 9] << 8); |
1209 | data[i + 8] + | ||
1210 | (data[i + 9] << 8)); | ||
1211 | } else { | 1007 | } else { |
1212 | atomic_set(&sd->avg_lum, | 1008 | lum = data[i + 9] + |
1213 | data[i + 9] + | 1009 | (data[i + 10] << 8); |
1214 | (data[i + 10] << 8)); | 1010 | } |
1011 | if (lum == 0) { | ||
1012 | lum = -1; | ||
1013 | sd->frames_to_drop = 2; | ||
1014 | } | ||
1015 | atomic_set(&sd->avg_lum, lum); | ||
1016 | |||
1017 | if (sd->frames_to_drop) { | ||
1018 | sd->frames_to_drop--; | ||
1019 | pkt_type = DISCARD_PACKET; | ||
1215 | } | 1020 | } |
1021 | |||
1022 | frame = gspca_frame_add(gspca_dev, pkt_type, | ||
1023 | frame, data, 0); | ||
1216 | data += i + sd->fr_h_sz; | 1024 | data += i + sd->fr_h_sz; |
1217 | len -= i + sd->fr_h_sz; | 1025 | len -= i + sd->fr_h_sz; |
1218 | gspca_frame_add(gspca_dev, FIRST_PACKET, | 1026 | gspca_frame_add(gspca_dev, FIRST_PACKET, |
@@ -1327,60 +1135,6 @@ static int sd_getfreq(struct gspca_dev *gspca_dev, __s32 *val) | |||
1327 | return 0; | 1135 | return 0; |
1328 | } | 1136 | } |
1329 | 1137 | ||
1330 | static int sd_setsaturation(struct gspca_dev *gspca_dev, __s32 val) | ||
1331 | { | ||
1332 | struct sd *sd = (struct sd *) gspca_dev; | ||
1333 | |||
1334 | sd->saturation = val; | ||
1335 | if (gspca_dev->streaming) | ||
1336 | setsaturation(gspca_dev); | ||
1337 | return 0; | ||
1338 | } | ||
1339 | |||
1340 | static int sd_getsaturation(struct gspca_dev *gspca_dev, __s32 *val) | ||
1341 | { | ||
1342 | struct sd *sd = (struct sd *) gspca_dev; | ||
1343 | |||
1344 | *val = sd->saturation; | ||
1345 | return 0; | ||
1346 | } | ||
1347 | |||
1348 | static int sd_sethue(struct gspca_dev *gspca_dev, __s32 val) | ||
1349 | { | ||
1350 | struct sd *sd = (struct sd *) gspca_dev; | ||
1351 | |||
1352 | sd->hue = val; | ||
1353 | if (gspca_dev->streaming) | ||
1354 | sethue(gspca_dev); | ||
1355 | return 0; | ||
1356 | } | ||
1357 | |||
1358 | static int sd_gethue(struct gspca_dev *gspca_dev, __s32 *val) | ||
1359 | { | ||
1360 | struct sd *sd = (struct sd *) gspca_dev; | ||
1361 | |||
1362 | *val = sd->hue; | ||
1363 | return 0; | ||
1364 | } | ||
1365 | |||
1366 | static int sd_setcontrast(struct gspca_dev *gspca_dev, __s32 val) | ||
1367 | { | ||
1368 | struct sd *sd = (struct sd *) gspca_dev; | ||
1369 | |||
1370 | sd->contrast = val; | ||
1371 | if (gspca_dev->streaming) | ||
1372 | setcontrast(gspca_dev); | ||
1373 | return 0; | ||
1374 | } | ||
1375 | |||
1376 | static int sd_getcontrast(struct gspca_dev *gspca_dev, __s32 *val) | ||
1377 | { | ||
1378 | struct sd *sd = (struct sd *) gspca_dev; | ||
1379 | |||
1380 | *val = sd->contrast; | ||
1381 | return 0; | ||
1382 | } | ||
1383 | |||
1384 | static int sd_querymenu(struct gspca_dev *gspca_dev, | 1138 | static int sd_querymenu(struct gspca_dev *gspca_dev, |
1385 | struct v4l2_querymenu *menu) | 1139 | struct v4l2_querymenu *menu) |
1386 | { | 1140 | { |
@@ -1418,27 +1172,47 @@ static const struct sd_desc sd_desc = { | |||
1418 | }; | 1172 | }; |
1419 | 1173 | ||
1420 | /* -- module initialisation -- */ | 1174 | /* -- module initialisation -- */ |
1421 | #define DVNM(name) .driver_info = (kernel_ulong_t) name | 1175 | #define SFCI(sensor, flags, nctrls, i2c_addr) \ |
1176 | .driver_info = (SENSOR_ ## sensor << 24) \ | ||
1177 | | ((flags) << 16) \ | ||
1178 | | ((nctrls) << 8) \ | ||
1179 | | (i2c_addr) | ||
1422 | static __devinitdata struct usb_device_id device_table[] = { | 1180 | static __devinitdata struct usb_device_id device_table[] = { |
1423 | #ifndef CONFIG_USB_SN9C102 | 1181 | #ifndef CONFIG_USB_SN9C102 |
1424 | {USB_DEVICE(0x0c45, 0x6001), DVNM("Genius VideoCAM NB")}, | 1182 | {USB_DEVICE(0x0c45, 0x6001), /* SN9C102 */ |
1425 | {USB_DEVICE(0x0c45, 0x6005), DVNM("Sweex Tas5110")}, | 1183 | SFCI(TAS5110, F_GAIN|F_AUTO|F_SIF, 4, 0)}, |
1426 | {USB_DEVICE(0x0c45, 0x6007), DVNM("Sonix sn9c101 + Tas5110D")}, | 1184 | {USB_DEVICE(0x0c45, 0x6005), /* SN9C101 */ |
1427 | {USB_DEVICE(0x0c45, 0x6009), DVNM("spcaCam@120")}, | 1185 | SFCI(TAS5110, F_GAIN|F_AUTO|F_SIF, 4, 0)}, |
1428 | {USB_DEVICE(0x0c45, 0x600d), DVNM("spcaCam@120")}, | 1186 | {USB_DEVICE(0x0c45, 0x6007), /* SN9C101 */ |
1187 | SFCI(TAS5110, F_GAIN|F_AUTO|F_SIF, 4, 0)}, | ||
1188 | {USB_DEVICE(0x0c45, 0x6009), /* SN9C101 */ | ||
1189 | SFCI(PAS106, F_SIF, 2, 0)}, | ||
1190 | {USB_DEVICE(0x0c45, 0x600d), /* SN9C101 */ | ||
1191 | SFCI(PAS106, F_SIF, 2, 0)}, | ||
1429 | #endif | 1192 | #endif |
1430 | {USB_DEVICE(0x0c45, 0x6011), DVNM("MAX Webcam Microdia")}, | 1193 | {USB_DEVICE(0x0c45, 0x6011), /* SN9C101 - SN9C101G */ |
1194 | SFCI(OV6650, F_GAIN|F_AUTO|F_SIF, 5, 0x60)}, | ||
1431 | #ifndef CONFIG_USB_SN9C102 | 1195 | #ifndef CONFIG_USB_SN9C102 |
1432 | {USB_DEVICE(0x0c45, 0x6019), DVNM("Generic Sonix OV7630")}, | 1196 | {USB_DEVICE(0x0c45, 0x6019), /* SN9C101 */ |
1433 | {USB_DEVICE(0x0c45, 0x6024), DVNM("Generic Sonix Tas5130c")}, | 1197 | SFCI(OV7630, F_GAIN|F_AUTO, 5, 0x21)}, |
1434 | {USB_DEVICE(0x0c45, 0x6025), DVNM("Xcam Shanga")}, | 1198 | {USB_DEVICE(0x0c45, 0x6024), /* SN9C102 */ |
1435 | {USB_DEVICE(0x0c45, 0x6028), DVNM("Sonix Btc Pc380")}, | 1199 | SFCI(TAS5130CXX, 0, 2, 0)}, |
1436 | {USB_DEVICE(0x0c45, 0x6029), DVNM("spcaCam@150")}, | 1200 | {USB_DEVICE(0x0c45, 0x6025), /* SN9C102 */ |
1437 | {USB_DEVICE(0x0c45, 0x602c), DVNM("Generic Sonix OV7630")}, | 1201 | SFCI(TAS5130CXX, 0, 2, 0)}, |
1438 | {USB_DEVICE(0x0c45, 0x602d), DVNM("LIC-200 LG")}, | 1202 | {USB_DEVICE(0x0c45, 0x6028), /* SN9C102 */ |
1439 | {USB_DEVICE(0x0c45, 0x602e), DVNM("Genius VideoCam Messenger")}, | 1203 | SFCI(PAS202, 0, 2, 0)}, |
1440 | {USB_DEVICE(0x0c45, 0x60af), DVNM("Trust WB3100P")}, | 1204 | {USB_DEVICE(0x0c45, 0x6029), /* SN9C101 */ |
1441 | {USB_DEVICE(0x0c45, 0x60b0), DVNM("Genius VideoCam Look")}, | 1205 | SFCI(PAS106, F_SIF, 2, 0)}, |
1206 | {USB_DEVICE(0x0c45, 0x602c), /* SN9C102 */ | ||
1207 | SFCI(OV7630, F_GAIN|F_AUTO, 5, 0x21)}, | ||
1208 | {USB_DEVICE(0x0c45, 0x602d), /* SN9C102 */ | ||
1209 | SFCI(HV7131R, 0, 2, 0)}, | ||
1210 | {USB_DEVICE(0x0c45, 0x602e), /* SN9C102 */ | ||
1211 | SFCI(OV7630, F_GAIN|F_AUTO, 5, 0x21)}, | ||
1212 | {USB_DEVICE(0x0c45, 0x60af), /* SN9C103 */ | ||
1213 | SFCI(PAS202, F_H18, 2, 0)}, | ||
1214 | {USB_DEVICE(0x0c45, 0x60b0), /* SN9C103 */ | ||
1215 | SFCI(OV7630, F_GAIN|F_AUTO|F_H18, 5, 0x21)}, | ||
1442 | #endif | 1216 | #endif |
1443 | {} | 1217 | {} |
1444 | }; | 1218 | }; |
@@ -1464,7 +1238,7 @@ static int __init sd_mod_init(void) | |||
1464 | { | 1238 | { |
1465 | if (usb_register(&sd_driver) < 0) | 1239 | if (usb_register(&sd_driver) < 0) |
1466 | return -1; | 1240 | return -1; |
1467 | PDEBUG(D_PROBE, "v%s registered", version); | 1241 | PDEBUG(D_PROBE, "registered"); |
1468 | return 0; | 1242 | return 0; |
1469 | } | 1243 | } |
1470 | static void __exit sd_mod_exit(void) | 1244 | static void __exit sd_mod_exit(void) |
diff --git a/drivers/media/video/gspca/sonixj.c b/drivers/media/video/gspca/sonixj.c index 3e68b9926956..33a3df1f6915 100644 --- a/drivers/media/video/gspca/sonixj.c +++ b/drivers/media/video/gspca/sonixj.c | |||
@@ -24,9 +24,6 @@ | |||
24 | #include "gspca.h" | 24 | #include "gspca.h" |
25 | #include "jpeg.h" | 25 | #include "jpeg.h" |
26 | 26 | ||
27 | #define DRIVER_VERSION_NUMBER KERNEL_VERSION(2, 1, 7) | ||
28 | static const char version[] = "2.1.7"; | ||
29 | |||
30 | MODULE_AUTHOR("Michel Xhaard <mxhaard@users.sourceforge.net>"); | 27 | MODULE_AUTHOR("Michel Xhaard <mxhaard@users.sourceforge.net>"); |
31 | MODULE_DESCRIPTION("GSPCA/SONIX JPEG USB Camera Driver"); | 28 | MODULE_DESCRIPTION("GSPCA/SONIX JPEG USB Camera Driver"); |
32 | MODULE_LICENSE("GPL"); | 29 | MODULE_LICENSE("GPL"); |
@@ -361,6 +358,7 @@ static const __u8 mo4000_sensor_init[][8] = { | |||
361 | }; | 358 | }; |
362 | static const __u8 ov7660_sensor_init[][8] = { | 359 | static const __u8 ov7660_sensor_init[][8] = { |
363 | {0xa1, 0x21, 0x12, 0x80, 0x00, 0x00, 0x00, 0x10}, /* reset SCCB */ | 360 | {0xa1, 0x21, 0x12, 0x80, 0x00, 0x00, 0x00, 0x10}, /* reset SCCB */ |
361 | /* (delay 20ms) */ | ||
364 | {0xa1, 0x21, 0x12, 0x05, 0x00, 0x00, 0x00, 0x10}, | 362 | {0xa1, 0x21, 0x12, 0x05, 0x00, 0x00, 0x00, 0x10}, |
365 | /* Outformat ?? rawRGB */ | 363 | /* Outformat ?? rawRGB */ |
366 | {0xa1, 0x21, 0x13, 0xb8, 0x00, 0x00, 0x00, 0x10}, /* init COM8 */ | 364 | {0xa1, 0x21, 0x13, 0xb8, 0x00, 0x00, 0x00, 0x10}, /* init COM8 */ |
@@ -539,13 +537,31 @@ static void reg_r(struct gspca_dev *gspca_dev, | |||
539 | value, 0, | 537 | value, 0, |
540 | gspca_dev->usb_buf, len, | 538 | gspca_dev->usb_buf, len, |
541 | 500); | 539 | 500); |
540 | PDEBUG(D_USBI, "reg_r [%02x] -> %02x", value, gspca_dev->usb_buf[0]); | ||
542 | } | 541 | } |
543 | 542 | ||
543 | static void reg_w1(struct gspca_dev *gspca_dev, | ||
544 | __u16 value, | ||
545 | __u8 data) | ||
546 | { | ||
547 | PDEBUG(D_USBO, "reg_w1 [%02x] = %02x", value, data); | ||
548 | gspca_dev->usb_buf[0] = data; | ||
549 | usb_control_msg(gspca_dev->dev, | ||
550 | usb_sndctrlpipe(gspca_dev->dev, 0), | ||
551 | 0x08, | ||
552 | USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_INTERFACE, | ||
553 | value, | ||
554 | 0, | ||
555 | gspca_dev->usb_buf, 1, | ||
556 | 500); | ||
557 | } | ||
544 | static void reg_w(struct gspca_dev *gspca_dev, | 558 | static void reg_w(struct gspca_dev *gspca_dev, |
545 | __u16 value, | 559 | __u16 value, |
546 | const __u8 *buffer, | 560 | const __u8 *buffer, |
547 | int len) | 561 | int len) |
548 | { | 562 | { |
563 | PDEBUG(D_USBO, "reg_w [%02x] = %02x %02x ..", | ||
564 | value, buffer[0], buffer[1]); | ||
549 | if (len <= sizeof gspca_dev->usb_buf) { | 565 | if (len <= sizeof gspca_dev->usb_buf) { |
550 | memcpy(gspca_dev->usb_buf, buffer, len); | 566 | memcpy(gspca_dev->usb_buf, buffer, len); |
551 | usb_control_msg(gspca_dev->dev, | 567 | usb_control_msg(gspca_dev->dev, |
@@ -571,31 +587,42 @@ static void reg_w(struct gspca_dev *gspca_dev, | |||
571 | } | 587 | } |
572 | } | 588 | } |
573 | 589 | ||
574 | /* I2C write 2 bytes */ | 590 | /* I2C write 1 byte */ |
575 | static void i2c_w2(struct gspca_dev *gspca_dev, | 591 | static void i2c_w1(struct gspca_dev *gspca_dev, __u8 reg, __u8 val) |
576 | const __u8 *buffer) | ||
577 | { | 592 | { |
578 | struct sd *sd = (struct sd *) gspca_dev; | 593 | struct sd *sd = (struct sd *) gspca_dev; |
579 | __u8 mode[8]; | ||
580 | 594 | ||
581 | /* is i2c ready */ | 595 | PDEBUG(D_USBO, "i2c_w2 [%02x] = %02x", reg, val); |
582 | mode[0] = 0x81 | (2 << 4); | 596 | gspca_dev->usb_buf[0] = 0x81 | (2 << 4); /* = a1 */ |
583 | mode[1] = sd->i2c_base; | 597 | gspca_dev->usb_buf[1] = sd->i2c_base; |
584 | mode[2] = buffer[0]; | 598 | gspca_dev->usb_buf[2] = reg; |
585 | mode[3] = buffer[1]; | 599 | gspca_dev->usb_buf[3] = val; |
586 | mode[4] = 0; | 600 | gspca_dev->usb_buf[4] = 0; |
587 | mode[5] = 0; | 601 | gspca_dev->usb_buf[5] = 0; |
588 | mode[6] = 0; | 602 | gspca_dev->usb_buf[6] = 0; |
589 | mode[7] = 0x10; | 603 | gspca_dev->usb_buf[7] = 0x10; |
590 | reg_w(gspca_dev, 0x08, mode, 8); | 604 | usb_control_msg(gspca_dev->dev, |
605 | usb_sndctrlpipe(gspca_dev->dev, 0), | ||
606 | 0x08, | ||
607 | USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_INTERFACE, | ||
608 | 0x08, /* value = i2c */ | ||
609 | 0, | ||
610 | gspca_dev->usb_buf, 8, | ||
611 | 500); | ||
591 | } | 612 | } |
592 | 613 | ||
593 | /* I2C write 8 bytes */ | 614 | /* I2C write 8 bytes */ |
594 | static void i2c_w8(struct gspca_dev *gspca_dev, | 615 | static void i2c_w8(struct gspca_dev *gspca_dev, |
595 | const __u8 *buffer) | 616 | const __u8 *buffer) |
596 | { | 617 | { |
597 | reg_w(gspca_dev, 0x08, buffer, 8); | 618 | memcpy(gspca_dev->usb_buf, buffer, 8); |
598 | msleep(1); | 619 | usb_control_msg(gspca_dev->dev, |
620 | usb_sndctrlpipe(gspca_dev->dev, 0), | ||
621 | 0x08, | ||
622 | USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_INTERFACE, | ||
623 | 0x08, 0, /* value, index */ | ||
624 | gspca_dev->usb_buf, 8, | ||
625 | 500); | ||
599 | } | 626 | } |
600 | 627 | ||
601 | /* read 5 bytes in gspca_dev->usb_buf */ | 628 | /* read 5 bytes in gspca_dev->usb_buf */ |
@@ -613,24 +640,21 @@ static void i2c_r5(struct gspca_dev *gspca_dev, __u8 reg) | |||
613 | mode[6] = 0; | 640 | mode[6] = 0; |
614 | mode[7] = 0x10; | 641 | mode[7] = 0x10; |
615 | i2c_w8(gspca_dev, mode); | 642 | i2c_w8(gspca_dev, mode); |
643 | msleep(2); | ||
616 | mode[0] = 0x81 | (5 << 4) | 0x02; | 644 | mode[0] = 0x81 | (5 << 4) | 0x02; |
617 | mode[2] = 0; | 645 | mode[2] = 0; |
618 | i2c_w8(gspca_dev, mode); | 646 | i2c_w8(gspca_dev, mode); |
647 | msleep(2); | ||
619 | reg_r(gspca_dev, 0x0a, 5); | 648 | reg_r(gspca_dev, 0x0a, 5); |
620 | } | 649 | } |
621 | 650 | ||
622 | static int probesensor(struct gspca_dev *gspca_dev) | 651 | static int probesensor(struct gspca_dev *gspca_dev) |
623 | { | 652 | { |
624 | struct sd *sd = (struct sd *) gspca_dev; | 653 | struct sd *sd = (struct sd *) gspca_dev; |
625 | __u8 reg02; | ||
626 | static const __u8 datasend[] = { 2, 0 }; | ||
627 | /* reg val1 val2 val3 val4 */ | ||
628 | 654 | ||
629 | i2c_w2(gspca_dev, datasend); | 655 | i2c_w1(gspca_dev, 0x02, 0); /* sensor wakeup */ |
630 | /* should write 0xa1 0x11 0x02 0x00 0x00 0x00 0x00 the 0x10 is add by i2cw */ | ||
631 | msleep(10); | 656 | msleep(10); |
632 | reg02 = 0x66; | 657 | reg_w1(gspca_dev, 0x02, 0x66); /* Gpio on */ |
633 | reg_w(gspca_dev, 0x02, ®02, 1); /* Gpio on */ | ||
634 | msleep(10); | 658 | msleep(10); |
635 | i2c_r5(gspca_dev, 0); /* read sensor id */ | 659 | i2c_r5(gspca_dev, 0); /* read sensor id */ |
636 | if (gspca_dev->usb_buf[0] == 0x02 | 660 | if (gspca_dev->usb_buf[0] == 0x02 |
@@ -642,7 +666,7 @@ static int probesensor(struct gspca_dev *gspca_dev) | |||
642 | sd->sensor = SENSOR_HV7131R; | 666 | sd->sensor = SENSOR_HV7131R; |
643 | return SENSOR_HV7131R; | 667 | return SENSOR_HV7131R; |
644 | } | 668 | } |
645 | PDEBUG(D_PROBE, "Find Sensor %d %d %d", | 669 | PDEBUG(D_PROBE, "Find Sensor 0x%02x 0x%02x 0x%02x", |
646 | gspca_dev->usb_buf[0], gspca_dev->usb_buf[1], | 670 | gspca_dev->usb_buf[0], gspca_dev->usb_buf[1], |
647 | gspca_dev->usb_buf[2]); | 671 | gspca_dev->usb_buf[2]); |
648 | PDEBUG(D_PROBE, "Sensor sn9c102P Not found"); | 672 | PDEBUG(D_PROBE, "Sensor sn9c102P Not found"); |
@@ -653,8 +677,6 @@ static int configure_gpio(struct gspca_dev *gspca_dev, | |||
653 | const __u8 *sn9c1xx) | 677 | const __u8 *sn9c1xx) |
654 | { | 678 | { |
655 | struct sd *sd = (struct sd *) gspca_dev; | 679 | struct sd *sd = (struct sd *) gspca_dev; |
656 | __u8 data; | ||
657 | __u8 regF1; | ||
658 | const __u8 *reg9a; | 680 | const __u8 *reg9a; |
659 | static const __u8 reg9a_def[] = | 681 | static const __u8 reg9a_def[] = |
660 | {0x08, 0x40, 0x20, 0x10, 0x00, 0x04}; | 682 | {0x08, 0x40, 0x20, 0x10, 0x00, 0x04}; |
@@ -663,15 +685,13 @@ static int configure_gpio(struct gspca_dev *gspca_dev, | |||
663 | static const __u8 reg9a_sn9c325[] = | 685 | static const __u8 reg9a_sn9c325[] = |
664 | {0x0a, 0x40, 0x38, 0x30, 0x00, 0x20}; | 686 | {0x0a, 0x40, 0x38, 0x30, 0x00, 0x20}; |
665 | 687 | ||
666 | 688 | reg_w1(gspca_dev, 0xf1, 0x00); | |
667 | regF1 = 0x00; | 689 | reg_w1(gspca_dev, 0x01, sn9c1xx[0]); /*fixme:jfm was [1] en v1*/ |
668 | reg_w(gspca_dev, 0xf1, ®F1, 1); | ||
669 | reg_w(gspca_dev, 0x01, &sn9c1xx[0], 1); /*fixme:jfm was [1] en v1*/ | ||
670 | 690 | ||
671 | /* configure gpio */ | 691 | /* configure gpio */ |
672 | reg_w(gspca_dev, 0x01, &sn9c1xx[1], 2); | 692 | reg_w(gspca_dev, 0x01, &sn9c1xx[1], 2); |
673 | reg_w(gspca_dev, 0x08, &sn9c1xx[8], 2); | 693 | reg_w(gspca_dev, 0x08, &sn9c1xx[8], 2); |
674 | reg_w(gspca_dev, 0x17, &sn9c1xx[0x17], 5); /* jfm was 3 */ | 694 | reg_w(gspca_dev, 0x17, &sn9c1xx[0x17], 5); /* jfm len was 3 */ |
675 | switch (sd->bridge) { | 695 | switch (sd->bridge) { |
676 | case BRIDGE_SN9C325: | 696 | case BRIDGE_SN9C325: |
677 | reg9a = reg9a_sn9c325; | 697 | reg9a = reg9a_sn9c325; |
@@ -685,35 +705,25 @@ static int configure_gpio(struct gspca_dev *gspca_dev, | |||
685 | } | 705 | } |
686 | reg_w(gspca_dev, 0x9a, reg9a, 6); | 706 | reg_w(gspca_dev, 0x9a, reg9a, 6); |
687 | 707 | ||
688 | data = 0x60; /*fixme:jfm 60 00 00 (3) */ | 708 | reg_w1(gspca_dev, 0xd4, 0x60); /*fixme:jfm 60 00 00 (3) ? */ |
689 | reg_w(gspca_dev, 0xd4, &data, 1); | ||
690 | 709 | ||
691 | reg_w(gspca_dev, 0x03, &sn9c1xx[3], 0x0f); | 710 | reg_w(gspca_dev, 0x03, &sn9c1xx[3], 0x0f); |
692 | 711 | ||
693 | switch (sd->bridge) { | 712 | switch (sd->bridge) { |
694 | case BRIDGE_SN9C120: /* from win trace */ | 713 | case BRIDGE_SN9C120: /* from win trace */ |
695 | data = 0x61; | 714 | reg_w1(gspca_dev, 0x01, 0x61); |
696 | reg_w(gspca_dev, 0x01, &data, 1); | 715 | reg_w1(gspca_dev, 0x17, 0x20); |
697 | data = 0x20; | 716 | reg_w1(gspca_dev, 0x01, 0x60); |
698 | reg_w(gspca_dev, 0x17, &data, 1); | ||
699 | data = 0x60; | ||
700 | reg_w(gspca_dev, 0x01, &data, 1); | ||
701 | break; | 717 | break; |
702 | case BRIDGE_SN9C325: | 718 | case BRIDGE_SN9C325: |
703 | data = 0x43; | 719 | reg_w1(gspca_dev, 0x01, 0x43); |
704 | reg_w(gspca_dev, 0x01, &data, 1); | 720 | reg_w1(gspca_dev, 0x17, 0xae); |
705 | data = 0xae; | 721 | reg_w1(gspca_dev, 0x01, 0x42); |
706 | reg_w(gspca_dev, 0x17, &data, 1); | ||
707 | data = 0x42; | ||
708 | reg_w(gspca_dev, 0x01, &data, 1); | ||
709 | break; | 722 | break; |
710 | default: | 723 | default: |
711 | data = 0x43; | 724 | reg_w1(gspca_dev, 0x01, 0x43); |
712 | reg_w(gspca_dev, 0x01, &data, 1); | 725 | reg_w1(gspca_dev, 0x17, 0x61); |
713 | data = 0x61; | 726 | reg_w1(gspca_dev, 0x01, 0x42); |
714 | reg_w(gspca_dev, 0x17, &data, 1); | ||
715 | data = 0x42; | ||
716 | reg_w(gspca_dev, 0x01, &data, 1); | ||
717 | } | 727 | } |
718 | 728 | ||
719 | if (sd->sensor == SENSOR_HV7131R) { | 729 | if (sd->sensor == SENSOR_HV7131R) { |
@@ -770,6 +780,9 @@ static void ov7660_InitSensor(struct gspca_dev *gspca_dev) | |||
770 | { | 780 | { |
771 | int i = 0; | 781 | int i = 0; |
772 | 782 | ||
783 | i2c_w8(gspca_dev, ov7660_sensor_init[i]); /* reset SCCB */ | ||
784 | i++; | ||
785 | msleep(20); | ||
773 | while (ov7660_sensor_init[i][0]) { | 786 | while (ov7660_sensor_init[i][0]) { |
774 | i2c_w8(gspca_dev, ov7660_sensor_init[i]); | 787 | i2c_w8(gspca_dev, ov7660_sensor_init[i]); |
775 | i++; | 788 | i++; |
@@ -782,194 +795,16 @@ static int sd_config(struct gspca_dev *gspca_dev, | |||
782 | { | 795 | { |
783 | struct sd *sd = (struct sd *) gspca_dev; | 796 | struct sd *sd = (struct sd *) gspca_dev; |
784 | struct cam *cam; | 797 | struct cam *cam; |
785 | __u16 vendor; | ||
786 | __u16 product; | ||
787 | |||
788 | vendor = id->idVendor; | ||
789 | product = id->idProduct; | ||
790 | sd->sensor = -1; | ||
791 | switch (vendor) { | ||
792 | case 0x0458: /* Genius */ | ||
793 | /* switch (product) { | ||
794 | case 0x7025: */ | ||
795 | sd->bridge = BRIDGE_SN9C120; | ||
796 | sd->sensor = SENSOR_MI0360; | ||
797 | sd->i2c_base = 0x5d; | ||
798 | /* break; | ||
799 | } */ | ||
800 | break; | ||
801 | case 0x045e: | ||
802 | /* switch (product) { | ||
803 | case 0x00f5: | ||
804 | case 0x00f7: */ | ||
805 | sd->bridge = BRIDGE_SN9C105; | ||
806 | sd->sensor = SENSOR_OV7660; | ||
807 | sd->i2c_base = 0x21; | ||
808 | /* break; | ||
809 | } */ | ||
810 | break; | ||
811 | case 0x0471: /* Philips */ | ||
812 | /* switch (product) { | ||
813 | case 0x0327: | ||
814 | case 0x0328: | ||
815 | case 0x0330: */ | ||
816 | sd->bridge = BRIDGE_SN9C105; | ||
817 | sd->sensor = SENSOR_MI0360; | ||
818 | sd->i2c_base = 0x5d; | ||
819 | /* break; | ||
820 | } */ | ||
821 | break; | ||
822 | case 0x0c45: /* Sonix */ | ||
823 | switch (product) { | ||
824 | case 0x6040: | ||
825 | sd->bridge = BRIDGE_SN9C102P; | ||
826 | /* sd->sensor = SENSOR_MI0360; * from BW600.inf */ | ||
827 | /*fixme: MI0360 base=5d ? */ | ||
828 | sd->sensor = SENSOR_HV7131R; /* gspcav1 value */ | ||
829 | sd->i2c_base = 0x11; | ||
830 | break; | ||
831 | /* case 0x607a: * from BW600.inf | ||
832 | sd->bridge = BRIDGE_SN9C102P; | ||
833 | sd->sensor = SENSOR_OV7648; | ||
834 | sd->i2c_base = 0x??; | ||
835 | break; */ | ||
836 | case 0x607c: | ||
837 | sd->bridge = BRIDGE_SN9C102P; | ||
838 | sd->sensor = SENSOR_HV7131R; | ||
839 | sd->i2c_base = 0x11; | ||
840 | break; | ||
841 | /* case 0x607e: * from BW600.inf | ||
842 | sd->bridge = BRIDGE_SN9C102P; | ||
843 | sd->sensor = SENSOR_OV7630; | ||
844 | sd->i2c_base = 0x??; | ||
845 | break; */ | ||
846 | case 0x60c0: | ||
847 | sd->bridge = BRIDGE_SN9C105; | ||
848 | sd->sensor = SENSOR_MI0360; | ||
849 | sd->i2c_base = 0x5d; | ||
850 | break; | ||
851 | /* case 0x60c8: * from BW600.inf | ||
852 | sd->bridge = BRIDGE_SN9C105; | ||
853 | sd->sensor = SENSOR_OM6801; | ||
854 | sd->i2c_base = 0x??; | ||
855 | break; */ | ||
856 | /* case 0x60cc: * from BW600.inf | ||
857 | sd->bridge = BRIDGE_SN9C105; | ||
858 | sd->sensor = SENSOR_HV7131GP; | ||
859 | sd->i2c_base = 0x??; | ||
860 | break; */ | ||
861 | case 0x60ec: | ||
862 | sd->bridge = BRIDGE_SN9C105; | ||
863 | sd->sensor = SENSOR_MO4000; | ||
864 | sd->i2c_base = 0x21; | ||
865 | break; | ||
866 | /* case 0x60ef: * from BW600.inf | ||
867 | sd->bridge = BRIDGE_SN9C105; | ||
868 | sd->sensor = SENSOR_ICM105C; | ||
869 | sd->i2c_base = 0x??; | ||
870 | break; */ | ||
871 | /* case 0x60fa: * from BW600.inf | ||
872 | sd->bridge = BRIDGE_SN9C105; | ||
873 | sd->sensor = SENSOR_OV7648; | ||
874 | sd->i2c_base = 0x??; | ||
875 | break; */ | ||
876 | case 0x60fb: | ||
877 | sd->bridge = BRIDGE_SN9C105; | ||
878 | sd->sensor = SENSOR_OV7660; | ||
879 | sd->i2c_base = 0x21; | ||
880 | break; | ||
881 | case 0x60fc: | ||
882 | sd->bridge = BRIDGE_SN9C105; | ||
883 | sd->sensor = SENSOR_HV7131R; | ||
884 | sd->i2c_base = 0x11; | ||
885 | break; | ||
886 | /* case 0x60fe: * from BW600.inf | ||
887 | sd->bridge = BRIDGE_SN9C105; | ||
888 | sd->sensor = SENSOR_OV7630; | ||
889 | sd->i2c_base = 0x??; | ||
890 | break; */ | ||
891 | /* case 0x6108: * from BW600.inf | ||
892 | sd->bridge = BRIDGE_SN9C120; | ||
893 | sd->sensor = SENSOR_OM6801; | ||
894 | sd->i2c_base = 0x??; | ||
895 | break; */ | ||
896 | /* case 0x6122: * from BW600.inf | ||
897 | sd->bridge = BRIDGE_SN9C110; | ||
898 | sd->sensor = SENSOR_ICM105C; | ||
899 | sd->i2c_base = 0x??; | ||
900 | break; */ | ||
901 | case 0x612a: | ||
902 | /* sd->bridge = BRIDGE_SN9C110; * in BW600.inf */ | ||
903 | sd->bridge = BRIDGE_SN9C325; | ||
904 | sd->sensor = SENSOR_OV7648; | ||
905 | sd->i2c_base = 0x21; | ||
906 | /*fixme: sensor_init has base = 00 et 6e!*/ | ||
907 | break; | ||
908 | /* case 0x6123: * from BW600.inf | ||
909 | sd->bridge = BRIDGE_SN9C110; | ||
910 | sd->sensor = SENSOR_SanyoCCD; | ||
911 | sd->i2c_base = 0x??; | ||
912 | break; */ | ||
913 | case 0x612c: | ||
914 | sd->bridge = BRIDGE_SN9C110; | ||
915 | sd->sensor = SENSOR_MO4000; | ||
916 | sd->i2c_base = 0x21; | ||
917 | break; | ||
918 | /* case 0x612e: * from BW600.inf | ||
919 | sd->bridge = BRIDGE_SN9C110; | ||
920 | sd->sensor = SENSOR_OV7630; | ||
921 | sd->i2c_base = 0x??; | ||
922 | break; */ | ||
923 | /* case 0x612f: * from BW600.inf | ||
924 | sd->bridge = BRIDGE_SN9C110; | ||
925 | sd->sensor = SENSOR_ICM105C; | ||
926 | sd->i2c_base = 0x??; | ||
927 | break; */ | ||
928 | case 0x6130: | ||
929 | sd->bridge = BRIDGE_SN9C120; | ||
930 | sd->sensor = SENSOR_MI0360; | ||
931 | sd->i2c_base = 0x5d; | ||
932 | break; | ||
933 | case 0x6138: | ||
934 | sd->bridge = BRIDGE_SN9C120; | ||
935 | sd->sensor = SENSOR_MO4000; | ||
936 | sd->i2c_base = 0x21; | ||
937 | break; | ||
938 | /* case 0x613a: * from BW600.inf | ||
939 | sd->bridge = BRIDGE_SN9C120; | ||
940 | sd->sensor = SENSOR_OV7648; | ||
941 | sd->i2c_base = 0x??; | ||
942 | break; */ | ||
943 | case 0x613b: | ||
944 | sd->bridge = BRIDGE_SN9C120; | ||
945 | sd->sensor = SENSOR_OV7660; | ||
946 | sd->i2c_base = 0x21; | ||
947 | break; | ||
948 | case 0x613c: | ||
949 | sd->bridge = BRIDGE_SN9C120; | ||
950 | sd->sensor = SENSOR_HV7131R; | ||
951 | sd->i2c_base = 0x11; | ||
952 | break; | ||
953 | /* case 0x613e: * from BW600.inf | ||
954 | sd->bridge = BRIDGE_SN9C120; | ||
955 | sd->sensor = SENSOR_OV7630; | ||
956 | sd->i2c_base = 0x??; | ||
957 | break; */ | ||
958 | } | ||
959 | break; | ||
960 | } | ||
961 | if (sd->sensor < 0) { | ||
962 | PDEBUG(D_ERR, "Invalid vendor/product %04x:%04x", | ||
963 | vendor, product); | ||
964 | return -EINVAL; | ||
965 | } | ||
966 | 798 | ||
967 | cam = &gspca_dev->cam; | 799 | cam = &gspca_dev->cam; |
968 | cam->dev_name = (char *) id->driver_info; | ||
969 | cam->epaddr = 0x01; | 800 | cam->epaddr = 0x01; |
970 | cam->cam_mode = vga_mode; | 801 | cam->cam_mode = vga_mode; |
971 | cam->nmodes = ARRAY_SIZE(vga_mode); | 802 | cam->nmodes = ARRAY_SIZE(vga_mode); |
972 | 803 | ||
804 | sd->bridge = id->driver_info >> 16; | ||
805 | sd->sensor = id->driver_info >> 8; | ||
806 | sd->i2c_base = id->driver_info; | ||
807 | |||
973 | sd->qindex = 4; /* set the quantization table */ | 808 | sd->qindex = 4; /* set the quantization table */ |
974 | sd->brightness = BRIGHTNESS_DEF; | 809 | sd->brightness = BRIGHTNESS_DEF; |
975 | sd->contrast = CONTRAST_DEF; | 810 | sd->contrast = CONTRAST_DEF; |
@@ -983,34 +818,26 @@ static int sd_open(struct gspca_dev *gspca_dev) | |||
983 | { | 818 | { |
984 | struct sd *sd = (struct sd *) gspca_dev; | 819 | struct sd *sd = (struct sd *) gspca_dev; |
985 | /* const __u8 *sn9c1xx; */ | 820 | /* const __u8 *sn9c1xx; */ |
986 | __u8 regF1; | ||
987 | __u8 regGpio[] = { 0x29, 0x74 }; | 821 | __u8 regGpio[] = { 0x29, 0x74 }; |
822 | __u8 regF1; | ||
988 | 823 | ||
989 | /* setup a selector by bridge */ | 824 | /* setup a selector by bridge */ |
990 | regF1 = 0x01; | 825 | reg_w1(gspca_dev, 0xf1, 0x01); |
991 | reg_w(gspca_dev, 0xf1, ®F1, 1); | ||
992 | reg_r(gspca_dev, 0x00, 1); /* -> regF1 = 0x00 */ | 826 | reg_r(gspca_dev, 0x00, 1); /* -> regF1 = 0x00 */ |
993 | regF1 = gspca_dev->usb_buf[0]; | 827 | reg_w1(gspca_dev, 0xf1, gspca_dev->usb_buf[0]); |
994 | reg_w(gspca_dev, 0xf1, ®F1, 1); | ||
995 | reg_r(gspca_dev, 0x00, 1); | 828 | reg_r(gspca_dev, 0x00, 1); |
996 | regF1 = gspca_dev->usb_buf[0]; | 829 | regF1 = gspca_dev->usb_buf[0]; |
997 | switch (sd->bridge) { | 830 | switch (sd->bridge) { |
998 | case BRIDGE_SN9C102P: | 831 | case BRIDGE_SN9C102P: |
999 | if (regF1 != 0x11) | 832 | if (regF1 != 0x11) |
1000 | return -ENODEV; | 833 | return -ENODEV; |
1001 | reg_w(gspca_dev, 0x02, ®Gpio[1], 1); | 834 | reg_w1(gspca_dev, 0x02, regGpio[1]); |
1002 | break; | 835 | break; |
1003 | case BRIDGE_SN9C105: | 836 | case BRIDGE_SN9C105: |
1004 | if (regF1 != 0x11) | 837 | if (regF1 != 0x11) |
1005 | return -ENODEV; | 838 | return -ENODEV; |
1006 | reg_w(gspca_dev, 0x02, regGpio, 2); | 839 | reg_w(gspca_dev, 0x02, regGpio, 2); |
1007 | break; | 840 | break; |
1008 | case BRIDGE_SN9C110: | ||
1009 | if (regF1 != 0x12) | ||
1010 | return -ENODEV; | ||
1011 | regGpio[1] = 0x62; | ||
1012 | reg_w(gspca_dev, 0x02, ®Gpio[1], 1); | ||
1013 | break; | ||
1014 | case BRIDGE_SN9C120: | 841 | case BRIDGE_SN9C120: |
1015 | if (regF1 != 0x12) | 842 | if (regF1 != 0x12) |
1016 | return -ENODEV; | 843 | return -ENODEV; |
@@ -1018,16 +845,15 @@ static int sd_open(struct gspca_dev *gspca_dev) | |||
1018 | reg_w(gspca_dev, 0x02, regGpio, 2); | 845 | reg_w(gspca_dev, 0x02, regGpio, 2); |
1019 | break; | 846 | break; |
1020 | default: | 847 | default: |
848 | /* case BRIDGE_SN9C110: */ | ||
1021 | /* case BRIDGE_SN9C325: */ | 849 | /* case BRIDGE_SN9C325: */ |
1022 | if (regF1 != 0x12) | 850 | if (regF1 != 0x12) |
1023 | return -ENODEV; | 851 | return -ENODEV; |
1024 | regGpio[1] = 0x62; | 852 | reg_w1(gspca_dev, 0x02, 0x62); |
1025 | reg_w(gspca_dev, 0x02, ®Gpio[1], 1); | ||
1026 | break; | 853 | break; |
1027 | } | 854 | } |
1028 | 855 | ||
1029 | regF1 = 0x01; | 856 | reg_w1(gspca_dev, 0xf1, 0x01); |
1030 | reg_w(gspca_dev, 0xf1, ®F1, 1); | ||
1031 | 857 | ||
1032 | return 0; | 858 | return 0; |
1033 | } | 859 | } |
@@ -1123,7 +949,7 @@ static void setbrightness(struct gspca_dev *gspca_dev) | |||
1123 | } | 949 | } |
1124 | 950 | ||
1125 | k2 = sd->brightness >> 10; | 951 | k2 = sd->brightness >> 10; |
1126 | reg_w(gspca_dev, 0x96, &k2, 1); | 952 | reg_w1(gspca_dev, 0x96, k2); |
1127 | } | 953 | } |
1128 | 954 | ||
1129 | static void setcontrast(struct gspca_dev *gspca_dev) | 955 | static void setcontrast(struct gspca_dev *gspca_dev) |
@@ -1152,7 +978,7 @@ static void setcolors(struct gspca_dev *gspca_dev) | |||
1152 | data = (colour + 32) & 0x7f; /* blue */ | 978 | data = (colour + 32) & 0x7f; /* blue */ |
1153 | else | 979 | else |
1154 | data = (-colour + 32) & 0x7f; /* red */ | 980 | data = (-colour + 32) & 0x7f; /* red */ |
1155 | reg_w(gspca_dev, 0x05, &data, 1); | 981 | reg_w1(gspca_dev, 0x05, data); |
1156 | } | 982 | } |
1157 | 983 | ||
1158 | /* -- start the camera -- */ | 984 | /* -- start the camera -- */ |
@@ -1165,7 +991,6 @@ static void sd_start(struct gspca_dev *gspca_dev) | |||
1165 | __u8 reg17; | 991 | __u8 reg17; |
1166 | const __u8 *sn9c1xx; | 992 | const __u8 *sn9c1xx; |
1167 | int mode; | 993 | int mode; |
1168 | static const __u8 DC29[] = { 0x6a, 0x50, 0x00, 0x00, 0x50, 0x3c }; | ||
1169 | static const __u8 C0[] = { 0x2d, 0x2d, 0x3a, 0x05, 0x04, 0x3f }; | 994 | static const __u8 C0[] = { 0x2d, 0x2d, 0x3a, 0x05, 0x04, 0x3f }; |
1170 | static const __u8 CA[] = { 0x28, 0xd8, 0x14, 0xec }; | 995 | static const __u8 CA[] = { 0x28, 0xd8, 0x14, 0xec }; |
1171 | static const __u8 CA_sn9c120[] = | 996 | static const __u8 CA_sn9c120[] = |
@@ -1179,21 +1004,20 @@ static void sd_start(struct gspca_dev *gspca_dev) | |||
1179 | 1004 | ||
1180 | /*fixme:jfm this sequence should appear at end of sd_start */ | 1005 | /*fixme:jfm this sequence should appear at end of sd_start */ |
1181 | /* with | 1006 | /* with |
1182 | data = 0x44; | 1007 | reg_w1(gspca_dev, 0x01, 0x44); */ |
1183 | reg_w(gspca_dev, 0x01, &data, 1); */ | 1008 | reg_w1(gspca_dev, 0x15, sn9c1xx[0x15]); |
1184 | reg_w(gspca_dev, 0x15, &sn9c1xx[0x15], 1); | 1009 | reg_w1(gspca_dev, 0x16, sn9c1xx[0x16]); |
1185 | reg_w(gspca_dev, 0x16, &sn9c1xx[0x16], 1); | 1010 | reg_w1(gspca_dev, 0x12, sn9c1xx[0x12]); |
1186 | reg_w(gspca_dev, 0x12, &sn9c1xx[0x12], 1); | 1011 | reg_w1(gspca_dev, 0x13, sn9c1xx[0x13]); |
1187 | reg_w(gspca_dev, 0x13, &sn9c1xx[0x13], 1); | 1012 | reg_w1(gspca_dev, 0x18, sn9c1xx[0x18]); |
1188 | reg_w(gspca_dev, 0x18, &sn9c1xx[0x18], 1); | 1013 | reg_w1(gspca_dev, 0xd2, 0x6a); /* DC29 */ |
1189 | reg_w(gspca_dev, 0xd2, &DC29[0], 1); | 1014 | reg_w1(gspca_dev, 0xd3, 0x50); |
1190 | reg_w(gspca_dev, 0xd3, &DC29[1], 1); | 1015 | reg_w1(gspca_dev, 0xc6, 0x00); |
1191 | reg_w(gspca_dev, 0xc6, &DC29[2], 1); | 1016 | reg_w1(gspca_dev, 0xc7, 0x00); |
1192 | reg_w(gspca_dev, 0xc7, &DC29[3], 1); | 1017 | reg_w1(gspca_dev, 0xc8, 0x50); |
1193 | reg_w(gspca_dev, 0xc8, &DC29[4], 1); | 1018 | reg_w1(gspca_dev, 0xc9, 0x3c); |
1194 | reg_w(gspca_dev, 0xc9, &DC29[5], 1); | ||
1195 | /*fixme:jfm end of ending sequence */ | 1019 | /*fixme:jfm end of ending sequence */ |
1196 | reg_w(gspca_dev, 0x18, &sn9c1xx[0x18], 1); | 1020 | reg_w1(gspca_dev, 0x18, sn9c1xx[0x18]); |
1197 | switch (sd->bridge) { | 1021 | switch (sd->bridge) { |
1198 | case BRIDGE_SN9C325: | 1022 | case BRIDGE_SN9C325: |
1199 | data = 0xae; | 1023 | data = 0xae; |
@@ -1205,11 +1029,11 @@ static void sd_start(struct gspca_dev *gspca_dev) | |||
1205 | data = 0x60; | 1029 | data = 0x60; |
1206 | break; | 1030 | break; |
1207 | } | 1031 | } |
1208 | reg_w(gspca_dev, 0x17, &data, 1); | 1032 | reg_w1(gspca_dev, 0x17, data); |
1209 | reg_w(gspca_dev, 0x05, &sn9c1xx[5], 1); | 1033 | reg_w1(gspca_dev, 0x05, sn9c1xx[5]); |
1210 | reg_w(gspca_dev, 0x07, &sn9c1xx[7], 1); | 1034 | reg_w1(gspca_dev, 0x07, sn9c1xx[7]); |
1211 | reg_w(gspca_dev, 0x06, &sn9c1xx[6], 1); | 1035 | reg_w1(gspca_dev, 0x06, sn9c1xx[6]); |
1212 | reg_w(gspca_dev, 0x14, &sn9c1xx[0x14], 1); | 1036 | reg_w1(gspca_dev, 0x14, sn9c1xx[0x14]); |
1213 | switch (sd->bridge) { | 1037 | switch (sd->bridge) { |
1214 | case BRIDGE_SN9C325: | 1038 | case BRIDGE_SN9C325: |
1215 | reg_w(gspca_dev, 0x20, regsn20_sn9c325, | 1039 | reg_w(gspca_dev, 0x20, regsn20_sn9c325, |
@@ -1217,10 +1041,8 @@ static void sd_start(struct gspca_dev *gspca_dev) | |||
1217 | for (i = 0; i < 8; i++) | 1041 | for (i = 0; i < 8; i++) |
1218 | reg_w(gspca_dev, 0x84, reg84_sn9c325, | 1042 | reg_w(gspca_dev, 0x84, reg84_sn9c325, |
1219 | sizeof reg84_sn9c325); | 1043 | sizeof reg84_sn9c325); |
1220 | data = 0x0a; | 1044 | reg_w1(gspca_dev, 0x9a, 0x0a); |
1221 | reg_w(gspca_dev, 0x9a, &data, 1); | 1045 | reg_w1(gspca_dev, 0x99, 0x60); |
1222 | data = 0x60; | ||
1223 | reg_w(gspca_dev, 0x99, &data, 1); | ||
1224 | break; | 1046 | break; |
1225 | case BRIDGE_SN9C120: | 1047 | case BRIDGE_SN9C120: |
1226 | reg_w(gspca_dev, 0x20, regsn20_sn9c120, | 1048 | reg_w(gspca_dev, 0x20, regsn20_sn9c120, |
@@ -1233,39 +1055,30 @@ static void sd_start(struct gspca_dev *gspca_dev) | |||
1233 | sizeof reg84_sn9c120_2); | 1055 | sizeof reg84_sn9c120_2); |
1234 | reg_w(gspca_dev, 0x84, reg84_sn9c120_3, | 1056 | reg_w(gspca_dev, 0x84, reg84_sn9c120_3, |
1235 | sizeof reg84_sn9c120_3); | 1057 | sizeof reg84_sn9c120_3); |
1236 | data = 0x05; | 1058 | reg_w1(gspca_dev, 0x9a, 0x05); |
1237 | reg_w(gspca_dev, 0x9a, &data, 1); | 1059 | reg_w1(gspca_dev, 0x99, 0x5b); |
1238 | data = 0x5b; | ||
1239 | reg_w(gspca_dev, 0x99, &data, 1); | ||
1240 | break; | 1060 | break; |
1241 | default: | 1061 | default: |
1242 | reg_w(gspca_dev, 0x20, regsn20, sizeof regsn20); | 1062 | reg_w(gspca_dev, 0x20, regsn20, sizeof regsn20); |
1243 | for (i = 0; i < 8; i++) | 1063 | for (i = 0; i < 8; i++) |
1244 | reg_w(gspca_dev, 0x84, reg84, sizeof reg84); | 1064 | reg_w(gspca_dev, 0x84, reg84, sizeof reg84); |
1245 | data = 0x08; | 1065 | reg_w1(gspca_dev, 0x9a, 0x08); |
1246 | reg_w(gspca_dev, 0x9a, &data, 1); | 1066 | reg_w1(gspca_dev, 0x99, 0x59); |
1247 | data = 0x59; | ||
1248 | reg_w(gspca_dev, 0x99, &data, 1); | ||
1249 | break; | 1067 | break; |
1250 | } | 1068 | } |
1251 | 1069 | ||
1252 | mode = gspca_dev->cam.cam_mode[(int) gspca_dev->curr_mode].priv; | 1070 | mode = gspca_dev->cam.cam_mode[(int) gspca_dev->curr_mode].priv; |
1253 | reg1 = 0x02; | 1071 | if (mode) |
1072 | reg1 = 0x46; /* 320 clk 48Mhz */ | ||
1073 | else | ||
1074 | reg1 = 0x06; /* 640 clk 24Mz */ | ||
1254 | reg17 = 0x61; | 1075 | reg17 = 0x61; |
1255 | switch (sd->sensor) { | 1076 | switch (sd->sensor) { |
1256 | case SENSOR_HV7131R: | 1077 | case SENSOR_HV7131R: |
1257 | hv7131R_InitSensor(gspca_dev); | 1078 | hv7131R_InitSensor(gspca_dev); |
1258 | if (mode) | ||
1259 | reg1 = 0x46; /* 320 clk 48Mhz */ | ||
1260 | else | ||
1261 | reg1 = 0x06; /* 640 clk 24Mz */ | ||
1262 | break; | 1079 | break; |
1263 | case SENSOR_MI0360: | 1080 | case SENSOR_MI0360: |
1264 | mi0360_InitSensor(gspca_dev); | 1081 | mi0360_InitSensor(gspca_dev); |
1265 | if (mode) | ||
1266 | reg1 = 0x46; /* 320 clk 48Mhz */ | ||
1267 | else | ||
1268 | reg1 = 0x06; /* 640 clk 24Mz */ | ||
1269 | break; | 1082 | break; |
1270 | case SENSOR_MO4000: | 1083 | case SENSOR_MO4000: |
1271 | mo4000_InitSensor(gspca_dev); | 1084 | mo4000_InitSensor(gspca_dev); |
@@ -1274,13 +1087,13 @@ static void sd_start(struct gspca_dev *gspca_dev) | |||
1274 | reg1 = 0x06; /* clk 24Mz */ | 1087 | reg1 = 0x06; /* clk 24Mz */ |
1275 | } else { | 1088 | } else { |
1276 | reg17 = 0x22; /* 640 MCKSIZE */ | 1089 | reg17 = 0x22; /* 640 MCKSIZE */ |
1277 | reg1 = 0x06; /* 640 clk 24Mz */ | 1090 | /* reg1 = 0x06; * 640 clk 24Mz (done) */ |
1278 | } | 1091 | } |
1279 | break; | 1092 | break; |
1280 | case SENSOR_OV7648: | 1093 | case SENSOR_OV7648: |
1094 | ov7648_InitSensor(gspca_dev); | ||
1281 | reg17 = 0xa2; | 1095 | reg17 = 0xa2; |
1282 | reg1 = 0x44; | 1096 | reg1 = 0x44; |
1283 | ov7648_InitSensor(gspca_dev); | ||
1284 | /* if (mode) | 1097 | /* if (mode) |
1285 | ; * 320x2... | 1098 | ; * 320x2... |
1286 | else | 1099 | else |
@@ -1292,7 +1105,7 @@ static void sd_start(struct gspca_dev *gspca_dev) | |||
1292 | if (mode) { | 1105 | if (mode) { |
1293 | /* reg17 = 0x21; * 320 */ | 1106 | /* reg17 = 0x21; * 320 */ |
1294 | /* reg1 = 0x44; */ | 1107 | /* reg1 = 0x44; */ |
1295 | reg1 = 0x46; | 1108 | /* reg1 = 0x46; (done) */ |
1296 | } else { | 1109 | } else { |
1297 | reg17 = 0xa2; /* 640 */ | 1110 | reg17 = 0xa2; /* 640 */ |
1298 | reg1 = 0x40; | 1111 | reg1 = 0x40; |
@@ -1321,16 +1134,16 @@ static void sd_start(struct gspca_dev *gspca_dev) | |||
1321 | 1134 | ||
1322 | /* here change size mode 0 -> VGA; 1 -> CIF */ | 1135 | /* here change size mode 0 -> VGA; 1 -> CIF */ |
1323 | data = 0x40 | sn9c1xx[0x18] | (mode << 4); | 1136 | data = 0x40 | sn9c1xx[0x18] | (mode << 4); |
1324 | reg_w(gspca_dev, 0x18, &data, 1); | 1137 | reg_w1(gspca_dev, 0x18, data); |
1325 | 1138 | ||
1326 | reg_w(gspca_dev, 0x100, qtable4, 0x40); | 1139 | reg_w(gspca_dev, 0x100, qtable4, 0x40); |
1327 | reg_w(gspca_dev, 0x140, qtable4 + 0x40, 0x40); | 1140 | reg_w(gspca_dev, 0x140, qtable4 + 0x40, 0x40); |
1328 | 1141 | ||
1329 | data = sn9c1xx[0x18] | (mode << 4); | 1142 | data = sn9c1xx[0x18] | (mode << 4); |
1330 | reg_w(gspca_dev, 0x18, &data, 1); | 1143 | reg_w1(gspca_dev, 0x18, data); |
1331 | 1144 | ||
1332 | reg_w(gspca_dev, 0x17, ®17, 1); | 1145 | reg_w1(gspca_dev, 0x17, reg17); |
1333 | reg_w(gspca_dev, 0x01, ®1, 1); | 1146 | reg_w1(gspca_dev, 0x01, reg1); |
1334 | setbrightness(gspca_dev); | 1147 | setbrightness(gspca_dev); |
1335 | setcontrast(gspca_dev); | 1148 | setcontrast(gspca_dev); |
1336 | } | 1149 | } |
@@ -1342,7 +1155,6 @@ static void sd_stopN(struct gspca_dev *gspca_dev) | |||
1342 | { 0xa1, 0x11, 0x02, 0x09, 0x00, 0x00, 0x00, 0x10 }; | 1155 | { 0xa1, 0x11, 0x02, 0x09, 0x00, 0x00, 0x00, 0x10 }; |
1343 | static const __u8 stopmi0360[] = | 1156 | static const __u8 stopmi0360[] = |
1344 | { 0xb1, 0x5d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x10 }; | 1157 | { 0xb1, 0x5d, 0x07, 0x00, 0x00, 0x00, 0x00, 0x10 }; |
1345 | __u8 regF1; | ||
1346 | __u8 data; | 1158 | __u8 data; |
1347 | const __u8 *sn9c1xx; | 1159 | const __u8 *sn9c1xx; |
1348 | 1160 | ||
@@ -1366,12 +1178,11 @@ static void sd_stopN(struct gspca_dev *gspca_dev) | |||
1366 | break; | 1178 | break; |
1367 | } | 1179 | } |
1368 | sn9c1xx = sn_tb[(int) sd->sensor]; | 1180 | sn9c1xx = sn_tb[(int) sd->sensor]; |
1369 | reg_w(gspca_dev, 0x01, &sn9c1xx[1], 1); | 1181 | reg_w1(gspca_dev, 0x01, sn9c1xx[1]); |
1370 | reg_w(gspca_dev, 0x17, &sn9c1xx[0x17], 1); | 1182 | reg_w1(gspca_dev, 0x17, sn9c1xx[0x17]); |
1371 | reg_w(gspca_dev, 0x01, &sn9c1xx[1], 1); | 1183 | reg_w1(gspca_dev, 0x01, sn9c1xx[1]); |
1372 | reg_w(gspca_dev, 0x01, &data, 1); | 1184 | reg_w1(gspca_dev, 0x01, data); |
1373 | regF1 = 0x01; | 1185 | reg_w1(gspca_dev, 0xf1, 0x01); |
1374 | reg_w(gspca_dev, 0xf1, ®F1, 1); | ||
1375 | } | 1186 | } |
1376 | 1187 | ||
1377 | static void sd_stop0(struct gspca_dev *gspca_dev) | 1188 | static void sd_stop0(struct gspca_dev *gspca_dev) |
@@ -1610,30 +1421,53 @@ static const struct sd_desc sd_desc = { | |||
1610 | }; | 1421 | }; |
1611 | 1422 | ||
1612 | /* -- module initialisation -- */ | 1423 | /* -- module initialisation -- */ |
1613 | #define DVNM(name) .driver_info = (kernel_ulong_t) name | 1424 | #define BSI(bridge, sensor, i2c_addr) \ |
1425 | .driver_info = (BRIDGE_ ## bridge << 16) \ | ||
1426 | | (SENSOR_ ## sensor << 8) \ | ||
1427 | | (i2c_addr) | ||
1614 | static const __devinitdata struct usb_device_id device_table[] = { | 1428 | static const __devinitdata struct usb_device_id device_table[] = { |
1615 | #ifndef CONFIG_USB_SN9C102 | 1429 | #ifndef CONFIG_USB_SN9C102 |
1616 | {USB_DEVICE(0x0458, 0x7025), DVNM("Genius Eye 311Q")}, | 1430 | {USB_DEVICE(0x0458, 0x7025), BSI(SN9C120, MI0360, 0x5d)}, |
1617 | {USB_DEVICE(0x045e, 0x00f5), DVNM("MicroSoft VX3000")}, | 1431 | {USB_DEVICE(0x045e, 0x00f5), BSI(SN9C105, OV7660, 0x21)}, |
1618 | {USB_DEVICE(0x045e, 0x00f7), DVNM("MicroSoft VX1000")}, | 1432 | {USB_DEVICE(0x045e, 0x00f7), BSI(SN9C105, OV7660, 0x21)}, |
1619 | {USB_DEVICE(0x0471, 0x0327), DVNM("Philips SPC 600 NC")}, | 1433 | {USB_DEVICE(0x0471, 0x0327), BSI(SN9C105, MI0360, 0x5d)}, |
1620 | {USB_DEVICE(0x0471, 0x0328), DVNM("Philips SPC 700 NC")}, | 1434 | {USB_DEVICE(0x0471, 0x0328), BSI(SN9C105, MI0360, 0x5d)}, |
1621 | #endif | 1435 | #endif |
1622 | {USB_DEVICE(0x0471, 0x0330), DVNM("Philips SPC 710NC")}, | 1436 | {USB_DEVICE(0x0471, 0x0330), BSI(SN9C105, MI0360, 0x5d)}, |
1623 | {USB_DEVICE(0x0c45, 0x6040), DVNM("Speed NVC 350K")}, | 1437 | {USB_DEVICE(0x0c45, 0x6040), BSI(SN9C102P, HV7131R, 0x11)}, |
1624 | {USB_DEVICE(0x0c45, 0x607c), DVNM("Sonix sn9c102p Hv7131R")}, | 1438 | /* bw600.inf: |
1625 | {USB_DEVICE(0x0c45, 0x60c0), DVNM("Sangha Sn535")}, | 1439 | {USB_DEVICE(0x0c45, 0x6040), BSI(SN9C102P, MI0360, 0x5d)}, */ |
1626 | {USB_DEVICE(0x0c45, 0x60ec), DVNM("SN9C105+MO4000")}, | 1440 | /* {USB_DEVICE(0x0c45, 0x603a), BSI(SN9C102P, OV7648, 0x??)}, */ |
1627 | {USB_DEVICE(0x0c45, 0x60fb), DVNM("Surfer NoName")}, | 1441 | /* {USB_DEVICE(0x0c45, 0x607a), BSI(SN9C102P, OV7648, 0x??)}, */ |
1628 | {USB_DEVICE(0x0c45, 0x60fc), DVNM("LG-LIC300")}, | 1442 | {USB_DEVICE(0x0c45, 0x607c), BSI(SN9C102P, HV7131R, 0x11)}, |
1629 | {USB_DEVICE(0x0c45, 0x612a), DVNM("Avant Camera")}, | 1443 | /* {USB_DEVICE(0x0c45, 0x607e), BSI(SN9C102P, OV7630, 0x??)}, */ |
1630 | {USB_DEVICE(0x0c45, 0x612c), DVNM("Typhoon Rasy Cam 1.3MPix")}, | 1444 | {USB_DEVICE(0x0c45, 0x60c0), BSI(SN9C105, MI0360, 0x5d)}, |
1445 | /* {USB_DEVICE(0x0c45, 0x60c8), BSI(SN9C105, OM6801, 0x??)}, */ | ||
1446 | /* {USB_DEVICE(0x0c45, 0x60cc), BSI(SN9C105, HV7131GP, 0x??)}, */ | ||
1447 | {USB_DEVICE(0x0c45, 0x60ec), BSI(SN9C105, MO4000, 0x21)}, | ||
1448 | /* {USB_DEVICE(0x0c45, 0x60ef), BSI(SN9C105, ICM105C, 0x??)}, */ | ||
1449 | /* {USB_DEVICE(0x0c45, 0x60fa), BSI(SN9C105, OV7648, 0x??)}, */ | ||
1450 | {USB_DEVICE(0x0c45, 0x60fb), BSI(SN9C105, OV7660, 0x21)}, | ||
1451 | {USB_DEVICE(0x0c45, 0x60fc), BSI(SN9C105, HV7131R, 0x11)}, | ||
1452 | /* {USB_DEVICE(0x0c45, 0x60fe), BSI(SN9C105, OV7630, 0x??)}, */ | ||
1453 | /* {USB_DEVICE(0x0c45, 0x6108), BSI(SN9C120, OM6801, 0x??)}, */ | ||
1454 | /* {USB_DEVICE(0x0c45, 0x6122), BSI(SN9C110, ICM105C, 0x??)}, */ | ||
1455 | /* {USB_DEVICE(0x0c45, 0x6123), BSI(SN9C110, SanyoCCD, 0x??)}, */ | ||
1456 | {USB_DEVICE(0x0c45, 0x612a), BSI(SN9C325, OV7648, 0x21)}, | ||
1457 | /* bw600.inf: | ||
1458 | {USB_DEVICE(0x0c45, 0x612a), BSI(SN9C110, OV7648, 0x21)}, */ | ||
1459 | {USB_DEVICE(0x0c45, 0x612c), BSI(SN9C110, MO4000, 0x21)}, | ||
1460 | /* {USB_DEVICE(0x0c45, 0x612e), BSI(SN9C110, OV7630, 0x??)}, */ | ||
1461 | /* {USB_DEVICE(0x0c45, 0x612f), BSI(SN9C110, ICM105C, 0x??)}, */ | ||
1631 | #ifndef CONFIG_USB_SN9C102 | 1462 | #ifndef CONFIG_USB_SN9C102 |
1632 | {USB_DEVICE(0x0c45, 0x6130), DVNM("Sonix Pccam")}, | 1463 | {USB_DEVICE(0x0c45, 0x6130), BSI(SN9C120, MI0360, 0x5d)}, |
1633 | {USB_DEVICE(0x0c45, 0x6138), DVNM("Sn9c120 Mo4000")}, | 1464 | {USB_DEVICE(0x0c45, 0x6138), BSI(SN9C120, MO4000, 0x21)}, |
1634 | {USB_DEVICE(0x0c45, 0x613b), DVNM("Surfer SN-206")}, | 1465 | /* {USB_DEVICE(0x0c45, 0x613a), BSI(SN9C120, OV7648, 0x??)}, */ |
1635 | {USB_DEVICE(0x0c45, 0x613c), DVNM("Sonix Pccam168")}, | 1466 | {USB_DEVICE(0x0c45, 0x613b), BSI(SN9C120, OV7660, 0x21)}, |
1467 | {USB_DEVICE(0x0c45, 0x613c), BSI(SN9C120, HV7131R, 0x11)}, | ||
1468 | /* {USB_DEVICE(0x0c45, 0x613e), BSI(SN9C120, OV7630, 0x??)}, */ | ||
1636 | #endif | 1469 | #endif |
1470 | {USB_DEVICE(0x0c45, 0x6143), BSI(SN9C120, MI0360, 0x5d)}, | ||
1637 | {} | 1471 | {} |
1638 | }; | 1472 | }; |
1639 | MODULE_DEVICE_TABLE(usb, device_table); | 1473 | MODULE_DEVICE_TABLE(usb, device_table); |
@@ -1658,7 +1492,7 @@ static int __init sd_mod_init(void) | |||
1658 | { | 1492 | { |
1659 | if (usb_register(&sd_driver) < 0) | 1493 | if (usb_register(&sd_driver) < 0) |
1660 | return -1; | 1494 | return -1; |
1661 | info("v%s registered", version); | 1495 | info("registered"); |
1662 | return 0; | 1496 | return 0; |
1663 | } | 1497 | } |
1664 | static void __exit sd_mod_exit(void) | 1498 | static void __exit sd_mod_exit(void) |
diff --git a/drivers/media/video/gspca/spca500.c b/drivers/media/video/gspca/spca500.c index 156206118795..17fe2c2a440d 100644 --- a/drivers/media/video/gspca/spca500.c +++ b/drivers/media/video/gspca/spca500.c | |||
@@ -24,9 +24,6 @@ | |||
24 | #include "gspca.h" | 24 | #include "gspca.h" |
25 | #include "jpeg.h" | 25 | #include "jpeg.h" |
26 | 26 | ||
27 | #define DRIVER_VERSION_NUMBER KERNEL_VERSION(2, 1, 7) | ||
28 | static const char version[] = "2.1.7"; | ||
29 | |||
30 | MODULE_AUTHOR("Michel Xhaard <mxhaard@users.sourceforge.net>"); | 27 | MODULE_AUTHOR("Michel Xhaard <mxhaard@users.sourceforge.net>"); |
31 | MODULE_DESCRIPTION("GSPCA/SPCA500 USB Camera Driver"); | 28 | MODULE_DESCRIPTION("GSPCA/SPCA500 USB Camera Driver"); |
32 | MODULE_LICENSE("GPL"); | 29 | MODULE_LICENSE("GPL"); |
@@ -630,109 +627,10 @@ static int sd_config(struct gspca_dev *gspca_dev, | |||
630 | { | 627 | { |
631 | struct sd *sd = (struct sd *) gspca_dev; | 628 | struct sd *sd = (struct sd *) gspca_dev; |
632 | struct cam *cam; | 629 | struct cam *cam; |
633 | __u16 vendor; | 630 | |
634 | __u16 product; | ||
635 | |||
636 | vendor = id->idVendor; | ||
637 | product = id->idProduct; | ||
638 | switch (vendor) { | ||
639 | case 0x040a: /* Kodak cameras */ | ||
640 | /* switch (product) { */ | ||
641 | /* case 0x0300: */ | ||
642 | sd->subtype = KodakEZ200; | ||
643 | /* break; */ | ||
644 | /* } */ | ||
645 | break; | ||
646 | case 0x041e: /* Creative cameras */ | ||
647 | /* switch (product) { */ | ||
648 | /* case 0x400a: */ | ||
649 | sd->subtype = CreativePCCam300; | ||
650 | /* break; */ | ||
651 | /* } */ | ||
652 | break; | ||
653 | case 0x046d: /* Logitech Labtec */ | ||
654 | switch (product) { | ||
655 | case 0x0890: | ||
656 | sd->subtype = LogitechTraveler; | ||
657 | break; | ||
658 | case 0x0900: | ||
659 | sd->subtype = LogitechClickSmart310; | ||
660 | break; | ||
661 | case 0x0901: | ||
662 | sd->subtype = LogitechClickSmart510; | ||
663 | break; | ||
664 | } | ||
665 | break; | ||
666 | case 0x04a5: /* Benq */ | ||
667 | /* switch (product) { */ | ||
668 | /* case 0x300c: */ | ||
669 | sd->subtype = BenqDC1016; | ||
670 | /* break; */ | ||
671 | /* } */ | ||
672 | break; | ||
673 | case 0x04fc: /* SunPlus */ | ||
674 | /* switch (product) { */ | ||
675 | /* case 0x7333: */ | ||
676 | sd->subtype = PalmPixDC85; | ||
677 | /* break; */ | ||
678 | /* } */ | ||
679 | break; | ||
680 | case 0x055f: /* Mustek cameras */ | ||
681 | switch (product) { | ||
682 | case 0xc200: | ||
683 | sd->subtype = MustekGsmart300; | ||
684 | break; | ||
685 | case 0xc220: | ||
686 | sd->subtype = Gsmartmini; | ||
687 | break; | ||
688 | } | ||
689 | break; | ||
690 | case 0x06bd: /* Agfa Cl20 */ | ||
691 | /* switch (product) { */ | ||
692 | /* case 0x0404: */ | ||
693 | sd->subtype = AgfaCl20; | ||
694 | /* break; */ | ||
695 | /* } */ | ||
696 | break; | ||
697 | case 0x06be: /* Optimedia */ | ||
698 | /* switch (product) { */ | ||
699 | /* case 0x0800: */ | ||
700 | sd->subtype = Optimedia; | ||
701 | /* break; */ | ||
702 | /* } */ | ||
703 | break; | ||
704 | case 0x084d: /* D-Link / Minton */ | ||
705 | /* switch (product) { */ | ||
706 | /* case 0x0003: * DSC-350 / S-Cam F5 */ | ||
707 | sd->subtype = DLinkDSC350; | ||
708 | /* break; */ | ||
709 | /* } */ | ||
710 | break; | ||
711 | case 0x08ca: /* Aiptek */ | ||
712 | /* switch (product) { */ | ||
713 | /* case 0x0103: */ | ||
714 | sd->subtype = AiptekPocketDV; | ||
715 | /* break; */ | ||
716 | /* } */ | ||
717 | break; | ||
718 | case 0x2899: /* ToptroIndustrial */ | ||
719 | /* switch (product) { */ | ||
720 | /* case 0x012c: */ | ||
721 | sd->subtype = ToptroIndus; | ||
722 | /* break; */ | ||
723 | /* } */ | ||
724 | break; | ||
725 | case 0x8086: /* Intel */ | ||
726 | /* switch (product) { */ | ||
727 | /* case 0x0630: * Pocket PC Camera */ | ||
728 | sd->subtype = IntelPocketPCCamera; | ||
729 | /* break; */ | ||
730 | /* } */ | ||
731 | break; | ||
732 | } | ||
733 | cam = &gspca_dev->cam; | 631 | cam = &gspca_dev->cam; |
734 | cam->dev_name = (char *) id->driver_info; | ||
735 | cam->epaddr = 0x01; | 632 | cam->epaddr = 0x01; |
633 | sd->subtype = id->driver_info; | ||
736 | if (sd->subtype != LogitechClickSmart310) { | 634 | if (sd->subtype != LogitechClickSmart310) { |
737 | cam->cam_mode = vga_mode; | 635 | cam->cam_mode = vga_mode; |
738 | cam->nmodes = sizeof vga_mode / sizeof vga_mode[0]; | 636 | cam->nmodes = sizeof vga_mode / sizeof vga_mode[0]; |
@@ -1162,23 +1060,22 @@ static struct sd_desc sd_desc = { | |||
1162 | }; | 1060 | }; |
1163 | 1061 | ||
1164 | /* -- module initialisation -- */ | 1062 | /* -- module initialisation -- */ |
1165 | #define DVNM(name) .driver_info = (kernel_ulong_t) name | ||
1166 | static const __devinitdata struct usb_device_id device_table[] = { | 1063 | static const __devinitdata struct usb_device_id device_table[] = { |
1167 | {USB_DEVICE(0x040a, 0x0300), DVNM("Kodak EZ200")}, | 1064 | {USB_DEVICE(0x040a, 0x0300), .driver_info = KodakEZ200}, |
1168 | {USB_DEVICE(0x041e, 0x400a), DVNM("Creative PC-CAM 300")}, | 1065 | {USB_DEVICE(0x041e, 0x400a), .driver_info = CreativePCCam300}, |
1169 | {USB_DEVICE(0x046d, 0x0890), DVNM("Logitech QuickCam traveler")}, | 1066 | {USB_DEVICE(0x046d, 0x0890), .driver_info = LogitechTraveler}, |
1170 | {USB_DEVICE(0x046d, 0x0900), DVNM("Logitech Inc. ClickSmart 310")}, | 1067 | {USB_DEVICE(0x046d, 0x0900), .driver_info = LogitechClickSmart310}, |
1171 | {USB_DEVICE(0x046d, 0x0901), DVNM("Logitech Inc. ClickSmart 510")}, | 1068 | {USB_DEVICE(0x046d, 0x0901), .driver_info = LogitechClickSmart510}, |
1172 | {USB_DEVICE(0x04a5, 0x300c), DVNM("Benq DC1016")}, | 1069 | {USB_DEVICE(0x04a5, 0x300c), .driver_info = BenqDC1016}, |
1173 | {USB_DEVICE(0x04fc, 0x7333), DVNM("PalmPixDC85")}, | 1070 | {USB_DEVICE(0x04fc, 0x7333), .driver_info = PalmPixDC85}, |
1174 | {USB_DEVICE(0x055f, 0xc200), DVNM("Mustek Gsmart 300")}, | 1071 | {USB_DEVICE(0x055f, 0xc200), .driver_info = MustekGsmart300}, |
1175 | {USB_DEVICE(0x055f, 0xc220), DVNM("Gsmart Mini")}, | 1072 | {USB_DEVICE(0x055f, 0xc220), .driver_info = Gsmartmini}, |
1176 | {USB_DEVICE(0x06bd, 0x0404), DVNM("Agfa CL20")}, | 1073 | {USB_DEVICE(0x06bd, 0x0404), .driver_info = AgfaCl20}, |
1177 | {USB_DEVICE(0x06be, 0x0800), DVNM("Optimedia")}, | 1074 | {USB_DEVICE(0x06be, 0x0800), .driver_info = Optimedia}, |
1178 | {USB_DEVICE(0x084d, 0x0003), DVNM("D-Link DSC-350")}, | 1075 | {USB_DEVICE(0x084d, 0x0003), .driver_info = DLinkDSC350}, |
1179 | {USB_DEVICE(0x08ca, 0x0103), DVNM("Aiptek PocketDV")}, | 1076 | {USB_DEVICE(0x08ca, 0x0103), .driver_info = AiptekPocketDV}, |
1180 | {USB_DEVICE(0x2899, 0x012c), DVNM("Toptro Industrial")}, | 1077 | {USB_DEVICE(0x2899, 0x012c), .driver_info = ToptroIndus}, |
1181 | {USB_DEVICE(0x8086, 0x0630), DVNM("Intel Pocket PC Camera")}, | 1078 | {USB_DEVICE(0x8086, 0x0630), .driver_info = IntelPocketPCCamera}, |
1182 | {} | 1079 | {} |
1183 | }; | 1080 | }; |
1184 | MODULE_DEVICE_TABLE(usb, device_table); | 1081 | MODULE_DEVICE_TABLE(usb, device_table); |
@@ -1203,7 +1100,7 @@ static int __init sd_mod_init(void) | |||
1203 | { | 1100 | { |
1204 | if (usb_register(&sd_driver) < 0) | 1101 | if (usb_register(&sd_driver) < 0) |
1205 | return -1; | 1102 | return -1; |
1206 | PDEBUG(D_PROBE, "v%s registered", version); | 1103 | PDEBUG(D_PROBE, "registered"); |
1207 | return 0; | 1104 | return 0; |
1208 | } | 1105 | } |
1209 | static void __exit sd_mod_exit(void) | 1106 | static void __exit sd_mod_exit(void) |
diff --git a/drivers/media/video/gspca/spca501.c b/drivers/media/video/gspca/spca501.c index 50e929de0203..51a3c3429ef0 100644 --- a/drivers/media/video/gspca/spca501.c +++ b/drivers/media/video/gspca/spca501.c | |||
@@ -23,9 +23,6 @@ | |||
23 | 23 | ||
24 | #include "gspca.h" | 24 | #include "gspca.h" |
25 | 25 | ||
26 | #define DRIVER_VERSION_NUMBER KERNEL_VERSION(2, 1, 7) | ||
27 | static const char version[] = "2.1.7"; | ||
28 | |||
29 | MODULE_AUTHOR("Michel Xhaard <mxhaard@users.sourceforge.net>"); | 26 | MODULE_AUTHOR("Michel Xhaard <mxhaard@users.sourceforge.net>"); |
30 | MODULE_DESCRIPTION("GSPCA/SPCA501 USB Camera Driver"); | 27 | MODULE_DESCRIPTION("GSPCA/SPCA501 USB Camera Driver"); |
31 | MODULE_LICENSE("GPL"); | 28 | MODULE_LICENSE("GPL"); |
@@ -1923,63 +1920,12 @@ static int sd_config(struct gspca_dev *gspca_dev, | |||
1923 | { | 1920 | { |
1924 | struct sd *sd = (struct sd *) gspca_dev; | 1921 | struct sd *sd = (struct sd *) gspca_dev; |
1925 | struct cam *cam; | 1922 | struct cam *cam; |
1926 | __u16 vendor; | 1923 | |
1927 | __u16 product; | ||
1928 | |||
1929 | vendor = id->idVendor; | ||
1930 | product = id->idProduct; | ||
1931 | switch (vendor) { | ||
1932 | case 0x0000: /* Unknow Camera */ | ||
1933 | /* switch (product) { */ | ||
1934 | /* case 0x0000: */ | ||
1935 | sd->subtype = MystFromOriUnknownCamera; | ||
1936 | /* break; */ | ||
1937 | /* } */ | ||
1938 | break; | ||
1939 | case 0x040a: /* Kodak cameras */ | ||
1940 | /* switch (product) { */ | ||
1941 | /* case 0x0002: */ | ||
1942 | sd->subtype = KodakDVC325; | ||
1943 | /* break; */ | ||
1944 | /* } */ | ||
1945 | break; | ||
1946 | case 0x0497: /* Smile International */ | ||
1947 | /* switch (product) { */ | ||
1948 | /* case 0xc001: */ | ||
1949 | sd->subtype = SmileIntlCamera; | ||
1950 | /* break; */ | ||
1951 | /* } */ | ||
1952 | break; | ||
1953 | case 0x0506: /* 3COM cameras */ | ||
1954 | /* switch (product) { */ | ||
1955 | /* case 0x00df: */ | ||
1956 | sd->subtype = ThreeComHomeConnectLite; | ||
1957 | /* break; */ | ||
1958 | /* } */ | ||
1959 | break; | ||
1960 | case 0x0733: /* Rebadged ViewQuest (Intel) and ViewQuest cameras */ | ||
1961 | switch (product) { | ||
1962 | case 0x0401: | ||
1963 | sd->subtype = IntelCreateAndShare; | ||
1964 | break; | ||
1965 | case 0x0402: | ||
1966 | sd->subtype = ViewQuestM318B; | ||
1967 | break; | ||
1968 | } | ||
1969 | break; | ||
1970 | case 0x1776: /* Arowana */ | ||
1971 | /* switch (product) { */ | ||
1972 | /* case 0x501c: */ | ||
1973 | sd->subtype = Arowana300KCMOSCamera; | ||
1974 | /* break; */ | ||
1975 | /* } */ | ||
1976 | break; | ||
1977 | } | ||
1978 | cam = &gspca_dev->cam; | 1924 | cam = &gspca_dev->cam; |
1979 | cam->dev_name = (char *) id->driver_info; | ||
1980 | cam->epaddr = 0x01; | 1925 | cam->epaddr = 0x01; |
1981 | cam->cam_mode = vga_mode; | 1926 | cam->cam_mode = vga_mode; |
1982 | cam->nmodes = sizeof vga_mode / sizeof vga_mode[0]; | 1927 | cam->nmodes = sizeof vga_mode / sizeof vga_mode[0]; |
1928 | sd->subtype = id->driver_info; | ||
1983 | sd->brightness = sd_ctrls[MY_BRIGHTNESS].qctrl.default_value; | 1929 | sd->brightness = sd_ctrls[MY_BRIGHTNESS].qctrl.default_value; |
1984 | sd->contrast = sd_ctrls[MY_CONTRAST].qctrl.default_value; | 1930 | sd->contrast = sd_ctrls[MY_CONTRAST].qctrl.default_value; |
1985 | sd->colors = sd_ctrls[MY_COLOR].qctrl.default_value; | 1931 | sd->colors = sd_ctrls[MY_COLOR].qctrl.default_value; |
@@ -2183,15 +2129,14 @@ static const struct sd_desc sd_desc = { | |||
2183 | }; | 2129 | }; |
2184 | 2130 | ||
2185 | /* -- module initialisation -- */ | 2131 | /* -- module initialisation -- */ |
2186 | #define DVNM(name) .driver_info = (kernel_ulong_t) name | ||
2187 | static const __devinitdata struct usb_device_id device_table[] = { | 2132 | static const __devinitdata struct usb_device_id device_table[] = { |
2188 | {USB_DEVICE(0x040a, 0x0002), DVNM("Kodak DVC-325")}, | 2133 | {USB_DEVICE(0x040a, 0x0002), .driver_info = KodakDVC325}, |
2189 | {USB_DEVICE(0x0497, 0xc001), DVNM("Smile International")}, | 2134 | {USB_DEVICE(0x0497, 0xc001), .driver_info = SmileIntlCamera}, |
2190 | {USB_DEVICE(0x0506, 0x00df), DVNM("3Com HomeConnect Lite")}, | 2135 | {USB_DEVICE(0x0506, 0x00df), .driver_info = ThreeComHomeConnectLite}, |
2191 | {USB_DEVICE(0x0733, 0x0401), DVNM("Intel Create and Share")}, | 2136 | {USB_DEVICE(0x0733, 0x0401), .driver_info = IntelCreateAndShare}, |
2192 | {USB_DEVICE(0x0733, 0x0402), DVNM("ViewQuest M318B")}, | 2137 | {USB_DEVICE(0x0733, 0x0402), .driver_info = ViewQuestM318B}, |
2193 | {USB_DEVICE(0x1776, 0x501c), DVNM("Arowana 300K CMOS Camera")}, | 2138 | {USB_DEVICE(0x1776, 0x501c), .driver_info = Arowana300KCMOSCamera}, |
2194 | {USB_DEVICE(0x0000, 0x0000), DVNM("MystFromOri Unknow Camera")}, | 2139 | {USB_DEVICE(0x0000, 0x0000), .driver_info = MystFromOriUnknownCamera}, |
2195 | {} | 2140 | {} |
2196 | }; | 2141 | }; |
2197 | MODULE_DEVICE_TABLE(usb, device_table); | 2142 | MODULE_DEVICE_TABLE(usb, device_table); |
@@ -2216,7 +2161,7 @@ static int __init sd_mod_init(void) | |||
2216 | { | 2161 | { |
2217 | if (usb_register(&sd_driver) < 0) | 2162 | if (usb_register(&sd_driver) < 0) |
2218 | return -1; | 2163 | return -1; |
2219 | PDEBUG(D_PROBE, "v%s registered", version); | 2164 | PDEBUG(D_PROBE, "registered"); |
2220 | return 0; | 2165 | return 0; |
2221 | } | 2166 | } |
2222 | static void __exit sd_mod_exit(void) | 2167 | static void __exit sd_mod_exit(void) |
diff --git a/drivers/media/video/gspca/spca505.c b/drivers/media/video/gspca/spca505.c index ddea6e140aa8..3c2be80cbd65 100644 --- a/drivers/media/video/gspca/spca505.c +++ b/drivers/media/video/gspca/spca505.c | |||
@@ -23,9 +23,6 @@ | |||
23 | 23 | ||
24 | #include "gspca.h" | 24 | #include "gspca.h" |
25 | 25 | ||
26 | #define DRIVER_VERSION_NUMBER KERNEL_VERSION(2, 1, 7) | ||
27 | static const char version[] = "2.1.7"; | ||
28 | |||
29 | MODULE_AUTHOR("Michel Xhaard <mxhaard@users.sourceforge.net>"); | 26 | MODULE_AUTHOR("Michel Xhaard <mxhaard@users.sourceforge.net>"); |
30 | MODULE_DESCRIPTION("GSPCA/SPCA505 USB Camera Driver"); | 27 | MODULE_DESCRIPTION("GSPCA/SPCA505 USB Camera Driver"); |
31 | MODULE_LICENSE("GPL"); | 28 | MODULE_LICENSE("GPL"); |
@@ -34,10 +31,6 @@ MODULE_LICENSE("GPL"); | |||
34 | struct sd { | 31 | struct sd { |
35 | struct gspca_dev gspca_dev; /* !! must be the first item */ | 32 | struct gspca_dev gspca_dev; /* !! must be the first item */ |
36 | 33 | ||
37 | int buflen; | ||
38 | unsigned char tmpbuf[640 * 480 * 3 / 2]; /* YYUV per line */ | ||
39 | unsigned char tmpbuf2[640 * 480 * 2]; /* YUYV */ | ||
40 | |||
41 | unsigned char brightness; | 34 | unsigned char brightness; |
42 | 35 | ||
43 | char subtype; | 36 | char subtype; |
@@ -67,29 +60,29 @@ static struct ctrl sd_ctrls[] = { | |||
67 | }; | 60 | }; |
68 | 61 | ||
69 | static struct v4l2_pix_format vga_mode[] = { | 62 | static struct v4l2_pix_format vga_mode[] = { |
70 | {160, 120, V4L2_PIX_FMT_YUYV, V4L2_FIELD_NONE, | 63 | {160, 120, V4L2_PIX_FMT_SPCA505, V4L2_FIELD_NONE, |
71 | .bytesperline = 160 * 2, | 64 | .bytesperline = 160 * 3, |
72 | .sizeimage = 160 * 120 * 2, | 65 | .sizeimage = 160 * 120 * 3 / 2, |
73 | .colorspace = V4L2_COLORSPACE_SRGB, | 66 | .colorspace = V4L2_COLORSPACE_SRGB, |
74 | .priv = 5}, | 67 | .priv = 5}, |
75 | {176, 144, V4L2_PIX_FMT_YUYV, V4L2_FIELD_NONE, | 68 | {176, 144, V4L2_PIX_FMT_SPCA505, V4L2_FIELD_NONE, |
76 | .bytesperline = 176 * 2, | 69 | .bytesperline = 176 * 3, |
77 | .sizeimage = 176 * 144 * 2, | 70 | .sizeimage = 176 * 144 * 3 / 2, |
78 | .colorspace = V4L2_COLORSPACE_SRGB, | 71 | .colorspace = V4L2_COLORSPACE_SRGB, |
79 | .priv = 4}, | 72 | .priv = 4}, |
80 | {320, 240, V4L2_PIX_FMT_YUYV, V4L2_FIELD_NONE, | 73 | {320, 240, V4L2_PIX_FMT_SPCA505, V4L2_FIELD_NONE, |
81 | .bytesperline = 320 * 2, | 74 | .bytesperline = 320 * 3, |
82 | .sizeimage = 320 * 240 * 2, | 75 | .sizeimage = 320 * 240 * 3 / 2, |
83 | .colorspace = V4L2_COLORSPACE_SRGB, | 76 | .colorspace = V4L2_COLORSPACE_SRGB, |
84 | .priv = 2}, | 77 | .priv = 2}, |
85 | {352, 288, V4L2_PIX_FMT_YUYV, V4L2_FIELD_NONE, | 78 | {352, 288, V4L2_PIX_FMT_SPCA505, V4L2_FIELD_NONE, |
86 | .bytesperline = 352 * 2, | 79 | .bytesperline = 352 * 3, |
87 | .sizeimage = 352 * 288 * 2, | 80 | .sizeimage = 352 * 288 * 3 / 2, |
88 | .colorspace = V4L2_COLORSPACE_SRGB, | 81 | .colorspace = V4L2_COLORSPACE_SRGB, |
89 | .priv = 1}, | 82 | .priv = 1}, |
90 | {640, 480, V4L2_PIX_FMT_YUYV, V4L2_FIELD_NONE, | 83 | {640, 480, V4L2_PIX_FMT_SPCA505, V4L2_FIELD_NONE, |
91 | .bytesperline = 640 * 2, | 84 | .bytesperline = 640 * 3, |
92 | .sizeimage = 640 * 480 * 2, | 85 | .sizeimage = 640 * 480 * 3 / 2, |
93 | .colorspace = V4L2_COLORSPACE_SRGB, | 86 | .colorspace = V4L2_COLORSPACE_SRGB, |
94 | .priv = 0}, | 87 | .priv = 0}, |
95 | }; | 88 | }; |
@@ -641,33 +634,11 @@ static int sd_config(struct gspca_dev *gspca_dev, | |||
641 | { | 634 | { |
642 | struct sd *sd = (struct sd *) gspca_dev; | 635 | struct sd *sd = (struct sd *) gspca_dev; |
643 | struct cam *cam; | 636 | struct cam *cam; |
644 | __u16 vendor; | ||
645 | __u16 product; | ||
646 | |||
647 | vendor = id->idVendor; | ||
648 | product = id->idProduct; | ||
649 | switch (vendor) { | ||
650 | case 0x041e: /* Creative cameras */ | ||
651 | /* switch (product) { */ | ||
652 | /* case 0x401d: * here505b */ | ||
653 | sd->subtype = Nxultra; | ||
654 | /* break; */ | ||
655 | /* } */ | ||
656 | break; | ||
657 | case 0x0733: /* Rebadged ViewQuest (Intel) and ViewQuest cameras */ | ||
658 | /* switch (product) { */ | ||
659 | /* case 0x0430: */ | ||
660 | /* fixme: may be UsbGrabberPV321 BRIDGE_SPCA506 SENSOR_SAA7113 */ | ||
661 | sd->subtype = IntelPCCameraPro; | ||
662 | /* break; */ | ||
663 | /* } */ | ||
664 | break; | ||
665 | } | ||
666 | 637 | ||
667 | cam = &gspca_dev->cam; | 638 | cam = &gspca_dev->cam; |
668 | cam->dev_name = (char *) id->driver_info; | ||
669 | cam->epaddr = 0x01; | 639 | cam->epaddr = 0x01; |
670 | cam->cam_mode = vga_mode; | 640 | cam->cam_mode = vga_mode; |
641 | sd->subtype = id->driver_info; | ||
671 | if (sd->subtype != IntelPCCameraPro) | 642 | if (sd->subtype != IntelPCCameraPro) |
672 | cam->nmodes = sizeof vga_mode / sizeof vga_mode[0]; | 643 | cam->nmodes = sizeof vga_mode / sizeof vga_mode[0]; |
673 | else /* no 640x480 for IntelPCCameraPro */ | 644 | else /* no 640x480 for IntelPCCameraPro */ |
@@ -785,77 +756,30 @@ static void sd_close(struct gspca_dev *gspca_dev) | |||
785 | reg_write(gspca_dev->dev, 0x05, 0x11, 0xf); | 756 | reg_write(gspca_dev->dev, 0x05, 0x11, 0xf); |
786 | } | 757 | } |
787 | 758 | ||
788 | /* convert YYUV per line to YUYV (YUV 4:2:2) */ | ||
789 | static void yyuv_decode(unsigned char *out, | ||
790 | unsigned char *in, | ||
791 | int width, | ||
792 | int height) | ||
793 | { | ||
794 | unsigned char *Ui, *Vi, *yi, *yi1; | ||
795 | unsigned char *out1; | ||
796 | int i, j; | ||
797 | |||
798 | yi = in; | ||
799 | for (i = height / 2; --i >= 0; ) { | ||
800 | out1 = out + width * 2; /* next line */ | ||
801 | yi1 = yi + width; | ||
802 | Ui = yi1 + width; | ||
803 | Vi = Ui + width / 2; | ||
804 | for (j = width / 2; --j >= 0; ) { | ||
805 | *out++ = 128 + *yi++; | ||
806 | *out++ = 128 + *Ui; | ||
807 | *out++ = 128 + *yi++; | ||
808 | *out++ = 128 + *Vi; | ||
809 | |||
810 | *out1++ = 128 + *yi1++; | ||
811 | *out1++ = 128 + *Ui++; | ||
812 | *out1++ = 128 + *yi1++; | ||
813 | *out1++ = 128 + *Vi++; | ||
814 | } | ||
815 | yi += width * 2; | ||
816 | out = out1; | ||
817 | } | ||
818 | } | ||
819 | |||
820 | static void sd_pkt_scan(struct gspca_dev *gspca_dev, | 759 | static void sd_pkt_scan(struct gspca_dev *gspca_dev, |
821 | struct gspca_frame *frame, /* target */ | 760 | struct gspca_frame *frame, /* target */ |
822 | __u8 *data, /* isoc packet */ | 761 | __u8 *data, /* isoc packet */ |
823 | int len) /* iso packet length */ | 762 | int len) /* iso packet length */ |
824 | { | 763 | { |
825 | struct sd *sd = (struct sd *) gspca_dev; | ||
826 | |||
827 | switch (data[0]) { | 764 | switch (data[0]) { |
828 | case 0: /* start of frame */ | 765 | case 0: /* start of frame */ |
829 | if (gspca_dev->last_packet_type == FIRST_PACKET) { | 766 | frame = gspca_frame_add(gspca_dev, LAST_PACKET, frame, |
830 | yyuv_decode(sd->tmpbuf2, sd->tmpbuf, | 767 | data, 0); |
831 | gspca_dev->width, | ||
832 | gspca_dev->height); | ||
833 | frame = gspca_frame_add(gspca_dev, | ||
834 | LAST_PACKET, | ||
835 | frame, | ||
836 | sd->tmpbuf2, | ||
837 | gspca_dev->width | ||
838 | * gspca_dev->height | ||
839 | * 2); | ||
840 | } | ||
841 | gspca_frame_add(gspca_dev, FIRST_PACKET, frame, | ||
842 | data, 0); | ||
843 | data += SPCA50X_OFFSET_DATA; | 768 | data += SPCA50X_OFFSET_DATA; |
844 | len -= SPCA50X_OFFSET_DATA; | 769 | len -= SPCA50X_OFFSET_DATA; |
845 | if (len > 0) | 770 | gspca_frame_add(gspca_dev, FIRST_PACKET, frame, |
846 | memcpy(sd->tmpbuf, data, len); | 771 | data, len); |
847 | else | 772 | break; |
848 | len = 0; | ||
849 | sd->buflen = len; | ||
850 | return; | ||
851 | case 0xff: /* drop */ | 773 | case 0xff: /* drop */ |
852 | /* gspca_dev->last_packet_type = DISCARD_PACKET; */ | 774 | /* gspca_dev->last_packet_type = DISCARD_PACKET; */ |
853 | return; | 775 | break; |
776 | default: | ||
777 | data += 1; | ||
778 | len -= 1; | ||
779 | gspca_frame_add(gspca_dev, FIRST_PACKET, frame, | ||
780 | data, len); | ||
781 | break; | ||
854 | } | 782 | } |
855 | data += 1; | ||
856 | len -= 1; | ||
857 | memcpy(&sd->tmpbuf[sd->buflen], data, len); | ||
858 | sd->buflen += len; | ||
859 | } | 783 | } |
860 | 784 | ||
861 | static void setbrightness(struct gspca_dev *gspca_dev) | 785 | static void setbrightness(struct gspca_dev *gspca_dev) |
@@ -910,10 +834,10 @@ static const struct sd_desc sd_desc = { | |||
910 | }; | 834 | }; |
911 | 835 | ||
912 | /* -- module initialisation -- */ | 836 | /* -- module initialisation -- */ |
913 | #define DVNM(name) .driver_info = (kernel_ulong_t) name | ||
914 | static const __devinitdata struct usb_device_id device_table[] = { | 837 | static const __devinitdata struct usb_device_id device_table[] = { |
915 | {USB_DEVICE(0x041e, 0x401d), DVNM("Creative Webcam NX ULTRA")}, | 838 | {USB_DEVICE(0x041e, 0x401d), .driver_info = Nxultra}, |
916 | {USB_DEVICE(0x0733, 0x0430), DVNM("Intel PC Camera Pro")}, | 839 | {USB_DEVICE(0x0733, 0x0430), .driver_info = IntelPCCameraPro}, |
840 | /*fixme: may be UsbGrabberPV321 BRIDGE_SPCA506 SENSOR_SAA7113 */ | ||
917 | {} | 841 | {} |
918 | }; | 842 | }; |
919 | MODULE_DEVICE_TABLE(usb, device_table); | 843 | MODULE_DEVICE_TABLE(usb, device_table); |
@@ -938,7 +862,7 @@ static int __init sd_mod_init(void) | |||
938 | { | 862 | { |
939 | if (usb_register(&sd_driver) < 0) | 863 | if (usb_register(&sd_driver) < 0) |
940 | return -1; | 864 | return -1; |
941 | PDEBUG(D_PROBE, "v%s registered", version); | 865 | PDEBUG(D_PROBE, "registered"); |
942 | return 0; | 866 | return 0; |
943 | } | 867 | } |
944 | static void __exit sd_mod_exit(void) | 868 | static void __exit sd_mod_exit(void) |
diff --git a/drivers/media/video/gspca/spca506.c b/drivers/media/video/gspca/spca506.c index 143203c1fd9f..6fe715c80ad2 100644 --- a/drivers/media/video/gspca/spca506.c +++ b/drivers/media/video/gspca/spca506.c | |||
@@ -25,9 +25,6 @@ | |||
25 | 25 | ||
26 | #include "gspca.h" | 26 | #include "gspca.h" |
27 | 27 | ||
28 | #define DRIVER_VERSION_NUMBER KERNEL_VERSION(2, 1, 7) | ||
29 | static const char version[] = "2.1.7"; | ||
30 | |||
31 | MODULE_AUTHOR("Michel Xhaard <mxhaard@users.sourceforge.net>"); | 28 | MODULE_AUTHOR("Michel Xhaard <mxhaard@users.sourceforge.net>"); |
32 | MODULE_DESCRIPTION("GSPCA/SPCA506 USB Camera Driver"); | 29 | MODULE_DESCRIPTION("GSPCA/SPCA506 USB Camera Driver"); |
33 | MODULE_LICENSE("GPL"); | 30 | MODULE_LICENSE("GPL"); |
@@ -36,10 +33,6 @@ MODULE_LICENSE("GPL"); | |||
36 | struct sd { | 33 | struct sd { |
37 | struct gspca_dev gspca_dev; /* !! must be the first item */ | 34 | struct gspca_dev gspca_dev; /* !! must be the first item */ |
38 | 35 | ||
39 | int buflen; | ||
40 | __u8 tmpbuf[640 * 480 * 3]; /* YYUV per line */ | ||
41 | __u8 tmpbuf2[640 * 480 * 2]; /* YUYV */ | ||
42 | |||
43 | unsigned char brightness; | 36 | unsigned char brightness; |
44 | unsigned char contrast; | 37 | unsigned char contrast; |
45 | unsigned char colors; | 38 | unsigned char colors; |
@@ -118,29 +111,29 @@ static struct ctrl sd_ctrls[] = { | |||
118 | }; | 111 | }; |
119 | 112 | ||
120 | static struct v4l2_pix_format vga_mode[] = { | 113 | static struct v4l2_pix_format vga_mode[] = { |
121 | {160, 120, V4L2_PIX_FMT_YUYV, V4L2_FIELD_NONE, | 114 | {160, 120, V4L2_PIX_FMT_SPCA505, V4L2_FIELD_NONE, |
122 | .bytesperline = 160 * 2, | 115 | .bytesperline = 160 * 3, |
123 | .sizeimage = 160 * 120 * 2, | 116 | .sizeimage = 160 * 120 * 3 / 2, |
124 | .colorspace = V4L2_COLORSPACE_SRGB, | 117 | .colorspace = V4L2_COLORSPACE_SRGB, |
125 | .priv = 5}, | 118 | .priv = 5}, |
126 | {176, 144, V4L2_PIX_FMT_YUYV, V4L2_FIELD_NONE, | 119 | {176, 144, V4L2_PIX_FMT_SPCA505, V4L2_FIELD_NONE, |
127 | .bytesperline = 176 * 2, | 120 | .bytesperline = 176 * 3, |
128 | .sizeimage = 176 * 144 * 2, | 121 | .sizeimage = 176 * 144 * 3 / 2, |
129 | .colorspace = V4L2_COLORSPACE_SRGB, | 122 | .colorspace = V4L2_COLORSPACE_SRGB, |
130 | .priv = 4}, | 123 | .priv = 4}, |
131 | {320, 240, V4L2_PIX_FMT_YUYV, V4L2_FIELD_NONE, | 124 | {320, 240, V4L2_PIX_FMT_SPCA505, V4L2_FIELD_NONE, |
132 | .bytesperline = 320 * 2, | 125 | .bytesperline = 320 * 3, |
133 | .sizeimage = 320 * 240 * 2, | 126 | .sizeimage = 320 * 240 * 3 / 2, |
134 | .colorspace = V4L2_COLORSPACE_SRGB, | 127 | .colorspace = V4L2_COLORSPACE_SRGB, |
135 | .priv = 2}, | 128 | .priv = 2}, |
136 | {352, 288, V4L2_PIX_FMT_YUYV, V4L2_FIELD_NONE, | 129 | {352, 288, V4L2_PIX_FMT_SPCA505, V4L2_FIELD_NONE, |
137 | .bytesperline = 352 * 2, | 130 | .bytesperline = 352 * 3, |
138 | .sizeimage = 352 * 288 * 2, | 131 | .sizeimage = 352 * 288 * 3 / 2, |
139 | .colorspace = V4L2_COLORSPACE_SRGB, | 132 | .colorspace = V4L2_COLORSPACE_SRGB, |
140 | .priv = 1}, | 133 | .priv = 1}, |
141 | {640, 480, V4L2_PIX_FMT_YUYV, V4L2_FIELD_NONE, | 134 | {640, 480, V4L2_PIX_FMT_SPCA505, V4L2_FIELD_NONE, |
142 | .bytesperline = 640 * 2, | 135 | .bytesperline = 640 * 3, |
143 | .sizeimage = 640 * 480 * 2, | 136 | .sizeimage = 640 * 480 * 3 / 2, |
144 | .colorspace = V4L2_COLORSPACE_SRGB, | 137 | .colorspace = V4L2_COLORSPACE_SRGB, |
145 | .priv = 0}, | 138 | .priv = 0}, |
146 | }; | 139 | }; |
@@ -310,7 +303,6 @@ static int sd_config(struct gspca_dev *gspca_dev, | |||
310 | struct cam *cam; | 303 | struct cam *cam; |
311 | 304 | ||
312 | cam = &gspca_dev->cam; | 305 | cam = &gspca_dev->cam; |
313 | cam->dev_name = (char *) id->driver_info; | ||
314 | cam->epaddr = 0x01; | 306 | cam->epaddr = 0x01; |
315 | cam->cam_mode = vga_mode; | 307 | cam->cam_mode = vga_mode; |
316 | cam->nmodes = sizeof vga_mode / sizeof vga_mode[0]; | 308 | cam->nmodes = sizeof vga_mode / sizeof vga_mode[0]; |
@@ -576,77 +568,30 @@ static void sd_close(struct gspca_dev *gspca_dev) | |||
576 | { | 568 | { |
577 | } | 569 | } |
578 | 570 | ||
579 | /* convert YYUV per line to YUYV (YUV 4:2:2) */ | ||
580 | static void yyuv_decode(unsigned char *out, | ||
581 | unsigned char *in, | ||
582 | int width, | ||
583 | int height) | ||
584 | { | ||
585 | unsigned char *Ui, *Vi, *yi, *yi1; | ||
586 | unsigned char *out1; | ||
587 | int i, j; | ||
588 | |||
589 | yi = in; | ||
590 | for (i = height / 2; --i >= 0; ) { | ||
591 | out1 = out + width * 2; /* next line */ | ||
592 | yi1 = yi + width; | ||
593 | Ui = yi1 + width; | ||
594 | Vi = Ui + width / 2; | ||
595 | for (j = width / 2; --j >= 0; ) { | ||
596 | *out++ = 128 + *yi++; | ||
597 | *out++ = 128 + *Ui; | ||
598 | *out++ = 128 + *yi++; | ||
599 | *out++ = 128 + *Vi; | ||
600 | |||
601 | *out1++ = 128 + *yi1++; | ||
602 | *out1++ = 128 + *Ui++; | ||
603 | *out1++ = 128 + *yi1++; | ||
604 | *out1++ = 128 + *Vi++; | ||
605 | } | ||
606 | yi += width * 2; | ||
607 | out = out1; | ||
608 | } | ||
609 | } | ||
610 | |||
611 | static void sd_pkt_scan(struct gspca_dev *gspca_dev, | 571 | static void sd_pkt_scan(struct gspca_dev *gspca_dev, |
612 | struct gspca_frame *frame, /* target */ | 572 | struct gspca_frame *frame, /* target */ |
613 | __u8 *data, /* isoc packet */ | 573 | __u8 *data, /* isoc packet */ |
614 | int len) /* iso packet length */ | 574 | int len) /* iso packet length */ |
615 | { | 575 | { |
616 | struct sd *sd = (struct sd *) gspca_dev; | ||
617 | |||
618 | switch (data[0]) { | 576 | switch (data[0]) { |
619 | case 0: /* start of frame */ | 577 | case 0: /* start of frame */ |
620 | if (gspca_dev->last_packet_type == FIRST_PACKET) { | 578 | frame = gspca_frame_add(gspca_dev, LAST_PACKET, frame, |
621 | yyuv_decode(sd->tmpbuf2, sd->tmpbuf, | 579 | data, 0); |
622 | gspca_dev->width, | ||
623 | gspca_dev->height); | ||
624 | frame = gspca_frame_add(gspca_dev, | ||
625 | LAST_PACKET, | ||
626 | frame, | ||
627 | sd->tmpbuf2, | ||
628 | gspca_dev->width | ||
629 | * gspca_dev->height | ||
630 | * 2); | ||
631 | } | ||
632 | gspca_frame_add(gspca_dev, FIRST_PACKET, frame, | ||
633 | data, 0); | ||
634 | data += SPCA50X_OFFSET_DATA; | 580 | data += SPCA50X_OFFSET_DATA; |
635 | len -= SPCA50X_OFFSET_DATA; | 581 | len -= SPCA50X_OFFSET_DATA; |
636 | if (len > 0) | 582 | gspca_frame_add(gspca_dev, FIRST_PACKET, frame, |
637 | memcpy(sd->tmpbuf, data, len); | 583 | data, len); |
638 | else | 584 | break; |
639 | len = 0; | ||
640 | sd->buflen = len; | ||
641 | return; | ||
642 | case 0xff: /* drop */ | 585 | case 0xff: /* drop */ |
643 | /* gspca_dev->last_packet_type = DISCARD_PACKET; */ | 586 | /* gspca_dev->last_packet_type = DISCARD_PACKET; */ |
644 | return; | 587 | break; |
588 | default: | ||
589 | data += 1; | ||
590 | len -= 1; | ||
591 | gspca_frame_add(gspca_dev, FIRST_PACKET, frame, | ||
592 | data, len); | ||
593 | break; | ||
645 | } | 594 | } |
646 | data += 1; | ||
647 | len -= 1; | ||
648 | memcpy(&sd->tmpbuf[sd->buflen], data, len); | ||
649 | sd->buflen += len; | ||
650 | } | 595 | } |
651 | 596 | ||
652 | static void setbrightness(struct gspca_dev *gspca_dev) | 597 | static void setbrightness(struct gspca_dev *gspca_dev) |
@@ -804,12 +749,12 @@ static struct sd_desc sd_desc = { | |||
804 | }; | 749 | }; |
805 | 750 | ||
806 | /* -- module initialisation -- */ | 751 | /* -- module initialisation -- */ |
807 | #define DVNM(name) .driver_info = (kernel_ulong_t) name | ||
808 | static __devinitdata struct usb_device_id device_table[] = { | 752 | static __devinitdata struct usb_device_id device_table[] = { |
809 | {USB_DEVICE(0x06e1, 0xa190), DVNM("ADS Instant VCD")}, | 753 | {USB_DEVICE(0x06e1, 0xa190)}, |
810 | /* {USB_DEVICE(0x0733, 0x0430), DVNM("UsbGrabber PV321c")}, */ | 754 | /*fixme: may be IntelPCCameraPro BRIDGE_SPCA505 |
811 | {USB_DEVICE(0x0734, 0x043b), DVNM("3DeMon USB Capture aka")}, | 755 | {USB_DEVICE(0x0733, 0x0430)}, */ |
812 | {USB_DEVICE(0x99fa, 0x8988), DVNM("Grandtec V.cap")}, | 756 | {USB_DEVICE(0x0734, 0x043b)}, |
757 | {USB_DEVICE(0x99fa, 0x8988)}, | ||
813 | {} | 758 | {} |
814 | }; | 759 | }; |
815 | MODULE_DEVICE_TABLE(usb, device_table); | 760 | MODULE_DEVICE_TABLE(usb, device_table); |
@@ -834,7 +779,7 @@ static int __init sd_mod_init(void) | |||
834 | { | 779 | { |
835 | if (usb_register(&sd_driver) < 0) | 780 | if (usb_register(&sd_driver) < 0) |
836 | return -1; | 781 | return -1; |
837 | PDEBUG(D_PROBE, "v%s registered", version); | 782 | PDEBUG(D_PROBE, "registered"); |
838 | return 0; | 783 | return 0; |
839 | } | 784 | } |
840 | static void __exit sd_mod_exit(void) | 785 | static void __exit sd_mod_exit(void) |
diff --git a/drivers/media/video/gspca/spca508.c b/drivers/media/video/gspca/spca508.c index d8cd93866a4a..b608a27ad115 100644 --- a/drivers/media/video/gspca/spca508.c +++ b/drivers/media/video/gspca/spca508.c | |||
@@ -22,9 +22,6 @@ | |||
22 | 22 | ||
23 | #include "gspca.h" | 23 | #include "gspca.h" |
24 | 24 | ||
25 | #define DRIVER_VERSION_NUMBER KERNEL_VERSION(2, 1, 7) | ||
26 | static const char version[] = "2.1.7"; | ||
27 | |||
28 | MODULE_AUTHOR("Michel Xhaard <mxhaard@users.sourceforge.net>"); | 25 | MODULE_AUTHOR("Michel Xhaard <mxhaard@users.sourceforge.net>"); |
29 | MODULE_DESCRIPTION("GSPCA/SPCA508 USB Camera Driver"); | 26 | MODULE_DESCRIPTION("GSPCA/SPCA508 USB Camera Driver"); |
30 | MODULE_LICENSE("GPL"); | 27 | MODULE_LICENSE("GPL"); |
@@ -33,10 +30,6 @@ MODULE_LICENSE("GPL"); | |||
33 | struct sd { | 30 | struct sd { |
34 | struct gspca_dev gspca_dev; /* !! must be the first item */ | 31 | struct gspca_dev gspca_dev; /* !! must be the first item */ |
35 | 32 | ||
36 | int buflen; | ||
37 | unsigned char tmpbuf[352 * 288 * 3 / 2]; /* YUVY per line */ | ||
38 | unsigned char tmpbuf2[352 * 288 * 2]; /* YUYV */ | ||
39 | |||
40 | unsigned char brightness; | 33 | unsigned char brightness; |
41 | 34 | ||
42 | char subtype; | 35 | char subtype; |
@@ -71,23 +64,23 @@ static struct ctrl sd_ctrls[] = { | |||
71 | 64 | ||
72 | static struct v4l2_pix_format sif_mode[] = { | 65 | static struct v4l2_pix_format sif_mode[] = { |
73 | {160, 120, V4L2_PIX_FMT_YUYV, V4L2_FIELD_NONE, | 66 | {160, 120, V4L2_PIX_FMT_YUYV, V4L2_FIELD_NONE, |
74 | .bytesperline = 160 * 2, | 67 | .bytesperline = 160 * 3, |
75 | .sizeimage = 160 * 120 * 2, | 68 | .sizeimage = 160 * 120 * 3 / 2, |
76 | .colorspace = V4L2_COLORSPACE_SRGB, | 69 | .colorspace = V4L2_COLORSPACE_SRGB, |
77 | .priv = 3}, | 70 | .priv = 3}, |
78 | {176, 144, V4L2_PIX_FMT_YUYV, V4L2_FIELD_NONE, | 71 | {176, 144, V4L2_PIX_FMT_YUYV, V4L2_FIELD_NONE, |
79 | .bytesperline = 176 * 2, | 72 | .bytesperline = 176 * 3, |
80 | .sizeimage = 176 * 144 * 2, | 73 | .sizeimage = 176 * 144 * 3 / 2, |
81 | .colorspace = V4L2_COLORSPACE_SRGB, | 74 | .colorspace = V4L2_COLORSPACE_SRGB, |
82 | .priv = 2}, | 75 | .priv = 2}, |
83 | {320, 240, V4L2_PIX_FMT_YUYV, V4L2_FIELD_NONE, | 76 | {320, 240, V4L2_PIX_FMT_YUYV, V4L2_FIELD_NONE, |
84 | .bytesperline = 320 * 2, | 77 | .bytesperline = 320 * 3, |
85 | .sizeimage = 320 * 240 * 2, | 78 | .sizeimage = 320 * 240 * 3 / 2, |
86 | .colorspace = V4L2_COLORSPACE_SRGB, | 79 | .colorspace = V4L2_COLORSPACE_SRGB, |
87 | .priv = 1}, | 80 | .priv = 1}, |
88 | {352, 288, V4L2_PIX_FMT_YUYV, V4L2_FIELD_NONE, | 81 | {352, 288, V4L2_PIX_FMT_YUYV, V4L2_FIELD_NONE, |
89 | .bytesperline = 352 * 2, | 82 | .bytesperline = 352 * 3, |
90 | .sizeimage = 352 * 288 * 2, | 83 | .sizeimage = 352 * 288 * 3 / 2, |
91 | .colorspace = V4L2_COLORSPACE_SRGB, | 84 | .colorspace = V4L2_COLORSPACE_SRGB, |
92 | .priv = 0}, | 85 | .priv = 0}, |
93 | }; | 86 | }; |
@@ -1476,58 +1469,8 @@ static int sd_config(struct gspca_dev *gspca_dev, | |||
1476 | { | 1469 | { |
1477 | struct sd *sd = (struct sd *) gspca_dev; | 1470 | struct sd *sd = (struct sd *) gspca_dev; |
1478 | struct cam *cam; | 1471 | struct cam *cam; |
1479 | __u16 product; | ||
1480 | int data1, data2; | 1472 | int data1, data2; |
1481 | 1473 | ||
1482 | product = id->idProduct; | ||
1483 | switch (id->idVendor) { | ||
1484 | case 0x0130: /* Clone webcam */ | ||
1485 | /* switch (product) { */ | ||
1486 | /* case 0x0130: */ | ||
1487 | sd->subtype = HamaUSBSightcam; /* same as Hama 0010 */ | ||
1488 | /* break; */ | ||
1489 | /* } */ | ||
1490 | break; | ||
1491 | case 0x041e: /* Creative cameras */ | ||
1492 | /* switch (product) { */ | ||
1493 | /* case 0x4018: */ | ||
1494 | sd->subtype = CreativeVista; | ||
1495 | /* break; */ | ||
1496 | /* } */ | ||
1497 | break; | ||
1498 | case 0x0461: /* MicroInnovation */ | ||
1499 | /* switch (product) { */ | ||
1500 | /* case 0x0815: */ | ||
1501 | sd->subtype = MicroInnovationIC200; | ||
1502 | /* break; */ | ||
1503 | /* } */ | ||
1504 | break; | ||
1505 | case 0x0733: /* Rebadged ViewQuest (Intel) and ViewQuest cameras */ | ||
1506 | /* switch (product) { */ | ||
1507 | /* case 0x110: */ | ||
1508 | sd->subtype = ViewQuestVQ110; | ||
1509 | /* break; */ | ||
1510 | /* } */ | ||
1511 | break; | ||
1512 | case 0x0af9: /* Hama cameras */ | ||
1513 | switch (product) { | ||
1514 | case 0x0010: | ||
1515 | sd->subtype = HamaUSBSightcam; | ||
1516 | break; | ||
1517 | case 0x0011: | ||
1518 | sd->subtype = HamaUSBSightcam2; | ||
1519 | break; | ||
1520 | } | ||
1521 | break; | ||
1522 | case 0x8086: /* Intel */ | ||
1523 | /* switch (product) { */ | ||
1524 | /* case 0x0110: */ | ||
1525 | sd->subtype = IntelEasyPCCamera; | ||
1526 | /* break; */ | ||
1527 | /* } */ | ||
1528 | break; | ||
1529 | } | ||
1530 | |||
1531 | /* Read from global register the USB product and vendor IDs, just to | 1474 | /* Read from global register the USB product and vendor IDs, just to |
1532 | * prove that we can communicate with the device. This works, which | 1475 | * prove that we can communicate with the device. This works, which |
1533 | * confirms at we are communicating properly and that the device | 1476 | * confirms at we are communicating properly and that the device |
@@ -1544,10 +1487,11 @@ static int sd_config(struct gspca_dev *gspca_dev, | |||
1544 | PDEBUG(D_PROBE, "Window 1 average luminance: %d", data1); | 1487 | PDEBUG(D_PROBE, "Window 1 average luminance: %d", data1); |
1545 | 1488 | ||
1546 | cam = &gspca_dev->cam; | 1489 | cam = &gspca_dev->cam; |
1547 | cam->dev_name = (char *) id->driver_info; | ||
1548 | cam->epaddr = 0x01; | 1490 | cam->epaddr = 0x01; |
1549 | cam->cam_mode = sif_mode; | 1491 | cam->cam_mode = sif_mode; |
1550 | cam->nmodes = ARRAY_SIZE(sif_mode); | 1492 | cam->nmodes = ARRAY_SIZE(sif_mode); |
1493 | |||
1494 | sd->subtype = id->driver_info; | ||
1551 | sd->brightness = BRIGHTNESS_DEF; | 1495 | sd->brightness = BRIGHTNESS_DEF; |
1552 | 1496 | ||
1553 | switch (sd->subtype) { | 1497 | switch (sd->subtype) { |
@@ -1619,77 +1563,30 @@ static void sd_close(struct gspca_dev *gspca_dev) | |||
1619 | { | 1563 | { |
1620 | } | 1564 | } |
1621 | 1565 | ||
1622 | /* convert YUVY per line to YUYV (YUV 4:2:2) */ | ||
1623 | static void yuvy_decode(unsigned char *out, | ||
1624 | unsigned char *in, | ||
1625 | int width, | ||
1626 | int height) | ||
1627 | { | ||
1628 | unsigned char *Ui, *Vi, *yi, *yi1; | ||
1629 | unsigned char *out1; | ||
1630 | int i, j; | ||
1631 | |||
1632 | yi = in; | ||
1633 | for (i = height / 2; --i >= 0; ) { | ||
1634 | out1 = out + width * 2; /* next line */ | ||
1635 | Ui = yi + width; | ||
1636 | Vi = Ui + width / 2; | ||
1637 | yi1 = Vi + width / 2; | ||
1638 | for (j = width / 2; --j >= 0; ) { | ||
1639 | *out++ = 128 + *yi++; | ||
1640 | *out++ = 128 + *Ui; | ||
1641 | *out++ = 128 + *yi++; | ||
1642 | *out++ = 128 + *Vi; | ||
1643 | |||
1644 | *out1++ = 128 + *yi1++; | ||
1645 | *out1++ = 128 + *Ui++; | ||
1646 | *out1++ = 128 + *yi1++; | ||
1647 | *out1++ = 128 + *Vi++; | ||
1648 | } | ||
1649 | yi += width * 2; | ||
1650 | out = out1; | ||
1651 | } | ||
1652 | } | ||
1653 | |||
1654 | static void sd_pkt_scan(struct gspca_dev *gspca_dev, | 1566 | static void sd_pkt_scan(struct gspca_dev *gspca_dev, |
1655 | struct gspca_frame *frame, /* target */ | 1567 | struct gspca_frame *frame, /* target */ |
1656 | __u8 *data, /* isoc packet */ | 1568 | __u8 *data, /* isoc packet */ |
1657 | int len) /* iso packet length */ | 1569 | int len) /* iso packet length */ |
1658 | { | 1570 | { |
1659 | struct sd *sd = (struct sd *) gspca_dev; | ||
1660 | |||
1661 | switch (data[0]) { | 1571 | switch (data[0]) { |
1662 | case 0: /* start of frame */ | 1572 | case 0: /* start of frame */ |
1663 | if (gspca_dev->last_packet_type == FIRST_PACKET) { | 1573 | frame = gspca_frame_add(gspca_dev, LAST_PACKET, frame, |
1664 | yuvy_decode(sd->tmpbuf2, sd->tmpbuf, | 1574 | data, 0); |
1665 | gspca_dev->width, | ||
1666 | gspca_dev->height); | ||
1667 | frame = gspca_frame_add(gspca_dev, | ||
1668 | LAST_PACKET, | ||
1669 | frame, | ||
1670 | sd->tmpbuf2, | ||
1671 | gspca_dev->width | ||
1672 | * gspca_dev->height | ||
1673 | * 2); | ||
1674 | } | ||
1675 | gspca_frame_add(gspca_dev, FIRST_PACKET, frame, | ||
1676 | data, 0); | ||
1677 | data += SPCA508_OFFSET_DATA; | 1575 | data += SPCA508_OFFSET_DATA; |
1678 | len -= SPCA508_OFFSET_DATA; | 1576 | len -= SPCA508_OFFSET_DATA; |
1679 | if (len > 0) | 1577 | gspca_frame_add(gspca_dev, FIRST_PACKET, frame, |
1680 | memcpy(sd->tmpbuf, data, len); | 1578 | data, len); |
1681 | else | 1579 | break; |
1682 | len = 0; | ||
1683 | sd->buflen = len; | ||
1684 | return; | ||
1685 | case 0xff: /* drop */ | 1580 | case 0xff: /* drop */ |
1686 | /* gspca_dev->last_packet_type = DISCARD_PACKET; */ | 1581 | /* gspca_dev->last_packet_type = DISCARD_PACKET; */ |
1687 | return; | 1582 | break; |
1583 | default: | ||
1584 | data += 1; | ||
1585 | len -= 1; | ||
1586 | gspca_frame_add(gspca_dev, FIRST_PACKET, frame, | ||
1587 | data, len); | ||
1588 | break; | ||
1688 | } | 1589 | } |
1689 | data += 1; | ||
1690 | len -= 1; | ||
1691 | memcpy(&sd->tmpbuf[sd->buflen], data, len); | ||
1692 | sd->buflen += len; | ||
1693 | } | 1590 | } |
1694 | 1591 | ||
1695 | static void setbrightness(struct gspca_dev *gspca_dev) | 1592 | static void setbrightness(struct gspca_dev *gspca_dev) |
@@ -1745,15 +1642,14 @@ static const struct sd_desc sd_desc = { | |||
1745 | }; | 1642 | }; |
1746 | 1643 | ||
1747 | /* -- module initialisation -- */ | 1644 | /* -- module initialisation -- */ |
1748 | #define DVNM(name) .driver_info = (kernel_ulong_t) name | ||
1749 | static const __devinitdata struct usb_device_id device_table[] = { | 1645 | static const __devinitdata struct usb_device_id device_table[] = { |
1750 | {USB_DEVICE(0x0130, 0x0130), DVNM("Clone Digital Webcam 11043")}, | 1646 | {USB_DEVICE(0x0130, 0x0130), .driver_info = HamaUSBSightcam}, |
1751 | {USB_DEVICE(0x041e, 0x4018), DVNM("Creative Webcam Vista (PD1100)")}, | 1647 | {USB_DEVICE(0x041e, 0x4018), .driver_info = CreativeVista}, |
1752 | {USB_DEVICE(0x0461, 0x0815), DVNM("Micro Innovation IC200")}, | 1648 | {USB_DEVICE(0x0461, 0x0815), .driver_info = MicroInnovationIC200}, |
1753 | {USB_DEVICE(0x0733, 0x0110), DVNM("ViewQuest VQ110")}, | 1649 | {USB_DEVICE(0x0733, 0x0110), .driver_info = ViewQuestVQ110}, |
1754 | {USB_DEVICE(0x0af9, 0x0010), DVNM("Hama USB Sightcam 100")}, | 1650 | {USB_DEVICE(0x0af9, 0x0010), .driver_info = HamaUSBSightcam}, |
1755 | {USB_DEVICE(0x0af9, 0x0011), DVNM("Hama USB Sightcam 100")}, | 1651 | {USB_DEVICE(0x0af9, 0x0011), .driver_info = HamaUSBSightcam2}, |
1756 | {USB_DEVICE(0x8086, 0x0110), DVNM("Intel Easy PC Camera")}, | 1652 | {USB_DEVICE(0x8086, 0x0110), .driver_info = IntelEasyPCCamera}, |
1757 | {} | 1653 | {} |
1758 | }; | 1654 | }; |
1759 | MODULE_DEVICE_TABLE(usb, device_table); | 1655 | MODULE_DEVICE_TABLE(usb, device_table); |
@@ -1778,7 +1674,7 @@ static int __init sd_mod_init(void) | |||
1778 | { | 1674 | { |
1779 | if (usb_register(&sd_driver) < 0) | 1675 | if (usb_register(&sd_driver) < 0) |
1780 | return -1; | 1676 | return -1; |
1781 | PDEBUG(D_PROBE, "v%s registered", version); | 1677 | PDEBUG(D_PROBE, "registered"); |
1782 | return 0; | 1678 | return 0; |
1783 | } | 1679 | } |
1784 | static void __exit sd_mod_exit(void) | 1680 | static void __exit sd_mod_exit(void) |
diff --git a/drivers/media/video/gspca/spca561.c b/drivers/media/video/gspca/spca561.c index b659bd0f788d..a26174508cb9 100644 --- a/drivers/media/video/gspca/spca561.c +++ b/drivers/media/video/gspca/spca561.c | |||
@@ -24,9 +24,6 @@ | |||
24 | 24 | ||
25 | #include "gspca.h" | 25 | #include "gspca.h" |
26 | 26 | ||
27 | #define DRIVER_VERSION_NUMBER KERNEL_VERSION(2, 1, 7) | ||
28 | static const char version[] = "2.1.7"; | ||
29 | |||
30 | MODULE_AUTHOR("Michel Xhaard <mxhaard@users.sourceforge.net>"); | 27 | MODULE_AUTHOR("Michel Xhaard <mxhaard@users.sourceforge.net>"); |
31 | MODULE_DESCRIPTION("GSPCA/SPCA561 USB Camera Driver"); | 28 | MODULE_DESCRIPTION("GSPCA/SPCA561 USB Camera Driver"); |
32 | MODULE_LICENSE("GPL"); | 29 | MODULE_LICENSE("GPL"); |
@@ -582,35 +579,15 @@ static int sd_config(struct gspca_dev *gspca_dev, | |||
582 | PDEBUG(D_PROBE, "Bad vendor / product from device"); | 579 | PDEBUG(D_PROBE, "Bad vendor / product from device"); |
583 | return -EINVAL; | 580 | return -EINVAL; |
584 | } | 581 | } |
585 | switch (product) { | 582 | |
586 | case 0x0928: | ||
587 | case 0x0929: | ||
588 | case 0x092a: | ||
589 | case 0x092b: | ||
590 | case 0x092c: | ||
591 | case 0x092d: | ||
592 | case 0x092e: | ||
593 | case 0x092f: | ||
594 | case 0x403b: | ||
595 | sd->chip_revision = Rev012A; | ||
596 | break; | ||
597 | default: | ||
598 | /* case 0x0561: | ||
599 | case 0x0815: * ?? in spca508.c | ||
600 | case 0x401a: | ||
601 | case 0x7004: | ||
602 | case 0x7e50: | ||
603 | case 0xa001: | ||
604 | case 0xcdee: */ | ||
605 | sd->chip_revision = Rev072A; | ||
606 | break; | ||
607 | } | ||
608 | cam = &gspca_dev->cam; | 583 | cam = &gspca_dev->cam; |
609 | cam->dev_name = (char *) id->driver_info; | 584 | cam->dev_name = (char *) id->driver_info; |
610 | cam->epaddr = 0x01; | 585 | cam->epaddr = 0x01; |
611 | gspca_dev->nbalt = 7 + 1; /* choose alternate 7 first */ | 586 | gspca_dev->nbalt = 7 + 1; /* choose alternate 7 first */ |
612 | cam->cam_mode = sif_mode; | 587 | cam->cam_mode = sif_mode; |
613 | cam->nmodes = sizeof sif_mode / sizeof sif_mode[0]; | 588 | cam->nmodes = sizeof sif_mode / sizeof sif_mode[0]; |
589 | |||
590 | sd->chip_revision = id->driver_info; | ||
614 | sd->brightness = sd_ctrls[SD_BRIGHTNESS].qctrl.default_value; | 591 | sd->brightness = sd_ctrls[SD_BRIGHTNESS].qctrl.default_value; |
615 | sd->contrast = sd_ctrls[SD_CONTRAST].qctrl.default_value; | 592 | sd->contrast = sd_ctrls[SD_CONTRAST].qctrl.default_value; |
616 | sd->autogain = sd_ctrls[SD_AUTOGAIN].qctrl.default_value; | 593 | sd->autogain = sd_ctrls[SD_AUTOGAIN].qctrl.default_value; |
@@ -997,23 +974,22 @@ static const struct sd_desc sd_desc = { | |||
997 | }; | 974 | }; |
998 | 975 | ||
999 | /* -- module initialisation -- */ | 976 | /* -- module initialisation -- */ |
1000 | #define DVNM(name) .driver_info = (kernel_ulong_t) name | ||
1001 | static const __devinitdata struct usb_device_id device_table[] = { | 977 | static const __devinitdata struct usb_device_id device_table[] = { |
1002 | {USB_DEVICE(0x041e, 0x401a), DVNM("Creative Webcam Vista (PD1100)")}, | 978 | {USB_DEVICE(0x041e, 0x401a), .driver_info = Rev072A}, |
1003 | {USB_DEVICE(0x041e, 0x403b), DVNM("Creative Webcam Vista (VF0010)")}, | 979 | {USB_DEVICE(0x041e, 0x403b), .driver_info = Rev012A}, |
1004 | {USB_DEVICE(0x0458, 0x7004), DVNM("Genius VideoCAM Express V2")}, | 980 | {USB_DEVICE(0x0458, 0x7004), .driver_info = Rev072A}, |
1005 | {USB_DEVICE(0x046d, 0x0928), DVNM("Logitech QC Express Etch2")}, | 981 | {USB_DEVICE(0x046d, 0x0928), .driver_info = Rev012A}, |
1006 | {USB_DEVICE(0x046d, 0x0929), DVNM("Labtec Webcam Elch2")}, | 982 | {USB_DEVICE(0x046d, 0x0929), .driver_info = Rev012A}, |
1007 | {USB_DEVICE(0x046d, 0x092a), DVNM("Logitech QC for Notebook")}, | 983 | {USB_DEVICE(0x046d, 0x092a), .driver_info = Rev012A}, |
1008 | {USB_DEVICE(0x046d, 0x092b), DVNM("Labtec Webcam Plus")}, | 984 | {USB_DEVICE(0x046d, 0x092b), .driver_info = Rev012A}, |
1009 | {USB_DEVICE(0x046d, 0x092c), DVNM("Logitech QC chat Elch2")}, | 985 | {USB_DEVICE(0x046d, 0x092c), .driver_info = Rev012A}, |
1010 | {USB_DEVICE(0x046d, 0x092d), DVNM("Logitech QC Elch2")}, | 986 | {USB_DEVICE(0x046d, 0x092d), .driver_info = Rev012A}, |
1011 | {USB_DEVICE(0x046d, 0x092e), DVNM("Logitech QC Elch2")}, | 987 | {USB_DEVICE(0x046d, 0x092e), .driver_info = Rev012A}, |
1012 | {USB_DEVICE(0x046d, 0x092f), DVNM("Logitech QC Elch2")}, | 988 | {USB_DEVICE(0x046d, 0x092f), .driver_info = Rev012A}, |
1013 | {USB_DEVICE(0x04fc, 0x0561), DVNM("Flexcam 100")}, | 989 | {USB_DEVICE(0x04fc, 0x0561), .driver_info = Rev072A}, |
1014 | {USB_DEVICE(0x060b, 0xa001), DVNM("Maxell Compact Pc PM3")}, | 990 | {USB_DEVICE(0x060b, 0xa001), .driver_info = Rev072A}, |
1015 | {USB_DEVICE(0x10fd, 0x7e50), DVNM("FlyCam Usb 100")}, | 991 | {USB_DEVICE(0x10fd, 0x7e50), .driver_info = Rev072A}, |
1016 | {USB_DEVICE(0xabcd, 0xcdee), DVNM("Petcam")}, | 992 | {USB_DEVICE(0xabcd, 0xcdee), .driver_info = Rev072A}, |
1017 | {} | 993 | {} |
1018 | }; | 994 | }; |
1019 | 995 | ||
@@ -1039,7 +1015,7 @@ static int __init sd_mod_init(void) | |||
1039 | { | 1015 | { |
1040 | if (usb_register(&sd_driver) < 0) | 1016 | if (usb_register(&sd_driver) < 0) |
1041 | return -1; | 1017 | return -1; |
1042 | PDEBUG(D_PROBE, "v%s registered", version); | 1018 | PDEBUG(D_PROBE, "registered"); |
1043 | return 0; | 1019 | return 0; |
1044 | } | 1020 | } |
1045 | static void __exit sd_mod_exit(void) | 1021 | static void __exit sd_mod_exit(void) |
diff --git a/drivers/media/video/gspca/stk014.c b/drivers/media/video/gspca/stk014.c index c78ee0d3e59b..16219cf6a6d5 100644 --- a/drivers/media/video/gspca/stk014.c +++ b/drivers/media/video/gspca/stk014.c | |||
@@ -23,9 +23,6 @@ | |||
23 | #include "gspca.h" | 23 | #include "gspca.h" |
24 | #include "jpeg.h" | 24 | #include "jpeg.h" |
25 | 25 | ||
26 | #define DRIVER_VERSION_NUMBER KERNEL_VERSION(2, 1, 7) | ||
27 | static const char version[] = "2.1.7"; | ||
28 | |||
29 | MODULE_AUTHOR("Jean-Francois Moine <http://moinejf.free.fr>"); | 26 | MODULE_AUTHOR("Jean-Francois Moine <http://moinejf.free.fr>"); |
30 | MODULE_DESCRIPTION("Syntek DV4000 (STK014) USB Camera Driver"); | 27 | MODULE_DESCRIPTION("Syntek DV4000 (STK014) USB Camera Driver"); |
31 | MODULE_LICENSE("GPL"); | 28 | MODULE_LICENSE("GPL"); |
@@ -299,7 +296,6 @@ static int sd_config(struct gspca_dev *gspca_dev, | |||
299 | struct sd *sd = (struct sd *) gspca_dev; | 296 | struct sd *sd = (struct sd *) gspca_dev; |
300 | struct cam *cam = &gspca_dev->cam; | 297 | struct cam *cam = &gspca_dev->cam; |
301 | 298 | ||
302 | cam->dev_name = (char *) id->driver_info; | ||
303 | cam->epaddr = 0x02; | 299 | cam->epaddr = 0x02; |
304 | gspca_dev->cam.cam_mode = vga_mode; | 300 | gspca_dev->cam.cam_mode = vga_mode; |
305 | gspca_dev->cam.nmodes = ARRAY_SIZE(vga_mode); | 301 | gspca_dev->cam.nmodes = ARRAY_SIZE(vga_mode); |
@@ -549,9 +545,8 @@ static const struct sd_desc sd_desc = { | |||
549 | }; | 545 | }; |
550 | 546 | ||
551 | /* -- module initialisation -- */ | 547 | /* -- module initialisation -- */ |
552 | #define DVNM(name) .driver_info = (kernel_ulong_t) name | ||
553 | static const __devinitdata struct usb_device_id device_table[] = { | 548 | static const __devinitdata struct usb_device_id device_table[] = { |
554 | {USB_DEVICE(0x05e1, 0x0893), DVNM("Syntek DV4000")}, | 549 | {USB_DEVICE(0x05e1, 0x0893)}, |
555 | {} | 550 | {} |
556 | }; | 551 | }; |
557 | MODULE_DEVICE_TABLE(usb, device_table); | 552 | MODULE_DEVICE_TABLE(usb, device_table); |
@@ -576,7 +571,7 @@ static int __init sd_mod_init(void) | |||
576 | { | 571 | { |
577 | if (usb_register(&sd_driver) < 0) | 572 | if (usb_register(&sd_driver) < 0) |
578 | return -1; | 573 | return -1; |
579 | info("v%s registered", version); | 574 | info("registered"); |
580 | return 0; | 575 | return 0; |
581 | } | 576 | } |
582 | static void __exit sd_mod_exit(void) | 577 | static void __exit sd_mod_exit(void) |
diff --git a/drivers/media/video/gspca/sunplus.c b/drivers/media/video/gspca/sunplus.c index abd7bef9b3d1..54efa48bee01 100644 --- a/drivers/media/video/gspca/sunplus.c +++ b/drivers/media/video/gspca/sunplus.c | |||
@@ -24,9 +24,6 @@ | |||
24 | #include "gspca.h" | 24 | #include "gspca.h" |
25 | #include "jpeg.h" | 25 | #include "jpeg.h" |
26 | 26 | ||
27 | #define DRIVER_VERSION_NUMBER KERNEL_VERSION(2, 1, 8) | ||
28 | static const char version[] = "2.1.8"; | ||
29 | |||
30 | MODULE_AUTHOR("Michel Xhaard <mxhaard@users.sourceforge.net>"); | 27 | MODULE_AUTHOR("Michel Xhaard <mxhaard@users.sourceforge.net>"); |
31 | MODULE_DESCRIPTION("GSPCA/SPCA5xx USB Camera Driver"); | 28 | MODULE_DESCRIPTION("GSPCA/SPCA5xx USB Camera Driver"); |
32 | MODULE_LICENSE("GPL"); | 29 | MODULE_LICENSE("GPL"); |
@@ -804,229 +801,29 @@ static int sd_config(struct gspca_dev *gspca_dev, | |||
804 | struct sd *sd = (struct sd *) gspca_dev; | 801 | struct sd *sd = (struct sd *) gspca_dev; |
805 | struct usb_device *dev = gspca_dev->dev; | 802 | struct usb_device *dev = gspca_dev->dev; |
806 | struct cam *cam; | 803 | struct cam *cam; |
807 | __u16 vendor; | 804 | |
808 | __u16 product; | 805 | cam = &gspca_dev->cam; |
809 | __u8 fw; | 806 | cam->epaddr = 0x01; |
810 | 807 | ||
811 | vendor = id->idVendor; | 808 | sd->bridge = id->driver_info >> 8; |
812 | product = id->idProduct; | 809 | sd->subtype = id->driver_info; |
813 | switch (vendor) { | 810 | |
814 | case 0x041e: /* Creative cameras */ | 811 | if (sd->subtype == AiptekMiniPenCam13) { |
815 | /* switch (product) { */ | ||
816 | /* case 0x400b: */ | ||
817 | /* case 0x4012: */ | ||
818 | /* case 0x4013: */ | ||
819 | /* sd->bridge = BRIDGE_SPCA504C; */ | ||
820 | /* break; */ | ||
821 | /* } */ | ||
822 | break; | ||
823 | case 0x0458: /* Genius KYE cameras */ | ||
824 | /* switch (product) { */ | ||
825 | /* case 0x7006: */ | ||
826 | sd->bridge = BRIDGE_SPCA504B; | ||
827 | /* break; */ | ||
828 | /* } */ | ||
829 | break; | ||
830 | case 0x0461: /* MicroInnovation */ | ||
831 | /* switch (product) { */ | ||
832 | /* case 0x0821: */ | ||
833 | sd->bridge = BRIDGE_SPCA533; | ||
834 | /* break; */ | ||
835 | /* } */ | ||
836 | break; | ||
837 | case 0x046d: /* Logitech Labtec */ | ||
838 | switch (product) { | ||
839 | case 0x0905: | ||
840 | sd->subtype = LogitechClickSmart820; | ||
841 | sd->bridge = BRIDGE_SPCA533; | ||
842 | break; | ||
843 | case 0x0960: | ||
844 | sd->subtype = LogitechClickSmart420; | ||
845 | sd->bridge = BRIDGE_SPCA504C; | ||
846 | break; | ||
847 | } | ||
848 | break; | ||
849 | case 0x0471: /* Philips */ | ||
850 | /* switch (product) { */ | ||
851 | /* case 0x0322: */ | ||
852 | sd->bridge = BRIDGE_SPCA504B; | ||
853 | /* break; */ | ||
854 | /* } */ | ||
855 | break; | ||
856 | case 0x04a5: /* Benq */ | ||
857 | switch (product) { | ||
858 | case 0x3003: | ||
859 | sd->bridge = BRIDGE_SPCA504B; | ||
860 | break; | ||
861 | case 0x3008: | ||
862 | case 0x300a: | ||
863 | sd->bridge = BRIDGE_SPCA533; | ||
864 | break; | ||
865 | } | ||
866 | break; | ||
867 | case 0x04f1: /* JVC */ | ||
868 | /* switch (product) { */ | ||
869 | /* case 0x1001: */ | ||
870 | sd->bridge = BRIDGE_SPCA504B; | ||
871 | /* break; */ | ||
872 | /* } */ | ||
873 | break; | ||
874 | case 0x04fc: /* SunPlus */ | ||
875 | switch (product) { | ||
876 | case 0x500c: | ||
877 | sd->bridge = BRIDGE_SPCA504B; | ||
878 | break; | ||
879 | case 0x504a: | ||
880 | /* try to get the firmware as some cam answer 2.0.1.2.2 | 812 | /* try to get the firmware as some cam answer 2.0.1.2.2 |
881 | * and should be a spca504b then overwrite that setting */ | 813 | * and should be a spca504b then overwrite that setting */ |
882 | reg_r(dev, 0x20, 0, gspca_dev->usb_buf, 1); | 814 | reg_r(dev, 0x20, 0, gspca_dev->usb_buf, 1); |
883 | fw = gspca_dev->usb_buf[0]; | 815 | switch (gspca_dev->usb_buf[0]) { |
884 | if (fw == 1) { | 816 | case 1: |
885 | sd->subtype = AiptekMiniPenCam13; | 817 | break; /* (right bridge/subtype) */ |
886 | sd->bridge = BRIDGE_SPCA504; | 818 | case 2: |
887 | } else if (fw == 2) { | ||
888 | sd->bridge = BRIDGE_SPCA504B; | ||
889 | } else | ||
890 | return -ENODEV; | ||
891 | break; | ||
892 | case 0x504b: | ||
893 | sd->bridge = BRIDGE_SPCA504B; | ||
894 | break; | ||
895 | case 0x5330: | ||
896 | sd->bridge = BRIDGE_SPCA533; | ||
897 | break; | ||
898 | case 0x5360: | ||
899 | sd->bridge = BRIDGE_SPCA536; | ||
900 | break; | ||
901 | case 0xffff: | ||
902 | sd->bridge = BRIDGE_SPCA504B; | ||
903 | break; | ||
904 | } | ||
905 | break; | ||
906 | case 0x052b: /* ?? Megapix */ | ||
907 | /* switch (product) { */ | ||
908 | /* case 0x1513: */ | ||
909 | sd->subtype = MegapixV4; | ||
910 | sd->bridge = BRIDGE_SPCA533; | ||
911 | /* break; */ | ||
912 | /* } */ | ||
913 | break; | ||
914 | case 0x0546: /* Polaroid */ | ||
915 | switch (product) { | ||
916 | case 0x3155: | ||
917 | sd->bridge = BRIDGE_SPCA533; | ||
918 | break; | ||
919 | case 0x3191: | ||
920 | case 0x3273: | ||
921 | sd->bridge = BRIDGE_SPCA504B; | ||
922 | break; | ||
923 | } | ||
924 | break; | ||
925 | case 0x055f: /* Mustek cameras */ | ||
926 | switch (product) { | ||
927 | case 0xc211: | ||
928 | sd->bridge = BRIDGE_SPCA536; | ||
929 | break; | ||
930 | case 0xc230: | ||
931 | case 0xc232: | ||
932 | sd->bridge = BRIDGE_SPCA533; | ||
933 | break; | ||
934 | case 0xc360: | ||
935 | sd->bridge = BRIDGE_SPCA536; | ||
936 | break; | ||
937 | case 0xc420: | ||
938 | sd->bridge = BRIDGE_SPCA504; | ||
939 | break; | ||
940 | case 0xc430: | ||
941 | case 0xc440: | ||
942 | sd->bridge = BRIDGE_SPCA533; | ||
943 | break; | ||
944 | case 0xc520: | ||
945 | sd->bridge = BRIDGE_SPCA504; | ||
946 | break; | ||
947 | case 0xc530: | ||
948 | case 0xc540: | ||
949 | case 0xc630: | ||
950 | case 0xc650: | ||
951 | sd->bridge = BRIDGE_SPCA533; | ||
952 | break; | ||
953 | } | ||
954 | break; | ||
955 | case 0x05da: /* Digital Dream cameras */ | ||
956 | /* switch (product) { */ | ||
957 | /* case 0x1018: */ | ||
958 | sd->bridge = BRIDGE_SPCA504B; | 819 | sd->bridge = BRIDGE_SPCA504B; |
959 | /* break; */ | 820 | sd->subtype = 0; |
960 | /* } */ | ||
961 | break; | ||
962 | case 0x06d6: /* Trust */ | ||
963 | /* switch (product) { */ | ||
964 | /* case 0x0031: */ | ||
965 | sd->bridge = BRIDGE_SPCA533; /* SPCA533A */ | ||
966 | /* break; */ | ||
967 | /* } */ | ||
968 | break; | ||
969 | case 0x0733: /* Rebadged ViewQuest (Intel) and ViewQuest cameras */ | ||
970 | switch (product) { | ||
971 | case 0x1311: | ||
972 | case 0x1314: | ||
973 | case 0x2211: | ||
974 | case 0x2221: | ||
975 | sd->bridge = BRIDGE_SPCA533; | ||
976 | break; | ||
977 | case 0x3261: | ||
978 | case 0x3281: | ||
979 | sd->bridge = BRIDGE_SPCA536; | ||
980 | break; | ||
981 | } | ||
982 | break; | ||
983 | case 0x08ca: /* Aiptek */ | ||
984 | switch (product) { | ||
985 | case 0x0104: | ||
986 | case 0x0106: | ||
987 | sd->bridge = BRIDGE_SPCA533; | ||
988 | break; | ||
989 | case 0x2008: | ||
990 | sd->bridge = BRIDGE_SPCA504B; | ||
991 | break; | ||
992 | case 0x2010: | ||
993 | sd->bridge = BRIDGE_SPCA533; | ||
994 | break; | ||
995 | case 0x2016: | ||
996 | case 0x2018: | ||
997 | sd->bridge = BRIDGE_SPCA504B; | ||
998 | break; | ||
999 | case 0x2020: | ||
1000 | case 0x2022: | ||
1001 | sd->bridge = BRIDGE_SPCA533; | ||
1002 | break; | ||
1003 | case 0x2024: | ||
1004 | sd->bridge = BRIDGE_SPCA536; | ||
1005 | break; | ||
1006 | case 0x2028: | ||
1007 | sd->bridge = BRIDGE_SPCA533; | ||
1008 | break; | ||
1009 | case 0x2040: | ||
1010 | case 0x2042: | ||
1011 | case 0x2050: | ||
1012 | case 0x2060: | ||
1013 | sd->bridge = BRIDGE_SPCA536; | ||
1014 | break; | 821 | break; |
822 | default: | ||
823 | return -ENODEV; | ||
1015 | } | 824 | } |
1016 | break; | ||
1017 | case 0x0d64: /* SunPlus */ | ||
1018 | /* switch (product) { */ | ||
1019 | /* case 0x0303: */ | ||
1020 | sd->bridge = BRIDGE_SPCA536; | ||
1021 | /* break; */ | ||
1022 | /* } */ | ||
1023 | break; | ||
1024 | } | 825 | } |
1025 | 826 | ||
1026 | cam = &gspca_dev->cam; | ||
1027 | cam->dev_name = (char *) id->driver_info; | ||
1028 | cam->epaddr = 0x01; | ||
1029 | |||
1030 | switch (sd->bridge) { | 827 | switch (sd->bridge) { |
1031 | default: | 828 | default: |
1032 | /* case BRIDGE_SPCA504B: */ | 829 | /* case BRIDGE_SPCA504B: */ |
@@ -1581,65 +1378,67 @@ static const struct sd_desc sd_desc = { | |||
1581 | }; | 1378 | }; |
1582 | 1379 | ||
1583 | /* -- module initialisation -- */ | 1380 | /* -- module initialisation -- */ |
1584 | #define DVNM(name) .driver_info = (kernel_ulong_t) name | 1381 | #define BS(bridge, subtype) \ |
1382 | .driver_info = (BRIDGE_ ## bridge << 8) \ | ||
1383 | | (subtype) | ||
1585 | static const __devinitdata struct usb_device_id device_table[] = { | 1384 | static const __devinitdata struct usb_device_id device_table[] = { |
1586 | {USB_DEVICE(0x041e, 0x400b), DVNM("Creative PC-CAM 600")}, | 1385 | {USB_DEVICE(0x041e, 0x400b), BS(SPCA504C, 0)}, |
1587 | {USB_DEVICE(0x041e, 0x4012), DVNM("PC-Cam350")}, | 1386 | {USB_DEVICE(0x041e, 0x4012), BS(SPCA504C, 0)}, |
1588 | {USB_DEVICE(0x041e, 0x4013), DVNM("Creative Pccam750")}, | 1387 | {USB_DEVICE(0x041e, 0x4013), BS(SPCA504C, 0)}, |
1589 | {USB_DEVICE(0x0458, 0x7006), DVNM("Genius Dsc 1.3 Smart")}, | 1388 | {USB_DEVICE(0x0458, 0x7006), BS(SPCA504B, 0)}, |
1590 | {USB_DEVICE(0x0461, 0x0821), DVNM("Fujifilm MV-1")}, | 1389 | {USB_DEVICE(0x0461, 0x0821), BS(SPCA533, 0)}, |
1591 | {USB_DEVICE(0x046d, 0x0905), DVNM("Logitech ClickSmart 820")}, | 1390 | {USB_DEVICE(0x046d, 0x0905), BS(SPCA533, LogitechClickSmart820)}, |
1592 | {USB_DEVICE(0x046d, 0x0960), DVNM("Logitech ClickSmart 420")}, | 1391 | {USB_DEVICE(0x046d, 0x0960), BS(SPCA504C, LogitechClickSmart420)}, |
1593 | {USB_DEVICE(0x0471, 0x0322), DVNM("Philips DMVC1300K")}, | 1392 | {USB_DEVICE(0x0471, 0x0322), BS(SPCA504B, 0)}, |
1594 | {USB_DEVICE(0x04a5, 0x3003), DVNM("Benq DC 1300")}, | 1393 | {USB_DEVICE(0x04a5, 0x3003), BS(SPCA504B, 0)}, |
1595 | {USB_DEVICE(0x04a5, 0x3008), DVNM("Benq DC 1500")}, | 1394 | {USB_DEVICE(0x04a5, 0x3008), BS(SPCA533, 0)}, |
1596 | {USB_DEVICE(0x04a5, 0x300a), DVNM("Benq DC3410")}, | 1395 | {USB_DEVICE(0x04a5, 0x300a), BS(SPCA533, 0)}, |
1597 | {USB_DEVICE(0x04f1, 0x1001), DVNM("JVC GC A50")}, | 1396 | {USB_DEVICE(0x04f1, 0x1001), BS(SPCA504B, 0)}, |
1598 | {USB_DEVICE(0x04fc, 0x500c), DVNM("Sunplus CA500C")}, | 1397 | {USB_DEVICE(0x04fc, 0x500c), BS(SPCA504B, 0)}, |
1599 | {USB_DEVICE(0x04fc, 0x504a), DVNM("Aiptek Mini PenCam 1.3")}, | 1398 | {USB_DEVICE(0x04fc, 0x504a), BS(SPCA504, AiptekMiniPenCam13)}, |
1600 | {USB_DEVICE(0x04fc, 0x504b), DVNM("Maxell MaxPocket LE 1.3")}, | 1399 | {USB_DEVICE(0x04fc, 0x504b), BS(SPCA504B, 0)}, |
1601 | {USB_DEVICE(0x04fc, 0x5330), DVNM("Digitrex 2110")}, | 1400 | {USB_DEVICE(0x04fc, 0x5330), BS(SPCA533, 0)}, |
1602 | {USB_DEVICE(0x04fc, 0x5360), DVNM("Sunplus Generic")}, | 1401 | {USB_DEVICE(0x04fc, 0x5360), BS(SPCA536, 0)}, |
1603 | {USB_DEVICE(0x04fc, 0xffff), DVNM("Pure DigitalDakota")}, | 1402 | {USB_DEVICE(0x04fc, 0xffff), BS(SPCA504B, 0)}, |
1604 | {USB_DEVICE(0x052b, 0x1513), DVNM("Megapix V4")}, | 1403 | {USB_DEVICE(0x052b, 0x1513), BS(SPCA533, MegapixV4)}, |
1605 | {USB_DEVICE(0x0546, 0x3155), DVNM("Polaroid PDC3070")}, | 1404 | {USB_DEVICE(0x0546, 0x3155), BS(SPCA533, 0)}, |
1606 | {USB_DEVICE(0x0546, 0x3191), DVNM("Polaroid Ion 80")}, | 1405 | {USB_DEVICE(0x0546, 0x3191), BS(SPCA504B, 0)}, |
1607 | {USB_DEVICE(0x0546, 0x3273), DVNM("Polaroid PDC2030")}, | 1406 | {USB_DEVICE(0x0546, 0x3273), BS(SPCA504B, 0)}, |
1608 | {USB_DEVICE(0x055f, 0xc211), DVNM("Kowa Bs888e Microcamera")}, | 1407 | {USB_DEVICE(0x055f, 0xc211), BS(SPCA536, 0)}, |
1609 | {USB_DEVICE(0x055f, 0xc230), DVNM("Mustek Digicam 330K")}, | 1408 | {USB_DEVICE(0x055f, 0xc230), BS(SPCA533, 0)}, |
1610 | {USB_DEVICE(0x055f, 0xc232), DVNM("Mustek MDC3500")}, | 1409 | {USB_DEVICE(0x055f, 0xc232), BS(SPCA533, 0)}, |
1611 | {USB_DEVICE(0x055f, 0xc360), DVNM("Mustek DV4000 Mpeg4 ")}, | 1410 | {USB_DEVICE(0x055f, 0xc360), BS(SPCA536, 0)}, |
1612 | {USB_DEVICE(0x055f, 0xc420), DVNM("Mustek gSmart Mini 2")}, | 1411 | {USB_DEVICE(0x055f, 0xc420), BS(SPCA504, 0)}, |
1613 | {USB_DEVICE(0x055f, 0xc430), DVNM("Mustek Gsmart LCD 2")}, | 1412 | {USB_DEVICE(0x055f, 0xc430), BS(SPCA533, 0)}, |
1614 | {USB_DEVICE(0x055f, 0xc440), DVNM("Mustek DV 3000")}, | 1413 | {USB_DEVICE(0x055f, 0xc440), BS(SPCA533, 0)}, |
1615 | {USB_DEVICE(0x055f, 0xc520), DVNM("Mustek gSmart Mini 3")}, | 1414 | {USB_DEVICE(0x055f, 0xc520), BS(SPCA504, 0)}, |
1616 | {USB_DEVICE(0x055f, 0xc530), DVNM("Mustek Gsmart LCD 3")}, | 1415 | {USB_DEVICE(0x055f, 0xc530), BS(SPCA533, 0)}, |
1617 | {USB_DEVICE(0x055f, 0xc540), DVNM("Gsmart D30")}, | 1416 | {USB_DEVICE(0x055f, 0xc540), BS(SPCA533, 0)}, |
1618 | {USB_DEVICE(0x055f, 0xc630), DVNM("Mustek MDC4000")}, | 1417 | {USB_DEVICE(0x055f, 0xc630), BS(SPCA533, 0)}, |
1619 | {USB_DEVICE(0x055f, 0xc650), DVNM("Mustek MDC5500Z")}, | 1418 | {USB_DEVICE(0x055f, 0xc650), BS(SPCA533, 0)}, |
1620 | {USB_DEVICE(0x05da, 0x1018), DVNM("Digital Dream Enigma 1.3")}, | 1419 | {USB_DEVICE(0x05da, 0x1018), BS(SPCA504B, 0)}, |
1621 | {USB_DEVICE(0x06d6, 0x0031), DVNM("Trust 610 LCD PowerC@m Zoom")}, | 1420 | {USB_DEVICE(0x06d6, 0x0031), BS(SPCA533, 0)}, |
1622 | {USB_DEVICE(0x0733, 0x1311), DVNM("Digital Dream Epsilon 1.3")}, | 1421 | {USB_DEVICE(0x0733, 0x1311), BS(SPCA533, 0)}, |
1623 | {USB_DEVICE(0x0733, 0x1314), DVNM("Mercury 2.1MEG Deluxe Classic Cam")}, | 1422 | {USB_DEVICE(0x0733, 0x1314), BS(SPCA533, 0)}, |
1624 | {USB_DEVICE(0x0733, 0x2211), DVNM("Jenoptik jdc 21 LCD")}, | 1423 | {USB_DEVICE(0x0733, 0x2211), BS(SPCA533, 0)}, |
1625 | {USB_DEVICE(0x0733, 0x2221), DVNM("Mercury Digital Pro 3.1p")}, | 1424 | {USB_DEVICE(0x0733, 0x2221), BS(SPCA533, 0)}, |
1626 | {USB_DEVICE(0x0733, 0x3261), DVNM("Concord 3045 spca536a")}, | 1425 | {USB_DEVICE(0x0733, 0x3261), BS(SPCA536, 0)}, |
1627 | {USB_DEVICE(0x0733, 0x3281), DVNM("Cyberpix S550V")}, | 1426 | {USB_DEVICE(0x0733, 0x3281), BS(SPCA536, 0)}, |
1628 | {USB_DEVICE(0x08ca, 0x0104), DVNM("Aiptek PocketDVII 1.3")}, | 1427 | {USB_DEVICE(0x08ca, 0x0104), BS(SPCA533, 0)}, |
1629 | {USB_DEVICE(0x08ca, 0x0106), DVNM("Aiptek Pocket DV3100+")}, | 1428 | {USB_DEVICE(0x08ca, 0x0106), BS(SPCA533, 0)}, |
1630 | {USB_DEVICE(0x08ca, 0x2008), DVNM("Aiptek Mini PenCam 2 M")}, | 1429 | {USB_DEVICE(0x08ca, 0x2008), BS(SPCA504B, 0)}, |
1631 | {USB_DEVICE(0x08ca, 0x2010), DVNM("Aiptek PocketCam 3M")}, | 1430 | {USB_DEVICE(0x08ca, 0x2010), BS(SPCA533, 0)}, |
1632 | {USB_DEVICE(0x08ca, 0x2016), DVNM("Aiptek PocketCam 2 Mega")}, | 1431 | {USB_DEVICE(0x08ca, 0x2016), BS(SPCA504B, 0)}, |
1633 | {USB_DEVICE(0x08ca, 0x2018), DVNM("Aiptek Pencam SD 2M")}, | 1432 | {USB_DEVICE(0x08ca, 0x2018), BS(SPCA504B, 0)}, |
1634 | {USB_DEVICE(0x08ca, 0x2020), DVNM("Aiptek Slim 3000F")}, | 1433 | {USB_DEVICE(0x08ca, 0x2020), BS(SPCA533, 0)}, |
1635 | {USB_DEVICE(0x08ca, 0x2022), DVNM("Aiptek Slim 3200")}, | 1434 | {USB_DEVICE(0x08ca, 0x2022), BS(SPCA533, 0)}, |
1636 | {USB_DEVICE(0x08ca, 0x2024), DVNM("Aiptek DV3500 Mpeg4 ")}, | 1435 | {USB_DEVICE(0x08ca, 0x2024), BS(SPCA536, 0)}, |
1637 | {USB_DEVICE(0x08ca, 0x2028), DVNM("Aiptek PocketCam4M")}, | 1436 | {USB_DEVICE(0x08ca, 0x2028), BS(SPCA533, 0)}, |
1638 | {USB_DEVICE(0x08ca, 0x2040), DVNM("Aiptek PocketDV4100M")}, | 1437 | {USB_DEVICE(0x08ca, 0x2040), BS(SPCA536, 0)}, |
1639 | {USB_DEVICE(0x08ca, 0x2042), DVNM("Aiptek PocketDV5100")}, | 1438 | {USB_DEVICE(0x08ca, 0x2042), BS(SPCA536, 0)}, |
1640 | {USB_DEVICE(0x08ca, 0x2050), DVNM("Medion MD 41437")}, | 1439 | {USB_DEVICE(0x08ca, 0x2050), BS(SPCA536, 0)}, |
1641 | {USB_DEVICE(0x08ca, 0x2060), DVNM("Aiptek PocketDV5300")}, | 1440 | {USB_DEVICE(0x08ca, 0x2060), BS(SPCA536, 0)}, |
1642 | {USB_DEVICE(0x0d64, 0x0303), DVNM("Sunplus FashionCam DXG")}, | 1441 | {USB_DEVICE(0x0d64, 0x0303), BS(SPCA536, 0)}, |
1643 | {} | 1442 | {} |
1644 | }; | 1443 | }; |
1645 | MODULE_DEVICE_TABLE(usb, device_table); | 1444 | MODULE_DEVICE_TABLE(usb, device_table); |
@@ -1664,7 +1463,7 @@ static int __init sd_mod_init(void) | |||
1664 | { | 1463 | { |
1665 | if (usb_register(&sd_driver) < 0) | 1464 | if (usb_register(&sd_driver) < 0) |
1666 | return -1; | 1465 | return -1; |
1667 | PDEBUG(D_PROBE, "v%s registered", version); | 1466 | PDEBUG(D_PROBE, "registered"); |
1668 | return 0; | 1467 | return 0; |
1669 | } | 1468 | } |
1670 | static void __exit sd_mod_exit(void) | 1469 | static void __exit sd_mod_exit(void) |
diff --git a/drivers/media/video/gspca/t613.c b/drivers/media/video/gspca/t613.c index 00f47e463a05..91b555c34c68 100644 --- a/drivers/media/video/gspca/t613.c +++ b/drivers/media/video/gspca/t613.c | |||
@@ -1,12 +1,4 @@ | |||
1 | /* | 1 | /* |
2 | *Notes: * t613 + tas5130A | ||
3 | * * Focus to light do not balance well as in win. | ||
4 | * Quality in win is not good, but its kinda better. | ||
5 | * * Fix some "extraneous bytes", most of apps will show the image anyway | ||
6 | * * Gamma table, is there, but its really doing something? | ||
7 | * * 7~8 Fps, its ok, max on win its 10. | ||
8 | * Costantino Leandro | ||
9 | * | ||
10 | * V4L2 by Jean-Francois Moine <http://moinejf.free.fr> | 2 | * V4L2 by Jean-Francois Moine <http://moinejf.free.fr> |
11 | * | 3 | * |
12 | * This program is free software; you can redistribute it and/or modify | 4 | * This program is free software; you can redistribute it and/or modify |
@@ -22,16 +14,22 @@ | |||
22 | * You should have received a copy of the GNU General Public License | 14 | * You should have received a copy of the GNU General Public License |
23 | * along with this program; if not, write to the Free Software | 15 | * along with this program; if not, write to the Free Software |
24 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | 16 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
17 | * | ||
18 | *Notes: * t613 + tas5130A | ||
19 | * * Focus to light do not balance well as in win. | ||
20 | * Quality in win is not good, but its kinda better. | ||
21 | * * Fix some "extraneous bytes", most of apps will show the image anyway | ||
22 | * * Gamma table, is there, but its really doing something? | ||
23 | * * 7~8 Fps, its ok, max on win its 10. | ||
24 | * Costantino Leandro | ||
25 | */ | 25 | */ |
26 | 26 | ||
27 | #define MODULE_NAME "t613" | 27 | #define MODULE_NAME "t613" |
28 | |||
28 | #include "gspca.h" | 29 | #include "gspca.h" |
29 | #define DRIVER_VERSION_NUMBER KERNEL_VERSION(2, 1, 7) | ||
30 | static const char version[] = "2.1.7"; | ||
31 | 30 | ||
32 | #define MAX_GAMMA 0x10 /* 0 to 15 */ | 31 | #define MAX_GAMMA 0x10 /* 0 to 15 */ |
33 | 32 | ||
34 | /* From LUVCVIEW */ | ||
35 | #define V4L2_CID_EFFECTS (V4L2_CID_PRIVATE_BASE + 3) | 33 | #define V4L2_CID_EFFECTS (V4L2_CID_PRIVATE_BASE + 3) |
36 | 34 | ||
37 | MODULE_AUTHOR("Leandro Costantino <le_costantino@pixartargentina.com.ar>"); | 35 | MODULE_AUTHOR("Leandro Costantino <le_costantino@pixartargentina.com.ar>"); |
@@ -424,7 +422,6 @@ static int sd_config(struct gspca_dev *gspca_dev, | |||
424 | struct cam *cam; | 422 | struct cam *cam; |
425 | 423 | ||
426 | cam = &gspca_dev->cam; | 424 | cam = &gspca_dev->cam; |
427 | cam->dev_name = (char *) id->driver_info; | ||
428 | cam->epaddr = 0x01; | 425 | cam->epaddr = 0x01; |
429 | 426 | ||
430 | cam->cam_mode = vga_mode_t16; | 427 | cam->cam_mode = vga_mode_t16; |
@@ -998,9 +995,8 @@ static const struct sd_desc sd_desc = { | |||
998 | }; | 995 | }; |
999 | 996 | ||
1000 | /* -- module initialisation -- */ | 997 | /* -- module initialisation -- */ |
1001 | #define DVNM(name) .driver_info = (kernel_ulong_t) name | ||
1002 | static const __devinitdata struct usb_device_id device_table[] = { | 998 | static const __devinitdata struct usb_device_id device_table[] = { |
1003 | {USB_DEVICE(0x17a1, 0x0128), DVNM("XPX Webcam")}, | 999 | {USB_DEVICE(0x17a1, 0x0128)}, |
1004 | {} | 1000 | {} |
1005 | }; | 1001 | }; |
1006 | MODULE_DEVICE_TABLE(usb, device_table); | 1002 | MODULE_DEVICE_TABLE(usb, device_table); |
@@ -1025,7 +1021,7 @@ static int __init sd_mod_init(void) | |||
1025 | { | 1021 | { |
1026 | if (usb_register(&sd_driver) < 0) | 1022 | if (usb_register(&sd_driver) < 0) |
1027 | return -1; | 1023 | return -1; |
1028 | PDEBUG(D_PROBE, "v%s registered", version); | 1024 | PDEBUG(D_PROBE, "registered"); |
1029 | return 0; | 1025 | return 0; |
1030 | } | 1026 | } |
1031 | static void __exit sd_mod_exit(void) | 1027 | static void __exit sd_mod_exit(void) |
diff --git a/drivers/media/video/gspca/tv8532.c b/drivers/media/video/gspca/tv8532.c index 0b793899095f..1ff8ba2f7fe5 100644 --- a/drivers/media/video/gspca/tv8532.c +++ b/drivers/media/video/gspca/tv8532.c | |||
@@ -22,9 +22,6 @@ | |||
22 | 22 | ||
23 | #include "gspca.h" | 23 | #include "gspca.h" |
24 | 24 | ||
25 | #define DRIVER_VERSION_NUMBER KERNEL_VERSION(2, 1, 7) | ||
26 | static const char version[] = "2.1.7"; | ||
27 | |||
28 | MODULE_AUTHOR("Michel Xhaard <mxhaard@users.sourceforge.net>"); | 25 | MODULE_AUTHOR("Michel Xhaard <mxhaard@users.sourceforge.net>"); |
29 | MODULE_DESCRIPTION("TV8532 USB Camera Driver"); | 26 | MODULE_DESCRIPTION("TV8532 USB Camera Driver"); |
30 | MODULE_LICENSE("GPL"); | 27 | MODULE_LICENSE("GPL"); |
@@ -249,7 +246,6 @@ static int sd_config(struct gspca_dev *gspca_dev, | |||
249 | tv_8532WriteEEprom(gspca_dev); | 246 | tv_8532WriteEEprom(gspca_dev); |
250 | 247 | ||
251 | cam = &gspca_dev->cam; | 248 | cam = &gspca_dev->cam; |
252 | cam->dev_name = (char *) id->driver_info; | ||
253 | cam->epaddr = 1; | 249 | cam->epaddr = 1; |
254 | cam->cam_mode = sif_mode; | 250 | cam->cam_mode = sif_mode; |
255 | cam->nmodes = sizeof sif_mode / sizeof sif_mode[0]; | 251 | cam->nmodes = sizeof sif_mode / sizeof sif_mode[0]; |
@@ -624,13 +620,12 @@ static const struct sd_desc sd_desc = { | |||
624 | }; | 620 | }; |
625 | 621 | ||
626 | /* -- module initialisation -- */ | 622 | /* -- module initialisation -- */ |
627 | #define DVNM(name) .driver_info = (kernel_ulong_t) name | ||
628 | static const __devinitdata struct usb_device_id device_table[] = { | 623 | static const __devinitdata struct usb_device_id device_table[] = { |
629 | {USB_DEVICE(0x046d, 0x0920), DVNM("QC Express")}, | 624 | {USB_DEVICE(0x046d, 0x0920)}, |
630 | {USB_DEVICE(0x046d, 0x0921), DVNM("Labtec Webcam")}, | 625 | {USB_DEVICE(0x046d, 0x0921)}, |
631 | {USB_DEVICE(0x0545, 0x808b), DVNM("Veo Stingray")}, | 626 | {USB_DEVICE(0x0545, 0x808b)}, |
632 | {USB_DEVICE(0x0545, 0x8333), DVNM("Veo Stingray")}, | 627 | {USB_DEVICE(0x0545, 0x8333)}, |
633 | {USB_DEVICE(0x0923, 0x010f), DVNM("ICM532 cams")}, | 628 | {USB_DEVICE(0x0923, 0x010f)}, |
634 | {} | 629 | {} |
635 | }; | 630 | }; |
636 | 631 | ||
@@ -656,7 +651,7 @@ static int __init sd_mod_init(void) | |||
656 | { | 651 | { |
657 | if (usb_register(&sd_driver) < 0) | 652 | if (usb_register(&sd_driver) < 0) |
658 | return -1; | 653 | return -1; |
659 | PDEBUG(D_PROBE, "v%s registered", version); | 654 | PDEBUG(D_PROBE, "registered"); |
660 | return 0; | 655 | return 0; |
661 | } | 656 | } |
662 | 657 | ||
diff --git a/drivers/media/video/gspca/vc032x.c b/drivers/media/video/gspca/vc032x.c index fcf2c9e32573..a4221753e1bf 100644 --- a/drivers/media/video/gspca/vc032x.c +++ b/drivers/media/video/gspca/vc032x.c | |||
@@ -24,9 +24,6 @@ | |||
24 | 24 | ||
25 | #include "gspca.h" | 25 | #include "gspca.h" |
26 | 26 | ||
27 | #define DRIVER_VERSION_NUMBER KERNEL_VERSION(2, 1, 7) | ||
28 | static const char version[] = "2.1.7"; | ||
29 | |||
30 | MODULE_AUTHOR("Michel Xhaard <mxhaard@users.sourceforge.net>"); | 27 | MODULE_AUTHOR("Michel Xhaard <mxhaard@users.sourceforge.net>"); |
31 | MODULE_DESCRIPTION("GSPCA/VC032X USB Camera Driver"); | 28 | MODULE_DESCRIPTION("GSPCA/VC032X USB Camera Driver"); |
32 | MODULE_LICENSE("GPL"); | 29 | MODULE_LICENSE("GPL"); |
@@ -1419,30 +1416,10 @@ static int sd_config(struct gspca_dev *gspca_dev, | |||
1419 | struct usb_device *dev = gspca_dev->dev; | 1416 | struct usb_device *dev = gspca_dev->dev; |
1420 | struct cam *cam; | 1417 | struct cam *cam; |
1421 | int sensor; | 1418 | int sensor; |
1422 | __u16 product; | ||
1423 | |||
1424 | product = id->idProduct; | ||
1425 | sd->bridge = BRIDGE_VC0321; | ||
1426 | switch (id->idVendor) { | ||
1427 | case 0x0ac8: /* Vimicro z-star */ | ||
1428 | switch (product) { | ||
1429 | case 0x0323: | ||
1430 | sd->bridge = BRIDGE_VC0323; | ||
1431 | break; | ||
1432 | } | ||
1433 | break; | ||
1434 | case 0x17ef: /* Lenovo */ | ||
1435 | /* switch (product) { */ | ||
1436 | /* case 0x4802: * Lenovo MI1310_SOC */ | ||
1437 | sd->bridge = BRIDGE_VC0323; | ||
1438 | /* break; */ | ||
1439 | /* } */ | ||
1440 | break; | ||
1441 | } | ||
1442 | 1419 | ||
1443 | cam = &gspca_dev->cam; | 1420 | cam = &gspca_dev->cam; |
1444 | cam->dev_name = (char *) id->driver_info; | ||
1445 | cam->epaddr = 0x02; | 1421 | cam->epaddr = 0x02; |
1422 | sd->bridge = id->driver_info; | ||
1446 | if (sd->bridge == BRIDGE_VC0321) { | 1423 | if (sd->bridge == BRIDGE_VC0321) { |
1447 | cam->cam_mode = vc0321_mode; | 1424 | cam->cam_mode = vc0321_mode; |
1448 | cam->nmodes = ARRAY_SIZE(vc0321_mode); | 1425 | cam->nmodes = ARRAY_SIZE(vc0321_mode); |
@@ -1771,16 +1748,15 @@ static const struct sd_desc sd_desc = { | |||
1771 | }; | 1748 | }; |
1772 | 1749 | ||
1773 | /* -- module initialisation -- */ | 1750 | /* -- module initialisation -- */ |
1774 | #define DVNM(name) .driver_info = (kernel_ulong_t) name | ||
1775 | static const __devinitdata struct usb_device_id device_table[] = { | 1751 | static const __devinitdata struct usb_device_id device_table[] = { |
1776 | {USB_DEVICE(0x046d, 0x0892), DVNM("Logitech Orbicam")}, | 1752 | {USB_DEVICE(0x046d, 0x0892), .driver_info = BRIDGE_VC0321}, |
1777 | {USB_DEVICE(0x046d, 0x0896), DVNM("Logitech Orbicam")}, | 1753 | {USB_DEVICE(0x046d, 0x0896), .driver_info = BRIDGE_VC0321}, |
1778 | {USB_DEVICE(0x0ac8, 0x0321), DVNM("Vimicro generic vc0321")}, | 1754 | {USB_DEVICE(0x0ac8, 0x0321), .driver_info = BRIDGE_VC0321}, |
1779 | {USB_DEVICE(0x0ac8, 0x0323), DVNM("Vimicro Vc0323")}, | 1755 | {USB_DEVICE(0x0ac8, 0x0323), .driver_info = BRIDGE_VC0323}, |
1780 | {USB_DEVICE(0x0ac8, 0x0328), DVNM("A4Tech PK-130MG")}, | 1756 | {USB_DEVICE(0x0ac8, 0x0328), .driver_info = BRIDGE_VC0321}, |
1781 | {USB_DEVICE(0x0ac8, 0xc001), DVNM("Sony embedded vimicro")}, | 1757 | {USB_DEVICE(0x0ac8, 0xc001), .driver_info = BRIDGE_VC0321}, |
1782 | {USB_DEVICE(0x0ac8, 0xc002), DVNM("Sony embedded vimicro")}, | 1758 | {USB_DEVICE(0x0ac8, 0xc002), .driver_info = BRIDGE_VC0321}, |
1783 | {USB_DEVICE(0x17ef, 0x4802), DVNM("Lenovo Vc0323+MI1310_SOC")}, | 1759 | {USB_DEVICE(0x17ef, 0x4802), .driver_info = BRIDGE_VC0323}, |
1784 | {} | 1760 | {} |
1785 | }; | 1761 | }; |
1786 | MODULE_DEVICE_TABLE(usb, device_table); | 1762 | MODULE_DEVICE_TABLE(usb, device_table); |
@@ -1805,7 +1781,7 @@ static int __init sd_mod_init(void) | |||
1805 | { | 1781 | { |
1806 | if (usb_register(&sd_driver) < 0) | 1782 | if (usb_register(&sd_driver) < 0) |
1807 | return -1; | 1783 | return -1; |
1808 | PDEBUG(D_PROBE, "v%s registered", version); | 1784 | PDEBUG(D_PROBE, "registered"); |
1809 | return 0; | 1785 | return 0; |
1810 | } | 1786 | } |
1811 | static void __exit sd_mod_exit(void) | 1787 | static void __exit sd_mod_exit(void) |
diff --git a/drivers/media/video/gspca/zc3xx.c b/drivers/media/video/gspca/zc3xx.c index b761b11c5c6a..22a994ccb1d5 100644 --- a/drivers/media/video/gspca/zc3xx.c +++ b/drivers/media/video/gspca/zc3xx.c | |||
@@ -24,9 +24,6 @@ | |||
24 | 24 | ||
25 | #include "gspca.h" | 25 | #include "gspca.h" |
26 | 26 | ||
27 | #define DRIVER_VERSION_NUMBER KERNEL_VERSION(2, 1, 7) | ||
28 | static const char version[] = "2.1.7"; | ||
29 | |||
30 | MODULE_AUTHOR("Michel Xhaard <mxhaard@users.sourceforge.net>, " | 27 | MODULE_AUTHOR("Michel Xhaard <mxhaard@users.sourceforge.net>, " |
31 | "Serge A. Suchkov <Serge.A.S@tochka.ru>"); | 28 | "Serge A. Suchkov <Serge.A.S@tochka.ru>"); |
32 | MODULE_DESCRIPTION("GSPCA ZC03xx/VC3xx USB Camera Driver"); | 29 | MODULE_DESCRIPTION("GSPCA ZC03xx/VC3xx USB Camera Driver"); |
@@ -49,7 +46,7 @@ struct sd { | |||
49 | __u8 sharpness; | 46 | __u8 sharpness; |
50 | 47 | ||
51 | char qindex; | 48 | char qindex; |
52 | char sensor; /* Type of image sensor chip */ | 49 | signed char sensor; /* Type of image sensor chip */ |
53 | /* !! values used in different tables */ | 50 | /* !! values used in different tables */ |
54 | #define SENSOR_CS2102 0 | 51 | #define SENSOR_CS2102 0 |
55 | #define SENSOR_CS2102K 1 | 52 | #define SENSOR_CS2102K 1 |
@@ -2205,10 +2202,10 @@ static const struct usb_action hdcs2020xb_InitialScale[] = { | |||
2205 | }; | 2202 | }; |
2206 | static const struct usb_action hdcs2020b_50HZ[] = { | 2203 | static const struct usb_action hdcs2020b_50HZ[] = { |
2207 | {0xa0, 0x00, ZC3XX_R019_AUTOADJUSTFPS}, /* 00,19,00,cc */ | 2204 | {0xa0, 0x00, ZC3XX_R019_AUTOADJUSTFPS}, /* 00,19,00,cc */ |
2208 | {0xaa, 0x13, 0x0018}, /* 00,13,18,aa */ | 2205 | {0xaa, 0x13, 0x0018}, /* 00,13,18,aa */ |
2209 | {0xaa, 0x14, 0x0001}, /* 00,14,01,aa */ | 2206 | {0xaa, 0x14, 0x0001}, /* 00,14,01,aa */ |
2210 | {0xaa, 0x0e, 0x0005}, /* 00,0e,05,aa */ | 2207 | {0xaa, 0x0e, 0x0005}, /* 00,0e,05,aa */ |
2211 | {0xaa, 0x19, 0x001f}, /* 00,19,1f,aa */ | 2208 | {0xaa, 0x19, 0x001f}, /* 00,19,1f,aa */ |
2212 | {0xa0, 0x00, ZC3XX_R190_EXPOSURELIMITHIGH}, /* 01,90,00,cc */ | 2209 | {0xa0, 0x00, ZC3XX_R190_EXPOSURELIMITHIGH}, /* 01,90,00,cc */ |
2213 | {0xa0, 0x02, ZC3XX_R191_EXPOSURELIMITMID}, /* 01,91,02,cc */ | 2210 | {0xa0, 0x02, ZC3XX_R191_EXPOSURELIMITMID}, /* 01,91,02,cc */ |
2214 | {0xa0, 0x76, ZC3XX_R192_EXPOSURELIMITLOW}, /* 01,92,76,cc */ | 2211 | {0xa0, 0x76, ZC3XX_R192_EXPOSURELIMITLOW}, /* 01,92,76,cc */ |
@@ -2226,10 +2223,10 @@ static const struct usb_action hdcs2020b_50HZ[] = { | |||
2226 | }; | 2223 | }; |
2227 | static const struct usb_action hdcs2020b_60HZ[] = { | 2224 | static const struct usb_action hdcs2020b_60HZ[] = { |
2228 | {0xa0, 0x00, ZC3XX_R019_AUTOADJUSTFPS}, /* 00,19,00,cc */ | 2225 | {0xa0, 0x00, ZC3XX_R019_AUTOADJUSTFPS}, /* 00,19,00,cc */ |
2229 | {0xaa, 0x13, 0x0031}, /* 00,13,31,aa */ | 2226 | {0xaa, 0x13, 0x0031}, /* 00,13,31,aa */ |
2230 | {0xaa, 0x14, 0x0001}, /* 00,14,01,aa */ | 2227 | {0xaa, 0x14, 0x0001}, /* 00,14,01,aa */ |
2231 | {0xaa, 0x0e, 0x0004}, /* 00,0e,04,aa */ | 2228 | {0xaa, 0x0e, 0x0004}, /* 00,0e,04,aa */ |
2232 | {0xaa, 0x19, 0x00cd}, /* 00,19,cd,aa */ | 2229 | {0xaa, 0x19, 0x00cd}, /* 00,19,cd,aa */ |
2233 | {0xa0, 0x00, ZC3XX_R190_EXPOSURELIMITHIGH}, /* 01,90,00,cc */ | 2230 | {0xa0, 0x00, ZC3XX_R190_EXPOSURELIMITHIGH}, /* 01,90,00,cc */ |
2234 | {0xa0, 0x02, ZC3XX_R191_EXPOSURELIMITMID}, /* 01,91,02,cc */ | 2231 | {0xa0, 0x02, ZC3XX_R191_EXPOSURELIMITMID}, /* 01,91,02,cc */ |
2235 | {0xa0, 0x62, ZC3XX_R192_EXPOSURELIMITLOW}, /* 01,92,62,cc */ | 2232 | {0xa0, 0x62, ZC3XX_R192_EXPOSURELIMITLOW}, /* 01,92,62,cc */ |
@@ -2247,10 +2244,10 @@ static const struct usb_action hdcs2020b_60HZ[] = { | |||
2247 | }; | 2244 | }; |
2248 | static const struct usb_action hdcs2020b_NoFliker[] = { | 2245 | static const struct usb_action hdcs2020b_NoFliker[] = { |
2249 | {0xa0, 0x00, ZC3XX_R019_AUTOADJUSTFPS}, /* 00,19,00,cc */ | 2246 | {0xa0, 0x00, ZC3XX_R019_AUTOADJUSTFPS}, /* 00,19,00,cc */ |
2250 | {0xaa, 0x13, 0x0010}, /* 00,13,10,aa */ | 2247 | {0xaa, 0x13, 0x0010}, /* 00,13,10,aa */ |
2251 | {0xaa, 0x14, 0x0001}, /* 00,14,01,aa */ | 2248 | {0xaa, 0x14, 0x0001}, /* 00,14,01,aa */ |
2252 | {0xaa, 0x0e, 0x0004}, /* 00,0e,04,aa */ | 2249 | {0xaa, 0x0e, 0x0004}, /* 00,0e,04,aa */ |
2253 | {0xaa, 0x19, 0x0000}, /* 00,19,00,aa */ | 2250 | {0xaa, 0x19, 0x0000}, /* 00,19,00,aa */ |
2254 | {0xa0, 0x00, ZC3XX_R190_EXPOSURELIMITHIGH}, /* 01,90,00,cc */ | 2251 | {0xa0, 0x00, ZC3XX_R190_EXPOSURELIMITHIGH}, /* 01,90,00,cc */ |
2255 | {0xa0, 0x02, ZC3XX_R191_EXPOSURELIMITMID}, /* 01,91,02,cc */ | 2252 | {0xa0, 0x02, ZC3XX_R191_EXPOSURELIMITMID}, /* 01,91,02,cc */ |
2256 | {0xa0, 0x70, ZC3XX_R192_EXPOSURELIMITLOW}, /* 01,92,70,cc */ | 2253 | {0xa0, 0x70, ZC3XX_R192_EXPOSURELIMITLOW}, /* 01,92,70,cc */ |
@@ -4102,27 +4099,27 @@ static const struct usb_action pas106b_Initial_com[] = { | |||
4102 | 4099 | ||
4103 | static const struct usb_action pas106b_Initial[] = { /* 176x144 */ | 4100 | static const struct usb_action pas106b_Initial[] = { /* 176x144 */ |
4104 | /* JPEG control */ | 4101 | /* JPEG control */ |
4105 | {0xa0, 0x03, ZC3XX_R008_CLOCKSETTING}, /* ClockSetting */ | 4102 | {0xa0, 0x03, ZC3XX_R008_CLOCKSETTING}, |
4106 | /* Sream and Sensor specific */ | 4103 | /* Sream and Sensor specific */ |
4107 | {0xa0, 0x0f, ZC3XX_R010_CMOSSENSORSELECT}, /* CMOSSensorSelect */ | 4104 | {0xa0, 0x0f, ZC3XX_R010_CMOSSENSORSELECT}, |
4108 | /* Picture size */ | 4105 | /* Picture size */ |
4109 | {0xa0, 0x00, ZC3XX_R003_FRAMEWIDTHHIGH}, /* FrameWidthHigh 00 */ | 4106 | {0xa0, 0x00, ZC3XX_R003_FRAMEWIDTHHIGH}, |
4110 | {0xa0, 0xb0, ZC3XX_R004_FRAMEWIDTHLOW}, /* FrameWidthLow B0 */ | 4107 | {0xa0, 0xb0, ZC3XX_R004_FRAMEWIDTHLOW}, |
4111 | {0xa0, 0x00, ZC3XX_R005_FRAMEHEIGHTHIGH}, /* FrameHeightHigh 00 */ | 4108 | {0xa0, 0x00, ZC3XX_R005_FRAMEHEIGHTHIGH}, |
4112 | {0xa0, 0x90, ZC3XX_R006_FRAMEHEIGHTLOW}, /* FrameHightLow 90 */ | 4109 | {0xa0, 0x90, ZC3XX_R006_FRAMEHEIGHTLOW}, |
4113 | /* System */ | 4110 | /* System */ |
4114 | {0xa0, 0x01, ZC3XX_R001_SYSTEMOPERATING}, /* SystemOperating */ | 4111 | {0xa0, 0x01, ZC3XX_R001_SYSTEMOPERATING}, |
4115 | /* Sream and Sensor specific */ | 4112 | /* Sream and Sensor specific */ |
4116 | {0xa0, 0x03, ZC3XX_R012_VIDEOCONTROLFUNC}, /* VideoControlFunction */ | 4113 | {0xa0, 0x03, ZC3XX_R012_VIDEOCONTROLFUNC}, |
4117 | {0xa0, 0x01, ZC3XX_R012_VIDEOCONTROLFUNC}, /* VideoControlFunction */ | 4114 | {0xa0, 0x01, ZC3XX_R012_VIDEOCONTROLFUNC}, |
4118 | /* Sensor Interface */ | 4115 | /* Sensor Interface */ |
4119 | {0xa0, 0x08, ZC3XX_R08D_COMPABILITYMODE}, /* Compatibily Mode */ | 4116 | {0xa0, 0x08, ZC3XX_R08D_COMPABILITYMODE}, |
4120 | /* Window inside sensor array */ | 4117 | /* Window inside sensor array */ |
4121 | {0xa0, 0x03, ZC3XX_R09A_WINXSTARTLOW}, /* WinXStartLow */ | 4118 | {0xa0, 0x03, ZC3XX_R09A_WINXSTARTLOW}, |
4122 | {0xa0, 0x00, ZC3XX_R11A_FIRSTYLOW}, /* FirstYLow */ | 4119 | {0xa0, 0x00, ZC3XX_R11A_FIRSTYLOW}, |
4123 | {0xa0, 0x03, ZC3XX_R11C_FIRSTXLOW}, /* FirstxLow */ | 4120 | {0xa0, 0x03, ZC3XX_R11C_FIRSTXLOW}, |
4124 | {0xa0, 0x28, ZC3XX_R09C_WINHEIGHTLOW}, /* WinHeightLow */ | 4121 | {0xa0, 0x28, ZC3XX_R09C_WINHEIGHTLOW}, |
4125 | {0xa0, 0x68, ZC3XX_R09E_WINWIDTHLOW}, /* WinWidthLow */ | 4122 | {0xa0, 0x68, ZC3XX_R09E_WINWIDTHLOW}, |
4126 | /* Init the sensor */ | 4123 | /* Init the sensor */ |
4127 | {0xaa, 0x02, 0x0004}, | 4124 | {0xaa, 0x02, 0x0004}, |
4128 | {0xaa, 0x08, 0x0000}, | 4125 | {0xaa, 0x08, 0x0000}, |
@@ -4135,40 +4132,40 @@ static const struct usb_action pas106b_Initial[] = { /* 176x144 */ | |||
4135 | {0xaa, 0x14, 0x0081}, | 4132 | {0xaa, 0x14, 0x0081}, |
4136 | 4133 | ||
4137 | /* Other registors */ | 4134 | /* Other registors */ |
4138 | {0xa0, 0x37, ZC3XX_R101_SENSORCORRECTION}, /* SensorCorrection */ | 4135 | {0xa0, 0x37, ZC3XX_R101_SENSORCORRECTION}, |
4139 | /* Frame retreiving */ | 4136 | /* Frame retreiving */ |
4140 | {0xa0, 0x00, ZC3XX_R019_AUTOADJUSTFPS}, /* AutoAdjustFPS */ | 4137 | {0xa0, 0x00, ZC3XX_R019_AUTOADJUSTFPS}, |
4141 | /* Gains */ | 4138 | /* Gains */ |
4142 | {0xa0, 0xa0, ZC3XX_R1A8_DIGITALGAIN}, /* DigitalGain */ | 4139 | {0xa0, 0xa0, ZC3XX_R1A8_DIGITALGAIN}, |
4143 | /* Unknown */ | 4140 | /* Unknown */ |
4144 | {0xa0, 0x00, 0x01ad}, | 4141 | {0xa0, 0x00, 0x01ad}, |
4145 | /* Sharpness */ | 4142 | /* Sharpness */ |
4146 | {0xa0, 0x03, ZC3XX_R1C5_SHARPNESSMODE}, /* SharpnessMode */ | 4143 | {0xa0, 0x03, ZC3XX_R1C5_SHARPNESSMODE}, |
4147 | {0xa0, 0x13, ZC3XX_R1CB_SHARPNESS05}, /* Sharpness05 */ | 4144 | {0xa0, 0x13, ZC3XX_R1CB_SHARPNESS05}, |
4148 | /* Other registors */ | 4145 | /* Other registors */ |
4149 | {0xa0, 0x0d, ZC3XX_R100_OPERATIONMODE}, /* OperationMode */ | 4146 | {0xa0, 0x0d, ZC3XX_R100_OPERATIONMODE}, |
4150 | /* Auto exposure and white balance */ | 4147 | /* Auto exposure and white balance */ |
4151 | {0xa0, 0x06, ZC3XX_R189_AWBSTATUS}, /* AWBStatus */ | 4148 | {0xa0, 0x06, ZC3XX_R189_AWBSTATUS}, |
4152 | /*Dead pixels */ | 4149 | /*Dead pixels */ |
4153 | {0xa0, 0x08, ZC3XX_R250_DEADPIXELSMODE}, /* DeadPixelsMode */ | 4150 | {0xa0, 0x08, ZC3XX_R250_DEADPIXELSMODE}, |
4154 | /* EEPROM */ | 4151 | /* EEPROM */ |
4155 | {0xa0, 0x08, ZC3XX_R301_EEPROMACCESS}, /* EEPROMAccess */ | 4152 | {0xa0, 0x08, ZC3XX_R301_EEPROMACCESS}, |
4156 | /* JPEG control */ | 4153 | /* JPEG control */ |
4157 | {0xa0, 0x03, ZC3XX_R008_CLOCKSETTING}, /* ClockSetting */ | 4154 | {0xa0, 0x03, ZC3XX_R008_CLOCKSETTING}, |
4158 | {0xa0, 0x08, ZC3XX_R1C6_SHARPNESS00}, /* sharpness+ */ | 4155 | {0xa0, 0x08, ZC3XX_R1C6_SHARPNESS00}, |
4159 | {0xa0, 0x0f, ZC3XX_R1CB_SHARPNESS05}, /* sharpness- */ | 4156 | {0xa0, 0x0f, ZC3XX_R1CB_SHARPNESS05}, |
4160 | /* Other registers */ | 4157 | /* Other registers */ |
4161 | {0xa0, 0x0d, ZC3XX_R100_OPERATIONMODE}, /* OperationMode */ | 4158 | {0xa0, 0x0d, ZC3XX_R100_OPERATIONMODE}, |
4162 | /* Auto exposure and white balance */ | 4159 | /* Auto exposure and white balance */ |
4163 | {0xa0, 0x06, ZC3XX_R189_AWBSTATUS}, /* AWBStatus */ | 4160 | {0xa0, 0x06, ZC3XX_R189_AWBSTATUS}, |
4164 | /*Dead pixels */ | 4161 | /*Dead pixels */ |
4165 | {0xa0, 0x08, ZC3XX_R250_DEADPIXELSMODE}, /* DeadPixelsMode */ | 4162 | {0xa0, 0x08, ZC3XX_R250_DEADPIXELSMODE}, |
4166 | /* EEPROM */ | 4163 | /* EEPROM */ |
4167 | {0xa0, 0x08, ZC3XX_R301_EEPROMACCESS}, /* EEPROMAccess */ | 4164 | {0xa0, 0x08, ZC3XX_R301_EEPROMACCESS}, |
4168 | /* JPEG control */ | 4165 | /* JPEG control */ |
4169 | {0xa0, 0x03, ZC3XX_R008_CLOCKSETTING}, /* ClockSetting */ | 4166 | {0xa0, 0x03, ZC3XX_R008_CLOCKSETTING}, |
4170 | {0xa0, 0x08, ZC3XX_R1C6_SHARPNESS00}, /* sharpness+ */ | 4167 | {0xa0, 0x08, ZC3XX_R1C6_SHARPNESS00}, |
4171 | {0xa0, 0x0f, ZC3XX_R1CB_SHARPNESS05}, /* sharpness- */ | 4168 | {0xa0, 0x0f, ZC3XX_R1CB_SHARPNESS05}, |
4172 | 4169 | ||
4173 | {0xa0, 0x58, ZC3XX_R10A_RGB00}, /* matrix */ | 4170 | {0xa0, 0x58, ZC3XX_R10A_RGB00}, /* matrix */ |
4174 | {0xa0, 0xf4, ZC3XX_R10B_RGB01}, | 4171 | {0xa0, 0xf4, ZC3XX_R10B_RGB01}, |
@@ -4180,67 +4177,67 @@ static const struct usb_action pas106b_Initial[] = { /* 176x144 */ | |||
4180 | {0xa0, 0xf4, ZC3XX_R111_RGB21}, | 4177 | {0xa0, 0xf4, ZC3XX_R111_RGB21}, |
4181 | {0xa0, 0x58, ZC3XX_R112_RGB22}, | 4178 | {0xa0, 0x58, ZC3XX_R112_RGB22}, |
4182 | /* Auto correction */ | 4179 | /* Auto correction */ |
4183 | {0xa0, 0x03, ZC3XX_R181_WINXSTART}, /* WinXstart */ | 4180 | {0xa0, 0x03, ZC3XX_R181_WINXSTART}, |
4184 | {0xa0, 0x08, ZC3XX_R182_WINXWIDTH}, /* WinXWidth */ | 4181 | {0xa0, 0x08, ZC3XX_R182_WINXWIDTH}, |
4185 | {0xa0, 0x16, ZC3XX_R183_WINXCENTER}, /* WinXCenter */ | 4182 | {0xa0, 0x16, ZC3XX_R183_WINXCENTER}, |
4186 | {0xa0, 0x03, ZC3XX_R184_WINYSTART}, /* WinYStart */ | 4183 | {0xa0, 0x03, ZC3XX_R184_WINYSTART}, |
4187 | {0xa0, 0x05, ZC3XX_R185_WINYWIDTH}, /* WinYWidth */ | 4184 | {0xa0, 0x05, ZC3XX_R185_WINYWIDTH}, |
4188 | {0xa0, 0x14, ZC3XX_R186_WINYCENTER}, /* WinYCenter */ | 4185 | {0xa0, 0x14, ZC3XX_R186_WINYCENTER}, |
4189 | {0xa0, 0x00, ZC3XX_R180_AUTOCORRECTENABLE}, /* AutoCorrectEnable */ | 4186 | {0xa0, 0x00, ZC3XX_R180_AUTOCORRECTENABLE}, |
4190 | 4187 | ||
4191 | /* Auto exposure and white balance */ | 4188 | /* Auto exposure and white balance */ |
4192 | {0xa0, 0x00, ZC3XX_R190_EXPOSURELIMITHIGH}, /* ExposureLimitHigh */ | 4189 | {0xa0, 0x00, ZC3XX_R190_EXPOSURELIMITHIGH}, |
4193 | {0xa0, 0x03, ZC3XX_R191_EXPOSURELIMITMID}, /* ExposureLimitMid */ | 4190 | {0xa0, 0x03, ZC3XX_R191_EXPOSURELIMITMID}, |
4194 | {0xa0, 0xb1, ZC3XX_R192_EXPOSURELIMITLOW}, /* ExposureLimitLow */ | 4191 | {0xa0, 0xb1, ZC3XX_R192_EXPOSURELIMITLOW}, |
4195 | {0xa0, 0x00, ZC3XX_R195_ANTIFLICKERHIGH}, /* AntiFlickerHigh */ | 4192 | {0xa0, 0x00, ZC3XX_R195_ANTIFLICKERHIGH}, |
4196 | {0xa0, 0x00, ZC3XX_R196_ANTIFLICKERMID}, /* AntiFlickerLow */ | 4193 | {0xa0, 0x00, ZC3XX_R196_ANTIFLICKERMID}, |
4197 | {0xa0, 0x87, ZC3XX_R197_ANTIFLICKERLOW}, /* AntiFlickerLow */ | 4194 | {0xa0, 0x87, ZC3XX_R197_ANTIFLICKERLOW}, |
4198 | {0xa0, 0x0c, ZC3XX_R18C_AEFREEZE}, /* AEBFreeze */ | 4195 | {0xa0, 0x0c, ZC3XX_R18C_AEFREEZE}, |
4199 | {0xa0, 0x18, ZC3XX_R18F_AEUNFREEZE}, /* AEBUnfreeze */ | 4196 | {0xa0, 0x18, ZC3XX_R18F_AEUNFREEZE}, |
4200 | /* sensor on */ | 4197 | /* sensor on */ |
4201 | {0xaa, 0x07, 0x00b1}, | 4198 | {0xaa, 0x07, 0x00b1}, |
4202 | {0xaa, 0x05, 0x0003}, | 4199 | {0xaa, 0x05, 0x0003}, |
4203 | {0xaa, 0x04, 0x0001}, | 4200 | {0xaa, 0x04, 0x0001}, |
4204 | {0xaa, 0x03, 0x003b}, | 4201 | {0xaa, 0x03, 0x003b}, |
4205 | /* Gains */ | 4202 | /* Gains */ |
4206 | {0xa0, 0x20, ZC3XX_R1A9_DIGITALLIMITDIFF}, /* DigitalLimitDiff */ | 4203 | {0xa0, 0x20, ZC3XX_R1A9_DIGITALLIMITDIFF}, |
4207 | {0xa0, 0x26, ZC3XX_R1AA_DIGITALGAINSTEP}, /* DigitalGainStep */ | 4204 | {0xa0, 0x26, ZC3XX_R1AA_DIGITALGAINSTEP}, |
4208 | {0xa0, 0xa0, ZC3XX_R11D_GLOBALGAIN}, /* GlobalGain */ | 4205 | {0xa0, 0xa0, ZC3XX_R11D_GLOBALGAIN}, |
4209 | {0xa0, 0x60, ZC3XX_R11D_GLOBALGAIN}, /* GlobalGain */ | 4206 | {0xa0, 0x60, ZC3XX_R11D_GLOBALGAIN}, |
4210 | /* Auto correction */ | 4207 | /* Auto correction */ |
4211 | {0xa0, 0x40, ZC3XX_R180_AUTOCORRECTENABLE}, /* AutoCorrectEnable */ | 4208 | {0xa0, 0x40, ZC3XX_R180_AUTOCORRECTENABLE}, |
4212 | {0xa1, 0x01, 0x0180}, /* AutoCorrectEnable */ | 4209 | {0xa1, 0x01, 0x0180}, /* AutoCorrectEnable */ |
4213 | {0xa0, 0x42, ZC3XX_R180_AUTOCORRECTENABLE}, /* AutoCorrectEnable */ | 4210 | {0xa0, 0x42, ZC3XX_R180_AUTOCORRECTENABLE}, |
4214 | /* Gains */ | 4211 | /* Gains */ |
4215 | {0xa0, 0x40, ZC3XX_R116_RGAIN}, /* RGain */ | 4212 | {0xa0, 0x40, ZC3XX_R116_RGAIN}, |
4216 | {0xa0, 0x40, ZC3XX_R117_GGAIN}, /* GGain */ | 4213 | {0xa0, 0x40, ZC3XX_R117_GGAIN}, |
4217 | {0xa0, 0x40, ZC3XX_R118_BGAIN}, /* BGain */ | 4214 | {0xa0, 0x40, ZC3XX_R118_BGAIN}, |
4218 | {} | 4215 | {} |
4219 | }; | 4216 | }; |
4220 | 4217 | ||
4221 | static const struct usb_action pas106b_InitialScale[] = { /* 352x288 */ | 4218 | static const struct usb_action pas106b_InitialScale[] = { /* 352x288 */ |
4222 | /* JPEG control */ | 4219 | /* JPEG control */ |
4223 | {0xa0, 0x03, ZC3XX_R008_CLOCKSETTING}, /* ClockSetting */ | 4220 | {0xa0, 0x03, ZC3XX_R008_CLOCKSETTING}, |
4224 | /* Sream and Sensor specific */ | 4221 | /* Sream and Sensor specific */ |
4225 | {0xa0, 0x0f, ZC3XX_R010_CMOSSENSORSELECT}, /* CMOSSensorSelect */ | 4222 | {0xa0, 0x0f, ZC3XX_R010_CMOSSENSORSELECT}, |
4226 | /* Picture size */ | 4223 | /* Picture size */ |
4227 | {0xa0, 0x01, ZC3XX_R003_FRAMEWIDTHHIGH}, /* FrameWidthHigh */ | 4224 | {0xa0, 0x01, ZC3XX_R003_FRAMEWIDTHHIGH}, |
4228 | {0xa0, 0x60, ZC3XX_R004_FRAMEWIDTHLOW}, /* FrameWidthLow */ | 4225 | {0xa0, 0x60, ZC3XX_R004_FRAMEWIDTHLOW}, |
4229 | {0xa0, 0x01, ZC3XX_R005_FRAMEHEIGHTHIGH}, /* FrameHeightHigh */ | 4226 | {0xa0, 0x01, ZC3XX_R005_FRAMEHEIGHTHIGH}, |
4230 | {0xa0, 0x20, ZC3XX_R006_FRAMEHEIGHTLOW}, /* FrameHightLow */ | 4227 | {0xa0, 0x20, ZC3XX_R006_FRAMEHEIGHTLOW}, |
4231 | /* System */ | 4228 | /* System */ |
4232 | {0xa0, 0x01, ZC3XX_R001_SYSTEMOPERATING}, /* SystemOperating */ | 4229 | {0xa0, 0x01, ZC3XX_R001_SYSTEMOPERATING}, |
4233 | /* Sream and Sensor specific */ | 4230 | /* Sream and Sensor specific */ |
4234 | {0xa0, 0x03, ZC3XX_R012_VIDEOCONTROLFUNC}, /* VideoControlFunction */ | 4231 | {0xa0, 0x03, ZC3XX_R012_VIDEOCONTROLFUNC}, |
4235 | {0xa0, 0x01, ZC3XX_R012_VIDEOCONTROLFUNC}, /* VideoControlFunction */ | 4232 | {0xa0, 0x01, ZC3XX_R012_VIDEOCONTROLFUNC}, |
4236 | /* Sensor Interface */ | 4233 | /* Sensor Interface */ |
4237 | {0xa0, 0x08, ZC3XX_R08D_COMPABILITYMODE}, /* Compatibily Mode */ | 4234 | {0xa0, 0x08, ZC3XX_R08D_COMPABILITYMODE}, |
4238 | /* Window inside sensor array */ | 4235 | /* Window inside sensor array */ |
4239 | {0xa0, 0x03, ZC3XX_R09A_WINXSTARTLOW}, /* WinXStartLow */ | 4236 | {0xa0, 0x03, ZC3XX_R09A_WINXSTARTLOW}, |
4240 | {0xa0, 0x00, ZC3XX_R11A_FIRSTYLOW}, /* FirstYLow */ | 4237 | {0xa0, 0x00, ZC3XX_R11A_FIRSTYLOW}, |
4241 | {0xa0, 0x03, ZC3XX_R11C_FIRSTXLOW}, /* FirstxLow */ | 4238 | {0xa0, 0x03, ZC3XX_R11C_FIRSTXLOW}, |
4242 | {0xa0, 0x28, ZC3XX_R09C_WINHEIGHTLOW}, /* WinHeightLow */ | 4239 | {0xa0, 0x28, ZC3XX_R09C_WINHEIGHTLOW}, |
4243 | {0xa0, 0x68, ZC3XX_R09E_WINWIDTHLOW}, /* WinWidthLow */ | 4240 | {0xa0, 0x68, ZC3XX_R09E_WINWIDTHLOW}, |
4244 | /* Init the sensor */ | 4241 | /* Init the sensor */ |
4245 | {0xaa, 0x02, 0x0004}, | 4242 | {0xaa, 0x02, 0x0004}, |
4246 | {0xaa, 0x08, 0x0000}, | 4243 | {0xaa, 0x08, 0x0000}, |
@@ -4253,41 +4250,41 @@ static const struct usb_action pas106b_InitialScale[] = { /* 352x288 */ | |||
4253 | {0xaa, 0x14, 0x0081}, | 4250 | {0xaa, 0x14, 0x0081}, |
4254 | 4251 | ||
4255 | /* Other registors */ | 4252 | /* Other registors */ |
4256 | {0xa0, 0x37, ZC3XX_R101_SENSORCORRECTION}, /* SensorCorrection */ | 4253 | {0xa0, 0x37, ZC3XX_R101_SENSORCORRECTION}, |
4257 | /* Frame retreiving */ | 4254 | /* Frame retreiving */ |
4258 | {0xa0, 0x00, ZC3XX_R019_AUTOADJUSTFPS}, /* AutoAdjustFPS */ | 4255 | {0xa0, 0x00, ZC3XX_R019_AUTOADJUSTFPS}, |
4259 | /* Gains */ | 4256 | /* Gains */ |
4260 | {0xa0, 0xa0, ZC3XX_R1A8_DIGITALGAIN}, /* DigitalGain */ | 4257 | {0xa0, 0xa0, ZC3XX_R1A8_DIGITALGAIN}, |
4261 | /* Unknown */ | 4258 | /* Unknown */ |
4262 | {0xa0, 0x00, 0x01ad}, | 4259 | {0xa0, 0x00, 0x01ad}, |
4263 | /* Sharpness */ | 4260 | /* Sharpness */ |
4264 | {0xa0, 0x03, ZC3XX_R1C5_SHARPNESSMODE}, /* SharpnessMode */ | 4261 | {0xa0, 0x03, ZC3XX_R1C5_SHARPNESSMODE}, |
4265 | {0xa0, 0x13, ZC3XX_R1CB_SHARPNESS05}, /* Sharpness05 */ | 4262 | {0xa0, 0x13, ZC3XX_R1CB_SHARPNESS05}, |
4266 | /* Other registors */ | 4263 | /* Other registors */ |
4267 | {0xa0, 0x0d, ZC3XX_R100_OPERATIONMODE}, /* OperationMode */ | 4264 | {0xa0, 0x0d, ZC3XX_R100_OPERATIONMODE}, |
4268 | /* Auto exposure and white balance */ | 4265 | /* Auto exposure and white balance */ |
4269 | {0xa0, 0x06, ZC3XX_R189_AWBSTATUS}, /* AWBStatus */ | 4266 | {0xa0, 0x06, ZC3XX_R189_AWBSTATUS}, |
4270 | {0xa0, 0x80, ZC3XX_R18D_YTARGET}, /* ????????? */ | 4267 | {0xa0, 0x80, ZC3XX_R18D_YTARGET}, |
4271 | /*Dead pixels */ | 4268 | /*Dead pixels */ |
4272 | {0xa0, 0x08, ZC3XX_R250_DEADPIXELSMODE}, /* DeadPixelsMode */ | 4269 | {0xa0, 0x08, ZC3XX_R250_DEADPIXELSMODE}, |
4273 | /* EEPROM */ | 4270 | /* EEPROM */ |
4274 | {0xa0, 0x08, ZC3XX_R301_EEPROMACCESS}, /* EEPROMAccess */ | 4271 | {0xa0, 0x08, ZC3XX_R301_EEPROMACCESS}, |
4275 | /* JPEG control */ | 4272 | /* JPEG control */ |
4276 | {0xa0, 0x03, ZC3XX_R008_CLOCKSETTING}, /* ClockSetting */ | 4273 | {0xa0, 0x03, ZC3XX_R008_CLOCKSETTING}, |
4277 | {0xa0, 0x08, ZC3XX_R1C6_SHARPNESS00}, /* sharpness+ */ | 4274 | {0xa0, 0x08, ZC3XX_R1C6_SHARPNESS00}, |
4278 | {0xa0, 0x0f, ZC3XX_R1CB_SHARPNESS05}, /* sharpness- */ | 4275 | {0xa0, 0x0f, ZC3XX_R1CB_SHARPNESS05}, |
4279 | /* Other registers */ | 4276 | /* Other registers */ |
4280 | {0xa0, 0x0d, ZC3XX_R100_OPERATIONMODE}, /* OperationMode */ | 4277 | {0xa0, 0x0d, ZC3XX_R100_OPERATIONMODE}, |
4281 | /* Auto exposure and white balance */ | 4278 | /* Auto exposure and white balance */ |
4282 | {0xa0, 0x06, ZC3XX_R189_AWBSTATUS}, /* AWBStatus */ | 4279 | {0xa0, 0x06, ZC3XX_R189_AWBSTATUS}, |
4283 | /*Dead pixels */ | 4280 | /*Dead pixels */ |
4284 | {0xa0, 0x08, ZC3XX_R250_DEADPIXELSMODE}, /* DeadPixelsMode */ | 4281 | {0xa0, 0x08, ZC3XX_R250_DEADPIXELSMODE}, |
4285 | /* EEPROM */ | 4282 | /* EEPROM */ |
4286 | {0xa0, 0x08, ZC3XX_R301_EEPROMACCESS}, /* EEPROMAccess */ | 4283 | {0xa0, 0x08, ZC3XX_R301_EEPROMACCESS}, |
4287 | /* JPEG control */ | 4284 | /* JPEG control */ |
4288 | {0xa0, 0x03, ZC3XX_R008_CLOCKSETTING}, /* ClockSetting */ | 4285 | {0xa0, 0x03, ZC3XX_R008_CLOCKSETTING}, |
4289 | {0xa0, 0x08, ZC3XX_R1C6_SHARPNESS00}, /* sharpness+ */ | 4286 | {0xa0, 0x08, ZC3XX_R1C6_SHARPNESS00}, |
4290 | {0xa0, 0x0f, ZC3XX_R1CB_SHARPNESS05}, /* sharpness- */ | 4287 | {0xa0, 0x0f, ZC3XX_R1CB_SHARPNESS05}, |
4291 | 4288 | ||
4292 | {0xa0, 0x58, ZC3XX_R10A_RGB00}, /* matrix */ | 4289 | {0xa0, 0x58, ZC3XX_R10A_RGB00}, /* matrix */ |
4293 | {0xa0, 0xf4, ZC3XX_R10B_RGB01}, | 4290 | {0xa0, 0xf4, ZC3XX_R10B_RGB01}, |
@@ -4299,43 +4296,43 @@ static const struct usb_action pas106b_InitialScale[] = { /* 352x288 */ | |||
4299 | {0xa0, 0xf4, ZC3XX_R111_RGB21}, | 4296 | {0xa0, 0xf4, ZC3XX_R111_RGB21}, |
4300 | {0xa0, 0x58, ZC3XX_R112_RGB22}, | 4297 | {0xa0, 0x58, ZC3XX_R112_RGB22}, |
4301 | /* Auto correction */ | 4298 | /* Auto correction */ |
4302 | {0xa0, 0x03, ZC3XX_R181_WINXSTART}, /* WinXstart */ | 4299 | {0xa0, 0x03, ZC3XX_R181_WINXSTART}, |
4303 | {0xa0, 0x08, ZC3XX_R182_WINXWIDTH}, /* WinXWidth */ | 4300 | {0xa0, 0x08, ZC3XX_R182_WINXWIDTH}, |
4304 | {0xa0, 0x16, ZC3XX_R183_WINXCENTER}, /* WinXCenter */ | 4301 | {0xa0, 0x16, ZC3XX_R183_WINXCENTER}, |
4305 | {0xa0, 0x03, ZC3XX_R184_WINYSTART}, /* WinYStart */ | 4302 | {0xa0, 0x03, ZC3XX_R184_WINYSTART}, |
4306 | {0xa0, 0x05, ZC3XX_R185_WINYWIDTH}, /* WinYWidth */ | 4303 | {0xa0, 0x05, ZC3XX_R185_WINYWIDTH}, |
4307 | {0xa0, 0x14, ZC3XX_R186_WINYCENTER}, /* WinYCenter */ | 4304 | {0xa0, 0x14, ZC3XX_R186_WINYCENTER}, |
4308 | {0xa0, 0x00, ZC3XX_R180_AUTOCORRECTENABLE}, /* AutoCorrectEnable */ | 4305 | {0xa0, 0x00, ZC3XX_R180_AUTOCORRECTENABLE}, |
4309 | 4306 | ||
4310 | /* Auto exposure and white balance */ | 4307 | /* Auto exposure and white balance */ |
4311 | {0xa0, 0x00, ZC3XX_R190_EXPOSURELIMITHIGH}, /* ExposureLimitHigh 0 */ | 4308 | {0xa0, 0x00, ZC3XX_R190_EXPOSURELIMITHIGH}, |
4312 | {0xa0, 0x03, ZC3XX_R191_EXPOSURELIMITMID}, /* ExposureLimitMid */ | 4309 | {0xa0, 0x03, ZC3XX_R191_EXPOSURELIMITMID}, |
4313 | {0xa0, 0xb1, ZC3XX_R192_EXPOSURELIMITLOW}, /* ExposureLimitLow 0xb1 */ | 4310 | {0xa0, 0xb1, ZC3XX_R192_EXPOSURELIMITLOW}, |
4314 | 4311 | ||
4315 | {0xa0, 0x00, ZC3XX_R195_ANTIFLICKERHIGH}, /* AntiFlickerHigh 0x00 */ | 4312 | {0xa0, 0x00, ZC3XX_R195_ANTIFLICKERHIGH}, |
4316 | {0xa0, 0x00, ZC3XX_R196_ANTIFLICKERMID}, /* AntiFlickerLow 0x00 */ | 4313 | {0xa0, 0x00, ZC3XX_R196_ANTIFLICKERMID}, |
4317 | {0xa0, 0x87, ZC3XX_R197_ANTIFLICKERLOW}, /* AntiFlickerLow 0x87 */ | 4314 | {0xa0, 0x87, ZC3XX_R197_ANTIFLICKERLOW}, |
4318 | 4315 | ||
4319 | {0xa0, 0x10, ZC3XX_R18C_AEFREEZE}, /* AEBFreeze 0x10 0x0c */ | 4316 | {0xa0, 0x10, ZC3XX_R18C_AEFREEZE}, |
4320 | {0xa0, 0x20, ZC3XX_R18F_AEUNFREEZE}, /* AEBUnfreeze 0x30 0x18 */ | 4317 | {0xa0, 0x20, ZC3XX_R18F_AEUNFREEZE}, |
4321 | /* sensor on */ | 4318 | /* sensor on */ |
4322 | {0xaa, 0x07, 0x00b1}, | 4319 | {0xaa, 0x07, 0x00b1}, |
4323 | {0xaa, 0x05, 0x0003}, | 4320 | {0xaa, 0x05, 0x0003}, |
4324 | {0xaa, 0x04, 0x0001}, | 4321 | {0xaa, 0x04, 0x0001}, |
4325 | {0xaa, 0x03, 0x003b}, | 4322 | {0xaa, 0x03, 0x003b}, |
4326 | /* Gains */ | 4323 | /* Gains */ |
4327 | {0xa0, 0x20, ZC3XX_R1A9_DIGITALLIMITDIFF}, /* DigitalLimitDiff */ | 4324 | {0xa0, 0x20, ZC3XX_R1A9_DIGITALLIMITDIFF}, |
4328 | {0xa0, 0x26, ZC3XX_R1AA_DIGITALGAINSTEP}, /* DigitalGainStep */ | 4325 | {0xa0, 0x26, ZC3XX_R1AA_DIGITALGAINSTEP}, |
4329 | {0xa0, 0xa0, ZC3XX_R11D_GLOBALGAIN}, /* GlobalGain */ | 4326 | {0xa0, 0xa0, ZC3XX_R11D_GLOBALGAIN}, |
4330 | {0xa0, 0x60, ZC3XX_R11D_GLOBALGAIN}, /* GlobalGain */ | 4327 | {0xa0, 0x60, ZC3XX_R11D_GLOBALGAIN}, |
4331 | /* Auto correction */ | 4328 | /* Auto correction */ |
4332 | {0xa0, 0x40, ZC3XX_R180_AUTOCORRECTENABLE}, /* AutoCorrectEnable */ | 4329 | {0xa0, 0x40, ZC3XX_R180_AUTOCORRECTENABLE}, |
4333 | {0xa1, 0x01, 0x0180}, /* AutoCorrectEnable */ | 4330 | {0xa1, 0x01, 0x0180}, /* AutoCorrectEnable */ |
4334 | {0xa0, 0x42, ZC3XX_R180_AUTOCORRECTENABLE}, /* AutoCorrectEnable */ | 4331 | {0xa0, 0x42, ZC3XX_R180_AUTOCORRECTENABLE}, |
4335 | /* Gains */ | 4332 | /* Gains */ |
4336 | {0xa0, 0x40, ZC3XX_R116_RGAIN}, /* RGain */ | 4333 | {0xa0, 0x40, ZC3XX_R116_RGAIN}, |
4337 | {0xa0, 0x40, ZC3XX_R117_GGAIN}, /* GGain */ | 4334 | {0xa0, 0x40, ZC3XX_R117_GGAIN}, |
4338 | {0xa0, 0x40, ZC3XX_R118_BGAIN}, /* BGain */ | 4335 | {0xa0, 0x40, ZC3XX_R118_BGAIN}, |
4339 | 4336 | ||
4340 | {0xa0, 0x00, 0x0007}, /* AutoCorrectEnable */ | 4337 | {0xa0, 0x00, 0x0007}, /* AutoCorrectEnable */ |
4341 | {0xa0, 0xff, ZC3XX_R018_FRAMELOST}, /* Frame adjust */ | 4338 | {0xa0, 0xff, ZC3XX_R018_FRAMELOST}, /* Frame adjust */ |
@@ -4459,8 +4456,8 @@ static const struct usb_action pb03303x_Initial[] = { | |||
4459 | {0xa0, 0x50, ZC3XX_R112_RGB22}, | 4456 | {0xa0, 0x50, ZC3XX_R112_RGB22}, |
4460 | 4457 | ||
4461 | {0xa1, 0x01, 0x0008}, | 4458 | {0xa1, 0x01, 0x0008}, |
4462 | {0xa0, 0x03, ZC3XX_R008_CLOCKSETTING}, /* clock ? */ | 4459 | {0xa0, 0x03, ZC3XX_R008_CLOCKSETTING}, |
4463 | {0xa0, 0x08, ZC3XX_R1C6_SHARPNESS00}, /* sharpness+ */ | 4460 | {0xa0, 0x08, ZC3XX_R1C6_SHARPNESS00}, |
4464 | {0xa1, 0x01, 0x01c8}, | 4461 | {0xa1, 0x01, 0x01c8}, |
4465 | {0xa1, 0x01, 0x01c9}, | 4462 | {0xa1, 0x01, 0x01c9}, |
4466 | {0xa1, 0x01, 0x01ca}, | 4463 | {0xa1, 0x01, 0x01ca}, |
@@ -5984,7 +5981,7 @@ static const struct usb_action tas5130c_vf0250_Initial[] = { | |||
5984 | {0xaa, 0x1b, 0x0000}, /* 00,1b,00,aa, */ | 5981 | {0xaa, 0x1b, 0x0000}, /* 00,1b,00,aa, */ |
5985 | {0xaa, 0x13, 0x0002}, /* 00,13,02,aa, */ | 5982 | {0xaa, 0x13, 0x0002}, /* 00,13,02,aa, */ |
5986 | {0xaa, 0x15, 0x0004}, /* 00,15,04,aa */ | 5983 | {0xaa, 0x15, 0x0004}, /* 00,15,04,aa */ |
5987 | {0xaa, 0x01, 0x0000}, | 5984 | /*?? {0xaa, 0x01, 0x0000}, */ |
5988 | {0xaa, 0x01, 0x0000}, | 5985 | {0xaa, 0x01, 0x0000}, |
5989 | {0xaa, 0x1a, 0x0000}, /* 00,1a,00,aa, */ | 5986 | {0xaa, 0x1a, 0x0000}, /* 00,1a,00,aa, */ |
5990 | {0xaa, 0x1c, 0x0017}, /* 00,1c,17,aa, */ | 5987 | {0xaa, 0x1c, 0x0017}, /* 00,1c,17,aa, */ |
@@ -6000,8 +5997,8 @@ static const struct usb_action tas5130c_vf0250_Initial[] = { | |||
6000 | {0xaa, 0x0f, 0x00a0}, /* 00,0f,a0,aa, */ | 5997 | {0xaa, 0x0f, 0x00a0}, /* 00,0f,a0,aa, */ |
6001 | {0xaa, 0x10, 0x0000}, /* 00,10,00,aa, */ | 5998 | {0xaa, 0x10, 0x0000}, /* 00,10,00,aa, */ |
6002 | {0xaa, 0x11, 0x00a0}, /* 00,11,a0,aa, */ | 5999 | {0xaa, 0x11, 0x00a0}, /* 00,11,a0,aa, */ |
6003 | {0xa0, 0x00, 0x0039}, | 6000 | /*?? {0xa0, 0x00, 0x0039}, |
6004 | {0xa1, 0x01, 0x0037}, | 6001 | {0xa1, 0x01, 0x0037}, */ |
6005 | {0xaa, 0x16, 0x0001}, /* 00,16,01,aa, */ | 6002 | {0xaa, 0x16, 0x0001}, /* 00,16,01,aa, */ |
6006 | {0xaa, 0x17, 0x00e8}, /* 00,17,e6,aa, (e6 -> e8) */ | 6003 | {0xaa, 0x17, 0x00e8}, /* 00,17,e6,aa, (e6 -> e8) */ |
6007 | {0xaa, 0x18, 0x0002}, /* 00,18,02,aa, */ | 6004 | {0xaa, 0x18, 0x0002}, /* 00,18,02,aa, */ |
@@ -6272,7 +6269,7 @@ static void reg_w(struct usb_device *dev, | |||
6272 | __u8 value, | 6269 | __u8 value, |
6273 | __u16 index) | 6270 | __u16 index) |
6274 | { | 6271 | { |
6275 | PDEBUG(D_USBO, "reg w %02x -> [%04x]", value, index); | 6272 | PDEBUG(D_USBO, "reg w [%04x] = %02x", index, value); |
6276 | reg_w_i(dev, value, index); | 6273 | reg_w_i(dev, value, index); |
6277 | } | 6274 | } |
6278 | 6275 | ||
@@ -6280,17 +6277,17 @@ static __u16 i2c_read(struct gspca_dev *gspca_dev, | |||
6280 | __u8 reg) | 6277 | __u8 reg) |
6281 | { | 6278 | { |
6282 | __u8 retbyte; | 6279 | __u8 retbyte; |
6283 | __u8 retval[2]; | 6280 | __u16 retval; |
6284 | 6281 | ||
6285 | reg_w_i(gspca_dev->dev, reg, 0x92); | 6282 | reg_w_i(gspca_dev->dev, reg, 0x92); |
6286 | reg_w_i(gspca_dev->dev, 0x02, 0x90); /* <- read command */ | 6283 | reg_w_i(gspca_dev->dev, 0x02, 0x90); /* <- read command */ |
6287 | msleep(25); | 6284 | msleep(25); |
6288 | retbyte = reg_r_i(gspca_dev, 0x0091); /* read status */ | 6285 | retbyte = reg_r_i(gspca_dev, 0x0091); /* read status */ |
6289 | retval[0] = reg_r_i(gspca_dev, 0x0095); /* read Lowbyte */ | 6286 | retval = reg_r_i(gspca_dev, 0x0095); /* read Lowbyte */ |
6290 | retval[1] = reg_r_i(gspca_dev, 0x0096); /* read Hightbyte */ | 6287 | retval |= reg_r_i(gspca_dev, 0x0096) << 8; /* read Hightbyte */ |
6291 | PDEBUG(D_USBO, "i2c r [%02x] -> (%02x) %02x%02x", | 6288 | PDEBUG(D_USBO, "i2c r [%02x] -> %04x (%02x)", |
6292 | reg, retbyte, retval[1], retval[0]); | 6289 | reg, retval, retbyte); |
6293 | return (retval[1] << 8) | retval[0]; | 6290 | return retval; |
6294 | } | 6291 | } |
6295 | 6292 | ||
6296 | static __u8 i2c_write(struct gspca_dev *gspca_dev, | 6293 | static __u8 i2c_write(struct gspca_dev *gspca_dev, |
@@ -6306,7 +6303,7 @@ static __u8 i2c_write(struct gspca_dev *gspca_dev, | |||
6306 | reg_w_i(gspca_dev->dev, 0x01, 0x90); /* <- write command */ | 6303 | reg_w_i(gspca_dev->dev, 0x01, 0x90); /* <- write command */ |
6307 | msleep(5); | 6304 | msleep(5); |
6308 | retbyte = reg_r_i(gspca_dev, 0x0091); /* read status */ | 6305 | retbyte = reg_r_i(gspca_dev, 0x0091); /* read status */ |
6309 | PDEBUG(D_USBO, "i2c w [%02x] %02x%02x (%02x)", | 6306 | PDEBUG(D_USBO, "i2c w [%02x] = %02x%02x (%02x)", |
6310 | reg, valH, valL, retbyte); | 6307 | reg, valH, valL, retbyte); |
6311 | return retbyte; | 6308 | return retbyte; |
6312 | } | 6309 | } |
@@ -6349,6 +6346,8 @@ static void setmatrix(struct gspca_dev *gspca_dev) | |||
6349 | {0x58, 0xf4, 0xf4, 0xf4, 0x58, 0xf4, 0xf4, 0xf4, 0x58}; | 6346 | {0x58, 0xf4, 0xf4, 0xf4, 0x58, 0xf4, 0xf4, 0xf4, 0x58}; |
6350 | static const __u8 po2030_matrix[9] = | 6347 | static const __u8 po2030_matrix[9] = |
6351 | {0x60, 0xf0, 0xf0, 0xf0, 0x60, 0xf0, 0xf0, 0xf0, 0x60}; | 6348 | {0x60, 0xf0, 0xf0, 0xf0, 0x60, 0xf0, 0xf0, 0xf0, 0x60}; |
6349 | static const __u8 vf0250_matrix[9] = | ||
6350 | {0x7b, 0xea, 0xea, 0xea, 0x7b, 0xea, 0xea, 0xea, 0x7b}; | ||
6352 | 6351 | ||
6353 | switch (sd->sensor) { | 6352 | switch (sd->sensor) { |
6354 | case SENSOR_GC0305: | 6353 | case SENSOR_GC0305: |
@@ -6363,8 +6362,9 @@ static void setmatrix(struct gspca_dev *gspca_dev) | |||
6363 | case SENSOR_PO2030: | 6362 | case SENSOR_PO2030: |
6364 | matrix = po2030_matrix; | 6363 | matrix = po2030_matrix; |
6365 | break; | 6364 | break; |
6366 | case SENSOR_TAS5130C_VF0250: /* no matrix? */ | 6365 | case SENSOR_TAS5130C_VF0250: |
6367 | return; | 6366 | matrix = vf0250_matrix; |
6367 | break; | ||
6368 | default: /* matrix already loaded */ | 6368 | default: /* matrix already loaded */ |
6369 | return; | 6369 | return; |
6370 | } | 6370 | } |
@@ -6744,7 +6744,7 @@ static int vga_2wr_probe(struct gspca_dev *gspca_dev) | |||
6744 | return 0x04; /* CS2102 */ | 6744 | return 0x04; /* CS2102 */ |
6745 | 6745 | ||
6746 | start_2wr_probe(dev, 0x06); /* OmniVision */ | 6746 | start_2wr_probe(dev, 0x06); /* OmniVision */ |
6747 | reg_w(dev, 0x08, 0x8d); | 6747 | reg_w(dev, 0x08, 0x008d); |
6748 | i2c_write(gspca_dev, 0x11, 0xaa, 0x00); | 6748 | i2c_write(gspca_dev, 0x11, 0xaa, 0x00); |
6749 | retbyte = i2c_read(gspca_dev, 0x11); | 6749 | retbyte = i2c_read(gspca_dev, 0x11); |
6750 | if (retbyte != 0) { | 6750 | if (retbyte != 0) { |
@@ -6778,7 +6778,7 @@ static int vga_2wr_probe(struct gspca_dev *gspca_dev) | |||
6778 | return 0x0c; /* ICM105A */ | 6778 | return 0x0c; /* ICM105A */ |
6779 | 6779 | ||
6780 | start_2wr_probe(dev, 0x0e); /* PAS202BCB */ | 6780 | start_2wr_probe(dev, 0x0e); /* PAS202BCB */ |
6781 | reg_w(dev, 0x08, 0x8d); | 6781 | reg_w(dev, 0x08, 0x008d); |
6782 | i2c_write(gspca_dev, 0x03, 0xaa, 0x00); | 6782 | i2c_write(gspca_dev, 0x03, 0xaa, 0x00); |
6783 | msleep(500); | 6783 | msleep(500); |
6784 | retbyte = i2c_read(gspca_dev, 0x03); | 6784 | retbyte = i2c_read(gspca_dev, 0x03); |
@@ -6830,7 +6830,6 @@ static const struct sensor_by_chipset_revision chipset_revision_sensor[] = { | |||
6830 | {0x8001, 0x13}, | 6830 | {0x8001, 0x13}, |
6831 | {0x8000, 0x14}, /* CS2102K */ | 6831 | {0x8000, 0x14}, /* CS2102K */ |
6832 | {0x8400, 0x15}, /* TAS5130K */ | 6832 | {0x8400, 0x15}, /* TAS5130K */ |
6833 | {0, 0} | ||
6834 | }; | 6833 | }; |
6835 | 6834 | ||
6836 | static int vga_3wr_probe(struct gspca_dev *gspca_dev) | 6835 | static int vga_3wr_probe(struct gspca_dev *gspca_dev) |
@@ -6843,7 +6842,7 @@ static int vga_3wr_probe(struct gspca_dev *gspca_dev) | |||
6843 | 6842 | ||
6844 | /*fixme: lack of 8b=b3 (11,12)-> 10, 8b=e0 (14,15,16)-> 12 found in gspcav1*/ | 6843 | /*fixme: lack of 8b=b3 (11,12)-> 10, 8b=e0 (14,15,16)-> 12 found in gspcav1*/ |
6845 | reg_w(dev, 0x02, 0x0010); | 6844 | reg_w(dev, 0x02, 0x0010); |
6846 | reg_r(gspca_dev, 0x10); | 6845 | reg_r(gspca_dev, 0x0010); |
6847 | reg_w(dev, 0x01, 0x0000); | 6846 | reg_w(dev, 0x01, 0x0000); |
6848 | reg_w(dev, 0x00, 0x0010); | 6847 | reg_w(dev, 0x00, 0x0010); |
6849 | reg_w(dev, 0x01, 0x0001); | 6848 | reg_w(dev, 0x01, 0x0001); |
@@ -6869,17 +6868,15 @@ static int vga_3wr_probe(struct gspca_dev *gspca_dev) | |||
6869 | PDEBUG(D_PROBE, "probe 3wr vga 1 0x%04x", checkword); | 6868 | PDEBUG(D_PROBE, "probe 3wr vga 1 0x%04x", checkword); |
6870 | reg_r(gspca_dev, 0x0010); | 6869 | reg_r(gspca_dev, 0x0010); |
6871 | /* this is tested only once anyway */ | 6870 | /* this is tested only once anyway */ |
6872 | i = 0; | 6871 | for (i = 0; i < ARRAY_SIZE(chipset_revision_sensor); i++) { |
6873 | while (chipset_revision_sensor[i].revision) { | ||
6874 | if (chipset_revision_sensor[i].revision == checkword) { | 6872 | if (chipset_revision_sensor[i].revision == checkword) { |
6875 | sd->chip_revision = checkword; | 6873 | sd->chip_revision = checkword; |
6876 | send_unknown(dev, SENSOR_PB0330); | 6874 | send_unknown(dev, SENSOR_PB0330); |
6877 | return chipset_revision_sensor[i].internal_sensor_id; | 6875 | return chipset_revision_sensor[i].internal_sensor_id; |
6878 | } | 6876 | } |
6879 | i++; | ||
6880 | } | 6877 | } |
6881 | 6878 | ||
6882 | reg_w(dev, 0x01, 0x0000); | 6879 | reg_w(dev, 0x01, 0x0000); /* check ?? */ |
6883 | reg_w(dev, 0x01, 0x0001); | 6880 | reg_w(dev, 0x01, 0x0001); |
6884 | reg_w(dev, 0xdd, 0x008b); | 6881 | reg_w(dev, 0xdd, 0x008b); |
6885 | reg_w(dev, 0x0a, 0x0010); | 6882 | reg_w(dev, 0x0a, 0x0010); |
@@ -6901,8 +6898,11 @@ static int vga_3wr_probe(struct gspca_dev *gspca_dev) | |||
6901 | retbyte = i2c_read(gspca_dev, 0x00); | 6898 | retbyte = i2c_read(gspca_dev, 0x00); |
6902 | if (retbyte != 0) { | 6899 | if (retbyte != 0) { |
6903 | PDEBUG(D_PROBE, "probe 3wr vga type %02x", retbyte); | 6900 | PDEBUG(D_PROBE, "probe 3wr vga type %02x", retbyte); |
6904 | send_unknown(dev, SENSOR_GC0305); | 6901 | if (retbyte == 0x11) /* VF0250 */ |
6905 | return retbyte; /* 0x29 = gc0305 - should continue? */ | 6902 | return 0x0250; |
6903 | if (retbyte == 0x29) /* gc0305 */ | ||
6904 | send_unknown(dev, SENSOR_GC0305); | ||
6905 | return retbyte; | ||
6906 | } | 6906 | } |
6907 | 6907 | ||
6908 | reg_w(dev, 0x01, 0x0000); /* check OmniVision */ | 6908 | reg_w(dev, 0x01, 0x0000); /* check OmniVision */ |
@@ -6918,18 +6918,18 @@ static int vga_3wr_probe(struct gspca_dev *gspca_dev) | |||
6918 | return 0x06; /* OmniVision confirm ? */ | 6918 | return 0x06; /* OmniVision confirm ? */ |
6919 | } | 6919 | } |
6920 | 6920 | ||
6921 | reg_w(dev, 0x01, 0x00); | 6921 | reg_w(dev, 0x01, 0x0000); |
6922 | reg_w(dev, 0x00, 0x02); | 6922 | reg_w(dev, 0x00, 0x0002); |
6923 | reg_w(dev, 0x01, 0x10); | 6923 | reg_w(dev, 0x01, 0x0010); |
6924 | reg_w(dev, 0x01, 0x01); | 6924 | reg_w(dev, 0x01, 0x0001); |
6925 | reg_w(dev, 0xee, 0x8b); | 6925 | reg_w(dev, 0xee, 0x008b); |
6926 | reg_w(dev, 0x03, 0x12); | 6926 | reg_w(dev, 0x03, 0x0012); |
6927 | /* msleep(150); */ | 6927 | /* msleep(150); */ |
6928 | reg_w(dev, 0x01, 0x12); | 6928 | reg_w(dev, 0x01, 0x0012); |
6929 | reg_w(dev, 0x05, 0x12); | 6929 | reg_w(dev, 0x05, 0x0012); |
6930 | retbyte = i2c_read(gspca_dev, 0x00); /* ID 0 */ | 6930 | retbyte = i2c_read(gspca_dev, 0x0000); /* ID 0 */ |
6931 | checkword = retbyte << 8; | 6931 | checkword = retbyte << 8; |
6932 | retbyte = i2c_read(gspca_dev, 0x01); /* ID 1 */ | 6932 | retbyte = i2c_read(gspca_dev, 0x0001); /* ID 1 */ |
6933 | checkword |= retbyte; | 6933 | checkword |= retbyte; |
6934 | PDEBUG(D_PROBE, "probe 3wr vga 2 0x%04x", checkword); | 6934 | PDEBUG(D_PROBE, "probe 3wr vga 2 0x%04x", checkword); |
6935 | if (checkword == 0x2030) { | 6935 | if (checkword == 0x2030) { |
@@ -6939,14 +6939,14 @@ static int vga_3wr_probe(struct gspca_dev *gspca_dev) | |||
6939 | return checkword; | 6939 | return checkword; |
6940 | } | 6940 | } |
6941 | 6941 | ||
6942 | reg_w(dev, 0x01, 0x00); | 6942 | reg_w(dev, 0x01, 0x0000); |
6943 | reg_w(dev, 0x0a, 0x10); | 6943 | reg_w(dev, 0x0a, 0x0010); |
6944 | reg_w(dev, 0xd3, 0x8b); | 6944 | reg_w(dev, 0xd3, 0x008b); |
6945 | reg_w(dev, 0x01, 0x01); | 6945 | reg_w(dev, 0x01, 0x0001); |
6946 | reg_w(dev, 0x03, 0x12); | 6946 | reg_w(dev, 0x03, 0x0012); |
6947 | reg_w(dev, 0x01, 0x12); | 6947 | reg_w(dev, 0x01, 0x0012); |
6948 | reg_w(dev, 0x05, 0x01); | 6948 | reg_w(dev, 0x05, 0x0001); |
6949 | reg_w(dev, 0xd3, 0x8b); | 6949 | reg_w(dev, 0xd3, 0x008b); |
6950 | retbyte = i2c_read(gspca_dev, 0x01); | 6950 | retbyte = i2c_read(gspca_dev, 0x01); |
6951 | if (retbyte != 0) { | 6951 | if (retbyte != 0) { |
6952 | PDEBUG(D_PROBE, "probe 3wr vga type 0a ?"); | 6952 | PDEBUG(D_PROBE, "probe 3wr vga type 0a ?"); |
@@ -6962,7 +6962,9 @@ static int zcxx_probeSensor(struct gspca_dev *gspca_dev) | |||
6962 | 6962 | ||
6963 | switch (sd->sensor) { | 6963 | switch (sd->sensor) { |
6964 | case SENSOR_MC501CB: | 6964 | case SENSOR_MC501CB: |
6965 | return -1; /* don't probe */ | ||
6965 | case SENSOR_TAS5130C_VF0250: | 6966 | case SENSOR_TAS5130C_VF0250: |
6967 | /* may probe but with write in reg 0x0010 */ | ||
6966 | return -1; /* don't probe */ | 6968 | return -1; /* don't probe */ |
6967 | } | 6969 | } |
6968 | sensor = vga_2wr_probe(gspca_dev); | 6970 | sensor = vga_2wr_probe(gspca_dev); |
@@ -7010,30 +7012,7 @@ static int sd_config(struct gspca_dev *gspca_dev, | |||
7010 | 7012 | ||
7011 | /* define some sensors from the vendor/product */ | 7013 | /* define some sensors from the vendor/product */ |
7012 | sd->sharpness = 2; | 7014 | sd->sharpness = 2; |
7013 | switch (id->idVendor) { | 7015 | sd->sensor = id->driver_info; |
7014 | case 0x041e: /* Creative */ | ||
7015 | switch (id->idProduct) { | ||
7016 | case 0x4051: /* zc301 chips */ | ||
7017 | case 0x4053: | ||
7018 | sd->sensor = SENSOR_TAS5130C_VF0250; | ||
7019 | break; | ||
7020 | } | ||
7021 | break; | ||
7022 | case 0x046d: /* Logitech Labtec */ | ||
7023 | switch (id->idProduct) { | ||
7024 | case 0x08dd: | ||
7025 | sd->sensor = SENSOR_MC501CB; | ||
7026 | break; | ||
7027 | } | ||
7028 | break; | ||
7029 | case 0x0ac8: /* Vimicro z-star */ | ||
7030 | switch (id->idProduct) { | ||
7031 | case 0x305b: | ||
7032 | sd->sensor = SENSOR_TAS5130C_VF0250; | ||
7033 | break; | ||
7034 | } | ||
7035 | break; | ||
7036 | } | ||
7037 | sensor = zcxx_probeSensor(gspca_dev); | 7016 | sensor = zcxx_probeSensor(gspca_dev); |
7038 | if (sensor >= 0) | 7017 | if (sensor >= 0) |
7039 | PDEBUG(D_PROBE, "probe sensor -> %02x", sensor); | 7018 | PDEBUG(D_PROBE, "probe sensor -> %02x", sensor); |
@@ -7119,6 +7098,10 @@ static int sd_config(struct gspca_dev *gspca_dev, | |||
7119 | PDEBUG(D_PROBE, "Find Sensor GC0305"); | 7098 | PDEBUG(D_PROBE, "Find Sensor GC0305"); |
7120 | sd->sensor = SENSOR_GC0305; | 7099 | sd->sensor = SENSOR_GC0305; |
7121 | break; | 7100 | break; |
7101 | case 0x0250: | ||
7102 | PDEBUG(D_PROBE, "Sensor Tas5130 (VF0250)"); | ||
7103 | sd->sensor = SENSOR_TAS5130C_VF0250; | ||
7104 | break; | ||
7122 | case 0x2030: | 7105 | case 0x2030: |
7123 | PDEBUG(D_PROBE, "Find Sensor PO2030"); | 7106 | PDEBUG(D_PROBE, "Find Sensor PO2030"); |
7124 | sd->sensor = SENSOR_PO2030; | 7107 | sd->sensor = SENSOR_PO2030; |
@@ -7146,7 +7129,6 @@ static int sd_config(struct gspca_dev *gspca_dev, | |||
7146 | } | 7129 | } |
7147 | 7130 | ||
7148 | cam = &gspca_dev->cam; | 7131 | cam = &gspca_dev->cam; |
7149 | cam->dev_name = (char *) id->driver_info; | ||
7150 | cam->epaddr = 0x01; | 7132 | cam->epaddr = 0x01; |
7151 | /*fixme:test*/ | 7133 | /*fixme:test*/ |
7152 | gspca_dev->nbalt--; | 7134 | gspca_dev->nbalt--; |
@@ -7235,6 +7217,7 @@ static void sd_start(struct gspca_dev *gspca_dev) | |||
7235 | case SENSOR_GC0305: | 7217 | case SENSOR_GC0305: |
7236 | case SENSOR_OV7620: | 7218 | case SENSOR_OV7620: |
7237 | case SENSOR_PO2030: | 7219 | case SENSOR_PO2030: |
7220 | case SENSOR_TAS5130C_VF0250: | ||
7238 | msleep(100); /* ?? */ | 7221 | msleep(100); /* ?? */ |
7239 | reg_r(gspca_dev, 0x0002); /* --> 0x40 */ | 7222 | reg_r(gspca_dev, 0x0002); /* --> 0x40 */ |
7240 | reg_w(dev, 0x09, 0x01ad); /* (from win traces) */ | 7223 | reg_w(dev, 0x09, 0x01ad); /* (from win traces) */ |
@@ -7515,70 +7498,69 @@ static const struct sd_desc sd_desc = { | |||
7515 | .querymenu = sd_querymenu, | 7498 | .querymenu = sd_querymenu, |
7516 | }; | 7499 | }; |
7517 | 7500 | ||
7518 | #define DVNM(name) .driver_info = (kernel_ulong_t) name | ||
7519 | static const __devinitdata struct usb_device_id device_table[] = { | 7501 | static const __devinitdata struct usb_device_id device_table[] = { |
7520 | {USB_DEVICE(0x041e, 0x041e), DVNM("Creative WebCam Live!")}, | 7502 | {USB_DEVICE(0x041e, 0x041e)}, |
7521 | #ifndef CONFIG_USB_ZC0301 | 7503 | #ifndef CONFIG_USB_ZC0301 |
7522 | {USB_DEVICE(0x041e, 0x4017), DVNM("Creative Webcam Mobile PD1090")}, | 7504 | {USB_DEVICE(0x041e, 0x4017)}, |
7523 | {USB_DEVICE(0x041e, 0x401c), DVNM("Creative NX")}, | 7505 | {USB_DEVICE(0x041e, 0x401c)}, |
7524 | {USB_DEVICE(0x041e, 0x401e), DVNM("Creative Nx Pro")}, | 7506 | {USB_DEVICE(0x041e, 0x401e)}, |
7525 | {USB_DEVICE(0x041e, 0x401f), DVNM("Creative Webcam Notebook PD1171")}, | 7507 | {USB_DEVICE(0x041e, 0x401f)}, |
7526 | #endif | 7508 | #endif |
7527 | {USB_DEVICE(0x041e, 0x4029), DVNM("Creative WebCam Vista Pro")}, | 7509 | {USB_DEVICE(0x041e, 0x4029)}, |
7528 | #ifndef CONFIG_USB_ZC0301 | 7510 | #ifndef CONFIG_USB_ZC0301 |
7529 | {USB_DEVICE(0x041e, 0x4034), DVNM("Creative Instant P0620")}, | 7511 | {USB_DEVICE(0x041e, 0x4034)}, |
7530 | {USB_DEVICE(0x041e, 0x4035), DVNM("Creative Instant P0620D")}, | 7512 | {USB_DEVICE(0x041e, 0x4035)}, |
7531 | {USB_DEVICE(0x041e, 0x4036), DVNM("Creative Live !")}, | 7513 | {USB_DEVICE(0x041e, 0x4036)}, |
7532 | {USB_DEVICE(0x041e, 0x403a), DVNM("Creative Nx Pro 2")}, | 7514 | {USB_DEVICE(0x041e, 0x403a)}, |
7533 | #endif | 7515 | #endif |
7534 | {USB_DEVICE(0x041e, 0x4051), DVNM("Creative Notebook Pro (VF0250)")}, | 7516 | {USB_DEVICE(0x041e, 0x4051), .driver_info = SENSOR_TAS5130C_VF0250}, |
7535 | {USB_DEVICE(0x041e, 0x4053), DVNM("Creative Live!Cam Video IM")}, | 7517 | {USB_DEVICE(0x041e, 0x4053), .driver_info = SENSOR_TAS5130C_VF0250}, |
7536 | #ifndef CONFIG_USB_ZC0301 | 7518 | #ifndef CONFIG_USB_ZC0301 |
7537 | {USB_DEVICE(0x0458, 0x7007), DVNM("Genius VideoCam V2")}, | 7519 | {USB_DEVICE(0x0458, 0x7007)}, |
7538 | {USB_DEVICE(0x0458, 0x700c), DVNM("Genius VideoCam V3")}, | 7520 | {USB_DEVICE(0x0458, 0x700c)}, |
7539 | {USB_DEVICE(0x0458, 0x700f), DVNM("Genius VideoCam Web V2")}, | 7521 | {USB_DEVICE(0x0458, 0x700f)}, |
7540 | #endif | 7522 | #endif |
7541 | {USB_DEVICE(0x0461, 0x0a00), DVNM("MicroInnovation WebCam320")}, | 7523 | {USB_DEVICE(0x0461, 0x0a00)}, |
7542 | {USB_DEVICE(0x046d, 0x08a0), DVNM("Logitech QC IM")}, | 7524 | {USB_DEVICE(0x046d, 0x08a0)}, |
7543 | {USB_DEVICE(0x046d, 0x08a1), DVNM("Logitech QC IM 0x08A1 +sound")}, | 7525 | {USB_DEVICE(0x046d, 0x08a1)}, |
7544 | {USB_DEVICE(0x046d, 0x08a2), DVNM("Labtec Webcam Pro")}, | 7526 | {USB_DEVICE(0x046d, 0x08a2)}, |
7545 | {USB_DEVICE(0x046d, 0x08a3), DVNM("Logitech QC Chat")}, | 7527 | {USB_DEVICE(0x046d, 0x08a3)}, |
7546 | {USB_DEVICE(0x046d, 0x08a6), DVNM("Logitech QCim")}, | 7528 | {USB_DEVICE(0x046d, 0x08a6)}, |
7547 | {USB_DEVICE(0x046d, 0x08a7), DVNM("Logitech QuickCam Image")}, | 7529 | {USB_DEVICE(0x046d, 0x08a7)}, |
7548 | {USB_DEVICE(0x046d, 0x08a9), DVNM("Logitech Notebook Deluxe")}, | 7530 | {USB_DEVICE(0x046d, 0x08a9)}, |
7549 | {USB_DEVICE(0x046d, 0x08aa), DVNM("Labtec Webcam Notebook")}, | 7531 | {USB_DEVICE(0x046d, 0x08aa)}, |
7550 | {USB_DEVICE(0x046d, 0x08ac), DVNM("Logitech QuickCam Cool")}, | 7532 | {USB_DEVICE(0x046d, 0x08ac)}, |
7551 | {USB_DEVICE(0x046d, 0x08ad), DVNM("Logitech QCCommunicate STX")}, | 7533 | {USB_DEVICE(0x046d, 0x08ad)}, |
7552 | #ifndef CONFIG_USB_ZC0301 | 7534 | #ifndef CONFIG_USB_ZC0301 |
7553 | {USB_DEVICE(0x046d, 0x08ae), DVNM("Logitech QuickCam for Notebooks")}, | 7535 | {USB_DEVICE(0x046d, 0x08ae)}, |
7554 | #endif | 7536 | #endif |
7555 | {USB_DEVICE(0x046d, 0x08af), DVNM("Logitech QuickCam Cool")}, | 7537 | {USB_DEVICE(0x046d, 0x08af)}, |
7556 | {USB_DEVICE(0x046d, 0x08b9), DVNM("Logitech QC IM ???")}, | 7538 | {USB_DEVICE(0x046d, 0x08b9)}, |
7557 | {USB_DEVICE(0x046d, 0x08d7), DVNM("Logitech QCam STX")}, | 7539 | {USB_DEVICE(0x046d, 0x08d7)}, |
7558 | {USB_DEVICE(0x046d, 0x08d9), DVNM("Logitech QuickCam IM/Connect")}, | 7540 | {USB_DEVICE(0x046d, 0x08d9)}, |
7559 | {USB_DEVICE(0x046d, 0x08d8), DVNM("Logitech Notebook Deluxe")}, | 7541 | {USB_DEVICE(0x046d, 0x08d8)}, |
7560 | {USB_DEVICE(0x046d, 0x08da), DVNM("Logitech QuickCam Messenger")}, | 7542 | {USB_DEVICE(0x046d, 0x08da)}, |
7561 | {USB_DEVICE(0x046d, 0x08dd), DVNM("Logitech QuickCam for Notebooks")}, | 7543 | {USB_DEVICE(0x046d, 0x08dd), .driver_info = SENSOR_MC501CB}, |
7562 | {USB_DEVICE(0x0471, 0x0325), DVNM("Philips SPC 200 NC")}, | 7544 | {USB_DEVICE(0x0471, 0x0325)}, |
7563 | {USB_DEVICE(0x0471, 0x0326), DVNM("Philips SPC 300 NC")}, | 7545 | {USB_DEVICE(0x0471, 0x0326)}, |
7564 | {USB_DEVICE(0x0471, 0x032d), DVNM("Philips spc210nc")}, | 7546 | {USB_DEVICE(0x0471, 0x032d)}, |
7565 | {USB_DEVICE(0x0471, 0x032e), DVNM("Philips spc315nc")}, | 7547 | {USB_DEVICE(0x0471, 0x032e)}, |
7566 | {USB_DEVICE(0x055f, 0xc005), DVNM("Mustek Wcam300A")}, | 7548 | {USB_DEVICE(0x055f, 0xc005)}, |
7567 | #ifndef CONFIG_USB_ZC0301 | 7549 | #ifndef CONFIG_USB_ZC0301 |
7568 | {USB_DEVICE(0x055f, 0xd003), DVNM("Mustek WCam300A")}, | 7550 | {USB_DEVICE(0x055f, 0xd003)}, |
7569 | {USB_DEVICE(0x055f, 0xd004), DVNM("Mustek WCam300 AN")}, | 7551 | {USB_DEVICE(0x055f, 0xd004)}, |
7570 | #endif | 7552 | #endif |
7571 | {USB_DEVICE(0x0698, 0x2003), DVNM("CTX M730V built in")}, | 7553 | {USB_DEVICE(0x0698, 0x2003)}, |
7572 | {USB_DEVICE(0x0ac8, 0x0302), DVNM("Z-star Vimicro zc0302")}, | 7554 | {USB_DEVICE(0x0ac8, 0x0302)}, |
7573 | #ifndef CONFIG_USB_ZC0301 | 7555 | #ifndef CONFIG_USB_ZC0301 |
7574 | {USB_DEVICE(0x0ac8, 0x301b), DVNM("Z-Star zc301b")}, | 7556 | {USB_DEVICE(0x0ac8, 0x301b)}, |
7575 | {USB_DEVICE(0x0ac8, 0x303b), DVNM("Vimicro 0x303b")}, | 7557 | {USB_DEVICE(0x0ac8, 0x303b)}, |
7576 | #endif | 7558 | #endif |
7577 | {USB_DEVICE(0x0ac8, 0x305b), DVNM("Z-star Vimicro zc0305b")}, | 7559 | {USB_DEVICE(0x0ac8, 0x305b), .driver_info = SENSOR_TAS5130C_VF0250}, |
7578 | #ifndef CONFIG_USB_ZC0301 | 7560 | #ifndef CONFIG_USB_ZC0301 |
7579 | {USB_DEVICE(0x0ac8, 0x307b), DVNM("Z-Star 307b")}, | 7561 | {USB_DEVICE(0x0ac8, 0x307b)}, |
7580 | {USB_DEVICE(0x10fd, 0x0128), DVNM("Typhoon Webshot II 300k 0x0128")}, | 7562 | {USB_DEVICE(0x10fd, 0x0128)}, |
7581 | {USB_DEVICE(0x10fd, 0x8050), DVNM("Typhoon Webshot II USB 300k")}, | 7563 | {USB_DEVICE(0x10fd, 0x8050)}, |
7582 | #endif | 7564 | #endif |
7583 | {} /* end of entry */ | 7565 | {} /* end of entry */ |
7584 | }; | 7566 | }; |
@@ -7605,7 +7587,7 @@ static int __init sd_mod_init(void) | |||
7605 | { | 7587 | { |
7606 | if (usb_register(&sd_driver) < 0) | 7588 | if (usb_register(&sd_driver) < 0) |
7607 | return -1; | 7589 | return -1; |
7608 | PDEBUG(D_PROBE, "v%s registered", version); | 7590 | PDEBUG(D_PROBE, "registered"); |
7609 | return 0; | 7591 | return 0; |
7610 | } | 7592 | } |
7611 | 7593 | ||
diff --git a/drivers/media/video/ivtv/Kconfig b/drivers/media/video/ivtv/Kconfig index 5d7ee8fcdd50..0069898bddab 100644 --- a/drivers/media/video/ivtv/Kconfig +++ b/drivers/media/video/ivtv/Kconfig | |||
@@ -2,9 +2,7 @@ config VIDEO_IVTV | |||
2 | tristate "Conexant cx23416/cx23415 MPEG encoder/decoder support" | 2 | tristate "Conexant cx23416/cx23415 MPEG encoder/decoder support" |
3 | depends on VIDEO_V4L1 && VIDEO_V4L2 && PCI && I2C && EXPERIMENTAL | 3 | depends on VIDEO_V4L1 && VIDEO_V4L2 && PCI && I2C && EXPERIMENTAL |
4 | depends on INPUT # due to VIDEO_IR | 4 | depends on INPUT # due to VIDEO_IR |
5 | depends on HOTPLUG # due to FW_LOADER | ||
6 | select I2C_ALGOBIT | 5 | select I2C_ALGOBIT |
7 | select FW_LOADER | ||
8 | select VIDEO_IR | 6 | select VIDEO_IR |
9 | select VIDEO_TUNER | 7 | select VIDEO_TUNER |
10 | select VIDEO_TVEEPROM | 8 | select VIDEO_TVEEPROM |
diff --git a/drivers/media/video/ivtv/ivtv-driver.c b/drivers/media/video/ivtv/ivtv-driver.c index 41fd79279bb5..aea1664948ce 100644 --- a/drivers/media/video/ivtv/ivtv-driver.c +++ b/drivers/media/video/ivtv/ivtv-driver.c | |||
@@ -465,9 +465,8 @@ static void ivtv_process_eeprom(struct ivtv *itv) | |||
465 | if (itv->options.radio == -1) | 465 | if (itv->options.radio == -1) |
466 | itv->options.radio = (tv.has_radio != 0); | 466 | itv->options.radio = (tv.has_radio != 0); |
467 | /* only enable newi2c if an IR blaster is present */ | 467 | /* only enable newi2c if an IR blaster is present */ |
468 | /* FIXME: for 2.6.20 the test against 2 should be removed */ | 468 | if (itv->options.newi2c == -1 && tv.has_ir) { |
469 | if (itv->options.newi2c == -1 && tv.has_ir != -1 && tv.has_ir != 2) { | 469 | itv->options.newi2c = (tv.has_ir & 4) ? 1 : 0; |
470 | itv->options.newi2c = (tv.has_ir & 2) ? 1 : 0; | ||
471 | if (itv->options.newi2c) { | 470 | if (itv->options.newi2c) { |
472 | IVTV_INFO("Reopen i2c bus for IR-blaster support\n"); | 471 | IVTV_INFO("Reopen i2c bus for IR-blaster support\n"); |
473 | exit_ivtv_i2c(itv); | 472 | exit_ivtv_i2c(itv); |
diff --git a/drivers/media/video/ivtv/ivtv-driver.h b/drivers/media/video/ivtv/ivtv-driver.h index a08bb3331cfb..ab287b48fc2b 100644 --- a/drivers/media/video/ivtv/ivtv-driver.h +++ b/drivers/media/video/ivtv/ivtv-driver.h | |||
@@ -60,6 +60,7 @@ | |||
60 | #include <linux/dvb/video.h> | 60 | #include <linux/dvb/video.h> |
61 | #include <linux/dvb/audio.h> | 61 | #include <linux/dvb/audio.h> |
62 | #include <media/v4l2-common.h> | 62 | #include <media/v4l2-common.h> |
63 | #include <media/v4l2-ioctl.h> | ||
63 | #include <media/tuner.h> | 64 | #include <media/tuner.h> |
64 | #include <media/cx2341x.h> | 65 | #include <media/cx2341x.h> |
65 | 66 | ||
diff --git a/drivers/media/video/ivtv/ivtv-ioctl.c b/drivers/media/video/ivtv/ivtv-ioctl.c index 52e00a7f3110..61030309d0ad 100644 --- a/drivers/media/video/ivtv/ivtv-ioctl.c +++ b/drivers/media/video/ivtv/ivtv-ioctl.c | |||
@@ -1842,69 +1842,73 @@ int ivtv_v4l2_ioctl(struct inode *inode, struct file *filp, unsigned int cmd, | |||
1842 | return res; | 1842 | return res; |
1843 | } | 1843 | } |
1844 | 1844 | ||
1845 | void ivtv_set_funcs(struct video_device *vdev) | 1845 | static const struct v4l2_ioctl_ops ivtv_ioctl_ops = { |
1846 | { | 1846 | .vidioc_querycap = ivtv_querycap, |
1847 | vdev->vidioc_querycap = ivtv_querycap; | 1847 | .vidioc_g_priority = ivtv_g_priority, |
1848 | vdev->vidioc_g_priority = ivtv_g_priority; | 1848 | .vidioc_s_priority = ivtv_s_priority, |
1849 | vdev->vidioc_s_priority = ivtv_s_priority; | 1849 | .vidioc_s_audio = ivtv_s_audio, |
1850 | vdev->vidioc_s_audio = ivtv_s_audio; | 1850 | .vidioc_g_audio = ivtv_g_audio, |
1851 | vdev->vidioc_g_audio = ivtv_g_audio; | 1851 | .vidioc_enumaudio = ivtv_enumaudio, |
1852 | vdev->vidioc_enumaudio = ivtv_enumaudio; | 1852 | .vidioc_s_audout = ivtv_s_audout, |
1853 | vdev->vidioc_s_audout = ivtv_s_audout; | 1853 | .vidioc_g_audout = ivtv_g_audout, |
1854 | vdev->vidioc_g_audout = ivtv_g_audout; | 1854 | .vidioc_enum_input = ivtv_enum_input, |
1855 | vdev->vidioc_enum_input = ivtv_enum_input; | 1855 | .vidioc_enum_output = ivtv_enum_output, |
1856 | vdev->vidioc_enum_output = ivtv_enum_output; | 1856 | .vidioc_enumaudout = ivtv_enumaudout, |
1857 | vdev->vidioc_enumaudout = ivtv_enumaudout; | 1857 | .vidioc_cropcap = ivtv_cropcap, |
1858 | vdev->vidioc_cropcap = ivtv_cropcap; | 1858 | .vidioc_s_crop = ivtv_s_crop, |
1859 | vdev->vidioc_s_crop = ivtv_s_crop; | 1859 | .vidioc_g_crop = ivtv_g_crop, |
1860 | vdev->vidioc_g_crop = ivtv_g_crop; | 1860 | .vidioc_g_input = ivtv_g_input, |
1861 | vdev->vidioc_g_input = ivtv_g_input; | 1861 | .vidioc_s_input = ivtv_s_input, |
1862 | vdev->vidioc_s_input = ivtv_s_input; | 1862 | .vidioc_g_output = ivtv_g_output, |
1863 | vdev->vidioc_g_output = ivtv_g_output; | 1863 | .vidioc_s_output = ivtv_s_output, |
1864 | vdev->vidioc_s_output = ivtv_s_output; | 1864 | .vidioc_g_frequency = ivtv_g_frequency, |
1865 | vdev->vidioc_g_frequency = ivtv_g_frequency; | 1865 | .vidioc_s_frequency = ivtv_s_frequency, |
1866 | vdev->vidioc_s_frequency = ivtv_s_frequency; | 1866 | .vidioc_s_tuner = ivtv_s_tuner, |
1867 | vdev->vidioc_s_tuner = ivtv_s_tuner; | 1867 | .vidioc_g_tuner = ivtv_g_tuner, |
1868 | vdev->vidioc_g_tuner = ivtv_g_tuner; | 1868 | .vidioc_g_enc_index = ivtv_g_enc_index, |
1869 | vdev->vidioc_g_enc_index = ivtv_g_enc_index; | 1869 | .vidioc_g_fbuf = ivtv_g_fbuf, |
1870 | vdev->vidioc_g_fbuf = ivtv_g_fbuf; | 1870 | .vidioc_s_fbuf = ivtv_s_fbuf, |
1871 | vdev->vidioc_s_fbuf = ivtv_s_fbuf; | 1871 | .vidioc_g_std = ivtv_g_std, |
1872 | vdev->vidioc_g_std = ivtv_g_std; | 1872 | .vidioc_s_std = ivtv_s_std, |
1873 | vdev->vidioc_s_std = ivtv_s_std; | 1873 | .vidioc_overlay = ivtv_overlay, |
1874 | vdev->vidioc_overlay = ivtv_overlay; | 1874 | .vidioc_log_status = ivtv_log_status, |
1875 | vdev->vidioc_log_status = ivtv_log_status; | 1875 | .vidioc_enum_fmt_vid_cap = ivtv_enum_fmt_vid_cap, |
1876 | vdev->vidioc_enum_fmt_vid_cap = ivtv_enum_fmt_vid_cap; | 1876 | .vidioc_encoder_cmd = ivtv_encoder_cmd, |
1877 | vdev->vidioc_encoder_cmd = ivtv_encoder_cmd; | 1877 | .vidioc_try_encoder_cmd = ivtv_try_encoder_cmd, |
1878 | vdev->vidioc_try_encoder_cmd = ivtv_try_encoder_cmd; | 1878 | .vidioc_enum_fmt_vid_out = ivtv_enum_fmt_vid_out, |
1879 | vdev->vidioc_enum_fmt_vid_out = ivtv_enum_fmt_vid_out; | 1879 | .vidioc_g_fmt_vid_cap = ivtv_g_fmt_vid_cap, |
1880 | vdev->vidioc_g_fmt_vid_cap = ivtv_g_fmt_vid_cap; | 1880 | .vidioc_g_fmt_vbi_cap = ivtv_g_fmt_vbi_cap, |
1881 | vdev->vidioc_g_fmt_vbi_cap = ivtv_g_fmt_vbi_cap; | 1881 | .vidioc_g_fmt_sliced_vbi_cap = ivtv_g_fmt_sliced_vbi_cap, |
1882 | vdev->vidioc_g_fmt_sliced_vbi_cap = ivtv_g_fmt_sliced_vbi_cap; | 1882 | .vidioc_g_fmt_vid_out = ivtv_g_fmt_vid_out, |
1883 | vdev->vidioc_g_fmt_vid_out = ivtv_g_fmt_vid_out; | 1883 | .vidioc_g_fmt_vid_out_overlay = ivtv_g_fmt_vid_out_overlay, |
1884 | vdev->vidioc_g_fmt_vid_out_overlay = ivtv_g_fmt_vid_out_overlay; | 1884 | .vidioc_g_fmt_sliced_vbi_out = ivtv_g_fmt_sliced_vbi_out, |
1885 | vdev->vidioc_g_fmt_sliced_vbi_out = ivtv_g_fmt_sliced_vbi_out; | 1885 | .vidioc_s_fmt_vid_cap = ivtv_s_fmt_vid_cap, |
1886 | vdev->vidioc_s_fmt_vid_cap = ivtv_s_fmt_vid_cap; | 1886 | .vidioc_s_fmt_vbi_cap = ivtv_s_fmt_vbi_cap, |
1887 | vdev->vidioc_s_fmt_vbi_cap = ivtv_s_fmt_vbi_cap; | 1887 | .vidioc_s_fmt_sliced_vbi_cap = ivtv_s_fmt_sliced_vbi_cap, |
1888 | vdev->vidioc_s_fmt_sliced_vbi_cap = ivtv_s_fmt_sliced_vbi_cap; | 1888 | .vidioc_s_fmt_vid_out = ivtv_s_fmt_vid_out, |
1889 | vdev->vidioc_s_fmt_vid_out = ivtv_s_fmt_vid_out; | 1889 | .vidioc_s_fmt_vid_out_overlay = ivtv_s_fmt_vid_out_overlay, |
1890 | vdev->vidioc_s_fmt_vid_out_overlay = ivtv_s_fmt_vid_out_overlay; | 1890 | .vidioc_s_fmt_sliced_vbi_out = ivtv_s_fmt_sliced_vbi_out, |
1891 | vdev->vidioc_s_fmt_sliced_vbi_out = ivtv_s_fmt_sliced_vbi_out; | 1891 | .vidioc_try_fmt_vid_cap = ivtv_try_fmt_vid_cap, |
1892 | vdev->vidioc_try_fmt_vid_cap = ivtv_try_fmt_vid_cap; | 1892 | .vidioc_try_fmt_vbi_cap = ivtv_try_fmt_vbi_cap, |
1893 | vdev->vidioc_try_fmt_vbi_cap = ivtv_try_fmt_vbi_cap; | 1893 | .vidioc_try_fmt_sliced_vbi_cap = ivtv_try_fmt_sliced_vbi_cap, |
1894 | vdev->vidioc_try_fmt_sliced_vbi_cap = ivtv_try_fmt_sliced_vbi_cap; | 1894 | .vidioc_try_fmt_vid_out = ivtv_try_fmt_vid_out, |
1895 | vdev->vidioc_try_fmt_vid_out = ivtv_try_fmt_vid_out; | 1895 | .vidioc_try_fmt_vid_out_overlay = ivtv_try_fmt_vid_out_overlay, |
1896 | vdev->vidioc_try_fmt_vid_out_overlay = ivtv_try_fmt_vid_out_overlay; | 1896 | .vidioc_try_fmt_sliced_vbi_out = ivtv_try_fmt_sliced_vbi_out, |
1897 | vdev->vidioc_try_fmt_sliced_vbi_out = ivtv_try_fmt_sliced_vbi_out; | 1897 | .vidioc_g_sliced_vbi_cap = ivtv_g_sliced_vbi_cap, |
1898 | vdev->vidioc_g_sliced_vbi_cap = ivtv_g_sliced_vbi_cap; | 1898 | .vidioc_g_chip_ident = ivtv_g_chip_ident, |
1899 | vdev->vidioc_g_chip_ident = ivtv_g_chip_ident; | ||
1900 | #ifdef CONFIG_VIDEO_ADV_DEBUG | 1899 | #ifdef CONFIG_VIDEO_ADV_DEBUG |
1901 | vdev->vidioc_g_register = ivtv_g_register; | 1900 | .vidioc_g_register = ivtv_g_register, |
1902 | vdev->vidioc_s_register = ivtv_s_register; | 1901 | .vidioc_s_register = ivtv_s_register, |
1903 | #endif | 1902 | #endif |
1904 | vdev->vidioc_default = ivtv_default; | 1903 | .vidioc_default = ivtv_default, |
1905 | vdev->vidioc_queryctrl = ivtv_queryctrl; | 1904 | .vidioc_queryctrl = ivtv_queryctrl, |
1906 | vdev->vidioc_querymenu = ivtv_querymenu; | 1905 | .vidioc_querymenu = ivtv_querymenu, |
1907 | vdev->vidioc_g_ext_ctrls = ivtv_g_ext_ctrls; | 1906 | .vidioc_g_ext_ctrls = ivtv_g_ext_ctrls, |
1908 | vdev->vidioc_s_ext_ctrls = ivtv_s_ext_ctrls; | 1907 | .vidioc_s_ext_ctrls = ivtv_s_ext_ctrls, |
1909 | vdev->vidioc_try_ext_ctrls = ivtv_try_ext_ctrls; | 1908 | .vidioc_try_ext_ctrls = ivtv_try_ext_ctrls, |
1909 | }; | ||
1910 | |||
1911 | void ivtv_set_funcs(struct video_device *vdev) | ||
1912 | { | ||
1913 | vdev->ioctl_ops = &ivtv_ioctl_ops; | ||
1910 | } | 1914 | } |
diff --git a/drivers/media/video/ivtv/ivtv-streams.c b/drivers/media/video/ivtv/ivtv-streams.c index f8883b487f4a..54d2023b26c4 100644 --- a/drivers/media/video/ivtv/ivtv-streams.c +++ b/drivers/media/video/ivtv/ivtv-streams.c | |||
@@ -208,16 +208,11 @@ static int ivtv_prep_dev(struct ivtv *itv, int type) | |||
208 | return -ENOMEM; | 208 | return -ENOMEM; |
209 | } | 209 | } |
210 | 210 | ||
211 | s->v4l2dev->type = VID_TYPE_CAPTURE | VID_TYPE_TUNER | VID_TYPE_TELETEXT | | ||
212 | VID_TYPE_CLIPPING | VID_TYPE_SCALES | VID_TYPE_MPEG_ENCODER; | ||
213 | if (itv->v4l2_cap & V4L2_CAP_VIDEO_OUTPUT) { | ||
214 | s->v4l2dev->type |= VID_TYPE_MPEG_DECODER; | ||
215 | } | ||
216 | snprintf(s->v4l2dev->name, sizeof(s->v4l2dev->name), "ivtv%d %s", | 211 | snprintf(s->v4l2dev->name, sizeof(s->v4l2dev->name), "ivtv%d %s", |
217 | itv->num, s->name); | 212 | itv->num, s->name); |
218 | 213 | ||
219 | s->v4l2dev->minor = minor; | 214 | s->v4l2dev->minor = minor; |
220 | s->v4l2dev->dev = &itv->dev->dev; | 215 | s->v4l2dev->parent = &itv->dev->dev; |
221 | s->v4l2dev->fops = ivtv_stream_info[type].fops; | 216 | s->v4l2dev->fops = ivtv_stream_info[type].fops; |
222 | s->v4l2dev->release = video_device_release; | 217 | s->v4l2dev->release = video_device_release; |
223 | s->v4l2dev->tvnorms = V4L2_STD_ALL; | 218 | s->v4l2dev->tvnorms = V4L2_STD_ALL; |
diff --git a/drivers/media/video/m52790.c b/drivers/media/video/m52790.c index 39bf6b114d50..89a781c6929d 100644 --- a/drivers/media/video/m52790.c +++ b/drivers/media/video/m52790.c | |||
@@ -26,7 +26,7 @@ | |||
26 | #include <asm/uaccess.h> | 26 | #include <asm/uaccess.h> |
27 | #include <linux/i2c.h> | 27 | #include <linux/i2c.h> |
28 | #include <linux/i2c-id.h> | 28 | #include <linux/i2c-id.h> |
29 | #include <linux/videodev.h> | 29 | #include <linux/videodev2.h> |
30 | #include <media/m52790.h> | 30 | #include <media/m52790.h> |
31 | #include <media/v4l2-common.h> | 31 | #include <media/v4l2-common.h> |
32 | #include <media/v4l2-chip-ident.h> | 32 | #include <media/v4l2-chip-ident.h> |
diff --git a/drivers/media/video/meye.c b/drivers/media/video/meye.c index 2fb5854cf6f0..7c8ef6ac6c39 100644 --- a/drivers/media/video/meye.c +++ b/drivers/media/video/meye.c | |||
@@ -31,6 +31,7 @@ | |||
31 | #include <linux/init.h> | 31 | #include <linux/init.h> |
32 | #include <linux/videodev.h> | 32 | #include <linux/videodev.h> |
33 | #include <media/v4l2-common.h> | 33 | #include <media/v4l2-common.h> |
34 | #include <media/v4l2-ioctl.h> | ||
34 | #include <asm/uaccess.h> | 35 | #include <asm/uaccess.h> |
35 | #include <asm/io.h> | 36 | #include <asm/io.h> |
36 | #include <linux/delay.h> | 37 | #include <linux/delay.h> |
@@ -1697,13 +1698,7 @@ static const struct file_operations meye_fops = { | |||
1697 | .llseek = no_llseek, | 1698 | .llseek = no_llseek, |
1698 | }; | 1699 | }; |
1699 | 1700 | ||
1700 | static struct video_device meye_template = { | 1701 | static const struct v4l2_ioctl_ops meye_ioctl_ops = { |
1701 | .owner = THIS_MODULE, | ||
1702 | .name = "meye", | ||
1703 | .type = VID_TYPE_CAPTURE, | ||
1704 | .fops = &meye_fops, | ||
1705 | .release = video_device_release, | ||
1706 | .minor = -1, | ||
1707 | .vidioc_querycap = vidioc_querycap, | 1702 | .vidioc_querycap = vidioc_querycap, |
1708 | .vidioc_enum_input = vidioc_enum_input, | 1703 | .vidioc_enum_input = vidioc_enum_input, |
1709 | .vidioc_g_input = vidioc_g_input, | 1704 | .vidioc_g_input = vidioc_g_input, |
@@ -1724,6 +1719,14 @@ static struct video_device meye_template = { | |||
1724 | .vidioc_default = vidioc_default, | 1719 | .vidioc_default = vidioc_default, |
1725 | }; | 1720 | }; |
1726 | 1721 | ||
1722 | static struct video_device meye_template = { | ||
1723 | .name = "meye", | ||
1724 | .fops = &meye_fops, | ||
1725 | .ioctl_ops = &meye_ioctl_ops, | ||
1726 | .release = video_device_release, | ||
1727 | .minor = -1, | ||
1728 | }; | ||
1729 | |||
1727 | #ifdef CONFIG_PM | 1730 | #ifdef CONFIG_PM |
1728 | static int meye_suspend(struct pci_dev *pdev, pm_message_t state) | 1731 | static int meye_suspend(struct pci_dev *pdev, pm_message_t state) |
1729 | { | 1732 | { |
@@ -1801,7 +1804,7 @@ static int __devinit meye_probe(struct pci_dev *pcidev, | |||
1801 | } | 1804 | } |
1802 | 1805 | ||
1803 | memcpy(meye.video_dev, &meye_template, sizeof(meye_template)); | 1806 | memcpy(meye.video_dev, &meye_template, sizeof(meye_template)); |
1804 | meye.video_dev->dev = &meye.mchip_dev->dev; | 1807 | meye.video_dev->parent = &meye.mchip_dev->dev; |
1805 | 1808 | ||
1806 | if ((ret = sony_pic_camera_command(SONY_PIC_COMMAND_SETCAMERA, 1))) { | 1809 | if ((ret = sony_pic_camera_command(SONY_PIC_COMMAND_SETCAMERA, 1))) { |
1807 | printk(KERN_ERR "meye: unable to power on the camera\n"); | 1810 | printk(KERN_ERR "meye: unable to power on the camera\n"); |
diff --git a/drivers/media/video/msp3400-driver.c b/drivers/media/video/msp3400-driver.c index 5691e019d195..3da74dcee902 100644 --- a/drivers/media/video/msp3400-driver.c +++ b/drivers/media/video/msp3400-driver.c | |||
@@ -51,9 +51,9 @@ | |||
51 | #include <linux/module.h> | 51 | #include <linux/module.h> |
52 | #include <linux/slab.h> | 52 | #include <linux/slab.h> |
53 | #include <linux/i2c.h> | 53 | #include <linux/i2c.h> |
54 | #include <linux/videodev.h> | ||
55 | #include <linux/videodev2.h> | 54 | #include <linux/videodev2.h> |
56 | #include <media/v4l2-common.h> | 55 | #include <media/v4l2-common.h> |
56 | #include <media/v4l2-ioctl.h> | ||
57 | #include <media/v4l2-i2c-drv-legacy.h> | 57 | #include <media/v4l2-i2c-drv-legacy.h> |
58 | #include <media/tvaudio.h> | 58 | #include <media/tvaudio.h> |
59 | #include <media/msp3400.h> | 59 | #include <media/msp3400.h> |
diff --git a/drivers/media/video/msp3400-kthreads.c b/drivers/media/video/msp3400-kthreads.c index 1622f70e4dd0..846a14a61fd1 100644 --- a/drivers/media/video/msp3400-kthreads.c +++ b/drivers/media/video/msp3400-kthreads.c | |||
@@ -25,7 +25,6 @@ | |||
25 | #include <linux/slab.h> | 25 | #include <linux/slab.h> |
26 | #include <linux/i2c.h> | 26 | #include <linux/i2c.h> |
27 | #include <linux/freezer.h> | 27 | #include <linux/freezer.h> |
28 | #include <linux/videodev.h> | ||
29 | #include <linux/videodev2.h> | 28 | #include <linux/videodev2.h> |
30 | #include <media/v4l2-common.h> | 29 | #include <media/v4l2-common.h> |
31 | #include <media/msp3400.h> | 30 | #include <media/msp3400.h> |
diff --git a/drivers/media/video/mt9m001.c b/drivers/media/video/mt9m001.c index ee43499544c1..554d2295484e 100644 --- a/drivers/media/video/mt9m001.c +++ b/drivers/media/video/mt9m001.c | |||
@@ -120,7 +120,7 @@ static int mt9m001_init(struct soc_camera_device *icd) | |||
120 | int ret; | 120 | int ret; |
121 | 121 | ||
122 | /* Disable chip, synchronous option update */ | 122 | /* Disable chip, synchronous option update */ |
123 | dev_dbg(icd->vdev->dev, "%s\n", __func__); | 123 | dev_dbg(icd->vdev->parent, "%s\n", __func__); |
124 | 124 | ||
125 | ret = reg_write(icd, MT9M001_RESET, 1); | 125 | ret = reg_write(icd, MT9M001_RESET, 1); |
126 | if (ret >= 0) | 126 | if (ret >= 0) |
diff --git a/drivers/media/video/ov511.c b/drivers/media/video/ov511.c index eafb0c7736e6..9edaca4371d7 100644 --- a/drivers/media/video/ov511.c +++ b/drivers/media/video/ov511.c | |||
@@ -4666,9 +4666,7 @@ static const struct file_operations ov511_fops = { | |||
4666 | }; | 4666 | }; |
4667 | 4667 | ||
4668 | static struct video_device vdev_template = { | 4668 | static struct video_device vdev_template = { |
4669 | .owner = THIS_MODULE, | ||
4670 | .name = "OV511 USB Camera", | 4669 | .name = "OV511 USB Camera", |
4671 | .type = VID_TYPE_CAPTURE, | ||
4672 | .fops = &ov511_fops, | 4670 | .fops = &ov511_fops, |
4673 | .release = video_device_release, | 4671 | .release = video_device_release, |
4674 | .minor = -1, | 4672 | .minor = -1, |
@@ -5661,43 +5659,43 @@ static int ov_create_sysfs(struct video_device *vdev) | |||
5661 | { | 5659 | { |
5662 | int rc; | 5660 | int rc; |
5663 | 5661 | ||
5664 | rc = video_device_create_file(vdev, &dev_attr_custom_id); | 5662 | rc = device_create_file(&vdev->dev, &dev_attr_custom_id); |
5665 | if (rc) goto err; | 5663 | if (rc) goto err; |
5666 | rc = video_device_create_file(vdev, &dev_attr_model); | 5664 | rc = device_create_file(&vdev->dev, &dev_attr_model); |
5667 | if (rc) goto err_id; | 5665 | if (rc) goto err_id; |
5668 | rc = video_device_create_file(vdev, &dev_attr_bridge); | 5666 | rc = device_create_file(&vdev->dev, &dev_attr_bridge); |
5669 | if (rc) goto err_model; | 5667 | if (rc) goto err_model; |
5670 | rc = video_device_create_file(vdev, &dev_attr_sensor); | 5668 | rc = device_create_file(&vdev->dev, &dev_attr_sensor); |
5671 | if (rc) goto err_bridge; | 5669 | if (rc) goto err_bridge; |
5672 | rc = video_device_create_file(vdev, &dev_attr_brightness); | 5670 | rc = device_create_file(&vdev->dev, &dev_attr_brightness); |
5673 | if (rc) goto err_sensor; | 5671 | if (rc) goto err_sensor; |
5674 | rc = video_device_create_file(vdev, &dev_attr_saturation); | 5672 | rc = device_create_file(&vdev->dev, &dev_attr_saturation); |
5675 | if (rc) goto err_bright; | 5673 | if (rc) goto err_bright; |
5676 | rc = video_device_create_file(vdev, &dev_attr_contrast); | 5674 | rc = device_create_file(&vdev->dev, &dev_attr_contrast); |
5677 | if (rc) goto err_sat; | 5675 | if (rc) goto err_sat; |
5678 | rc = video_device_create_file(vdev, &dev_attr_hue); | 5676 | rc = device_create_file(&vdev->dev, &dev_attr_hue); |
5679 | if (rc) goto err_contrast; | 5677 | if (rc) goto err_contrast; |
5680 | rc = video_device_create_file(vdev, &dev_attr_exposure); | 5678 | rc = device_create_file(&vdev->dev, &dev_attr_exposure); |
5681 | if (rc) goto err_hue; | 5679 | if (rc) goto err_hue; |
5682 | 5680 | ||
5683 | return 0; | 5681 | return 0; |
5684 | 5682 | ||
5685 | err_hue: | 5683 | err_hue: |
5686 | video_device_remove_file(vdev, &dev_attr_hue); | 5684 | device_remove_file(&vdev->dev, &dev_attr_hue); |
5687 | err_contrast: | 5685 | err_contrast: |
5688 | video_device_remove_file(vdev, &dev_attr_contrast); | 5686 | device_remove_file(&vdev->dev, &dev_attr_contrast); |
5689 | err_sat: | 5687 | err_sat: |
5690 | video_device_remove_file(vdev, &dev_attr_saturation); | 5688 | device_remove_file(&vdev->dev, &dev_attr_saturation); |
5691 | err_bright: | 5689 | err_bright: |
5692 | video_device_remove_file(vdev, &dev_attr_brightness); | 5690 | device_remove_file(&vdev->dev, &dev_attr_brightness); |
5693 | err_sensor: | 5691 | err_sensor: |
5694 | video_device_remove_file(vdev, &dev_attr_sensor); | 5692 | device_remove_file(&vdev->dev, &dev_attr_sensor); |
5695 | err_bridge: | 5693 | err_bridge: |
5696 | video_device_remove_file(vdev, &dev_attr_bridge); | 5694 | device_remove_file(&vdev->dev, &dev_attr_bridge); |
5697 | err_model: | 5695 | err_model: |
5698 | video_device_remove_file(vdev, &dev_attr_model); | 5696 | device_remove_file(&vdev->dev, &dev_attr_model); |
5699 | err_id: | 5697 | err_id: |
5700 | video_device_remove_file(vdev, &dev_attr_custom_id); | 5698 | device_remove_file(&vdev->dev, &dev_attr_custom_id); |
5701 | err: | 5699 | err: |
5702 | return rc; | 5700 | return rc; |
5703 | } | 5701 | } |
@@ -5833,7 +5831,7 @@ ov51x_probe(struct usb_interface *intf, const struct usb_device_id *id) | |||
5833 | goto error; | 5831 | goto error; |
5834 | 5832 | ||
5835 | memcpy(ov->vdev, &vdev_template, sizeof(*ov->vdev)); | 5833 | memcpy(ov->vdev, &vdev_template, sizeof(*ov->vdev)); |
5836 | ov->vdev->dev = &intf->dev; | 5834 | ov->vdev->parent = &intf->dev; |
5837 | video_set_drvdata(ov->vdev, ov); | 5835 | video_set_drvdata(ov->vdev, ov); |
5838 | 5836 | ||
5839 | for (i = 0; i < OV511_MAX_UNIT_VIDEO; i++) { | 5837 | for (i = 0; i < OV511_MAX_UNIT_VIDEO; i++) { |
diff --git a/drivers/media/video/ov511.h b/drivers/media/video/ov511.h index 1010e51189b7..baded1262ca9 100644 --- a/drivers/media/video/ov511.h +++ b/drivers/media/video/ov511.h | |||
@@ -4,6 +4,7 @@ | |||
4 | #include <asm/uaccess.h> | 4 | #include <asm/uaccess.h> |
5 | #include <linux/videodev.h> | 5 | #include <linux/videodev.h> |
6 | #include <media/v4l2-common.h> | 6 | #include <media/v4l2-common.h> |
7 | #include <media/v4l2-ioctl.h> | ||
7 | #include <linux/usb.h> | 8 | #include <linux/usb.h> |
8 | #include <linux/mutex.h> | 9 | #include <linux/mutex.h> |
9 | 10 | ||
diff --git a/drivers/media/video/planb.c b/drivers/media/video/planb.c index 36047d4e70f6..e69de29bb2d1 100644 --- a/drivers/media/video/planb.c +++ b/drivers/media/video/planb.c | |||
@@ -1,2309 +0,0 @@ | |||
1 | /* | ||
2 | planb - PlanB frame grabber driver | ||
3 | |||
4 | PlanB is used in the 7x00/8x00 series of PowerMacintosh | ||
5 | Computers as video input DMA controller. | ||
6 | |||
7 | Copyright (C) 1998 Michel Lanners (mlan@cpu.lu) | ||
8 | |||
9 | Based largely on the bttv driver by Ralph Metzler (rjkm@thp.uni-koeln.de) | ||
10 | |||
11 | Additional debugging and coding by Takashi Oe (toe@unlserve.unl.edu) | ||
12 | |||
13 | This program is free software; you can redistribute it and/or modify | ||
14 | it under the terms of the GNU General Public License as published by | ||
15 | the Free Software Foundation; either version 2 of the License, or | ||
16 | (at your option) any later version. | ||
17 | |||
18 | This program is distributed in the hope that it will be useful, | ||
19 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
20 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
21 | GNU General Public License for more details. | ||
22 | |||
23 | You should have received a copy of the GNU General Public License | ||
24 | along with this program; if not, write to the Free Software | ||
25 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
26 | */ | ||
27 | |||
28 | /* $Id: planb.c,v 1.18 1999/05/02 17:36:34 mlan Exp $ */ | ||
29 | |||
30 | #include <linux/init.h> | ||
31 | #include <linux/errno.h> | ||
32 | #include <linux/module.h> | ||
33 | #include <linux/kernel.h> | ||
34 | #include <linux/major.h> | ||
35 | #include <linux/slab.h> | ||
36 | #include <linux/types.h> | ||
37 | #include <linux/pci.h> | ||
38 | #include <linux/delay.h> | ||
39 | #include <linux/vmalloc.h> | ||
40 | #include <linux/mm.h> | ||
41 | #include <linux/sched.h> | ||
42 | #include <linux/videodev.h> | ||
43 | #include <media/v4l2-common.h> | ||
44 | #include <linux/wait.h> | ||
45 | #include <asm/uaccess.h> | ||
46 | #include <asm/io.h> | ||
47 | #include <asm/prom.h> | ||
48 | #include <asm/dbdma.h> | ||
49 | #include <asm/pgtable.h> | ||
50 | #include <asm/page.h> | ||
51 | #include <asm/irq.h> | ||
52 | #include <linux/mutex.h> | ||
53 | |||
54 | #include "planb.h" | ||
55 | #include "saa7196.h" | ||
56 | |||
57 | /* Would you mind for some ugly debugging? */ | ||
58 | #if 0 | ||
59 | #define DEBUG(x...) printk(KERN_DEBUG ## x) /* Debug driver */ | ||
60 | #else | ||
61 | #define DEBUG(x...) /* Don't debug driver */ | ||
62 | #endif | ||
63 | |||
64 | #if 0 | ||
65 | #define IDEBUG(x...) printk(KERN_DEBUG ## x) /* Debug interrupt part */ | ||
66 | #else | ||
67 | #define IDEBUG(x...) /* Don't debug interrupt part */ | ||
68 | #endif | ||
69 | |||
70 | /* Ever seen a Mac with more than 1 of these? */ | ||
71 | #define PLANB_MAX 1 | ||
72 | |||
73 | static int planb_num; | ||
74 | static struct planb planbs[PLANB_MAX]; | ||
75 | static volatile struct planb_registers *planb_regs; | ||
76 | |||
77 | static int def_norm = PLANB_DEF_NORM; /* default norm */ | ||
78 | static int video_nr = -1; | ||
79 | |||
80 | module_param(def_norm, int, 0); | ||
81 | MODULE_PARM_DESC(def_norm, "Default startup norm (0=PAL, 1=NTSC, 2=SECAM)"); | ||
82 | module_param(video_nr, int, 0); | ||
83 | MODULE_LICENSE("GPL"); | ||
84 | |||
85 | |||
86 | /* ------------------ PlanB Exported Functions ------------------ */ | ||
87 | static long planb_write(struct video_device *, const char *, unsigned long, int); | ||
88 | static long planb_read(struct video_device *, char *, unsigned long, int); | ||
89 | static int planb_open(struct video_device *, int); | ||
90 | static void planb_close(struct video_device *); | ||
91 | static int planb_ioctl(struct video_device *, unsigned int, void *); | ||
92 | static int planb_init_done(struct video_device *); | ||
93 | static int planb_mmap(struct video_device *, const char *, unsigned long); | ||
94 | static void release_planb(void); | ||
95 | int init_planbs(struct video_init *); | ||
96 | |||
97 | /* ------------------ PlanB Internal Functions ------------------ */ | ||
98 | static int planb_prepare_open(struct planb *); | ||
99 | static void planb_prepare_close(struct planb *); | ||
100 | static void saa_write_reg(unsigned char, unsigned char); | ||
101 | static unsigned char saa_status(int, struct planb *); | ||
102 | static void saa_set(unsigned char, unsigned char, struct planb *); | ||
103 | static void saa_init_regs(struct planb *); | ||
104 | static int grabbuf_alloc(struct planb *); | ||
105 | static int vgrab(struct planb *, struct video_mmap *); | ||
106 | static void add_clip(struct planb *, struct video_clip *); | ||
107 | static void fill_cmd_buff(struct planb *); | ||
108 | static void cmd_buff(struct planb *); | ||
109 | static volatile struct dbdma_cmd *setup_grab_cmd(int, struct planb *); | ||
110 | static void overlay_start(struct planb *); | ||
111 | static void overlay_stop(struct planb *); | ||
112 | static inline void tab_cmd_dbdma(volatile struct dbdma_cmd *, unsigned short, | ||
113 | unsigned int); | ||
114 | static inline void tab_cmd_store(volatile struct dbdma_cmd *, unsigned int, | ||
115 | unsigned int); | ||
116 | static inline void tab_cmd_gen(volatile struct dbdma_cmd *, unsigned short, | ||
117 | unsigned short, unsigned int, unsigned int); | ||
118 | static int init_planb(struct planb *); | ||
119 | static int find_planb(void); | ||
120 | static void planb_pre_capture(int, int, struct planb *); | ||
121 | static volatile struct dbdma_cmd *cmd_geo_setup(volatile struct dbdma_cmd *, | ||
122 | int, int, int, int, int, struct planb *); | ||
123 | static inline void planb_dbdma_stop(volatile struct dbdma_regs *); | ||
124 | static unsigned int saa_geo_setup(int, int, int, int, struct planb *); | ||
125 | static inline int overlay_is_active(struct planb *); | ||
126 | |||
127 | /*******************************/ | ||
128 | /* Memory management functions */ | ||
129 | /*******************************/ | ||
130 | |||
131 | static int grabbuf_alloc(struct planb *pb) | ||
132 | { | ||
133 | int i, npage; | ||
134 | |||
135 | npage = MAX_GBUFFERS * ((PLANB_MAX_FBUF / PAGE_SIZE + 1) | ||
136 | #ifndef PLANB_GSCANLINE | ||
137 | + MAX_LNUM | ||
138 | #endif /* PLANB_GSCANLINE */ | ||
139 | ); | ||
140 | if ((pb->rawbuf = kmalloc(npage | ||
141 | * sizeof(unsigned long), GFP_KERNEL)) == 0) | ||
142 | return -ENOMEM; | ||
143 | for (i = 0; i < npage; i++) { | ||
144 | pb->rawbuf[i] = (unsigned char *)__get_free_pages(GFP_KERNEL | ||
145 | |GFP_DMA, 0); | ||
146 | if (!pb->rawbuf[i]) | ||
147 | break; | ||
148 | SetPageReserved(virt_to_page(pb->rawbuf[i])); | ||
149 | } | ||
150 | if (i-- < npage) { | ||
151 | printk(KERN_DEBUG "PlanB: init_grab: grab buffer not allocated\n"); | ||
152 | for (; i > 0; i--) { | ||
153 | ClearPageReserved(virt_to_page(pb->rawbuf[i])); | ||
154 | free_pages((unsigned long)pb->rawbuf[i], 0); | ||
155 | } | ||
156 | kfree(pb->rawbuf); | ||
157 | return -ENOBUFS; | ||
158 | } | ||
159 | pb->rawbuf_size = npage; | ||
160 | return 0; | ||
161 | } | ||
162 | |||
163 | /*****************************/ | ||
164 | /* Hardware access functions */ | ||
165 | /*****************************/ | ||
166 | |||
167 | static void saa_write_reg(unsigned char addr, unsigned char val) | ||
168 | { | ||
169 | planb_regs->saa_addr = addr; eieio(); | ||
170 | planb_regs->saa_regval = val; eieio(); | ||
171 | return; | ||
172 | } | ||
173 | |||
174 | /* return status byte 0 or 1: */ | ||
175 | static unsigned char saa_status(int byte, struct planb *pb) | ||
176 | { | ||
177 | saa_regs[pb->win.norm][SAA7196_STDC] = | ||
178 | (saa_regs[pb->win.norm][SAA7196_STDC] & ~2) | ((byte & 1) << 1); | ||
179 | saa_write_reg (SAA7196_STDC, saa_regs[pb->win.norm][SAA7196_STDC]); | ||
180 | |||
181 | /* Let's wait 30msec for this one */ | ||
182 | msleep_interruptible(30); | ||
183 | |||
184 | return (unsigned char)in_8 (&planb_regs->saa_status); | ||
185 | } | ||
186 | |||
187 | static void saa_set(unsigned char addr, unsigned char val, struct planb *pb) | ||
188 | { | ||
189 | if(saa_regs[pb->win.norm][addr] != val) { | ||
190 | saa_regs[pb->win.norm][addr] = val; | ||
191 | saa_write_reg (addr, val); | ||
192 | } | ||
193 | return; | ||
194 | } | ||
195 | |||
196 | static void saa_init_regs(struct planb *pb) | ||
197 | { | ||
198 | int i; | ||
199 | |||
200 | for (i = 0; i < SAA7196_NUMREGS; i++) | ||
201 | saa_write_reg (i, saa_regs[pb->win.norm][i]); | ||
202 | } | ||
203 | |||
204 | static unsigned int saa_geo_setup(int width, int height, int interlace, int bpp, | ||
205 | struct planb *pb) | ||
206 | { | ||
207 | int ht, norm = pb->win.norm; | ||
208 | |||
209 | switch(bpp) { | ||
210 | case 2: | ||
211 | /* RGB555+a 1x16-bit + 16-bit transparent */ | ||
212 | saa_regs[norm][SAA7196_FMTS] &= ~0x3; | ||
213 | break; | ||
214 | case 1: | ||
215 | case 4: | ||
216 | /* RGB888 1x24-bit + 8-bit transparent */ | ||
217 | saa_regs[norm][SAA7196_FMTS] &= ~0x1; | ||
218 | saa_regs[norm][SAA7196_FMTS] |= 0x2; | ||
219 | break; | ||
220 | default: | ||
221 | return -EINVAL; | ||
222 | } | ||
223 | ht = (interlace ? height / 2 : height); | ||
224 | saa_regs[norm][SAA7196_OUTPIX] = (unsigned char) (width & 0x00ff); | ||
225 | saa_regs[norm][SAA7196_HFILT] = (saa_regs[norm][SAA7196_HFILT] & ~0x3) | ||
226 | | (width >> 8 & 0x3); | ||
227 | saa_regs[norm][SAA7196_OUTLINE] = (unsigned char) (ht & 0xff); | ||
228 | saa_regs[norm][SAA7196_VYP] = (saa_regs[norm][SAA7196_VYP] & ~0x3) | ||
229 | | (ht >> 8 & 0x3); | ||
230 | /* feed both fields if interlaced, or else feed only even fields */ | ||
231 | saa_regs[norm][SAA7196_FMTS] = (interlace) ? | ||
232 | (saa_regs[norm][SAA7196_FMTS] & ~0x60) | ||
233 | : (saa_regs[norm][SAA7196_FMTS] | 0x60); | ||
234 | /* transparent mode; extended format enabled */ | ||
235 | saa_regs[norm][SAA7196_DPATH] |= 0x3; | ||
236 | |||
237 | return 0; | ||
238 | } | ||
239 | |||
240 | /***************************/ | ||
241 | /* DBDMA support functions */ | ||
242 | /***************************/ | ||
243 | |||
244 | static inline void planb_dbdma_restart(volatile struct dbdma_regs *ch) | ||
245 | { | ||
246 | out_le32(&ch->control, PLANB_CLR(RUN)); | ||
247 | out_le32(&ch->control, PLANB_SET(RUN|WAKE) | PLANB_CLR(PAUSE)); | ||
248 | } | ||
249 | |||
250 | static inline void planb_dbdma_stop(volatile struct dbdma_regs *ch) | ||
251 | { | ||
252 | int i = 0; | ||
253 | |||
254 | out_le32(&ch->control, PLANB_CLR(RUN) | PLANB_SET(FLUSH)); | ||
255 | while((in_le32(&ch->status) == (ACTIVE | FLUSH)) && (i < 999)) { | ||
256 | IDEBUG("PlanB: waiting for DMA to stop\n"); | ||
257 | i++; | ||
258 | } | ||
259 | } | ||
260 | |||
261 | static inline void tab_cmd_dbdma(volatile struct dbdma_cmd *ch, | ||
262 | unsigned short command, unsigned int cmd_dep) | ||
263 | { | ||
264 | st_le16(&ch->command, command); | ||
265 | st_le32(&ch->cmd_dep, cmd_dep); | ||
266 | } | ||
267 | |||
268 | static inline void tab_cmd_store(volatile struct dbdma_cmd *ch, | ||
269 | unsigned int phy_addr, unsigned int cmd_dep) | ||
270 | { | ||
271 | st_le16(&ch->command, STORE_WORD | KEY_SYSTEM); | ||
272 | st_le16(&ch->req_count, 4); | ||
273 | st_le32(&ch->phy_addr, phy_addr); | ||
274 | st_le32(&ch->cmd_dep, cmd_dep); | ||
275 | } | ||
276 | |||
277 | static inline void tab_cmd_gen(volatile struct dbdma_cmd *ch, | ||
278 | unsigned short command, unsigned short req_count, | ||
279 | unsigned int phy_addr, unsigned int cmd_dep) | ||
280 | { | ||
281 | st_le16(&ch->command, command); | ||
282 | st_le16(&ch->req_count, req_count); | ||
283 | st_le32(&ch->phy_addr, phy_addr); | ||
284 | st_le32(&ch->cmd_dep, cmd_dep); | ||
285 | } | ||
286 | |||
287 | static volatile struct dbdma_cmd *cmd_geo_setup( | ||
288 | volatile struct dbdma_cmd *c1, int width, int height, int interlace, | ||
289 | int bpp, int clip, struct planb *pb) | ||
290 | { | ||
291 | int norm = pb->win.norm; | ||
292 | |||
293 | if((saa_geo_setup(width, height, interlace, bpp, pb)) != 0) | ||
294 | return (volatile struct dbdma_cmd *)NULL; | ||
295 | tab_cmd_store(c1++, (unsigned)(&pb->planb_base_phys->saa_addr), | ||
296 | SAA7196_FMTS); | ||
297 | tab_cmd_store(c1++, (unsigned)(&pb->planb_base_phys->saa_regval), | ||
298 | saa_regs[norm][SAA7196_FMTS]); | ||
299 | tab_cmd_store(c1++, (unsigned)(&pb->planb_base_phys->saa_addr), | ||
300 | SAA7196_DPATH); | ||
301 | tab_cmd_store(c1++, (unsigned)(&pb->planb_base_phys->saa_regval), | ||
302 | saa_regs[norm][SAA7196_DPATH]); | ||
303 | tab_cmd_store(c1++, (unsigned)(&pb->planb_base_phys->even), | ||
304 | bpp | ((clip)? PLANB_CLIPMASK: 0)); | ||
305 | tab_cmd_store(c1++, (unsigned)(&pb->planb_base_phys->odd), | ||
306 | bpp | ((clip)? PLANB_CLIPMASK: 0)); | ||
307 | tab_cmd_store(c1++, (unsigned)(&pb->planb_base_phys->saa_addr), | ||
308 | SAA7196_OUTPIX); | ||
309 | tab_cmd_store(c1++, (unsigned)(&pb->planb_base_phys->saa_regval), | ||
310 | saa_regs[norm][SAA7196_OUTPIX]); | ||
311 | tab_cmd_store(c1++, (unsigned)(&pb->planb_base_phys->saa_addr), | ||
312 | SAA7196_HFILT); | ||
313 | tab_cmd_store(c1++, (unsigned)(&pb->planb_base_phys->saa_regval), | ||
314 | saa_regs[norm][SAA7196_HFILT]); | ||
315 | tab_cmd_store(c1++, (unsigned)(&pb->planb_base_phys->saa_addr), | ||
316 | SAA7196_OUTLINE); | ||
317 | tab_cmd_store(c1++, (unsigned)(&pb->planb_base_phys->saa_regval), | ||
318 | saa_regs[norm][SAA7196_OUTLINE]); | ||
319 | tab_cmd_store(c1++, (unsigned)(&pb->planb_base_phys->saa_addr), | ||
320 | SAA7196_VYP); | ||
321 | tab_cmd_store(c1++, (unsigned)(&pb->planb_base_phys->saa_regval), | ||
322 | saa_regs[norm][SAA7196_VYP]); | ||
323 | return c1; | ||
324 | } | ||
325 | |||
326 | /******************************/ | ||
327 | /* misc. supporting functions */ | ||
328 | /******************************/ | ||
329 | |||
330 | static inline void planb_lock(struct planb *pb) | ||
331 | { | ||
332 | mutex_lock(&pb->lock); | ||
333 | } | ||
334 | |||
335 | static inline void planb_unlock(struct planb *pb) | ||
336 | { | ||
337 | mutex_unlock(&pb->lock); | ||
338 | } | ||
339 | |||
340 | /***************/ | ||
341 | /* Driver Core */ | ||
342 | /***************/ | ||
343 | |||
344 | static int planb_prepare_open(struct planb *pb) | ||
345 | { | ||
346 | int i, size; | ||
347 | |||
348 | /* allocate memory for two plus alpha command buffers (size: max lines, | ||
349 | plus 40 commands handling, plus 1 alignment), plus dummy command buf, | ||
350 | plus clipmask buffer, plus frame grabbing status */ | ||
351 | size = (pb->tab_size*(2+MAX_GBUFFERS*TAB_FACTOR)+1+MAX_GBUFFERS | ||
352 | * PLANB_DUMMY)*sizeof(struct dbdma_cmd) | ||
353 | +(PLANB_MAXLINES*((PLANB_MAXPIXELS+7)& ~7))/8 | ||
354 | +MAX_GBUFFERS*sizeof(unsigned int); | ||
355 | if ((pb->priv_space = kzalloc (size, GFP_KERNEL)) == 0) | ||
356 | return -ENOMEM; | ||
357 | pb->overlay_last1 = pb->ch1_cmd = (volatile struct dbdma_cmd *) | ||
358 | DBDMA_ALIGN (pb->priv_space); | ||
359 | pb->overlay_last2 = pb->ch2_cmd = pb->ch1_cmd + pb->tab_size; | ||
360 | pb->ch1_cmd_phys = virt_to_bus(pb->ch1_cmd); | ||
361 | pb->cap_cmd[0] = pb->ch2_cmd + pb->tab_size; | ||
362 | pb->pre_cmd[0] = pb->cap_cmd[0] + pb->tab_size * TAB_FACTOR; | ||
363 | for (i = 1; i < MAX_GBUFFERS; i++) { | ||
364 | pb->cap_cmd[i] = pb->pre_cmd[i-1] + PLANB_DUMMY; | ||
365 | pb->pre_cmd[i] = pb->cap_cmd[i] + pb->tab_size * TAB_FACTOR; | ||
366 | } | ||
367 | pb->frame_stat=(volatile unsigned int *)(pb->pre_cmd[MAX_GBUFFERS-1] | ||
368 | + PLANB_DUMMY); | ||
369 | pb->mask = (unsigned char *)(pb->frame_stat+MAX_GBUFFERS); | ||
370 | |||
371 | pb->rawbuf = NULL; | ||
372 | pb->rawbuf_size = 0; | ||
373 | pb->grabbing = 0; | ||
374 | for (i = 0; i < MAX_GBUFFERS; i++) { | ||
375 | pb->frame_stat[i] = GBUFFER_UNUSED; | ||
376 | pb->gwidth[i] = 0; | ||
377 | pb->gheight[i] = 0; | ||
378 | pb->gfmt[i] = 0; | ||
379 | pb->gnorm_switch[i] = 0; | ||
380 | #ifndef PLANB_GSCANLINE | ||
381 | pb->lsize[i] = 0; | ||
382 | pb->lnum[i] = 0; | ||
383 | #endif /* PLANB_GSCANLINE */ | ||
384 | } | ||
385 | pb->gcount = 0; | ||
386 | pb->suspend = 0; | ||
387 | pb->last_fr = -999; | ||
388 | pb->prev_last_fr = -999; | ||
389 | |||
390 | /* Reset DMA controllers */ | ||
391 | planb_dbdma_stop(&pb->planb_base->ch2); | ||
392 | planb_dbdma_stop(&pb->planb_base->ch1); | ||
393 | |||
394 | return 0; | ||
395 | } | ||
396 | |||
397 | static void planb_prepare_close(struct planb *pb) | ||
398 | { | ||
399 | int i; | ||
400 | |||
401 | /* make sure the dma's are idle */ | ||
402 | planb_dbdma_stop(&pb->planb_base->ch2); | ||
403 | planb_dbdma_stop(&pb->planb_base->ch1); | ||
404 | /* free kernel memory of command buffers */ | ||
405 | if(pb->priv_space != 0) { | ||
406 | kfree (pb->priv_space); | ||
407 | pb->priv_space = 0; | ||
408 | pb->cmd_buff_inited = 0; | ||
409 | } | ||
410 | if(pb->rawbuf) { | ||
411 | for (i = 0; i < pb->rawbuf_size; i++) { | ||
412 | ClearPageReserved(virt_to_page(pb->rawbuf[i])); | ||
413 | free_pages((unsigned long)pb->rawbuf[i], 0); | ||
414 | } | ||
415 | kfree(pb->rawbuf); | ||
416 | } | ||
417 | pb->rawbuf = NULL; | ||
418 | } | ||
419 | |||
420 | /*****************************/ | ||
421 | /* overlay support functions */ | ||
422 | /*****************************/ | ||
423 | |||
424 | static inline int overlay_is_active(struct planb *pb) | ||
425 | { | ||
426 | unsigned int size = pb->tab_size * sizeof(struct dbdma_cmd); | ||
427 | unsigned int caddr = (unsigned)in_le32(&pb->planb_base->ch1.cmdptr); | ||
428 | |||
429 | return (in_le32(&pb->overlay_last1->cmd_dep) == pb->ch1_cmd_phys) | ||
430 | && (caddr < (pb->ch1_cmd_phys + size)) | ||
431 | && (caddr >= (unsigned)pb->ch1_cmd_phys); | ||
432 | } | ||
433 | |||
434 | static void overlay_start(struct planb *pb) | ||
435 | { | ||
436 | |||
437 | DEBUG("PlanB: overlay_start()\n"); | ||
438 | |||
439 | if(ACTIVE & in_le32(&pb->planb_base->ch1.status)) { | ||
440 | |||
441 | DEBUG("PlanB: presumably, grabbing is in progress...\n"); | ||
442 | |||
443 | planb_dbdma_stop(&pb->planb_base->ch2); | ||
444 | out_le32 (&pb->planb_base->ch2.cmdptr, | ||
445 | virt_to_bus(pb->ch2_cmd)); | ||
446 | planb_dbdma_restart(&pb->planb_base->ch2); | ||
447 | st_le16 (&pb->ch1_cmd->command, DBDMA_NOP); | ||
448 | tab_cmd_dbdma(pb->last_cmd[pb->last_fr], | ||
449 | DBDMA_NOP | BR_ALWAYS, | ||
450 | virt_to_bus(pb->ch1_cmd)); | ||
451 | eieio(); | ||
452 | pb->prev_last_fr = pb->last_fr; | ||
453 | pb->last_fr = -2; | ||
454 | if(!(ACTIVE & in_le32(&pb->planb_base->ch1.status))) { | ||
455 | IDEBUG("PlanB: became inactive " | ||
456 | "in the mean time... reactivating\n"); | ||
457 | planb_dbdma_stop(&pb->planb_base->ch1); | ||
458 | out_le32 (&pb->planb_base->ch1.cmdptr, | ||
459 | virt_to_bus(pb->ch1_cmd)); | ||
460 | planb_dbdma_restart(&pb->planb_base->ch1); | ||
461 | } | ||
462 | } else { | ||
463 | |||
464 | DEBUG("PlanB: currently idle, so can do whatever\n"); | ||
465 | |||
466 | planb_dbdma_stop(&pb->planb_base->ch2); | ||
467 | planb_dbdma_stop(&pb->planb_base->ch1); | ||
468 | st_le32 (&pb->planb_base->ch2.cmdptr, | ||
469 | virt_to_bus(pb->ch2_cmd)); | ||
470 | st_le32 (&pb->planb_base->ch1.cmdptr, | ||
471 | virt_to_bus(pb->ch1_cmd)); | ||
472 | out_le16 (&pb->ch1_cmd->command, DBDMA_NOP); | ||
473 | planb_dbdma_restart(&pb->planb_base->ch2); | ||
474 | planb_dbdma_restart(&pb->planb_base->ch1); | ||
475 | pb->last_fr = -1; | ||
476 | } | ||
477 | return; | ||
478 | } | ||
479 | |||
480 | static void overlay_stop(struct planb *pb) | ||
481 | { | ||
482 | DEBUG("PlanB: overlay_stop()\n"); | ||
483 | |||
484 | if(pb->last_fr == -1) { | ||
485 | |||
486 | DEBUG("PlanB: no grabbing, it seems...\n"); | ||
487 | |||
488 | planb_dbdma_stop(&pb->planb_base->ch2); | ||
489 | planb_dbdma_stop(&pb->planb_base->ch1); | ||
490 | pb->last_fr = -999; | ||
491 | } else if(pb->last_fr == -2) { | ||
492 | unsigned int cmd_dep; | ||
493 | tab_cmd_dbdma(pb->cap_cmd[pb->prev_last_fr], DBDMA_STOP, 0); | ||
494 | eieio(); | ||
495 | cmd_dep = (unsigned int)in_le32(&pb->overlay_last1->cmd_dep); | ||
496 | if(overlay_is_active(pb)) { | ||
497 | |||
498 | DEBUG("PlanB: overlay is currently active\n"); | ||
499 | |||
500 | planb_dbdma_stop(&pb->planb_base->ch2); | ||
501 | planb_dbdma_stop(&pb->planb_base->ch1); | ||
502 | if(cmd_dep != pb->ch1_cmd_phys) { | ||
503 | out_le32(&pb->planb_base->ch1.cmdptr, | ||
504 | virt_to_bus(pb->overlay_last1)); | ||
505 | planb_dbdma_restart(&pb->planb_base->ch1); | ||
506 | } | ||
507 | } | ||
508 | pb->last_fr = pb->prev_last_fr; | ||
509 | pb->prev_last_fr = -999; | ||
510 | } | ||
511 | return; | ||
512 | } | ||
513 | |||
514 | static void suspend_overlay(struct planb *pb) | ||
515 | { | ||
516 | int fr = -1; | ||
517 | struct dbdma_cmd last; | ||
518 | |||
519 | DEBUG("PlanB: suspend_overlay: %d\n", pb->suspend); | ||
520 | |||
521 | if(pb->suspend++) | ||
522 | return; | ||
523 | if(ACTIVE & in_le32(&pb->planb_base->ch1.status)) { | ||
524 | if(pb->last_fr == -2) { | ||
525 | fr = pb->prev_last_fr; | ||
526 | memcpy(&last, (void*)pb->last_cmd[fr], sizeof(last)); | ||
527 | tab_cmd_dbdma(pb->last_cmd[fr], DBDMA_STOP, 0); | ||
528 | } | ||
529 | if(overlay_is_active(pb)) { | ||
530 | planb_dbdma_stop(&pb->planb_base->ch2); | ||
531 | planb_dbdma_stop(&pb->planb_base->ch1); | ||
532 | pb->suspended.overlay = 1; | ||
533 | pb->suspended.frame = fr; | ||
534 | memcpy(&pb->suspended.cmd, &last, sizeof(last)); | ||
535 | return; | ||
536 | } | ||
537 | } | ||
538 | pb->suspended.overlay = 0; | ||
539 | pb->suspended.frame = fr; | ||
540 | memcpy(&pb->suspended.cmd, &last, sizeof(last)); | ||
541 | return; | ||
542 | } | ||
543 | |||
544 | static void resume_overlay(struct planb *pb) | ||
545 | { | ||
546 | |||
547 | DEBUG("PlanB: resume_overlay: %d\n", pb->suspend); | ||
548 | |||
549 | if(pb->suspend > 1) | ||
550 | return; | ||
551 | if(pb->suspended.frame != -1) { | ||
552 | memcpy((void*)pb->last_cmd[pb->suspended.frame], | ||
553 | &pb->suspended.cmd, sizeof(pb->suspended.cmd)); | ||
554 | } | ||
555 | if(ACTIVE & in_le32(&pb->planb_base->ch1.status)) { | ||
556 | goto finish; | ||
557 | } | ||
558 | if(pb->suspended.overlay) { | ||
559 | |||
560 | DEBUG("PlanB: overlay being resumed\n"); | ||
561 | |||
562 | st_le16 (&pb->ch1_cmd->command, DBDMA_NOP); | ||
563 | st_le16 (&pb->ch2_cmd->command, DBDMA_NOP); | ||
564 | /* Set command buffer addresses */ | ||
565 | st_le32(&pb->planb_base->ch1.cmdptr, | ||
566 | virt_to_bus(pb->overlay_last1)); | ||
567 | out_le32(&pb->planb_base->ch2.cmdptr, | ||
568 | virt_to_bus(pb->overlay_last2)); | ||
569 | /* Start the DMA controller */ | ||
570 | out_le32 (&pb->planb_base->ch2.control, | ||
571 | PLANB_CLR(PAUSE) | PLANB_SET(RUN|WAKE)); | ||
572 | out_le32 (&pb->planb_base->ch1.control, | ||
573 | PLANB_CLR(PAUSE) | PLANB_SET(RUN|WAKE)); | ||
574 | } else if(pb->suspended.frame != -1) { | ||
575 | out_le32(&pb->planb_base->ch1.cmdptr, | ||
576 | virt_to_bus(pb->last_cmd[pb->suspended.frame])); | ||
577 | out_le32 (&pb->planb_base->ch1.control, | ||
578 | PLANB_CLR(PAUSE) | PLANB_SET(RUN|WAKE)); | ||
579 | } | ||
580 | |||
581 | finish: | ||
582 | pb->suspend--; | ||
583 | wake_up_interruptible(&pb->suspendq); | ||
584 | } | ||
585 | |||
586 | static void add_clip(struct planb *pb, struct video_clip *clip) | ||
587 | { | ||
588 | volatile unsigned char *base; | ||
589 | int xc = clip->x, yc = clip->y; | ||
590 | int wc = clip->width, hc = clip->height; | ||
591 | int ww = pb->win.width, hw = pb->win.height; | ||
592 | int x, y, xtmp1, xtmp2; | ||
593 | |||
594 | DEBUG("PlanB: clip %dx%d+%d+%d\n", wc, hc, xc, yc); | ||
595 | |||
596 | if(xc < 0) { | ||
597 | wc += xc; | ||
598 | xc = 0; | ||
599 | } | ||
600 | if(yc < 0) { | ||
601 | hc += yc; | ||
602 | yc = 0; | ||
603 | } | ||
604 | if(xc + wc > ww) | ||
605 | wc = ww - xc; | ||
606 | if(wc <= 0) /* Nothing to do */ | ||
607 | return; | ||
608 | if(yc + hc > hw) | ||
609 | hc = hw - yc; | ||
610 | |||
611 | for (y = yc; y < yc+hc; y++) { | ||
612 | xtmp1=xc>>3; | ||
613 | xtmp2=(xc+wc)>>3; | ||
614 | base = pb->mask + y*96; | ||
615 | if(xc != 0 || wc >= 8) | ||
616 | *(base + xtmp1) &= (unsigned char)(0x00ff & | ||
617 | (0xff00 >> (xc&7))); | ||
618 | for (x = xtmp1 + 1; x < xtmp2; x++) { | ||
619 | *(base + x) = 0; | ||
620 | } | ||
621 | if(xc < (ww & ~0x7)) | ||
622 | *(base + xtmp2) &= (unsigned char)(0x00ff >> | ||
623 | ((xc+wc) & 7)); | ||
624 | } | ||
625 | |||
626 | return; | ||
627 | } | ||
628 | |||
629 | static void fill_cmd_buff(struct planb *pb) | ||
630 | { | ||
631 | int restore = 0; | ||
632 | volatile struct dbdma_cmd last; | ||
633 | |||
634 | DEBUG("PlanB: fill_cmd_buff()\n"); | ||
635 | |||
636 | if(pb->overlay_last1 != pb->ch1_cmd) { | ||
637 | restore = 1; | ||
638 | last = *(pb->overlay_last1); | ||
639 | } | ||
640 | memset ((void *) pb->ch1_cmd, 0, 2 * pb->tab_size | ||
641 | * sizeof(struct dbdma_cmd)); | ||
642 | cmd_buff (pb); | ||
643 | if(restore) | ||
644 | *(pb->overlay_last1) = last; | ||
645 | if(pb->suspended.overlay) { | ||
646 | unsigned long jump_addr = in_le32(&pb->overlay_last1->cmd_dep); | ||
647 | if(jump_addr != pb->ch1_cmd_phys) { | ||
648 | int i; | ||
649 | |||
650 | DEBUG("PlanB: adjusting ch1's jump address\n"); | ||
651 | |||
652 | for(i = 0; i < MAX_GBUFFERS; i++) { | ||
653 | if(pb->need_pre_capture[i]) { | ||
654 | if(jump_addr == virt_to_bus(pb->pre_cmd[i])) | ||
655 | goto found; | ||
656 | } else { | ||
657 | if(jump_addr == virt_to_bus(pb->cap_cmd[i])) | ||
658 | goto found; | ||
659 | } | ||
660 | } | ||
661 | |||
662 | DEBUG("PlanB: not found...\n"); | ||
663 | |||
664 | goto out; | ||
665 | found: | ||
666 | if(pb->need_pre_capture[i]) | ||
667 | out_le32(&pb->pre_cmd[i]->phy_addr, | ||
668 | virt_to_bus(pb->overlay_last1)); | ||
669 | else | ||
670 | out_le32(&pb->cap_cmd[i]->phy_addr, | ||
671 | virt_to_bus(pb->overlay_last1)); | ||
672 | } | ||
673 | } | ||
674 | out: | ||
675 | pb->cmd_buff_inited = 1; | ||
676 | |||
677 | return; | ||
678 | } | ||
679 | |||
680 | static void cmd_buff(struct planb *pb) | ||
681 | { | ||
682 | int i, bpp, count, nlines, stepsize, interlace; | ||
683 | unsigned long base, jump, addr_com, addr_dep; | ||
684 | volatile struct dbdma_cmd *c1 = pb->ch1_cmd; | ||
685 | volatile struct dbdma_cmd *c2 = pb->ch2_cmd; | ||
686 | |||
687 | interlace = pb->win.interlace; | ||
688 | bpp = pb->win.bpp; | ||
689 | count = (bpp * ((pb->win.x + pb->win.width > pb->win.swidth) ? | ||
690 | (pb->win.swidth - pb->win.x) : pb->win.width)); | ||
691 | nlines = ((pb->win.y + pb->win.height > pb->win.sheight) ? | ||
692 | (pb->win.sheight - pb->win.y) : pb->win.height); | ||
693 | |||
694 | /* Do video in: */ | ||
695 | |||
696 | /* Preamble commands: */ | ||
697 | addr_com = virt_to_bus(c1); | ||
698 | addr_dep = virt_to_bus(&c1->cmd_dep); | ||
699 | tab_cmd_dbdma(c1++, DBDMA_NOP, 0); | ||
700 | jump = virt_to_bus(c1+16); /* 14 by cmd_geo_setup() and 2 for padding */ | ||
701 | if((c1 = cmd_geo_setup(c1, pb->win.width, pb->win.height, interlace, | ||
702 | bpp, 1, pb)) == NULL) { | ||
703 | printk(KERN_WARNING "PlanB: encountered serious problems\n"); | ||
704 | tab_cmd_dbdma(pb->ch1_cmd + 1, DBDMA_STOP, 0); | ||
705 | tab_cmd_dbdma(pb->ch2_cmd + 1, DBDMA_STOP, 0); | ||
706 | return; | ||
707 | } | ||
708 | tab_cmd_store(c1++, addr_com, (unsigned)(DBDMA_NOP | BR_ALWAYS) << 16); | ||
709 | tab_cmd_store(c1++, addr_dep, jump); | ||
710 | tab_cmd_store(c1++, (unsigned)(&pb->planb_base_phys->ch1.wait_sel), | ||
711 | PLANB_SET(FIELD_SYNC)); | ||
712 | /* (1) wait for field sync to be set */ | ||
713 | tab_cmd_dbdma(c1++, DBDMA_NOP | WAIT_IFCLR, 0); | ||
714 | tab_cmd_store(c1++, (unsigned)(&pb->planb_base_phys->ch1.br_sel), | ||
715 | PLANB_SET(ODD_FIELD)); | ||
716 | /* wait for field sync to be cleared */ | ||
717 | tab_cmd_dbdma(c1++, DBDMA_NOP | WAIT_IFSET, 0); | ||
718 | /* if not odd field, wait until field sync is set again */ | ||
719 | tab_cmd_dbdma(c1, DBDMA_NOP | BR_IFSET, virt_to_bus(c1-3)); c1++; | ||
720 | /* assert ch_sync to ch2 */ | ||
721 | tab_cmd_store(c1++, (unsigned)(&pb->planb_base_phys->ch2.control), | ||
722 | PLANB_SET(CH_SYNC)); | ||
723 | tab_cmd_store(c1++, (unsigned)(&pb->planb_base_phys->ch1.br_sel), | ||
724 | PLANB_SET(DMA_ABORT)); | ||
725 | |||
726 | base = (pb->frame_buffer_phys + pb->offset + pb->win.y * (pb->win.bpl | ||
727 | + pb->win.pad) + pb->win.x * bpp); | ||
728 | |||
729 | if (interlace) { | ||
730 | stepsize = 2; | ||
731 | jump = virt_to_bus(c1 + (nlines + 1) / 2); | ||
732 | } else { | ||
733 | stepsize = 1; | ||
734 | jump = virt_to_bus(c1 + nlines); | ||
735 | } | ||
736 | |||
737 | /* even field data: */ | ||
738 | for (i=0; i < nlines; i += stepsize, c1++) | ||
739 | tab_cmd_gen(c1, INPUT_MORE | KEY_STREAM0 | BR_IFSET, | ||
740 | count, base + i * (pb->win.bpl + pb->win.pad), jump); | ||
741 | |||
742 | /* For non-interlaced, we use even fields only */ | ||
743 | if (!interlace) | ||
744 | goto cmd_tab_data_end; | ||
745 | |||
746 | /* Resync to odd field */ | ||
747 | /* (2) wait for field sync to be set */ | ||
748 | tab_cmd_dbdma(c1++, DBDMA_NOP | WAIT_IFCLR, 0); | ||
749 | tab_cmd_store(c1++, (unsigned)(&pb->planb_base_phys->ch1.br_sel), | ||
750 | PLANB_SET(ODD_FIELD)); | ||
751 | /* wait for field sync to be cleared */ | ||
752 | tab_cmd_dbdma(c1++, DBDMA_NOP | WAIT_IFSET, 0); | ||
753 | /* if not odd field, wait until field sync is set again */ | ||
754 | tab_cmd_dbdma(c1, DBDMA_NOP | BR_IFCLR, virt_to_bus(c1-3)); c1++; | ||
755 | /* assert ch_sync to ch2 */ | ||
756 | tab_cmd_store(c1++, (unsigned)(&pb->planb_base_phys->ch2.control), | ||
757 | PLANB_SET(CH_SYNC)); | ||
758 | tab_cmd_store(c1++, (unsigned)(&pb->planb_base_phys->ch1.br_sel), | ||
759 | PLANB_SET(DMA_ABORT)); | ||
760 | |||
761 | /* odd field data: */ | ||
762 | jump = virt_to_bus(c1 + nlines / 2); | ||
763 | for (i=1; i < nlines; i += stepsize, c1++) | ||
764 | tab_cmd_gen(c1, INPUT_MORE | KEY_STREAM0 | BR_IFSET, count, | ||
765 | base + i * (pb->win.bpl + pb->win.pad), jump); | ||
766 | |||
767 | /* And jump back to the start */ | ||
768 | cmd_tab_data_end: | ||
769 | pb->overlay_last1 = c1; /* keep a pointer to the last command */ | ||
770 | tab_cmd_dbdma(c1, DBDMA_NOP | BR_ALWAYS, virt_to_bus(pb->ch1_cmd)); | ||
771 | |||
772 | /* Clipmask command buffer */ | ||
773 | |||
774 | /* Preamble commands: */ | ||
775 | tab_cmd_dbdma(c2++, DBDMA_NOP, 0); | ||
776 | tab_cmd_store(c2++, (unsigned)(&pb->planb_base_phys->ch2.wait_sel), | ||
777 | PLANB_SET(CH_SYNC)); | ||
778 | /* wait until ch1 asserts ch_sync */ | ||
779 | tab_cmd_dbdma(c2++, DBDMA_NOP | WAIT_IFCLR, 0); | ||
780 | /* clear ch_sync asserted by ch1 */ | ||
781 | tab_cmd_store(c2++, (unsigned)(&pb->planb_base_phys->ch2.control), | ||
782 | PLANB_CLR(CH_SYNC)); | ||
783 | tab_cmd_store(c2++, (unsigned)(&pb->planb_base_phys->ch2.wait_sel), | ||
784 | PLANB_SET(FIELD_SYNC)); | ||
785 | tab_cmd_store(c2++, (unsigned)(&pb->planb_base_phys->ch2.br_sel), | ||
786 | PLANB_SET(ODD_FIELD)); | ||
787 | |||
788 | /* jump to end of even field if appropriate */ | ||
789 | /* this points to (interlace)? pos. C: pos. B */ | ||
790 | jump = (interlace) ? virt_to_bus(c2 + (nlines + 1) / 2 + 2): | ||
791 | virt_to_bus(c2 + nlines + 2); | ||
792 | /* if odd field, skip over to odd field clipmasking */ | ||
793 | tab_cmd_dbdma(c2++, DBDMA_NOP | BR_IFSET, jump); | ||
794 | |||
795 | /* even field mask: */ | ||
796 | tab_cmd_store(c2++, (unsigned)(&pb->planb_base_phys->ch2.br_sel), | ||
797 | PLANB_SET(DMA_ABORT)); | ||
798 | /* this points to pos. B */ | ||
799 | jump = (interlace) ? virt_to_bus(c2 + nlines + 1): | ||
800 | virt_to_bus(c2 + nlines); | ||
801 | base = virt_to_bus(pb->mask); | ||
802 | for (i=0; i < nlines; i += stepsize, c2++) | ||
803 | tab_cmd_gen(c2, OUTPUT_MORE | KEY_STREAM0 | BR_IFSET, 96, | ||
804 | base + i * 96, jump); | ||
805 | |||
806 | /* For non-interlaced, we use only even fields */ | ||
807 | if(!interlace) | ||
808 | goto cmd_tab_mask_end; | ||
809 | |||
810 | /* odd field mask: */ | ||
811 | /* C */ tab_cmd_store(c2++, (unsigned)(&pb->planb_base_phys->ch2.br_sel), | ||
812 | PLANB_SET(DMA_ABORT)); | ||
813 | /* this points to pos. B */ | ||
814 | jump = virt_to_bus(c2 + nlines / 2); | ||
815 | base = virt_to_bus(pb->mask); | ||
816 | for (i=1; i < nlines; i += 2, c2++) /* abort if set */ | ||
817 | tab_cmd_gen(c2, OUTPUT_MORE | KEY_STREAM0 | BR_IFSET, 96, | ||
818 | base + i * 96, jump); | ||
819 | |||
820 | /* Inform channel 1 and jump back to start */ | ||
821 | cmd_tab_mask_end: | ||
822 | /* ok, I just realized this is kind of flawed. */ | ||
823 | /* this part is reached only after odd field clipmasking. */ | ||
824 | /* wanna clean up? */ | ||
825 | /* wait for field sync to be set */ | ||
826 | /* corresponds to fsync (1) of ch1 */ | ||
827 | /* B */ tab_cmd_dbdma(c2++, DBDMA_NOP | WAIT_IFCLR, 0); | ||
828 | /* restart ch1, meant to clear any dead bit or something */ | ||
829 | tab_cmd_store(c2++, (unsigned)(&pb->planb_base_phys->ch1.control), | ||
830 | PLANB_CLR(RUN)); | ||
831 | tab_cmd_store(c2++, (unsigned)(&pb->planb_base_phys->ch1.control), | ||
832 | PLANB_SET(RUN)); | ||
833 | pb->overlay_last2 = c2; /* keep a pointer to the last command */ | ||
834 | /* start over even field clipmasking */ | ||
835 | tab_cmd_dbdma(c2, DBDMA_NOP | BR_ALWAYS, virt_to_bus(pb->ch2_cmd)); | ||
836 | |||
837 | eieio(); | ||
838 | return; | ||
839 | } | ||
840 | |||
841 | /*********************************/ | ||
842 | /* grabdisplay support functions */ | ||
843 | /*********************************/ | ||
844 | |||
845 | static int palette2fmt[] = { | ||
846 | 0, | ||
847 | PLANB_GRAY, | ||
848 | 0, | ||
849 | 0, | ||
850 | 0, | ||
851 | PLANB_COLOUR32, | ||
852 | PLANB_COLOUR15, | ||
853 | 0, | ||
854 | 0, | ||
855 | 0, | ||
856 | 0, | ||
857 | 0, | ||
858 | 0, | ||
859 | 0, | ||
860 | 0, | ||
861 | }; | ||
862 | |||
863 | #define PLANB_PALETTE_MAX 15 | ||
864 | |||
865 | static int vgrab(struct planb *pb, struct video_mmap *mp) | ||
866 | { | ||
867 | unsigned int fr = mp->frame; | ||
868 | unsigned int format; | ||
869 | |||
870 | if(pb->rawbuf==NULL) { | ||
871 | int err; | ||
872 | if((err=grabbuf_alloc(pb))) | ||
873 | return err; | ||
874 | } | ||
875 | |||
876 | IDEBUG("PlanB: grab %d: %dx%d(%u)\n", pb->grabbing, | ||
877 | mp->width, mp->height, fr); | ||
878 | |||
879 | if(pb->grabbing >= MAX_GBUFFERS) | ||
880 | return -ENOBUFS; | ||
881 | if(fr > (MAX_GBUFFERS - 1) || fr < 0) | ||
882 | return -EINVAL; | ||
883 | if(mp->height <= 0 || mp->width <= 0) | ||
884 | return -EINVAL; | ||
885 | if(mp->format < 0 || mp->format >= PLANB_PALETTE_MAX) | ||
886 | return -EINVAL; | ||
887 | if((format = palette2fmt[mp->format]) == 0) | ||
888 | return -EINVAL; | ||
889 | if (mp->height * mp->width * format > PLANB_MAX_FBUF) /* format = bpp */ | ||
890 | return -EINVAL; | ||
891 | |||
892 | planb_lock(pb); | ||
893 | if(mp->width != pb->gwidth[fr] || mp->height != pb->gheight[fr] || | ||
894 | format != pb->gfmt[fr] || (pb->gnorm_switch[fr])) { | ||
895 | int i; | ||
896 | #ifndef PLANB_GSCANLINE | ||
897 | unsigned int osize = pb->gwidth[fr] * pb->gheight[fr] | ||
898 | * pb->gfmt[fr]; | ||
899 | unsigned int nsize = mp->width * mp->height * format; | ||
900 | #endif | ||
901 | |||
902 | IDEBUG("PlanB: gwidth = %d, gheight = %d, mp->format = %u\n", | ||
903 | mp->width, mp->height, mp->format); | ||
904 | |||
905 | #ifndef PLANB_GSCANLINE | ||
906 | if(pb->gnorm_switch[fr]) | ||
907 | nsize = 0; | ||
908 | if (nsize < osize) { | ||
909 | for(i = pb->gbuf_idx[fr]; osize > 0; i++) { | ||
910 | memset((void *)pb->rawbuf[i], 0, PAGE_SIZE); | ||
911 | osize -= PAGE_SIZE; | ||
912 | } | ||
913 | } | ||
914 | for(i = pb->l_fr_addr_idx[fr]; i < pb->l_fr_addr_idx[fr] | ||
915 | + pb->lnum[fr]; i++) | ||
916 | memset((void *)pb->rawbuf[i], 0, PAGE_SIZE); | ||
917 | #else | ||
918 | /* XXX TODO */ | ||
919 | /* | ||
920 | if(pb->gnorm_switch[fr]) | ||
921 | memset((void *)pb->gbuffer[fr], 0, | ||
922 | pb->gbytes_per_line * pb->gheight[fr]); | ||
923 | else { | ||
924 | if(mp-> | ||
925 | for(i = 0; i < pb->gheight[fr]; i++) { | ||
926 | memset((void *)(pb->gbuffer[fr] | ||
927 | + pb->gbytes_per_line * i | ||
928 | } | ||
929 | } | ||
930 | */ | ||
931 | #endif | ||
932 | pb->gwidth[fr] = mp->width; | ||
933 | pb->gheight[fr] = mp->height; | ||
934 | pb->gfmt[fr] = format; | ||
935 | pb->last_cmd[fr] = setup_grab_cmd(fr, pb); | ||
936 | planb_pre_capture(fr, pb->gfmt[fr], pb); /* gfmt = bpp */ | ||
937 | pb->need_pre_capture[fr] = 1; | ||
938 | pb->gnorm_switch[fr] = 0; | ||
939 | } else | ||
940 | pb->need_pre_capture[fr] = 0; | ||
941 | pb->frame_stat[fr] = GBUFFER_GRABBING; | ||
942 | if(!(ACTIVE & in_le32(&pb->planb_base->ch1.status))) { | ||
943 | |||
944 | IDEBUG("PlanB: ch1 inactive, initiating grabbing\n"); | ||
945 | |||
946 | planb_dbdma_stop(&pb->planb_base->ch1); | ||
947 | if(pb->need_pre_capture[fr]) { | ||
948 | |||
949 | IDEBUG("PlanB: padding pre-capture sequence\n"); | ||
950 | |||
951 | out_le32 (&pb->planb_base->ch1.cmdptr, | ||
952 | virt_to_bus(pb->pre_cmd[fr])); | ||
953 | } else { | ||
954 | tab_cmd_dbdma(pb->last_cmd[fr], DBDMA_STOP, 0); | ||
955 | tab_cmd_dbdma(pb->cap_cmd[fr], DBDMA_NOP, 0); | ||
956 | /* let's be on the safe side. here is not timing critical. */ | ||
957 | tab_cmd_dbdma((pb->cap_cmd[fr] + 1), DBDMA_NOP, 0); | ||
958 | out_le32 (&pb->planb_base->ch1.cmdptr, | ||
959 | virt_to_bus(pb->cap_cmd[fr])); | ||
960 | } | ||
961 | planb_dbdma_restart(&pb->planb_base->ch1); | ||
962 | pb->last_fr = fr; | ||
963 | } else { | ||
964 | int i; | ||
965 | |||
966 | IDEBUG("PlanB: ch1 active, grabbing being queued\n"); | ||
967 | |||
968 | if((pb->last_fr == -1) || ((pb->last_fr == -2) && | ||
969 | overlay_is_active(pb))) { | ||
970 | |||
971 | IDEBUG("PlanB: overlay is active, grabbing defered\n"); | ||
972 | |||
973 | tab_cmd_dbdma(pb->last_cmd[fr], | ||
974 | DBDMA_NOP | BR_ALWAYS, | ||
975 | virt_to_bus(pb->ch1_cmd)); | ||
976 | if(pb->need_pre_capture[fr]) { | ||
977 | |||
978 | IDEBUG("PlanB: padding pre-capture sequence\n"); | ||
979 | |||
980 | tab_cmd_store(pb->pre_cmd[fr], | ||
981 | virt_to_bus(&pb->overlay_last1->cmd_dep), | ||
982 | virt_to_bus(pb->ch1_cmd)); | ||
983 | eieio(); | ||
984 | out_le32 (&pb->overlay_last1->cmd_dep, | ||
985 | virt_to_bus(pb->pre_cmd[fr])); | ||
986 | } else { | ||
987 | tab_cmd_store(pb->cap_cmd[fr], | ||
988 | virt_to_bus(&pb->overlay_last1->cmd_dep), | ||
989 | virt_to_bus(pb->ch1_cmd)); | ||
990 | tab_cmd_dbdma((pb->cap_cmd[fr] + 1), | ||
991 | DBDMA_NOP, 0); | ||
992 | eieio(); | ||
993 | out_le32 (&pb->overlay_last1->cmd_dep, | ||
994 | virt_to_bus(pb->cap_cmd[fr])); | ||
995 | } | ||
996 | for(i = 0; overlay_is_active(pb) && i < 999; i++) | ||
997 | IDEBUG("PlanB: waiting for overlay done\n"); | ||
998 | tab_cmd_dbdma(pb->ch1_cmd, DBDMA_NOP, 0); | ||
999 | pb->prev_last_fr = fr; | ||
1000 | pb->last_fr = -2; | ||
1001 | } else if(pb->last_fr == -2) { | ||
1002 | |||
1003 | IDEBUG("PlanB: mixed mode detected, grabbing" | ||
1004 | " will be done before activating overlay\n"); | ||
1005 | |||
1006 | tab_cmd_dbdma(pb->ch1_cmd, DBDMA_NOP, 0); | ||
1007 | if(pb->need_pre_capture[fr]) { | ||
1008 | |||
1009 | IDEBUG("PlanB: padding pre-capture sequence\n"); | ||
1010 | |||
1011 | tab_cmd_dbdma(pb->last_cmd[pb->prev_last_fr], | ||
1012 | DBDMA_NOP | BR_ALWAYS, | ||
1013 | virt_to_bus(pb->pre_cmd[fr])); | ||
1014 | eieio(); | ||
1015 | } else { | ||
1016 | tab_cmd_dbdma(pb->cap_cmd[fr], DBDMA_NOP, 0); | ||
1017 | if(pb->gwidth[pb->prev_last_fr] != | ||
1018 | pb->gwidth[fr] | ||
1019 | || pb->gheight[pb->prev_last_fr] != | ||
1020 | pb->gheight[fr] | ||
1021 | || pb->gfmt[pb->prev_last_fr] != | ||
1022 | pb->gfmt[fr]) | ||
1023 | tab_cmd_dbdma((pb->cap_cmd[fr] + 1), | ||
1024 | DBDMA_NOP, 0); | ||
1025 | else | ||
1026 | tab_cmd_dbdma((pb->cap_cmd[fr] + 1), | ||
1027 | DBDMA_NOP | BR_ALWAYS, | ||
1028 | virt_to_bus(pb->cap_cmd[fr] + 16)); | ||
1029 | tab_cmd_dbdma(pb->last_cmd[pb->prev_last_fr], | ||
1030 | DBDMA_NOP | BR_ALWAYS, | ||
1031 | virt_to_bus(pb->cap_cmd[fr])); | ||
1032 | eieio(); | ||
1033 | } | ||
1034 | tab_cmd_dbdma(pb->last_cmd[fr], | ||
1035 | DBDMA_NOP | BR_ALWAYS, | ||
1036 | virt_to_bus(pb->ch1_cmd)); | ||
1037 | eieio(); | ||
1038 | pb->prev_last_fr = fr; | ||
1039 | pb->last_fr = -2; | ||
1040 | } else { | ||
1041 | |||
1042 | IDEBUG("PlanB: active grabbing session detected\n"); | ||
1043 | |||
1044 | if(pb->need_pre_capture[fr]) { | ||
1045 | |||
1046 | IDEBUG("PlanB: padding pre-capture sequence\n"); | ||
1047 | |||
1048 | tab_cmd_dbdma(pb->last_cmd[pb->last_fr], | ||
1049 | DBDMA_NOP | BR_ALWAYS, | ||
1050 | virt_to_bus(pb->pre_cmd[fr])); | ||
1051 | eieio(); | ||
1052 | } else { | ||
1053 | tab_cmd_dbdma(pb->last_cmd[fr], DBDMA_STOP, 0); | ||
1054 | tab_cmd_dbdma(pb->cap_cmd[fr], DBDMA_NOP, 0); | ||
1055 | if(pb->gwidth[pb->last_fr] != pb->gwidth[fr] | ||
1056 | || pb->gheight[pb->last_fr] != | ||
1057 | pb->gheight[fr] | ||
1058 | || pb->gfmt[pb->last_fr] != | ||
1059 | pb->gfmt[fr]) | ||
1060 | tab_cmd_dbdma((pb->cap_cmd[fr] + 1), | ||
1061 | DBDMA_NOP, 0); | ||
1062 | else | ||
1063 | tab_cmd_dbdma((pb->cap_cmd[fr] + 1), | ||
1064 | DBDMA_NOP | BR_ALWAYS, | ||
1065 | virt_to_bus(pb->cap_cmd[fr] + 16)); | ||
1066 | tab_cmd_dbdma(pb->last_cmd[pb->last_fr], | ||
1067 | DBDMA_NOP | BR_ALWAYS, | ||
1068 | virt_to_bus(pb->cap_cmd[fr])); | ||
1069 | eieio(); | ||
1070 | } | ||
1071 | pb->last_fr = fr; | ||
1072 | } | ||
1073 | if(!(ACTIVE & in_le32(&pb->planb_base->ch1.status))) { | ||
1074 | |||
1075 | IDEBUG("PlanB: became inactive in the mean time..." | ||
1076 | "reactivating\n"); | ||
1077 | |||
1078 | planb_dbdma_stop(&pb->planb_base->ch1); | ||
1079 | out_le32 (&pb->planb_base->ch1.cmdptr, | ||
1080 | virt_to_bus(pb->cap_cmd[fr])); | ||
1081 | planb_dbdma_restart(&pb->planb_base->ch1); | ||
1082 | } | ||
1083 | } | ||
1084 | pb->grabbing++; | ||
1085 | planb_unlock(pb); | ||
1086 | |||
1087 | return 0; | ||
1088 | } | ||
1089 | |||
1090 | static void planb_pre_capture(int fr, int bpp, struct planb *pb) | ||
1091 | { | ||
1092 | volatile struct dbdma_cmd *c1 = pb->pre_cmd[fr]; | ||
1093 | int interlace = (pb->gheight[fr] > pb->maxlines/2)? 1: 0; | ||
1094 | |||
1095 | tab_cmd_dbdma(c1++, DBDMA_NOP, 0); | ||
1096 | if((c1 = cmd_geo_setup(c1, pb->gwidth[fr], pb->gheight[fr], interlace, | ||
1097 | bpp, 0, pb)) == NULL) { | ||
1098 | printk(KERN_WARNING "PlanB: encountered some problems\n"); | ||
1099 | tab_cmd_dbdma(pb->pre_cmd[fr] + 1, DBDMA_STOP, 0); | ||
1100 | return; | ||
1101 | } | ||
1102 | /* Sync to even field */ | ||
1103 | tab_cmd_store(c1++, (unsigned)(&pb->planb_base_phys->ch1.wait_sel), | ||
1104 | PLANB_SET(FIELD_SYNC)); | ||
1105 | tab_cmd_dbdma(c1++, DBDMA_NOP | WAIT_IFCLR, 0); | ||
1106 | tab_cmd_store(c1++, (unsigned)(&pb->planb_base_phys->ch1.br_sel), | ||
1107 | PLANB_SET(ODD_FIELD)); | ||
1108 | tab_cmd_dbdma(c1++, DBDMA_NOP | WAIT_IFSET, 0); | ||
1109 | tab_cmd_dbdma(c1, DBDMA_NOP | BR_IFSET, virt_to_bus(c1-3)); c1++; | ||
1110 | tab_cmd_dbdma(c1++, DBDMA_NOP | INTR_ALWAYS, 0); | ||
1111 | tab_cmd_store(c1++, (unsigned)(&pb->planb_base_phys->ch1.br_sel), | ||
1112 | PLANB_SET(DMA_ABORT)); | ||
1113 | /* For non-interlaced, we use even fields only */ | ||
1114 | if (pb->gheight[fr] <= pb->maxlines/2) | ||
1115 | goto cmd_tab_data_end; | ||
1116 | /* Sync to odd field */ | ||
1117 | tab_cmd_dbdma(c1++, DBDMA_NOP | WAIT_IFCLR, 0); | ||
1118 | tab_cmd_store(c1++, (unsigned)(&pb->planb_base_phys->ch1.br_sel), | ||
1119 | PLANB_SET(ODD_FIELD)); | ||
1120 | tab_cmd_dbdma(c1++, DBDMA_NOP | WAIT_IFSET, 0); | ||
1121 | tab_cmd_dbdma(c1, DBDMA_NOP | BR_IFCLR, virt_to_bus(c1-3)); c1++; | ||
1122 | tab_cmd_store(c1++, (unsigned)(&pb->planb_base_phys->ch1.br_sel), | ||
1123 | PLANB_SET(DMA_ABORT)); | ||
1124 | cmd_tab_data_end: | ||
1125 | tab_cmd_dbdma(c1, DBDMA_NOP | BR_ALWAYS, virt_to_bus(pb->cap_cmd[fr])); | ||
1126 | |||
1127 | eieio(); | ||
1128 | } | ||
1129 | |||
1130 | static volatile struct dbdma_cmd *setup_grab_cmd(int fr, struct planb *pb) | ||
1131 | { | ||
1132 | int i, bpp, count, nlines, stepsize, interlace; | ||
1133 | #ifdef PLANB_GSCANLINE | ||
1134 | int scanline; | ||
1135 | #else | ||
1136 | int nlpp, leftover1; | ||
1137 | unsigned long base; | ||
1138 | #endif | ||
1139 | unsigned long jump; | ||
1140 | int pagei; | ||
1141 | volatile struct dbdma_cmd *c1; | ||
1142 | volatile struct dbdma_cmd *jump_addr; | ||
1143 | |||
1144 | c1 = pb->cap_cmd[fr]; | ||
1145 | interlace = (pb->gheight[fr] > pb->maxlines/2)? 1: 0; | ||
1146 | bpp = pb->gfmt[fr]; /* gfmt = bpp */ | ||
1147 | count = bpp * pb->gwidth[fr]; | ||
1148 | nlines = pb->gheight[fr]; | ||
1149 | #ifdef PLANB_GSCANLINE | ||
1150 | scanline = pb->gbytes_per_line; | ||
1151 | #else | ||
1152 | pb->lsize[fr] = count; | ||
1153 | pb->lnum[fr] = 0; | ||
1154 | #endif | ||
1155 | |||
1156 | /* Do video in: */ | ||
1157 | |||
1158 | /* Preamble commands: */ | ||
1159 | tab_cmd_dbdma(c1++, DBDMA_NOP, 0); | ||
1160 | tab_cmd_dbdma(c1, DBDMA_NOP | BR_ALWAYS, virt_to_bus(c1 + 16)); c1++; | ||
1161 | if((c1 = cmd_geo_setup(c1, pb->gwidth[fr], pb->gheight[fr], interlace, | ||
1162 | bpp, 0, pb)) == NULL) { | ||
1163 | printk(KERN_WARNING "PlanB: encountered serious problems\n"); | ||
1164 | tab_cmd_dbdma(pb->cap_cmd[fr] + 1, DBDMA_STOP, 0); | ||
1165 | return (pb->cap_cmd[fr] + 2); | ||
1166 | } | ||
1167 | tab_cmd_store(c1++, (unsigned)(&pb->planb_base_phys->ch1.wait_sel), | ||
1168 | PLANB_SET(FIELD_SYNC)); | ||
1169 | tab_cmd_dbdma(c1++, DBDMA_NOP | WAIT_IFCLR, 0); | ||
1170 | tab_cmd_store(c1++, (unsigned)(&pb->planb_base_phys->ch1.br_sel), | ||
1171 | PLANB_SET(ODD_FIELD)); | ||
1172 | tab_cmd_dbdma(c1++, DBDMA_NOP | WAIT_IFSET, 0); | ||
1173 | tab_cmd_dbdma(c1, DBDMA_NOP | BR_IFSET, virt_to_bus(c1-3)); c1++; | ||
1174 | tab_cmd_dbdma(c1++, DBDMA_NOP | INTR_ALWAYS, 0); | ||
1175 | tab_cmd_store(c1++, (unsigned)(&pb->planb_base_phys->ch1.br_sel), | ||
1176 | PLANB_SET(DMA_ABORT)); | ||
1177 | |||
1178 | if (interlace) { | ||
1179 | stepsize = 2; | ||
1180 | jump_addr = c1 + TAB_FACTOR * (nlines + 1) / 2; | ||
1181 | } else { | ||
1182 | stepsize = 1; | ||
1183 | jump_addr = c1 + TAB_FACTOR * nlines; | ||
1184 | } | ||
1185 | jump = virt_to_bus(jump_addr); | ||
1186 | |||
1187 | /* even field data: */ | ||
1188 | |||
1189 | pagei = pb->gbuf_idx[fr]; | ||
1190 | #ifdef PLANB_GSCANLINE | ||
1191 | for (i = 0; i < nlines; i += stepsize) { | ||
1192 | tab_cmd_gen(c1++, INPUT_MORE | BR_IFSET, count, | ||
1193 | virt_to_bus(pb->rawbuf[pagei | ||
1194 | + i * scanline / PAGE_SIZE]), jump); | ||
1195 | } | ||
1196 | #else | ||
1197 | i = 0; | ||
1198 | leftover1 = 0; | ||
1199 | do { | ||
1200 | int j; | ||
1201 | |||
1202 | base = virt_to_bus(pb->rawbuf[pagei]); | ||
1203 | nlpp = (PAGE_SIZE - leftover1) / count / stepsize; | ||
1204 | for(j = 0; j < nlpp && i < nlines; j++, i += stepsize, c1++) | ||
1205 | tab_cmd_gen(c1, INPUT_MORE | KEY_STREAM0 | BR_IFSET, | ||
1206 | count, base + count * j * stepsize + leftover1, jump); | ||
1207 | if(i < nlines) { | ||
1208 | int lov0 = PAGE_SIZE - count * nlpp * stepsize - leftover1; | ||
1209 | |||
1210 | if(lov0 == 0) | ||
1211 | leftover1 = 0; | ||
1212 | else { | ||
1213 | if(lov0 >= count) { | ||
1214 | tab_cmd_gen(c1++, INPUT_MORE | BR_IFSET, count, base | ||
1215 | + count * nlpp * stepsize + leftover1, jump); | ||
1216 | } else { | ||
1217 | pb->l_to_addr[fr][pb->lnum[fr]] = pb->rawbuf[pagei] | ||
1218 | + count * nlpp * stepsize + leftover1; | ||
1219 | pb->l_to_next_idx[fr][pb->lnum[fr]] = pagei + 1; | ||
1220 | pb->l_to_next_size[fr][pb->lnum[fr]] = count - lov0; | ||
1221 | tab_cmd_gen(c1++, INPUT_MORE | BR_IFSET, count, | ||
1222 | virt_to_bus(pb->rawbuf[pb->l_fr_addr_idx[fr] | ||
1223 | + pb->lnum[fr]]), jump); | ||
1224 | if(++pb->lnum[fr] > MAX_LNUM) | ||
1225 | pb->lnum[fr]--; | ||
1226 | } | ||
1227 | leftover1 = count * stepsize - lov0; | ||
1228 | i += stepsize; | ||
1229 | } | ||
1230 | } | ||
1231 | pagei++; | ||
1232 | } while(i < nlines); | ||
1233 | tab_cmd_dbdma(c1, DBDMA_NOP | BR_ALWAYS, jump); | ||
1234 | c1 = jump_addr; | ||
1235 | #endif /* PLANB_GSCANLINE */ | ||
1236 | |||
1237 | /* For non-interlaced, we use even fields only */ | ||
1238 | if (!interlace) | ||
1239 | goto cmd_tab_data_end; | ||
1240 | |||
1241 | /* Sync to odd field */ | ||
1242 | tab_cmd_dbdma(c1++, DBDMA_NOP | WAIT_IFCLR, 0); | ||
1243 | tab_cmd_store(c1++, (unsigned)(&pb->planb_base_phys->ch1.br_sel), | ||
1244 | PLANB_SET(ODD_FIELD)); | ||
1245 | tab_cmd_dbdma(c1++, DBDMA_NOP | WAIT_IFSET, 0); | ||
1246 | tab_cmd_dbdma(c1, DBDMA_NOP | BR_IFCLR, virt_to_bus(c1-3)); c1++; | ||
1247 | tab_cmd_store(c1++, (unsigned)(&pb->planb_base_phys->ch1.br_sel), | ||
1248 | PLANB_SET(DMA_ABORT)); | ||
1249 | |||
1250 | /* odd field data: */ | ||
1251 | jump_addr = c1 + TAB_FACTOR * nlines / 2; | ||
1252 | jump = virt_to_bus(jump_addr); | ||
1253 | #ifdef PLANB_GSCANLINE | ||
1254 | for (i = 1; i < nlines; i += stepsize) { | ||
1255 | tab_cmd_gen(c1++, INPUT_MORE | BR_IFSET, count, | ||
1256 | virt_to_bus(pb->rawbuf[pagei | ||
1257 | + i * scanline / PAGE_SIZE]), jump); | ||
1258 | } | ||
1259 | #else | ||
1260 | i = 1; | ||
1261 | leftover1 = 0; | ||
1262 | pagei = pb->gbuf_idx[fr]; | ||
1263 | if(nlines <= 1) | ||
1264 | goto skip; | ||
1265 | do { | ||
1266 | int j; | ||
1267 | |||
1268 | base = virt_to_bus(pb->rawbuf[pagei]); | ||
1269 | nlpp = (PAGE_SIZE - leftover1) / count / stepsize; | ||
1270 | if(leftover1 >= count) { | ||
1271 | tab_cmd_gen(c1++, INPUT_MORE | KEY_STREAM0 | BR_IFSET, count, | ||
1272 | base + leftover1 - count, jump); | ||
1273 | i += stepsize; | ||
1274 | } | ||
1275 | for(j = 0; j < nlpp && i < nlines; j++, i += stepsize, c1++) | ||
1276 | tab_cmd_gen(c1, INPUT_MORE | KEY_STREAM0 | BR_IFSET, count, | ||
1277 | base + count * (j * stepsize + 1) + leftover1, jump); | ||
1278 | if(i < nlines) { | ||
1279 | int lov0 = PAGE_SIZE - count * nlpp * stepsize - leftover1; | ||
1280 | |||
1281 | if(lov0 == 0) | ||
1282 | leftover1 = 0; | ||
1283 | else { | ||
1284 | if(lov0 > count) { | ||
1285 | pb->l_to_addr[fr][pb->lnum[fr]] = pb->rawbuf[pagei] | ||
1286 | + count * (nlpp * stepsize + 1) + leftover1; | ||
1287 | pb->l_to_next_idx[fr][pb->lnum[fr]] = pagei + 1; | ||
1288 | pb->l_to_next_size[fr][pb->lnum[fr]] = count * stepsize | ||
1289 | - lov0; | ||
1290 | tab_cmd_gen(c1++, INPUT_MORE | BR_IFSET, count, | ||
1291 | virt_to_bus(pb->rawbuf[pb->l_fr_addr_idx[fr] | ||
1292 | + pb->lnum[fr]]), jump); | ||
1293 | if(++pb->lnum[fr] > MAX_LNUM) | ||
1294 | pb->lnum[fr]--; | ||
1295 | i += stepsize; | ||
1296 | } | ||
1297 | leftover1 = count * stepsize - lov0; | ||
1298 | } | ||
1299 | } | ||
1300 | pagei++; | ||
1301 | } while(i < nlines); | ||
1302 | skip: | ||
1303 | tab_cmd_dbdma(c1, DBDMA_NOP | BR_ALWAYS, jump); | ||
1304 | c1 = jump_addr; | ||
1305 | #endif /* PLANB_GSCANLINE */ | ||
1306 | |||
1307 | cmd_tab_data_end: | ||
1308 | tab_cmd_store(c1++, (unsigned)(&pb->planb_base_phys->intr_stat), | ||
1309 | (fr << 9) | PLANB_FRM_IRQ | PLANB_GEN_IRQ); | ||
1310 | /* stop it */ | ||
1311 | tab_cmd_dbdma(c1, DBDMA_STOP, 0); | ||
1312 | |||
1313 | eieio(); | ||
1314 | return c1; | ||
1315 | } | ||
1316 | |||
1317 | static irqreturn_t planb_irq(int irq, void *dev_id) | ||
1318 | { | ||
1319 | unsigned int stat, astat; | ||
1320 | struct planb *pb = (struct planb *)dev_id; | ||
1321 | |||
1322 | IDEBUG("PlanB: planb_irq()\n"); | ||
1323 | |||
1324 | /* get/clear interrupt status bits */ | ||
1325 | eieio(); | ||
1326 | stat = in_le32(&pb->planb_base->intr_stat); | ||
1327 | astat = stat & pb->intr_mask; | ||
1328 | out_le32(&pb->planb_base->intr_stat, PLANB_FRM_IRQ | ||
1329 | & ~astat & stat & ~PLANB_GEN_IRQ); | ||
1330 | IDEBUG("PlanB: stat = %X, astat = %X\n", stat, astat); | ||
1331 | |||
1332 | if(astat & PLANB_FRM_IRQ) { | ||
1333 | unsigned int fr = stat >> 9; | ||
1334 | #ifndef PLANB_GSCANLINE | ||
1335 | int i; | ||
1336 | #endif | ||
1337 | IDEBUG("PlanB: PLANB_FRM_IRQ\n"); | ||
1338 | |||
1339 | pb->gcount++; | ||
1340 | |||
1341 | IDEBUG("PlanB: grab %d: fr = %d, gcount = %d\n", | ||
1342 | pb->grabbing, fr, pb->gcount); | ||
1343 | #ifndef PLANB_GSCANLINE | ||
1344 | IDEBUG("PlanB: %d * %d bytes are being copied over\n", | ||
1345 | pb->lnum[fr], pb->lsize[fr]); | ||
1346 | for(i = 0; i < pb->lnum[fr]; i++) { | ||
1347 | int first = pb->lsize[fr] - pb->l_to_next_size[fr][i]; | ||
1348 | |||
1349 | memcpy(pb->l_to_addr[fr][i], | ||
1350 | pb->rawbuf[pb->l_fr_addr_idx[fr] + i], | ||
1351 | first); | ||
1352 | memcpy(pb->rawbuf[pb->l_to_next_idx[fr][i]], | ||
1353 | pb->rawbuf[pb->l_fr_addr_idx[fr] + i] + first, | ||
1354 | pb->l_to_next_size[fr][i]); | ||
1355 | } | ||
1356 | #endif | ||
1357 | pb->frame_stat[fr] = GBUFFER_DONE; | ||
1358 | pb->grabbing--; | ||
1359 | wake_up_interruptible(&pb->capq); | ||
1360 | return IRQ_HANDLED; | ||
1361 | } | ||
1362 | /* incorrect interrupts? */ | ||
1363 | pb->intr_mask = PLANB_CLR_IRQ; | ||
1364 | out_le32(&pb->planb_base->intr_stat, PLANB_CLR_IRQ); | ||
1365 | printk(KERN_ERR "PlanB: IRQ lockup, cleared intrrupts" | ||
1366 | " unconditionally\n"); | ||
1367 | return IRQ_HANDLED; | ||
1368 | } | ||
1369 | |||
1370 | /******************************* | ||
1371 | * Device Operations functions * | ||
1372 | *******************************/ | ||
1373 | |||
1374 | static int planb_open(struct video_device *dev, int mode) | ||
1375 | { | ||
1376 | struct planb *pb = (struct planb *)dev; | ||
1377 | |||
1378 | if (pb->user == 0) { | ||
1379 | int err; | ||
1380 | if((err = planb_prepare_open(pb)) != 0) | ||
1381 | return err; | ||
1382 | } | ||
1383 | pb->user++; | ||
1384 | |||
1385 | DEBUG("PlanB: device opened\n"); | ||
1386 | return 0; | ||
1387 | } | ||
1388 | |||
1389 | static void planb_close(struct video_device *dev) | ||
1390 | { | ||
1391 | struct planb *pb = (struct planb *)dev; | ||
1392 | |||
1393 | if(pb->user < 1) /* ??? */ | ||
1394 | return; | ||
1395 | planb_lock(pb); | ||
1396 | if (pb->user == 1) { | ||
1397 | if (pb->overlay) { | ||
1398 | planb_dbdma_stop(&pb->planb_base->ch2); | ||
1399 | planb_dbdma_stop(&pb->planb_base->ch1); | ||
1400 | pb->overlay = 0; | ||
1401 | } | ||
1402 | planb_prepare_close(pb); | ||
1403 | } | ||
1404 | pb->user--; | ||
1405 | planb_unlock(pb); | ||
1406 | |||
1407 | DEBUG("PlanB: device closed\n"); | ||
1408 | } | ||
1409 | |||
1410 | static long planb_read(struct video_device *v, char *buf, unsigned long count, | ||
1411 | int nonblock) | ||
1412 | { | ||
1413 | DEBUG("planb: read request\n"); | ||
1414 | return -EINVAL; | ||
1415 | } | ||
1416 | |||
1417 | static long planb_write(struct video_device *v, const char *buf, | ||
1418 | unsigned long count, int nonblock) | ||
1419 | { | ||
1420 | DEBUG("planb: write request\n"); | ||
1421 | return -EINVAL; | ||
1422 | } | ||
1423 | |||
1424 | static int planb_ioctl(struct video_device *dev, unsigned int cmd, void *arg) | ||
1425 | { | ||
1426 | struct planb *pb=(struct planb *)dev; | ||
1427 | |||
1428 | switch (cmd) | ||
1429 | { | ||
1430 | case VIDIOCGCAP: | ||
1431 | { | ||
1432 | struct video_capability b; | ||
1433 | |||
1434 | DEBUG("PlanB: IOCTL VIDIOCGCAP\n"); | ||
1435 | |||
1436 | strcpy (b.name, pb->video_dev.name); | ||
1437 | b.type = VID_TYPE_OVERLAY | VID_TYPE_CLIPPING | | ||
1438 | VID_TYPE_FRAMERAM | VID_TYPE_SCALES | | ||
1439 | VID_TYPE_CAPTURE; | ||
1440 | b.channels = 2; /* composite & svhs */ | ||
1441 | b.audios = 0; | ||
1442 | b.maxwidth = PLANB_MAXPIXELS; | ||
1443 | b.maxheight = PLANB_MAXLINES; | ||
1444 | b.minwidth = 32; /* wild guess */ | ||
1445 | b.minheight = 32; | ||
1446 | if (copy_to_user(arg,&b,sizeof(b))) | ||
1447 | return -EFAULT; | ||
1448 | return 0; | ||
1449 | } | ||
1450 | case VIDIOCSFBUF: | ||
1451 | { | ||
1452 | struct video_buffer v; | ||
1453 | unsigned short bpp; | ||
1454 | unsigned int fmt; | ||
1455 | |||
1456 | DEBUG("PlanB: IOCTL VIDIOCSFBUF\n"); | ||
1457 | |||
1458 | if (!capable(CAP_SYS_ADMIN) | ||
1459 | || !capable(CAP_SYS_RAWIO)) | ||
1460 | return -EPERM; | ||
1461 | if (copy_from_user(&v, arg,sizeof(v))) | ||
1462 | return -EFAULT; | ||
1463 | planb_lock(pb); | ||
1464 | switch(v.depth) { | ||
1465 | case 8: | ||
1466 | bpp = 1; | ||
1467 | fmt = PLANB_GRAY; | ||
1468 | break; | ||
1469 | case 15: | ||
1470 | case 16: | ||
1471 | bpp = 2; | ||
1472 | fmt = PLANB_COLOUR15; | ||
1473 | break; | ||
1474 | case 24: | ||
1475 | case 32: | ||
1476 | bpp = 4; | ||
1477 | fmt = PLANB_COLOUR32; | ||
1478 | break; | ||
1479 | default: | ||
1480 | planb_unlock(pb); | ||
1481 | return -EINVAL; | ||
1482 | } | ||
1483 | if (bpp * v.width > v.bytesperline) { | ||
1484 | planb_unlock(pb); | ||
1485 | return -EINVAL; | ||
1486 | } | ||
1487 | pb->win.bpp = bpp; | ||
1488 | pb->win.color_fmt = fmt; | ||
1489 | pb->frame_buffer_phys = (unsigned long) v.base; | ||
1490 | pb->win.sheight = v.height; | ||
1491 | pb->win.swidth = v.width; | ||
1492 | pb->picture.depth = pb->win.depth = v.depth; | ||
1493 | pb->win.bpl = pb->win.bpp * pb->win.swidth; | ||
1494 | pb->win.pad = v.bytesperline - pb->win.bpl; | ||
1495 | |||
1496 | DEBUG("PlanB: Display at %p is %d by %d, bytedepth %d," | ||
1497 | " bpl %d (+ %d)\n", v.base, v.width,v.height, | ||
1498 | pb->win.bpp, pb->win.bpl, pb->win.pad); | ||
1499 | |||
1500 | pb->cmd_buff_inited = 0; | ||
1501 | if(pb->overlay) { | ||
1502 | suspend_overlay(pb); | ||
1503 | fill_cmd_buff(pb); | ||
1504 | resume_overlay(pb); | ||
1505 | } | ||
1506 | planb_unlock(pb); | ||
1507 | return 0; | ||
1508 | } | ||
1509 | case VIDIOCGFBUF: | ||
1510 | { | ||
1511 | struct video_buffer v; | ||
1512 | |||
1513 | DEBUG("PlanB: IOCTL VIDIOCGFBUF\n"); | ||
1514 | |||
1515 | v.base = (void *)pb->frame_buffer_phys; | ||
1516 | v.height = pb->win.sheight; | ||
1517 | v.width = pb->win.swidth; | ||
1518 | v.depth = pb->win.depth; | ||
1519 | v.bytesperline = pb->win.bpl + pb->win.pad; | ||
1520 | if (copy_to_user(arg, &v, sizeof(v))) | ||
1521 | return -EFAULT; | ||
1522 | return 0; | ||
1523 | } | ||
1524 | case VIDIOCCAPTURE: | ||
1525 | { | ||
1526 | int i; | ||
1527 | |||
1528 | if(copy_from_user(&i, arg, sizeof(i))) | ||
1529 | return -EFAULT; | ||
1530 | if(i==0) { | ||
1531 | DEBUG("PlanB: IOCTL VIDIOCCAPTURE Stop\n"); | ||
1532 | |||
1533 | if (!(pb->overlay)) | ||
1534 | return 0; | ||
1535 | planb_lock(pb); | ||
1536 | pb->overlay = 0; | ||
1537 | overlay_stop(pb); | ||
1538 | planb_unlock(pb); | ||
1539 | } else { | ||
1540 | DEBUG("PlanB: IOCTL VIDIOCCAPTURE Start\n"); | ||
1541 | |||
1542 | if (pb->frame_buffer_phys == 0 || | ||
1543 | pb->win.width == 0 || | ||
1544 | pb->win.height == 0) | ||
1545 | return -EINVAL; | ||
1546 | if (pb->overlay) | ||
1547 | return 0; | ||
1548 | planb_lock(pb); | ||
1549 | pb->overlay = 1; | ||
1550 | if(!(pb->cmd_buff_inited)) | ||
1551 | fill_cmd_buff(pb); | ||
1552 | overlay_start(pb); | ||
1553 | planb_unlock(pb); | ||
1554 | } | ||
1555 | return 0; | ||
1556 | } | ||
1557 | case VIDIOCGCHAN: | ||
1558 | { | ||
1559 | struct video_channel v; | ||
1560 | |||
1561 | DEBUG("PlanB: IOCTL VIDIOCGCHAN\n"); | ||
1562 | |||
1563 | if(copy_from_user(&v, arg,sizeof(v))) | ||
1564 | return -EFAULT; | ||
1565 | v.flags = 0; | ||
1566 | v.tuners = 0; | ||
1567 | v.type = VIDEO_TYPE_CAMERA; | ||
1568 | v.norm = pb->win.norm; | ||
1569 | switch(v.channel) | ||
1570 | { | ||
1571 | case 0: | ||
1572 | strcpy(v.name,"Composite"); | ||
1573 | break; | ||
1574 | case 1: | ||
1575 | strcpy(v.name,"SVHS"); | ||
1576 | break; | ||
1577 | default: | ||
1578 | return -EINVAL; | ||
1579 | break; | ||
1580 | } | ||
1581 | if(copy_to_user(arg,&v,sizeof(v))) | ||
1582 | return -EFAULT; | ||
1583 | |||
1584 | return 0; | ||
1585 | } | ||
1586 | case VIDIOCSCHAN: | ||
1587 | { | ||
1588 | struct video_channel v; | ||
1589 | |||
1590 | DEBUG("PlanB: IOCTL VIDIOCSCHAN\n"); | ||
1591 | |||
1592 | if(copy_from_user(&v, arg, sizeof(v))) | ||
1593 | return -EFAULT; | ||
1594 | |||
1595 | if (v.norm != pb->win.norm) { | ||
1596 | int i, maxlines; | ||
1597 | |||
1598 | switch (v.norm) | ||
1599 | { | ||
1600 | case VIDEO_MODE_PAL: | ||
1601 | case VIDEO_MODE_SECAM: | ||
1602 | maxlines = PLANB_MAXLINES; | ||
1603 | break; | ||
1604 | case VIDEO_MODE_NTSC: | ||
1605 | maxlines = PLANB_NTSC_MAXLINES; | ||
1606 | break; | ||
1607 | default: | ||
1608 | return -EINVAL; | ||
1609 | break; | ||
1610 | } | ||
1611 | planb_lock(pb); | ||
1612 | /* empty the grabbing queue */ | ||
1613 | wait_event(pb->capq, !pb->grabbing); | ||
1614 | pb->maxlines = maxlines; | ||
1615 | pb->win.norm = v.norm; | ||
1616 | /* Stop overlay if running */ | ||
1617 | suspend_overlay(pb); | ||
1618 | for(i = 0; i < MAX_GBUFFERS; i++) | ||
1619 | pb->gnorm_switch[i] = 1; | ||
1620 | /* I know it's an overkill, but.... */ | ||
1621 | fill_cmd_buff(pb); | ||
1622 | /* ok, now init it accordingly */ | ||
1623 | saa_init_regs (pb); | ||
1624 | /* restart overlay if it was running */ | ||
1625 | resume_overlay(pb); | ||
1626 | planb_unlock(pb); | ||
1627 | } | ||
1628 | |||
1629 | switch(v.channel) | ||
1630 | { | ||
1631 | case 0: /* Composite */ | ||
1632 | saa_set (SAA7196_IOCC, | ||
1633 | ((saa_regs[pb->win.norm][SAA7196_IOCC] & | ||
1634 | ~7) | 3), pb); | ||
1635 | break; | ||
1636 | case 1: /* SVHS */ | ||
1637 | saa_set (SAA7196_IOCC, | ||
1638 | ((saa_regs[pb->win.norm][SAA7196_IOCC] & | ||
1639 | ~7) | 4), pb); | ||
1640 | break; | ||
1641 | default: | ||
1642 | return -EINVAL; | ||
1643 | break; | ||
1644 | } | ||
1645 | |||
1646 | return 0; | ||
1647 | } | ||
1648 | case VIDIOCGPICT: | ||
1649 | { | ||
1650 | struct video_picture vp = pb->picture; | ||
1651 | |||
1652 | DEBUG("PlanB: IOCTL VIDIOCGPICT\n"); | ||
1653 | |||
1654 | switch(pb->win.color_fmt) { | ||
1655 | case PLANB_GRAY: | ||
1656 | vp.palette = VIDEO_PALETTE_GREY; | ||
1657 | case PLANB_COLOUR15: | ||
1658 | vp.palette = VIDEO_PALETTE_RGB555; | ||
1659 | break; | ||
1660 | case PLANB_COLOUR32: | ||
1661 | vp.palette = VIDEO_PALETTE_RGB32; | ||
1662 | break; | ||
1663 | default: | ||
1664 | vp.palette = 0; | ||
1665 | break; | ||
1666 | } | ||
1667 | |||
1668 | if(copy_to_user(arg,&vp,sizeof(vp))) | ||
1669 | return -EFAULT; | ||
1670 | return 0; | ||
1671 | } | ||
1672 | case VIDIOCSPICT: | ||
1673 | { | ||
1674 | struct video_picture vp; | ||
1675 | |||
1676 | DEBUG("PlanB: IOCTL VIDIOCSPICT\n"); | ||
1677 | |||
1678 | if(copy_from_user(&vp,arg,sizeof(vp))) | ||
1679 | return -EFAULT; | ||
1680 | pb->picture = vp; | ||
1681 | /* Should we do sanity checks here? */ | ||
1682 | saa_set (SAA7196_BRIG, (unsigned char) | ||
1683 | ((pb->picture.brightness) >> 8), pb); | ||
1684 | saa_set (SAA7196_HUEC, (unsigned char) | ||
1685 | ((pb->picture.hue) >> 8) ^ 0x80, pb); | ||
1686 | saa_set (SAA7196_CSAT, (unsigned char) | ||
1687 | ((pb->picture.colour) >> 9), pb); | ||
1688 | saa_set (SAA7196_CONT, (unsigned char) | ||
1689 | ((pb->picture.contrast) >> 9), pb); | ||
1690 | |||
1691 | return 0; | ||
1692 | } | ||
1693 | case VIDIOCSWIN: | ||
1694 | { | ||
1695 | struct video_window vw; | ||
1696 | struct video_clip clip; | ||
1697 | int i; | ||
1698 | |||
1699 | DEBUG("PlanB: IOCTL VIDIOCSWIN\n"); | ||
1700 | |||
1701 | if(copy_from_user(&vw,arg,sizeof(vw))) | ||
1702 | return -EFAULT; | ||
1703 | |||
1704 | planb_lock(pb); | ||
1705 | /* Stop overlay if running */ | ||
1706 | suspend_overlay(pb); | ||
1707 | pb->win.interlace = (vw.height > pb->maxlines/2)? 1: 0; | ||
1708 | if (pb->win.x != vw.x || | ||
1709 | pb->win.y != vw.y || | ||
1710 | pb->win.width != vw.width || | ||
1711 | pb->win.height != vw.height || | ||
1712 | !pb->cmd_buff_inited) { | ||
1713 | pb->win.x = vw.x; | ||
1714 | pb->win.y = vw.y; | ||
1715 | pb->win.width = vw.width; | ||
1716 | pb->win.height = vw.height; | ||
1717 | fill_cmd_buff(pb); | ||
1718 | } | ||
1719 | /* Reset clip mask */ | ||
1720 | memset ((void *) pb->mask, 0xff, (pb->maxlines | ||
1721 | * ((PLANB_MAXPIXELS + 7) & ~7)) / 8); | ||
1722 | /* Add any clip rects */ | ||
1723 | for (i = 0; i < vw.clipcount; i++) { | ||
1724 | if (copy_from_user(&clip, vw.clips + i, | ||
1725 | sizeof(struct video_clip))) | ||
1726 | return -EFAULT; | ||
1727 | add_clip(pb, &clip); | ||
1728 | } | ||
1729 | /* restart overlay if it was running */ | ||
1730 | resume_overlay(pb); | ||
1731 | planb_unlock(pb); | ||
1732 | return 0; | ||
1733 | } | ||
1734 | case VIDIOCGWIN: | ||
1735 | { | ||
1736 | struct video_window vw; | ||
1737 | |||
1738 | DEBUG("PlanB: IOCTL VIDIOCGWIN\n"); | ||
1739 | |||
1740 | vw.x=pb->win.x; | ||
1741 | vw.y=pb->win.y; | ||
1742 | vw.width=pb->win.width; | ||
1743 | vw.height=pb->win.height; | ||
1744 | vw.chromakey=0; | ||
1745 | vw.flags=0; | ||
1746 | if(pb->win.interlace) | ||
1747 | vw.flags|=VIDEO_WINDOW_INTERLACE; | ||
1748 | if(copy_to_user(arg,&vw,sizeof(vw))) | ||
1749 | return -EFAULT; | ||
1750 | return 0; | ||
1751 | } | ||
1752 | case VIDIOCSYNC: { | ||
1753 | int i; | ||
1754 | |||
1755 | IDEBUG("PlanB: IOCTL VIDIOCSYNC\n"); | ||
1756 | |||
1757 | if(copy_from_user((void *)&i,arg,sizeof(int))) | ||
1758 | return -EFAULT; | ||
1759 | |||
1760 | IDEBUG("PlanB: sync to frame %d\n", i); | ||
1761 | |||
1762 | if(i > (MAX_GBUFFERS - 1) || i < 0) | ||
1763 | return -EINVAL; | ||
1764 | chk_grab: | ||
1765 | switch (pb->frame_stat[i]) { | ||
1766 | case GBUFFER_UNUSED: | ||
1767 | return -EINVAL; | ||
1768 | case GBUFFER_GRABBING: | ||
1769 | IDEBUG("PlanB: waiting for grab" | ||
1770 | " done (%d)\n", i); | ||
1771 | interruptible_sleep_on(&pb->capq); | ||
1772 | if(signal_pending(current)) | ||
1773 | return -EINTR; | ||
1774 | goto chk_grab; | ||
1775 | case GBUFFER_DONE: | ||
1776 | pb->frame_stat[i] = GBUFFER_UNUSED; | ||
1777 | break; | ||
1778 | } | ||
1779 | return 0; | ||
1780 | } | ||
1781 | |||
1782 | case VIDIOCMCAPTURE: | ||
1783 | { | ||
1784 | struct video_mmap vm; | ||
1785 | volatile unsigned int status; | ||
1786 | |||
1787 | IDEBUG("PlanB: IOCTL VIDIOCMCAPTURE\n"); | ||
1788 | |||
1789 | if(copy_from_user((void *) &vm,(void *)arg,sizeof(vm))) | ||
1790 | return -EFAULT; | ||
1791 | status = pb->frame_stat[vm.frame]; | ||
1792 | if (status != GBUFFER_UNUSED) | ||
1793 | return -EBUSY; | ||
1794 | |||
1795 | return vgrab(pb, &vm); | ||
1796 | } | ||
1797 | |||
1798 | case VIDIOCGMBUF: | ||
1799 | { | ||
1800 | int i; | ||
1801 | struct video_mbuf vm; | ||
1802 | |||
1803 | DEBUG("PlanB: IOCTL VIDIOCGMBUF\n"); | ||
1804 | |||
1805 | memset(&vm, 0 , sizeof(vm)); | ||
1806 | vm.size = PLANB_MAX_FBUF * MAX_GBUFFERS; | ||
1807 | vm.frames = MAX_GBUFFERS; | ||
1808 | for(i = 0; i<MAX_GBUFFERS; i++) | ||
1809 | vm.offsets[i] = PLANB_MAX_FBUF * i; | ||
1810 | if(copy_to_user((void *)arg, (void *)&vm, sizeof(vm))) | ||
1811 | return -EFAULT; | ||
1812 | return 0; | ||
1813 | } | ||
1814 | |||
1815 | case PLANBIOCGSAAREGS: | ||
1816 | { | ||
1817 | struct planb_saa_regs preg; | ||
1818 | |||
1819 | DEBUG("PlanB: IOCTL PLANBIOCGSAAREGS\n"); | ||
1820 | |||
1821 | if(copy_from_user(&preg, arg, sizeof(preg))) | ||
1822 | return -EFAULT; | ||
1823 | if(preg.addr >= SAA7196_NUMREGS) | ||
1824 | return -EINVAL; | ||
1825 | preg.val = saa_regs[pb->win.norm][preg.addr]; | ||
1826 | if(copy_to_user((void *)arg, (void *)&preg, | ||
1827 | sizeof(preg))) | ||
1828 | return -EFAULT; | ||
1829 | return 0; | ||
1830 | } | ||
1831 | |||
1832 | case PLANBIOCSSAAREGS: | ||
1833 | { | ||
1834 | struct planb_saa_regs preg; | ||
1835 | |||
1836 | DEBUG("PlanB: IOCTL PLANBIOCSSAAREGS\n"); | ||
1837 | |||
1838 | if(copy_from_user(&preg, arg, sizeof(preg))) | ||
1839 | return -EFAULT; | ||
1840 | if(preg.addr >= SAA7196_NUMREGS) | ||
1841 | return -EINVAL; | ||
1842 | saa_set (preg.addr, preg.val, pb); | ||
1843 | return 0; | ||
1844 | } | ||
1845 | |||
1846 | case PLANBIOCGSTAT: | ||
1847 | { | ||
1848 | struct planb_stat_regs pstat; | ||
1849 | |||
1850 | DEBUG("PlanB: IOCTL PLANBIOCGSTAT\n"); | ||
1851 | |||
1852 | pstat.ch1_stat = in_le32(&pb->planb_base->ch1.status); | ||
1853 | pstat.ch2_stat = in_le32(&pb->planb_base->ch2.status); | ||
1854 | pstat.saa_stat0 = saa_status(0, pb); | ||
1855 | pstat.saa_stat1 = saa_status(1, pb); | ||
1856 | |||
1857 | if(copy_to_user((void *)arg, (void *)&pstat, | ||
1858 | sizeof(pstat))) | ||
1859 | return -EFAULT; | ||
1860 | return 0; | ||
1861 | } | ||
1862 | |||
1863 | case PLANBIOCSMODE: { | ||
1864 | int v; | ||
1865 | |||
1866 | DEBUG("PlanB: IOCTL PLANBIOCSMODE\n"); | ||
1867 | |||
1868 | if(copy_from_user(&v, arg, sizeof(v))) | ||
1869 | return -EFAULT; | ||
1870 | |||
1871 | switch(v) | ||
1872 | { | ||
1873 | case PLANB_TV_MODE: | ||
1874 | saa_set (SAA7196_STDC, | ||
1875 | (saa_regs[pb->win.norm][SAA7196_STDC] & | ||
1876 | 0x7f), pb); | ||
1877 | break; | ||
1878 | case PLANB_VTR_MODE: | ||
1879 | saa_set (SAA7196_STDC, | ||
1880 | (saa_regs[pb->win.norm][SAA7196_STDC] | | ||
1881 | 0x80), pb); | ||
1882 | break; | ||
1883 | default: | ||
1884 | return -EINVAL; | ||
1885 | break; | ||
1886 | } | ||
1887 | pb->win.mode = v; | ||
1888 | return 0; | ||
1889 | } | ||
1890 | case PLANBIOCGMODE: { | ||
1891 | int v=pb->win.mode; | ||
1892 | |||
1893 | DEBUG("PlanB: IOCTL PLANBIOCGMODE\n"); | ||
1894 | |||
1895 | if(copy_to_user(arg,&v,sizeof(v))) | ||
1896 | return -EFAULT; | ||
1897 | return 0; | ||
1898 | } | ||
1899 | #ifdef PLANB_GSCANLINE | ||
1900 | case PLANBG_GRAB_BPL: { | ||
1901 | int v=pb->gbytes_per_line; | ||
1902 | |||
1903 | DEBUG("PlanB: IOCTL PLANBG_GRAB_BPL\n"); | ||
1904 | |||
1905 | if(copy_to_user(arg,&v,sizeof(v))) | ||
1906 | return -EFAULT; | ||
1907 | return 0; | ||
1908 | } | ||
1909 | #endif /* PLANB_GSCANLINE */ | ||
1910 | case PLANB_INTR_DEBUG: { | ||
1911 | int i; | ||
1912 | |||
1913 | DEBUG("PlanB: IOCTL PLANB_INTR_DEBUG\n"); | ||
1914 | |||
1915 | if(copy_from_user(&i, arg, sizeof(i))) | ||
1916 | return -EFAULT; | ||
1917 | |||
1918 | /* avoid hang ups all together */ | ||
1919 | for (i = 0; i < MAX_GBUFFERS; i++) { | ||
1920 | if(pb->frame_stat[i] == GBUFFER_GRABBING) { | ||
1921 | pb->frame_stat[i] = GBUFFER_DONE; | ||
1922 | } | ||
1923 | } | ||
1924 | if(pb->grabbing) | ||
1925 | pb->grabbing--; | ||
1926 | wake_up_interruptible(&pb->capq); | ||
1927 | return 0; | ||
1928 | } | ||
1929 | case PLANB_INV_REGS: { | ||
1930 | int i; | ||
1931 | struct planb_any_regs any; | ||
1932 | |||
1933 | DEBUG("PlanB: IOCTL PLANB_INV_REGS\n"); | ||
1934 | |||
1935 | if(copy_from_user(&any, arg, sizeof(any))) | ||
1936 | return -EFAULT; | ||
1937 | if(any.offset < 0 || any.offset + any.bytes > 0x400) | ||
1938 | return -EINVAL; | ||
1939 | if(any.bytes > 128) | ||
1940 | return -EINVAL; | ||
1941 | for (i = 0; i < any.bytes; i++) { | ||
1942 | any.data[i] = | ||
1943 | in_8((unsigned char *)pb->planb_base | ||
1944 | + any.offset + i); | ||
1945 | } | ||
1946 | if(copy_to_user(arg,&any,sizeof(any))) | ||
1947 | return -EFAULT; | ||
1948 | return 0; | ||
1949 | } | ||
1950 | default: | ||
1951 | { | ||
1952 | DEBUG("PlanB: Unimplemented IOCTL\n"); | ||
1953 | return -ENOIOCTLCMD; | ||
1954 | } | ||
1955 | /* Some IOCTLs are currently unsupported on PlanB */ | ||
1956 | case VIDIOCGTUNER: { | ||
1957 | DEBUG("PlanB: IOCTL VIDIOCGTUNER\n"); | ||
1958 | goto unimplemented; } | ||
1959 | case VIDIOCSTUNER: { | ||
1960 | DEBUG("PlanB: IOCTL VIDIOCSTUNER\n"); | ||
1961 | goto unimplemented; } | ||
1962 | case VIDIOCSFREQ: { | ||
1963 | DEBUG("PlanB: IOCTL VIDIOCSFREQ\n"); | ||
1964 | goto unimplemented; } | ||
1965 | case VIDIOCGFREQ: { | ||
1966 | DEBUG("PlanB: IOCTL VIDIOCGFREQ\n"); | ||
1967 | goto unimplemented; } | ||
1968 | case VIDIOCKEY: { | ||
1969 | DEBUG("PlanB: IOCTL VIDIOCKEY\n"); | ||
1970 | goto unimplemented; } | ||
1971 | case VIDIOCSAUDIO: { | ||
1972 | DEBUG("PlanB: IOCTL VIDIOCSAUDIO\n"); | ||
1973 | goto unimplemented; } | ||
1974 | case VIDIOCGAUDIO: { | ||
1975 | DEBUG("PlanB: IOCTL VIDIOCGAUDIO\n"); | ||
1976 | goto unimplemented; } | ||
1977 | unimplemented: | ||
1978 | DEBUG(" Unimplemented\n"); | ||
1979 | return -ENOIOCTLCMD; | ||
1980 | } | ||
1981 | return 0; | ||
1982 | } | ||
1983 | |||
1984 | static int planb_mmap(struct vm_area_struct *vma, struct video_device *dev, const char *adr, unsigned long size) | ||
1985 | { | ||
1986 | int i; | ||
1987 | struct planb *pb = (struct planb *)dev; | ||
1988 | unsigned long start = (unsigned long)adr; | ||
1989 | |||
1990 | if (size > MAX_GBUFFERS * PLANB_MAX_FBUF) | ||
1991 | return -EINVAL; | ||
1992 | if (!pb->rawbuf) { | ||
1993 | int err; | ||
1994 | if((err=grabbuf_alloc(pb))) | ||
1995 | return err; | ||
1996 | } | ||
1997 | for (i = 0; i < pb->rawbuf_size; i++) { | ||
1998 | unsigned long pfn; | ||
1999 | |||
2000 | pfn = virt_to_phys((void *)pb->rawbuf[i]) >> PAGE_SHIFT; | ||
2001 | if (remap_pfn_range(vma, start, pfn, PAGE_SIZE, PAGE_SHARED)) | ||
2002 | return -EAGAIN; | ||
2003 | start += PAGE_SIZE; | ||
2004 | if (size <= PAGE_SIZE) | ||
2005 | break; | ||
2006 | size -= PAGE_SIZE; | ||
2007 | } | ||
2008 | return 0; | ||
2009 | } | ||
2010 | |||
2011 | static struct video_device planb_template= | ||
2012 | { | ||
2013 | .owner = THIS_MODULE, | ||
2014 | .name = PLANB_DEVICE_NAME, | ||
2015 | .type = VID_TYPE_OVERLAY, | ||
2016 | .open = planb_open, | ||
2017 | .close = planb_close, | ||
2018 | .read = planb_read, | ||
2019 | .write = planb_write, | ||
2020 | .ioctl = planb_ioctl, | ||
2021 | .mmap = planb_mmap, /* mmap? */ | ||
2022 | }; | ||
2023 | |||
2024 | static int init_planb(struct planb *pb) | ||
2025 | { | ||
2026 | unsigned char saa_rev; | ||
2027 | int i, result; | ||
2028 | |||
2029 | memset ((void *) &pb->win, 0, sizeof (struct planb_window)); | ||
2030 | /* Simple sanity check */ | ||
2031 | if(def_norm >= NUM_SUPPORTED_NORM || def_norm < 0) { | ||
2032 | printk(KERN_ERR "PlanB: Option(s) invalid\n"); | ||
2033 | return -2; | ||
2034 | } | ||
2035 | pb->win.norm = def_norm; | ||
2036 | pb->win.mode = PLANB_TV_MODE; /* TV mode */ | ||
2037 | pb->win.interlace=1; | ||
2038 | pb->win.x=0; | ||
2039 | pb->win.y=0; | ||
2040 | pb->win.width=768; /* 640 */ | ||
2041 | pb->win.height=576; /* 480 */ | ||
2042 | pb->maxlines=576; | ||
2043 | #if 0 | ||
2044 | btv->win.cropwidth=768; /* 640 */ | ||
2045 | btv->win.cropheight=576; /* 480 */ | ||
2046 | btv->win.cropx=0; | ||
2047 | btv->win.cropy=0; | ||
2048 | #endif | ||
2049 | pb->win.pad=0; | ||
2050 | pb->win.bpp=4; | ||
2051 | pb->win.depth=32; | ||
2052 | pb->win.color_fmt=PLANB_COLOUR32; | ||
2053 | pb->win.bpl=1024*pb->win.bpp; | ||
2054 | pb->win.swidth=1024; | ||
2055 | pb->win.sheight=768; | ||
2056 | #ifdef PLANB_GSCANLINE | ||
2057 | if((pb->gbytes_per_line = PLANB_MAXPIXELS * 4) > PAGE_SIZE | ||
2058 | || (pb->gbytes_per_line <= 0)) | ||
2059 | return -3; | ||
2060 | else { | ||
2061 | /* page align pb->gbytes_per_line for DMA purpose */ | ||
2062 | for(i = PAGE_SIZE; pb->gbytes_per_line < (i>>1);) | ||
2063 | i>>=1; | ||
2064 | pb->gbytes_per_line = i; | ||
2065 | } | ||
2066 | #endif | ||
2067 | pb->tab_size = PLANB_MAXLINES + 40; | ||
2068 | pb->suspend = 0; | ||
2069 | mutex_init(&pb->lock); | ||
2070 | pb->ch1_cmd = 0; | ||
2071 | pb->ch2_cmd = 0; | ||
2072 | pb->mask = 0; | ||
2073 | pb->priv_space = 0; | ||
2074 | pb->offset = 0; | ||
2075 | pb->user = 0; | ||
2076 | pb->overlay = 0; | ||
2077 | init_waitqueue_head(&pb->suspendq); | ||
2078 | pb->cmd_buff_inited = 0; | ||
2079 | pb->frame_buffer_phys = 0; | ||
2080 | |||
2081 | /* Reset DMA controllers */ | ||
2082 | planb_dbdma_stop(&pb->planb_base->ch2); | ||
2083 | planb_dbdma_stop(&pb->planb_base->ch1); | ||
2084 | |||
2085 | saa_rev = (saa_status(0, pb) & 0xf0) >> 4; | ||
2086 | printk(KERN_INFO "PlanB: SAA7196 video processor rev. %d\n", saa_rev); | ||
2087 | /* Initialize the SAA registers in memory and on chip */ | ||
2088 | saa_init_regs (pb); | ||
2089 | |||
2090 | /* clear interrupt mask */ | ||
2091 | pb->intr_mask = PLANB_CLR_IRQ; | ||
2092 | |||
2093 | result = request_irq(pb->irq, planb_irq, 0, "PlanB", pb); | ||
2094 | if (result < 0) { | ||
2095 | if (result==-EINVAL) | ||
2096 | printk(KERN_ERR "PlanB: Bad irq number (%d) " | ||
2097 | "or handler\n", (int)pb->irq); | ||
2098 | else if (result==-EBUSY) | ||
2099 | printk(KERN_ERR "PlanB: I don't know why, " | ||
2100 | "but IRQ %d is busy\n", (int)pb->irq); | ||
2101 | return result; | ||
2102 | } | ||
2103 | disable_irq(pb->irq); | ||
2104 | |||
2105 | /* Now add the template and register the device unit. */ | ||
2106 | memcpy(&pb->video_dev,&planb_template,sizeof(planb_template)); | ||
2107 | |||
2108 | pb->picture.brightness=0x90<<8; | ||
2109 | pb->picture.contrast = 0x70 << 8; | ||
2110 | pb->picture.colour = 0x70<<8; | ||
2111 | pb->picture.hue = 0x8000; | ||
2112 | pb->picture.whiteness = 0; | ||
2113 | pb->picture.depth = pb->win.depth; | ||
2114 | |||
2115 | pb->frame_stat=NULL; | ||
2116 | init_waitqueue_head(&pb->capq); | ||
2117 | for(i=0; i<MAX_GBUFFERS; i++) { | ||
2118 | pb->gbuf_idx[i] = PLANB_MAX_FBUF * i / PAGE_SIZE; | ||
2119 | pb->gwidth[i]=0; | ||
2120 | pb->gheight[i]=0; | ||
2121 | pb->gfmt[i]=0; | ||
2122 | pb->cap_cmd[i]=NULL; | ||
2123 | #ifndef PLANB_GSCANLINE | ||
2124 | pb->l_fr_addr_idx[i] = MAX_GBUFFERS * (PLANB_MAX_FBUF | ||
2125 | / PAGE_SIZE + 1) + MAX_LNUM * i; | ||
2126 | pb->lsize[i] = 0; | ||
2127 | pb->lnum[i] = 0; | ||
2128 | #endif | ||
2129 | } | ||
2130 | pb->rawbuf=NULL; | ||
2131 | pb->grabbing=0; | ||
2132 | |||
2133 | /* enable interrupts */ | ||
2134 | out_le32(&pb->planb_base->intr_stat, PLANB_CLR_IRQ); | ||
2135 | pb->intr_mask = PLANB_FRM_IRQ; | ||
2136 | enable_irq(pb->irq); | ||
2137 | |||
2138 | if(video_register_device(&pb->video_dev, VFL_TYPE_GRABBER, video_nr)<0) | ||
2139 | return -1; | ||
2140 | |||
2141 | return 0; | ||
2142 | } | ||
2143 | |||
2144 | /* | ||
2145 | * Scan for a PlanB controller, request the irq and map the io memory | ||
2146 | */ | ||
2147 | |||
2148 | static int find_planb(void) | ||
2149 | { | ||
2150 | struct planb *pb; | ||
2151 | struct device_node *planb_devices; | ||
2152 | unsigned char dev_fn, confreg, bus; | ||
2153 | unsigned int old_base, new_base; | ||
2154 | unsigned int irq; | ||
2155 | struct pci_dev *pdev; | ||
2156 | int rc; | ||
2157 | |||
2158 | if (!machine_is(powermac)) | ||
2159 | return 0; | ||
2160 | |||
2161 | planb_devices = of_find_node_by_name(NULL, "planb"); | ||
2162 | if (planb_devices == 0) { | ||
2163 | planb_num=0; | ||
2164 | printk(KERN_WARNING "PlanB: no device found!\n"); | ||
2165 | return planb_num; | ||
2166 | } | ||
2167 | |||
2168 | if (planb_devices->next != NULL) | ||
2169 | printk(KERN_ERR "Warning: only using first PlanB device!\n"); | ||
2170 | pb = &planbs[0]; | ||
2171 | planb_num = 1; | ||
2172 | |||
2173 | if (planb_devices->n_addrs != 1) { | ||
2174 | printk (KERN_WARNING "PlanB: expecting 1 address for planb " | ||
2175 | "(got %d)", planb_devices->n_addrs); | ||
2176 | of_node_put(planb_devices); | ||
2177 | return 0; | ||
2178 | } | ||
2179 | |||
2180 | if (planb_devices->n_intrs == 0) { | ||
2181 | printk(KERN_WARNING "PlanB: no intrs for device %s\n", | ||
2182 | planb_devices->full_name); | ||
2183 | of_node_put(planb_devices); | ||
2184 | return 0; | ||
2185 | } else { | ||
2186 | irq = planb_devices->intrs[0].line; | ||
2187 | } | ||
2188 | |||
2189 | /* Initialize PlanB's PCI registers */ | ||
2190 | |||
2191 | /* There is a bug with the way OF assigns addresses | ||
2192 | to the devices behind the chaos bridge. | ||
2193 | control needs only 0x1000 of space, but decodes only | ||
2194 | the upper 16 bits. It therefore occupies a full 64K. | ||
2195 | OF assigns the planb controller memory within this space; | ||
2196 | so we need to change that here in order to access planb. */ | ||
2197 | |||
2198 | /* We remap to 0xf1000000 in hope that nobody uses it ! */ | ||
2199 | |||
2200 | bus = (planb_devices->addrs[0].space >> 16) & 0xff; | ||
2201 | dev_fn = (planb_devices->addrs[0].space >> 8) & 0xff; | ||
2202 | confreg = planb_devices->addrs[0].space & 0xff; | ||
2203 | old_base = planb_devices->addrs[0].address; | ||
2204 | new_base = 0xf1000000; | ||
2205 | of_node_put(planb_devices); | ||
2206 | |||
2207 | DEBUG("PlanB: Found on bus %d, dev %d, func %d, " | ||
2208 | "membase 0x%x (base reg. 0x%x)\n", | ||
2209 | bus, PCI_SLOT(dev_fn), PCI_FUNC(dev_fn), old_base, confreg); | ||
2210 | |||
2211 | pdev = pci_get_bus_and_slot(bus, dev_fn); | ||
2212 | if (!pdev) { | ||
2213 | printk(KERN_ERR "planb: cannot find slot\n"); | ||
2214 | goto err_out; | ||
2215 | } | ||
2216 | |||
2217 | /* Enable response in memory space, bus mastering, | ||
2218 | use memory write and invalidate */ | ||
2219 | rc = pci_enable_device(pdev); | ||
2220 | if (rc) { | ||
2221 | printk(KERN_ERR "planb: cannot enable PCI device %s\n", | ||
2222 | pci_name(pdev)); | ||
2223 | goto err_out; | ||
2224 | } | ||
2225 | rc = pci_set_mwi(pdev); | ||
2226 | if (rc) { | ||
2227 | printk(KERN_ERR "planb: cannot enable MWI on PCI device %s\n", | ||
2228 | pci_name(pdev)); | ||
2229 | goto err_out_disable; | ||
2230 | } | ||
2231 | pci_set_master(pdev); | ||
2232 | |||
2233 | /* Set the new base address */ | ||
2234 | pci_write_config_dword (pdev, confreg, new_base); | ||
2235 | |||
2236 | planb_regs = (volatile struct planb_registers *) | ||
2237 | ioremap (new_base, 0x400); | ||
2238 | pb->planb_base = planb_regs; | ||
2239 | pb->planb_base_phys = (struct planb_registers *)new_base; | ||
2240 | pb->irq = irq; | ||
2241 | pb->dev = pdev; | ||
2242 | |||
2243 | return planb_num; | ||
2244 | |||
2245 | err_out_disable: | ||
2246 | pci_disable_device(pdev); | ||
2247 | err_out: | ||
2248 | /* FIXME handle error */ /* comment moved from pci_find_slot, above */ | ||
2249 | pci_dev_put(pdev); | ||
2250 | return 0; | ||
2251 | } | ||
2252 | |||
2253 | static void release_planb(void) | ||
2254 | { | ||
2255 | int i; | ||
2256 | struct planb *pb; | ||
2257 | |||
2258 | for (i=0;i<planb_num; i++) | ||
2259 | { | ||
2260 | pb=&planbs[i]; | ||
2261 | |||
2262 | /* stop and flash DMAs unconditionally */ | ||
2263 | planb_dbdma_stop(&pb->planb_base->ch2); | ||
2264 | planb_dbdma_stop(&pb->planb_base->ch1); | ||
2265 | |||
2266 | /* clear and free interrupts */ | ||
2267 | pb->intr_mask = PLANB_CLR_IRQ; | ||
2268 | out_le32 (&pb->planb_base->intr_stat, PLANB_CLR_IRQ); | ||
2269 | free_irq(pb->irq, pb); | ||
2270 | |||
2271 | /* make sure all allocated memory are freed */ | ||
2272 | planb_prepare_close(pb); | ||
2273 | |||
2274 | printk(KERN_INFO "PlanB: unregistering with v4l\n"); | ||
2275 | video_unregister_device(&pb->video_dev); | ||
2276 | |||
2277 | pci_dev_put(pb->dev); | ||
2278 | |||
2279 | /* note that iounmap() does nothing on the PPC right now */ | ||
2280 | iounmap ((void *)pb->planb_base); | ||
2281 | } | ||
2282 | } | ||
2283 | |||
2284 | static int __init init_planbs(void) | ||
2285 | { | ||
2286 | int i; | ||
2287 | |||
2288 | if (find_planb()<=0) | ||
2289 | return -EIO; | ||
2290 | |||
2291 | for (i=0; i<planb_num; i++) { | ||
2292 | if (init_planb(&planbs[i])<0) { | ||
2293 | printk(KERN_ERR "PlanB: error registering device %d" | ||
2294 | " with v4l\n", i); | ||
2295 | release_planb(); | ||
2296 | return -EIO; | ||
2297 | } | ||
2298 | printk(KERN_INFO "PlanB: registered device %d with v4l\n", i); | ||
2299 | } | ||
2300 | return 0; | ||
2301 | } | ||
2302 | |||
2303 | static void __exit exit_planbs(void) | ||
2304 | { | ||
2305 | release_planb(); | ||
2306 | } | ||
2307 | |||
2308 | module_init(init_planbs); | ||
2309 | module_exit(exit_planbs); | ||
diff --git a/drivers/media/video/planb.h b/drivers/media/video/planb.h index e21b5735c103..e69de29bb2d1 100644 --- a/drivers/media/video/planb.h +++ b/drivers/media/video/planb.h | |||
@@ -1,232 +0,0 @@ | |||
1 | /* | ||
2 | planb - PlanB frame grabber driver | ||
3 | |||
4 | PlanB is used in the 7x00/8x00 series of PowerMacintosh | ||
5 | Computers as video input DMA controller. | ||
6 | |||
7 | Copyright (C) 1998 Michel Lanners (mlan@cpu.lu) | ||
8 | |||
9 | Based largely on the bttv driver by Ralph Metzler (rjkm@thp.uni-koeln.de) | ||
10 | |||
11 | Additional debugging and coding by Takashi Oe (toe@unlserve.unl.edu) | ||
12 | |||
13 | |||
14 | This program is free software; you can redistribute it and/or modify | ||
15 | it under the terms of the GNU General Public License as published by | ||
16 | the Free Software Foundation; either version 2 of the License, or | ||
17 | (at your option) any later version. | ||
18 | |||
19 | This program is distributed in the hope that it will be useful, | ||
20 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
21 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
22 | GNU General Public License for more details. | ||
23 | |||
24 | You should have received a copy of the GNU General Public License | ||
25 | along with this program; if not, write to the Free Software | ||
26 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
27 | */ | ||
28 | |||
29 | /* $Id: planb.h,v 1.13 1999/05/03 19:28:56 mlan Exp $ */ | ||
30 | |||
31 | #ifndef _PLANB_H_ | ||
32 | #define _PLANB_H_ | ||
33 | |||
34 | #ifdef __KERNEL__ | ||
35 | #include <asm/dbdma.h> | ||
36 | #include "saa7196.h" | ||
37 | #endif /* __KERNEL__ */ | ||
38 | |||
39 | #define PLANB_DEVICE_NAME "Apple PlanB Video-In" | ||
40 | #define PLANB_REV "1.0" | ||
41 | |||
42 | #ifdef __KERNEL__ | ||
43 | //#define PLANB_GSCANLINE /* use this if apps have the notion of */ | ||
44 | /* grab buffer scanline */ | ||
45 | /* This should be safe for both PAL and NTSC */ | ||
46 | #define PLANB_MAXPIXELS 768 | ||
47 | #define PLANB_MAXLINES 576 | ||
48 | #define PLANB_NTSC_MAXLINES 480 | ||
49 | |||
50 | /* Uncomment your preferred norm ;-) */ | ||
51 | #define PLANB_DEF_NORM VIDEO_MODE_PAL | ||
52 | //#define PLANB_DEF_NORM VIDEO_MODE_NTSC | ||
53 | //#define PLANB_DEF_NORM VIDEO_MODE_SECAM | ||
54 | |||
55 | /* fields settings */ | ||
56 | #define PLANB_GRAY 0x1 /* 8-bit mono? */ | ||
57 | #define PLANB_COLOUR15 0x2 /* 16-bit mode */ | ||
58 | #define PLANB_COLOUR32 0x4 /* 32-bit mode */ | ||
59 | #define PLANB_CLIPMASK 0x8 /* hardware clipmasking */ | ||
60 | |||
61 | /* misc. flags for PlanB DMA operation */ | ||
62 | #define CH_SYNC 0x1 /* synchronize channels (set by ch1; | ||
63 | cleared by ch2) */ | ||
64 | #define FIELD_SYNC 0x2 /* used for the start of each field | ||
65 | (0 -> 1 -> 0 for ch1; 0 -> 1 for ch2) */ | ||
66 | #define EVEN_FIELD 0x0 /* even field is detected if unset */ | ||
67 | #define DMA_ABORT 0x2 /* error or just out of sync if set */ | ||
68 | #define ODD_FIELD 0x4 /* odd field is detected if set */ | ||
69 | |||
70 | /* for capture operations */ | ||
71 | #define MAX_GBUFFERS 2 | ||
72 | /* note PLANB_MAX_FBUF must be divisible by PAGE_SIZE */ | ||
73 | #ifdef PLANB_GSCANLINE | ||
74 | #define PLANB_MAX_FBUF 0x240000 /* 576 * 1024 * 4 */ | ||
75 | #define TAB_FACTOR (1) | ||
76 | #else | ||
77 | #define PLANB_MAX_FBUF 0x1b0000 /* 576 * 768 * 4 */ | ||
78 | #define TAB_FACTOR (2) | ||
79 | #endif | ||
80 | #endif /* __KERNEL__ */ | ||
81 | |||
82 | struct planb_saa_regs { | ||
83 | unsigned char addr; | ||
84 | unsigned char val; | ||
85 | }; | ||
86 | |||
87 | struct planb_stat_regs { | ||
88 | unsigned int ch1_stat; | ||
89 | unsigned int ch2_stat; | ||
90 | unsigned char saa_stat0; | ||
91 | unsigned char saa_stat1; | ||
92 | }; | ||
93 | |||
94 | struct planb_any_regs { | ||
95 | unsigned int offset; | ||
96 | unsigned int bytes; | ||
97 | unsigned char data[128]; | ||
98 | }; | ||
99 | |||
100 | /* planb private ioctls */ | ||
101 | #define PLANBIOCGSAAREGS _IOWR('v', BASE_VIDIOCPRIVATE, struct planb_saa_regs) /* Read a saa7196 reg value */ | ||
102 | #define PLANBIOCSSAAREGS _IOW('v', BASE_VIDIOCPRIVATE + 1, struct planb_saa_regs) /* Set a saa7196 reg value */ | ||
103 | #define PLANBIOCGSTAT _IOR('v', BASE_VIDIOCPRIVATE + 2, struct planb_stat_regs) /* Read planb status */ | ||
104 | #define PLANB_TV_MODE 1 | ||
105 | #define PLANB_VTR_MODE 2 | ||
106 | #define PLANBIOCGMODE _IOR('v', BASE_VIDIOCPRIVATE + 3, int) /* Get TV/VTR mode */ | ||
107 | #define PLANBIOCSMODE _IOW('v', BASE_VIDIOCPRIVATE + 4, int) /* Set TV/VTR mode */ | ||
108 | |||
109 | #ifdef PLANB_GSCANLINE | ||
110 | #define PLANBG_GRAB_BPL _IOR('v', BASE_VIDIOCPRIVATE + 5, int) /* # of bytes per scanline in grab buffer */ | ||
111 | #endif | ||
112 | |||
113 | /* call wake_up_interruptible() with appropriate actions */ | ||
114 | #define PLANB_INTR_DEBUG _IOW('v', BASE_VIDIOCPRIVATE + 20, int) | ||
115 | /* investigate which reg does what */ | ||
116 | #define PLANB_INV_REGS _IOWR('v', BASE_VIDIOCPRIVATE + 21, struct planb_any_regs) | ||
117 | |||
118 | #ifdef __KERNEL__ | ||
119 | |||
120 | /* Potentially useful macros */ | ||
121 | #define PLANB_SET(x) ((x) << 16 | (x)) | ||
122 | #define PLANB_CLR(x) ((x) << 16) | ||
123 | |||
124 | /* This represents the physical register layout */ | ||
125 | struct planb_registers { | ||
126 | volatile struct dbdma_regs ch1; /* 0x00: video in */ | ||
127 | volatile unsigned int even; /* 0x40: even field setting */ | ||
128 | volatile unsigned int odd; /* 0x44; odd field setting */ | ||
129 | unsigned int pad1[14]; /* empty? */ | ||
130 | volatile struct dbdma_regs ch2; /* 0x80: clipmask out */ | ||
131 | unsigned int pad2[16]; /* 0xc0: empty? */ | ||
132 | volatile unsigned int reg3; /* 0x100: ???? */ | ||
133 | volatile unsigned int intr_stat; /* 0x104: irq status */ | ||
134 | #define PLANB_CLR_IRQ 0x00 /* clear Plan B interrupt */ | ||
135 | #define PLANB_GEN_IRQ 0x01 /* assert Plan B interrupt */ | ||
136 | #define PLANB_FRM_IRQ 0x0100 /* end of frame */ | ||
137 | unsigned int pad3[1]; /* empty? */ | ||
138 | volatile unsigned int reg5; /* 0x10c: ??? */ | ||
139 | unsigned int pad4[60]; /* empty? */ | ||
140 | volatile unsigned char saa_addr; /* 0x200: SAA subadr */ | ||
141 | char pad5[3]; | ||
142 | volatile unsigned char saa_regval; /* SAA7196 write reg. val */ | ||
143 | char pad6[3]; | ||
144 | volatile unsigned char saa_status; /* SAA7196 status byte */ | ||
145 | /* There is more unused stuff here */ | ||
146 | }; | ||
147 | |||
148 | struct planb_window { | ||
149 | int x, y; | ||
150 | ushort width, height; | ||
151 | ushort bpp, bpl, depth, pad; | ||
152 | ushort swidth, sheight; | ||
153 | int norm; | ||
154 | int interlace; | ||
155 | u32 color_fmt; | ||
156 | int chromakey; | ||
157 | int mode; /* used to switch between TV/VTR modes */ | ||
158 | }; | ||
159 | |||
160 | struct planb_suspend { | ||
161 | int overlay; | ||
162 | int frame; | ||
163 | struct dbdma_cmd cmd; | ||
164 | }; | ||
165 | |||
166 | struct planb { | ||
167 | struct video_device video_dev; | ||
168 | struct video_picture picture; /* Current picture params */ | ||
169 | struct video_audio audio_dev; /* Current audio params */ | ||
170 | |||
171 | volatile struct planb_registers *planb_base; /* virt base of planb */ | ||
172 | struct planb_registers *planb_base_phys; /* phys base of planb */ | ||
173 | void *priv_space; /* Org. alloc. mem for kfree */ | ||
174 | int user; | ||
175 | unsigned int tab_size; | ||
176 | int maxlines; | ||
177 | struct mutex lock; | ||
178 | unsigned int irq; /* interrupt number */ | ||
179 | volatile unsigned int intr_mask; | ||
180 | struct pci_dev *dev; /* Our PCI device */ | ||
181 | |||
182 | int overlay; /* overlay running? */ | ||
183 | struct planb_window win; | ||
184 | unsigned long frame_buffer_phys; /* We need phys for DMA */ | ||
185 | int offset; /* offset of pixel 1 */ | ||
186 | volatile struct dbdma_cmd *ch1_cmd; /* Video In DMA cmd buffer */ | ||
187 | volatile struct dbdma_cmd *ch2_cmd; /* Clip Out DMA cmd buffer */ | ||
188 | volatile struct dbdma_cmd *overlay_last1; | ||
189 | volatile struct dbdma_cmd *overlay_last2; | ||
190 | unsigned long ch1_cmd_phys; | ||
191 | volatile unsigned char *mask; /* Clipmask buffer */ | ||
192 | int suspend; | ||
193 | wait_queue_head_t suspendq; | ||
194 | struct planb_suspend suspended; | ||
195 | int cmd_buff_inited; /* cmd buffer inited? */ | ||
196 | |||
197 | int grabbing; | ||
198 | unsigned int gcount; | ||
199 | wait_queue_head_t capq; | ||
200 | int last_fr; | ||
201 | int prev_last_fr; | ||
202 | unsigned char **rawbuf; | ||
203 | int rawbuf_size; | ||
204 | int gbuf_idx[MAX_GBUFFERS]; | ||
205 | volatile struct dbdma_cmd *cap_cmd[MAX_GBUFFERS]; | ||
206 | volatile struct dbdma_cmd *last_cmd[MAX_GBUFFERS]; | ||
207 | volatile struct dbdma_cmd *pre_cmd[MAX_GBUFFERS]; | ||
208 | int need_pre_capture[MAX_GBUFFERS]; | ||
209 | #define PLANB_DUMMY 40 /* # of command buf's allocated for pre-capture seq. */ | ||
210 | int gwidth[MAX_GBUFFERS], gheight[MAX_GBUFFERS]; | ||
211 | unsigned int gfmt[MAX_GBUFFERS]; | ||
212 | int gnorm_switch[MAX_GBUFFERS]; | ||
213 | volatile unsigned int *frame_stat; | ||
214 | #define GBUFFER_UNUSED 0x00U | ||
215 | #define GBUFFER_GRABBING 0x01U | ||
216 | #define GBUFFER_DONE 0x02U | ||
217 | #ifdef PLANB_GSCANLINE | ||
218 | int gbytes_per_line; | ||
219 | #else | ||
220 | #define MAX_LNUM 431 /* change this if PLANB_MAXLINES or */ | ||
221 | /* PLANB_MAXPIXELS changes */ | ||
222 | int l_fr_addr_idx[MAX_GBUFFERS]; | ||
223 | unsigned char *l_to_addr[MAX_GBUFFERS][MAX_LNUM]; | ||
224 | int l_to_next_idx[MAX_GBUFFERS][MAX_LNUM]; | ||
225 | int l_to_next_size[MAX_GBUFFERS][MAX_LNUM]; | ||
226 | int lsize[MAX_GBUFFERS], lnum[MAX_GBUFFERS]; | ||
227 | #endif | ||
228 | }; | ||
229 | |||
230 | #endif /* __KERNEL__ */ | ||
231 | |||
232 | #endif /* _PLANB_H_ */ | ||
diff --git a/drivers/media/video/pms.c b/drivers/media/video/pms.c index 51b1461d8fb6..00425d743656 100644 --- a/drivers/media/video/pms.c +++ b/drivers/media/video/pms.c | |||
@@ -30,6 +30,7 @@ | |||
30 | #include <asm/io.h> | 30 | #include <asm/io.h> |
31 | #include <linux/videodev.h> | 31 | #include <linux/videodev.h> |
32 | #include <media/v4l2-common.h> | 32 | #include <media/v4l2-common.h> |
33 | #include <media/v4l2-ioctl.h> | ||
33 | #include <linux/mutex.h> | 34 | #include <linux/mutex.h> |
34 | 35 | ||
35 | #include <asm/uaccess.h> | 36 | #include <asm/uaccess.h> |
@@ -894,9 +895,7 @@ static const struct file_operations pms_fops = { | |||
894 | 895 | ||
895 | static struct video_device pms_template= | 896 | static struct video_device pms_template= |
896 | { | 897 | { |
897 | .owner = THIS_MODULE, | ||
898 | .name = "Mediavision PMS", | 898 | .name = "Mediavision PMS", |
899 | .type = VID_TYPE_CAPTURE, | ||
900 | .fops = &pms_fops, | 899 | .fops = &pms_fops, |
901 | }; | 900 | }; |
902 | 901 | ||
diff --git a/drivers/media/video/pvrusb2/Kconfig b/drivers/media/video/pvrusb2/Kconfig index 4482b2c72ced..19eb274c9cd0 100644 --- a/drivers/media/video/pvrusb2/Kconfig +++ b/drivers/media/video/pvrusb2/Kconfig | |||
@@ -2,8 +2,6 @@ config VIDEO_PVRUSB2 | |||
2 | tristate "Hauppauge WinTV-PVR USB2 support" | 2 | tristate "Hauppauge WinTV-PVR USB2 support" |
3 | depends on VIDEO_V4L2 && I2C | 3 | depends on VIDEO_V4L2 && I2C |
4 | depends on VIDEO_MEDIA # Avoids pvrusb = Y / DVB = M | 4 | depends on VIDEO_MEDIA # Avoids pvrusb = Y / DVB = M |
5 | depends on HOTPLUG # due to FW_LOADER | ||
6 | select FW_LOADER | ||
7 | select VIDEO_TUNER | 5 | select VIDEO_TUNER |
8 | select VIDEO_TVEEPROM | 6 | select VIDEO_TVEEPROM |
9 | select VIDEO_CX2341X | 7 | select VIDEO_CX2341X |
diff --git a/drivers/media/video/pvrusb2/pvrusb2-context.h b/drivers/media/video/pvrusb2/pvrusb2-context.h index 61801291c2af..d657e53bbfa3 100644 --- a/drivers/media/video/pvrusb2/pvrusb2-context.h +++ b/drivers/media/video/pvrusb2/pvrusb2-context.h | |||
@@ -16,8 +16,8 @@ | |||
16 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | 16 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
17 | * | 17 | * |
18 | */ | 18 | */ |
19 | #ifndef __PVRUSB2_BASE_H | 19 | #ifndef __PVRUSB2_CONTEXT_H |
20 | #define __PVRUSB2_BASE_H | 20 | #define __PVRUSB2_CONTEXT_H |
21 | 21 | ||
22 | #include <linux/mutex.h> | 22 | #include <linux/mutex.h> |
23 | #include <linux/usb.h> | 23 | #include <linux/usb.h> |
diff --git a/drivers/media/video/pvrusb2/pvrusb2-devattr.c b/drivers/media/video/pvrusb2/pvrusb2-devattr.c index 5d036e7e3f07..88e175168438 100644 --- a/drivers/media/video/pvrusb2/pvrusb2-devattr.c +++ b/drivers/media/video/pvrusb2/pvrusb2-devattr.c | |||
@@ -97,13 +97,13 @@ static const struct pvr2_device_desc pvr2_device_24xxx = { | |||
97 | .flag_has_cx25840 = !0, | 97 | .flag_has_cx25840 = !0, |
98 | .flag_has_wm8775 = !0, | 98 | .flag_has_wm8775 = !0, |
99 | .flag_has_hauppauge_rom = !0, | 99 | .flag_has_hauppauge_rom = !0, |
100 | .flag_has_hauppauge_custom_ir = !0, | ||
101 | .flag_has_analogtuner = !0, | 100 | .flag_has_analogtuner = !0, |
102 | .flag_has_fmradio = !0, | 101 | .flag_has_fmradio = !0, |
103 | .flag_has_composite = !0, | 102 | .flag_has_composite = !0, |
104 | .flag_has_svideo = !0, | 103 | .flag_has_svideo = !0, |
105 | .signal_routing_scheme = PVR2_ROUTING_SCHEME_HAUPPAUGE, | 104 | .signal_routing_scheme = PVR2_ROUTING_SCHEME_HAUPPAUGE, |
106 | .led_scheme = PVR2_LED_SCHEME_HAUPPAUGE, | 105 | .led_scheme = PVR2_LED_SCHEME_HAUPPAUGE, |
106 | .ir_scheme = PVR2_IR_SCHEME_24XXX, | ||
107 | }; | 107 | }; |
108 | 108 | ||
109 | 109 | ||
@@ -330,7 +330,7 @@ static const char *pvr2_fw1_names_73xxx[] = { | |||
330 | }; | 330 | }; |
331 | 331 | ||
332 | static const struct pvr2_device_desc pvr2_device_73xxx = { | 332 | static const struct pvr2_device_desc pvr2_device_73xxx = { |
333 | .description = "WinTV PVR USB2 Model Category 73xxx", | 333 | .description = "WinTV HVR-1900 Model Category 73xxx", |
334 | .shortname = "73xxx", | 334 | .shortname = "73xxx", |
335 | .client_modules.lst = pvr2_client_73xxx, | 335 | .client_modules.lst = pvr2_client_73xxx, |
336 | .client_modules.cnt = ARRAY_SIZE(pvr2_client_73xxx), | 336 | .client_modules.cnt = ARRAY_SIZE(pvr2_client_73xxx), |
@@ -344,6 +344,7 @@ static const struct pvr2_device_desc pvr2_device_73xxx = { | |||
344 | .signal_routing_scheme = PVR2_ROUTING_SCHEME_HAUPPAUGE, | 344 | .signal_routing_scheme = PVR2_ROUTING_SCHEME_HAUPPAUGE, |
345 | .digital_control_scheme = PVR2_DIGITAL_SCHEME_HAUPPAUGE, | 345 | .digital_control_scheme = PVR2_DIGITAL_SCHEME_HAUPPAUGE, |
346 | .led_scheme = PVR2_LED_SCHEME_HAUPPAUGE, | 346 | .led_scheme = PVR2_LED_SCHEME_HAUPPAUGE, |
347 | .ir_scheme = PVR2_IR_SCHEME_ZILOG, | ||
347 | #ifdef CONFIG_VIDEO_PVRUSB2_DVB | 348 | #ifdef CONFIG_VIDEO_PVRUSB2_DVB |
348 | .dvb_props = &pvr2_73xxx_dvb_props, | 349 | .dvb_props = &pvr2_73xxx_dvb_props, |
349 | #endif | 350 | #endif |
@@ -438,7 +439,7 @@ static const char *pvr2_fw1_names_75xxx[] = { | |||
438 | }; | 439 | }; |
439 | 440 | ||
440 | static const struct pvr2_device_desc pvr2_device_750xx = { | 441 | static const struct pvr2_device_desc pvr2_device_750xx = { |
441 | .description = "WinTV PVR USB2 Model Category 750xx", | 442 | .description = "WinTV HVR-1950 Model Category 750xx", |
442 | .shortname = "750xx", | 443 | .shortname = "750xx", |
443 | .client_modules.lst = pvr2_client_75xxx, | 444 | .client_modules.lst = pvr2_client_75xxx, |
444 | .client_modules.cnt = ARRAY_SIZE(pvr2_client_75xxx), | 445 | .client_modules.cnt = ARRAY_SIZE(pvr2_client_75xxx), |
@@ -453,13 +454,14 @@ static const struct pvr2_device_desc pvr2_device_750xx = { | |||
453 | .digital_control_scheme = PVR2_DIGITAL_SCHEME_HAUPPAUGE, | 454 | .digital_control_scheme = PVR2_DIGITAL_SCHEME_HAUPPAUGE, |
454 | .default_std_mask = V4L2_STD_NTSC_M, | 455 | .default_std_mask = V4L2_STD_NTSC_M, |
455 | .led_scheme = PVR2_LED_SCHEME_HAUPPAUGE, | 456 | .led_scheme = PVR2_LED_SCHEME_HAUPPAUGE, |
457 | .ir_scheme = PVR2_IR_SCHEME_ZILOG, | ||
456 | #ifdef CONFIG_VIDEO_PVRUSB2_DVB | 458 | #ifdef CONFIG_VIDEO_PVRUSB2_DVB |
457 | .dvb_props = &pvr2_750xx_dvb_props, | 459 | .dvb_props = &pvr2_750xx_dvb_props, |
458 | #endif | 460 | #endif |
459 | }; | 461 | }; |
460 | 462 | ||
461 | static const struct pvr2_device_desc pvr2_device_751xx = { | 463 | static const struct pvr2_device_desc pvr2_device_751xx = { |
462 | .description = "WinTV PVR USB2 Model Category 751xx", | 464 | .description = "WinTV HVR-1950 Model Category 751xx", |
463 | .shortname = "751xx", | 465 | .shortname = "751xx", |
464 | .client_modules.lst = pvr2_client_75xxx, | 466 | .client_modules.lst = pvr2_client_75xxx, |
465 | .client_modules.cnt = ARRAY_SIZE(pvr2_client_75xxx), | 467 | .client_modules.cnt = ARRAY_SIZE(pvr2_client_75xxx), |
@@ -474,6 +476,7 @@ static const struct pvr2_device_desc pvr2_device_751xx = { | |||
474 | .digital_control_scheme = PVR2_DIGITAL_SCHEME_HAUPPAUGE, | 476 | .digital_control_scheme = PVR2_DIGITAL_SCHEME_HAUPPAUGE, |
475 | .default_std_mask = V4L2_STD_NTSC_M, | 477 | .default_std_mask = V4L2_STD_NTSC_M, |
476 | .led_scheme = PVR2_LED_SCHEME_HAUPPAUGE, | 478 | .led_scheme = PVR2_LED_SCHEME_HAUPPAUGE, |
479 | .ir_scheme = PVR2_IR_SCHEME_ZILOG, | ||
477 | #ifdef CONFIG_VIDEO_PVRUSB2_DVB | 480 | #ifdef CONFIG_VIDEO_PVRUSB2_DVB |
478 | .dvb_props = &pvr2_751xx_dvb_props, | 481 | .dvb_props = &pvr2_751xx_dvb_props, |
479 | #endif | 482 | #endif |
diff --git a/drivers/media/video/pvrusb2/pvrusb2-devattr.h b/drivers/media/video/pvrusb2/pvrusb2-devattr.h index e23ce1d2edd7..cb3a33eb0276 100644 --- a/drivers/media/video/pvrusb2/pvrusb2-devattr.h +++ b/drivers/media/video/pvrusb2/pvrusb2-devattr.h | |||
@@ -48,6 +48,10 @@ struct pvr2_string_table { | |||
48 | #define PVR2_LED_SCHEME_NONE 0 | 48 | #define PVR2_LED_SCHEME_NONE 0 |
49 | #define PVR2_LED_SCHEME_HAUPPAUGE 1 | 49 | #define PVR2_LED_SCHEME_HAUPPAUGE 1 |
50 | 50 | ||
51 | #define PVR2_IR_SCHEME_NONE 0 | ||
52 | #define PVR2_IR_SCHEME_24XXX 1 | ||
53 | #define PVR2_IR_SCHEME_ZILOG 2 | ||
54 | |||
51 | /* This describes a particular hardware type (except for the USB device ID | 55 | /* This describes a particular hardware type (except for the USB device ID |
52 | which must live in a separate structure due to environmental | 56 | which must live in a separate structure due to environmental |
53 | constraints). See the top of pvrusb2-hdw.c for where this is | 57 | constraints). See the top of pvrusb2-hdw.c for where this is |
@@ -126,15 +130,19 @@ struct pvr2_device_desc { | |||
126 | ensure that it is found. */ | 130 | ensure that it is found. */ |
127 | unsigned int flag_has_wm8775:1; | 131 | unsigned int flag_has_wm8775:1; |
128 | 132 | ||
129 | /* Device has IR hardware that can be faked into looking like a | 133 | /* Indicate any specialized IR scheme that might need to be |
130 | normal Hauppauge i2c IR receiver. This is currently very | 134 | supported by this driver. If not set, then it is assumed that |
131 | specific to the 24xxx device, where Hauppauge had replaced their | 135 | IR can work without help from the driver (which is frequently |
132 | 'standard' I2C IR receiver with a bunch of FPGA logic controlled | 136 | the case). This is otherwise set to one of |
133 | directly via the FX2. Turning this on tells the pvrusb2 driver | 137 | PVR2_IR_SCHEME_xxxx. For "xxxx", the value "24XXX" indicates a |
134 | to virtualize the presence of the non-existant IR receiver chip and | 138 | Hauppauge 24xxx class device which has an FPGA-hosted IR |
135 | implement the virtual receiver in terms of appropriate FX2 | 139 | receiver that can only be reached via FX2 command codes. In |
136 | commands. */ | 140 | that case the pvrusb2 driver will emulate the behavior of the |
137 | unsigned int flag_has_hauppauge_custom_ir:1; | 141 | older 29xxx device's IR receiver (a "virtual" I2C chip) in terms |
142 | of those command codes. For the value "ZILOG", we're dealing | ||
143 | with an IR chip that must be taken out of reset via another FX2 | ||
144 | command code (which is the case for HVR-1950 devices). */ | ||
145 | unsigned int ir_scheme:2; | ||
138 | 146 | ||
139 | /* These bits define which kinds of sources the device can handle. | 147 | /* These bits define which kinds of sources the device can handle. |
140 | Note: Digital tuner presence is inferred by the | 148 | Note: Digital tuner presence is inferred by the |
diff --git a/drivers/media/video/pvrusb2/pvrusb2-fx2-cmd.h b/drivers/media/video/pvrusb2/pvrusb2-fx2-cmd.h index b58369e7f30b..614755ea2ea3 100644 --- a/drivers/media/video/pvrusb2/pvrusb2-fx2-cmd.h +++ b/drivers/media/video/pvrusb2/pvrusb2-fx2-cmd.h | |||
@@ -24,6 +24,8 @@ | |||
24 | #define FX2CMD_MEM_WRITE_DWORD 0x01u | 24 | #define FX2CMD_MEM_WRITE_DWORD 0x01u |
25 | #define FX2CMD_MEM_READ_DWORD 0x02u | 25 | #define FX2CMD_MEM_READ_DWORD 0x02u |
26 | 26 | ||
27 | #define FX2CMD_HCW_ZILOG_RESET 0x10u /* 1=reset 0=release */ | ||
28 | |||
27 | #define FX2CMD_MEM_READ_64BYTES 0x28u | 29 | #define FX2CMD_MEM_READ_64BYTES 0x28u |
28 | 30 | ||
29 | #define FX2CMD_REG_WRITE 0x04u | 31 | #define FX2CMD_REG_WRITE 0x04u |
diff --git a/drivers/media/video/pvrusb2/pvrusb2-hdw.c b/drivers/media/video/pvrusb2/pvrusb2-hdw.c index a5217a2cf4c0..f051c6aa7f1f 100644 --- a/drivers/media/video/pvrusb2/pvrusb2-hdw.c +++ b/drivers/media/video/pvrusb2/pvrusb2-hdw.c | |||
@@ -250,6 +250,7 @@ struct pvr2_fx2cmd_descdef { | |||
250 | static const struct pvr2_fx2cmd_descdef pvr2_fx2cmd_desc[] = { | 250 | static const struct pvr2_fx2cmd_descdef pvr2_fx2cmd_desc[] = { |
251 | {FX2CMD_MEM_WRITE_DWORD, "write encoder dword"}, | 251 | {FX2CMD_MEM_WRITE_DWORD, "write encoder dword"}, |
252 | {FX2CMD_MEM_READ_DWORD, "read encoder dword"}, | 252 | {FX2CMD_MEM_READ_DWORD, "read encoder dword"}, |
253 | {FX2CMD_HCW_ZILOG_RESET, "zilog IR reset control"}, | ||
253 | {FX2CMD_MEM_READ_64BYTES, "read encoder 64bytes"}, | 254 | {FX2CMD_MEM_READ_64BYTES, "read encoder 64bytes"}, |
254 | {FX2CMD_REG_WRITE, "write encoder register"}, | 255 | {FX2CMD_REG_WRITE, "write encoder register"}, |
255 | {FX2CMD_REG_READ, "read encoder register"}, | 256 | {FX2CMD_REG_READ, "read encoder register"}, |
@@ -1711,6 +1712,14 @@ static void pvr2_hdw_setup_low(struct pvr2_hdw *hdw) | |||
1711 | if (!pvr2_hdw_dev_ok(hdw)) return; | 1712 | if (!pvr2_hdw_dev_ok(hdw)) return; |
1712 | } | 1713 | } |
1713 | 1714 | ||
1715 | /* Take the IR chip out of reset, if appropriate */ | ||
1716 | if (hdw->hdw_desc->ir_scheme == PVR2_IR_SCHEME_ZILOG) { | ||
1717 | pvr2_issue_simple_cmd(hdw, | ||
1718 | FX2CMD_HCW_ZILOG_RESET | | ||
1719 | (1 << 8) | | ||
1720 | ((0) << 16)); | ||
1721 | } | ||
1722 | |||
1714 | // This step MUST happen after the earlier powerup step. | 1723 | // This step MUST happen after the earlier powerup step. |
1715 | pvr2_i2c_core_init(hdw); | 1724 | pvr2_i2c_core_init(hdw); |
1716 | if (!pvr2_hdw_dev_ok(hdw)) return; | 1725 | if (!pvr2_hdw_dev_ok(hdw)) return; |
diff --git a/drivers/media/video/pvrusb2/pvrusb2-i2c-core.c b/drivers/media/video/pvrusb2/pvrusb2-i2c-core.c index 9d3c18b24744..e600576a6c4b 100644 --- a/drivers/media/video/pvrusb2/pvrusb2-i2c-core.c +++ b/drivers/media/video/pvrusb2/pvrusb2-i2c-core.c | |||
@@ -979,7 +979,9 @@ void pvr2_i2c_core_init(struct pvr2_hdw *hdw) | |||
979 | printk(KERN_INFO "%s: IR disabled\n",hdw->name); | 979 | printk(KERN_INFO "%s: IR disabled\n",hdw->name); |
980 | hdw->i2c_func[0x18] = i2c_black_hole; | 980 | hdw->i2c_func[0x18] = i2c_black_hole; |
981 | } else if (ir_mode[hdw->unit_number] == 1) { | 981 | } else if (ir_mode[hdw->unit_number] == 1) { |
982 | if (hdw->hdw_desc->flag_has_hauppauge_custom_ir) { | 982 | if (hdw->hdw_desc->ir_scheme == PVR2_IR_SCHEME_24XXX) { |
983 | /* This comment is present PURELY to get | ||
984 | checkpatch.pl to STFU. Lovely, eh? */ | ||
983 | hdw->i2c_func[0x18] = i2c_24xxx_ir; | 985 | hdw->i2c_func[0x18] = i2c_24xxx_ir; |
984 | } | 986 | } |
985 | } | 987 | } |
diff --git a/drivers/media/video/pvrusb2/pvrusb2-v4l2.c b/drivers/media/video/pvrusb2/pvrusb2-v4l2.c index 0d72dc470fef..00306faeac01 100644 --- a/drivers/media/video/pvrusb2/pvrusb2-v4l2.c +++ b/drivers/media/video/pvrusb2/pvrusb2-v4l2.c | |||
@@ -30,6 +30,7 @@ | |||
30 | #include <linux/videodev2.h> | 30 | #include <linux/videodev2.h> |
31 | #include <media/v4l2-dev.h> | 31 | #include <media/v4l2-dev.h> |
32 | #include <media/v4l2-common.h> | 32 | #include <media/v4l2-common.h> |
33 | #include <media/v4l2-ioctl.h> | ||
33 | 34 | ||
34 | struct pvr2_v4l2_dev; | 35 | struct pvr2_v4l2_dev; |
35 | struct pvr2_v4l2_fh; | 36 | struct pvr2_v4l2_fh; |
@@ -1160,11 +1161,6 @@ static const struct file_operations vdev_fops = { | |||
1160 | 1161 | ||
1161 | 1162 | ||
1162 | static struct video_device vdev_template = { | 1163 | static struct video_device vdev_template = { |
1163 | .owner = THIS_MODULE, | ||
1164 | .type = VID_TYPE_CAPTURE | VID_TYPE_TUNER, | ||
1165 | .type2 = (V4L2_CAP_VIDEO_CAPTURE | V4L2_CAP_VBI_CAPTURE | ||
1166 | | V4L2_CAP_TUNER | V4L2_CAP_AUDIO | ||
1167 | | V4L2_CAP_READWRITE), | ||
1168 | .fops = &vdev_fops, | 1164 | .fops = &vdev_fops, |
1169 | }; | 1165 | }; |
1170 | 1166 | ||
diff --git a/drivers/media/video/pwc/pwc-if.c b/drivers/media/video/pwc/pwc-if.c index 423fa7c2d0c9..9aee7cb6f79a 100644 --- a/drivers/media/video/pwc/pwc-if.c +++ b/drivers/media/video/pwc/pwc-if.c | |||
@@ -165,9 +165,7 @@ static const struct file_operations pwc_fops = { | |||
165 | .llseek = no_llseek, | 165 | .llseek = no_llseek, |
166 | }; | 166 | }; |
167 | static struct video_device pwc_template = { | 167 | static struct video_device pwc_template = { |
168 | .owner = THIS_MODULE, | ||
169 | .name = "Philips Webcam", /* Filled in later */ | 168 | .name = "Philips Webcam", /* Filled in later */ |
170 | .type = VID_TYPE_CAPTURE, | ||
171 | .release = video_device_release, | 169 | .release = video_device_release, |
172 | .fops = &pwc_fops, | 170 | .fops = &pwc_fops, |
173 | .minor = -1, | 171 | .minor = -1, |
@@ -1048,19 +1046,20 @@ static int pwc_create_sysfs_files(struct video_device *vdev) | |||
1048 | struct pwc_device *pdev = video_get_drvdata(vdev); | 1046 | struct pwc_device *pdev = video_get_drvdata(vdev); |
1049 | int rc; | 1047 | int rc; |
1050 | 1048 | ||
1051 | rc = video_device_create_file(vdev, &dev_attr_button); | 1049 | rc = device_create_file(&vdev->dev, &dev_attr_button); |
1052 | if (rc) | 1050 | if (rc) |
1053 | goto err; | 1051 | goto err; |
1054 | if (pdev->features & FEATURE_MOTOR_PANTILT) { | 1052 | if (pdev->features & FEATURE_MOTOR_PANTILT) { |
1055 | rc = video_device_create_file(vdev, &dev_attr_pan_tilt); | 1053 | rc = device_create_file(&vdev->dev, &dev_attr_pan_tilt); |
1056 | if (rc) goto err_button; | 1054 | if (rc) goto err_button; |
1057 | } | 1055 | } |
1058 | 1056 | ||
1059 | return 0; | 1057 | return 0; |
1060 | 1058 | ||
1061 | err_button: | 1059 | err_button: |
1062 | video_device_remove_file(vdev, &dev_attr_button); | 1060 | device_remove_file(&vdev->dev, &dev_attr_button); |
1063 | err: | 1061 | err: |
1062 | PWC_ERROR("Could not create sysfs files.\n"); | ||
1064 | return rc; | 1063 | return rc; |
1065 | } | 1064 | } |
1066 | 1065 | ||
@@ -1068,8 +1067,8 @@ static void pwc_remove_sysfs_files(struct video_device *vdev) | |||
1068 | { | 1067 | { |
1069 | struct pwc_device *pdev = video_get_drvdata(vdev); | 1068 | struct pwc_device *pdev = video_get_drvdata(vdev); |
1070 | if (pdev->features & FEATURE_MOTOR_PANTILT) | 1069 | if (pdev->features & FEATURE_MOTOR_PANTILT) |
1071 | video_device_remove_file(vdev, &dev_attr_pan_tilt); | 1070 | device_remove_file(&vdev->dev, &dev_attr_pan_tilt); |
1072 | video_device_remove_file(vdev, &dev_attr_button); | 1071 | device_remove_file(&vdev->dev, &dev_attr_button); |
1073 | } | 1072 | } |
1074 | 1073 | ||
1075 | #ifdef CONFIG_USB_PWC_DEBUG | 1074 | #ifdef CONFIG_USB_PWC_DEBUG |
@@ -1767,9 +1766,8 @@ static int usb_pwc_probe(struct usb_interface *intf, const struct usb_device_id | |||
1767 | return -ENOMEM; | 1766 | return -ENOMEM; |
1768 | } | 1767 | } |
1769 | memcpy(pdev->vdev, &pwc_template, sizeof(pwc_template)); | 1768 | memcpy(pdev->vdev, &pwc_template, sizeof(pwc_template)); |
1770 | pdev->vdev->dev = &(udev->dev); | 1769 | pdev->vdev->parent = &(udev->dev); |
1771 | strcpy(pdev->vdev->name, name); | 1770 | strcpy(pdev->vdev->name, name); |
1772 | pdev->vdev->owner = THIS_MODULE; | ||
1773 | video_set_drvdata(pdev->vdev, pdev); | 1771 | video_set_drvdata(pdev->vdev, pdev); |
1774 | 1772 | ||
1775 | pdev->release = le16_to_cpu(udev->descriptor.bcdDevice); | 1773 | pdev->release = le16_to_cpu(udev->descriptor.bcdDevice); |
diff --git a/drivers/media/video/pwc/pwc.h b/drivers/media/video/pwc/pwc.h index 8e8e5b27e77e..74178754b39b 100644 --- a/drivers/media/video/pwc/pwc.h +++ b/drivers/media/video/pwc/pwc.h | |||
@@ -32,9 +32,11 @@ | |||
32 | #include <linux/smp_lock.h> | 32 | #include <linux/smp_lock.h> |
33 | #include <linux/version.h> | 33 | #include <linux/version.h> |
34 | #include <linux/mutex.h> | 34 | #include <linux/mutex.h> |
35 | #include <linux/mm.h> | ||
35 | #include <asm/errno.h> | 36 | #include <asm/errno.h> |
36 | #include <linux/videodev.h> | 37 | #include <linux/videodev.h> |
37 | #include <media/v4l2-common.h> | 38 | #include <media/v4l2-common.h> |
39 | #include <media/v4l2-ioctl.h> | ||
38 | 40 | ||
39 | #include "pwc-uncompress.h" | 41 | #include "pwc-uncompress.h" |
40 | #include <media/pwc-ioctl.h> | 42 | #include <media/pwc-ioctl.h> |
diff --git a/drivers/media/video/s2255drv.c b/drivers/media/video/s2255drv.c index 04eb2c3fabd8..b1d09d8e2b85 100644 --- a/drivers/media/video/s2255drv.c +++ b/drivers/media/video/s2255drv.c | |||
@@ -47,8 +47,10 @@ | |||
47 | #include <linux/mutex.h> | 47 | #include <linux/mutex.h> |
48 | #include <linux/videodev2.h> | 48 | #include <linux/videodev2.h> |
49 | #include <linux/version.h> | 49 | #include <linux/version.h> |
50 | #include <linux/mm.h> | ||
50 | #include <media/videobuf-vmalloc.h> | 51 | #include <media/videobuf-vmalloc.h> |
51 | #include <media/v4l2-common.h> | 52 | #include <media/v4l2-common.h> |
53 | #include <media/v4l2-ioctl.h> | ||
52 | #include <linux/vmalloc.h> | 54 | #include <linux/vmalloc.h> |
53 | #include <linux/usb.h> | 55 | #include <linux/usb.h> |
54 | 56 | ||
@@ -184,6 +186,7 @@ struct s2255_dmaqueue { | |||
184 | #define S2255_FW_LOADED_DSPWAIT 1 | 186 | #define S2255_FW_LOADED_DSPWAIT 1 |
185 | #define S2255_FW_SUCCESS 2 | 187 | #define S2255_FW_SUCCESS 2 |
186 | #define S2255_FW_FAILED 3 | 188 | #define S2255_FW_FAILED 3 |
189 | #define S2255_FW_DISCONNECTING 4 | ||
187 | 190 | ||
188 | struct s2255_fw { | 191 | struct s2255_fw { |
189 | int fw_loaded; | 192 | int fw_loaded; |
@@ -263,7 +266,6 @@ struct s2255_buffer { | |||
263 | 266 | ||
264 | struct s2255_fh { | 267 | struct s2255_fh { |
265 | struct s2255_dev *dev; | 268 | struct s2255_dev *dev; |
266 | unsigned int resources; | ||
267 | const struct s2255_fmt *fmt; | 269 | const struct s2255_fmt *fmt; |
268 | unsigned int width; | 270 | unsigned int width; |
269 | unsigned int height; | 271 | unsigned int height; |
@@ -273,14 +275,9 @@ struct s2255_fh { | |||
273 | /* mode below is the desired mode. | 275 | /* mode below is the desired mode. |
274 | mode in s2255_dev is the current mode that was last set */ | 276 | mode in s2255_dev is the current mode that was last set */ |
275 | struct s2255_mode mode; | 277 | struct s2255_mode mode; |
278 | int resources[MAX_CHANNELS]; | ||
276 | }; | 279 | }; |
277 | 280 | ||
278 | /* | ||
279 | * TODO: fixme S2255_MAX_USERS. Do not limit open driver handles. | ||
280 | * Limit V4L to one stream at a time. | ||
281 | */ | ||
282 | #define S2255_MAX_USERS 1 | ||
283 | |||
284 | #define CUR_USB_FWVER 774 /* current cypress EEPROM firmware version */ | 281 | #define CUR_USB_FWVER 774 /* current cypress EEPROM firmware version */ |
285 | #define S2255_MAJOR_VERSION 1 | 282 | #define S2255_MAJOR_VERSION 1 |
286 | #define S2255_MINOR_VERSION 13 | 283 | #define S2255_MINOR_VERSION 13 |
@@ -476,10 +473,9 @@ static void s2255_timer(unsigned long user_data) | |||
476 | dprintk(100, "s2255 timer\n"); | 473 | dprintk(100, "s2255 timer\n"); |
477 | if (usb_submit_urb(data->fw_urb, GFP_ATOMIC) < 0) { | 474 | if (usb_submit_urb(data->fw_urb, GFP_ATOMIC) < 0) { |
478 | printk(KERN_ERR "s2255: can't submit urb\n"); | 475 | printk(KERN_ERR "s2255: can't submit urb\n"); |
479 | if (data->fw) { | 476 | atomic_set(&data->fw_state, S2255_FW_FAILED); |
480 | release_firmware(data->fw); | 477 | /* wake up anything waiting for the firmware */ |
481 | data->fw = NULL; | 478 | wake_up(&data->wait_fw); |
482 | } | ||
483 | return; | 479 | return; |
484 | } | 480 | } |
485 | } | 481 | } |
@@ -509,13 +505,18 @@ static void s2255_fwchunk_complete(struct urb *urb) | |||
509 | struct usb_device *udev = urb->dev; | 505 | struct usb_device *udev = urb->dev; |
510 | int len; | 506 | int len; |
511 | dprintk(100, "udev %p urb %p", udev, urb); | 507 | dprintk(100, "udev %p urb %p", udev, urb); |
512 | /* TODO: fixme. reflect change in status */ | ||
513 | if (urb->status) { | 508 | if (urb->status) { |
514 | dev_err(&udev->dev, "URB failed with status %d", urb->status); | 509 | dev_err(&udev->dev, "URB failed with status %d", urb->status); |
510 | atomic_set(&data->fw_state, S2255_FW_FAILED); | ||
511 | /* wake up anything waiting for the firmware */ | ||
512 | wake_up(&data->wait_fw); | ||
515 | return; | 513 | return; |
516 | } | 514 | } |
517 | if (data->fw_urb == NULL) { | 515 | if (data->fw_urb == NULL) { |
518 | dev_err(&udev->dev, "early disconncect\n"); | 516 | dev_err(&udev->dev, "s2255 disconnected\n"); |
517 | atomic_set(&data->fw_state, S2255_FW_FAILED); | ||
518 | /* wake up anything waiting for the firmware */ | ||
519 | wake_up(&data->wait_fw); | ||
519 | return; | 520 | return; |
520 | } | 521 | } |
521 | #define CHUNK_SIZE 512 | 522 | #define CHUNK_SIZE 512 |
@@ -789,7 +790,8 @@ static int res_get(struct s2255_dev *dev, struct s2255_fh *fh) | |||
789 | } | 790 | } |
790 | /* it's free, grab it */ | 791 | /* it's free, grab it */ |
791 | dev->resources[fh->channel] = 1; | 792 | dev->resources[fh->channel] = 1; |
792 | dprintk(1, "res: get\n"); | 793 | fh->resources[fh->channel] = 1; |
794 | dprintk(1, "s2255: res: get\n"); | ||
793 | mutex_unlock(&dev->lock); | 795 | mutex_unlock(&dev->lock); |
794 | return 1; | 796 | return 1; |
795 | } | 797 | } |
@@ -799,9 +801,18 @@ static int res_locked(struct s2255_dev *dev, struct s2255_fh *fh) | |||
799 | return dev->resources[fh->channel]; | 801 | return dev->resources[fh->channel]; |
800 | } | 802 | } |
801 | 803 | ||
804 | static int res_check(struct s2255_fh *fh) | ||
805 | { | ||
806 | return fh->resources[fh->channel]; | ||
807 | } | ||
808 | |||
809 | |||
802 | static void res_free(struct s2255_dev *dev, struct s2255_fh *fh) | 810 | static void res_free(struct s2255_dev *dev, struct s2255_fh *fh) |
803 | { | 811 | { |
812 | mutex_lock(&dev->lock); | ||
804 | dev->resources[fh->channel] = 0; | 813 | dev->resources[fh->channel] = 0; |
814 | fh->resources[fh->channel] = 0; | ||
815 | mutex_unlock(&dev->lock); | ||
805 | dprintk(1, "res: put\n"); | 816 | dprintk(1, "res: put\n"); |
806 | } | 817 | } |
807 | 818 | ||
@@ -1232,7 +1243,7 @@ static int vidioc_streamon(struct file *file, void *priv, enum v4l2_buf_type i) | |||
1232 | } | 1243 | } |
1233 | 1244 | ||
1234 | if (!res_get(dev, fh)) { | 1245 | if (!res_get(dev, fh)) { |
1235 | dev_err(&dev->udev->dev, "res get busy\n"); | 1246 | dev_err(&dev->udev->dev, "s2255: stream busy\n"); |
1236 | return -EBUSY; | 1247 | return -EBUSY; |
1237 | } | 1248 | } |
1238 | 1249 | ||
@@ -1288,8 +1299,10 @@ static int vidioc_streamoff(struct file *file, void *priv, enum v4l2_buf_type i) | |||
1288 | } | 1299 | } |
1289 | s2255_stop_acquire(dev, fh->channel); | 1300 | s2255_stop_acquire(dev, fh->channel); |
1290 | res = videobuf_streamoff(&fh->vb_vidq); | 1301 | res = videobuf_streamoff(&fh->vb_vidq); |
1302 | if (res < 0) | ||
1303 | return res; | ||
1291 | res_free(dev, fh); | 1304 | res_free(dev, fh); |
1292 | return res; | 1305 | return 0; |
1293 | } | 1306 | } |
1294 | 1307 | ||
1295 | static int vidioc_s_std(struct file *file, void *priv, v4l2_std_id *i) | 1308 | static int vidioc_s_std(struct file *file, void *priv, v4l2_std_id *i) |
@@ -1462,12 +1475,7 @@ static int s2255_open(struct inode *inode, struct file *file) | |||
1462 | mutex_lock(&dev->open_lock); | 1475 | mutex_lock(&dev->open_lock); |
1463 | 1476 | ||
1464 | dev->users[cur_channel]++; | 1477 | dev->users[cur_channel]++; |
1465 | if (dev->users[cur_channel] > S2255_MAX_USERS) { | 1478 | dprintk(4, "s2255: open_handles %d\n", dev->users[cur_channel]); |
1466 | dev->users[cur_channel]--; | ||
1467 | mutex_unlock(&dev->open_lock); | ||
1468 | printk(KERN_INFO "s2255drv: too many open handles!\n"); | ||
1469 | return -EBUSY; | ||
1470 | } | ||
1471 | 1479 | ||
1472 | if (atomic_read(&dev->fw_data->fw_state) == S2255_FW_FAILED) { | 1480 | if (atomic_read(&dev->fw_data->fw_state) == S2255_FW_FAILED) { |
1473 | err("2255 firmware load failed. retrying.\n"); | 1481 | err("2255 firmware load failed. retrying.\n"); |
@@ -1478,7 +1486,8 @@ static int s2255_open(struct inode *inode, struct file *file) | |||
1478 | msecs_to_jiffies(S2255_LOAD_TIMEOUT)); | 1486 | msecs_to_jiffies(S2255_LOAD_TIMEOUT)); |
1479 | if (atomic_read(&dev->fw_data->fw_state) | 1487 | if (atomic_read(&dev->fw_data->fw_state) |
1480 | != S2255_FW_SUCCESS) { | 1488 | != S2255_FW_SUCCESS) { |
1481 | printk(KERN_INFO "2255 FW load failed after 2 tries\n"); | 1489 | printk(KERN_INFO "2255 FW load failed.\n"); |
1490 | dev->users[cur_channel]--; | ||
1482 | mutex_unlock(&dev->open_lock); | 1491 | mutex_unlock(&dev->open_lock); |
1483 | return -EFAULT; | 1492 | return -EFAULT; |
1484 | } | 1493 | } |
@@ -1494,6 +1503,7 @@ static int s2255_open(struct inode *inode, struct file *file) | |||
1494 | != S2255_FW_SUCCESS) { | 1503 | != S2255_FW_SUCCESS) { |
1495 | printk(KERN_INFO "2255 firmware not loaded" | 1504 | printk(KERN_INFO "2255 firmware not loaded" |
1496 | "try again\n"); | 1505 | "try again\n"); |
1506 | dev->users[cur_channel]--; | ||
1497 | mutex_unlock(&dev->open_lock); | 1507 | mutex_unlock(&dev->open_lock); |
1498 | return -EBUSY; | 1508 | return -EBUSY; |
1499 | } | 1509 | } |
@@ -1502,6 +1512,7 @@ static int s2255_open(struct inode *inode, struct file *file) | |||
1502 | /* allocate + initialize per filehandle data */ | 1512 | /* allocate + initialize per filehandle data */ |
1503 | fh = kzalloc(sizeof(*fh), GFP_KERNEL); | 1513 | fh = kzalloc(sizeof(*fh), GFP_KERNEL); |
1504 | if (NULL == fh) { | 1514 | if (NULL == fh) { |
1515 | dev->users[cur_channel]--; | ||
1505 | mutex_unlock(&dev->open_lock); | 1516 | mutex_unlock(&dev->open_lock); |
1506 | return -ENOMEM; | 1517 | return -ENOMEM; |
1507 | } | 1518 | } |
@@ -1561,44 +1572,48 @@ static void s2255_destroy(struct kref *kref) | |||
1561 | printk(KERN_ERR "s2255drv: kref problem\n"); | 1572 | printk(KERN_ERR "s2255drv: kref problem\n"); |
1562 | return; | 1573 | return; |
1563 | } | 1574 | } |
1575 | |||
1576 | /* | ||
1577 | * Wake up any firmware load waiting (only done in .open, | ||
1578 | * which holds the open_lock mutex) | ||
1579 | */ | ||
1580 | atomic_set(&dev->fw_data->fw_state, S2255_FW_DISCONNECTING); | ||
1581 | wake_up(&dev->fw_data->wait_fw); | ||
1582 | |||
1564 | /* prevent s2255_disconnect from racing s2255_open */ | 1583 | /* prevent s2255_disconnect from racing s2255_open */ |
1565 | mutex_lock(&dev->open_lock); | 1584 | mutex_lock(&dev->open_lock); |
1566 | s2255_exit_v4l(dev); | 1585 | s2255_exit_v4l(dev); |
1567 | /* device unregistered so no longer possible to open. open_mutex | 1586 | /* |
1568 | can be unlocked */ | 1587 | * device unregistered so no longer possible to open. open_mutex |
1588 | * can be unlocked and timers deleted afterwards. | ||
1589 | */ | ||
1569 | mutex_unlock(&dev->open_lock); | 1590 | mutex_unlock(&dev->open_lock); |
1570 | 1591 | ||
1571 | /* board shutdown stops the read pipe if it is running */ | 1592 | /* board shutdown stops the read pipe if it is running */ |
1572 | s2255_board_shutdown(dev); | 1593 | s2255_board_shutdown(dev); |
1573 | 1594 | ||
1574 | /* make sure firmware still not trying to load */ | 1595 | /* make sure firmware still not trying to load */ |
1596 | del_timer(&dev->timer); /* only started in .probe and .open */ | ||
1597 | |||
1575 | if (dev->fw_data->fw_urb) { | 1598 | if (dev->fw_data->fw_urb) { |
1576 | dprintk(2, "kill fw_urb\n"); | 1599 | dprintk(2, "kill fw_urb\n"); |
1577 | usb_kill_urb(dev->fw_data->fw_urb); | 1600 | usb_kill_urb(dev->fw_data->fw_urb); |
1578 | usb_free_urb(dev->fw_data->fw_urb); | 1601 | usb_free_urb(dev->fw_data->fw_urb); |
1579 | dev->fw_data->fw_urb = NULL; | 1602 | dev->fw_data->fw_urb = NULL; |
1580 | } | 1603 | } |
1604 | |||
1581 | /* | 1605 | /* |
1582 | * TODO: fixme(above, below): potentially leaving timers alive. | 1606 | * delete the dsp_wait timer, which sets the firmware |
1583 | * do not ignore timeout below if | 1607 | * state on completion. This is done before fw_data |
1584 | * it occurs. | 1608 | * is freed below. |
1585 | */ | 1609 | */ |
1586 | 1610 | ||
1587 | /* make sure we aren't waiting for the DSP */ | 1611 | del_timer(&dev->fw_data->dsp_wait); /* only started in .open */ |
1588 | if (atomic_read(&dev->fw_data->fw_state) == S2255_FW_LOADED_DSPWAIT) { | ||
1589 | /* if we are, wait for the wakeup for fw_success or timeout */ | ||
1590 | wait_event_timeout(dev->fw_data->wait_fw, | ||
1591 | (atomic_read(&dev->fw_data->fw_state) | ||
1592 | == S2255_FW_SUCCESS), | ||
1593 | msecs_to_jiffies(S2255_LOAD_TIMEOUT)); | ||
1594 | } | ||
1595 | 1612 | ||
1596 | if (dev->fw_data) { | 1613 | if (dev->fw_data->fw) |
1597 | if (dev->fw_data->fw) | 1614 | release_firmware(dev->fw_data->fw); |
1598 | release_firmware(dev->fw_data->fw); | 1615 | kfree(dev->fw_data->pfw_data); |
1599 | kfree(dev->fw_data->pfw_data); | 1616 | kfree(dev->fw_data); |
1600 | kfree(dev->fw_data); | ||
1601 | } | ||
1602 | 1617 | ||
1603 | usb_put_dev(dev->udev); | 1618 | usb_put_dev(dev->udev); |
1604 | dprintk(1, "%s", __func__); | 1619 | dprintk(1, "%s", __func__); |
@@ -1615,17 +1630,23 @@ static int s2255_close(struct inode *inode, struct file *file) | |||
1615 | 1630 | ||
1616 | mutex_lock(&dev->open_lock); | 1631 | mutex_lock(&dev->open_lock); |
1617 | 1632 | ||
1618 | if (dev->b_acquire[fh->channel]) | 1633 | /* turn off stream */ |
1619 | s2255_stop_acquire(dev, fh->channel); | 1634 | if (res_check(fh)) { |
1620 | res_free(dev, fh); | 1635 | if (dev->b_acquire[fh->channel]) |
1636 | s2255_stop_acquire(dev, fh->channel); | ||
1637 | videobuf_streamoff(&fh->vb_vidq); | ||
1638 | res_free(dev, fh); | ||
1639 | } | ||
1640 | |||
1621 | videobuf_mmap_free(&fh->vb_vidq); | 1641 | videobuf_mmap_free(&fh->vb_vidq); |
1622 | kfree(fh); | ||
1623 | dev->users[fh->channel]--; | 1642 | dev->users[fh->channel]--; |
1643 | |||
1624 | mutex_unlock(&dev->open_lock); | 1644 | mutex_unlock(&dev->open_lock); |
1625 | 1645 | ||
1626 | kref_put(&dev->kref, s2255_destroy); | 1646 | kref_put(&dev->kref, s2255_destroy); |
1627 | dprintk(1, "s2255: close called (minor=%d, users=%d)\n", | 1647 | dprintk(1, "s2255: close called (minor=%d, users=%d)\n", |
1628 | minor, dev->users[fh->channel]); | 1648 | minor, dev->users[fh->channel]); |
1649 | kfree(fh); | ||
1629 | return 0; | 1650 | return 0; |
1630 | } | 1651 | } |
1631 | 1652 | ||
@@ -1658,12 +1679,7 @@ static const struct file_operations s2255_fops_v4l = { | |||
1658 | .llseek = no_llseek, | 1679 | .llseek = no_llseek, |
1659 | }; | 1680 | }; |
1660 | 1681 | ||
1661 | static struct video_device template = { | 1682 | static const struct v4l2_ioctl_ops s2255_ioctl_ops = { |
1662 | .name = "s2255v", | ||
1663 | .type = VID_TYPE_CAPTURE, | ||
1664 | .fops = &s2255_fops_v4l, | ||
1665 | .minor = -1, | ||
1666 | .release = video_device_release, | ||
1667 | .vidioc_querycap = vidioc_querycap, | 1683 | .vidioc_querycap = vidioc_querycap, |
1668 | .vidioc_enum_fmt_vid_cap = vidioc_enum_fmt_vid_cap, | 1684 | .vidioc_enum_fmt_vid_cap = vidioc_enum_fmt_vid_cap, |
1669 | .vidioc_g_fmt_vid_cap = vidioc_g_fmt_vid_cap, | 1685 | .vidioc_g_fmt_vid_cap = vidioc_g_fmt_vid_cap, |
@@ -1685,6 +1701,14 @@ static struct video_device template = { | |||
1685 | #ifdef CONFIG_VIDEO_V4L1_COMPAT | 1701 | #ifdef CONFIG_VIDEO_V4L1_COMPAT |
1686 | .vidiocgmbuf = vidioc_cgmbuf, | 1702 | .vidiocgmbuf = vidioc_cgmbuf, |
1687 | #endif | 1703 | #endif |
1704 | }; | ||
1705 | |||
1706 | static struct video_device template = { | ||
1707 | .name = "s2255v", | ||
1708 | .fops = &s2255_fops_v4l, | ||
1709 | .ioctl_ops = &s2255_ioctl_ops, | ||
1710 | .minor = -1, | ||
1711 | .release = video_device_release, | ||
1688 | .tvnorms = S2255_NORMS, | 1712 | .tvnorms = S2255_NORMS, |
1689 | .current_norm = V4L2_STD_NTSC_M, | 1713 | .current_norm = V4L2_STD_NTSC_M, |
1690 | }; | 1714 | }; |
@@ -1706,7 +1730,7 @@ static int s2255_probe_v4l(struct s2255_dev *dev) | |||
1706 | /* register 4 video devices */ | 1730 | /* register 4 video devices */ |
1707 | dev->vdev[i] = video_device_alloc(); | 1731 | dev->vdev[i] = video_device_alloc(); |
1708 | memcpy(dev->vdev[i], &template, sizeof(struct video_device)); | 1732 | memcpy(dev->vdev[i], &template, sizeof(struct video_device)); |
1709 | dev->vdev[i]->dev = &dev->interface->dev; | 1733 | dev->vdev[i]->parent = &dev->interface->dev; |
1710 | if (video_nr == -1) | 1734 | if (video_nr == -1) |
1711 | ret = video_register_device(dev->vdev[i], | 1735 | ret = video_register_device(dev->vdev[i], |
1712 | VFL_TYPE_GRABBER, | 1736 | VFL_TYPE_GRABBER, |
diff --git a/drivers/media/video/saa5246a.c b/drivers/media/video/saa5246a.c index 03e772130b55..6ee63e69b36c 100644 --- a/drivers/media/video/saa5246a.c +++ b/drivers/media/video/saa5246a.c | |||
@@ -46,6 +46,7 @@ | |||
46 | #include <linux/videotext.h> | 46 | #include <linux/videotext.h> |
47 | #include <linux/videodev.h> | 47 | #include <linux/videodev.h> |
48 | #include <media/v4l2-common.h> | 48 | #include <media/v4l2-common.h> |
49 | #include <media/v4l2-ioctl.h> | ||
49 | #include <linux/mutex.h> | 50 | #include <linux/mutex.h> |
50 | 51 | ||
51 | #include "saa5246a.h" | 52 | #include "saa5246a.h" |
@@ -829,9 +830,7 @@ static const struct file_operations saa_fops = { | |||
829 | 830 | ||
830 | static struct video_device saa_template = | 831 | static struct video_device saa_template = |
831 | { | 832 | { |
832 | .owner = THIS_MODULE, | ||
833 | .name = IF_NAME, | 833 | .name = IF_NAME, |
834 | .type = VID_TYPE_TELETEXT, | ||
835 | .fops = &saa_fops, | 834 | .fops = &saa_fops, |
836 | .release = video_device_release, | 835 | .release = video_device_release, |
837 | .minor = -1, | 836 | .minor = -1, |
diff --git a/drivers/media/video/saa5249.c b/drivers/media/video/saa5249.c index fde99d9ee71f..0d639738d4e6 100644 --- a/drivers/media/video/saa5249.c +++ b/drivers/media/video/saa5249.c | |||
@@ -57,6 +57,7 @@ | |||
57 | #include <linux/videotext.h> | 57 | #include <linux/videotext.h> |
58 | #include <linux/videodev.h> | 58 | #include <linux/videodev.h> |
59 | #include <media/v4l2-common.h> | 59 | #include <media/v4l2-common.h> |
60 | #include <media/v4l2-ioctl.h> | ||
60 | #include <linux/mutex.h> | 61 | #include <linux/mutex.h> |
61 | 62 | ||
62 | 63 | ||
@@ -710,9 +711,7 @@ static const struct file_operations saa_fops = { | |||
710 | 711 | ||
711 | static struct video_device saa_template = | 712 | static struct video_device saa_template = |
712 | { | 713 | { |
713 | .owner = THIS_MODULE, | ||
714 | .name = IF_NAME, | 714 | .name = IF_NAME, |
715 | .type = VID_TYPE_TELETEXT, /*| VID_TYPE_TUNER ?? */ | ||
716 | .fops = &saa_fops, | 715 | .fops = &saa_fops, |
717 | }; | 716 | }; |
718 | 717 | ||
diff --git a/drivers/media/video/saa7134/Kconfig b/drivers/media/video/saa7134/Kconfig index 83f076abce35..7021bbf5897b 100644 --- a/drivers/media/video/saa7134/Kconfig +++ b/drivers/media/video/saa7134/Kconfig | |||
@@ -27,9 +27,7 @@ config VIDEO_SAA7134_ALSA | |||
27 | config VIDEO_SAA7134_DVB | 27 | config VIDEO_SAA7134_DVB |
28 | tristate "DVB/ATSC Support for saa7134 based TV cards" | 28 | tristate "DVB/ATSC Support for saa7134 based TV cards" |
29 | depends on VIDEO_SAA7134 && DVB_CORE | 29 | depends on VIDEO_SAA7134 && DVB_CORE |
30 | depends on HOTPLUG # due to FW_LOADER | ||
31 | select VIDEOBUF_DVB | 30 | select VIDEOBUF_DVB |
32 | select FW_LOADER | ||
33 | select DVB_PLL if !DVB_FE_CUSTOMISE | 31 | select DVB_PLL if !DVB_FE_CUSTOMISE |
34 | select DVB_MT352 if !DVB_FE_CUSTOMISE | 32 | select DVB_MT352 if !DVB_FE_CUSTOMISE |
35 | select DVB_TDA1004X if !DVB_FE_CUSTOMISE | 33 | select DVB_TDA1004X if !DVB_FE_CUSTOMISE |
diff --git a/drivers/media/video/saa7134/saa7134-cards.c b/drivers/media/video/saa7134/saa7134-cards.c index 6893f998d292..98364d171def 100644 --- a/drivers/media/video/saa7134/saa7134-cards.c +++ b/drivers/media/video/saa7134/saa7134-cards.c | |||
@@ -5853,9 +5853,6 @@ int saa7134_board_init2(struct saa7134_dev *dev) | |||
5853 | unsigned char buf; | 5853 | unsigned char buf; |
5854 | int board; | 5854 | int board; |
5855 | 5855 | ||
5856 | dev->tuner_type = saa7134_boards[dev->board].tuner_type; | ||
5857 | dev->tuner_addr = saa7134_boards[dev->board].tuner_addr; | ||
5858 | |||
5859 | switch (dev->board) { | 5856 | switch (dev->board) { |
5860 | case SAA7134_BOARD_BMK_MPEX_NOTUNER: | 5857 | case SAA7134_BOARD_BMK_MPEX_NOTUNER: |
5861 | case SAA7134_BOARD_BMK_MPEX_TUNER: | 5858 | case SAA7134_BOARD_BMK_MPEX_TUNER: |
diff --git a/drivers/media/video/saa7134/saa7134-core.c b/drivers/media/video/saa7134/saa7134-core.c index cfee84ee7a88..75d618415f4f 100644 --- a/drivers/media/video/saa7134/saa7134-core.c +++ b/drivers/media/video/saa7134/saa7134-core.c | |||
@@ -798,7 +798,7 @@ static struct video_device *vdev_init(struct saa7134_dev *dev, | |||
798 | return NULL; | 798 | return NULL; |
799 | *vfd = *template; | 799 | *vfd = *template; |
800 | vfd->minor = -1; | 800 | vfd->minor = -1; |
801 | vfd->dev = &dev->pci->dev; | 801 | vfd->parent = &dev->pci->dev; |
802 | vfd->release = video_device_release; | 802 | vfd->release = video_device_release; |
803 | vfd->debug = video_debug; | 803 | vfd->debug = video_debug; |
804 | snprintf(vfd->name, sizeof(vfd->name), "%s %s (%s)", | 804 | snprintf(vfd->name, sizeof(vfd->name), "%s %s (%s)", |
@@ -945,11 +945,12 @@ static int __devinit saa7134_initdev(struct pci_dev *pci_dev, | |||
945 | dev->board = SAA7134_BOARD_UNKNOWN; | 945 | dev->board = SAA7134_BOARD_UNKNOWN; |
946 | } | 946 | } |
947 | dev->autodetected = card[dev->nr] != dev->board; | 947 | dev->autodetected = card[dev->nr] != dev->board; |
948 | dev->tuner_type = saa7134_boards[dev->board].tuner_type; | 948 | dev->tuner_type = saa7134_boards[dev->board].tuner_type; |
949 | dev->tuner_addr = saa7134_boards[dev->board].tuner_addr; | ||
949 | dev->tda9887_conf = saa7134_boards[dev->board].tda9887_conf; | 950 | dev->tda9887_conf = saa7134_boards[dev->board].tda9887_conf; |
950 | if (UNSET != tuner[dev->nr]) | 951 | if (UNSET != tuner[dev->nr]) |
951 | dev->tuner_type = tuner[dev->nr]; | 952 | dev->tuner_type = tuner[dev->nr]; |
952 | printk(KERN_INFO "%s: subsystem: %04x:%04x, board: %s [card=%d,%s]\n", | 953 | printk(KERN_INFO "%s: subsystem: %04x:%04x, board: %s [card=%d,%s]\n", |
953 | dev->name,pci_dev->subsystem_vendor, | 954 | dev->name,pci_dev->subsystem_vendor, |
954 | pci_dev->subsystem_device,saa7134_boards[dev->board].name, | 955 | pci_dev->subsystem_device,saa7134_boards[dev->board].name, |
955 | dev->board, dev->autodetected ? | 956 | dev->board, dev->autodetected ? |
@@ -1007,11 +1008,9 @@ static int __devinit saa7134_initdev(struct pci_dev *pci_dev, | |||
1007 | v4l2_prio_init(&dev->prio); | 1008 | v4l2_prio_init(&dev->prio); |
1008 | 1009 | ||
1009 | /* register v4l devices */ | 1010 | /* register v4l devices */ |
1010 | if (saa7134_no_overlay <= 0) { | 1011 | if (saa7134_no_overlay > 0) |
1011 | saa7134_video_template.type |= VID_TYPE_OVERLAY; | 1012 | printk(KERN_INFO "%s: Overlay support disabled.\n", dev->name); |
1012 | } else { | 1013 | |
1013 | printk("%s: Overlay support disabled.\n",dev->name); | ||
1014 | } | ||
1015 | dev->video_dev = vdev_init(dev,&saa7134_video_template,"video"); | 1014 | dev->video_dev = vdev_init(dev,&saa7134_video_template,"video"); |
1016 | err = video_register_device(dev->video_dev,VFL_TYPE_GRABBER, | 1015 | err = video_register_device(dev->video_dev,VFL_TYPE_GRABBER, |
1017 | video_nr[dev->nr]); | 1016 | video_nr[dev->nr]); |
@@ -1024,7 +1023,6 @@ static int __devinit saa7134_initdev(struct pci_dev *pci_dev, | |||
1024 | dev->name,dev->video_dev->minor & 0x1f); | 1023 | dev->name,dev->video_dev->minor & 0x1f); |
1025 | 1024 | ||
1026 | dev->vbi_dev = vdev_init(dev, &saa7134_video_template, "vbi"); | 1025 | dev->vbi_dev = vdev_init(dev, &saa7134_video_template, "vbi"); |
1027 | dev->vbi_dev->type = VID_TYPE_TUNER | VID_TYPE_TELETEXT; | ||
1028 | 1026 | ||
1029 | err = video_register_device(dev->vbi_dev,VFL_TYPE_VBI, | 1027 | err = video_register_device(dev->vbi_dev,VFL_TYPE_VBI, |
1030 | vbi_nr[dev->nr]); | 1028 | vbi_nr[dev->nr]); |
diff --git a/drivers/media/video/saa7134/saa7134-empress.c b/drivers/media/video/saa7134/saa7134-empress.c index 2a5ab957542d..c0c5d7509c25 100644 --- a/drivers/media/video/saa7134/saa7134-empress.c +++ b/drivers/media/video/saa7134/saa7134-empress.c | |||
@@ -89,14 +89,14 @@ static int ts_open(struct inode *inode, struct file *file) | |||
89 | err = -EBUSY; | 89 | err = -EBUSY; |
90 | if (!mutex_trylock(&dev->empress_tsq.vb_lock)) | 90 | if (!mutex_trylock(&dev->empress_tsq.vb_lock)) |
91 | goto done; | 91 | goto done; |
92 | if (dev->empress_users) | 92 | if (atomic_read(&dev->empress_users)) |
93 | goto done_up; | 93 | goto done_up; |
94 | 94 | ||
95 | /* Unmute audio */ | 95 | /* Unmute audio */ |
96 | saa_writeb(SAA7134_AUDIO_MUTE_CTRL, | 96 | saa_writeb(SAA7134_AUDIO_MUTE_CTRL, |
97 | saa_readb(SAA7134_AUDIO_MUTE_CTRL) & ~(1 << 6)); | 97 | saa_readb(SAA7134_AUDIO_MUTE_CTRL) & ~(1 << 6)); |
98 | 98 | ||
99 | dev->empress_users++; | 99 | atomic_inc(&dev->empress_users); |
100 | file->private_data = dev; | 100 | file->private_data = dev; |
101 | err = 0; | 101 | err = 0; |
102 | 102 | ||
@@ -110,8 +110,6 @@ static int ts_release(struct inode *inode, struct file *file) | |||
110 | { | 110 | { |
111 | struct saa7134_dev *dev = file->private_data; | 111 | struct saa7134_dev *dev = file->private_data; |
112 | 112 | ||
113 | mutex_lock(&dev->empress_tsq.vb_lock); | ||
114 | |||
115 | videobuf_stop(&dev->empress_tsq); | 113 | videobuf_stop(&dev->empress_tsq); |
116 | videobuf_mmap_free(&dev->empress_tsq); | 114 | videobuf_mmap_free(&dev->empress_tsq); |
117 | 115 | ||
@@ -122,9 +120,7 @@ static int ts_release(struct inode *inode, struct file *file) | |||
122 | saa_writeb(SAA7134_AUDIO_MUTE_CTRL, | 120 | saa_writeb(SAA7134_AUDIO_MUTE_CTRL, |
123 | saa_readb(SAA7134_AUDIO_MUTE_CTRL) | (1 << 6)); | 121 | saa_readb(SAA7134_AUDIO_MUTE_CTRL) | (1 << 6)); |
124 | 122 | ||
125 | dev->empress_users--; | 123 | atomic_dec(&dev->empress_users); |
126 | |||
127 | mutex_unlock(&dev->empress_tsq.vb_lock); | ||
128 | 124 | ||
129 | return 0; | 125 | return 0; |
130 | } | 126 | } |
@@ -333,6 +329,22 @@ static int empress_g_ext_ctrls(struct file *file, void *priv, | |||
333 | return saa7134_i2c_call_saa6752(dev, VIDIOC_G_EXT_CTRLS, ctrls); | 329 | return saa7134_i2c_call_saa6752(dev, VIDIOC_G_EXT_CTRLS, ctrls); |
334 | } | 330 | } |
335 | 331 | ||
332 | static int empress_g_ctrl(struct file *file, void *priv, | ||
333 | struct v4l2_control *c) | ||
334 | { | ||
335 | struct saa7134_dev *dev = file->private_data; | ||
336 | |||
337 | return saa7134_g_ctrl_internal(dev, NULL, c); | ||
338 | } | ||
339 | |||
340 | static int empress_s_ctrl(struct file *file, void *priv, | ||
341 | struct v4l2_control *c) | ||
342 | { | ||
343 | struct saa7134_dev *dev = file->private_data; | ||
344 | |||
345 | return saa7134_s_ctrl_internal(dev, NULL, c); | ||
346 | } | ||
347 | |||
336 | static int empress_queryctrl(struct file *file, void *priv, | 348 | static int empress_queryctrl(struct file *file, void *priv, |
337 | struct v4l2_queryctrl *c) | 349 | struct v4l2_queryctrl *c) |
338 | { | 350 | { |
@@ -400,16 +412,7 @@ static const struct file_operations ts_fops = | |||
400 | .llseek = no_llseek, | 412 | .llseek = no_llseek, |
401 | }; | 413 | }; |
402 | 414 | ||
403 | /* ----------------------------------------------------------- */ | 415 | static const struct v4l2_ioctl_ops ts_ioctl_ops = { |
404 | |||
405 | static struct video_device saa7134_empress_template = | ||
406 | { | ||
407 | .name = "saa7134-empress", | ||
408 | .type = 0 /* FIXME */, | ||
409 | .type2 = 0 /* FIXME */, | ||
410 | .fops = &ts_fops, | ||
411 | .minor = -1, | ||
412 | |||
413 | .vidioc_querycap = empress_querycap, | 416 | .vidioc_querycap = empress_querycap, |
414 | .vidioc_enum_fmt_vid_cap = empress_enum_fmt_vid_cap, | 417 | .vidioc_enum_fmt_vid_cap = empress_enum_fmt_vid_cap, |
415 | .vidioc_s_fmt_vid_cap = empress_s_fmt_vid_cap, | 418 | .vidioc_s_fmt_vid_cap = empress_s_fmt_vid_cap, |
@@ -428,8 +431,17 @@ static struct video_device saa7134_empress_template = | |||
428 | 431 | ||
429 | .vidioc_queryctrl = empress_queryctrl, | 432 | .vidioc_queryctrl = empress_queryctrl, |
430 | .vidioc_querymenu = empress_querymenu, | 433 | .vidioc_querymenu = empress_querymenu, |
431 | .vidioc_g_ctrl = saa7134_g_ctrl, | 434 | .vidioc_g_ctrl = empress_g_ctrl, |
432 | .vidioc_s_ctrl = saa7134_s_ctrl, | 435 | .vidioc_s_ctrl = empress_s_ctrl, |
436 | }; | ||
437 | |||
438 | /* ----------------------------------------------------------- */ | ||
439 | |||
440 | static struct video_device saa7134_empress_template = { | ||
441 | .name = "saa7134-empress", | ||
442 | .fops = &ts_fops, | ||
443 | .minor = -1, | ||
444 | .ioctl_ops = &ts_ioctl_ops, | ||
433 | 445 | ||
434 | .tvnorms = SAA7134_NORMS, | 446 | .tvnorms = SAA7134_NORMS, |
435 | .current_norm = V4L2_STD_PAL, | 447 | .current_norm = V4L2_STD_PAL, |
@@ -445,7 +457,7 @@ static void empress_signal_update(struct work_struct *work) | |||
445 | ts_reset_encoder(dev); | 457 | ts_reset_encoder(dev); |
446 | } else { | 458 | } else { |
447 | dprintk("video signal acquired\n"); | 459 | dprintk("video signal acquired\n"); |
448 | if (dev->empress_users) | 460 | if (atomic_read(&dev->empress_users)) |
449 | ts_init_encoder(dev); | 461 | ts_init_encoder(dev); |
450 | } | 462 | } |
451 | } | 463 | } |
@@ -465,7 +477,7 @@ static int empress_init(struct saa7134_dev *dev) | |||
465 | if (NULL == dev->empress_dev) | 477 | if (NULL == dev->empress_dev) |
466 | return -ENOMEM; | 478 | return -ENOMEM; |
467 | *(dev->empress_dev) = saa7134_empress_template; | 479 | *(dev->empress_dev) = saa7134_empress_template; |
468 | dev->empress_dev->dev = &dev->pci->dev; | 480 | dev->empress_dev->parent = &dev->pci->dev; |
469 | dev->empress_dev->release = video_device_release; | 481 | dev->empress_dev->release = video_device_release; |
470 | snprintf(dev->empress_dev->name, sizeof(dev->empress_dev->name), | 482 | snprintf(dev->empress_dev->name, sizeof(dev->empress_dev->name), |
471 | "%s empress (%s)", dev->name, | 483 | "%s empress (%s)", dev->name, |
diff --git a/drivers/media/video/saa7134/saa7134-video.c b/drivers/media/video/saa7134/saa7134-video.c index 1a5137550e7a..68c268981861 100644 --- a/drivers/media/video/saa7134/saa7134-video.c +++ b/drivers/media/video/saa7134/saa7134-video.c | |||
@@ -1112,10 +1112,8 @@ static struct videobuf_queue_ops video_qops = { | |||
1112 | 1112 | ||
1113 | /* ------------------------------------------------------------------ */ | 1113 | /* ------------------------------------------------------------------ */ |
1114 | 1114 | ||
1115 | int saa7134_g_ctrl(struct file *file, void *priv, struct v4l2_control *c) | 1115 | int saa7134_g_ctrl_internal(struct saa7134_dev *dev, struct saa7134_fh *fh, struct v4l2_control *c) |
1116 | { | 1116 | { |
1117 | struct saa7134_fh *fh = priv; | ||
1118 | struct saa7134_dev *dev = fh->dev; | ||
1119 | const struct v4l2_queryctrl* ctrl; | 1117 | const struct v4l2_queryctrl* ctrl; |
1120 | 1118 | ||
1121 | ctrl = ctrl_by_id(c->id); | 1119 | ctrl = ctrl_by_id(c->id); |
@@ -1160,20 +1158,31 @@ int saa7134_g_ctrl(struct file *file, void *priv, struct v4l2_control *c) | |||
1160 | } | 1158 | } |
1161 | return 0; | 1159 | return 0; |
1162 | } | 1160 | } |
1163 | EXPORT_SYMBOL_GPL(saa7134_g_ctrl); | 1161 | EXPORT_SYMBOL_GPL(saa7134_g_ctrl_internal); |
1162 | |||
1163 | static int saa7134_g_ctrl(struct file *file, void *priv, struct v4l2_control *c) | ||
1164 | { | ||
1165 | struct saa7134_fh *fh = priv; | ||
1166 | |||
1167 | return saa7134_g_ctrl_internal(fh->dev, fh, c); | ||
1168 | } | ||
1164 | 1169 | ||
1165 | int saa7134_s_ctrl(struct file *file, void *f, struct v4l2_control *c) | 1170 | int saa7134_s_ctrl_internal(struct saa7134_dev *dev, struct saa7134_fh *fh, struct v4l2_control *c) |
1166 | { | 1171 | { |
1167 | const struct v4l2_queryctrl* ctrl; | 1172 | const struct v4l2_queryctrl* ctrl; |
1168 | struct saa7134_fh *fh = f; | ||
1169 | struct saa7134_dev *dev = fh->dev; | ||
1170 | unsigned long flags; | 1173 | unsigned long flags; |
1171 | int restart_overlay = 0; | 1174 | int restart_overlay = 0; |
1172 | int err = -EINVAL; | 1175 | int err; |
1173 | 1176 | ||
1174 | err = v4l2_prio_check(&dev->prio, &fh->prio); | 1177 | /* When called from the empress code fh == NULL. |
1175 | if (0 != err) | 1178 | That needs to be fixed somehow, but for now this is |
1176 | return err; | 1179 | good enough. */ |
1180 | if (fh) { | ||
1181 | err = v4l2_prio_check(&dev->prio, &fh->prio); | ||
1182 | if (0 != err) | ||
1183 | return err; | ||
1184 | } | ||
1185 | err = -EINVAL; | ||
1177 | 1186 | ||
1178 | mutex_lock(&dev->lock); | 1187 | mutex_lock(&dev->lock); |
1179 | 1188 | ||
@@ -1274,7 +1283,14 @@ error: | |||
1274 | mutex_unlock(&dev->lock); | 1283 | mutex_unlock(&dev->lock); |
1275 | return err; | 1284 | return err; |
1276 | } | 1285 | } |
1277 | EXPORT_SYMBOL_GPL(saa7134_s_ctrl); | 1286 | EXPORT_SYMBOL_GPL(saa7134_s_ctrl_internal); |
1287 | |||
1288 | static int saa7134_s_ctrl(struct file *file, void *f, struct v4l2_control *c) | ||
1289 | { | ||
1290 | struct saa7134_fh *fh = f; | ||
1291 | |||
1292 | return saa7134_s_ctrl_internal(fh->dev, fh, c); | ||
1293 | } | ||
1278 | 1294 | ||
1279 | /* ------------------------------------------------------------------ */ | 1295 | /* ------------------------------------------------------------------ */ |
1280 | 1296 | ||
@@ -2353,26 +2369,7 @@ static const struct file_operations video_fops = | |||
2353 | .llseek = no_llseek, | 2369 | .llseek = no_llseek, |
2354 | }; | 2370 | }; |
2355 | 2371 | ||
2356 | static const struct file_operations radio_fops = | 2372 | static const struct v4l2_ioctl_ops video_ioctl_ops = { |
2357 | { | ||
2358 | .owner = THIS_MODULE, | ||
2359 | .open = video_open, | ||
2360 | .release = video_release, | ||
2361 | .ioctl = video_ioctl2, | ||
2362 | .compat_ioctl = v4l_compat_ioctl32, | ||
2363 | .llseek = no_llseek, | ||
2364 | }; | ||
2365 | |||
2366 | /* ----------------------------------------------------------- */ | ||
2367 | /* exported stuff */ | ||
2368 | |||
2369 | struct video_device saa7134_video_template = | ||
2370 | { | ||
2371 | .name = "saa7134-video", | ||
2372 | .type = VID_TYPE_CAPTURE|VID_TYPE_TUNER | | ||
2373 | VID_TYPE_CLIPPING|VID_TYPE_SCALES, | ||
2374 | .fops = &video_fops, | ||
2375 | .minor = -1, | ||
2376 | .vidioc_querycap = saa7134_querycap, | 2373 | .vidioc_querycap = saa7134_querycap, |
2377 | .vidioc_enum_fmt_vid_cap = saa7134_enum_fmt_vid_cap, | 2374 | .vidioc_enum_fmt_vid_cap = saa7134_enum_fmt_vid_cap, |
2378 | .vidioc_g_fmt_vid_cap = saa7134_g_fmt_vid_cap, | 2375 | .vidioc_g_fmt_vid_cap = saa7134_g_fmt_vid_cap, |
@@ -2421,16 +2418,18 @@ struct video_device saa7134_video_template = | |||
2421 | .vidioc_g_register = vidioc_g_register, | 2418 | .vidioc_g_register = vidioc_g_register, |
2422 | .vidioc_s_register = vidioc_s_register, | 2419 | .vidioc_s_register = vidioc_s_register, |
2423 | #endif | 2420 | #endif |
2424 | .tvnorms = SAA7134_NORMS, | ||
2425 | .current_norm = V4L2_STD_PAL, | ||
2426 | }; | 2421 | }; |
2427 | 2422 | ||
2428 | struct video_device saa7134_radio_template = | 2423 | static const struct file_operations radio_fops = { |
2429 | { | 2424 | .owner = THIS_MODULE, |
2430 | .name = "saa7134-radio", | 2425 | .open = video_open, |
2431 | .type = VID_TYPE_TUNER, | 2426 | .release = video_release, |
2432 | .fops = &radio_fops, | 2427 | .ioctl = video_ioctl2, |
2433 | .minor = -1, | 2428 | .compat_ioctl = v4l_compat_ioctl32, |
2429 | .llseek = no_llseek, | ||
2430 | }; | ||
2431 | |||
2432 | static const struct v4l2_ioctl_ops radio_ioctl_ops = { | ||
2434 | .vidioc_querycap = radio_querycap, | 2433 | .vidioc_querycap = radio_querycap, |
2435 | .vidioc_g_tuner = radio_g_tuner, | 2434 | .vidioc_g_tuner = radio_g_tuner, |
2436 | .vidioc_enum_input = radio_enum_input, | 2435 | .vidioc_enum_input = radio_enum_input, |
@@ -2447,6 +2446,25 @@ struct video_device saa7134_radio_template = | |||
2447 | .vidioc_s_frequency = saa7134_s_frequency, | 2446 | .vidioc_s_frequency = saa7134_s_frequency, |
2448 | }; | 2447 | }; |
2449 | 2448 | ||
2449 | /* ----------------------------------------------------------- */ | ||
2450 | /* exported stuff */ | ||
2451 | |||
2452 | struct video_device saa7134_video_template = { | ||
2453 | .name = "saa7134-video", | ||
2454 | .fops = &video_fops, | ||
2455 | .ioctl_ops = &video_ioctl_ops, | ||
2456 | .minor = -1, | ||
2457 | .tvnorms = SAA7134_NORMS, | ||
2458 | .current_norm = V4L2_STD_PAL, | ||
2459 | }; | ||
2460 | |||
2461 | struct video_device saa7134_radio_template = { | ||
2462 | .name = "saa7134-radio", | ||
2463 | .fops = &radio_fops, | ||
2464 | .ioctl_ops = &radio_ioctl_ops, | ||
2465 | .minor = -1, | ||
2466 | }; | ||
2467 | |||
2450 | int saa7134_video_init1(struct saa7134_dev *dev) | 2468 | int saa7134_video_init1(struct saa7134_dev *dev) |
2451 | { | 2469 | { |
2452 | /* sanitycheck insmod options */ | 2470 | /* sanitycheck insmod options */ |
diff --git a/drivers/media/video/saa7134/saa7134.h b/drivers/media/video/saa7134/saa7134.h index 6927cbea8624..a0884f639f65 100644 --- a/drivers/media/video/saa7134/saa7134.h +++ b/drivers/media/video/saa7134/saa7134.h | |||
@@ -34,6 +34,7 @@ | |||
34 | #include <asm/io.h> | 34 | #include <asm/io.h> |
35 | 35 | ||
36 | #include <media/v4l2-common.h> | 36 | #include <media/v4l2-common.h> |
37 | #include <media/v4l2-ioctl.h> | ||
37 | #include <media/tuner.h> | 38 | #include <media/tuner.h> |
38 | #include <media/ir-common.h> | 39 | #include <media/ir-common.h> |
39 | #include <media/ir-kbd-i2c.h> | 40 | #include <media/ir-kbd-i2c.h> |
@@ -560,7 +561,7 @@ struct saa7134_dev { | |||
560 | /* SAA7134_MPEG_EMPRESS only */ | 561 | /* SAA7134_MPEG_EMPRESS only */ |
561 | struct video_device *empress_dev; | 562 | struct video_device *empress_dev; |
562 | struct videobuf_queue empress_tsq; | 563 | struct videobuf_queue empress_tsq; |
563 | unsigned int empress_users; | 564 | atomic_t empress_users; |
564 | struct work_struct empress_workqueue; | 565 | struct work_struct empress_workqueue; |
565 | int empress_started; | 566 | int empress_started; |
566 | 567 | ||
@@ -662,8 +663,8 @@ extern unsigned int video_debug; | |||
662 | extern struct video_device saa7134_video_template; | 663 | extern struct video_device saa7134_video_template; |
663 | extern struct video_device saa7134_radio_template; | 664 | extern struct video_device saa7134_radio_template; |
664 | 665 | ||
665 | int saa7134_g_ctrl(struct file *file, void *priv, struct v4l2_control *c); | 666 | int saa7134_s_ctrl_internal(struct saa7134_dev *dev, struct saa7134_fh *fh, struct v4l2_control *c); |
666 | int saa7134_s_ctrl(struct file *file, void *f, struct v4l2_control *c); | 667 | int saa7134_g_ctrl_internal(struct saa7134_dev *dev, struct saa7134_fh *fh, struct v4l2_control *c); |
667 | int saa7134_queryctrl(struct file *file, void *priv, struct v4l2_queryctrl *c); | 668 | int saa7134_queryctrl(struct file *file, void *priv, struct v4l2_queryctrl *c); |
668 | 669 | ||
669 | int saa7134_videoport_init(struct saa7134_dev *dev); | 670 | int saa7134_videoport_init(struct saa7134_dev *dev); |
diff --git a/drivers/media/video/saa717x.c b/drivers/media/video/saa717x.c index 2220f9569941..af60ede5310d 100644 --- a/drivers/media/video/saa717x.c +++ b/drivers/media/video/saa717x.c | |||
@@ -35,7 +35,6 @@ | |||
35 | #include <linux/kernel.h> | 35 | #include <linux/kernel.h> |
36 | #include <linux/sched.h> | 36 | #include <linux/sched.h> |
37 | 37 | ||
38 | #include <linux/videodev.h> | ||
39 | #include <linux/videodev2.h> | 38 | #include <linux/videodev2.h> |
40 | #include <linux/i2c.h> | 39 | #include <linux/i2c.h> |
41 | #include <media/v4l2-common.h> | 40 | #include <media/v4l2-common.h> |
diff --git a/drivers/media/video/saa7196.h b/drivers/media/video/saa7196.h index cd4b6354a7b3..e69de29bb2d1 100644 --- a/drivers/media/video/saa7196.h +++ b/drivers/media/video/saa7196.h | |||
@@ -1,117 +0,0 @@ | |||
1 | /* | ||
2 | Definitions for the Philips SAA7196 digital video decoder, | ||
3 | scaler, and clock generator circuit (DESCpro), as used in | ||
4 | the PlanB video input of the Powermac 7x00/8x00 series. | ||
5 | |||
6 | Copyright (C) 1998 Michel Lanners (mlan@cpu.lu) | ||
7 | |||
8 | The register defines are shamelessly copied from the meteor | ||
9 | driver out of NetBSD (with permission), | ||
10 | and are copyrighted (c) 1995 Mark Tinguely and Jim Lowe | ||
11 | (Thanks !) | ||
12 | |||
13 | Additional debugging and coding by Takashi Oe (toe@unlinfo.unl.edu) | ||
14 | |||
15 | The default values used for PlanB are my mistakes. | ||
16 | */ | ||
17 | |||
18 | /* $Id: saa7196.h,v 1.5 1999/03/26 23:28:47 mlan Exp $ */ | ||
19 | |||
20 | #ifndef _SAA7196_H_ | ||
21 | #define _SAA7196_H_ | ||
22 | |||
23 | #define SAA7196_NUMREGS 0x31 /* Number of registers (used)*/ | ||
24 | #define NUM_SUPPORTED_NORM 3 /* Number of supported norms by PlanB */ | ||
25 | |||
26 | /* Decoder part: */ | ||
27 | #define SAA7196_IDEL 0x00 /* Increment delay */ | ||
28 | #define SAA7196_HSB5 0x01 /* H-sync begin; 50 hz */ | ||
29 | #define SAA7196_HSS5 0x02 /* H-sync stop; 50 hz */ | ||
30 | #define SAA7196_HCB5 0x03 /* H-clamp begin; 50 hz */ | ||
31 | #define SAA7196_HCS5 0x04 /* H-clamp stop; 50 hz */ | ||
32 | #define SAA7196_HSP5 0x05 /* H-sync after PHI1; 50 hz */ | ||
33 | #define SAA7196_LUMC 0x06 /* Luminance control */ | ||
34 | #define SAA7196_HUEC 0x07 /* Hue control */ | ||
35 | #define SAA7196_CKTQ 0x08 /* Colour Killer Threshold QAM (PAL, NTSC) */ | ||
36 | #define SAA7196_CKTS 0x09 /* Colour Killer Threshold SECAM */ | ||
37 | #define SAA7196_PALS 0x0a /* PAL switch sensitivity */ | ||
38 | #define SAA7196_SECAMS 0x0b /* SECAM switch sensitivity */ | ||
39 | #define SAA7196_CGAINC 0x0c /* Chroma gain control */ | ||
40 | #define SAA7196_STDC 0x0d /* Standard/Mode control */ | ||
41 | #define SAA7196_IOCC 0x0e /* I/O and Clock Control */ | ||
42 | #define SAA7196_CTRL1 0x0f /* Control #1 */ | ||
43 | #define SAA7196_CTRL2 0x10 /* Control #2 */ | ||
44 | #define SAA7196_CGAINR 0x11 /* Chroma Gain Reference */ | ||
45 | #define SAA7196_CSAT 0x12 /* Chroma Saturation */ | ||
46 | #define SAA7196_CONT 0x13 /* Luminance Contrast */ | ||
47 | #define SAA7196_HSB6 0x14 /* H-sync begin; 60 hz */ | ||
48 | #define SAA7196_HSS6 0x15 /* H-sync stop; 60 hz */ | ||
49 | #define SAA7196_HCB6 0x16 /* H-clamp begin; 60 hz */ | ||
50 | #define SAA7196_HCS6 0x17 /* H-clamp stop; 60 hz */ | ||
51 | #define SAA7196_HSP6 0x18 /* H-sync after PHI1; 60 hz */ | ||
52 | #define SAA7196_BRIG 0x19 /* Luminance Brightness */ | ||
53 | |||
54 | /* Scaler part: */ | ||
55 | #define SAA7196_FMTS 0x20 /* Formats and sequence */ | ||
56 | #define SAA7196_OUTPIX 0x21 /* Output data pixel/line */ | ||
57 | #define SAA7196_INPIX 0x22 /* Input data pixel/line */ | ||
58 | #define SAA7196_HWS 0x23 /* Horiz. window start */ | ||
59 | #define SAA7196_HFILT 0x24 /* Horiz. filter */ | ||
60 | #define SAA7196_OUTLINE 0x25 /* Output data lines/field */ | ||
61 | #define SAA7196_INLINE 0x26 /* Input data lines/field */ | ||
62 | #define SAA7196_VWS 0x27 /* Vertical window start */ | ||
63 | #define SAA7196_VYP 0x28 /* AFS/vertical Y processing */ | ||
64 | #define SAA7196_VBS 0x29 /* Vertical Bypass start */ | ||
65 | #define SAA7196_VBCNT 0x2a /* Vertical Bypass count */ | ||
66 | #define SAA7196_VBP 0x2b /* veritcal Bypass Polarity */ | ||
67 | #define SAA7196_VLOW 0x2c /* Colour-keying lower V limit */ | ||
68 | #define SAA7196_VHIGH 0x2d /* Colour-keying upper V limit */ | ||
69 | #define SAA7196_ULOW 0x2e /* Colour-keying lower U limit */ | ||
70 | #define SAA7196_UHIGH 0x2f /* Colour-keying upper U limit */ | ||
71 | #define SAA7196_DPATH 0x30 /* Data path setting */ | ||
72 | |||
73 | /* Initialization default values: */ | ||
74 | |||
75 | unsigned char saa_regs[NUM_SUPPORTED_NORM][SAA7196_NUMREGS] = { | ||
76 | |||
77 | /* PAL, 768x576 (no scaling), composite video-in */ | ||
78 | /* Decoder: */ | ||
79 | { 0x50, 0x30, 0x00, 0xe8, 0xb6, 0xe5, 0x63, 0xff, | ||
80 | 0xfe, 0xf0, 0xfe, 0xe0, 0x20, 0x06, 0x3b, 0x98, | ||
81 | 0x00, 0x59, 0x41, 0x45, 0x34, 0x0a, 0xf4, 0xd2, | ||
82 | 0xe9, 0xa2, | ||
83 | /* Padding */ | ||
84 | 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, | ||
85 | /* Scaler: */ | ||
86 | 0x72, 0x80, 0x00, 0x03, 0x8d, 0x20, 0x20, 0x12, | ||
87 | 0xa5, 0x12, 0x00, 0x00, 0x04, 0x00, 0x04, 0x00, | ||
88 | 0x87 }, | ||
89 | |||
90 | /* NTSC, 640x480? (no scaling), composite video-in */ | ||
91 | /* Decoder: */ | ||
92 | { 0x50, 0x30, 0x00, 0xe8, 0xb6, 0xe5, 0x50, 0x00, | ||
93 | 0xf8, 0xf0, 0xfe, 0xe0, 0x00, 0x06, 0x3b, 0x98, | ||
94 | 0x00, 0x2c, 0x3d, 0x40, 0x34, 0x0a, 0xf4, 0xd2, | ||
95 | 0xe9, 0x98, | ||
96 | /* Padding */ | ||
97 | 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, | ||
98 | /* Scaler: */ | ||
99 | 0x72, 0x80, 0x80, 0x03, 0x89, 0xf0, 0xf0, 0x0d, | ||
100 | 0xa0, 0x0d, 0x00, 0x00, 0x04, 0x00, 0x04, 0x00, | ||
101 | 0x87 }, | ||
102 | |||
103 | /* SECAM, 768x576 (no scaling), composite video-in */ | ||
104 | /* Decoder: */ | ||
105 | { 0x50, 0x30, 0x00, 0xe8, 0xb6, 0xe5, 0x63, 0xff, | ||
106 | 0xfe, 0xf0, 0xfe, 0xe0, 0x20, 0x07, 0x3b, 0x98, | ||
107 | 0x00, 0x59, 0x41, 0x45, 0x34, 0x0a, 0xf4, 0xd2, | ||
108 | 0xe9, 0xa2, | ||
109 | /* Padding */ | ||
110 | 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, | ||
111 | /* Scaler: */ | ||
112 | 0x72, 0x80, 0x00, 0x03, 0x8d, 0x20, 0x20, 0x12, | ||
113 | 0xa5, 0x12, 0x00, 0x00, 0x04, 0x00, 0x04, 0x00, | ||
114 | 0x87 } | ||
115 | }; | ||
116 | |||
117 | #endif /* _SAA7196_H_ */ | ||
diff --git a/drivers/media/video/se401.c b/drivers/media/video/se401.c index 1cd629380f71..f481277892da 100644 --- a/drivers/media/video/se401.c +++ b/drivers/media/video/se401.c | |||
@@ -1230,9 +1230,7 @@ static const struct file_operations se401_fops = { | |||
1230 | .llseek = no_llseek, | 1230 | .llseek = no_llseek, |
1231 | }; | 1231 | }; |
1232 | static struct video_device se401_template = { | 1232 | static struct video_device se401_template = { |
1233 | .owner = THIS_MODULE, | ||
1234 | .name = "se401 USB camera", | 1233 | .name = "se401 USB camera", |
1235 | .type = VID_TYPE_CAPTURE, | ||
1236 | .fops = &se401_fops, | 1234 | .fops = &se401_fops, |
1237 | }; | 1235 | }; |
1238 | 1236 | ||
diff --git a/drivers/media/video/se401.h b/drivers/media/video/se401.h index 835ef872e803..2ce685db5d8b 100644 --- a/drivers/media/video/se401.h +++ b/drivers/media/video/se401.h | |||
@@ -5,6 +5,7 @@ | |||
5 | #include <asm/uaccess.h> | 5 | #include <asm/uaccess.h> |
6 | #include <linux/videodev.h> | 6 | #include <linux/videodev.h> |
7 | #include <media/v4l2-common.h> | 7 | #include <media/v4l2-common.h> |
8 | #include <media/v4l2-ioctl.h> | ||
8 | #include <linux/mutex.h> | 9 | #include <linux/mutex.h> |
9 | 10 | ||
10 | #define se401_DEBUG /* Turn on debug messages */ | 11 | #define se401_DEBUG /* Turn on debug messages */ |
diff --git a/drivers/media/video/sh_mobile_ceu_camera.c b/drivers/media/video/sh_mobile_ceu_camera.c index 012005e1a77b..f7ca3cb9340a 100644 --- a/drivers/media/video/sh_mobile_ceu_camera.c +++ b/drivers/media/video/sh_mobile_ceu_camera.c | |||
@@ -91,6 +91,7 @@ struct sh_mobile_ceu_dev { | |||
91 | void __iomem *base; | 91 | void __iomem *base; |
92 | unsigned long video_limit; | 92 | unsigned long video_limit; |
93 | 93 | ||
94 | /* lock used to protect videobuf */ | ||
94 | spinlock_t lock; | 95 | spinlock_t lock; |
95 | struct list_head capture; | 96 | struct list_head capture; |
96 | struct videobuf_buffer *active; | 97 | struct videobuf_buffer *active; |
diff --git a/drivers/media/video/sn9c102/sn9c102.h b/drivers/media/video/sn9c102/sn9c102.h index 0c8d87d8d18d..cbfc44433b99 100644 --- a/drivers/media/video/sn9c102/sn9c102.h +++ b/drivers/media/video/sn9c102/sn9c102.h | |||
@@ -25,6 +25,7 @@ | |||
25 | #include <linux/usb.h> | 25 | #include <linux/usb.h> |
26 | #include <linux/videodev2.h> | 26 | #include <linux/videodev2.h> |
27 | #include <media/v4l2-common.h> | 27 | #include <media/v4l2-common.h> |
28 | #include <media/v4l2-ioctl.h> | ||
28 | #include <linux/device.h> | 29 | #include <linux/device.h> |
29 | #include <linux/list.h> | 30 | #include <linux/list.h> |
30 | #include <linux/spinlock.h> | 31 | #include <linux/spinlock.h> |
diff --git a/drivers/media/video/sn9c102/sn9c102_core.c b/drivers/media/video/sn9c102/sn9c102_core.c index 7f9c7bcf3c85..23408764d0ef 100644 --- a/drivers/media/video/sn9c102/sn9c102_core.c +++ b/drivers/media/video/sn9c102/sn9c102_core.c | |||
@@ -1038,8 +1038,7 @@ static ssize_t sn9c102_show_reg(struct device* cd, | |||
1038 | if (mutex_lock_interruptible(&sn9c102_sysfs_lock)) | 1038 | if (mutex_lock_interruptible(&sn9c102_sysfs_lock)) |
1039 | return -ERESTARTSYS; | 1039 | return -ERESTARTSYS; |
1040 | 1040 | ||
1041 | cam = video_get_drvdata(container_of(cd, struct video_device, | 1041 | cam = video_get_drvdata(container_of(cd, struct video_device, dev)); |
1042 | class_dev)); | ||
1043 | if (!cam) { | 1042 | if (!cam) { |
1044 | mutex_unlock(&sn9c102_sysfs_lock); | 1043 | mutex_unlock(&sn9c102_sysfs_lock); |
1045 | return -ENODEV; | 1044 | return -ENODEV; |
@@ -1064,8 +1063,7 @@ sn9c102_store_reg(struct device* cd, struct device_attribute *attr, | |||
1064 | if (mutex_lock_interruptible(&sn9c102_sysfs_lock)) | 1063 | if (mutex_lock_interruptible(&sn9c102_sysfs_lock)) |
1065 | return -ERESTARTSYS; | 1064 | return -ERESTARTSYS; |
1066 | 1065 | ||
1067 | cam = video_get_drvdata(container_of(cd, struct video_device, | 1066 | cam = video_get_drvdata(container_of(cd, struct video_device, dev)); |
1068 | class_dev)); | ||
1069 | if (!cam) { | 1067 | if (!cam) { |
1070 | mutex_unlock(&sn9c102_sysfs_lock); | 1068 | mutex_unlock(&sn9c102_sysfs_lock); |
1071 | return -ENODEV; | 1069 | return -ENODEV; |
@@ -1098,8 +1096,7 @@ static ssize_t sn9c102_show_val(struct device* cd, | |||
1098 | if (mutex_lock_interruptible(&sn9c102_sysfs_lock)) | 1096 | if (mutex_lock_interruptible(&sn9c102_sysfs_lock)) |
1099 | return -ERESTARTSYS; | 1097 | return -ERESTARTSYS; |
1100 | 1098 | ||
1101 | cam = video_get_drvdata(container_of(cd, struct video_device, | 1099 | cam = video_get_drvdata(container_of(cd, struct video_device, dev)); |
1102 | class_dev)); | ||
1103 | if (!cam) { | 1100 | if (!cam) { |
1104 | mutex_unlock(&sn9c102_sysfs_lock); | 1101 | mutex_unlock(&sn9c102_sysfs_lock); |
1105 | return -ENODEV; | 1102 | return -ENODEV; |
@@ -1132,8 +1129,7 @@ sn9c102_store_val(struct device* cd, struct device_attribute *attr, | |||
1132 | if (mutex_lock_interruptible(&sn9c102_sysfs_lock)) | 1129 | if (mutex_lock_interruptible(&sn9c102_sysfs_lock)) |
1133 | return -ERESTARTSYS; | 1130 | return -ERESTARTSYS; |
1134 | 1131 | ||
1135 | cam = video_get_drvdata(container_of(cd, struct video_device, | 1132 | cam = video_get_drvdata(container_of(cd, struct video_device, dev)); |
1136 | class_dev)); | ||
1137 | if (!cam) { | 1133 | if (!cam) { |
1138 | mutex_unlock(&sn9c102_sysfs_lock); | 1134 | mutex_unlock(&sn9c102_sysfs_lock); |
1139 | return -ENODEV; | 1135 | return -ENODEV; |
@@ -1170,8 +1166,7 @@ static ssize_t sn9c102_show_i2c_reg(struct device* cd, | |||
1170 | if (mutex_lock_interruptible(&sn9c102_sysfs_lock)) | 1166 | if (mutex_lock_interruptible(&sn9c102_sysfs_lock)) |
1171 | return -ERESTARTSYS; | 1167 | return -ERESTARTSYS; |
1172 | 1168 | ||
1173 | cam = video_get_drvdata(container_of(cd, struct video_device, | 1169 | cam = video_get_drvdata(container_of(cd, struct video_device, dev)); |
1174 | class_dev)); | ||
1175 | if (!cam) { | 1170 | if (!cam) { |
1176 | mutex_unlock(&sn9c102_sysfs_lock); | 1171 | mutex_unlock(&sn9c102_sysfs_lock); |
1177 | return -ENODEV; | 1172 | return -ENODEV; |
@@ -1198,8 +1193,7 @@ sn9c102_store_i2c_reg(struct device* cd, struct device_attribute *attr, | |||
1198 | if (mutex_lock_interruptible(&sn9c102_sysfs_lock)) | 1193 | if (mutex_lock_interruptible(&sn9c102_sysfs_lock)) |
1199 | return -ERESTARTSYS; | 1194 | return -ERESTARTSYS; |
1200 | 1195 | ||
1201 | cam = video_get_drvdata(container_of(cd, struct video_device, | 1196 | cam = video_get_drvdata(container_of(cd, struct video_device, dev)); |
1202 | class_dev)); | ||
1203 | if (!cam) { | 1197 | if (!cam) { |
1204 | mutex_unlock(&sn9c102_sysfs_lock); | 1198 | mutex_unlock(&sn9c102_sysfs_lock); |
1205 | return -ENODEV; | 1199 | return -ENODEV; |
@@ -1232,8 +1226,7 @@ static ssize_t sn9c102_show_i2c_val(struct device* cd, | |||
1232 | if (mutex_lock_interruptible(&sn9c102_sysfs_lock)) | 1226 | if (mutex_lock_interruptible(&sn9c102_sysfs_lock)) |
1233 | return -ERESTARTSYS; | 1227 | return -ERESTARTSYS; |
1234 | 1228 | ||
1235 | cam = video_get_drvdata(container_of(cd, struct video_device, | 1229 | cam = video_get_drvdata(container_of(cd, struct video_device, dev)); |
1236 | class_dev)); | ||
1237 | if (!cam) { | 1230 | if (!cam) { |
1238 | mutex_unlock(&sn9c102_sysfs_lock); | 1231 | mutex_unlock(&sn9c102_sysfs_lock); |
1239 | return -ENODEV; | 1232 | return -ENODEV; |
@@ -1271,8 +1264,7 @@ sn9c102_store_i2c_val(struct device* cd, struct device_attribute *attr, | |||
1271 | if (mutex_lock_interruptible(&sn9c102_sysfs_lock)) | 1264 | if (mutex_lock_interruptible(&sn9c102_sysfs_lock)) |
1272 | return -ERESTARTSYS; | 1265 | return -ERESTARTSYS; |
1273 | 1266 | ||
1274 | cam = video_get_drvdata(container_of(cd, struct video_device, | 1267 | cam = video_get_drvdata(container_of(cd, struct video_device, dev)); |
1275 | class_dev)); | ||
1276 | if (!cam) { | 1268 | if (!cam) { |
1277 | mutex_unlock(&sn9c102_sysfs_lock); | 1269 | mutex_unlock(&sn9c102_sysfs_lock); |
1278 | return -ENODEV; | 1270 | return -ENODEV; |
@@ -1318,8 +1310,7 @@ sn9c102_store_green(struct device* cd, struct device_attribute *attr, | |||
1318 | if (mutex_lock_interruptible(&sn9c102_sysfs_lock)) | 1310 | if (mutex_lock_interruptible(&sn9c102_sysfs_lock)) |
1319 | return -ERESTARTSYS; | 1311 | return -ERESTARTSYS; |
1320 | 1312 | ||
1321 | cam = video_get_drvdata(container_of(cd, struct video_device, | 1313 | cam = video_get_drvdata(container_of(cd, struct video_device, dev)); |
1322 | class_dev)); | ||
1323 | if (!cam) { | 1314 | if (!cam) { |
1324 | mutex_unlock(&sn9c102_sysfs_lock); | 1315 | mutex_unlock(&sn9c102_sysfs_lock); |
1325 | return -ENODEV; | 1316 | return -ENODEV; |
@@ -1400,8 +1391,7 @@ static ssize_t sn9c102_show_frame_header(struct device* cd, | |||
1400 | struct sn9c102_device* cam; | 1391 | struct sn9c102_device* cam; |
1401 | ssize_t count; | 1392 | ssize_t count; |
1402 | 1393 | ||
1403 | cam = video_get_drvdata(container_of(cd, struct video_device, | 1394 | cam = video_get_drvdata(container_of(cd, struct video_device, dev)); |
1404 | class_dev)); | ||
1405 | if (!cam) | 1395 | if (!cam) |
1406 | return -ENODEV; | 1396 | return -ENODEV; |
1407 | 1397 | ||
@@ -1428,49 +1418,49 @@ static DEVICE_ATTR(frame_header, S_IRUGO, sn9c102_show_frame_header, NULL); | |||
1428 | 1418 | ||
1429 | static int sn9c102_create_sysfs(struct sn9c102_device* cam) | 1419 | static int sn9c102_create_sysfs(struct sn9c102_device* cam) |
1430 | { | 1420 | { |
1431 | struct device *classdev = &(cam->v4ldev->class_dev); | 1421 | struct device *dev = &(cam->v4ldev->dev); |
1432 | int err = 0; | 1422 | int err = 0; |
1433 | 1423 | ||
1434 | if ((err = device_create_file(classdev, &dev_attr_reg))) | 1424 | if ((err = device_create_file(dev, &dev_attr_reg))) |
1435 | goto err_out; | 1425 | goto err_out; |
1436 | if ((err = device_create_file(classdev, &dev_attr_val))) | 1426 | if ((err = device_create_file(dev, &dev_attr_val))) |
1437 | goto err_reg; | 1427 | goto err_reg; |
1438 | if ((err = device_create_file(classdev, &dev_attr_frame_header))) | 1428 | if ((err = device_create_file(dev, &dev_attr_frame_header))) |
1439 | goto err_val; | 1429 | goto err_val; |
1440 | 1430 | ||
1441 | if (cam->sensor.sysfs_ops) { | 1431 | if (cam->sensor.sysfs_ops) { |
1442 | if ((err = device_create_file(classdev, &dev_attr_i2c_reg))) | 1432 | if ((err = device_create_file(dev, &dev_attr_i2c_reg))) |
1443 | goto err_frame_header; | 1433 | goto err_frame_header; |
1444 | if ((err = device_create_file(classdev, &dev_attr_i2c_val))) | 1434 | if ((err = device_create_file(dev, &dev_attr_i2c_val))) |
1445 | goto err_i2c_reg; | 1435 | goto err_i2c_reg; |
1446 | } | 1436 | } |
1447 | 1437 | ||
1448 | if (cam->bridge == BRIDGE_SN9C101 || cam->bridge == BRIDGE_SN9C102) { | 1438 | if (cam->bridge == BRIDGE_SN9C101 || cam->bridge == BRIDGE_SN9C102) { |
1449 | if ((err = device_create_file(classdev, &dev_attr_green))) | 1439 | if ((err = device_create_file(dev, &dev_attr_green))) |
1450 | goto err_i2c_val; | 1440 | goto err_i2c_val; |
1451 | } else { | 1441 | } else { |
1452 | if ((err = device_create_file(classdev, &dev_attr_blue))) | 1442 | if ((err = device_create_file(dev, &dev_attr_blue))) |
1453 | goto err_i2c_val; | 1443 | goto err_i2c_val; |
1454 | if ((err = device_create_file(classdev, &dev_attr_red))) | 1444 | if ((err = device_create_file(dev, &dev_attr_red))) |
1455 | goto err_blue; | 1445 | goto err_blue; |
1456 | } | 1446 | } |
1457 | 1447 | ||
1458 | return 0; | 1448 | return 0; |
1459 | 1449 | ||
1460 | err_blue: | 1450 | err_blue: |
1461 | device_remove_file(classdev, &dev_attr_blue); | 1451 | device_remove_file(dev, &dev_attr_blue); |
1462 | err_i2c_val: | 1452 | err_i2c_val: |
1463 | if (cam->sensor.sysfs_ops) | 1453 | if (cam->sensor.sysfs_ops) |
1464 | device_remove_file(classdev, &dev_attr_i2c_val); | 1454 | device_remove_file(dev, &dev_attr_i2c_val); |
1465 | err_i2c_reg: | 1455 | err_i2c_reg: |
1466 | if (cam->sensor.sysfs_ops) | 1456 | if (cam->sensor.sysfs_ops) |
1467 | device_remove_file(classdev, &dev_attr_i2c_reg); | 1457 | device_remove_file(dev, &dev_attr_i2c_reg); |
1468 | err_frame_header: | 1458 | err_frame_header: |
1469 | device_remove_file(classdev, &dev_attr_frame_header); | 1459 | device_remove_file(dev, &dev_attr_frame_header); |
1470 | err_val: | 1460 | err_val: |
1471 | device_remove_file(classdev, &dev_attr_val); | 1461 | device_remove_file(dev, &dev_attr_val); |
1472 | err_reg: | 1462 | err_reg: |
1473 | device_remove_file(classdev, &dev_attr_reg); | 1463 | device_remove_file(dev, &dev_attr_reg); |
1474 | err_out: | 1464 | err_out: |
1475 | return err; | 1465 | return err; |
1476 | } | 1466 | } |
@@ -3319,8 +3309,6 @@ sn9c102_usb_probe(struct usb_interface* intf, const struct usb_device_id* id) | |||
3319 | } | 3309 | } |
3320 | 3310 | ||
3321 | strcpy(cam->v4ldev->name, "SN9C1xx PC Camera"); | 3311 | strcpy(cam->v4ldev->name, "SN9C1xx PC Camera"); |
3322 | cam->v4ldev->owner = THIS_MODULE; | ||
3323 | cam->v4ldev->type = VID_TYPE_CAPTURE | VID_TYPE_SCALES; | ||
3324 | cam->v4ldev->fops = &sn9c102_fops; | 3312 | cam->v4ldev->fops = &sn9c102_fops; |
3325 | cam->v4ldev->minor = video_nr[dev_nr]; | 3313 | cam->v4ldev->minor = video_nr[dev_nr]; |
3326 | cam->v4ldev->release = video_device_release; | 3314 | cam->v4ldev->release = video_device_release; |
diff --git a/drivers/media/video/soc_camera.c b/drivers/media/video/soc_camera.c index e39b98f1eca4..b6be5ee678b6 100644 --- a/drivers/media/video/soc_camera.c +++ b/drivers/media/video/soc_camera.c | |||
@@ -25,6 +25,7 @@ | |||
25 | #include <linux/vmalloc.h> | 25 | #include <linux/vmalloc.h> |
26 | 26 | ||
27 | #include <media/v4l2-common.h> | 27 | #include <media/v4l2-common.h> |
28 | #include <media/v4l2-ioctl.h> | ||
28 | #include <media/v4l2-dev.h> | 29 | #include <media/v4l2-dev.h> |
29 | #include <media/videobuf-core.h> | 30 | #include <media/videobuf-core.h> |
30 | #include <media/soc_camera.h> | 31 | #include <media/soc_camera.h> |
@@ -193,7 +194,7 @@ static int soc_camera_open(struct inode *inode, struct file *file) | |||
193 | mutex_lock(&video_lock); | 194 | mutex_lock(&video_lock); |
194 | 195 | ||
195 | vdev = video_devdata(file); | 196 | vdev = video_devdata(file); |
196 | icd = container_of(vdev->dev, struct soc_camera_device, dev); | 197 | icd = container_of(vdev->parent, struct soc_camera_device, dev); |
197 | ici = to_soc_camera_host(icd->dev.parent); | 198 | ici = to_soc_camera_host(icd->dev.parent); |
198 | 199 | ||
199 | if (!try_module_get(icd->ops->owner)) { | 200 | if (!try_module_get(icd->ops->owner)) { |
@@ -258,7 +259,7 @@ static int soc_camera_close(struct inode *inode, struct file *file) | |||
258 | 259 | ||
259 | vfree(icf); | 260 | vfree(icf); |
260 | 261 | ||
261 | dev_dbg(vdev->dev, "camera device close\n"); | 262 | dev_dbg(vdev->parent, "camera device close\n"); |
262 | 263 | ||
263 | return 0; | 264 | return 0; |
264 | } | 265 | } |
@@ -271,7 +272,7 @@ static ssize_t soc_camera_read(struct file *file, char __user *buf, | |||
271 | struct video_device *vdev = icd->vdev; | 272 | struct video_device *vdev = icd->vdev; |
272 | int err = -EINVAL; | 273 | int err = -EINVAL; |
273 | 274 | ||
274 | dev_err(vdev->dev, "camera device read not implemented\n"); | 275 | dev_err(vdev->parent, "camera device read not implemented\n"); |
275 | 276 | ||
276 | return err; | 277 | return err; |
277 | } | 278 | } |
@@ -861,6 +862,35 @@ void soc_camera_device_unregister(struct soc_camera_device *icd) | |||
861 | } | 862 | } |
862 | EXPORT_SYMBOL(soc_camera_device_unregister); | 863 | EXPORT_SYMBOL(soc_camera_device_unregister); |
863 | 864 | ||
865 | static const struct v4l2_ioctl_ops soc_camera_ioctl_ops = { | ||
866 | .vidioc_querycap = soc_camera_querycap, | ||
867 | .vidioc_g_fmt_vid_cap = soc_camera_g_fmt_vid_cap, | ||
868 | .vidioc_enum_fmt_vid_cap = soc_camera_enum_fmt_vid_cap, | ||
869 | .vidioc_s_fmt_vid_cap = soc_camera_s_fmt_vid_cap, | ||
870 | .vidioc_enum_input = soc_camera_enum_input, | ||
871 | .vidioc_g_input = soc_camera_g_input, | ||
872 | .vidioc_s_input = soc_camera_s_input, | ||
873 | .vidioc_s_std = soc_camera_s_std, | ||
874 | .vidioc_reqbufs = soc_camera_reqbufs, | ||
875 | .vidioc_try_fmt_vid_cap = soc_camera_try_fmt_vid_cap, | ||
876 | .vidioc_querybuf = soc_camera_querybuf, | ||
877 | .vidioc_qbuf = soc_camera_qbuf, | ||
878 | .vidioc_dqbuf = soc_camera_dqbuf, | ||
879 | .vidioc_streamon = soc_camera_streamon, | ||
880 | .vidioc_streamoff = soc_camera_streamoff, | ||
881 | .vidioc_queryctrl = soc_camera_queryctrl, | ||
882 | .vidioc_g_ctrl = soc_camera_g_ctrl, | ||
883 | .vidioc_s_ctrl = soc_camera_s_ctrl, | ||
884 | .vidioc_cropcap = soc_camera_cropcap, | ||
885 | .vidioc_g_crop = soc_camera_g_crop, | ||
886 | .vidioc_s_crop = soc_camera_s_crop, | ||
887 | .vidioc_g_chip_ident = soc_camera_g_chip_ident, | ||
888 | #ifdef CONFIG_VIDEO_ADV_DEBUG | ||
889 | .vidioc_g_register = soc_camera_g_register, | ||
890 | .vidioc_s_register = soc_camera_s_register, | ||
891 | #endif | ||
892 | }; | ||
893 | |||
864 | int soc_camera_video_start(struct soc_camera_device *icd) | 894 | int soc_camera_video_start(struct soc_camera_device *icd) |
865 | { | 895 | { |
866 | struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent); | 896 | struct soc_camera_host *ici = to_soc_camera_host(icd->dev.parent); |
@@ -877,45 +907,19 @@ int soc_camera_video_start(struct soc_camera_device *icd) | |||
877 | 907 | ||
878 | strlcpy(vdev->name, ici->drv_name, sizeof(vdev->name)); | 908 | strlcpy(vdev->name, ici->drv_name, sizeof(vdev->name)); |
879 | /* Maybe better &ici->dev */ | 909 | /* Maybe better &ici->dev */ |
880 | vdev->dev = &icd->dev; | 910 | vdev->parent = &icd->dev; |
881 | vdev->type = VID_TYPE_CAPTURE; | ||
882 | vdev->current_norm = V4L2_STD_UNKNOWN; | 911 | vdev->current_norm = V4L2_STD_UNKNOWN; |
883 | vdev->fops = &soc_camera_fops; | 912 | vdev->fops = &soc_camera_fops; |
913 | vdev->ioctl_ops = &soc_camera_ioctl_ops; | ||
884 | vdev->release = video_device_release; | 914 | vdev->release = video_device_release; |
885 | vdev->minor = -1; | 915 | vdev->minor = -1; |
886 | vdev->tvnorms = V4L2_STD_UNKNOWN, | 916 | vdev->tvnorms = V4L2_STD_UNKNOWN, |
887 | vdev->vidioc_querycap = soc_camera_querycap; | ||
888 | vdev->vidioc_g_fmt_vid_cap = soc_camera_g_fmt_vid_cap; | ||
889 | vdev->vidioc_enum_fmt_vid_cap = soc_camera_enum_fmt_vid_cap; | ||
890 | vdev->vidioc_s_fmt_vid_cap = soc_camera_s_fmt_vid_cap; | ||
891 | vdev->vidioc_enum_input = soc_camera_enum_input; | ||
892 | vdev->vidioc_g_input = soc_camera_g_input; | ||
893 | vdev->vidioc_s_input = soc_camera_s_input; | ||
894 | vdev->vidioc_s_std = soc_camera_s_std; | ||
895 | vdev->vidioc_reqbufs = soc_camera_reqbufs; | ||
896 | vdev->vidioc_try_fmt_vid_cap = soc_camera_try_fmt_vid_cap; | ||
897 | vdev->vidioc_querybuf = soc_camera_querybuf; | ||
898 | vdev->vidioc_qbuf = soc_camera_qbuf; | ||
899 | vdev->vidioc_dqbuf = soc_camera_dqbuf; | ||
900 | vdev->vidioc_streamon = soc_camera_streamon; | ||
901 | vdev->vidioc_streamoff = soc_camera_streamoff; | ||
902 | vdev->vidioc_queryctrl = soc_camera_queryctrl; | ||
903 | vdev->vidioc_g_ctrl = soc_camera_g_ctrl; | ||
904 | vdev->vidioc_s_ctrl = soc_camera_s_ctrl; | ||
905 | vdev->vidioc_cropcap = soc_camera_cropcap; | ||
906 | vdev->vidioc_g_crop = soc_camera_g_crop; | ||
907 | vdev->vidioc_s_crop = soc_camera_s_crop; | ||
908 | vdev->vidioc_g_chip_ident = soc_camera_g_chip_ident; | ||
909 | #ifdef CONFIG_VIDEO_ADV_DEBUG | ||
910 | vdev->vidioc_g_register = soc_camera_g_register; | ||
911 | vdev->vidioc_s_register = soc_camera_s_register; | ||
912 | #endif | ||
913 | 917 | ||
914 | icd->current_fmt = &icd->formats[0]; | 918 | icd->current_fmt = &icd->formats[0]; |
915 | 919 | ||
916 | err = video_register_device(vdev, VFL_TYPE_GRABBER, vdev->minor); | 920 | err = video_register_device(vdev, VFL_TYPE_GRABBER, vdev->minor); |
917 | if (err < 0) { | 921 | if (err < 0) { |
918 | dev_err(vdev->dev, "video_register_device failed\n"); | 922 | dev_err(vdev->parent, "video_register_device failed\n"); |
919 | goto evidregd; | 923 | goto evidregd; |
920 | } | 924 | } |
921 | icd->vdev = vdev; | 925 | icd->vdev = vdev; |
diff --git a/drivers/media/video/stk-webcam.c b/drivers/media/video/stk-webcam.c index f308c38d744f..ad36af30e099 100644 --- a/drivers/media/video/stk-webcam.c +++ b/drivers/media/video/stk-webcam.c | |||
@@ -34,6 +34,7 @@ | |||
34 | #include <linux/vmalloc.h> | 34 | #include <linux/vmalloc.h> |
35 | #include <linux/videodev2.h> | 35 | #include <linux/videodev2.h> |
36 | #include <media/v4l2-common.h> | 36 | #include <media/v4l2-common.h> |
37 | #include <media/v4l2-ioctl.h> | ||
37 | 38 | ||
38 | #include "stk-webcam.h" | 39 | #include "stk-webcam.h" |
39 | 40 | ||
@@ -340,17 +341,19 @@ static int stk_create_sysfs_files(struct video_device *vdev) | |||
340 | { | 341 | { |
341 | int ret; | 342 | int ret; |
342 | 343 | ||
343 | ret = video_device_create_file(vdev, &dev_attr_brightness); | 344 | ret = device_create_file(&vdev->dev, &dev_attr_brightness); |
344 | ret += video_device_create_file(vdev, &dev_attr_hflip); | 345 | ret += device_create_file(&vdev->dev, &dev_attr_hflip); |
345 | ret += video_device_create_file(vdev, &dev_attr_vflip); | 346 | ret += device_create_file(&vdev->dev, &dev_attr_vflip); |
347 | if (ret) | ||
348 | STK_WARNING("Could not create sysfs files\n"); | ||
346 | return ret; | 349 | return ret; |
347 | } | 350 | } |
348 | 351 | ||
349 | static void stk_remove_sysfs_files(struct video_device *vdev) | 352 | static void stk_remove_sysfs_files(struct video_device *vdev) |
350 | { | 353 | { |
351 | video_device_remove_file(vdev, &dev_attr_brightness); | 354 | device_remove_file(&vdev->dev, &dev_attr_brightness); |
352 | video_device_remove_file(vdev, &dev_attr_hflip); | 355 | device_remove_file(&vdev->dev, &dev_attr_hflip); |
353 | video_device_remove_file(vdev, &dev_attr_vflip); | 356 | device_remove_file(&vdev->dev, &dev_attr_vflip); |
354 | } | 357 | } |
355 | 358 | ||
356 | #else | 359 | #else |
@@ -442,18 +445,19 @@ static void stk_isoc_handler(struct urb *urb) | |||
442 | fb->v4lbuf.bytesused = 0; | 445 | fb->v4lbuf.bytesused = 0; |
443 | fill = fb->buffer; | 446 | fill = fb->buffer; |
444 | } else if (fb->v4lbuf.bytesused == dev->frame_size) { | 447 | } else if (fb->v4lbuf.bytesused == dev->frame_size) { |
445 | list_move_tail(dev->sio_avail.next, | 448 | if (list_is_singular(&dev->sio_avail)) { |
446 | &dev->sio_full); | 449 | /* Always reuse the last buffer */ |
447 | wake_up(&dev->wait_frame); | 450 | fb->v4lbuf.bytesused = 0; |
448 | if (list_empty(&dev->sio_avail)) { | 451 | fill = fb->buffer; |
449 | (void) (printk_ratelimit() && | 452 | } else { |
450 | STK_ERROR("No buffer available\n")); | 453 | list_move_tail(dev->sio_avail.next, |
451 | goto resubmit; | 454 | &dev->sio_full); |
455 | wake_up(&dev->wait_frame); | ||
456 | fb = list_first_entry(&dev->sio_avail, | ||
457 | struct stk_sio_buffer, list); | ||
458 | fb->v4lbuf.bytesused = 0; | ||
459 | fill = fb->buffer; | ||
452 | } | 460 | } |
453 | fb = list_first_entry(&dev->sio_avail, | ||
454 | struct stk_sio_buffer, list); | ||
455 | fb->v4lbuf.bytesused = 0; | ||
456 | fill = fb->buffer; | ||
457 | } | 461 | } |
458 | } else { | 462 | } else { |
459 | framelen -= 4; | 463 | framelen -= 4; |
@@ -1327,20 +1331,7 @@ static struct file_operations v4l_stk_fops = { | |||
1327 | .llseek = no_llseek | 1331 | .llseek = no_llseek |
1328 | }; | 1332 | }; |
1329 | 1333 | ||
1330 | static void stk_v4l_dev_release(struct video_device *vd) | 1334 | static const struct v4l2_ioctl_ops v4l_stk_ioctl_ops = { |
1331 | { | ||
1332 | } | ||
1333 | |||
1334 | static struct video_device stk_v4l_data = { | ||
1335 | .name = "stkwebcam", | ||
1336 | .type = VFL_TYPE_GRABBER, | ||
1337 | .type2 = VID_TYPE_CAPTURE, | ||
1338 | .minor = -1, | ||
1339 | .tvnorms = V4L2_STD_UNKNOWN, | ||
1340 | .current_norm = V4L2_STD_UNKNOWN, | ||
1341 | .fops = &v4l_stk_fops, | ||
1342 | .release = stk_v4l_dev_release, | ||
1343 | |||
1344 | .vidioc_querycap = stk_vidioc_querycap, | 1335 | .vidioc_querycap = stk_vidioc_querycap, |
1345 | .vidioc_enum_fmt_vid_cap = stk_vidioc_enum_fmt_vid_cap, | 1336 | .vidioc_enum_fmt_vid_cap = stk_vidioc_enum_fmt_vid_cap, |
1346 | .vidioc_try_fmt_vid_cap = stk_vidioc_try_fmt_vid_cap, | 1337 | .vidioc_try_fmt_vid_cap = stk_vidioc_try_fmt_vid_cap, |
@@ -1362,6 +1353,20 @@ static struct video_device stk_v4l_data = { | |||
1362 | .vidioc_g_parm = stk_vidioc_g_parm, | 1353 | .vidioc_g_parm = stk_vidioc_g_parm, |
1363 | }; | 1354 | }; |
1364 | 1355 | ||
1356 | static void stk_v4l_dev_release(struct video_device *vd) | ||
1357 | { | ||
1358 | } | ||
1359 | |||
1360 | static struct video_device stk_v4l_data = { | ||
1361 | .name = "stkwebcam", | ||
1362 | .minor = -1, | ||
1363 | .tvnorms = V4L2_STD_UNKNOWN, | ||
1364 | .current_norm = V4L2_STD_UNKNOWN, | ||
1365 | .fops = &v4l_stk_fops, | ||
1366 | .ioctl_ops = &v4l_stk_ioctl_ops, | ||
1367 | .release = stk_v4l_dev_release, | ||
1368 | }; | ||
1369 | |||
1365 | 1370 | ||
1366 | static int stk_register_video_device(struct stk_camera *dev) | 1371 | static int stk_register_video_device(struct stk_camera *dev) |
1367 | { | 1372 | { |
@@ -1369,7 +1374,7 @@ static int stk_register_video_device(struct stk_camera *dev) | |||
1369 | 1374 | ||
1370 | dev->vdev = stk_v4l_data; | 1375 | dev->vdev = stk_v4l_data; |
1371 | dev->vdev.debug = debug; | 1376 | dev->vdev.debug = debug; |
1372 | dev->vdev.dev = &dev->interface->dev; | 1377 | dev->vdev.parent = &dev->interface->dev; |
1373 | dev->vdev.priv = dev; | 1378 | dev->vdev.priv = dev; |
1374 | err = video_register_device(&dev->vdev, VFL_TYPE_GRABBER, -1); | 1379 | err = video_register_device(&dev->vdev, VFL_TYPE_GRABBER, -1); |
1375 | if (err) | 1380 | if (err) |
diff --git a/drivers/media/video/stradis.c b/drivers/media/video/stradis.c index c109511f21ea..276bded06ab3 100644 --- a/drivers/media/video/stradis.c +++ b/drivers/media/video/stradis.c | |||
@@ -43,6 +43,7 @@ | |||
43 | #include <linux/vmalloc.h> | 43 | #include <linux/vmalloc.h> |
44 | #include <linux/videodev.h> | 44 | #include <linux/videodev.h> |
45 | #include <media/v4l2-common.h> | 45 | #include <media/v4l2-common.h> |
46 | #include <media/v4l2-ioctl.h> | ||
46 | 47 | ||
47 | #include "saa7146.h" | 48 | #include "saa7146.h" |
48 | #include "saa7146reg.h" | 49 | #include "saa7146reg.h" |
@@ -1918,7 +1919,6 @@ static const struct file_operations saa_fops = { | |||
1918 | /* template for video_device-structure */ | 1919 | /* template for video_device-structure */ |
1919 | static struct video_device saa_template = { | 1920 | static struct video_device saa_template = { |
1920 | .name = "SAA7146A", | 1921 | .name = "SAA7146A", |
1921 | .type = VID_TYPE_CAPTURE | VID_TYPE_OVERLAY, | ||
1922 | .fops = &saa_fops, | 1922 | .fops = &saa_fops, |
1923 | .minor = -1, | 1923 | .minor = -1, |
1924 | }; | 1924 | }; |
diff --git a/drivers/media/video/stv680.c b/drivers/media/video/stv680.c index d7f130bedb5f..56dc3d6b5b29 100644 --- a/drivers/media/video/stv680.c +++ b/drivers/media/video/stv680.c | |||
@@ -66,6 +66,7 @@ | |||
66 | #include <linux/errno.h> | 66 | #include <linux/errno.h> |
67 | #include <linux/videodev.h> | 67 | #include <linux/videodev.h> |
68 | #include <media/v4l2-common.h> | 68 | #include <media/v4l2-common.h> |
69 | #include <media/v4l2-ioctl.h> | ||
69 | #include <linux/usb.h> | 70 | #include <linux/usb.h> |
70 | #include <linux/mutex.h> | 71 | #include <linux/mutex.h> |
71 | 72 | ||
@@ -524,53 +525,54 @@ static int stv680_create_sysfs_files(struct video_device *vdev) | |||
524 | { | 525 | { |
525 | int rc; | 526 | int rc; |
526 | 527 | ||
527 | rc = video_device_create_file(vdev, &dev_attr_model); | 528 | rc = device_create_file(&vdev->dev, &dev_attr_model); |
528 | if (rc) goto err; | 529 | if (rc) goto err; |
529 | rc = video_device_create_file(vdev, &dev_attr_in_use); | 530 | rc = device_create_file(&vdev->dev, &dev_attr_in_use); |
530 | if (rc) goto err_model; | 531 | if (rc) goto err_model; |
531 | rc = video_device_create_file(vdev, &dev_attr_streaming); | 532 | rc = device_create_file(&vdev->dev, &dev_attr_streaming); |
532 | if (rc) goto err_inuse; | 533 | if (rc) goto err_inuse; |
533 | rc = video_device_create_file(vdev, &dev_attr_palette); | 534 | rc = device_create_file(&vdev->dev, &dev_attr_palette); |
534 | if (rc) goto err_stream; | 535 | if (rc) goto err_stream; |
535 | rc = video_device_create_file(vdev, &dev_attr_frames_total); | 536 | rc = device_create_file(&vdev->dev, &dev_attr_frames_total); |
536 | if (rc) goto err_pal; | 537 | if (rc) goto err_pal; |
537 | rc = video_device_create_file(vdev, &dev_attr_frames_read); | 538 | rc = device_create_file(&vdev->dev, &dev_attr_frames_read); |
538 | if (rc) goto err_framtot; | 539 | if (rc) goto err_framtot; |
539 | rc = video_device_create_file(vdev, &dev_attr_packets_dropped); | 540 | rc = device_create_file(&vdev->dev, &dev_attr_packets_dropped); |
540 | if (rc) goto err_framread; | 541 | if (rc) goto err_framread; |
541 | rc = video_device_create_file(vdev, &dev_attr_decoding_errors); | 542 | rc = device_create_file(&vdev->dev, &dev_attr_decoding_errors); |
542 | if (rc) goto err_dropped; | 543 | if (rc) goto err_dropped; |
543 | 544 | ||
544 | return 0; | 545 | return 0; |
545 | 546 | ||
546 | err_dropped: | 547 | err_dropped: |
547 | video_device_remove_file(vdev, &dev_attr_packets_dropped); | 548 | device_remove_file(&vdev->dev, &dev_attr_packets_dropped); |
548 | err_framread: | 549 | err_framread: |
549 | video_device_remove_file(vdev, &dev_attr_frames_read); | 550 | device_remove_file(&vdev->dev, &dev_attr_frames_read); |
550 | err_framtot: | 551 | err_framtot: |
551 | video_device_remove_file(vdev, &dev_attr_frames_total); | 552 | device_remove_file(&vdev->dev, &dev_attr_frames_total); |
552 | err_pal: | 553 | err_pal: |
553 | video_device_remove_file(vdev, &dev_attr_palette); | 554 | device_remove_file(&vdev->dev, &dev_attr_palette); |
554 | err_stream: | 555 | err_stream: |
555 | video_device_remove_file(vdev, &dev_attr_streaming); | 556 | device_remove_file(&vdev->dev, &dev_attr_streaming); |
556 | err_inuse: | 557 | err_inuse: |
557 | video_device_remove_file(vdev, &dev_attr_in_use); | 558 | device_remove_file(&vdev->dev, &dev_attr_in_use); |
558 | err_model: | 559 | err_model: |
559 | video_device_remove_file(vdev, &dev_attr_model); | 560 | device_remove_file(&vdev->dev, &dev_attr_model); |
560 | err: | 561 | err: |
562 | PDEBUG(0, "STV(e): Could not create sysfs files"); | ||
561 | return rc; | 563 | return rc; |
562 | } | 564 | } |
563 | 565 | ||
564 | static void stv680_remove_sysfs_files(struct video_device *vdev) | 566 | static void stv680_remove_sysfs_files(struct video_device *vdev) |
565 | { | 567 | { |
566 | video_device_remove_file(vdev, &dev_attr_model); | 568 | device_remove_file(&vdev->dev, &dev_attr_model); |
567 | video_device_remove_file(vdev, &dev_attr_in_use); | 569 | device_remove_file(&vdev->dev, &dev_attr_in_use); |
568 | video_device_remove_file(vdev, &dev_attr_streaming); | 570 | device_remove_file(&vdev->dev, &dev_attr_streaming); |
569 | video_device_remove_file(vdev, &dev_attr_palette); | 571 | device_remove_file(&vdev->dev, &dev_attr_palette); |
570 | video_device_remove_file(vdev, &dev_attr_frames_total); | 572 | device_remove_file(&vdev->dev, &dev_attr_frames_total); |
571 | video_device_remove_file(vdev, &dev_attr_frames_read); | 573 | device_remove_file(&vdev->dev, &dev_attr_frames_read); |
572 | video_device_remove_file(vdev, &dev_attr_packets_dropped); | 574 | device_remove_file(&vdev->dev, &dev_attr_packets_dropped); |
573 | video_device_remove_file(vdev, &dev_attr_decoding_errors); | 575 | device_remove_file(&vdev->dev, &dev_attr_decoding_errors); |
574 | } | 576 | } |
575 | 577 | ||
576 | /******************************************************************** | 578 | /******************************************************************** |
@@ -1400,9 +1402,7 @@ static const struct file_operations stv680_fops = { | |||
1400 | .llseek = no_llseek, | 1402 | .llseek = no_llseek, |
1401 | }; | 1403 | }; |
1402 | static struct video_device stv680_template = { | 1404 | static struct video_device stv680_template = { |
1403 | .owner = THIS_MODULE, | ||
1404 | .name = "STV0680 USB camera", | 1405 | .name = "STV0680 USB camera", |
1405 | .type = VID_TYPE_CAPTURE, | ||
1406 | .fops = &stv680_fops, | 1406 | .fops = &stv680_fops, |
1407 | .release = video_device_release, | 1407 | .release = video_device_release, |
1408 | .minor = -1, | 1408 | .minor = -1, |
@@ -1454,7 +1454,7 @@ static int stv680_probe (struct usb_interface *intf, const struct usb_device_id | |||
1454 | goto error; | 1454 | goto error; |
1455 | } | 1455 | } |
1456 | memcpy(stv680->vdev, &stv680_template, sizeof(stv680_template)); | 1456 | memcpy(stv680->vdev, &stv680_template, sizeof(stv680_template)); |
1457 | stv680->vdev->dev = &intf->dev; | 1457 | stv680->vdev->parent = &intf->dev; |
1458 | video_set_drvdata(stv680->vdev, stv680); | 1458 | video_set_drvdata(stv680->vdev, stv680); |
1459 | 1459 | ||
1460 | memcpy (stv680->vdev->name, stv680->camera_name, strlen (stv680->camera_name)); | 1460 | memcpy (stv680->vdev->name, stv680->camera_name, strlen (stv680->camera_name)); |
diff --git a/drivers/media/video/tda7432.c b/drivers/media/video/tda7432.c index ae75c187da79..4963d4264880 100644 --- a/drivers/media/video/tda7432.c +++ b/drivers/media/video/tda7432.c | |||
@@ -44,10 +44,11 @@ | |||
44 | #include <linux/delay.h> | 44 | #include <linux/delay.h> |
45 | #include <linux/errno.h> | 45 | #include <linux/errno.h> |
46 | #include <linux/slab.h> | 46 | #include <linux/slab.h> |
47 | #include <linux/videodev.h> | 47 | #include <linux/videodev2.h> |
48 | #include <linux/i2c.h> | 48 | #include <linux/i2c.h> |
49 | 49 | ||
50 | #include <media/v4l2-common.h> | 50 | #include <media/v4l2-common.h> |
51 | #include <media/v4l2-ioctl.h> | ||
51 | #include <media/i2c-addr.h> | 52 | #include <media/i2c-addr.h> |
52 | 53 | ||
53 | #ifndef VIDEO_AUDIO_BALANCE | 54 | #ifndef VIDEO_AUDIO_BALANCE |
diff --git a/drivers/media/video/tda9875.c b/drivers/media/video/tda9875.c index 7a8ce8fb46dc..792f0b079909 100644 --- a/drivers/media/video/tda9875.c +++ b/drivers/media/video/tda9875.c | |||
@@ -25,7 +25,7 @@ | |||
25 | #include <linux/delay.h> | 25 | #include <linux/delay.h> |
26 | #include <linux/errno.h> | 26 | #include <linux/errno.h> |
27 | #include <linux/slab.h> | 27 | #include <linux/slab.h> |
28 | #include <linux/videodev.h> | 28 | #include <linux/videodev2.h> |
29 | #include <media/v4l2-common.h> | 29 | #include <media/v4l2-common.h> |
30 | #include <linux/i2c.h> | 30 | #include <linux/i2c.h> |
31 | #include <linux/init.h> | 31 | #include <linux/init.h> |
diff --git a/drivers/media/video/tlv320aic23b.c b/drivers/media/video/tlv320aic23b.c index 9220378a5637..281065b9dd2d 100644 --- a/drivers/media/video/tlv320aic23b.c +++ b/drivers/media/video/tlv320aic23b.c | |||
@@ -29,7 +29,7 @@ | |||
29 | #include <asm/uaccess.h> | 29 | #include <asm/uaccess.h> |
30 | #include <linux/i2c.h> | 30 | #include <linux/i2c.h> |
31 | #include <linux/i2c-id.h> | 31 | #include <linux/i2c-id.h> |
32 | #include <linux/videodev.h> | 32 | #include <linux/videodev2.h> |
33 | #include <media/v4l2-common.h> | 33 | #include <media/v4l2-common.h> |
34 | #include <media/v4l2-i2c-drv-legacy.h> | 34 | #include <media/v4l2-i2c-drv-legacy.h> |
35 | 35 | ||
diff --git a/drivers/media/video/tuner-core.c b/drivers/media/video/tuner-core.c index 93d879dc510f..d806a3556eed 100644 --- a/drivers/media/video/tuner-core.c +++ b/drivers/media/video/tuner-core.c | |||
@@ -19,6 +19,7 @@ | |||
19 | #include <media/tuner.h> | 19 | #include <media/tuner.h> |
20 | #include <media/tuner-types.h> | 20 | #include <media/tuner-types.h> |
21 | #include <media/v4l2-common.h> | 21 | #include <media/v4l2-common.h> |
22 | #include <media/v4l2-ioctl.h> | ||
22 | #include <media/v4l2-i2c-drv-legacy.h> | 23 | #include <media/v4l2-i2c-drv-legacy.h> |
23 | #include "mt20xx.h" | 24 | #include "mt20xx.h" |
24 | #include "tda8290.h" | 25 | #include "tda8290.h" |
diff --git a/drivers/media/video/tveeprom.c b/drivers/media/video/tveeprom.c index 9da0e1807ffb..bcc32fa92a81 100644 --- a/drivers/media/video/tveeprom.c +++ b/drivers/media/video/tveeprom.c | |||
@@ -34,13 +34,13 @@ | |||
34 | #include <linux/kernel.h> | 34 | #include <linux/kernel.h> |
35 | #include <linux/init.h> | 35 | #include <linux/init.h> |
36 | #include <linux/types.h> | 36 | #include <linux/types.h> |
37 | #include <linux/videodev.h> | 37 | #include <linux/videodev2.h> |
38 | #include <linux/i2c.h> | 38 | #include <linux/i2c.h> |
39 | 39 | ||
40 | #include <media/tuner.h> | 40 | #include <media/tuner.h> |
41 | #include <media/tveeprom.h> | 41 | #include <media/tveeprom.h> |
42 | #include <media/v4l2-common.h> | 42 | #include <media/v4l2-common.h> |
43 | #include <media/audiochip.h> | 43 | #include <media/v4l2-chip-ident.h> |
44 | 44 | ||
45 | MODULE_DESCRIPTION("i2c Hauppauge eeprom decoder driver"); | 45 | MODULE_DESCRIPTION("i2c Hauppauge eeprom decoder driver"); |
46 | MODULE_AUTHOR("John Klar"); | 46 | MODULE_AUTHOR("John Klar"); |
@@ -261,70 +261,72 @@ hauppauge_tuner[] = | |||
261 | { TUNER_ABSENT, "MaxLinear MXL5005_v2"}, | 261 | { TUNER_ABSENT, "MaxLinear MXL5005_v2"}, |
262 | { TUNER_PHILIPS_TDA8290, "Philips 18271_8295"}, | 262 | { TUNER_PHILIPS_TDA8290, "Philips 18271_8295"}, |
263 | /* 150-159 */ | 263 | /* 150-159 */ |
264 | { TUNER_ABSENT, "Xceive XC5000"}, | 264 | { TUNER_ABSENT, "Xceive XC5000"}, |
265 | }; | 265 | }; |
266 | 266 | ||
267 | /* Use V4L2_IDENT_AMBIGUOUS for those audio 'chips' that are | ||
268 | * internal to a video chip, i.e. not a separate audio chip. */ | ||
267 | static struct HAUPPAUGE_AUDIOIC | 269 | static struct HAUPPAUGE_AUDIOIC |
268 | { | 270 | { |
269 | enum audiochip id; | 271 | u32 id; |
270 | char *name; | 272 | char *name; |
271 | } | 273 | } |
272 | audioIC[] = | 274 | audioIC[] = |
273 | { | 275 | { |
274 | /* 0-4 */ | 276 | /* 0-4 */ |
275 | {AUDIO_CHIP_NONE, "None"}, | 277 | { V4L2_IDENT_NONE, "None" }, |
276 | {AUDIO_CHIP_TEA6300, "TEA6300"}, | 278 | { V4L2_IDENT_UNKNOWN, "TEA6300" }, |
277 | {AUDIO_CHIP_TEA6300, "TEA6320"}, | 279 | { V4L2_IDENT_UNKNOWN, "TEA6320" }, |
278 | {AUDIO_CHIP_TDA985X, "TDA9850"}, | 280 | { V4L2_IDENT_UNKNOWN, "TDA9850" }, |
279 | {AUDIO_CHIP_MSP34XX, "MSP3400C"}, | 281 | { V4L2_IDENT_MSPX4XX, "MSP3400C" }, |
280 | /* 5-9 */ | 282 | /* 5-9 */ |
281 | {AUDIO_CHIP_MSP34XX, "MSP3410D"}, | 283 | { V4L2_IDENT_MSPX4XX, "MSP3410D" }, |
282 | {AUDIO_CHIP_MSP34XX, "MSP3415"}, | 284 | { V4L2_IDENT_MSPX4XX, "MSP3415" }, |
283 | {AUDIO_CHIP_MSP34XX, "MSP3430"}, | 285 | { V4L2_IDENT_MSPX4XX, "MSP3430" }, |
284 | {AUDIO_CHIP_MSP34XX, "MSP3438"}, | 286 | { V4L2_IDENT_MSPX4XX, "MSP3438" }, |
285 | {AUDIO_CHIP_UNKNOWN, "CS5331"}, | 287 | { V4L2_IDENT_UNKNOWN, "CS5331" }, |
286 | /* 10-14 */ | 288 | /* 10-14 */ |
287 | {AUDIO_CHIP_MSP34XX, "MSP3435"}, | 289 | { V4L2_IDENT_MSPX4XX, "MSP3435" }, |
288 | {AUDIO_CHIP_MSP34XX, "MSP3440"}, | 290 | { V4L2_IDENT_MSPX4XX, "MSP3440" }, |
289 | {AUDIO_CHIP_MSP34XX, "MSP3445"}, | 291 | { V4L2_IDENT_MSPX4XX, "MSP3445" }, |
290 | {AUDIO_CHIP_MSP34XX, "MSP3411"}, | 292 | { V4L2_IDENT_MSPX4XX, "MSP3411" }, |
291 | {AUDIO_CHIP_MSP34XX, "MSP3416"}, | 293 | { V4L2_IDENT_MSPX4XX, "MSP3416" }, |
292 | /* 15-19 */ | 294 | /* 15-19 */ |
293 | {AUDIO_CHIP_MSP34XX, "MSP3425"}, | 295 | { V4L2_IDENT_MSPX4XX, "MSP3425" }, |
294 | {AUDIO_CHIP_MSP34XX, "MSP3451"}, | 296 | { V4L2_IDENT_MSPX4XX, "MSP3451" }, |
295 | {AUDIO_CHIP_MSP34XX, "MSP3418"}, | 297 | { V4L2_IDENT_MSPX4XX, "MSP3418" }, |
296 | {AUDIO_CHIP_UNKNOWN, "Type 0x12"}, | 298 | { V4L2_IDENT_UNKNOWN, "Type 0x12" }, |
297 | {AUDIO_CHIP_UNKNOWN, "OKI7716"}, | 299 | { V4L2_IDENT_UNKNOWN, "OKI7716" }, |
298 | /* 20-24 */ | 300 | /* 20-24 */ |
299 | {AUDIO_CHIP_MSP34XX, "MSP4410"}, | 301 | { V4L2_IDENT_MSPX4XX, "MSP4410" }, |
300 | {AUDIO_CHIP_MSP34XX, "MSP4420"}, | 302 | { V4L2_IDENT_MSPX4XX, "MSP4420" }, |
301 | {AUDIO_CHIP_MSP34XX, "MSP4440"}, | 303 | { V4L2_IDENT_MSPX4XX, "MSP4440" }, |
302 | {AUDIO_CHIP_MSP34XX, "MSP4450"}, | 304 | { V4L2_IDENT_MSPX4XX, "MSP4450" }, |
303 | {AUDIO_CHIP_MSP34XX, "MSP4408"}, | 305 | { V4L2_IDENT_MSPX4XX, "MSP4408" }, |
304 | /* 25-29 */ | 306 | /* 25-29 */ |
305 | {AUDIO_CHIP_MSP34XX, "MSP4418"}, | 307 | { V4L2_IDENT_MSPX4XX, "MSP4418" }, |
306 | {AUDIO_CHIP_MSP34XX, "MSP4428"}, | 308 | { V4L2_IDENT_MSPX4XX, "MSP4428" }, |
307 | {AUDIO_CHIP_MSP34XX, "MSP4448"}, | 309 | { V4L2_IDENT_MSPX4XX, "MSP4448" }, |
308 | {AUDIO_CHIP_MSP34XX, "MSP4458"}, | 310 | { V4L2_IDENT_MSPX4XX, "MSP4458" }, |
309 | {AUDIO_CHIP_MSP34XX, "Type 0x1d"}, | 311 | { V4L2_IDENT_MSPX4XX, "Type 0x1d" }, |
310 | /* 30-34 */ | 312 | /* 30-34 */ |
311 | {AUDIO_CHIP_INTERNAL, "CX880"}, | 313 | { V4L2_IDENT_AMBIGUOUS, "CX880" }, |
312 | {AUDIO_CHIP_INTERNAL, "CX881"}, | 314 | { V4L2_IDENT_AMBIGUOUS, "CX881" }, |
313 | {AUDIO_CHIP_INTERNAL, "CX883"}, | 315 | { V4L2_IDENT_AMBIGUOUS, "CX883" }, |
314 | {AUDIO_CHIP_INTERNAL, "CX882"}, | 316 | { V4L2_IDENT_AMBIGUOUS, "CX882" }, |
315 | {AUDIO_CHIP_INTERNAL, "CX25840"}, | 317 | { V4L2_IDENT_AMBIGUOUS, "CX25840" }, |
316 | /* 35-39 */ | 318 | /* 35-39 */ |
317 | {AUDIO_CHIP_INTERNAL, "CX25841"}, | 319 | { V4L2_IDENT_AMBIGUOUS, "CX25841" }, |
318 | {AUDIO_CHIP_INTERNAL, "CX25842"}, | 320 | { V4L2_IDENT_AMBIGUOUS, "CX25842" }, |
319 | {AUDIO_CHIP_INTERNAL, "CX25843"}, | 321 | { V4L2_IDENT_AMBIGUOUS, "CX25843" }, |
320 | {AUDIO_CHIP_INTERNAL, "CX23418"}, | 322 | { V4L2_IDENT_AMBIGUOUS, "CX23418" }, |
321 | {AUDIO_CHIP_INTERNAL, "CX23885"}, | 323 | { V4L2_IDENT_AMBIGUOUS, "CX23885" }, |
322 | /* 40-44 */ | 324 | /* 40-44 */ |
323 | {AUDIO_CHIP_INTERNAL, "CX23888"}, | 325 | { V4L2_IDENT_AMBIGUOUS, "CX23888" }, |
324 | {AUDIO_CHIP_INTERNAL, "SAA7131"}, | 326 | { V4L2_IDENT_AMBIGUOUS, "SAA7131" }, |
325 | {AUDIO_CHIP_INTERNAL, "CX23887"}, | 327 | { V4L2_IDENT_AMBIGUOUS, "CX23887" }, |
326 | {AUDIO_CHIP_INTERNAL, "SAA7164"}, | 328 | { V4L2_IDENT_AMBIGUOUS, "SAA7164" }, |
327 | {AUDIO_CHIP_INTERNAL, "AU8522"}, | 329 | { V4L2_IDENT_AMBIGUOUS, "AU8522" }, |
328 | }; | 330 | }; |
329 | 331 | ||
330 | /* This list is supplied by Hauppauge. Thanks! */ | 332 | /* This list is supplied by Hauppauge. Thanks! */ |
@@ -483,7 +485,7 @@ void tveeprom_hauppauge_analog(struct i2c_client *c, struct tveeprom *tvee, | |||
483 | tvee->has_radio = eeprom_data[i+len-1]; | 485 | tvee->has_radio = eeprom_data[i+len-1]; |
484 | /* old style tag, don't know how to detect | 486 | /* old style tag, don't know how to detect |
485 | IR presence, mark as unknown. */ | 487 | IR presence, mark as unknown. */ |
486 | tvee->has_ir = -1; | 488 | tvee->has_ir = 0; |
487 | tvee->model = | 489 | tvee->model = |
488 | eeprom_data[i+8] + | 490 | eeprom_data[i+8] + |
489 | (eeprom_data[i+9] << 8); | 491 | (eeprom_data[i+9] << 8); |
@@ -509,7 +511,7 @@ void tveeprom_hauppauge_analog(struct i2c_client *c, struct tveeprom *tvee, | |||
509 | if (audioic < ARRAY_SIZE(audioIC)) | 511 | if (audioic < ARRAY_SIZE(audioIC)) |
510 | tvee->audio_processor = audioIC[audioic].id; | 512 | tvee->audio_processor = audioIC[audioic].id; |
511 | else | 513 | else |
512 | tvee->audio_processor = AUDIO_CHIP_UNKNOWN; | 514 | tvee->audio_processor = V4L2_IDENT_UNKNOWN; |
513 | break; | 515 | break; |
514 | 516 | ||
515 | /* case 0x03: tag 'EEInfo' */ | 517 | /* case 0x03: tag 'EEInfo' */ |
@@ -542,7 +544,7 @@ void tveeprom_hauppauge_analog(struct i2c_client *c, struct tveeprom *tvee, | |||
542 | if (audioic < ARRAY_SIZE(audioIC)) | 544 | if (audioic < ARRAY_SIZE(audioIC)) |
543 | tvee->audio_processor = audioIC[audioic].id; | 545 | tvee->audio_processor = audioIC[audioic].id; |
544 | else | 546 | else |
545 | tvee->audio_processor = AUDIO_CHIP_UNKNOWN; | 547 | tvee->audio_processor = V4L2_IDENT_UNKNOWN; |
546 | 548 | ||
547 | break; | 549 | break; |
548 | 550 | ||
@@ -603,7 +605,7 @@ void tveeprom_hauppauge_analog(struct i2c_client *c, struct tveeprom *tvee, | |||
603 | 605 | ||
604 | case 0x0f: | 606 | case 0x0f: |
605 | /* tag 'IRInfo' */ | 607 | /* tag 'IRInfo' */ |
606 | tvee->has_ir = eeprom_data[i+1]; | 608 | tvee->has_ir = 1 | (eeprom_data[i+1] << 1); |
607 | break; | 609 | break; |
608 | 610 | ||
609 | /* case 0x10: tag 'VBIInfo' */ | 611 | /* case 0x10: tag 'VBIInfo' */ |
@@ -690,7 +692,7 @@ void tveeprom_hauppauge_analog(struct i2c_client *c, struct tveeprom *tvee, | |||
690 | t_fmt_name2[6], t_fmt_name2[7], t_format2); | 692 | t_fmt_name2[6], t_fmt_name2[7], t_format2); |
691 | if (audioic < 0) { | 693 | if (audioic < 0) { |
692 | tveeprom_info("audio processor is unknown (no idx)\n"); | 694 | tveeprom_info("audio processor is unknown (no idx)\n"); |
693 | tvee->audio_processor = AUDIO_CHIP_UNKNOWN; | 695 | tvee->audio_processor = V4L2_IDENT_UNKNOWN; |
694 | } else { | 696 | } else { |
695 | if (audioic < ARRAY_SIZE(audioIC)) | 697 | if (audioic < ARRAY_SIZE(audioIC)) |
696 | tveeprom_info("audio processor is %s (idx %d)\n", | 698 | tveeprom_info("audio processor is %s (idx %d)\n", |
@@ -703,14 +705,14 @@ void tveeprom_hauppauge_analog(struct i2c_client *c, struct tveeprom *tvee, | |||
703 | tveeprom_info("decoder processor is %s (idx %d)\n", | 705 | tveeprom_info("decoder processor is %s (idx %d)\n", |
704 | STRM(decoderIC, tvee->decoder_processor), | 706 | STRM(decoderIC, tvee->decoder_processor), |
705 | tvee->decoder_processor); | 707 | tvee->decoder_processor); |
706 | if (tvee->has_ir == -1) | 708 | if (tvee->has_ir) |
707 | tveeprom_info("has %sradio\n", | ||
708 | tvee->has_radio ? "" : "no "); | ||
709 | else | ||
710 | tveeprom_info("has %sradio, has %sIR receiver, has %sIR transmitter\n", | 709 | tveeprom_info("has %sradio, has %sIR receiver, has %sIR transmitter\n", |
711 | tvee->has_radio ? "" : "no ", | 710 | tvee->has_radio ? "" : "no ", |
712 | (tvee->has_ir & 1) ? "" : "no ", | 711 | (tvee->has_ir & 2) ? "" : "no ", |
713 | (tvee->has_ir & 2) ? "" : "no "); | 712 | (tvee->has_ir & 4) ? "" : "no "); |
713 | else | ||
714 | tveeprom_info("has %sradio\n", | ||
715 | tvee->has_radio ? "" : "no "); | ||
714 | } | 716 | } |
715 | EXPORT_SYMBOL(tveeprom_hauppauge_analog); | 717 | EXPORT_SYMBOL(tveeprom_hauppauge_analog); |
716 | 718 | ||
diff --git a/drivers/media/video/tvp5150.c b/drivers/media/video/tvp5150.c index 6a3af1005f03..28af5ce5560d 100644 --- a/drivers/media/video/tvp5150.c +++ b/drivers/media/video/tvp5150.c | |||
@@ -6,7 +6,7 @@ | |||
6 | */ | 6 | */ |
7 | 7 | ||
8 | #include <linux/i2c.h> | 8 | #include <linux/i2c.h> |
9 | #include <linux/videodev.h> | 9 | #include <linux/videodev2.h> |
10 | #include <linux/delay.h> | 10 | #include <linux/delay.h> |
11 | #include <linux/video_decoder.h> | 11 | #include <linux/video_decoder.h> |
12 | #include <media/v4l2-common.h> | 12 | #include <media/v4l2-common.h> |
diff --git a/drivers/media/video/usbvideo/usbvideo.c b/drivers/media/video/usbvideo/usbvideo.c index 4128ee20b64e..bf1bc2f69b02 100644 --- a/drivers/media/video/usbvideo/usbvideo.c +++ b/drivers/media/video/usbvideo/usbvideo.c | |||
@@ -952,8 +952,6 @@ static const struct file_operations usbvideo_fops = { | |||
952 | .llseek = no_llseek, | 952 | .llseek = no_llseek, |
953 | }; | 953 | }; |
954 | static const struct video_device usbvideo_template = { | 954 | static const struct video_device usbvideo_template = { |
955 | .owner = THIS_MODULE, | ||
956 | .type = VID_TYPE_CAPTURE, | ||
957 | .fops = &usbvideo_fops, | 955 | .fops = &usbvideo_fops, |
958 | }; | 956 | }; |
959 | 957 | ||
@@ -1040,7 +1038,7 @@ int usbvideo_RegisterVideoDevice(struct uvd *uvd) | |||
1040 | err("%s: uvd->dev == NULL", __func__); | 1038 | err("%s: uvd->dev == NULL", __func__); |
1041 | return -EINVAL; | 1039 | return -EINVAL; |
1042 | } | 1040 | } |
1043 | uvd->vdev.dev = &uvd->dev->dev; | 1041 | uvd->vdev.parent = &uvd->dev->dev; |
1044 | if (video_register_device(&uvd->vdev, VFL_TYPE_GRABBER, video_nr) == -1) { | 1042 | if (video_register_device(&uvd->vdev, VFL_TYPE_GRABBER, video_nr) == -1) { |
1045 | err("%s: video_register_device failed", __func__); | 1043 | err("%s: video_register_device failed", __func__); |
1046 | return -EPIPE; | 1044 | return -EPIPE; |
diff --git a/drivers/media/video/usbvideo/usbvideo.h b/drivers/media/video/usbvideo/usbvideo.h index 051775d4c726..c66985beb8c9 100644 --- a/drivers/media/video/usbvideo/usbvideo.h +++ b/drivers/media/video/usbvideo/usbvideo.h | |||
@@ -18,6 +18,7 @@ | |||
18 | 18 | ||
19 | #include <linux/videodev.h> | 19 | #include <linux/videodev.h> |
20 | #include <media/v4l2-common.h> | 20 | #include <media/v4l2-common.h> |
21 | #include <media/v4l2-ioctl.h> | ||
21 | #include <linux/usb.h> | 22 | #include <linux/usb.h> |
22 | #include <linux/mutex.h> | 23 | #include <linux/mutex.h> |
23 | 24 | ||
diff --git a/drivers/media/video/usbvideo/vicam.c b/drivers/media/video/usbvideo/vicam.c index 40d053e0d5bf..b7792451a299 100644 --- a/drivers/media/video/usbvideo/vicam.c +++ b/drivers/media/video/usbvideo/vicam.c | |||
@@ -41,6 +41,7 @@ | |||
41 | #include <linux/videodev.h> | 41 | #include <linux/videodev.h> |
42 | #include <linux/usb.h> | 42 | #include <linux/usb.h> |
43 | #include <linux/vmalloc.h> | 43 | #include <linux/vmalloc.h> |
44 | #include <linux/mm.h> | ||
44 | #include <linux/slab.h> | 45 | #include <linux/slab.h> |
45 | #include <linux/mutex.h> | 46 | #include <linux/mutex.h> |
46 | #include <linux/firmware.h> | 47 | #include <linux/firmware.h> |
@@ -791,9 +792,7 @@ static const struct file_operations vicam_fops = { | |||
791 | }; | 792 | }; |
792 | 793 | ||
793 | static struct video_device vicam_template = { | 794 | static struct video_device vicam_template = { |
794 | .owner = THIS_MODULE, | ||
795 | .name = "ViCam-based USB Camera", | 795 | .name = "ViCam-based USB Camera", |
796 | .type = VID_TYPE_CAPTURE, | ||
797 | .fops = &vicam_fops, | 796 | .fops = &vicam_fops, |
798 | .minor = -1, | 797 | .minor = -1, |
799 | }; | 798 | }; |
diff --git a/drivers/media/video/usbvision/usbvision-core.c b/drivers/media/video/usbvision/usbvision-core.c index abf685464b7c..c317ed7a8482 100644 --- a/drivers/media/video/usbvision/usbvision-core.c +++ b/drivers/media/video/usbvision/usbvision-core.c | |||
@@ -30,7 +30,6 @@ | |||
30 | #include <linux/mm.h> | 30 | #include <linux/mm.h> |
31 | #include <linux/utsname.h> | 31 | #include <linux/utsname.h> |
32 | #include <linux/highmem.h> | 32 | #include <linux/highmem.h> |
33 | #include <linux/videodev.h> | ||
34 | #include <linux/vmalloc.h> | 33 | #include <linux/vmalloc.h> |
35 | #include <linux/module.h> | 34 | #include <linux/module.h> |
36 | #include <linux/init.h> | 35 | #include <linux/init.h> |
@@ -43,7 +42,6 @@ | |||
43 | #include <media/saa7115.h> | 42 | #include <media/saa7115.h> |
44 | #include <media/v4l2-common.h> | 43 | #include <media/v4l2-common.h> |
45 | #include <media/tuner.h> | 44 | #include <media/tuner.h> |
46 | #include <media/audiochip.h> | ||
47 | 45 | ||
48 | #include <linux/workqueue.h> | 46 | #include <linux/workqueue.h> |
49 | 47 | ||
diff --git a/drivers/media/video/usbvision/usbvision-video.c b/drivers/media/video/usbvision/usbvision-video.c index cd6c41d67899..b977116a0dd9 100644 --- a/drivers/media/video/usbvision/usbvision-video.c +++ b/drivers/media/video/usbvision/usbvision-video.c | |||
@@ -53,7 +53,6 @@ | |||
53 | #include <linux/mm.h> | 53 | #include <linux/mm.h> |
54 | #include <linux/utsname.h> | 54 | #include <linux/utsname.h> |
55 | #include <linux/highmem.h> | 55 | #include <linux/highmem.h> |
56 | #include <linux/videodev.h> | ||
57 | #include <linux/vmalloc.h> | 56 | #include <linux/vmalloc.h> |
58 | #include <linux/module.h> | 57 | #include <linux/module.h> |
59 | #include <linux/init.h> | 58 | #include <linux/init.h> |
@@ -65,8 +64,8 @@ | |||
65 | 64 | ||
66 | #include <media/saa7115.h> | 65 | #include <media/saa7115.h> |
67 | #include <media/v4l2-common.h> | 66 | #include <media/v4l2-common.h> |
67 | #include <media/v4l2-ioctl.h> | ||
68 | #include <media/tuner.h> | 68 | #include <media/tuner.h> |
69 | #include <media/audiochip.h> | ||
70 | 69 | ||
71 | #include <linux/workqueue.h> | 70 | #include <linux/workqueue.h> |
72 | 71 | ||
@@ -184,7 +183,7 @@ MODULE_ALIAS(DRIVER_ALIAS); | |||
184 | static inline struct usb_usbvision *cd_to_usbvision(struct device *cd) | 183 | static inline struct usb_usbvision *cd_to_usbvision(struct device *cd) |
185 | { | 184 | { |
186 | struct video_device *vdev = | 185 | struct video_device *vdev = |
187 | container_of(cd, struct video_device, class_dev); | 186 | container_of(cd, struct video_device, dev); |
188 | return video_get_drvdata(vdev); | 187 | return video_get_drvdata(vdev); |
189 | } | 188 | } |
190 | 189 | ||
@@ -199,7 +198,7 @@ static ssize_t show_model(struct device *cd, | |||
199 | struct device_attribute *attr, char *buf) | 198 | struct device_attribute *attr, char *buf) |
200 | { | 199 | { |
201 | struct video_device *vdev = | 200 | struct video_device *vdev = |
202 | container_of(cd, struct video_device, class_dev); | 201 | container_of(cd, struct video_device, dev); |
203 | struct usb_usbvision *usbvision = video_get_drvdata(vdev); | 202 | struct usb_usbvision *usbvision = video_get_drvdata(vdev); |
204 | return sprintf(buf, "%s\n", | 203 | return sprintf(buf, "%s\n", |
205 | usbvision_device_data[usbvision->DevModel].ModelString); | 204 | usbvision_device_data[usbvision->DevModel].ModelString); |
@@ -210,7 +209,7 @@ static ssize_t show_hue(struct device *cd, | |||
210 | struct device_attribute *attr, char *buf) | 209 | struct device_attribute *attr, char *buf) |
211 | { | 210 | { |
212 | struct video_device *vdev = | 211 | struct video_device *vdev = |
213 | container_of(cd, struct video_device, class_dev); | 212 | container_of(cd, struct video_device, dev); |
214 | struct usb_usbvision *usbvision = video_get_drvdata(vdev); | 213 | struct usb_usbvision *usbvision = video_get_drvdata(vdev); |
215 | struct v4l2_control ctrl; | 214 | struct v4l2_control ctrl; |
216 | ctrl.id = V4L2_CID_HUE; | 215 | ctrl.id = V4L2_CID_HUE; |
@@ -225,7 +224,7 @@ static ssize_t show_contrast(struct device *cd, | |||
225 | struct device_attribute *attr, char *buf) | 224 | struct device_attribute *attr, char *buf) |
226 | { | 225 | { |
227 | struct video_device *vdev = | 226 | struct video_device *vdev = |
228 | container_of(cd, struct video_device, class_dev); | 227 | container_of(cd, struct video_device, dev); |
229 | struct usb_usbvision *usbvision = video_get_drvdata(vdev); | 228 | struct usb_usbvision *usbvision = video_get_drvdata(vdev); |
230 | struct v4l2_control ctrl; | 229 | struct v4l2_control ctrl; |
231 | ctrl.id = V4L2_CID_CONTRAST; | 230 | ctrl.id = V4L2_CID_CONTRAST; |
@@ -240,7 +239,7 @@ static ssize_t show_brightness(struct device *cd, | |||
240 | struct device_attribute *attr, char *buf) | 239 | struct device_attribute *attr, char *buf) |
241 | { | 240 | { |
242 | struct video_device *vdev = | 241 | struct video_device *vdev = |
243 | container_of(cd, struct video_device, class_dev); | 242 | container_of(cd, struct video_device, dev); |
244 | struct usb_usbvision *usbvision = video_get_drvdata(vdev); | 243 | struct usb_usbvision *usbvision = video_get_drvdata(vdev); |
245 | struct v4l2_control ctrl; | 244 | struct v4l2_control ctrl; |
246 | ctrl.id = V4L2_CID_BRIGHTNESS; | 245 | ctrl.id = V4L2_CID_BRIGHTNESS; |
@@ -255,7 +254,7 @@ static ssize_t show_saturation(struct device *cd, | |||
255 | struct device_attribute *attr, char *buf) | 254 | struct device_attribute *attr, char *buf) |
256 | { | 255 | { |
257 | struct video_device *vdev = | 256 | struct video_device *vdev = |
258 | container_of(cd, struct video_device, class_dev); | 257 | container_of(cd, struct video_device, dev); |
259 | struct usb_usbvision *usbvision = video_get_drvdata(vdev); | 258 | struct usb_usbvision *usbvision = video_get_drvdata(vdev); |
260 | struct v4l2_control ctrl; | 259 | struct v4l2_control ctrl; |
261 | ctrl.id = V4L2_CID_SATURATION; | 260 | ctrl.id = V4L2_CID_SATURATION; |
@@ -270,7 +269,7 @@ static ssize_t show_streaming(struct device *cd, | |||
270 | struct device_attribute *attr, char *buf) | 269 | struct device_attribute *attr, char *buf) |
271 | { | 270 | { |
272 | struct video_device *vdev = | 271 | struct video_device *vdev = |
273 | container_of(cd, struct video_device, class_dev); | 272 | container_of(cd, struct video_device, dev); |
274 | struct usb_usbvision *usbvision = video_get_drvdata(vdev); | 273 | struct usb_usbvision *usbvision = video_get_drvdata(vdev); |
275 | return sprintf(buf, "%s\n", | 274 | return sprintf(buf, "%s\n", |
276 | YES_NO(usbvision->streaming==Stream_On?1:0)); | 275 | YES_NO(usbvision->streaming==Stream_On?1:0)); |
@@ -281,7 +280,7 @@ static ssize_t show_compression(struct device *cd, | |||
281 | struct device_attribute *attr, char *buf) | 280 | struct device_attribute *attr, char *buf) |
282 | { | 281 | { |
283 | struct video_device *vdev = | 282 | struct video_device *vdev = |
284 | container_of(cd, struct video_device, class_dev); | 283 | container_of(cd, struct video_device, dev); |
285 | struct usb_usbvision *usbvision = video_get_drvdata(vdev); | 284 | struct usb_usbvision *usbvision = video_get_drvdata(vdev); |
286 | return sprintf(buf, "%s\n", | 285 | return sprintf(buf, "%s\n", |
287 | YES_NO(usbvision->isocMode==ISOC_MODE_COMPRESS)); | 286 | YES_NO(usbvision->isocMode==ISOC_MODE_COMPRESS)); |
@@ -292,7 +291,7 @@ static ssize_t show_device_bridge(struct device *cd, | |||
292 | struct device_attribute *attr, char *buf) | 291 | struct device_attribute *attr, char *buf) |
293 | { | 292 | { |
294 | struct video_device *vdev = | 293 | struct video_device *vdev = |
295 | container_of(cd, struct video_device, class_dev); | 294 | container_of(cd, struct video_device, dev); |
296 | struct usb_usbvision *usbvision = video_get_drvdata(vdev); | 295 | struct usb_usbvision *usbvision = video_get_drvdata(vdev); |
297 | return sprintf(buf, "%d\n", usbvision->bridgeType); | 296 | return sprintf(buf, "%d\n", usbvision->bridgeType); |
298 | } | 297 | } |
@@ -304,40 +303,31 @@ static void usbvision_create_sysfs(struct video_device *vdev) | |||
304 | if (!vdev) | 303 | if (!vdev) |
305 | return; | 304 | return; |
306 | do { | 305 | do { |
307 | res = device_create_file(&vdev->class_dev, | 306 | res = device_create_file(&vdev->dev, &dev_attr_version); |
308 | &dev_attr_version); | ||
309 | if (res<0) | 307 | if (res<0) |
310 | break; | 308 | break; |
311 | res = device_create_file(&vdev->class_dev, | 309 | res = device_create_file(&vdev->dev, &dev_attr_model); |
312 | &dev_attr_model); | ||
313 | if (res<0) | 310 | if (res<0) |
314 | break; | 311 | break; |
315 | res = device_create_file(&vdev->class_dev, | 312 | res = device_create_file(&vdev->dev, &dev_attr_hue); |
316 | &dev_attr_hue); | ||
317 | if (res<0) | 313 | if (res<0) |
318 | break; | 314 | break; |
319 | res = device_create_file(&vdev->class_dev, | 315 | res = device_create_file(&vdev->dev, &dev_attr_contrast); |
320 | &dev_attr_contrast); | ||
321 | if (res<0) | 316 | if (res<0) |
322 | break; | 317 | break; |
323 | res = device_create_file(&vdev->class_dev, | 318 | res = device_create_file(&vdev->dev, &dev_attr_brightness); |
324 | &dev_attr_brightness); | ||
325 | if (res<0) | 319 | if (res<0) |
326 | break; | 320 | break; |
327 | res = device_create_file(&vdev->class_dev, | 321 | res = device_create_file(&vdev->dev, &dev_attr_saturation); |
328 | &dev_attr_saturation); | ||
329 | if (res<0) | 322 | if (res<0) |
330 | break; | 323 | break; |
331 | res = device_create_file(&vdev->class_dev, | 324 | res = device_create_file(&vdev->dev, &dev_attr_streaming); |
332 | &dev_attr_streaming); | ||
333 | if (res<0) | 325 | if (res<0) |
334 | break; | 326 | break; |
335 | res = device_create_file(&vdev->class_dev, | 327 | res = device_create_file(&vdev->dev, &dev_attr_compression); |
336 | &dev_attr_compression); | ||
337 | if (res<0) | 328 | if (res<0) |
338 | break; | 329 | break; |
339 | res = device_create_file(&vdev->class_dev, | 330 | res = device_create_file(&vdev->dev, &dev_attr_bridge); |
340 | &dev_attr_bridge); | ||
341 | if (res>=0) | 331 | if (res>=0) |
342 | return; | 332 | return; |
343 | } while (0); | 333 | } while (0); |
@@ -348,24 +338,15 @@ static void usbvision_create_sysfs(struct video_device *vdev) | |||
348 | static void usbvision_remove_sysfs(struct video_device *vdev) | 338 | static void usbvision_remove_sysfs(struct video_device *vdev) |
349 | { | 339 | { |
350 | if (vdev) { | 340 | if (vdev) { |
351 | device_remove_file(&vdev->class_dev, | 341 | device_remove_file(&vdev->dev, &dev_attr_version); |
352 | &dev_attr_version); | 342 | device_remove_file(&vdev->dev, &dev_attr_model); |
353 | device_remove_file(&vdev->class_dev, | 343 | device_remove_file(&vdev->dev, &dev_attr_hue); |
354 | &dev_attr_model); | 344 | device_remove_file(&vdev->dev, &dev_attr_contrast); |
355 | device_remove_file(&vdev->class_dev, | 345 | device_remove_file(&vdev->dev, &dev_attr_brightness); |
356 | &dev_attr_hue); | 346 | device_remove_file(&vdev->dev, &dev_attr_saturation); |
357 | device_remove_file(&vdev->class_dev, | 347 | device_remove_file(&vdev->dev, &dev_attr_streaming); |
358 | &dev_attr_contrast); | 348 | device_remove_file(&vdev->dev, &dev_attr_compression); |
359 | device_remove_file(&vdev->class_dev, | 349 | device_remove_file(&vdev->dev, &dev_attr_bridge); |
360 | &dev_attr_brightness); | ||
361 | device_remove_file(&vdev->class_dev, | ||
362 | &dev_attr_saturation); | ||
363 | device_remove_file(&vdev->class_dev, | ||
364 | &dev_attr_streaming); | ||
365 | device_remove_file(&vdev->class_dev, | ||
366 | &dev_attr_compression); | ||
367 | device_remove_file(&vdev->class_dev, | ||
368 | &dev_attr_bridge); | ||
369 | } | 350 | } |
370 | } | 351 | } |
371 | 352 | ||
@@ -1388,13 +1369,8 @@ static const struct file_operations usbvision_fops = { | |||
1388 | /* .poll = video_poll, */ | 1369 | /* .poll = video_poll, */ |
1389 | .compat_ioctl = v4l_compat_ioctl32, | 1370 | .compat_ioctl = v4l_compat_ioctl32, |
1390 | }; | 1371 | }; |
1391 | static struct video_device usbvision_video_template = { | 1372 | |
1392 | .owner = THIS_MODULE, | 1373 | static const struct v4l2_ioctl_ops usbvision_ioctl_ops = { |
1393 | .type = VID_TYPE_TUNER | VID_TYPE_CAPTURE, | ||
1394 | .fops = &usbvision_fops, | ||
1395 | .name = "usbvision-video", | ||
1396 | .release = video_device_release, | ||
1397 | .minor = -1, | ||
1398 | .vidioc_querycap = vidioc_querycap, | 1374 | .vidioc_querycap = vidioc_querycap, |
1399 | .vidioc_enum_fmt_vid_cap = vidioc_enum_fmt_vid_cap, | 1375 | .vidioc_enum_fmt_vid_cap = vidioc_enum_fmt_vid_cap, |
1400 | .vidioc_g_fmt_vid_cap = vidioc_g_fmt_vid_cap, | 1376 | .vidioc_g_fmt_vid_cap = vidioc_g_fmt_vid_cap, |
@@ -1426,6 +1402,14 @@ static struct video_device usbvision_video_template = { | |||
1426 | .vidioc_g_register = vidioc_g_register, | 1402 | .vidioc_g_register = vidioc_g_register, |
1427 | .vidioc_s_register = vidioc_s_register, | 1403 | .vidioc_s_register = vidioc_s_register, |
1428 | #endif | 1404 | #endif |
1405 | }; | ||
1406 | |||
1407 | static struct video_device usbvision_video_template = { | ||
1408 | .fops = &usbvision_fops, | ||
1409 | .ioctl_ops = &usbvision_ioctl_ops, | ||
1410 | .name = "usbvision-video", | ||
1411 | .release = video_device_release, | ||
1412 | .minor = -1, | ||
1429 | .tvnorms = USBVISION_NORMS, | 1413 | .tvnorms = USBVISION_NORMS, |
1430 | .current_norm = V4L2_STD_PAL | 1414 | .current_norm = V4L2_STD_PAL |
1431 | }; | 1415 | }; |
@@ -1441,14 +1425,7 @@ static const struct file_operations usbvision_radio_fops = { | |||
1441 | .compat_ioctl = v4l_compat_ioctl32, | 1425 | .compat_ioctl = v4l_compat_ioctl32, |
1442 | }; | 1426 | }; |
1443 | 1427 | ||
1444 | static struct video_device usbvision_radio_template= | 1428 | static const struct v4l2_ioctl_ops usbvision_radio_ioctl_ops = { |
1445 | { | ||
1446 | .owner = THIS_MODULE, | ||
1447 | .type = VID_TYPE_TUNER, | ||
1448 | .fops = &usbvision_radio_fops, | ||
1449 | .name = "usbvision-radio", | ||
1450 | .release = video_device_release, | ||
1451 | .minor = -1, | ||
1452 | .vidioc_querycap = vidioc_querycap, | 1429 | .vidioc_querycap = vidioc_querycap, |
1453 | .vidioc_enum_input = vidioc_enum_input, | 1430 | .vidioc_enum_input = vidioc_enum_input, |
1454 | .vidioc_g_input = vidioc_g_input, | 1431 | .vidioc_g_input = vidioc_g_input, |
@@ -1462,6 +1439,14 @@ static struct video_device usbvision_radio_template= | |||
1462 | .vidioc_s_tuner = vidioc_s_tuner, | 1439 | .vidioc_s_tuner = vidioc_s_tuner, |
1463 | .vidioc_g_frequency = vidioc_g_frequency, | 1440 | .vidioc_g_frequency = vidioc_g_frequency, |
1464 | .vidioc_s_frequency = vidioc_s_frequency, | 1441 | .vidioc_s_frequency = vidioc_s_frequency, |
1442 | }; | ||
1443 | |||
1444 | static struct video_device usbvision_radio_template = { | ||
1445 | .fops = &usbvision_radio_fops, | ||
1446 | .name = "usbvision-radio", | ||
1447 | .release = video_device_release, | ||
1448 | .minor = -1, | ||
1449 | .ioctl_ops = &usbvision_radio_ioctl_ops, | ||
1465 | 1450 | ||
1466 | .tvnorms = USBVISION_NORMS, | 1451 | .tvnorms = USBVISION_NORMS, |
1467 | .current_norm = V4L2_STD_PAL | 1452 | .current_norm = V4L2_STD_PAL |
@@ -1479,8 +1464,6 @@ static const struct file_operations usbvision_vbi_fops = { | |||
1479 | 1464 | ||
1480 | static struct video_device usbvision_vbi_template= | 1465 | static struct video_device usbvision_vbi_template= |
1481 | { | 1466 | { |
1482 | .owner = THIS_MODULE, | ||
1483 | .type = VID_TYPE_TUNER, | ||
1484 | .fops = &usbvision_vbi_fops, | 1467 | .fops = &usbvision_vbi_fops, |
1485 | .release = video_device_release, | 1468 | .release = video_device_release, |
1486 | .name = "usbvision-vbi", | 1469 | .name = "usbvision-vbi", |
@@ -1506,7 +1489,7 @@ static struct video_device *usbvision_vdev_init(struct usb_usbvision *usbvision, | |||
1506 | } | 1489 | } |
1507 | *vdev = *vdev_template; | 1490 | *vdev = *vdev_template; |
1508 | // vdev->minor = -1; | 1491 | // vdev->minor = -1; |
1509 | vdev->dev = &usb_dev->dev; | 1492 | vdev->parent = &usb_dev->dev; |
1510 | snprintf(vdev->name, sizeof(vdev->name), "%s", name); | 1493 | snprintf(vdev->name, sizeof(vdev->name), "%s", name); |
1511 | video_set_drvdata(vdev, usbvision); | 1494 | video_set_drvdata(vdev, usbvision); |
1512 | return vdev; | 1495 | return vdev; |
diff --git a/drivers/media/video/uvc/uvc_ctrl.c b/drivers/media/video/uvc/uvc_ctrl.c index 3ae95512666f..626f4ad7e876 100644 --- a/drivers/media/video/uvc/uvc_ctrl.c +++ b/drivers/media/video/uvc/uvc_ctrl.c | |||
@@ -195,8 +195,8 @@ static struct uvc_menu_info power_line_frequency_controls[] = { | |||
195 | }; | 195 | }; |
196 | 196 | ||
197 | static struct uvc_menu_info exposure_auto_controls[] = { | 197 | static struct uvc_menu_info exposure_auto_controls[] = { |
198 | { 1, "Manual Mode" }, | ||
199 | { 2, "Auto Mode" }, | 198 | { 2, "Auto Mode" }, |
199 | { 1, "Manual Mode" }, | ||
200 | { 4, "Shutter Priority Mode" }, | 200 | { 4, "Shutter Priority Mode" }, |
201 | { 8, "Aperture Priority Mode" }, | 201 | { 8, "Aperture Priority Mode" }, |
202 | }; | 202 | }; |
@@ -592,6 +592,7 @@ int uvc_query_v4l2_ctrl(struct uvc_video_device *video, | |||
592 | if (ctrl == NULL) | 592 | if (ctrl == NULL) |
593 | return -EINVAL; | 593 | return -EINVAL; |
594 | 594 | ||
595 | memset(v4l2_ctrl, 0, sizeof *v4l2_ctrl); | ||
595 | v4l2_ctrl->id = mapping->id; | 596 | v4l2_ctrl->id = mapping->id; |
596 | v4l2_ctrl->type = mapping->v4l2_type; | 597 | v4l2_ctrl->type = mapping->v4l2_type; |
597 | strncpy(v4l2_ctrl->name, mapping->name, sizeof v4l2_ctrl->name); | 598 | strncpy(v4l2_ctrl->name, mapping->name, sizeof v4l2_ctrl->name); |
@@ -608,7 +609,8 @@ int uvc_query_v4l2_ctrl(struct uvc_video_device *video, | |||
608 | v4l2_ctrl->default_value = uvc_get_le_value(data, mapping); | 609 | v4l2_ctrl->default_value = uvc_get_le_value(data, mapping); |
609 | } | 610 | } |
610 | 611 | ||
611 | if (mapping->v4l2_type == V4L2_CTRL_TYPE_MENU) { | 612 | switch (mapping->v4l2_type) { |
613 | case V4L2_CTRL_TYPE_MENU: | ||
612 | v4l2_ctrl->minimum = 0; | 614 | v4l2_ctrl->minimum = 0; |
613 | v4l2_ctrl->maximum = mapping->menu_count - 1; | 615 | v4l2_ctrl->maximum = mapping->menu_count - 1; |
614 | v4l2_ctrl->step = 1; | 616 | v4l2_ctrl->step = 1; |
@@ -622,6 +624,15 @@ int uvc_query_v4l2_ctrl(struct uvc_video_device *video, | |||
622 | } | 624 | } |
623 | 625 | ||
624 | return 0; | 626 | return 0; |
627 | |||
628 | case V4L2_CTRL_TYPE_BOOLEAN: | ||
629 | v4l2_ctrl->minimum = 0; | ||
630 | v4l2_ctrl->maximum = 1; | ||
631 | v4l2_ctrl->step = 1; | ||
632 | return 0; | ||
633 | |||
634 | default: | ||
635 | break; | ||
625 | } | 636 | } |
626 | 637 | ||
627 | if (ctrl->info->flags & UVC_CONTROL_GET_MIN) { | 638 | if (ctrl->info->flags & UVC_CONTROL_GET_MIN) { |
diff --git a/drivers/media/video/uvc/uvc_driver.c b/drivers/media/video/uvc/uvc_driver.c index f2b2983fe062..b3c4d75e8490 100644 --- a/drivers/media/video/uvc/uvc_driver.c +++ b/drivers/media/video/uvc/uvc_driver.c | |||
@@ -1458,9 +1458,7 @@ static int uvc_register_video(struct uvc_device *dev) | |||
1458 | * unregistered before the reference is released, so we don't need to | 1458 | * unregistered before the reference is released, so we don't need to |
1459 | * get another one. | 1459 | * get another one. |
1460 | */ | 1460 | */ |
1461 | vdev->dev = &dev->intf->dev; | 1461 | vdev->parent = &dev->intf->dev; |
1462 | vdev->type = 0; | ||
1463 | vdev->type2 = 0; | ||
1464 | vdev->minor = -1; | 1462 | vdev->minor = -1; |
1465 | vdev->fops = &uvc_fops; | 1463 | vdev->fops = &uvc_fops; |
1466 | vdev->release = video_device_release; | 1464 | vdev->release = video_device_release; |
diff --git a/drivers/media/video/uvc/uvc_v4l2.c b/drivers/media/video/uvc/uvc_v4l2.c index b5a11eb8f9fa..d7bd71be40a9 100644 --- a/drivers/media/video/uvc/uvc_v4l2.c +++ b/drivers/media/video/uvc/uvc_v4l2.c | |||
@@ -23,6 +23,7 @@ | |||
23 | #include <asm/atomic.h> | 23 | #include <asm/atomic.h> |
24 | 24 | ||
25 | #include <media/v4l2-common.h> | 25 | #include <media/v4l2-common.h> |
26 | #include <media/v4l2-ioctl.h> | ||
26 | 27 | ||
27 | #include "uvcvideo.h" | 28 | #include "uvcvideo.h" |
28 | 29 | ||
diff --git a/drivers/media/video/v4l1-compat.c b/drivers/media/video/v4l1-compat.c index a0f6c60279ec..79937d1031fc 100644 --- a/drivers/media/video/v4l1-compat.c +++ b/drivers/media/video/v4l1-compat.c | |||
@@ -30,6 +30,7 @@ | |||
30 | #include <linux/slab.h> | 30 | #include <linux/slab.h> |
31 | #include <linux/videodev.h> | 31 | #include <linux/videodev.h> |
32 | #include <media/v4l2-common.h> | 32 | #include <media/v4l2-common.h> |
33 | #include <media/v4l2-ioctl.h> | ||
33 | 34 | ||
34 | #include <asm/uaccess.h> | 35 | #include <asm/uaccess.h> |
35 | #include <asm/system.h> | 36 | #include <asm/system.h> |
diff --git a/drivers/media/video/v4l2-common.c b/drivers/media/video/v4l2-common.c index e9dd996fd5df..88ca13104417 100644 --- a/drivers/media/video/v4l2-common.c +++ b/drivers/media/video/v4l2-common.c | |||
@@ -64,7 +64,7 @@ | |||
64 | #include <linux/kmod.h> | 64 | #include <linux/kmod.h> |
65 | #endif | 65 | #endif |
66 | 66 | ||
67 | #include <linux/videodev.h> | 67 | #include <linux/videodev2.h> |
68 | 68 | ||
69 | MODULE_AUTHOR("Bill Dirks, Justin Schoeman, Gerd Knorr"); | 69 | MODULE_AUTHOR("Bill Dirks, Justin Schoeman, Gerd Knorr"); |
70 | MODULE_DESCRIPTION("misc helper functions for v4l2 device drivers"); | 70 | MODULE_DESCRIPTION("misc helper functions for v4l2 device drivers"); |
diff --git a/drivers/media/video/v4l2-dev.c b/drivers/media/video/v4l2-dev.c new file mode 100644 index 000000000000..556615fe93de --- /dev/null +++ b/drivers/media/video/v4l2-dev.c | |||
@@ -0,0 +1,422 @@ | |||
1 | /* | ||
2 | * Video capture interface for Linux version 2 | ||
3 | * | ||
4 | * A generic video device interface for the LINUX operating system | ||
5 | * using a set of device structures/vectors for low level operations. | ||
6 | * | ||
7 | * This program is free software; you can redistribute it and/or | ||
8 | * modify it under the terms of the GNU General Public License | ||
9 | * as published by the Free Software Foundation; either version | ||
10 | * 2 of the License, or (at your option) any later version. | ||
11 | * | ||
12 | * Authors: Alan Cox, <alan@redhat.com> (version 1) | ||
13 | * Mauro Carvalho Chehab <mchehab@infradead.org> (version 2) | ||
14 | * | ||
15 | * Fixes: 20000516 Claudio Matsuoka <claudio@conectiva.com> | ||
16 | * - Added procfs support | ||
17 | */ | ||
18 | |||
19 | #include <linux/module.h> | ||
20 | #include <linux/types.h> | ||
21 | #include <linux/kernel.h> | ||
22 | #include <linux/mm.h> | ||
23 | #include <linux/string.h> | ||
24 | #include <linux/errno.h> | ||
25 | #include <linux/init.h> | ||
26 | #include <linux/kmod.h> | ||
27 | #include <linux/slab.h> | ||
28 | #include <linux/smp_lock.h> | ||
29 | #include <asm/uaccess.h> | ||
30 | #include <asm/system.h> | ||
31 | |||
32 | #include <media/v4l2-common.h> | ||
33 | |||
34 | #define VIDEO_NUM_DEVICES 256 | ||
35 | #define VIDEO_NAME "video4linux" | ||
36 | |||
37 | /* | ||
38 | * sysfs stuff | ||
39 | */ | ||
40 | |||
41 | static ssize_t show_index(struct device *cd, | ||
42 | struct device_attribute *attr, char *buf) | ||
43 | { | ||
44 | struct video_device *vfd = container_of(cd, struct video_device, dev); | ||
45 | return sprintf(buf, "%i\n", vfd->index); | ||
46 | } | ||
47 | |||
48 | static ssize_t show_name(struct device *cd, | ||
49 | struct device_attribute *attr, char *buf) | ||
50 | { | ||
51 | struct video_device *vfd = container_of(cd, struct video_device, dev); | ||
52 | return sprintf(buf, "%.*s\n", (int)sizeof(vfd->name), vfd->name); | ||
53 | } | ||
54 | |||
55 | static struct device_attribute video_device_attrs[] = { | ||
56 | __ATTR(name, S_IRUGO, show_name, NULL), | ||
57 | __ATTR(index, S_IRUGO, show_index, NULL), | ||
58 | __ATTR_NULL | ||
59 | }; | ||
60 | |||
61 | struct video_device *video_device_alloc(void) | ||
62 | { | ||
63 | struct video_device *vfd; | ||
64 | |||
65 | vfd = kzalloc(sizeof(*vfd), GFP_KERNEL); | ||
66 | return vfd; | ||
67 | } | ||
68 | EXPORT_SYMBOL(video_device_alloc); | ||
69 | |||
70 | void video_device_release(struct video_device *vfd) | ||
71 | { | ||
72 | kfree(vfd); | ||
73 | } | ||
74 | EXPORT_SYMBOL(video_device_release); | ||
75 | |||
76 | static void video_release(struct device *cd) | ||
77 | { | ||
78 | struct video_device *vfd = container_of(cd, struct video_device, dev); | ||
79 | |||
80 | #if 1 | ||
81 | /* needed until all drivers are fixed */ | ||
82 | if (!vfd->release) | ||
83 | return; | ||
84 | #endif | ||
85 | vfd->release(vfd); | ||
86 | } | ||
87 | |||
88 | static struct class video_class = { | ||
89 | .name = VIDEO_NAME, | ||
90 | .dev_attrs = video_device_attrs, | ||
91 | .dev_release = video_release, | ||
92 | }; | ||
93 | |||
94 | /* | ||
95 | * Active devices | ||
96 | */ | ||
97 | |||
98 | static struct video_device *video_device[VIDEO_NUM_DEVICES]; | ||
99 | static DEFINE_MUTEX(videodev_lock); | ||
100 | |||
101 | struct video_device *video_devdata(struct file *file) | ||
102 | { | ||
103 | return video_device[iminor(file->f_path.dentry->d_inode)]; | ||
104 | } | ||
105 | EXPORT_SYMBOL(video_devdata); | ||
106 | |||
107 | /* | ||
108 | * Open a video device - FIXME: Obsoleted | ||
109 | */ | ||
110 | static int video_open(struct inode *inode, struct file *file) | ||
111 | { | ||
112 | unsigned int minor = iminor(inode); | ||
113 | int err = 0; | ||
114 | struct video_device *vfl; | ||
115 | const struct file_operations *old_fops; | ||
116 | |||
117 | if (minor >= VIDEO_NUM_DEVICES) | ||
118 | return -ENODEV; | ||
119 | lock_kernel(); | ||
120 | mutex_lock(&videodev_lock); | ||
121 | vfl = video_device[minor]; | ||
122 | if (vfl == NULL) { | ||
123 | mutex_unlock(&videodev_lock); | ||
124 | request_module("char-major-%d-%d", VIDEO_MAJOR, minor); | ||
125 | mutex_lock(&videodev_lock); | ||
126 | vfl = video_device[minor]; | ||
127 | if (vfl == NULL) { | ||
128 | mutex_unlock(&videodev_lock); | ||
129 | unlock_kernel(); | ||
130 | return -ENODEV; | ||
131 | } | ||
132 | } | ||
133 | old_fops = file->f_op; | ||
134 | file->f_op = fops_get(vfl->fops); | ||
135 | if (file->f_op->open) | ||
136 | err = file->f_op->open(inode, file); | ||
137 | if (err) { | ||
138 | fops_put(file->f_op); | ||
139 | file->f_op = fops_get(old_fops); | ||
140 | } | ||
141 | fops_put(old_fops); | ||
142 | mutex_unlock(&videodev_lock); | ||
143 | unlock_kernel(); | ||
144 | return err; | ||
145 | } | ||
146 | |||
147 | /* | ||
148 | * open/release helper functions -- handle exclusive opens | ||
149 | * Should be removed soon | ||
150 | */ | ||
151 | int video_exclusive_open(struct inode *inode, struct file *file) | ||
152 | { | ||
153 | struct video_device *vfl = video_devdata(file); | ||
154 | int retval = 0; | ||
155 | |||
156 | mutex_lock(&vfl->lock); | ||
157 | if (vfl->users) | ||
158 | retval = -EBUSY; | ||
159 | else | ||
160 | vfl->users++; | ||
161 | mutex_unlock(&vfl->lock); | ||
162 | return retval; | ||
163 | } | ||
164 | EXPORT_SYMBOL(video_exclusive_open); | ||
165 | |||
166 | int video_exclusive_release(struct inode *inode, struct file *file) | ||
167 | { | ||
168 | struct video_device *vfl = video_devdata(file); | ||
169 | |||
170 | vfl->users--; | ||
171 | return 0; | ||
172 | } | ||
173 | EXPORT_SYMBOL(video_exclusive_release); | ||
174 | |||
175 | /** | ||
176 | * get_index - assign stream number based on parent device | ||
177 | * @vdev: video_device to assign index number to, vdev->dev should be assigned | ||
178 | * @num: -1 if auto assign, requested number otherwise | ||
179 | * | ||
180 | * | ||
181 | * returns -ENFILE if num is already in use, a free index number if | ||
182 | * successful. | ||
183 | */ | ||
184 | static int get_index(struct video_device *vdev, int num) | ||
185 | { | ||
186 | u32 used = 0; | ||
187 | const int max_index = sizeof(used) * 8 - 1; | ||
188 | int i; | ||
189 | |||
190 | /* Currently a single v4l driver instance cannot create more than | ||
191 | 32 devices. | ||
192 | Increase to u64 or an array of u32 if more are needed. */ | ||
193 | if (num > max_index) { | ||
194 | printk(KERN_ERR "videodev: %s num is too large\n", __func__); | ||
195 | return -EINVAL; | ||
196 | } | ||
197 | |||
198 | for (i = 0; i < VIDEO_NUM_DEVICES; i++) { | ||
199 | if (video_device[i] != NULL && | ||
200 | video_device[i] != vdev && | ||
201 | video_device[i]->parent == vdev->parent) { | ||
202 | used |= 1 << video_device[i]->index; | ||
203 | } | ||
204 | } | ||
205 | |||
206 | if (num >= 0) { | ||
207 | if (used & (1 << num)) | ||
208 | return -ENFILE; | ||
209 | return num; | ||
210 | } | ||
211 | |||
212 | i = ffz(used); | ||
213 | return i > max_index ? -ENFILE : i; | ||
214 | } | ||
215 | |||
216 | static const struct file_operations video_fops; | ||
217 | |||
218 | int video_register_device(struct video_device *vfd, int type, int nr) | ||
219 | { | ||
220 | return video_register_device_index(vfd, type, nr, -1); | ||
221 | } | ||
222 | EXPORT_SYMBOL(video_register_device); | ||
223 | |||
224 | /** | ||
225 | * video_register_device - register video4linux devices | ||
226 | * @vfd: video device structure we want to register | ||
227 | * @type: type of device to register | ||
228 | * @nr: which device number (0 == /dev/video0, 1 == /dev/video1, ... | ||
229 | * -1 == first free) | ||
230 | * | ||
231 | * The registration code assigns minor numbers based on the type | ||
232 | * requested. -ENFILE is returned in all the device slots for this | ||
233 | * category are full. If not then the minor field is set and the | ||
234 | * driver initialize function is called (if non %NULL). | ||
235 | * | ||
236 | * Zero is returned on success. | ||
237 | * | ||
238 | * Valid types are | ||
239 | * | ||
240 | * %VFL_TYPE_GRABBER - A frame grabber | ||
241 | * | ||
242 | * %VFL_TYPE_VTX - A teletext device | ||
243 | * | ||
244 | * %VFL_TYPE_VBI - Vertical blank data (undecoded) | ||
245 | * | ||
246 | * %VFL_TYPE_RADIO - A radio card | ||
247 | */ | ||
248 | |||
249 | int video_register_device_index(struct video_device *vfd, int type, int nr, | ||
250 | int index) | ||
251 | { | ||
252 | int i = 0; | ||
253 | int base; | ||
254 | int end; | ||
255 | int ret; | ||
256 | char *name_base; | ||
257 | |||
258 | switch (type) { | ||
259 | case VFL_TYPE_GRABBER: | ||
260 | base = MINOR_VFL_TYPE_GRABBER_MIN; | ||
261 | end = MINOR_VFL_TYPE_GRABBER_MAX+1; | ||
262 | name_base = "video"; | ||
263 | break; | ||
264 | case VFL_TYPE_VTX: | ||
265 | base = MINOR_VFL_TYPE_VTX_MIN; | ||
266 | end = MINOR_VFL_TYPE_VTX_MAX+1; | ||
267 | name_base = "vtx"; | ||
268 | break; | ||
269 | case VFL_TYPE_VBI: | ||
270 | base = MINOR_VFL_TYPE_VBI_MIN; | ||
271 | end = MINOR_VFL_TYPE_VBI_MAX+1; | ||
272 | name_base = "vbi"; | ||
273 | break; | ||
274 | case VFL_TYPE_RADIO: | ||
275 | base = MINOR_VFL_TYPE_RADIO_MIN; | ||
276 | end = MINOR_VFL_TYPE_RADIO_MAX+1; | ||
277 | name_base = "radio"; | ||
278 | break; | ||
279 | default: | ||
280 | printk(KERN_ERR "%s called with unknown type: %d\n", | ||
281 | __func__, type); | ||
282 | return -1; | ||
283 | } | ||
284 | |||
285 | /* pick a minor number */ | ||
286 | mutex_lock(&videodev_lock); | ||
287 | if (nr >= 0 && nr < end-base) { | ||
288 | /* use the one the driver asked for */ | ||
289 | i = base + nr; | ||
290 | if (NULL != video_device[i]) { | ||
291 | mutex_unlock(&videodev_lock); | ||
292 | return -ENFILE; | ||
293 | } | ||
294 | } else { | ||
295 | /* use first free */ | ||
296 | for (i = base; i < end; i++) | ||
297 | if (NULL == video_device[i]) | ||
298 | break; | ||
299 | if (i == end) { | ||
300 | mutex_unlock(&videodev_lock); | ||
301 | return -ENFILE; | ||
302 | } | ||
303 | } | ||
304 | video_device[i] = vfd; | ||
305 | vfd->vfl_type = type; | ||
306 | vfd->minor = i; | ||
307 | |||
308 | ret = get_index(vfd, index); | ||
309 | vfd->index = ret; | ||
310 | |||
311 | mutex_unlock(&videodev_lock); | ||
312 | |||
313 | if (ret < 0) { | ||
314 | printk(KERN_ERR "%s: get_index failed\n", __func__); | ||
315 | goto fail_minor; | ||
316 | } | ||
317 | |||
318 | mutex_init(&vfd->lock); | ||
319 | |||
320 | /* sysfs class */ | ||
321 | memset(&vfd->dev, 0x00, sizeof(vfd->dev)); | ||
322 | vfd->dev.class = &video_class; | ||
323 | vfd->dev.devt = MKDEV(VIDEO_MAJOR, vfd->minor); | ||
324 | if (vfd->parent) | ||
325 | vfd->dev.parent = vfd->parent; | ||
326 | sprintf(vfd->dev.bus_id, "%s%d", name_base, i - base); | ||
327 | ret = device_register(&vfd->dev); | ||
328 | if (ret < 0) { | ||
329 | printk(KERN_ERR "%s: device_register failed\n", __func__); | ||
330 | goto fail_minor; | ||
331 | } | ||
332 | |||
333 | #if 1 | ||
334 | /* needed until all drivers are fixed */ | ||
335 | if (!vfd->release) | ||
336 | printk(KERN_WARNING "videodev: \"%s\" has no release callback. " | ||
337 | "Please fix your driver for proper sysfs support, see " | ||
338 | "http://lwn.net/Articles/36850/\n", vfd->name); | ||
339 | #endif | ||
340 | return 0; | ||
341 | |||
342 | fail_minor: | ||
343 | mutex_lock(&videodev_lock); | ||
344 | video_device[vfd->minor] = NULL; | ||
345 | vfd->minor = -1; | ||
346 | mutex_unlock(&videodev_lock); | ||
347 | return ret; | ||
348 | } | ||
349 | EXPORT_SYMBOL(video_register_device_index); | ||
350 | |||
351 | /** | ||
352 | * video_unregister_device - unregister a video4linux device | ||
353 | * @vfd: the device to unregister | ||
354 | * | ||
355 | * This unregisters the passed device and deassigns the minor | ||
356 | * number. Future open calls will be met with errors. | ||
357 | */ | ||
358 | |||
359 | void video_unregister_device(struct video_device *vfd) | ||
360 | { | ||
361 | mutex_lock(&videodev_lock); | ||
362 | if (video_device[vfd->minor] != vfd) | ||
363 | panic("videodev: bad unregister"); | ||
364 | |||
365 | video_device[vfd->minor] = NULL; | ||
366 | device_unregister(&vfd->dev); | ||
367 | mutex_unlock(&videodev_lock); | ||
368 | } | ||
369 | EXPORT_SYMBOL(video_unregister_device); | ||
370 | |||
371 | /* | ||
372 | * Video fs operations | ||
373 | */ | ||
374 | static const struct file_operations video_fops = { | ||
375 | .owner = THIS_MODULE, | ||
376 | .llseek = no_llseek, | ||
377 | .open = video_open, | ||
378 | }; | ||
379 | |||
380 | /* | ||
381 | * Initialise video for linux | ||
382 | */ | ||
383 | |||
384 | static int __init videodev_init(void) | ||
385 | { | ||
386 | int ret; | ||
387 | |||
388 | printk(KERN_INFO "Linux video capture interface: v2.00\n"); | ||
389 | if (register_chrdev(VIDEO_MAJOR, VIDEO_NAME, &video_fops)) { | ||
390 | printk(KERN_WARNING "video_dev: unable to get major %d\n", VIDEO_MAJOR); | ||
391 | return -EIO; | ||
392 | } | ||
393 | |||
394 | ret = class_register(&video_class); | ||
395 | if (ret < 0) { | ||
396 | unregister_chrdev(VIDEO_MAJOR, VIDEO_NAME); | ||
397 | printk(KERN_WARNING "video_dev: class_register failed\n"); | ||
398 | return -EIO; | ||
399 | } | ||
400 | |||
401 | return 0; | ||
402 | } | ||
403 | |||
404 | static void __exit videodev_exit(void) | ||
405 | { | ||
406 | class_unregister(&video_class); | ||
407 | unregister_chrdev(VIDEO_MAJOR, VIDEO_NAME); | ||
408 | } | ||
409 | |||
410 | module_init(videodev_init) | ||
411 | module_exit(videodev_exit) | ||
412 | |||
413 | MODULE_AUTHOR("Alan Cox, Mauro Carvalho Chehab <mchehab@infradead.org>"); | ||
414 | MODULE_DESCRIPTION("Device registrar for Video4Linux drivers v2"); | ||
415 | MODULE_LICENSE("GPL"); | ||
416 | |||
417 | |||
418 | /* | ||
419 | * Local variables: | ||
420 | * c-basic-offset: 8 | ||
421 | * End: | ||
422 | */ | ||
diff --git a/drivers/media/video/v4l2-ioctl.c b/drivers/media/video/v4l2-ioctl.c new file mode 100644 index 000000000000..fdfe7739c96e --- /dev/null +++ b/drivers/media/video/v4l2-ioctl.c | |||
@@ -0,0 +1,1875 @@ | |||
1 | /* | ||
2 | * Video capture interface for Linux version 2 | ||
3 | * | ||
4 | * A generic framework to process V4L2 ioctl commands. | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or | ||
7 | * modify it under the terms of the GNU General Public License | ||
8 | * as published by the Free Software Foundation; either version | ||
9 | * 2 of the License, or (at your option) any later version. | ||
10 | * | ||
11 | * Authors: Alan Cox, <alan@redhat.com> (version 1) | ||
12 | * Mauro Carvalho Chehab <mchehab@infradead.org> (version 2) | ||
13 | */ | ||
14 | |||
15 | #include <linux/module.h> | ||
16 | #include <linux/types.h> | ||
17 | #include <linux/kernel.h> | ||
18 | |||
19 | #define __OLD_VIDIOC_ /* To allow fixing old calls */ | ||
20 | #include <linux/videodev2.h> | ||
21 | |||
22 | #ifdef CONFIG_VIDEO_V4L1 | ||
23 | #include <linux/videodev.h> | ||
24 | #endif | ||
25 | #include <media/v4l2-common.h> | ||
26 | #include <media/v4l2-ioctl.h> | ||
27 | #include <linux/video_decoder.h> | ||
28 | |||
29 | #define dbgarg(cmd, fmt, arg...) \ | ||
30 | do { \ | ||
31 | if (vfd->debug & V4L2_DEBUG_IOCTL_ARG) { \ | ||
32 | printk(KERN_DEBUG "%s: ", vfd->name); \ | ||
33 | v4l_printk_ioctl(cmd); \ | ||
34 | printk(" " fmt, ## arg); \ | ||
35 | } \ | ||
36 | } while (0) | ||
37 | |||
38 | #define dbgarg2(fmt, arg...) \ | ||
39 | do { \ | ||
40 | if (vfd->debug & V4L2_DEBUG_IOCTL_ARG) \ | ||
41 | printk(KERN_DEBUG "%s: " fmt, vfd->name, ## arg);\ | ||
42 | } while (0) | ||
43 | |||
44 | struct std_descr { | ||
45 | v4l2_std_id std; | ||
46 | const char *descr; | ||
47 | }; | ||
48 | |||
49 | static const struct std_descr standards[] = { | ||
50 | { V4L2_STD_NTSC, "NTSC" }, | ||
51 | { V4L2_STD_NTSC_M, "NTSC-M" }, | ||
52 | { V4L2_STD_NTSC_M_JP, "NTSC-M-JP" }, | ||
53 | { V4L2_STD_NTSC_M_KR, "NTSC-M-KR" }, | ||
54 | { V4L2_STD_NTSC_443, "NTSC-443" }, | ||
55 | { V4L2_STD_PAL, "PAL" }, | ||
56 | { V4L2_STD_PAL_BG, "PAL-BG" }, | ||
57 | { V4L2_STD_PAL_B, "PAL-B" }, | ||
58 | { V4L2_STD_PAL_B1, "PAL-B1" }, | ||
59 | { V4L2_STD_PAL_G, "PAL-G" }, | ||
60 | { V4L2_STD_PAL_H, "PAL-H" }, | ||
61 | { V4L2_STD_PAL_I, "PAL-I" }, | ||
62 | { V4L2_STD_PAL_DK, "PAL-DK" }, | ||
63 | { V4L2_STD_PAL_D, "PAL-D" }, | ||
64 | { V4L2_STD_PAL_D1, "PAL-D1" }, | ||
65 | { V4L2_STD_PAL_K, "PAL-K" }, | ||
66 | { V4L2_STD_PAL_M, "PAL-M" }, | ||
67 | { V4L2_STD_PAL_N, "PAL-N" }, | ||
68 | { V4L2_STD_PAL_Nc, "PAL-Nc" }, | ||
69 | { V4L2_STD_PAL_60, "PAL-60" }, | ||
70 | { V4L2_STD_SECAM, "SECAM" }, | ||
71 | { V4L2_STD_SECAM_B, "SECAM-B" }, | ||
72 | { V4L2_STD_SECAM_G, "SECAM-G" }, | ||
73 | { V4L2_STD_SECAM_H, "SECAM-H" }, | ||
74 | { V4L2_STD_SECAM_DK, "SECAM-DK" }, | ||
75 | { V4L2_STD_SECAM_D, "SECAM-D" }, | ||
76 | { V4L2_STD_SECAM_K, "SECAM-K" }, | ||
77 | { V4L2_STD_SECAM_K1, "SECAM-K1" }, | ||
78 | { V4L2_STD_SECAM_L, "SECAM-L" }, | ||
79 | { V4L2_STD_SECAM_LC, "SECAM-Lc" }, | ||
80 | { 0, "Unknown" } | ||
81 | }; | ||
82 | |||
83 | /* video4linux standard ID conversion to standard name | ||
84 | */ | ||
85 | const char *v4l2_norm_to_name(v4l2_std_id id) | ||
86 | { | ||
87 | u32 myid = id; | ||
88 | int i; | ||
89 | |||
90 | /* HACK: ppc32 architecture doesn't have __ucmpdi2 function to handle | ||
91 | 64 bit comparations. So, on that architecture, with some gcc | ||
92 | variants, compilation fails. Currently, the max value is 30bit wide. | ||
93 | */ | ||
94 | BUG_ON(myid != id); | ||
95 | |||
96 | for (i = 0; standards[i].std; i++) | ||
97 | if (myid == standards[i].std) | ||
98 | break; | ||
99 | return standards[i].descr; | ||
100 | } | ||
101 | EXPORT_SYMBOL(v4l2_norm_to_name); | ||
102 | |||
103 | /* Fill in the fields of a v4l2_standard structure according to the | ||
104 | 'id' and 'transmission' parameters. Returns negative on error. */ | ||
105 | int v4l2_video_std_construct(struct v4l2_standard *vs, | ||
106 | int id, const char *name) | ||
107 | { | ||
108 | u32 index = vs->index; | ||
109 | |||
110 | memset(vs, 0, sizeof(struct v4l2_standard)); | ||
111 | vs->index = index; | ||
112 | vs->id = id; | ||
113 | if (id & V4L2_STD_525_60) { | ||
114 | vs->frameperiod.numerator = 1001; | ||
115 | vs->frameperiod.denominator = 30000; | ||
116 | vs->framelines = 525; | ||
117 | } else { | ||
118 | vs->frameperiod.numerator = 1; | ||
119 | vs->frameperiod.denominator = 25; | ||
120 | vs->framelines = 625; | ||
121 | } | ||
122 | strlcpy(vs->name, name, sizeof(vs->name)); | ||
123 | return 0; | ||
124 | } | ||
125 | EXPORT_SYMBOL(v4l2_video_std_construct); | ||
126 | |||
127 | /* ----------------------------------------------------------------- */ | ||
128 | /* some arrays for pretty-printing debug messages of enum types */ | ||
129 | |||
130 | const char *v4l2_field_names[] = { | ||
131 | [V4L2_FIELD_ANY] = "any", | ||
132 | [V4L2_FIELD_NONE] = "none", | ||
133 | [V4L2_FIELD_TOP] = "top", | ||
134 | [V4L2_FIELD_BOTTOM] = "bottom", | ||
135 | [V4L2_FIELD_INTERLACED] = "interlaced", | ||
136 | [V4L2_FIELD_SEQ_TB] = "seq-tb", | ||
137 | [V4L2_FIELD_SEQ_BT] = "seq-bt", | ||
138 | [V4L2_FIELD_ALTERNATE] = "alternate", | ||
139 | [V4L2_FIELD_INTERLACED_TB] = "interlaced-tb", | ||
140 | [V4L2_FIELD_INTERLACED_BT] = "interlaced-bt", | ||
141 | }; | ||
142 | EXPORT_SYMBOL(v4l2_field_names); | ||
143 | |||
144 | const char *v4l2_type_names[] = { | ||
145 | [V4L2_BUF_TYPE_VIDEO_CAPTURE] = "vid-cap", | ||
146 | [V4L2_BUF_TYPE_VIDEO_OVERLAY] = "vid-overlay", | ||
147 | [V4L2_BUF_TYPE_VIDEO_OUTPUT] = "vid-out", | ||
148 | [V4L2_BUF_TYPE_VBI_CAPTURE] = "vbi-cap", | ||
149 | [V4L2_BUF_TYPE_VBI_OUTPUT] = "vbi-out", | ||
150 | [V4L2_BUF_TYPE_SLICED_VBI_CAPTURE] = "sliced-vbi-cap", | ||
151 | [V4L2_BUF_TYPE_SLICED_VBI_OUTPUT] = "sliced-vbi-out", | ||
152 | [V4L2_BUF_TYPE_VIDEO_OUTPUT_OVERLAY] = "vid-out-overlay", | ||
153 | }; | ||
154 | EXPORT_SYMBOL(v4l2_type_names); | ||
155 | |||
156 | static const char *v4l2_memory_names[] = { | ||
157 | [V4L2_MEMORY_MMAP] = "mmap", | ||
158 | [V4L2_MEMORY_USERPTR] = "userptr", | ||
159 | [V4L2_MEMORY_OVERLAY] = "overlay", | ||
160 | }; | ||
161 | |||
162 | #define prt_names(a, arr) ((((a) >= 0) && ((a) < ARRAY_SIZE(arr))) ? \ | ||
163 | arr[a] : "unknown") | ||
164 | |||
165 | /* ------------------------------------------------------------------ */ | ||
166 | /* debug help functions */ | ||
167 | |||
168 | #ifdef CONFIG_VIDEO_V4L1_COMPAT | ||
169 | static const char *v4l1_ioctls[] = { | ||
170 | [_IOC_NR(VIDIOCGCAP)] = "VIDIOCGCAP", | ||
171 | [_IOC_NR(VIDIOCGCHAN)] = "VIDIOCGCHAN", | ||
172 | [_IOC_NR(VIDIOCSCHAN)] = "VIDIOCSCHAN", | ||
173 | [_IOC_NR(VIDIOCGTUNER)] = "VIDIOCGTUNER", | ||
174 | [_IOC_NR(VIDIOCSTUNER)] = "VIDIOCSTUNER", | ||
175 | [_IOC_NR(VIDIOCGPICT)] = "VIDIOCGPICT", | ||
176 | [_IOC_NR(VIDIOCSPICT)] = "VIDIOCSPICT", | ||
177 | [_IOC_NR(VIDIOCCAPTURE)] = "VIDIOCCAPTURE", | ||
178 | [_IOC_NR(VIDIOCGWIN)] = "VIDIOCGWIN", | ||
179 | [_IOC_NR(VIDIOCSWIN)] = "VIDIOCSWIN", | ||
180 | [_IOC_NR(VIDIOCGFBUF)] = "VIDIOCGFBUF", | ||
181 | [_IOC_NR(VIDIOCSFBUF)] = "VIDIOCSFBUF", | ||
182 | [_IOC_NR(VIDIOCKEY)] = "VIDIOCKEY", | ||
183 | [_IOC_NR(VIDIOCGFREQ)] = "VIDIOCGFREQ", | ||
184 | [_IOC_NR(VIDIOCSFREQ)] = "VIDIOCSFREQ", | ||
185 | [_IOC_NR(VIDIOCGAUDIO)] = "VIDIOCGAUDIO", | ||
186 | [_IOC_NR(VIDIOCSAUDIO)] = "VIDIOCSAUDIO", | ||
187 | [_IOC_NR(VIDIOCSYNC)] = "VIDIOCSYNC", | ||
188 | [_IOC_NR(VIDIOCMCAPTURE)] = "VIDIOCMCAPTURE", | ||
189 | [_IOC_NR(VIDIOCGMBUF)] = "VIDIOCGMBUF", | ||
190 | [_IOC_NR(VIDIOCGUNIT)] = "VIDIOCGUNIT", | ||
191 | [_IOC_NR(VIDIOCGCAPTURE)] = "VIDIOCGCAPTURE", | ||
192 | [_IOC_NR(VIDIOCSCAPTURE)] = "VIDIOCSCAPTURE", | ||
193 | [_IOC_NR(VIDIOCSPLAYMODE)] = "VIDIOCSPLAYMODE", | ||
194 | [_IOC_NR(VIDIOCSWRITEMODE)] = "VIDIOCSWRITEMODE", | ||
195 | [_IOC_NR(VIDIOCGPLAYINFO)] = "VIDIOCGPLAYINFO", | ||
196 | [_IOC_NR(VIDIOCSMICROCODE)] = "VIDIOCSMICROCODE", | ||
197 | [_IOC_NR(VIDIOCGVBIFMT)] = "VIDIOCGVBIFMT", | ||
198 | [_IOC_NR(VIDIOCSVBIFMT)] = "VIDIOCSVBIFMT" | ||
199 | }; | ||
200 | #define V4L1_IOCTLS ARRAY_SIZE(v4l1_ioctls) | ||
201 | #endif | ||
202 | |||
203 | static const char *v4l2_ioctls[] = { | ||
204 | [_IOC_NR(VIDIOC_QUERYCAP)] = "VIDIOC_QUERYCAP", | ||
205 | [_IOC_NR(VIDIOC_RESERVED)] = "VIDIOC_RESERVED", | ||
206 | [_IOC_NR(VIDIOC_ENUM_FMT)] = "VIDIOC_ENUM_FMT", | ||
207 | [_IOC_NR(VIDIOC_G_FMT)] = "VIDIOC_G_FMT", | ||
208 | [_IOC_NR(VIDIOC_S_FMT)] = "VIDIOC_S_FMT", | ||
209 | [_IOC_NR(VIDIOC_REQBUFS)] = "VIDIOC_REQBUFS", | ||
210 | [_IOC_NR(VIDIOC_QUERYBUF)] = "VIDIOC_QUERYBUF", | ||
211 | [_IOC_NR(VIDIOC_G_FBUF)] = "VIDIOC_G_FBUF", | ||
212 | [_IOC_NR(VIDIOC_S_FBUF)] = "VIDIOC_S_FBUF", | ||
213 | [_IOC_NR(VIDIOC_OVERLAY)] = "VIDIOC_OVERLAY", | ||
214 | [_IOC_NR(VIDIOC_QBUF)] = "VIDIOC_QBUF", | ||
215 | [_IOC_NR(VIDIOC_DQBUF)] = "VIDIOC_DQBUF", | ||
216 | [_IOC_NR(VIDIOC_STREAMON)] = "VIDIOC_STREAMON", | ||
217 | [_IOC_NR(VIDIOC_STREAMOFF)] = "VIDIOC_STREAMOFF", | ||
218 | [_IOC_NR(VIDIOC_G_PARM)] = "VIDIOC_G_PARM", | ||
219 | [_IOC_NR(VIDIOC_S_PARM)] = "VIDIOC_S_PARM", | ||
220 | [_IOC_NR(VIDIOC_G_STD)] = "VIDIOC_G_STD", | ||
221 | [_IOC_NR(VIDIOC_S_STD)] = "VIDIOC_S_STD", | ||
222 | [_IOC_NR(VIDIOC_ENUMSTD)] = "VIDIOC_ENUMSTD", | ||
223 | [_IOC_NR(VIDIOC_ENUMINPUT)] = "VIDIOC_ENUMINPUT", | ||
224 | [_IOC_NR(VIDIOC_G_CTRL)] = "VIDIOC_G_CTRL", | ||
225 | [_IOC_NR(VIDIOC_S_CTRL)] = "VIDIOC_S_CTRL", | ||
226 | [_IOC_NR(VIDIOC_G_TUNER)] = "VIDIOC_G_TUNER", | ||
227 | [_IOC_NR(VIDIOC_S_TUNER)] = "VIDIOC_S_TUNER", | ||
228 | [_IOC_NR(VIDIOC_G_AUDIO)] = "VIDIOC_G_AUDIO", | ||
229 | [_IOC_NR(VIDIOC_S_AUDIO)] = "VIDIOC_S_AUDIO", | ||
230 | [_IOC_NR(VIDIOC_QUERYCTRL)] = "VIDIOC_QUERYCTRL", | ||
231 | [_IOC_NR(VIDIOC_QUERYMENU)] = "VIDIOC_QUERYMENU", | ||
232 | [_IOC_NR(VIDIOC_G_INPUT)] = "VIDIOC_G_INPUT", | ||
233 | [_IOC_NR(VIDIOC_S_INPUT)] = "VIDIOC_S_INPUT", | ||
234 | [_IOC_NR(VIDIOC_G_OUTPUT)] = "VIDIOC_G_OUTPUT", | ||
235 | [_IOC_NR(VIDIOC_S_OUTPUT)] = "VIDIOC_S_OUTPUT", | ||
236 | [_IOC_NR(VIDIOC_ENUMOUTPUT)] = "VIDIOC_ENUMOUTPUT", | ||
237 | [_IOC_NR(VIDIOC_G_AUDOUT)] = "VIDIOC_G_AUDOUT", | ||
238 | [_IOC_NR(VIDIOC_S_AUDOUT)] = "VIDIOC_S_AUDOUT", | ||
239 | [_IOC_NR(VIDIOC_G_MODULATOR)] = "VIDIOC_G_MODULATOR", | ||
240 | [_IOC_NR(VIDIOC_S_MODULATOR)] = "VIDIOC_S_MODULATOR", | ||
241 | [_IOC_NR(VIDIOC_G_FREQUENCY)] = "VIDIOC_G_FREQUENCY", | ||
242 | [_IOC_NR(VIDIOC_S_FREQUENCY)] = "VIDIOC_S_FREQUENCY", | ||
243 | [_IOC_NR(VIDIOC_CROPCAP)] = "VIDIOC_CROPCAP", | ||
244 | [_IOC_NR(VIDIOC_G_CROP)] = "VIDIOC_G_CROP", | ||
245 | [_IOC_NR(VIDIOC_S_CROP)] = "VIDIOC_S_CROP", | ||
246 | [_IOC_NR(VIDIOC_G_JPEGCOMP)] = "VIDIOC_G_JPEGCOMP", | ||
247 | [_IOC_NR(VIDIOC_S_JPEGCOMP)] = "VIDIOC_S_JPEGCOMP", | ||
248 | [_IOC_NR(VIDIOC_QUERYSTD)] = "VIDIOC_QUERYSTD", | ||
249 | [_IOC_NR(VIDIOC_TRY_FMT)] = "VIDIOC_TRY_FMT", | ||
250 | [_IOC_NR(VIDIOC_ENUMAUDIO)] = "VIDIOC_ENUMAUDIO", | ||
251 | [_IOC_NR(VIDIOC_ENUMAUDOUT)] = "VIDIOC_ENUMAUDOUT", | ||
252 | [_IOC_NR(VIDIOC_G_PRIORITY)] = "VIDIOC_G_PRIORITY", | ||
253 | [_IOC_NR(VIDIOC_S_PRIORITY)] = "VIDIOC_S_PRIORITY", | ||
254 | [_IOC_NR(VIDIOC_G_SLICED_VBI_CAP)] = "VIDIOC_G_SLICED_VBI_CAP", | ||
255 | [_IOC_NR(VIDIOC_LOG_STATUS)] = "VIDIOC_LOG_STATUS", | ||
256 | [_IOC_NR(VIDIOC_G_EXT_CTRLS)] = "VIDIOC_G_EXT_CTRLS", | ||
257 | [_IOC_NR(VIDIOC_S_EXT_CTRLS)] = "VIDIOC_S_EXT_CTRLS", | ||
258 | [_IOC_NR(VIDIOC_TRY_EXT_CTRLS)] = "VIDIOC_TRY_EXT_CTRLS", | ||
259 | #if 1 | ||
260 | [_IOC_NR(VIDIOC_ENUM_FRAMESIZES)] = "VIDIOC_ENUM_FRAMESIZES", | ||
261 | [_IOC_NR(VIDIOC_ENUM_FRAMEINTERVALS)] = "VIDIOC_ENUM_FRAMEINTERVALS", | ||
262 | [_IOC_NR(VIDIOC_G_ENC_INDEX)] = "VIDIOC_G_ENC_INDEX", | ||
263 | [_IOC_NR(VIDIOC_ENCODER_CMD)] = "VIDIOC_ENCODER_CMD", | ||
264 | [_IOC_NR(VIDIOC_TRY_ENCODER_CMD)] = "VIDIOC_TRY_ENCODER_CMD", | ||
265 | |||
266 | [_IOC_NR(VIDIOC_DBG_S_REGISTER)] = "VIDIOC_DBG_S_REGISTER", | ||
267 | [_IOC_NR(VIDIOC_DBG_G_REGISTER)] = "VIDIOC_DBG_G_REGISTER", | ||
268 | |||
269 | [_IOC_NR(VIDIOC_G_CHIP_IDENT)] = "VIDIOC_G_CHIP_IDENT", | ||
270 | [_IOC_NR(VIDIOC_S_HW_FREQ_SEEK)] = "VIDIOC_S_HW_FREQ_SEEK", | ||
271 | #endif | ||
272 | }; | ||
273 | #define V4L2_IOCTLS ARRAY_SIZE(v4l2_ioctls) | ||
274 | |||
275 | static const char *v4l2_int_ioctls[] = { | ||
276 | #ifdef CONFIG_VIDEO_V4L1_COMPAT | ||
277 | [_IOC_NR(DECODER_GET_CAPABILITIES)] = "DECODER_GET_CAPABILITIES", | ||
278 | [_IOC_NR(DECODER_GET_STATUS)] = "DECODER_GET_STATUS", | ||
279 | [_IOC_NR(DECODER_SET_NORM)] = "DECODER_SET_NORM", | ||
280 | [_IOC_NR(DECODER_SET_INPUT)] = "DECODER_SET_INPUT", | ||
281 | [_IOC_NR(DECODER_SET_OUTPUT)] = "DECODER_SET_OUTPUT", | ||
282 | [_IOC_NR(DECODER_ENABLE_OUTPUT)] = "DECODER_ENABLE_OUTPUT", | ||
283 | [_IOC_NR(DECODER_SET_PICTURE)] = "DECODER_SET_PICTURE", | ||
284 | [_IOC_NR(DECODER_SET_GPIO)] = "DECODER_SET_GPIO", | ||
285 | [_IOC_NR(DECODER_INIT)] = "DECODER_INIT", | ||
286 | [_IOC_NR(DECODER_SET_VBI_BYPASS)] = "DECODER_SET_VBI_BYPASS", | ||
287 | [_IOC_NR(DECODER_DUMP)] = "DECODER_DUMP", | ||
288 | #endif | ||
289 | [_IOC_NR(AUDC_SET_RADIO)] = "AUDC_SET_RADIO", | ||
290 | |||
291 | [_IOC_NR(TUNER_SET_TYPE_ADDR)] = "TUNER_SET_TYPE_ADDR", | ||
292 | [_IOC_NR(TUNER_SET_STANDBY)] = "TUNER_SET_STANDBY", | ||
293 | [_IOC_NR(TUNER_SET_CONFIG)] = "TUNER_SET_CONFIG", | ||
294 | |||
295 | [_IOC_NR(VIDIOC_INT_S_TUNER_MODE)] = "VIDIOC_INT_S_TUNER_MODE", | ||
296 | [_IOC_NR(VIDIOC_INT_RESET)] = "VIDIOC_INT_RESET", | ||
297 | [_IOC_NR(VIDIOC_INT_AUDIO_CLOCK_FREQ)] = "VIDIOC_INT_AUDIO_CLOCK_FREQ", | ||
298 | [_IOC_NR(VIDIOC_INT_DECODE_VBI_LINE)] = "VIDIOC_INT_DECODE_VBI_LINE", | ||
299 | [_IOC_NR(VIDIOC_INT_S_VBI_DATA)] = "VIDIOC_INT_S_VBI_DATA", | ||
300 | [_IOC_NR(VIDIOC_INT_G_VBI_DATA)] = "VIDIOC_INT_G_VBI_DATA", | ||
301 | [_IOC_NR(VIDIOC_INT_I2S_CLOCK_FREQ)] = "VIDIOC_INT_I2S_CLOCK_FREQ", | ||
302 | [_IOC_NR(VIDIOC_INT_S_STANDBY)] = "VIDIOC_INT_S_STANDBY", | ||
303 | [_IOC_NR(VIDIOC_INT_S_AUDIO_ROUTING)] = "VIDIOC_INT_S_AUDIO_ROUTING", | ||
304 | [_IOC_NR(VIDIOC_INT_G_AUDIO_ROUTING)] = "VIDIOC_INT_G_AUDIO_ROUTING", | ||
305 | [_IOC_NR(VIDIOC_INT_S_VIDEO_ROUTING)] = "VIDIOC_INT_S_VIDEO_ROUTING", | ||
306 | [_IOC_NR(VIDIOC_INT_G_VIDEO_ROUTING)] = "VIDIOC_INT_G_VIDEO_ROUTING", | ||
307 | [_IOC_NR(VIDIOC_INT_S_CRYSTAL_FREQ)] = "VIDIOC_INT_S_CRYSTAL_FREQ", | ||
308 | [_IOC_NR(VIDIOC_INT_INIT)] = "VIDIOC_INT_INIT", | ||
309 | [_IOC_NR(VIDIOC_INT_G_STD_OUTPUT)] = "VIDIOC_INT_G_STD_OUTPUT", | ||
310 | [_IOC_NR(VIDIOC_INT_S_STD_OUTPUT)] = "VIDIOC_INT_S_STD_OUTPUT", | ||
311 | }; | ||
312 | #define V4L2_INT_IOCTLS ARRAY_SIZE(v4l2_int_ioctls) | ||
313 | |||
314 | /* Common ioctl debug function. This function can be used by | ||
315 | external ioctl messages as well as internal V4L ioctl */ | ||
316 | void v4l_printk_ioctl(unsigned int cmd) | ||
317 | { | ||
318 | char *dir, *type; | ||
319 | |||
320 | switch (_IOC_TYPE(cmd)) { | ||
321 | case 'd': | ||
322 | if (_IOC_NR(cmd) >= V4L2_INT_IOCTLS) { | ||
323 | type = "v4l2_int"; | ||
324 | break; | ||
325 | } | ||
326 | printk("%s", v4l2_int_ioctls[_IOC_NR(cmd)]); | ||
327 | return; | ||
328 | #ifdef CONFIG_VIDEO_V4L1_COMPAT | ||
329 | case 'v': | ||
330 | if (_IOC_NR(cmd) >= V4L1_IOCTLS) { | ||
331 | type = "v4l1"; | ||
332 | break; | ||
333 | } | ||
334 | printk("%s", v4l1_ioctls[_IOC_NR(cmd)]); | ||
335 | return; | ||
336 | #endif | ||
337 | case 'V': | ||
338 | if (_IOC_NR(cmd) >= V4L2_IOCTLS) { | ||
339 | type = "v4l2"; | ||
340 | break; | ||
341 | } | ||
342 | printk("%s", v4l2_ioctls[_IOC_NR(cmd)]); | ||
343 | return; | ||
344 | default: | ||
345 | type = "unknown"; | ||
346 | } | ||
347 | |||
348 | switch (_IOC_DIR(cmd)) { | ||
349 | case _IOC_NONE: dir = "--"; break; | ||
350 | case _IOC_READ: dir = "r-"; break; | ||
351 | case _IOC_WRITE: dir = "-w"; break; | ||
352 | case _IOC_READ | _IOC_WRITE: dir = "rw"; break; | ||
353 | default: dir = "*ERR*"; break; | ||
354 | } | ||
355 | printk("%s ioctl '%c', dir=%s, #%d (0x%08x)", | ||
356 | type, _IOC_TYPE(cmd), dir, _IOC_NR(cmd), cmd); | ||
357 | } | ||
358 | EXPORT_SYMBOL(v4l_printk_ioctl); | ||
359 | |||
360 | /* | ||
361 | * helper function -- handles userspace copying for ioctl arguments | ||
362 | */ | ||
363 | |||
364 | #ifdef __OLD_VIDIOC_ | ||
365 | static unsigned int | ||
366 | video_fix_command(unsigned int cmd) | ||
367 | { | ||
368 | switch (cmd) { | ||
369 | case VIDIOC_OVERLAY_OLD: | ||
370 | cmd = VIDIOC_OVERLAY; | ||
371 | break; | ||
372 | case VIDIOC_S_PARM_OLD: | ||
373 | cmd = VIDIOC_S_PARM; | ||
374 | break; | ||
375 | case VIDIOC_S_CTRL_OLD: | ||
376 | cmd = VIDIOC_S_CTRL; | ||
377 | break; | ||
378 | case VIDIOC_G_AUDIO_OLD: | ||
379 | cmd = VIDIOC_G_AUDIO; | ||
380 | break; | ||
381 | case VIDIOC_G_AUDOUT_OLD: | ||
382 | cmd = VIDIOC_G_AUDOUT; | ||
383 | break; | ||
384 | case VIDIOC_CROPCAP_OLD: | ||
385 | cmd = VIDIOC_CROPCAP; | ||
386 | break; | ||
387 | } | ||
388 | return cmd; | ||
389 | } | ||
390 | #endif | ||
391 | |||
392 | /* | ||
393 | * Obsolete usercopy function - Should be removed soon | ||
394 | */ | ||
395 | int | ||
396 | video_usercopy(struct inode *inode, struct file *file, | ||
397 | unsigned int cmd, unsigned long arg, | ||
398 | int (*func)(struct inode *inode, struct file *file, | ||
399 | unsigned int cmd, void *arg)) | ||
400 | { | ||
401 | char sbuf[128]; | ||
402 | void *mbuf = NULL; | ||
403 | void *parg = NULL; | ||
404 | int err = -EINVAL; | ||
405 | int is_ext_ctrl; | ||
406 | size_t ctrls_size = 0; | ||
407 | void __user *user_ptr = NULL; | ||
408 | |||
409 | #ifdef __OLD_VIDIOC_ | ||
410 | cmd = video_fix_command(cmd); | ||
411 | #endif | ||
412 | is_ext_ctrl = (cmd == VIDIOC_S_EXT_CTRLS || cmd == VIDIOC_G_EXT_CTRLS || | ||
413 | cmd == VIDIOC_TRY_EXT_CTRLS); | ||
414 | |||
415 | /* Copy arguments into temp kernel buffer */ | ||
416 | switch (_IOC_DIR(cmd)) { | ||
417 | case _IOC_NONE: | ||
418 | parg = NULL; | ||
419 | break; | ||
420 | case _IOC_READ: | ||
421 | case _IOC_WRITE: | ||
422 | case (_IOC_WRITE | _IOC_READ): | ||
423 | if (_IOC_SIZE(cmd) <= sizeof(sbuf)) { | ||
424 | parg = sbuf; | ||
425 | } else { | ||
426 | /* too big to allocate from stack */ | ||
427 | mbuf = kmalloc(_IOC_SIZE(cmd), GFP_KERNEL); | ||
428 | if (NULL == mbuf) | ||
429 | return -ENOMEM; | ||
430 | parg = mbuf; | ||
431 | } | ||
432 | |||
433 | err = -EFAULT; | ||
434 | if (_IOC_DIR(cmd) & _IOC_WRITE) | ||
435 | if (copy_from_user(parg, (void __user *)arg, _IOC_SIZE(cmd))) | ||
436 | goto out; | ||
437 | break; | ||
438 | } | ||
439 | if (is_ext_ctrl) { | ||
440 | struct v4l2_ext_controls *p = parg; | ||
441 | |||
442 | /* In case of an error, tell the caller that it wasn't | ||
443 | a specific control that caused it. */ | ||
444 | p->error_idx = p->count; | ||
445 | user_ptr = (void __user *)p->controls; | ||
446 | if (p->count) { | ||
447 | ctrls_size = sizeof(struct v4l2_ext_control) * p->count; | ||
448 | /* Note: v4l2_ext_controls fits in sbuf[] so mbuf is still NULL. */ | ||
449 | mbuf = kmalloc(ctrls_size, GFP_KERNEL); | ||
450 | err = -ENOMEM; | ||
451 | if (NULL == mbuf) | ||
452 | goto out_ext_ctrl; | ||
453 | err = -EFAULT; | ||
454 | if (copy_from_user(mbuf, user_ptr, ctrls_size)) | ||
455 | goto out_ext_ctrl; | ||
456 | p->controls = mbuf; | ||
457 | } | ||
458 | } | ||
459 | |||
460 | /* call driver */ | ||
461 | err = func(inode, file, cmd, parg); | ||
462 | if (err == -ENOIOCTLCMD) | ||
463 | err = -EINVAL; | ||
464 | if (is_ext_ctrl) { | ||
465 | struct v4l2_ext_controls *p = parg; | ||
466 | |||
467 | p->controls = (void *)user_ptr; | ||
468 | if (p->count && err == 0 && copy_to_user(user_ptr, mbuf, ctrls_size)) | ||
469 | err = -EFAULT; | ||
470 | goto out_ext_ctrl; | ||
471 | } | ||
472 | if (err < 0) | ||
473 | goto out; | ||
474 | |||
475 | out_ext_ctrl: | ||
476 | /* Copy results into user buffer */ | ||
477 | switch (_IOC_DIR(cmd)) { | ||
478 | case _IOC_READ: | ||
479 | case (_IOC_WRITE | _IOC_READ): | ||
480 | if (copy_to_user((void __user *)arg, parg, _IOC_SIZE(cmd))) | ||
481 | err = -EFAULT; | ||
482 | break; | ||
483 | } | ||
484 | |||
485 | out: | ||
486 | kfree(mbuf); | ||
487 | return err; | ||
488 | } | ||
489 | EXPORT_SYMBOL(video_usercopy); | ||
490 | |||
491 | static void dbgbuf(unsigned int cmd, struct video_device *vfd, | ||
492 | struct v4l2_buffer *p) | ||
493 | { | ||
494 | struct v4l2_timecode *tc = &p->timecode; | ||
495 | |||
496 | dbgarg(cmd, "%02ld:%02d:%02d.%08ld index=%d, type=%s, " | ||
497 | "bytesused=%d, flags=0x%08d, " | ||
498 | "field=%0d, sequence=%d, memory=%s, offset/userptr=0x%08lx, length=%d\n", | ||
499 | p->timestamp.tv_sec / 3600, | ||
500 | (int)(p->timestamp.tv_sec / 60) % 60, | ||
501 | (int)(p->timestamp.tv_sec % 60), | ||
502 | p->timestamp.tv_usec, | ||
503 | p->index, | ||
504 | prt_names(p->type, v4l2_type_names), | ||
505 | p->bytesused, p->flags, | ||
506 | p->field, p->sequence, | ||
507 | prt_names(p->memory, v4l2_memory_names), | ||
508 | p->m.userptr, p->length); | ||
509 | dbgarg2("timecode=%02d:%02d:%02d type=%d, " | ||
510 | "flags=0x%08d, frames=%d, userbits=0x%08x\n", | ||
511 | tc->hours, tc->minutes, tc->seconds, | ||
512 | tc->type, tc->flags, tc->frames, *(__u32 *)tc->userbits); | ||
513 | } | ||
514 | |||
515 | static inline void dbgrect(struct video_device *vfd, char *s, | ||
516 | struct v4l2_rect *r) | ||
517 | { | ||
518 | dbgarg2("%sRect start at %dx%d, size=%dx%d\n", s, r->left, r->top, | ||
519 | r->width, r->height); | ||
520 | }; | ||
521 | |||
522 | static inline void v4l_print_pix_fmt(struct video_device *vfd, | ||
523 | struct v4l2_pix_format *fmt) | ||
524 | { | ||
525 | dbgarg2("width=%d, height=%d, format=%c%c%c%c, field=%s, " | ||
526 | "bytesperline=%d sizeimage=%d, colorspace=%d\n", | ||
527 | fmt->width, fmt->height, | ||
528 | (fmt->pixelformat & 0xff), | ||
529 | (fmt->pixelformat >> 8) & 0xff, | ||
530 | (fmt->pixelformat >> 16) & 0xff, | ||
531 | (fmt->pixelformat >> 24) & 0xff, | ||
532 | prt_names(fmt->field, v4l2_field_names), | ||
533 | fmt->bytesperline, fmt->sizeimage, fmt->colorspace); | ||
534 | }; | ||
535 | |||
536 | static inline void v4l_print_ext_ctrls(unsigned int cmd, | ||
537 | struct video_device *vfd, struct v4l2_ext_controls *c, int show_vals) | ||
538 | { | ||
539 | __u32 i; | ||
540 | |||
541 | if (!(vfd->debug & V4L2_DEBUG_IOCTL_ARG)) | ||
542 | return; | ||
543 | dbgarg(cmd, ""); | ||
544 | printk(KERN_CONT "class=0x%x", c->ctrl_class); | ||
545 | for (i = 0; i < c->count; i++) { | ||
546 | if (show_vals) | ||
547 | printk(KERN_CONT " id/val=0x%x/0x%x", | ||
548 | c->controls[i].id, c->controls[i].value); | ||
549 | else | ||
550 | printk(KERN_CONT " id=0x%x", c->controls[i].id); | ||
551 | } | ||
552 | printk(KERN_CONT "\n"); | ||
553 | }; | ||
554 | |||
555 | static inline int check_ext_ctrls(struct v4l2_ext_controls *c, int allow_priv) | ||
556 | { | ||
557 | __u32 i; | ||
558 | |||
559 | /* zero the reserved fields */ | ||
560 | c->reserved[0] = c->reserved[1] = 0; | ||
561 | for (i = 0; i < c->count; i++) { | ||
562 | c->controls[i].reserved2[0] = 0; | ||
563 | c->controls[i].reserved2[1] = 0; | ||
564 | } | ||
565 | /* V4L2_CID_PRIVATE_BASE cannot be used as control class | ||
566 | when using extended controls. | ||
567 | Only when passed in through VIDIOC_G_CTRL and VIDIOC_S_CTRL | ||
568 | is it allowed for backwards compatibility. | ||
569 | */ | ||
570 | if (!allow_priv && c->ctrl_class == V4L2_CID_PRIVATE_BASE) | ||
571 | return 0; | ||
572 | /* Check that all controls are from the same control class. */ | ||
573 | for (i = 0; i < c->count; i++) { | ||
574 | if (V4L2_CTRL_ID2CLASS(c->controls[i].id) != c->ctrl_class) { | ||
575 | c->error_idx = i; | ||
576 | return 0; | ||
577 | } | ||
578 | } | ||
579 | return 1; | ||
580 | } | ||
581 | |||
582 | static int check_fmt(const struct v4l2_ioctl_ops *ops, enum v4l2_buf_type type) | ||
583 | { | ||
584 | if (ops == NULL) | ||
585 | return -EINVAL; | ||
586 | |||
587 | switch (type) { | ||
588 | case V4L2_BUF_TYPE_VIDEO_CAPTURE: | ||
589 | if (ops->vidioc_try_fmt_vid_cap) | ||
590 | return 0; | ||
591 | break; | ||
592 | case V4L2_BUF_TYPE_VIDEO_OVERLAY: | ||
593 | if (ops->vidioc_try_fmt_vid_overlay) | ||
594 | return 0; | ||
595 | break; | ||
596 | case V4L2_BUF_TYPE_VIDEO_OUTPUT: | ||
597 | if (ops->vidioc_try_fmt_vid_out) | ||
598 | return 0; | ||
599 | break; | ||
600 | case V4L2_BUF_TYPE_VIDEO_OUTPUT_OVERLAY: | ||
601 | if (ops->vidioc_try_fmt_vid_out_overlay) | ||
602 | return 0; | ||
603 | break; | ||
604 | case V4L2_BUF_TYPE_VBI_CAPTURE: | ||
605 | if (ops->vidioc_try_fmt_vbi_cap) | ||
606 | return 0; | ||
607 | break; | ||
608 | case V4L2_BUF_TYPE_VBI_OUTPUT: | ||
609 | if (ops->vidioc_try_fmt_vbi_out) | ||
610 | return 0; | ||
611 | break; | ||
612 | case V4L2_BUF_TYPE_SLICED_VBI_CAPTURE: | ||
613 | if (ops->vidioc_try_fmt_sliced_vbi_cap) | ||
614 | return 0; | ||
615 | break; | ||
616 | case V4L2_BUF_TYPE_SLICED_VBI_OUTPUT: | ||
617 | if (ops->vidioc_try_fmt_sliced_vbi_out) | ||
618 | return 0; | ||
619 | break; | ||
620 | case V4L2_BUF_TYPE_PRIVATE: | ||
621 | if (ops->vidioc_try_fmt_type_private) | ||
622 | return 0; | ||
623 | break; | ||
624 | } | ||
625 | return -EINVAL; | ||
626 | } | ||
627 | |||
628 | static int __video_do_ioctl(struct inode *inode, struct file *file, | ||
629 | unsigned int cmd, void *arg) | ||
630 | { | ||
631 | struct video_device *vfd = video_devdata(file); | ||
632 | const struct v4l2_ioctl_ops *ops = vfd->ioctl_ops; | ||
633 | void *fh = file->private_data; | ||
634 | int ret = -EINVAL; | ||
635 | |||
636 | if ((vfd->debug & V4L2_DEBUG_IOCTL) && | ||
637 | !(vfd->debug & V4L2_DEBUG_IOCTL_ARG)) { | ||
638 | v4l_print_ioctl(vfd->name, cmd); | ||
639 | printk(KERN_CONT "\n"); | ||
640 | } | ||
641 | |||
642 | if (ops == NULL) { | ||
643 | printk(KERN_WARNING "videodev: \"%s\" has no ioctl_ops.\n", | ||
644 | vfd->name); | ||
645 | return -EINVAL; | ||
646 | } | ||
647 | |||
648 | #ifdef CONFIG_VIDEO_V4L1_COMPAT | ||
649 | /*********************************************************** | ||
650 | Handles calls to the obsoleted V4L1 API | ||
651 | Due to the nature of VIDIOCGMBUF, each driver that supports | ||
652 | V4L1 should implement its own handler for this ioctl. | ||
653 | ***********************************************************/ | ||
654 | |||
655 | /* --- streaming capture ------------------------------------- */ | ||
656 | if (cmd == VIDIOCGMBUF) { | ||
657 | struct video_mbuf *p = arg; | ||
658 | |||
659 | memset(p, 0, sizeof(*p)); | ||
660 | |||
661 | if (!ops->vidiocgmbuf) | ||
662 | return ret; | ||
663 | ret = ops->vidiocgmbuf(file, fh, p); | ||
664 | if (!ret) | ||
665 | dbgarg(cmd, "size=%d, frames=%d, offsets=0x%08lx\n", | ||
666 | p->size, p->frames, | ||
667 | (unsigned long)p->offsets); | ||
668 | return ret; | ||
669 | } | ||
670 | |||
671 | /******************************************************** | ||
672 | All other V4L1 calls are handled by v4l1_compat module. | ||
673 | Those calls will be translated into V4L2 calls, and | ||
674 | __video_do_ioctl will be called again, with one or more | ||
675 | V4L2 ioctls. | ||
676 | ********************************************************/ | ||
677 | if (_IOC_TYPE(cmd) == 'v') | ||
678 | return v4l_compat_translate_ioctl(inode, file, cmd, arg, | ||
679 | __video_do_ioctl); | ||
680 | #endif | ||
681 | |||
682 | switch (cmd) { | ||
683 | /* --- capabilities ------------------------------------------ */ | ||
684 | case VIDIOC_QUERYCAP: | ||
685 | { | ||
686 | struct v4l2_capability *cap = (struct v4l2_capability *)arg; | ||
687 | memset(cap, 0, sizeof(*cap)); | ||
688 | |||
689 | if (!ops->vidioc_querycap) | ||
690 | break; | ||
691 | |||
692 | ret = ops->vidioc_querycap(file, fh, cap); | ||
693 | if (!ret) | ||
694 | dbgarg(cmd, "driver=%s, card=%s, bus=%s, " | ||
695 | "version=0x%08x, " | ||
696 | "capabilities=0x%08x\n", | ||
697 | cap->driver, cap->card, cap->bus_info, | ||
698 | cap->version, | ||
699 | cap->capabilities); | ||
700 | break; | ||
701 | } | ||
702 | |||
703 | /* --- priority ------------------------------------------ */ | ||
704 | case VIDIOC_G_PRIORITY: | ||
705 | { | ||
706 | enum v4l2_priority *p = arg; | ||
707 | |||
708 | if (!ops->vidioc_g_priority) | ||
709 | break; | ||
710 | ret = ops->vidioc_g_priority(file, fh, p); | ||
711 | if (!ret) | ||
712 | dbgarg(cmd, "priority is %d\n", *p); | ||
713 | break; | ||
714 | } | ||
715 | case VIDIOC_S_PRIORITY: | ||
716 | { | ||
717 | enum v4l2_priority *p = arg; | ||
718 | |||
719 | if (!ops->vidioc_s_priority) | ||
720 | break; | ||
721 | dbgarg(cmd, "setting priority to %d\n", *p); | ||
722 | ret = ops->vidioc_s_priority(file, fh, *p); | ||
723 | break; | ||
724 | } | ||
725 | |||
726 | /* --- capture ioctls ---------------------------------------- */ | ||
727 | case VIDIOC_ENUM_FMT: | ||
728 | { | ||
729 | struct v4l2_fmtdesc *f = arg; | ||
730 | enum v4l2_buf_type type; | ||
731 | unsigned int index; | ||
732 | |||
733 | index = f->index; | ||
734 | type = f->type; | ||
735 | memset(f, 0, sizeof(*f)); | ||
736 | f->index = index; | ||
737 | f->type = type; | ||
738 | |||
739 | switch (type) { | ||
740 | case V4L2_BUF_TYPE_VIDEO_CAPTURE: | ||
741 | if (ops->vidioc_enum_fmt_vid_cap) | ||
742 | ret = ops->vidioc_enum_fmt_vid_cap(file, fh, f); | ||
743 | break; | ||
744 | case V4L2_BUF_TYPE_VIDEO_OVERLAY: | ||
745 | if (ops->vidioc_enum_fmt_vid_overlay) | ||
746 | ret = ops->vidioc_enum_fmt_vid_overlay(file, | ||
747 | fh, f); | ||
748 | break; | ||
749 | #if 1 | ||
750 | /* V4L2_BUF_TYPE_VBI_CAPTURE should not support VIDIOC_ENUM_FMT | ||
751 | * according to the spec. The bttv and saa7134 drivers support | ||
752 | * it though, so just warn that this is deprecated and will be | ||
753 | * removed in the near future. */ | ||
754 | case V4L2_BUF_TYPE_VBI_CAPTURE: | ||
755 | if (ops->vidioc_enum_fmt_vbi_cap) { | ||
756 | printk(KERN_WARNING "vidioc_enum_fmt_vbi_cap will be removed in 2.6.28!\n"); | ||
757 | ret = ops->vidioc_enum_fmt_vbi_cap(file, fh, f); | ||
758 | } | ||
759 | break; | ||
760 | #endif | ||
761 | case V4L2_BUF_TYPE_VIDEO_OUTPUT: | ||
762 | if (ops->vidioc_enum_fmt_vid_out) | ||
763 | ret = ops->vidioc_enum_fmt_vid_out(file, fh, f); | ||
764 | break; | ||
765 | case V4L2_BUF_TYPE_PRIVATE: | ||
766 | if (ops->vidioc_enum_fmt_type_private) | ||
767 | ret = ops->vidioc_enum_fmt_type_private(file, | ||
768 | fh, f); | ||
769 | break; | ||
770 | default: | ||
771 | break; | ||
772 | } | ||
773 | if (!ret) | ||
774 | dbgarg(cmd, "index=%d, type=%d, flags=%d, " | ||
775 | "pixelformat=%c%c%c%c, description='%s'\n", | ||
776 | f->index, f->type, f->flags, | ||
777 | (f->pixelformat & 0xff), | ||
778 | (f->pixelformat >> 8) & 0xff, | ||
779 | (f->pixelformat >> 16) & 0xff, | ||
780 | (f->pixelformat >> 24) & 0xff, | ||
781 | f->description); | ||
782 | break; | ||
783 | } | ||
784 | case VIDIOC_G_FMT: | ||
785 | { | ||
786 | struct v4l2_format *f = (struct v4l2_format *)arg; | ||
787 | |||
788 | memset(f->fmt.raw_data, 0, sizeof(f->fmt.raw_data)); | ||
789 | |||
790 | /* FIXME: Should be one dump per type */ | ||
791 | dbgarg(cmd, "type=%s\n", prt_names(f->type, v4l2_type_names)); | ||
792 | |||
793 | switch (f->type) { | ||
794 | case V4L2_BUF_TYPE_VIDEO_CAPTURE: | ||
795 | if (ops->vidioc_g_fmt_vid_cap) | ||
796 | ret = ops->vidioc_g_fmt_vid_cap(file, fh, f); | ||
797 | if (!ret) | ||
798 | v4l_print_pix_fmt(vfd, &f->fmt.pix); | ||
799 | break; | ||
800 | case V4L2_BUF_TYPE_VIDEO_OVERLAY: | ||
801 | if (ops->vidioc_g_fmt_vid_overlay) | ||
802 | ret = ops->vidioc_g_fmt_vid_overlay(file, | ||
803 | fh, f); | ||
804 | break; | ||
805 | case V4L2_BUF_TYPE_VIDEO_OUTPUT: | ||
806 | if (ops->vidioc_g_fmt_vid_out) | ||
807 | ret = ops->vidioc_g_fmt_vid_out(file, fh, f); | ||
808 | if (!ret) | ||
809 | v4l_print_pix_fmt(vfd, &f->fmt.pix); | ||
810 | break; | ||
811 | case V4L2_BUF_TYPE_VIDEO_OUTPUT_OVERLAY: | ||
812 | if (ops->vidioc_g_fmt_vid_out_overlay) | ||
813 | ret = ops->vidioc_g_fmt_vid_out_overlay(file, | ||
814 | fh, f); | ||
815 | break; | ||
816 | case V4L2_BUF_TYPE_VBI_CAPTURE: | ||
817 | if (ops->vidioc_g_fmt_vbi_cap) | ||
818 | ret = ops->vidioc_g_fmt_vbi_cap(file, fh, f); | ||
819 | break; | ||
820 | case V4L2_BUF_TYPE_VBI_OUTPUT: | ||
821 | if (ops->vidioc_g_fmt_vbi_out) | ||
822 | ret = ops->vidioc_g_fmt_vbi_out(file, fh, f); | ||
823 | break; | ||
824 | case V4L2_BUF_TYPE_SLICED_VBI_CAPTURE: | ||
825 | if (ops->vidioc_g_fmt_sliced_vbi_cap) | ||
826 | ret = ops->vidioc_g_fmt_sliced_vbi_cap(file, | ||
827 | fh, f); | ||
828 | break; | ||
829 | case V4L2_BUF_TYPE_SLICED_VBI_OUTPUT: | ||
830 | if (ops->vidioc_g_fmt_sliced_vbi_out) | ||
831 | ret = ops->vidioc_g_fmt_sliced_vbi_out(file, | ||
832 | fh, f); | ||
833 | break; | ||
834 | case V4L2_BUF_TYPE_PRIVATE: | ||
835 | if (ops->vidioc_g_fmt_type_private) | ||
836 | ret = ops->vidioc_g_fmt_type_private(file, | ||
837 | fh, f); | ||
838 | break; | ||
839 | } | ||
840 | |||
841 | break; | ||
842 | } | ||
843 | case VIDIOC_S_FMT: | ||
844 | { | ||
845 | struct v4l2_format *f = (struct v4l2_format *)arg; | ||
846 | |||
847 | /* FIXME: Should be one dump per type */ | ||
848 | dbgarg(cmd, "type=%s\n", prt_names(f->type, v4l2_type_names)); | ||
849 | |||
850 | switch (f->type) { | ||
851 | case V4L2_BUF_TYPE_VIDEO_CAPTURE: | ||
852 | v4l_print_pix_fmt(vfd, &f->fmt.pix); | ||
853 | if (ops->vidioc_s_fmt_vid_cap) | ||
854 | ret = ops->vidioc_s_fmt_vid_cap(file, fh, f); | ||
855 | break; | ||
856 | case V4L2_BUF_TYPE_VIDEO_OVERLAY: | ||
857 | if (ops->vidioc_s_fmt_vid_overlay) | ||
858 | ret = ops->vidioc_s_fmt_vid_overlay(file, | ||
859 | fh, f); | ||
860 | break; | ||
861 | case V4L2_BUF_TYPE_VIDEO_OUTPUT: | ||
862 | v4l_print_pix_fmt(vfd, &f->fmt.pix); | ||
863 | if (ops->vidioc_s_fmt_vid_out) | ||
864 | ret = ops->vidioc_s_fmt_vid_out(file, fh, f); | ||
865 | break; | ||
866 | case V4L2_BUF_TYPE_VIDEO_OUTPUT_OVERLAY: | ||
867 | if (ops->vidioc_s_fmt_vid_out_overlay) | ||
868 | ret = ops->vidioc_s_fmt_vid_out_overlay(file, | ||
869 | fh, f); | ||
870 | break; | ||
871 | case V4L2_BUF_TYPE_VBI_CAPTURE: | ||
872 | if (ops->vidioc_s_fmt_vbi_cap) | ||
873 | ret = ops->vidioc_s_fmt_vbi_cap(file, fh, f); | ||
874 | break; | ||
875 | case V4L2_BUF_TYPE_VBI_OUTPUT: | ||
876 | if (ops->vidioc_s_fmt_vbi_out) | ||
877 | ret = ops->vidioc_s_fmt_vbi_out(file, fh, f); | ||
878 | break; | ||
879 | case V4L2_BUF_TYPE_SLICED_VBI_CAPTURE: | ||
880 | if (ops->vidioc_s_fmt_sliced_vbi_cap) | ||
881 | ret = ops->vidioc_s_fmt_sliced_vbi_cap(file, | ||
882 | fh, f); | ||
883 | break; | ||
884 | case V4L2_BUF_TYPE_SLICED_VBI_OUTPUT: | ||
885 | if (ops->vidioc_s_fmt_sliced_vbi_out) | ||
886 | ret = ops->vidioc_s_fmt_sliced_vbi_out(file, | ||
887 | fh, f); | ||
888 | break; | ||
889 | case V4L2_BUF_TYPE_PRIVATE: | ||
890 | if (ops->vidioc_s_fmt_type_private) | ||
891 | ret = ops->vidioc_s_fmt_type_private(file, | ||
892 | fh, f); | ||
893 | break; | ||
894 | } | ||
895 | break; | ||
896 | } | ||
897 | case VIDIOC_TRY_FMT: | ||
898 | { | ||
899 | struct v4l2_format *f = (struct v4l2_format *)arg; | ||
900 | |||
901 | /* FIXME: Should be one dump per type */ | ||
902 | dbgarg(cmd, "type=%s\n", prt_names(f->type, | ||
903 | v4l2_type_names)); | ||
904 | switch (f->type) { | ||
905 | case V4L2_BUF_TYPE_VIDEO_CAPTURE: | ||
906 | if (ops->vidioc_try_fmt_vid_cap) | ||
907 | ret = ops->vidioc_try_fmt_vid_cap(file, fh, f); | ||
908 | if (!ret) | ||
909 | v4l_print_pix_fmt(vfd, &f->fmt.pix); | ||
910 | break; | ||
911 | case V4L2_BUF_TYPE_VIDEO_OVERLAY: | ||
912 | if (ops->vidioc_try_fmt_vid_overlay) | ||
913 | ret = ops->vidioc_try_fmt_vid_overlay(file, | ||
914 | fh, f); | ||
915 | break; | ||
916 | case V4L2_BUF_TYPE_VIDEO_OUTPUT: | ||
917 | if (ops->vidioc_try_fmt_vid_out) | ||
918 | ret = ops->vidioc_try_fmt_vid_out(file, fh, f); | ||
919 | if (!ret) | ||
920 | v4l_print_pix_fmt(vfd, &f->fmt.pix); | ||
921 | break; | ||
922 | case V4L2_BUF_TYPE_VIDEO_OUTPUT_OVERLAY: | ||
923 | if (ops->vidioc_try_fmt_vid_out_overlay) | ||
924 | ret = ops->vidioc_try_fmt_vid_out_overlay(file, | ||
925 | fh, f); | ||
926 | break; | ||
927 | case V4L2_BUF_TYPE_VBI_CAPTURE: | ||
928 | if (ops->vidioc_try_fmt_vbi_cap) | ||
929 | ret = ops->vidioc_try_fmt_vbi_cap(file, fh, f); | ||
930 | break; | ||
931 | case V4L2_BUF_TYPE_VBI_OUTPUT: | ||
932 | if (ops->vidioc_try_fmt_vbi_out) | ||
933 | ret = ops->vidioc_try_fmt_vbi_out(file, fh, f); | ||
934 | break; | ||
935 | case V4L2_BUF_TYPE_SLICED_VBI_CAPTURE: | ||
936 | if (ops->vidioc_try_fmt_sliced_vbi_cap) | ||
937 | ret = ops->vidioc_try_fmt_sliced_vbi_cap(file, | ||
938 | fh, f); | ||
939 | break; | ||
940 | case V4L2_BUF_TYPE_SLICED_VBI_OUTPUT: | ||
941 | if (ops->vidioc_try_fmt_sliced_vbi_out) | ||
942 | ret = ops->vidioc_try_fmt_sliced_vbi_out(file, | ||
943 | fh, f); | ||
944 | break; | ||
945 | case V4L2_BUF_TYPE_PRIVATE: | ||
946 | if (ops->vidioc_try_fmt_type_private) | ||
947 | ret = ops->vidioc_try_fmt_type_private(file, | ||
948 | fh, f); | ||
949 | break; | ||
950 | } | ||
951 | |||
952 | break; | ||
953 | } | ||
954 | /* FIXME: Those buf reqs could be handled here, | ||
955 | with some changes on videobuf to allow its header to be included at | ||
956 | videodev2.h or being merged at videodev2. | ||
957 | */ | ||
958 | case VIDIOC_REQBUFS: | ||
959 | { | ||
960 | struct v4l2_requestbuffers *p = arg; | ||
961 | |||
962 | if (!ops->vidioc_reqbufs) | ||
963 | break; | ||
964 | ret = check_fmt(ops, p->type); | ||
965 | if (ret) | ||
966 | break; | ||
967 | |||
968 | ret = ops->vidioc_reqbufs(file, fh, p); | ||
969 | dbgarg(cmd, "count=%d, type=%s, memory=%s\n", | ||
970 | p->count, | ||
971 | prt_names(p->type, v4l2_type_names), | ||
972 | prt_names(p->memory, v4l2_memory_names)); | ||
973 | break; | ||
974 | } | ||
975 | case VIDIOC_QUERYBUF: | ||
976 | { | ||
977 | struct v4l2_buffer *p = arg; | ||
978 | |||
979 | if (!ops->vidioc_querybuf) | ||
980 | break; | ||
981 | ret = check_fmt(ops, p->type); | ||
982 | if (ret) | ||
983 | break; | ||
984 | |||
985 | ret = ops->vidioc_querybuf(file, fh, p); | ||
986 | if (!ret) | ||
987 | dbgbuf(cmd, vfd, p); | ||
988 | break; | ||
989 | } | ||
990 | case VIDIOC_QBUF: | ||
991 | { | ||
992 | struct v4l2_buffer *p = arg; | ||
993 | |||
994 | if (!ops->vidioc_qbuf) | ||
995 | break; | ||
996 | ret = check_fmt(ops, p->type); | ||
997 | if (ret) | ||
998 | break; | ||
999 | |||
1000 | ret = ops->vidioc_qbuf(file, fh, p); | ||
1001 | if (!ret) | ||
1002 | dbgbuf(cmd, vfd, p); | ||
1003 | break; | ||
1004 | } | ||
1005 | case VIDIOC_DQBUF: | ||
1006 | { | ||
1007 | struct v4l2_buffer *p = arg; | ||
1008 | |||
1009 | if (!ops->vidioc_dqbuf) | ||
1010 | break; | ||
1011 | ret = check_fmt(ops, p->type); | ||
1012 | if (ret) | ||
1013 | break; | ||
1014 | |||
1015 | ret = ops->vidioc_dqbuf(file, fh, p); | ||
1016 | if (!ret) | ||
1017 | dbgbuf(cmd, vfd, p); | ||
1018 | break; | ||
1019 | } | ||
1020 | case VIDIOC_OVERLAY: | ||
1021 | { | ||
1022 | int *i = arg; | ||
1023 | |||
1024 | if (!ops->vidioc_overlay) | ||
1025 | break; | ||
1026 | dbgarg(cmd, "value=%d\n", *i); | ||
1027 | ret = ops->vidioc_overlay(file, fh, *i); | ||
1028 | break; | ||
1029 | } | ||
1030 | case VIDIOC_G_FBUF: | ||
1031 | { | ||
1032 | struct v4l2_framebuffer *p = arg; | ||
1033 | |||
1034 | if (!ops->vidioc_g_fbuf) | ||
1035 | break; | ||
1036 | ret = ops->vidioc_g_fbuf(file, fh, arg); | ||
1037 | if (!ret) { | ||
1038 | dbgarg(cmd, "capability=0x%x, flags=%d, base=0x%08lx\n", | ||
1039 | p->capability, p->flags, | ||
1040 | (unsigned long)p->base); | ||
1041 | v4l_print_pix_fmt(vfd, &p->fmt); | ||
1042 | } | ||
1043 | break; | ||
1044 | } | ||
1045 | case VIDIOC_S_FBUF: | ||
1046 | { | ||
1047 | struct v4l2_framebuffer *p = arg; | ||
1048 | |||
1049 | if (!ops->vidioc_s_fbuf) | ||
1050 | break; | ||
1051 | dbgarg(cmd, "capability=0x%x, flags=%d, base=0x%08lx\n", | ||
1052 | p->capability, p->flags, (unsigned long)p->base); | ||
1053 | v4l_print_pix_fmt(vfd, &p->fmt); | ||
1054 | ret = ops->vidioc_s_fbuf(file, fh, arg); | ||
1055 | break; | ||
1056 | } | ||
1057 | case VIDIOC_STREAMON: | ||
1058 | { | ||
1059 | enum v4l2_buf_type i = *(int *)arg; | ||
1060 | |||
1061 | if (!ops->vidioc_streamon) | ||
1062 | break; | ||
1063 | dbgarg(cmd, "type=%s\n", prt_names(i, v4l2_type_names)); | ||
1064 | ret = ops->vidioc_streamon(file, fh, i); | ||
1065 | break; | ||
1066 | } | ||
1067 | case VIDIOC_STREAMOFF: | ||
1068 | { | ||
1069 | enum v4l2_buf_type i = *(int *)arg; | ||
1070 | |||
1071 | if (!ops->vidioc_streamoff) | ||
1072 | break; | ||
1073 | dbgarg(cmd, "type=%s\n", prt_names(i, v4l2_type_names)); | ||
1074 | ret = ops->vidioc_streamoff(file, fh, i); | ||
1075 | break; | ||
1076 | } | ||
1077 | /* ---------- tv norms ---------- */ | ||
1078 | case VIDIOC_ENUMSTD: | ||
1079 | { | ||
1080 | struct v4l2_standard *p = arg; | ||
1081 | v4l2_std_id id = vfd->tvnorms, curr_id = 0; | ||
1082 | unsigned int index = p->index, i, j = 0; | ||
1083 | const char *descr = ""; | ||
1084 | |||
1085 | /* Return norm array in a canonical way */ | ||
1086 | for (i = 0; i <= index && id; i++) { | ||
1087 | /* last std value in the standards array is 0, so this | ||
1088 | while always ends there since (id & 0) == 0. */ | ||
1089 | while ((id & standards[j].std) != standards[j].std) | ||
1090 | j++; | ||
1091 | curr_id = standards[j].std; | ||
1092 | descr = standards[j].descr; | ||
1093 | j++; | ||
1094 | if (curr_id == 0) | ||
1095 | break; | ||
1096 | if (curr_id != V4L2_STD_PAL && | ||
1097 | curr_id != V4L2_STD_SECAM && | ||
1098 | curr_id != V4L2_STD_NTSC) | ||
1099 | id &= ~curr_id; | ||
1100 | } | ||
1101 | if (i <= index) | ||
1102 | return -EINVAL; | ||
1103 | |||
1104 | v4l2_video_std_construct(p, curr_id, descr); | ||
1105 | p->index = index; | ||
1106 | |||
1107 | dbgarg(cmd, "index=%d, id=0x%Lx, name=%s, fps=%d/%d, " | ||
1108 | "framelines=%d\n", p->index, | ||
1109 | (unsigned long long)p->id, p->name, | ||
1110 | p->frameperiod.numerator, | ||
1111 | p->frameperiod.denominator, | ||
1112 | p->framelines); | ||
1113 | |||
1114 | ret = 0; | ||
1115 | break; | ||
1116 | } | ||
1117 | case VIDIOC_G_STD: | ||
1118 | { | ||
1119 | v4l2_std_id *id = arg; | ||
1120 | |||
1121 | ret = 0; | ||
1122 | /* Calls the specific handler */ | ||
1123 | if (ops->vidioc_g_std) | ||
1124 | ret = ops->vidioc_g_std(file, fh, id); | ||
1125 | else | ||
1126 | *id = vfd->current_norm; | ||
1127 | |||
1128 | if (!ret) | ||
1129 | dbgarg(cmd, "std=0x%08Lx\n", (long long unsigned)*id); | ||
1130 | break; | ||
1131 | } | ||
1132 | case VIDIOC_S_STD: | ||
1133 | { | ||
1134 | v4l2_std_id *id = arg, norm; | ||
1135 | |||
1136 | dbgarg(cmd, "std=%08Lx\n", (long long unsigned)*id); | ||
1137 | |||
1138 | norm = (*id) & vfd->tvnorms; | ||
1139 | if (vfd->tvnorms && !norm) /* Check if std is supported */ | ||
1140 | break; | ||
1141 | |||
1142 | /* Calls the specific handler */ | ||
1143 | if (ops->vidioc_s_std) | ||
1144 | ret = ops->vidioc_s_std(file, fh, &norm); | ||
1145 | else | ||
1146 | ret = -EINVAL; | ||
1147 | |||
1148 | /* Updates standard information */ | ||
1149 | if (ret >= 0) | ||
1150 | vfd->current_norm = norm; | ||
1151 | break; | ||
1152 | } | ||
1153 | case VIDIOC_QUERYSTD: | ||
1154 | { | ||
1155 | v4l2_std_id *p = arg; | ||
1156 | |||
1157 | if (!ops->vidioc_querystd) | ||
1158 | break; | ||
1159 | ret = ops->vidioc_querystd(file, fh, arg); | ||
1160 | if (!ret) | ||
1161 | dbgarg(cmd, "detected std=%08Lx\n", | ||
1162 | (unsigned long long)*p); | ||
1163 | break; | ||
1164 | } | ||
1165 | /* ------ input switching ---------- */ | ||
1166 | /* FIXME: Inputs can be handled inside videodev2 */ | ||
1167 | case VIDIOC_ENUMINPUT: | ||
1168 | { | ||
1169 | struct v4l2_input *p = arg; | ||
1170 | int i = p->index; | ||
1171 | |||
1172 | if (!ops->vidioc_enum_input) | ||
1173 | break; | ||
1174 | memset(p, 0, sizeof(*p)); | ||
1175 | p->index = i; | ||
1176 | |||
1177 | ret = ops->vidioc_enum_input(file, fh, p); | ||
1178 | if (!ret) | ||
1179 | dbgarg(cmd, "index=%d, name=%s, type=%d, " | ||
1180 | "audioset=%d, " | ||
1181 | "tuner=%d, std=%08Lx, status=%d\n", | ||
1182 | p->index, p->name, p->type, p->audioset, | ||
1183 | p->tuner, | ||
1184 | (unsigned long long)p->std, | ||
1185 | p->status); | ||
1186 | break; | ||
1187 | } | ||
1188 | case VIDIOC_G_INPUT: | ||
1189 | { | ||
1190 | unsigned int *i = arg; | ||
1191 | |||
1192 | if (!ops->vidioc_g_input) | ||
1193 | break; | ||
1194 | ret = ops->vidioc_g_input(file, fh, i); | ||
1195 | if (!ret) | ||
1196 | dbgarg(cmd, "value=%d\n", *i); | ||
1197 | break; | ||
1198 | } | ||
1199 | case VIDIOC_S_INPUT: | ||
1200 | { | ||
1201 | unsigned int *i = arg; | ||
1202 | |||
1203 | if (!ops->vidioc_s_input) | ||
1204 | break; | ||
1205 | dbgarg(cmd, "value=%d\n", *i); | ||
1206 | ret = ops->vidioc_s_input(file, fh, *i); | ||
1207 | break; | ||
1208 | } | ||
1209 | |||
1210 | /* ------ output switching ---------- */ | ||
1211 | case VIDIOC_ENUMOUTPUT: | ||
1212 | { | ||
1213 | struct v4l2_output *p = arg; | ||
1214 | int i = p->index; | ||
1215 | |||
1216 | if (!ops->vidioc_enum_output) | ||
1217 | break; | ||
1218 | memset(p, 0, sizeof(*p)); | ||
1219 | p->index = i; | ||
1220 | |||
1221 | ret = ops->vidioc_enum_output(file, fh, p); | ||
1222 | if (!ret) | ||
1223 | dbgarg(cmd, "index=%d, name=%s, type=%d, " | ||
1224 | "audioset=0x%x, " | ||
1225 | "modulator=%d, std=0x%08Lx\n", | ||
1226 | p->index, p->name, p->type, p->audioset, | ||
1227 | p->modulator, (unsigned long long)p->std); | ||
1228 | break; | ||
1229 | } | ||
1230 | case VIDIOC_G_OUTPUT: | ||
1231 | { | ||
1232 | unsigned int *i = arg; | ||
1233 | |||
1234 | if (!ops->vidioc_g_output) | ||
1235 | break; | ||
1236 | ret = ops->vidioc_g_output(file, fh, i); | ||
1237 | if (!ret) | ||
1238 | dbgarg(cmd, "value=%d\n", *i); | ||
1239 | break; | ||
1240 | } | ||
1241 | case VIDIOC_S_OUTPUT: | ||
1242 | { | ||
1243 | unsigned int *i = arg; | ||
1244 | |||
1245 | if (!ops->vidioc_s_output) | ||
1246 | break; | ||
1247 | dbgarg(cmd, "value=%d\n", *i); | ||
1248 | ret = ops->vidioc_s_output(file, fh, *i); | ||
1249 | break; | ||
1250 | } | ||
1251 | |||
1252 | /* --- controls ---------------------------------------------- */ | ||
1253 | case VIDIOC_QUERYCTRL: | ||
1254 | { | ||
1255 | struct v4l2_queryctrl *p = arg; | ||
1256 | |||
1257 | if (!ops->vidioc_queryctrl) | ||
1258 | break; | ||
1259 | ret = ops->vidioc_queryctrl(file, fh, p); | ||
1260 | if (!ret) | ||
1261 | dbgarg(cmd, "id=0x%x, type=%d, name=%s, min/max=%d/%d, " | ||
1262 | "step=%d, default=%d, flags=0x%08x\n", | ||
1263 | p->id, p->type, p->name, | ||
1264 | p->minimum, p->maximum, | ||
1265 | p->step, p->default_value, p->flags); | ||
1266 | else | ||
1267 | dbgarg(cmd, "id=0x%x\n", p->id); | ||
1268 | break; | ||
1269 | } | ||
1270 | case VIDIOC_G_CTRL: | ||
1271 | { | ||
1272 | struct v4l2_control *p = arg; | ||
1273 | |||
1274 | if (ops->vidioc_g_ctrl) | ||
1275 | ret = ops->vidioc_g_ctrl(file, fh, p); | ||
1276 | else if (ops->vidioc_g_ext_ctrls) { | ||
1277 | struct v4l2_ext_controls ctrls; | ||
1278 | struct v4l2_ext_control ctrl; | ||
1279 | |||
1280 | ctrls.ctrl_class = V4L2_CTRL_ID2CLASS(p->id); | ||
1281 | ctrls.count = 1; | ||
1282 | ctrls.controls = &ctrl; | ||
1283 | ctrl.id = p->id; | ||
1284 | ctrl.value = p->value; | ||
1285 | if (check_ext_ctrls(&ctrls, 1)) { | ||
1286 | ret = ops->vidioc_g_ext_ctrls(file, fh, &ctrls); | ||
1287 | if (ret == 0) | ||
1288 | p->value = ctrl.value; | ||
1289 | } | ||
1290 | } else | ||
1291 | break; | ||
1292 | if (!ret) | ||
1293 | dbgarg(cmd, "id=0x%x, value=%d\n", p->id, p->value); | ||
1294 | else | ||
1295 | dbgarg(cmd, "id=0x%x\n", p->id); | ||
1296 | break; | ||
1297 | } | ||
1298 | case VIDIOC_S_CTRL: | ||
1299 | { | ||
1300 | struct v4l2_control *p = arg; | ||
1301 | struct v4l2_ext_controls ctrls; | ||
1302 | struct v4l2_ext_control ctrl; | ||
1303 | |||
1304 | if (!ops->vidioc_s_ctrl && !ops->vidioc_s_ext_ctrls) | ||
1305 | break; | ||
1306 | |||
1307 | dbgarg(cmd, "id=0x%x, value=%d\n", p->id, p->value); | ||
1308 | |||
1309 | if (ops->vidioc_s_ctrl) { | ||
1310 | ret = ops->vidioc_s_ctrl(file, fh, p); | ||
1311 | break; | ||
1312 | } | ||
1313 | if (!ops->vidioc_s_ext_ctrls) | ||
1314 | break; | ||
1315 | |||
1316 | ctrls.ctrl_class = V4L2_CTRL_ID2CLASS(p->id); | ||
1317 | ctrls.count = 1; | ||
1318 | ctrls.controls = &ctrl; | ||
1319 | ctrl.id = p->id; | ||
1320 | ctrl.value = p->value; | ||
1321 | if (check_ext_ctrls(&ctrls, 1)) | ||
1322 | ret = ops->vidioc_s_ext_ctrls(file, fh, &ctrls); | ||
1323 | break; | ||
1324 | } | ||
1325 | case VIDIOC_G_EXT_CTRLS: | ||
1326 | { | ||
1327 | struct v4l2_ext_controls *p = arg; | ||
1328 | |||
1329 | p->error_idx = p->count; | ||
1330 | if (!ops->vidioc_g_ext_ctrls) | ||
1331 | break; | ||
1332 | if (check_ext_ctrls(p, 0)) | ||
1333 | ret = ops->vidioc_g_ext_ctrls(file, fh, p); | ||
1334 | v4l_print_ext_ctrls(cmd, vfd, p, !ret); | ||
1335 | break; | ||
1336 | } | ||
1337 | case VIDIOC_S_EXT_CTRLS: | ||
1338 | { | ||
1339 | struct v4l2_ext_controls *p = arg; | ||
1340 | |||
1341 | p->error_idx = p->count; | ||
1342 | if (!ops->vidioc_s_ext_ctrls) | ||
1343 | break; | ||
1344 | v4l_print_ext_ctrls(cmd, vfd, p, 1); | ||
1345 | if (check_ext_ctrls(p, 0)) | ||
1346 | ret = ops->vidioc_s_ext_ctrls(file, fh, p); | ||
1347 | break; | ||
1348 | } | ||
1349 | case VIDIOC_TRY_EXT_CTRLS: | ||
1350 | { | ||
1351 | struct v4l2_ext_controls *p = arg; | ||
1352 | |||
1353 | p->error_idx = p->count; | ||
1354 | if (!ops->vidioc_try_ext_ctrls) | ||
1355 | break; | ||
1356 | v4l_print_ext_ctrls(cmd, vfd, p, 1); | ||
1357 | if (check_ext_ctrls(p, 0)) | ||
1358 | ret = ops->vidioc_try_ext_ctrls(file, fh, p); | ||
1359 | break; | ||
1360 | } | ||
1361 | case VIDIOC_QUERYMENU: | ||
1362 | { | ||
1363 | struct v4l2_querymenu *p = arg; | ||
1364 | |||
1365 | if (!ops->vidioc_querymenu) | ||
1366 | break; | ||
1367 | ret = ops->vidioc_querymenu(file, fh, p); | ||
1368 | if (!ret) | ||
1369 | dbgarg(cmd, "id=0x%x, index=%d, name=%s\n", | ||
1370 | p->id, p->index, p->name); | ||
1371 | else | ||
1372 | dbgarg(cmd, "id=0x%x, index=%d\n", | ||
1373 | p->id, p->index); | ||
1374 | break; | ||
1375 | } | ||
1376 | /* --- audio ---------------------------------------------- */ | ||
1377 | case VIDIOC_ENUMAUDIO: | ||
1378 | { | ||
1379 | struct v4l2_audio *p = arg; | ||
1380 | |||
1381 | if (!ops->vidioc_enumaudio) | ||
1382 | break; | ||
1383 | ret = ops->vidioc_enumaudio(file, fh, p); | ||
1384 | if (!ret) | ||
1385 | dbgarg(cmd, "index=%d, name=%s, capability=0x%x, " | ||
1386 | "mode=0x%x\n", p->index, p->name, | ||
1387 | p->capability, p->mode); | ||
1388 | else | ||
1389 | dbgarg(cmd, "index=%d\n", p->index); | ||
1390 | break; | ||
1391 | } | ||
1392 | case VIDIOC_G_AUDIO: | ||
1393 | { | ||
1394 | struct v4l2_audio *p = arg; | ||
1395 | __u32 index = p->index; | ||
1396 | |||
1397 | if (!ops->vidioc_g_audio) | ||
1398 | break; | ||
1399 | |||
1400 | memset(p, 0, sizeof(*p)); | ||
1401 | p->index = index; | ||
1402 | ret = ops->vidioc_g_audio(file, fh, p); | ||
1403 | if (!ret) | ||
1404 | dbgarg(cmd, "index=%d, name=%s, capability=0x%x, " | ||
1405 | "mode=0x%x\n", p->index, | ||
1406 | p->name, p->capability, p->mode); | ||
1407 | else | ||
1408 | dbgarg(cmd, "index=%d\n", p->index); | ||
1409 | break; | ||
1410 | } | ||
1411 | case VIDIOC_S_AUDIO: | ||
1412 | { | ||
1413 | struct v4l2_audio *p = arg; | ||
1414 | |||
1415 | if (!ops->vidioc_s_audio) | ||
1416 | break; | ||
1417 | dbgarg(cmd, "index=%d, name=%s, capability=0x%x, " | ||
1418 | "mode=0x%x\n", p->index, p->name, | ||
1419 | p->capability, p->mode); | ||
1420 | ret = ops->vidioc_s_audio(file, fh, p); | ||
1421 | break; | ||
1422 | } | ||
1423 | case VIDIOC_ENUMAUDOUT: | ||
1424 | { | ||
1425 | struct v4l2_audioout *p = arg; | ||
1426 | |||
1427 | if (!ops->vidioc_enumaudout) | ||
1428 | break; | ||
1429 | dbgarg(cmd, "Enum for index=%d\n", p->index); | ||
1430 | ret = ops->vidioc_enumaudout(file, fh, p); | ||
1431 | if (!ret) | ||
1432 | dbgarg2("index=%d, name=%s, capability=%d, " | ||
1433 | "mode=%d\n", p->index, p->name, | ||
1434 | p->capability, p->mode); | ||
1435 | break; | ||
1436 | } | ||
1437 | case VIDIOC_G_AUDOUT: | ||
1438 | { | ||
1439 | struct v4l2_audioout *p = arg; | ||
1440 | |||
1441 | if (!ops->vidioc_g_audout) | ||
1442 | break; | ||
1443 | dbgarg(cmd, "Enum for index=%d\n", p->index); | ||
1444 | ret = ops->vidioc_g_audout(file, fh, p); | ||
1445 | if (!ret) | ||
1446 | dbgarg2("index=%d, name=%s, capability=%d, " | ||
1447 | "mode=%d\n", p->index, p->name, | ||
1448 | p->capability, p->mode); | ||
1449 | break; | ||
1450 | } | ||
1451 | case VIDIOC_S_AUDOUT: | ||
1452 | { | ||
1453 | struct v4l2_audioout *p = arg; | ||
1454 | |||
1455 | if (!ops->vidioc_s_audout) | ||
1456 | break; | ||
1457 | dbgarg(cmd, "index=%d, name=%s, capability=%d, " | ||
1458 | "mode=%d\n", p->index, p->name, | ||
1459 | p->capability, p->mode); | ||
1460 | |||
1461 | ret = ops->vidioc_s_audout(file, fh, p); | ||
1462 | break; | ||
1463 | } | ||
1464 | case VIDIOC_G_MODULATOR: | ||
1465 | { | ||
1466 | struct v4l2_modulator *p = arg; | ||
1467 | |||
1468 | if (!ops->vidioc_g_modulator) | ||
1469 | break; | ||
1470 | ret = ops->vidioc_g_modulator(file, fh, p); | ||
1471 | if (!ret) | ||
1472 | dbgarg(cmd, "index=%d, name=%s, " | ||
1473 | "capability=%d, rangelow=%d," | ||
1474 | " rangehigh=%d, txsubchans=%d\n", | ||
1475 | p->index, p->name, p->capability, | ||
1476 | p->rangelow, p->rangehigh, | ||
1477 | p->txsubchans); | ||
1478 | break; | ||
1479 | } | ||
1480 | case VIDIOC_S_MODULATOR: | ||
1481 | { | ||
1482 | struct v4l2_modulator *p = arg; | ||
1483 | |||
1484 | if (!ops->vidioc_s_modulator) | ||
1485 | break; | ||
1486 | dbgarg(cmd, "index=%d, name=%s, capability=%d, " | ||
1487 | "rangelow=%d, rangehigh=%d, txsubchans=%d\n", | ||
1488 | p->index, p->name, p->capability, p->rangelow, | ||
1489 | p->rangehigh, p->txsubchans); | ||
1490 | ret = ops->vidioc_s_modulator(file, fh, p); | ||
1491 | break; | ||
1492 | } | ||
1493 | case VIDIOC_G_CROP: | ||
1494 | { | ||
1495 | struct v4l2_crop *p = arg; | ||
1496 | |||
1497 | if (!ops->vidioc_g_crop) | ||
1498 | break; | ||
1499 | dbgarg(cmd, "type=%s\n", prt_names(p->type, v4l2_type_names)); | ||
1500 | ret = ops->vidioc_g_crop(file, fh, p); | ||
1501 | if (!ret) | ||
1502 | dbgrect(vfd, "", &p->c); | ||
1503 | break; | ||
1504 | } | ||
1505 | case VIDIOC_S_CROP: | ||
1506 | { | ||
1507 | struct v4l2_crop *p = arg; | ||
1508 | |||
1509 | if (!ops->vidioc_s_crop) | ||
1510 | break; | ||
1511 | dbgarg(cmd, "type=%s\n", prt_names(p->type, v4l2_type_names)); | ||
1512 | dbgrect(vfd, "", &p->c); | ||
1513 | ret = ops->vidioc_s_crop(file, fh, p); | ||
1514 | break; | ||
1515 | } | ||
1516 | case VIDIOC_CROPCAP: | ||
1517 | { | ||
1518 | struct v4l2_cropcap *p = arg; | ||
1519 | |||
1520 | /*FIXME: Should also show v4l2_fract pixelaspect */ | ||
1521 | if (!ops->vidioc_cropcap) | ||
1522 | break; | ||
1523 | dbgarg(cmd, "type=%s\n", prt_names(p->type, v4l2_type_names)); | ||
1524 | ret = ops->vidioc_cropcap(file, fh, p); | ||
1525 | if (!ret) { | ||
1526 | dbgrect(vfd, "bounds ", &p->bounds); | ||
1527 | dbgrect(vfd, "defrect ", &p->defrect); | ||
1528 | } | ||
1529 | break; | ||
1530 | } | ||
1531 | case VIDIOC_G_JPEGCOMP: | ||
1532 | { | ||
1533 | struct v4l2_jpegcompression *p = arg; | ||
1534 | |||
1535 | if (!ops->vidioc_g_jpegcomp) | ||
1536 | break; | ||
1537 | ret = ops->vidioc_g_jpegcomp(file, fh, p); | ||
1538 | if (!ret) | ||
1539 | dbgarg(cmd, "quality=%d, APPn=%d, " | ||
1540 | "APP_len=%d, COM_len=%d, " | ||
1541 | "jpeg_markers=%d\n", | ||
1542 | p->quality, p->APPn, p->APP_len, | ||
1543 | p->COM_len, p->jpeg_markers); | ||
1544 | break; | ||
1545 | } | ||
1546 | case VIDIOC_S_JPEGCOMP: | ||
1547 | { | ||
1548 | struct v4l2_jpegcompression *p = arg; | ||
1549 | |||
1550 | if (!ops->vidioc_g_jpegcomp) | ||
1551 | break; | ||
1552 | dbgarg(cmd, "quality=%d, APPn=%d, APP_len=%d, " | ||
1553 | "COM_len=%d, jpeg_markers=%d\n", | ||
1554 | p->quality, p->APPn, p->APP_len, | ||
1555 | p->COM_len, p->jpeg_markers); | ||
1556 | ret = ops->vidioc_s_jpegcomp(file, fh, p); | ||
1557 | break; | ||
1558 | } | ||
1559 | case VIDIOC_G_ENC_INDEX: | ||
1560 | { | ||
1561 | struct v4l2_enc_idx *p = arg; | ||
1562 | |||
1563 | if (!ops->vidioc_g_enc_index) | ||
1564 | break; | ||
1565 | ret = ops->vidioc_g_enc_index(file, fh, p); | ||
1566 | if (!ret) | ||
1567 | dbgarg(cmd, "entries=%d, entries_cap=%d\n", | ||
1568 | p->entries, p->entries_cap); | ||
1569 | break; | ||
1570 | } | ||
1571 | case VIDIOC_ENCODER_CMD: | ||
1572 | { | ||
1573 | struct v4l2_encoder_cmd *p = arg; | ||
1574 | |||
1575 | if (!ops->vidioc_encoder_cmd) | ||
1576 | break; | ||
1577 | memset(&p->raw, 0, sizeof(p->raw)); | ||
1578 | ret = ops->vidioc_encoder_cmd(file, fh, p); | ||
1579 | if (!ret) | ||
1580 | dbgarg(cmd, "cmd=%d, flags=%x\n", p->cmd, p->flags); | ||
1581 | break; | ||
1582 | } | ||
1583 | case VIDIOC_TRY_ENCODER_CMD: | ||
1584 | { | ||
1585 | struct v4l2_encoder_cmd *p = arg; | ||
1586 | |||
1587 | if (!ops->vidioc_try_encoder_cmd) | ||
1588 | break; | ||
1589 | memset(&p->raw, 0, sizeof(p->raw)); | ||
1590 | ret = ops->vidioc_try_encoder_cmd(file, fh, p); | ||
1591 | if (!ret) | ||
1592 | dbgarg(cmd, "cmd=%d, flags=%x\n", p->cmd, p->flags); | ||
1593 | break; | ||
1594 | } | ||
1595 | case VIDIOC_G_PARM: | ||
1596 | { | ||
1597 | struct v4l2_streamparm *p = arg; | ||
1598 | __u32 type = p->type; | ||
1599 | |||
1600 | memset(p, 0, sizeof(*p)); | ||
1601 | p->type = type; | ||
1602 | |||
1603 | if (ops->vidioc_g_parm) { | ||
1604 | ret = ops->vidioc_g_parm(file, fh, p); | ||
1605 | } else { | ||
1606 | struct v4l2_standard s; | ||
1607 | |||
1608 | if (p->type != V4L2_BUF_TYPE_VIDEO_CAPTURE) | ||
1609 | return -EINVAL; | ||
1610 | |||
1611 | v4l2_video_std_construct(&s, vfd->current_norm, | ||
1612 | v4l2_norm_to_name(vfd->current_norm)); | ||
1613 | |||
1614 | p->parm.capture.timeperframe = s.frameperiod; | ||
1615 | ret = 0; | ||
1616 | } | ||
1617 | |||
1618 | dbgarg(cmd, "type=%d\n", p->type); | ||
1619 | break; | ||
1620 | } | ||
1621 | case VIDIOC_S_PARM: | ||
1622 | { | ||
1623 | struct v4l2_streamparm *p = arg; | ||
1624 | |||
1625 | if (!ops->vidioc_s_parm) | ||
1626 | break; | ||
1627 | dbgarg(cmd, "type=%d\n", p->type); | ||
1628 | ret = ops->vidioc_s_parm(file, fh, p); | ||
1629 | break; | ||
1630 | } | ||
1631 | case VIDIOC_G_TUNER: | ||
1632 | { | ||
1633 | struct v4l2_tuner *p = arg; | ||
1634 | __u32 index = p->index; | ||
1635 | |||
1636 | if (!ops->vidioc_g_tuner) | ||
1637 | break; | ||
1638 | |||
1639 | memset(p, 0, sizeof(*p)); | ||
1640 | p->index = index; | ||
1641 | |||
1642 | ret = ops->vidioc_g_tuner(file, fh, p); | ||
1643 | if (!ret) | ||
1644 | dbgarg(cmd, "index=%d, name=%s, type=%d, " | ||
1645 | "capability=0x%x, rangelow=%d, " | ||
1646 | "rangehigh=%d, signal=%d, afc=%d, " | ||
1647 | "rxsubchans=0x%x, audmode=%d\n", | ||
1648 | p->index, p->name, p->type, | ||
1649 | p->capability, p->rangelow, | ||
1650 | p->rangehigh, p->signal, p->afc, | ||
1651 | p->rxsubchans, p->audmode); | ||
1652 | break; | ||
1653 | } | ||
1654 | case VIDIOC_S_TUNER: | ||
1655 | { | ||
1656 | struct v4l2_tuner *p = arg; | ||
1657 | |||
1658 | if (!ops->vidioc_s_tuner) | ||
1659 | break; | ||
1660 | dbgarg(cmd, "index=%d, name=%s, type=%d, " | ||
1661 | "capability=0x%x, rangelow=%d, " | ||
1662 | "rangehigh=%d, signal=%d, afc=%d, " | ||
1663 | "rxsubchans=0x%x, audmode=%d\n", | ||
1664 | p->index, p->name, p->type, | ||
1665 | p->capability, p->rangelow, | ||
1666 | p->rangehigh, p->signal, p->afc, | ||
1667 | p->rxsubchans, p->audmode); | ||
1668 | ret = ops->vidioc_s_tuner(file, fh, p); | ||
1669 | break; | ||
1670 | } | ||
1671 | case VIDIOC_G_FREQUENCY: | ||
1672 | { | ||
1673 | struct v4l2_frequency *p = arg; | ||
1674 | |||
1675 | if (!ops->vidioc_g_frequency) | ||
1676 | break; | ||
1677 | |||
1678 | memset(p->reserved, 0, sizeof(p->reserved)); | ||
1679 | |||
1680 | ret = ops->vidioc_g_frequency(file, fh, p); | ||
1681 | if (!ret) | ||
1682 | dbgarg(cmd, "tuner=%d, type=%d, frequency=%d\n", | ||
1683 | p->tuner, p->type, p->frequency); | ||
1684 | break; | ||
1685 | } | ||
1686 | case VIDIOC_S_FREQUENCY: | ||
1687 | { | ||
1688 | struct v4l2_frequency *p = arg; | ||
1689 | |||
1690 | if (!ops->vidioc_s_frequency) | ||
1691 | break; | ||
1692 | dbgarg(cmd, "tuner=%d, type=%d, frequency=%d\n", | ||
1693 | p->tuner, p->type, p->frequency); | ||
1694 | ret = ops->vidioc_s_frequency(file, fh, p); | ||
1695 | break; | ||
1696 | } | ||
1697 | case VIDIOC_G_SLICED_VBI_CAP: | ||
1698 | { | ||
1699 | struct v4l2_sliced_vbi_cap *p = arg; | ||
1700 | __u32 type = p->type; | ||
1701 | |||
1702 | if (!ops->vidioc_g_sliced_vbi_cap) | ||
1703 | break; | ||
1704 | memset(p, 0, sizeof(*p)); | ||
1705 | p->type = type; | ||
1706 | dbgarg(cmd, "type=%s\n", prt_names(p->type, v4l2_type_names)); | ||
1707 | ret = ops->vidioc_g_sliced_vbi_cap(file, fh, p); | ||
1708 | if (!ret) | ||
1709 | dbgarg2("service_set=%d\n", p->service_set); | ||
1710 | break; | ||
1711 | } | ||
1712 | case VIDIOC_LOG_STATUS: | ||
1713 | { | ||
1714 | if (!ops->vidioc_log_status) | ||
1715 | break; | ||
1716 | ret = ops->vidioc_log_status(file, fh); | ||
1717 | break; | ||
1718 | } | ||
1719 | #ifdef CONFIG_VIDEO_ADV_DEBUG | ||
1720 | case VIDIOC_DBG_G_REGISTER: | ||
1721 | { | ||
1722 | struct v4l2_register *p = arg; | ||
1723 | |||
1724 | if (!capable(CAP_SYS_ADMIN)) | ||
1725 | ret = -EPERM; | ||
1726 | else if (ops->vidioc_g_register) | ||
1727 | ret = ops->vidioc_g_register(file, fh, p); | ||
1728 | break; | ||
1729 | } | ||
1730 | case VIDIOC_DBG_S_REGISTER: | ||
1731 | { | ||
1732 | struct v4l2_register *p = arg; | ||
1733 | |||
1734 | if (!capable(CAP_SYS_ADMIN)) | ||
1735 | ret = -EPERM; | ||
1736 | else if (ops->vidioc_s_register) | ||
1737 | ret = ops->vidioc_s_register(file, fh, p); | ||
1738 | break; | ||
1739 | } | ||
1740 | #endif | ||
1741 | case VIDIOC_G_CHIP_IDENT: | ||
1742 | { | ||
1743 | struct v4l2_chip_ident *p = arg; | ||
1744 | |||
1745 | if (!ops->vidioc_g_chip_ident) | ||
1746 | break; | ||
1747 | ret = ops->vidioc_g_chip_ident(file, fh, p); | ||
1748 | if (!ret) | ||
1749 | dbgarg(cmd, "chip_ident=%u, revision=0x%x\n", p->ident, p->revision); | ||
1750 | break; | ||
1751 | } | ||
1752 | case VIDIOC_S_HW_FREQ_SEEK: | ||
1753 | { | ||
1754 | struct v4l2_hw_freq_seek *p = arg; | ||
1755 | |||
1756 | if (!ops->vidioc_s_hw_freq_seek) | ||
1757 | break; | ||
1758 | dbgarg(cmd, | ||
1759 | "tuner=%d, type=%d, seek_upward=%d, wrap_around=%d\n", | ||
1760 | p->tuner, p->type, p->seek_upward, p->wrap_around); | ||
1761 | ret = ops->vidioc_s_hw_freq_seek(file, fh, p); | ||
1762 | break; | ||
1763 | } | ||
1764 | default: | ||
1765 | { | ||
1766 | if (!ops->vidioc_default) | ||
1767 | break; | ||
1768 | ret = ops->vidioc_default(file, fh, cmd, arg); | ||
1769 | break; | ||
1770 | } | ||
1771 | } /* switch */ | ||
1772 | |||
1773 | if (vfd->debug & V4L2_DEBUG_IOCTL_ARG) { | ||
1774 | if (ret < 0) { | ||
1775 | v4l_print_ioctl(vfd->name, cmd); | ||
1776 | printk(KERN_CONT " error %d\n", ret); | ||
1777 | } | ||
1778 | } | ||
1779 | |||
1780 | return ret; | ||
1781 | } | ||
1782 | |||
1783 | int video_ioctl2(struct inode *inode, struct file *file, | ||
1784 | unsigned int cmd, unsigned long arg) | ||
1785 | { | ||
1786 | char sbuf[128]; | ||
1787 | void *mbuf = NULL; | ||
1788 | void *parg = NULL; | ||
1789 | int err = -EINVAL; | ||
1790 | int is_ext_ctrl; | ||
1791 | size_t ctrls_size = 0; | ||
1792 | void __user *user_ptr = NULL; | ||
1793 | |||
1794 | #ifdef __OLD_VIDIOC_ | ||
1795 | cmd = video_fix_command(cmd); | ||
1796 | #endif | ||
1797 | is_ext_ctrl = (cmd == VIDIOC_S_EXT_CTRLS || cmd == VIDIOC_G_EXT_CTRLS || | ||
1798 | cmd == VIDIOC_TRY_EXT_CTRLS); | ||
1799 | |||
1800 | /* Copy arguments into temp kernel buffer */ | ||
1801 | switch (_IOC_DIR(cmd)) { | ||
1802 | case _IOC_NONE: | ||
1803 | parg = NULL; | ||
1804 | break; | ||
1805 | case _IOC_READ: | ||
1806 | case _IOC_WRITE: | ||
1807 | case (_IOC_WRITE | _IOC_READ): | ||
1808 | if (_IOC_SIZE(cmd) <= sizeof(sbuf)) { | ||
1809 | parg = sbuf; | ||
1810 | } else { | ||
1811 | /* too big to allocate from stack */ | ||
1812 | mbuf = kmalloc(_IOC_SIZE(cmd), GFP_KERNEL); | ||
1813 | if (NULL == mbuf) | ||
1814 | return -ENOMEM; | ||
1815 | parg = mbuf; | ||
1816 | } | ||
1817 | |||
1818 | err = -EFAULT; | ||
1819 | if (_IOC_DIR(cmd) & _IOC_WRITE) | ||
1820 | if (copy_from_user(parg, (void __user *)arg, _IOC_SIZE(cmd))) | ||
1821 | goto out; | ||
1822 | break; | ||
1823 | } | ||
1824 | |||
1825 | if (is_ext_ctrl) { | ||
1826 | struct v4l2_ext_controls *p = parg; | ||
1827 | |||
1828 | /* In case of an error, tell the caller that it wasn't | ||
1829 | a specific control that caused it. */ | ||
1830 | p->error_idx = p->count; | ||
1831 | user_ptr = (void __user *)p->controls; | ||
1832 | if (p->count) { | ||
1833 | ctrls_size = sizeof(struct v4l2_ext_control) * p->count; | ||
1834 | /* Note: v4l2_ext_controls fits in sbuf[] so mbuf is still NULL. */ | ||
1835 | mbuf = kmalloc(ctrls_size, GFP_KERNEL); | ||
1836 | err = -ENOMEM; | ||
1837 | if (NULL == mbuf) | ||
1838 | goto out_ext_ctrl; | ||
1839 | err = -EFAULT; | ||
1840 | if (copy_from_user(mbuf, user_ptr, ctrls_size)) | ||
1841 | goto out_ext_ctrl; | ||
1842 | p->controls = mbuf; | ||
1843 | } | ||
1844 | } | ||
1845 | |||
1846 | /* Handles IOCTL */ | ||
1847 | err = __video_do_ioctl(inode, file, cmd, parg); | ||
1848 | if (err == -ENOIOCTLCMD) | ||
1849 | err = -EINVAL; | ||
1850 | if (is_ext_ctrl) { | ||
1851 | struct v4l2_ext_controls *p = parg; | ||
1852 | |||
1853 | p->controls = (void *)user_ptr; | ||
1854 | if (p->count && err == 0 && copy_to_user(user_ptr, mbuf, ctrls_size)) | ||
1855 | err = -EFAULT; | ||
1856 | goto out_ext_ctrl; | ||
1857 | } | ||
1858 | if (err < 0) | ||
1859 | goto out; | ||
1860 | |||
1861 | out_ext_ctrl: | ||
1862 | /* Copy results into user buffer */ | ||
1863 | switch (_IOC_DIR(cmd)) { | ||
1864 | case _IOC_READ: | ||
1865 | case (_IOC_WRITE | _IOC_READ): | ||
1866 | if (copy_to_user((void __user *)arg, parg, _IOC_SIZE(cmd))) | ||
1867 | err = -EFAULT; | ||
1868 | break; | ||
1869 | } | ||
1870 | |||
1871 | out: | ||
1872 | kfree(mbuf); | ||
1873 | return err; | ||
1874 | } | ||
1875 | EXPORT_SYMBOL(video_ioctl2); | ||
diff --git a/drivers/media/video/videobuf-dma-contig.c b/drivers/media/video/videobuf-dma-contig.c index 03f20acb668c..31944b11e6ea 100644 --- a/drivers/media/video/videobuf-dma-contig.c +++ b/drivers/media/video/videobuf-dma-contig.c | |||
@@ -28,10 +28,10 @@ struct videobuf_dma_contig_memory { | |||
28 | }; | 28 | }; |
29 | 29 | ||
30 | #define MAGIC_DC_MEM 0x0733ac61 | 30 | #define MAGIC_DC_MEM 0x0733ac61 |
31 | #define MAGIC_CHECK(is, should) \ | 31 | #define MAGIC_CHECK(is, should) \ |
32 | if (unlikely((is) != (should))) { \ | 32 | if (unlikely((is) != (should))) { \ |
33 | pr_err("magic mismatch: %x expected %x\n", is, should); \ | 33 | pr_err("magic mismatch: %x expected %x\n", (is), (should)); \ |
34 | BUG(); \ | 34 | BUG(); \ |
35 | } | 35 | } |
36 | 36 | ||
37 | static void | 37 | static void |
diff --git a/drivers/media/video/videobuf-vmalloc.c b/drivers/media/video/videobuf-vmalloc.c index a868b7ed75ff..be65a2fb3976 100644 --- a/drivers/media/video/videobuf-vmalloc.c +++ b/drivers/media/video/videobuf-vmalloc.c | |||
@@ -203,7 +203,7 @@ static int __videobuf_iolock (struct videobuf_queue* q, | |||
203 | return 0; | 203 | return 0; |
204 | 204 | ||
205 | /* FIXME: to properly support USERPTR, remap should occur. | 205 | /* FIXME: to properly support USERPTR, remap should occur. |
206 | The code bellow won't work, since mem->vma = NULL | 206 | The code below won't work, since mem->vma = NULL |
207 | */ | 207 | */ |
208 | /* Try to remap memory */ | 208 | /* Try to remap memory */ |
209 | rc = remap_vmalloc_range(mem->vma, (void *)vb->baddr, 0); | 209 | rc = remap_vmalloc_range(mem->vma, (void *)vb->baddr, 0); |
diff --git a/drivers/media/video/videodev.c b/drivers/media/video/videodev.c index 6616e6570557..e69de29bb2d1 100644 --- a/drivers/media/video/videodev.c +++ b/drivers/media/video/videodev.c | |||
@@ -1,2262 +0,0 @@ | |||
1 | /* | ||
2 | * Video capture interface for Linux version 2 | ||
3 | * | ||
4 | * A generic video device interface for the LINUX operating system | ||
5 | * using a set of device structures/vectors for low level operations. | ||
6 | * | ||
7 | * This program is free software; you can redistribute it and/or | ||
8 | * modify it under the terms of the GNU General Public License | ||
9 | * as published by the Free Software Foundation; either version | ||
10 | * 2 of the License, or (at your option) any later version. | ||
11 | * | ||
12 | * Authors: Alan Cox, <alan@redhat.com> (version 1) | ||
13 | * Mauro Carvalho Chehab <mchehab@infradead.org> (version 2) | ||
14 | * | ||
15 | * Fixes: 20000516 Claudio Matsuoka <claudio@conectiva.com> | ||
16 | * - Added procfs support | ||
17 | */ | ||
18 | |||
19 | #define dbgarg(cmd, fmt, arg...) \ | ||
20 | do { \ | ||
21 | if (vfd->debug & V4L2_DEBUG_IOCTL_ARG) { \ | ||
22 | printk(KERN_DEBUG "%s: ", vfd->name); \ | ||
23 | v4l_printk_ioctl(cmd); \ | ||
24 | printk(" " fmt, ## arg); \ | ||
25 | } \ | ||
26 | } while (0) | ||
27 | |||
28 | #define dbgarg2(fmt, arg...) \ | ||
29 | do { \ | ||
30 | if (vfd->debug & V4L2_DEBUG_IOCTL_ARG) \ | ||
31 | printk(KERN_DEBUG "%s: " fmt, vfd->name, ## arg);\ | ||
32 | } while (0) | ||
33 | |||
34 | #include <linux/module.h> | ||
35 | #include <linux/types.h> | ||
36 | #include <linux/kernel.h> | ||
37 | #include <linux/mm.h> | ||
38 | #include <linux/string.h> | ||
39 | #include <linux/errno.h> | ||
40 | #include <linux/init.h> | ||
41 | #include <linux/kmod.h> | ||
42 | #include <linux/slab.h> | ||
43 | #include <linux/smp_lock.h> | ||
44 | #include <asm/uaccess.h> | ||
45 | #include <asm/system.h> | ||
46 | |||
47 | #define __OLD_VIDIOC_ /* To allow fixing old calls*/ | ||
48 | #include <linux/videodev2.h> | ||
49 | |||
50 | #ifdef CONFIG_VIDEO_V4L1 | ||
51 | #include <linux/videodev.h> | ||
52 | #endif | ||
53 | #include <media/v4l2-common.h> | ||
54 | #include <linux/video_decoder.h> | ||
55 | |||
56 | #define VIDEO_NUM_DEVICES 256 | ||
57 | #define VIDEO_NAME "video4linux" | ||
58 | |||
59 | struct std_descr { | ||
60 | v4l2_std_id std; | ||
61 | const char *descr; | ||
62 | }; | ||
63 | |||
64 | static const struct std_descr standards[] = { | ||
65 | { V4L2_STD_NTSC, "NTSC" }, | ||
66 | { V4L2_STD_NTSC_M, "NTSC-M" }, | ||
67 | { V4L2_STD_NTSC_M_JP, "NTSC-M-JP" }, | ||
68 | { V4L2_STD_NTSC_M_KR, "NTSC-M-KR" }, | ||
69 | { V4L2_STD_NTSC_443, "NTSC-443" }, | ||
70 | { V4L2_STD_PAL, "PAL" }, | ||
71 | { V4L2_STD_PAL_BG, "PAL-BG" }, | ||
72 | { V4L2_STD_PAL_B, "PAL-B" }, | ||
73 | { V4L2_STD_PAL_B1, "PAL-B1" }, | ||
74 | { V4L2_STD_PAL_G, "PAL-G" }, | ||
75 | { V4L2_STD_PAL_H, "PAL-H" }, | ||
76 | { V4L2_STD_PAL_I, "PAL-I" }, | ||
77 | { V4L2_STD_PAL_DK, "PAL-DK" }, | ||
78 | { V4L2_STD_PAL_D, "PAL-D" }, | ||
79 | { V4L2_STD_PAL_D1, "PAL-D1" }, | ||
80 | { V4L2_STD_PAL_K, "PAL-K" }, | ||
81 | { V4L2_STD_PAL_M, "PAL-M" }, | ||
82 | { V4L2_STD_PAL_N, "PAL-N" }, | ||
83 | { V4L2_STD_PAL_Nc, "PAL-Nc" }, | ||
84 | { V4L2_STD_PAL_60, "PAL-60" }, | ||
85 | { V4L2_STD_SECAM, "SECAM" }, | ||
86 | { V4L2_STD_SECAM_B, "SECAM-B" }, | ||
87 | { V4L2_STD_SECAM_G, "SECAM-G" }, | ||
88 | { V4L2_STD_SECAM_H, "SECAM-H" }, | ||
89 | { V4L2_STD_SECAM_DK, "SECAM-DK" }, | ||
90 | { V4L2_STD_SECAM_D, "SECAM-D" }, | ||
91 | { V4L2_STD_SECAM_K, "SECAM-K" }, | ||
92 | { V4L2_STD_SECAM_K1, "SECAM-K1" }, | ||
93 | { V4L2_STD_SECAM_L, "SECAM-L" }, | ||
94 | { V4L2_STD_SECAM_LC, "SECAM-Lc" }, | ||
95 | { 0, "Unknown" } | ||
96 | }; | ||
97 | |||
98 | /* video4linux standard ID conversion to standard name | ||
99 | */ | ||
100 | const char *v4l2_norm_to_name(v4l2_std_id id) | ||
101 | { | ||
102 | u32 myid = id; | ||
103 | int i; | ||
104 | |||
105 | /* HACK: ppc32 architecture doesn't have __ucmpdi2 function to handle | ||
106 | 64 bit comparations. So, on that architecture, with some gcc | ||
107 | variants, compilation fails. Currently, the max value is 30bit wide. | ||
108 | */ | ||
109 | BUG_ON(myid != id); | ||
110 | |||
111 | for (i = 0; standards[i].std; i++) | ||
112 | if (myid == standards[i].std) | ||
113 | break; | ||
114 | return standards[i].descr; | ||
115 | } | ||
116 | EXPORT_SYMBOL(v4l2_norm_to_name); | ||
117 | |||
118 | /* Fill in the fields of a v4l2_standard structure according to the | ||
119 | 'id' and 'transmission' parameters. Returns negative on error. */ | ||
120 | int v4l2_video_std_construct(struct v4l2_standard *vs, | ||
121 | int id, const char *name) | ||
122 | { | ||
123 | u32 index = vs->index; | ||
124 | |||
125 | memset(vs, 0, sizeof(struct v4l2_standard)); | ||
126 | vs->index = index; | ||
127 | vs->id = id; | ||
128 | if (id & V4L2_STD_525_60) { | ||
129 | vs->frameperiod.numerator = 1001; | ||
130 | vs->frameperiod.denominator = 30000; | ||
131 | vs->framelines = 525; | ||
132 | } else { | ||
133 | vs->frameperiod.numerator = 1; | ||
134 | vs->frameperiod.denominator = 25; | ||
135 | vs->framelines = 625; | ||
136 | } | ||
137 | strlcpy(vs->name, name, sizeof(vs->name)); | ||
138 | return 0; | ||
139 | } | ||
140 | EXPORT_SYMBOL(v4l2_video_std_construct); | ||
141 | |||
142 | /* ----------------------------------------------------------------- */ | ||
143 | /* some arrays for pretty-printing debug messages of enum types */ | ||
144 | |||
145 | const char *v4l2_field_names[] = { | ||
146 | [V4L2_FIELD_ANY] = "any", | ||
147 | [V4L2_FIELD_NONE] = "none", | ||
148 | [V4L2_FIELD_TOP] = "top", | ||
149 | [V4L2_FIELD_BOTTOM] = "bottom", | ||
150 | [V4L2_FIELD_INTERLACED] = "interlaced", | ||
151 | [V4L2_FIELD_SEQ_TB] = "seq-tb", | ||
152 | [V4L2_FIELD_SEQ_BT] = "seq-bt", | ||
153 | [V4L2_FIELD_ALTERNATE] = "alternate", | ||
154 | [V4L2_FIELD_INTERLACED_TB] = "interlaced-tb", | ||
155 | [V4L2_FIELD_INTERLACED_BT] = "interlaced-bt", | ||
156 | }; | ||
157 | EXPORT_SYMBOL(v4l2_field_names); | ||
158 | |||
159 | const char *v4l2_type_names[] = { | ||
160 | [V4L2_BUF_TYPE_VIDEO_CAPTURE] = "vid-cap", | ||
161 | [V4L2_BUF_TYPE_VIDEO_OVERLAY] = "vid-overlay", | ||
162 | [V4L2_BUF_TYPE_VIDEO_OUTPUT] = "vid-out", | ||
163 | [V4L2_BUF_TYPE_VBI_CAPTURE] = "vbi-cap", | ||
164 | [V4L2_BUF_TYPE_VBI_OUTPUT] = "vbi-out", | ||
165 | [V4L2_BUF_TYPE_SLICED_VBI_CAPTURE] = "sliced-vbi-cap", | ||
166 | [V4L2_BUF_TYPE_SLICED_VBI_OUTPUT] = "sliced-vbi-out", | ||
167 | [V4L2_BUF_TYPE_VIDEO_OUTPUT_OVERLAY] = "vid-out-overlay", | ||
168 | }; | ||
169 | EXPORT_SYMBOL(v4l2_type_names); | ||
170 | |||
171 | static const char *v4l2_memory_names[] = { | ||
172 | [V4L2_MEMORY_MMAP] = "mmap", | ||
173 | [V4L2_MEMORY_USERPTR] = "userptr", | ||
174 | [V4L2_MEMORY_OVERLAY] = "overlay", | ||
175 | }; | ||
176 | |||
177 | #define prt_names(a, arr) ((((a) >= 0) && ((a) < ARRAY_SIZE(arr))) ? \ | ||
178 | arr[a] : "unknown") | ||
179 | |||
180 | /* ------------------------------------------------------------------ */ | ||
181 | /* debug help functions */ | ||
182 | |||
183 | #ifdef CONFIG_VIDEO_V4L1_COMPAT | ||
184 | static const char *v4l1_ioctls[] = { | ||
185 | [_IOC_NR(VIDIOCGCAP)] = "VIDIOCGCAP", | ||
186 | [_IOC_NR(VIDIOCGCHAN)] = "VIDIOCGCHAN", | ||
187 | [_IOC_NR(VIDIOCSCHAN)] = "VIDIOCSCHAN", | ||
188 | [_IOC_NR(VIDIOCGTUNER)] = "VIDIOCGTUNER", | ||
189 | [_IOC_NR(VIDIOCSTUNER)] = "VIDIOCSTUNER", | ||
190 | [_IOC_NR(VIDIOCGPICT)] = "VIDIOCGPICT", | ||
191 | [_IOC_NR(VIDIOCSPICT)] = "VIDIOCSPICT", | ||
192 | [_IOC_NR(VIDIOCCAPTURE)] = "VIDIOCCAPTURE", | ||
193 | [_IOC_NR(VIDIOCGWIN)] = "VIDIOCGWIN", | ||
194 | [_IOC_NR(VIDIOCSWIN)] = "VIDIOCSWIN", | ||
195 | [_IOC_NR(VIDIOCGFBUF)] = "VIDIOCGFBUF", | ||
196 | [_IOC_NR(VIDIOCSFBUF)] = "VIDIOCSFBUF", | ||
197 | [_IOC_NR(VIDIOCKEY)] = "VIDIOCKEY", | ||
198 | [_IOC_NR(VIDIOCGFREQ)] = "VIDIOCGFREQ", | ||
199 | [_IOC_NR(VIDIOCSFREQ)] = "VIDIOCSFREQ", | ||
200 | [_IOC_NR(VIDIOCGAUDIO)] = "VIDIOCGAUDIO", | ||
201 | [_IOC_NR(VIDIOCSAUDIO)] = "VIDIOCSAUDIO", | ||
202 | [_IOC_NR(VIDIOCSYNC)] = "VIDIOCSYNC", | ||
203 | [_IOC_NR(VIDIOCMCAPTURE)] = "VIDIOCMCAPTURE", | ||
204 | [_IOC_NR(VIDIOCGMBUF)] = "VIDIOCGMBUF", | ||
205 | [_IOC_NR(VIDIOCGUNIT)] = "VIDIOCGUNIT", | ||
206 | [_IOC_NR(VIDIOCGCAPTURE)] = "VIDIOCGCAPTURE", | ||
207 | [_IOC_NR(VIDIOCSCAPTURE)] = "VIDIOCSCAPTURE", | ||
208 | [_IOC_NR(VIDIOCSPLAYMODE)] = "VIDIOCSPLAYMODE", | ||
209 | [_IOC_NR(VIDIOCSWRITEMODE)] = "VIDIOCSWRITEMODE", | ||
210 | [_IOC_NR(VIDIOCGPLAYINFO)] = "VIDIOCGPLAYINFO", | ||
211 | [_IOC_NR(VIDIOCSMICROCODE)] = "VIDIOCSMICROCODE", | ||
212 | [_IOC_NR(VIDIOCGVBIFMT)] = "VIDIOCGVBIFMT", | ||
213 | [_IOC_NR(VIDIOCSVBIFMT)] = "VIDIOCSVBIFMT" | ||
214 | }; | ||
215 | #define V4L1_IOCTLS ARRAY_SIZE(v4l1_ioctls) | ||
216 | #endif | ||
217 | |||
218 | static const char *v4l2_ioctls[] = { | ||
219 | [_IOC_NR(VIDIOC_QUERYCAP)] = "VIDIOC_QUERYCAP", | ||
220 | [_IOC_NR(VIDIOC_RESERVED)] = "VIDIOC_RESERVED", | ||
221 | [_IOC_NR(VIDIOC_ENUM_FMT)] = "VIDIOC_ENUM_FMT", | ||
222 | [_IOC_NR(VIDIOC_G_FMT)] = "VIDIOC_G_FMT", | ||
223 | [_IOC_NR(VIDIOC_S_FMT)] = "VIDIOC_S_FMT", | ||
224 | [_IOC_NR(VIDIOC_REQBUFS)] = "VIDIOC_REQBUFS", | ||
225 | [_IOC_NR(VIDIOC_QUERYBUF)] = "VIDIOC_QUERYBUF", | ||
226 | [_IOC_NR(VIDIOC_G_FBUF)] = "VIDIOC_G_FBUF", | ||
227 | [_IOC_NR(VIDIOC_S_FBUF)] = "VIDIOC_S_FBUF", | ||
228 | [_IOC_NR(VIDIOC_OVERLAY)] = "VIDIOC_OVERLAY", | ||
229 | [_IOC_NR(VIDIOC_QBUF)] = "VIDIOC_QBUF", | ||
230 | [_IOC_NR(VIDIOC_DQBUF)] = "VIDIOC_DQBUF", | ||
231 | [_IOC_NR(VIDIOC_STREAMON)] = "VIDIOC_STREAMON", | ||
232 | [_IOC_NR(VIDIOC_STREAMOFF)] = "VIDIOC_STREAMOFF", | ||
233 | [_IOC_NR(VIDIOC_G_PARM)] = "VIDIOC_G_PARM", | ||
234 | [_IOC_NR(VIDIOC_S_PARM)] = "VIDIOC_S_PARM", | ||
235 | [_IOC_NR(VIDIOC_G_STD)] = "VIDIOC_G_STD", | ||
236 | [_IOC_NR(VIDIOC_S_STD)] = "VIDIOC_S_STD", | ||
237 | [_IOC_NR(VIDIOC_ENUMSTD)] = "VIDIOC_ENUMSTD", | ||
238 | [_IOC_NR(VIDIOC_ENUMINPUT)] = "VIDIOC_ENUMINPUT", | ||
239 | [_IOC_NR(VIDIOC_G_CTRL)] = "VIDIOC_G_CTRL", | ||
240 | [_IOC_NR(VIDIOC_S_CTRL)] = "VIDIOC_S_CTRL", | ||
241 | [_IOC_NR(VIDIOC_G_TUNER)] = "VIDIOC_G_TUNER", | ||
242 | [_IOC_NR(VIDIOC_S_TUNER)] = "VIDIOC_S_TUNER", | ||
243 | [_IOC_NR(VIDIOC_G_AUDIO)] = "VIDIOC_G_AUDIO", | ||
244 | [_IOC_NR(VIDIOC_S_AUDIO)] = "VIDIOC_S_AUDIO", | ||
245 | [_IOC_NR(VIDIOC_QUERYCTRL)] = "VIDIOC_QUERYCTRL", | ||
246 | [_IOC_NR(VIDIOC_QUERYMENU)] = "VIDIOC_QUERYMENU", | ||
247 | [_IOC_NR(VIDIOC_G_INPUT)] = "VIDIOC_G_INPUT", | ||
248 | [_IOC_NR(VIDIOC_S_INPUT)] = "VIDIOC_S_INPUT", | ||
249 | [_IOC_NR(VIDIOC_G_OUTPUT)] = "VIDIOC_G_OUTPUT", | ||
250 | [_IOC_NR(VIDIOC_S_OUTPUT)] = "VIDIOC_S_OUTPUT", | ||
251 | [_IOC_NR(VIDIOC_ENUMOUTPUT)] = "VIDIOC_ENUMOUTPUT", | ||
252 | [_IOC_NR(VIDIOC_G_AUDOUT)] = "VIDIOC_G_AUDOUT", | ||
253 | [_IOC_NR(VIDIOC_S_AUDOUT)] = "VIDIOC_S_AUDOUT", | ||
254 | [_IOC_NR(VIDIOC_G_MODULATOR)] = "VIDIOC_G_MODULATOR", | ||
255 | [_IOC_NR(VIDIOC_S_MODULATOR)] = "VIDIOC_S_MODULATOR", | ||
256 | [_IOC_NR(VIDIOC_G_FREQUENCY)] = "VIDIOC_G_FREQUENCY", | ||
257 | [_IOC_NR(VIDIOC_S_FREQUENCY)] = "VIDIOC_S_FREQUENCY", | ||
258 | [_IOC_NR(VIDIOC_CROPCAP)] = "VIDIOC_CROPCAP", | ||
259 | [_IOC_NR(VIDIOC_G_CROP)] = "VIDIOC_G_CROP", | ||
260 | [_IOC_NR(VIDIOC_S_CROP)] = "VIDIOC_S_CROP", | ||
261 | [_IOC_NR(VIDIOC_G_JPEGCOMP)] = "VIDIOC_G_JPEGCOMP", | ||
262 | [_IOC_NR(VIDIOC_S_JPEGCOMP)] = "VIDIOC_S_JPEGCOMP", | ||
263 | [_IOC_NR(VIDIOC_QUERYSTD)] = "VIDIOC_QUERYSTD", | ||
264 | [_IOC_NR(VIDIOC_TRY_FMT)] = "VIDIOC_TRY_FMT", | ||
265 | [_IOC_NR(VIDIOC_ENUMAUDIO)] = "VIDIOC_ENUMAUDIO", | ||
266 | [_IOC_NR(VIDIOC_ENUMAUDOUT)] = "VIDIOC_ENUMAUDOUT", | ||
267 | [_IOC_NR(VIDIOC_G_PRIORITY)] = "VIDIOC_G_PRIORITY", | ||
268 | [_IOC_NR(VIDIOC_S_PRIORITY)] = "VIDIOC_S_PRIORITY", | ||
269 | [_IOC_NR(VIDIOC_G_SLICED_VBI_CAP)] = "VIDIOC_G_SLICED_VBI_CAP", | ||
270 | [_IOC_NR(VIDIOC_LOG_STATUS)] = "VIDIOC_LOG_STATUS", | ||
271 | [_IOC_NR(VIDIOC_G_EXT_CTRLS)] = "VIDIOC_G_EXT_CTRLS", | ||
272 | [_IOC_NR(VIDIOC_S_EXT_CTRLS)] = "VIDIOC_S_EXT_CTRLS", | ||
273 | [_IOC_NR(VIDIOC_TRY_EXT_CTRLS)] = "VIDIOC_TRY_EXT_CTRLS", | ||
274 | #if 1 | ||
275 | [_IOC_NR(VIDIOC_ENUM_FRAMESIZES)] = "VIDIOC_ENUM_FRAMESIZES", | ||
276 | [_IOC_NR(VIDIOC_ENUM_FRAMEINTERVALS)] = "VIDIOC_ENUM_FRAMEINTERVALS", | ||
277 | [_IOC_NR(VIDIOC_G_ENC_INDEX)] = "VIDIOC_G_ENC_INDEX", | ||
278 | [_IOC_NR(VIDIOC_ENCODER_CMD)] = "VIDIOC_ENCODER_CMD", | ||
279 | [_IOC_NR(VIDIOC_TRY_ENCODER_CMD)] = "VIDIOC_TRY_ENCODER_CMD", | ||
280 | |||
281 | [_IOC_NR(VIDIOC_DBG_S_REGISTER)] = "VIDIOC_DBG_S_REGISTER", | ||
282 | [_IOC_NR(VIDIOC_DBG_G_REGISTER)] = "VIDIOC_DBG_G_REGISTER", | ||
283 | |||
284 | [_IOC_NR(VIDIOC_G_CHIP_IDENT)] = "VIDIOC_G_CHIP_IDENT", | ||
285 | [_IOC_NR(VIDIOC_S_HW_FREQ_SEEK)] = "VIDIOC_S_HW_FREQ_SEEK", | ||
286 | #endif | ||
287 | }; | ||
288 | #define V4L2_IOCTLS ARRAY_SIZE(v4l2_ioctls) | ||
289 | |||
290 | static const char *v4l2_int_ioctls[] = { | ||
291 | #ifdef CONFIG_VIDEO_V4L1_COMPAT | ||
292 | [_IOC_NR(DECODER_GET_CAPABILITIES)] = "DECODER_GET_CAPABILITIES", | ||
293 | [_IOC_NR(DECODER_GET_STATUS)] = "DECODER_GET_STATUS", | ||
294 | [_IOC_NR(DECODER_SET_NORM)] = "DECODER_SET_NORM", | ||
295 | [_IOC_NR(DECODER_SET_INPUT)] = "DECODER_SET_INPUT", | ||
296 | [_IOC_NR(DECODER_SET_OUTPUT)] = "DECODER_SET_OUTPUT", | ||
297 | [_IOC_NR(DECODER_ENABLE_OUTPUT)] = "DECODER_ENABLE_OUTPUT", | ||
298 | [_IOC_NR(DECODER_SET_PICTURE)] = "DECODER_SET_PICTURE", | ||
299 | [_IOC_NR(DECODER_SET_GPIO)] = "DECODER_SET_GPIO", | ||
300 | [_IOC_NR(DECODER_INIT)] = "DECODER_INIT", | ||
301 | [_IOC_NR(DECODER_SET_VBI_BYPASS)] = "DECODER_SET_VBI_BYPASS", | ||
302 | [_IOC_NR(DECODER_DUMP)] = "DECODER_DUMP", | ||
303 | #endif | ||
304 | [_IOC_NR(AUDC_SET_RADIO)] = "AUDC_SET_RADIO", | ||
305 | |||
306 | [_IOC_NR(TUNER_SET_TYPE_ADDR)] = "TUNER_SET_TYPE_ADDR", | ||
307 | [_IOC_NR(TUNER_SET_STANDBY)] = "TUNER_SET_STANDBY", | ||
308 | [_IOC_NR(TUNER_SET_CONFIG)] = "TUNER_SET_CONFIG", | ||
309 | |||
310 | [_IOC_NR(VIDIOC_INT_S_TUNER_MODE)] = "VIDIOC_INT_S_TUNER_MODE", | ||
311 | [_IOC_NR(VIDIOC_INT_RESET)] = "VIDIOC_INT_RESET", | ||
312 | [_IOC_NR(VIDIOC_INT_AUDIO_CLOCK_FREQ)] = "VIDIOC_INT_AUDIO_CLOCK_FREQ", | ||
313 | [_IOC_NR(VIDIOC_INT_DECODE_VBI_LINE)] = "VIDIOC_INT_DECODE_VBI_LINE", | ||
314 | [_IOC_NR(VIDIOC_INT_S_VBI_DATA)] = "VIDIOC_INT_S_VBI_DATA", | ||
315 | [_IOC_NR(VIDIOC_INT_G_VBI_DATA)] = "VIDIOC_INT_G_VBI_DATA", | ||
316 | [_IOC_NR(VIDIOC_INT_I2S_CLOCK_FREQ)] = "VIDIOC_INT_I2S_CLOCK_FREQ", | ||
317 | [_IOC_NR(VIDIOC_INT_S_STANDBY)] = "VIDIOC_INT_S_STANDBY", | ||
318 | [_IOC_NR(VIDIOC_INT_S_AUDIO_ROUTING)] = "VIDIOC_INT_S_AUDIO_ROUTING", | ||
319 | [_IOC_NR(VIDIOC_INT_G_AUDIO_ROUTING)] = "VIDIOC_INT_G_AUDIO_ROUTING", | ||
320 | [_IOC_NR(VIDIOC_INT_S_VIDEO_ROUTING)] = "VIDIOC_INT_S_VIDEO_ROUTING", | ||
321 | [_IOC_NR(VIDIOC_INT_G_VIDEO_ROUTING)] = "VIDIOC_INT_G_VIDEO_ROUTING", | ||
322 | [_IOC_NR(VIDIOC_INT_S_CRYSTAL_FREQ)] = "VIDIOC_INT_S_CRYSTAL_FREQ", | ||
323 | [_IOC_NR(VIDIOC_INT_INIT)] = "VIDIOC_INT_INIT", | ||
324 | [_IOC_NR(VIDIOC_INT_G_STD_OUTPUT)] = "VIDIOC_INT_G_STD_OUTPUT", | ||
325 | [_IOC_NR(VIDIOC_INT_S_STD_OUTPUT)] = "VIDIOC_INT_S_STD_OUTPUT", | ||
326 | }; | ||
327 | #define V4L2_INT_IOCTLS ARRAY_SIZE(v4l2_int_ioctls) | ||
328 | |||
329 | /* Common ioctl debug function. This function can be used by | ||
330 | external ioctl messages as well as internal V4L ioctl */ | ||
331 | void v4l_printk_ioctl(unsigned int cmd) | ||
332 | { | ||
333 | char *dir, *type; | ||
334 | |||
335 | switch (_IOC_TYPE(cmd)) { | ||
336 | case 'd': | ||
337 | if (_IOC_NR(cmd) >= V4L2_INT_IOCTLS) { | ||
338 | type = "v4l2_int"; | ||
339 | break; | ||
340 | } | ||
341 | printk("%s", v4l2_int_ioctls[_IOC_NR(cmd)]); | ||
342 | return; | ||
343 | #ifdef CONFIG_VIDEO_V4L1_COMPAT | ||
344 | case 'v': | ||
345 | if (_IOC_NR(cmd) >= V4L1_IOCTLS) { | ||
346 | type = "v4l1"; | ||
347 | break; | ||
348 | } | ||
349 | printk("%s", v4l1_ioctls[_IOC_NR(cmd)]); | ||
350 | return; | ||
351 | #endif | ||
352 | case 'V': | ||
353 | if (_IOC_NR(cmd) >= V4L2_IOCTLS) { | ||
354 | type = "v4l2"; | ||
355 | break; | ||
356 | } | ||
357 | printk("%s", v4l2_ioctls[_IOC_NR(cmd)]); | ||
358 | return; | ||
359 | default: | ||
360 | type = "unknown"; | ||
361 | } | ||
362 | |||
363 | switch (_IOC_DIR(cmd)) { | ||
364 | case _IOC_NONE: dir = "--"; break; | ||
365 | case _IOC_READ: dir = "r-"; break; | ||
366 | case _IOC_WRITE: dir = "-w"; break; | ||
367 | case _IOC_READ | _IOC_WRITE: dir = "rw"; break; | ||
368 | default: dir = "*ERR*"; break; | ||
369 | } | ||
370 | printk("%s ioctl '%c', dir=%s, #%d (0x%08x)", | ||
371 | type, _IOC_TYPE(cmd), dir, _IOC_NR(cmd), cmd); | ||
372 | } | ||
373 | EXPORT_SYMBOL(v4l_printk_ioctl); | ||
374 | |||
375 | /* | ||
376 | * sysfs stuff | ||
377 | */ | ||
378 | |||
379 | static ssize_t show_index(struct device *cd, | ||
380 | struct device_attribute *attr, char *buf) | ||
381 | { | ||
382 | struct video_device *vfd = container_of(cd, struct video_device, | ||
383 | class_dev); | ||
384 | return sprintf(buf, "%i\n", vfd->index); | ||
385 | } | ||
386 | |||
387 | static ssize_t show_name(struct device *cd, | ||
388 | struct device_attribute *attr, char *buf) | ||
389 | { | ||
390 | struct video_device *vfd = container_of(cd, struct video_device, | ||
391 | class_dev); | ||
392 | return sprintf(buf, "%.*s\n", (int)sizeof(vfd->name), vfd->name); | ||
393 | } | ||
394 | |||
395 | static struct device_attribute video_device_attrs[] = { | ||
396 | __ATTR(name, S_IRUGO, show_name, NULL), | ||
397 | __ATTR(index, S_IRUGO, show_index, NULL), | ||
398 | __ATTR_NULL | ||
399 | }; | ||
400 | |||
401 | struct video_device *video_device_alloc(void) | ||
402 | { | ||
403 | struct video_device *vfd; | ||
404 | |||
405 | vfd = kzalloc(sizeof(*vfd),GFP_KERNEL); | ||
406 | return vfd; | ||
407 | } | ||
408 | EXPORT_SYMBOL(video_device_alloc); | ||
409 | |||
410 | void video_device_release(struct video_device *vfd) | ||
411 | { | ||
412 | kfree(vfd); | ||
413 | } | ||
414 | EXPORT_SYMBOL(video_device_release); | ||
415 | |||
416 | static void video_release(struct device *cd) | ||
417 | { | ||
418 | struct video_device *vfd = container_of(cd, struct video_device, | ||
419 | class_dev); | ||
420 | |||
421 | #if 1 | ||
422 | /* needed until all drivers are fixed */ | ||
423 | if (!vfd->release) | ||
424 | return; | ||
425 | #endif | ||
426 | vfd->release(vfd); | ||
427 | } | ||
428 | |||
429 | static struct class video_class = { | ||
430 | .name = VIDEO_NAME, | ||
431 | .dev_attrs = video_device_attrs, | ||
432 | .dev_release = video_release, | ||
433 | }; | ||
434 | |||
435 | /* | ||
436 | * Active devices | ||
437 | */ | ||
438 | |||
439 | static struct video_device *video_device[VIDEO_NUM_DEVICES]; | ||
440 | static DEFINE_MUTEX(videodev_lock); | ||
441 | |||
442 | struct video_device* video_devdata(struct file *file) | ||
443 | { | ||
444 | return video_device[iminor(file->f_path.dentry->d_inode)]; | ||
445 | } | ||
446 | EXPORT_SYMBOL(video_devdata); | ||
447 | |||
448 | /* | ||
449 | * Open a video device - FIXME: Obsoleted | ||
450 | */ | ||
451 | static int video_open(struct inode *inode, struct file *file) | ||
452 | { | ||
453 | unsigned int minor = iminor(inode); | ||
454 | int err = 0; | ||
455 | struct video_device *vfl; | ||
456 | const struct file_operations *old_fops; | ||
457 | |||
458 | if(minor>=VIDEO_NUM_DEVICES) | ||
459 | return -ENODEV; | ||
460 | lock_kernel(); | ||
461 | mutex_lock(&videodev_lock); | ||
462 | vfl=video_device[minor]; | ||
463 | if(vfl==NULL) { | ||
464 | mutex_unlock(&videodev_lock); | ||
465 | request_module("char-major-%d-%d", VIDEO_MAJOR, minor); | ||
466 | mutex_lock(&videodev_lock); | ||
467 | vfl=video_device[minor]; | ||
468 | if (vfl==NULL) { | ||
469 | mutex_unlock(&videodev_lock); | ||
470 | unlock_kernel(); | ||
471 | return -ENODEV; | ||
472 | } | ||
473 | } | ||
474 | old_fops = file->f_op; | ||
475 | file->f_op = fops_get(vfl->fops); | ||
476 | if(file->f_op->open) | ||
477 | err = file->f_op->open(inode,file); | ||
478 | if (err) { | ||
479 | fops_put(file->f_op); | ||
480 | file->f_op = fops_get(old_fops); | ||
481 | } | ||
482 | fops_put(old_fops); | ||
483 | mutex_unlock(&videodev_lock); | ||
484 | unlock_kernel(); | ||
485 | return err; | ||
486 | } | ||
487 | |||
488 | /* | ||
489 | * helper function -- handles userspace copying for ioctl arguments | ||
490 | */ | ||
491 | |||
492 | #ifdef __OLD_VIDIOC_ | ||
493 | static unsigned int | ||
494 | video_fix_command(unsigned int cmd) | ||
495 | { | ||
496 | switch (cmd) { | ||
497 | case VIDIOC_OVERLAY_OLD: | ||
498 | cmd = VIDIOC_OVERLAY; | ||
499 | break; | ||
500 | case VIDIOC_S_PARM_OLD: | ||
501 | cmd = VIDIOC_S_PARM; | ||
502 | break; | ||
503 | case VIDIOC_S_CTRL_OLD: | ||
504 | cmd = VIDIOC_S_CTRL; | ||
505 | break; | ||
506 | case VIDIOC_G_AUDIO_OLD: | ||
507 | cmd = VIDIOC_G_AUDIO; | ||
508 | break; | ||
509 | case VIDIOC_G_AUDOUT_OLD: | ||
510 | cmd = VIDIOC_G_AUDOUT; | ||
511 | break; | ||
512 | case VIDIOC_CROPCAP_OLD: | ||
513 | cmd = VIDIOC_CROPCAP; | ||
514 | break; | ||
515 | } | ||
516 | return cmd; | ||
517 | } | ||
518 | #endif | ||
519 | |||
520 | /* | ||
521 | * Obsolete usercopy function - Should be removed soon | ||
522 | */ | ||
523 | int | ||
524 | video_usercopy(struct inode *inode, struct file *file, | ||
525 | unsigned int cmd, unsigned long arg, | ||
526 | int (*func)(struct inode *inode, struct file *file, | ||
527 | unsigned int cmd, void *arg)) | ||
528 | { | ||
529 | char sbuf[128]; | ||
530 | void *mbuf = NULL; | ||
531 | void *parg = NULL; | ||
532 | int err = -EINVAL; | ||
533 | int is_ext_ctrl; | ||
534 | size_t ctrls_size = 0; | ||
535 | void __user *user_ptr = NULL; | ||
536 | |||
537 | #ifdef __OLD_VIDIOC_ | ||
538 | cmd = video_fix_command(cmd); | ||
539 | #endif | ||
540 | is_ext_ctrl = (cmd == VIDIOC_S_EXT_CTRLS || cmd == VIDIOC_G_EXT_CTRLS || | ||
541 | cmd == VIDIOC_TRY_EXT_CTRLS); | ||
542 | |||
543 | /* Copy arguments into temp kernel buffer */ | ||
544 | switch (_IOC_DIR(cmd)) { | ||
545 | case _IOC_NONE: | ||
546 | parg = NULL; | ||
547 | break; | ||
548 | case _IOC_READ: | ||
549 | case _IOC_WRITE: | ||
550 | case (_IOC_WRITE | _IOC_READ): | ||
551 | if (_IOC_SIZE(cmd) <= sizeof(sbuf)) { | ||
552 | parg = sbuf; | ||
553 | } else { | ||
554 | /* too big to allocate from stack */ | ||
555 | mbuf = kmalloc(_IOC_SIZE(cmd),GFP_KERNEL); | ||
556 | if (NULL == mbuf) | ||
557 | return -ENOMEM; | ||
558 | parg = mbuf; | ||
559 | } | ||
560 | |||
561 | err = -EFAULT; | ||
562 | if (_IOC_DIR(cmd) & _IOC_WRITE) | ||
563 | if (copy_from_user(parg, (void __user *)arg, _IOC_SIZE(cmd))) | ||
564 | goto out; | ||
565 | break; | ||
566 | } | ||
567 | if (is_ext_ctrl) { | ||
568 | struct v4l2_ext_controls *p = parg; | ||
569 | |||
570 | /* In case of an error, tell the caller that it wasn't | ||
571 | a specific control that caused it. */ | ||
572 | p->error_idx = p->count; | ||
573 | user_ptr = (void __user *)p->controls; | ||
574 | if (p->count) { | ||
575 | ctrls_size = sizeof(struct v4l2_ext_control) * p->count; | ||
576 | /* Note: v4l2_ext_controls fits in sbuf[] so mbuf is still NULL. */ | ||
577 | mbuf = kmalloc(ctrls_size, GFP_KERNEL); | ||
578 | err = -ENOMEM; | ||
579 | if (NULL == mbuf) | ||
580 | goto out_ext_ctrl; | ||
581 | err = -EFAULT; | ||
582 | if (copy_from_user(mbuf, user_ptr, ctrls_size)) | ||
583 | goto out_ext_ctrl; | ||
584 | p->controls = mbuf; | ||
585 | } | ||
586 | } | ||
587 | |||
588 | /* call driver */ | ||
589 | err = func(inode, file, cmd, parg); | ||
590 | if (err == -ENOIOCTLCMD) | ||
591 | err = -EINVAL; | ||
592 | if (is_ext_ctrl) { | ||
593 | struct v4l2_ext_controls *p = parg; | ||
594 | |||
595 | p->controls = (void *)user_ptr; | ||
596 | if (p->count && err == 0 && copy_to_user(user_ptr, mbuf, ctrls_size)) | ||
597 | err = -EFAULT; | ||
598 | goto out_ext_ctrl; | ||
599 | } | ||
600 | if (err < 0) | ||
601 | goto out; | ||
602 | |||
603 | out_ext_ctrl: | ||
604 | /* Copy results into user buffer */ | ||
605 | switch (_IOC_DIR(cmd)) | ||
606 | { | ||
607 | case _IOC_READ: | ||
608 | case (_IOC_WRITE | _IOC_READ): | ||
609 | if (copy_to_user((void __user *)arg, parg, _IOC_SIZE(cmd))) | ||
610 | err = -EFAULT; | ||
611 | break; | ||
612 | } | ||
613 | |||
614 | out: | ||
615 | kfree(mbuf); | ||
616 | return err; | ||
617 | } | ||
618 | EXPORT_SYMBOL(video_usercopy); | ||
619 | |||
620 | /* | ||
621 | * open/release helper functions -- handle exclusive opens | ||
622 | * Should be removed soon | ||
623 | */ | ||
624 | int video_exclusive_open(struct inode *inode, struct file *file) | ||
625 | { | ||
626 | struct video_device *vfl = video_devdata(file); | ||
627 | int retval = 0; | ||
628 | |||
629 | mutex_lock(&vfl->lock); | ||
630 | if (vfl->users) { | ||
631 | retval = -EBUSY; | ||
632 | } else { | ||
633 | vfl->users++; | ||
634 | } | ||
635 | mutex_unlock(&vfl->lock); | ||
636 | return retval; | ||
637 | } | ||
638 | EXPORT_SYMBOL(video_exclusive_open); | ||
639 | |||
640 | int video_exclusive_release(struct inode *inode, struct file *file) | ||
641 | { | ||
642 | struct video_device *vfl = video_devdata(file); | ||
643 | |||
644 | vfl->users--; | ||
645 | return 0; | ||
646 | } | ||
647 | EXPORT_SYMBOL(video_exclusive_release); | ||
648 | |||
649 | static void dbgbuf(unsigned int cmd, struct video_device *vfd, | ||
650 | struct v4l2_buffer *p) | ||
651 | { | ||
652 | struct v4l2_timecode *tc=&p->timecode; | ||
653 | |||
654 | dbgarg (cmd, "%02ld:%02d:%02d.%08ld index=%d, type=%s, " | ||
655 | "bytesused=%d, flags=0x%08d, " | ||
656 | "field=%0d, sequence=%d, memory=%s, offset/userptr=0x%08lx, length=%d\n", | ||
657 | (p->timestamp.tv_sec/3600), | ||
658 | (int)(p->timestamp.tv_sec/60)%60, | ||
659 | (int)(p->timestamp.tv_sec%60), | ||
660 | p->timestamp.tv_usec, | ||
661 | p->index, | ||
662 | prt_names(p->type, v4l2_type_names), | ||
663 | p->bytesused, p->flags, | ||
664 | p->field, p->sequence, | ||
665 | prt_names(p->memory, v4l2_memory_names), | ||
666 | p->m.userptr, p->length); | ||
667 | dbgarg2("timecode=%02d:%02d:%02d type=%d, " | ||
668 | "flags=0x%08d, frames=%d, userbits=0x%08x\n", | ||
669 | tc->hours,tc->minutes,tc->seconds, | ||
670 | tc->type, tc->flags, tc->frames, *(__u32 *) tc->userbits); | ||
671 | } | ||
672 | |||
673 | static inline void dbgrect(struct video_device *vfd, char *s, | ||
674 | struct v4l2_rect *r) | ||
675 | { | ||
676 | dbgarg2("%sRect start at %dx%d, size=%dx%d\n", s, r->left, r->top, | ||
677 | r->width, r->height); | ||
678 | }; | ||
679 | |||
680 | static inline void v4l_print_pix_fmt (struct video_device *vfd, | ||
681 | struct v4l2_pix_format *fmt) | ||
682 | { | ||
683 | dbgarg2 ("width=%d, height=%d, format=%c%c%c%c, field=%s, " | ||
684 | "bytesperline=%d sizeimage=%d, colorspace=%d\n", | ||
685 | fmt->width,fmt->height, | ||
686 | (fmt->pixelformat & 0xff), | ||
687 | (fmt->pixelformat >> 8) & 0xff, | ||
688 | (fmt->pixelformat >> 16) & 0xff, | ||
689 | (fmt->pixelformat >> 24) & 0xff, | ||
690 | prt_names(fmt->field, v4l2_field_names), | ||
691 | fmt->bytesperline, fmt->sizeimage, fmt->colorspace); | ||
692 | }; | ||
693 | |||
694 | static inline void v4l_print_ext_ctrls(unsigned int cmd, | ||
695 | struct video_device *vfd, struct v4l2_ext_controls *c, int show_vals) | ||
696 | { | ||
697 | __u32 i; | ||
698 | |||
699 | if (!(vfd->debug & V4L2_DEBUG_IOCTL_ARG)) | ||
700 | return; | ||
701 | dbgarg(cmd, ""); | ||
702 | printk(KERN_CONT "class=0x%x", c->ctrl_class); | ||
703 | for (i = 0; i < c->count; i++) { | ||
704 | if (show_vals) | ||
705 | printk(KERN_CONT " id/val=0x%x/0x%x", | ||
706 | c->controls[i].id, c->controls[i].value); | ||
707 | else | ||
708 | printk(KERN_CONT " id=0x%x", c->controls[i].id); | ||
709 | } | ||
710 | printk(KERN_CONT "\n"); | ||
711 | }; | ||
712 | |||
713 | static inline int check_ext_ctrls(struct v4l2_ext_controls *c, int allow_priv) | ||
714 | { | ||
715 | __u32 i; | ||
716 | |||
717 | /* zero the reserved fields */ | ||
718 | c->reserved[0] = c->reserved[1] = 0; | ||
719 | for (i = 0; i < c->count; i++) { | ||
720 | c->controls[i].reserved2[0] = 0; | ||
721 | c->controls[i].reserved2[1] = 0; | ||
722 | } | ||
723 | /* V4L2_CID_PRIVATE_BASE cannot be used as control class | ||
724 | when using extended controls. | ||
725 | Only when passed in through VIDIOC_G_CTRL and VIDIOC_S_CTRL | ||
726 | is it allowed for backwards compatibility. | ||
727 | */ | ||
728 | if (!allow_priv && c->ctrl_class == V4L2_CID_PRIVATE_BASE) | ||
729 | return 0; | ||
730 | /* Check that all controls are from the same control class. */ | ||
731 | for (i = 0; i < c->count; i++) { | ||
732 | if (V4L2_CTRL_ID2CLASS(c->controls[i].id) != c->ctrl_class) { | ||
733 | c->error_idx = i; | ||
734 | return 0; | ||
735 | } | ||
736 | } | ||
737 | return 1; | ||
738 | } | ||
739 | |||
740 | static int check_fmt (struct video_device *vfd, enum v4l2_buf_type type) | ||
741 | { | ||
742 | switch (type) { | ||
743 | case V4L2_BUF_TYPE_VIDEO_CAPTURE: | ||
744 | if (vfd->vidioc_try_fmt_vid_cap) | ||
745 | return (0); | ||
746 | break; | ||
747 | case V4L2_BUF_TYPE_VIDEO_OVERLAY: | ||
748 | if (vfd->vidioc_try_fmt_vid_overlay) | ||
749 | return (0); | ||
750 | break; | ||
751 | case V4L2_BUF_TYPE_VIDEO_OUTPUT: | ||
752 | if (vfd->vidioc_try_fmt_vid_out) | ||
753 | return (0); | ||
754 | break; | ||
755 | case V4L2_BUF_TYPE_VIDEO_OUTPUT_OVERLAY: | ||
756 | if (vfd->vidioc_try_fmt_vid_out_overlay) | ||
757 | return (0); | ||
758 | break; | ||
759 | case V4L2_BUF_TYPE_VBI_CAPTURE: | ||
760 | if (vfd->vidioc_try_fmt_vbi_cap) | ||
761 | return (0); | ||
762 | break; | ||
763 | case V4L2_BUF_TYPE_VBI_OUTPUT: | ||
764 | if (vfd->vidioc_try_fmt_vbi_out) | ||
765 | return (0); | ||
766 | break; | ||
767 | case V4L2_BUF_TYPE_SLICED_VBI_CAPTURE: | ||
768 | if (vfd->vidioc_try_fmt_sliced_vbi_cap) | ||
769 | return (0); | ||
770 | break; | ||
771 | case V4L2_BUF_TYPE_SLICED_VBI_OUTPUT: | ||
772 | if (vfd->vidioc_try_fmt_sliced_vbi_out) | ||
773 | return (0); | ||
774 | break; | ||
775 | case V4L2_BUF_TYPE_PRIVATE: | ||
776 | if (vfd->vidioc_try_fmt_type_private) | ||
777 | return (0); | ||
778 | break; | ||
779 | } | ||
780 | return (-EINVAL); | ||
781 | } | ||
782 | |||
783 | static int __video_do_ioctl(struct inode *inode, struct file *file, | ||
784 | unsigned int cmd, void *arg) | ||
785 | { | ||
786 | struct video_device *vfd = video_devdata(file); | ||
787 | void *fh = file->private_data; | ||
788 | int ret = -EINVAL; | ||
789 | |||
790 | if ( (vfd->debug & V4L2_DEBUG_IOCTL) && | ||
791 | !(vfd->debug & V4L2_DEBUG_IOCTL_ARG)) { | ||
792 | v4l_print_ioctl(vfd->name, cmd); | ||
793 | printk("\n"); | ||
794 | } | ||
795 | |||
796 | #ifdef CONFIG_VIDEO_V4L1_COMPAT | ||
797 | /*********************************************************** | ||
798 | Handles calls to the obsoleted V4L1 API | ||
799 | Due to the nature of VIDIOCGMBUF, each driver that supports | ||
800 | V4L1 should implement its own handler for this ioctl. | ||
801 | ***********************************************************/ | ||
802 | |||
803 | /* --- streaming capture ------------------------------------- */ | ||
804 | if (cmd == VIDIOCGMBUF) { | ||
805 | struct video_mbuf *p=arg; | ||
806 | |||
807 | memset(p, 0, sizeof(*p)); | ||
808 | |||
809 | if (!vfd->vidiocgmbuf) | ||
810 | return ret; | ||
811 | ret=vfd->vidiocgmbuf(file, fh, p); | ||
812 | if (!ret) | ||
813 | dbgarg (cmd, "size=%d, frames=%d, offsets=0x%08lx\n", | ||
814 | p->size, p->frames, | ||
815 | (unsigned long)p->offsets); | ||
816 | return ret; | ||
817 | } | ||
818 | |||
819 | /******************************************************** | ||
820 | All other V4L1 calls are handled by v4l1_compat module. | ||
821 | Those calls will be translated into V4L2 calls, and | ||
822 | __video_do_ioctl will be called again, with one or more | ||
823 | V4L2 ioctls. | ||
824 | ********************************************************/ | ||
825 | if (_IOC_TYPE(cmd)=='v') | ||
826 | return v4l_compat_translate_ioctl(inode,file,cmd,arg, | ||
827 | __video_do_ioctl); | ||
828 | #endif | ||
829 | |||
830 | switch(cmd) { | ||
831 | /* --- capabilities ------------------------------------------ */ | ||
832 | case VIDIOC_QUERYCAP: | ||
833 | { | ||
834 | struct v4l2_capability *cap = (struct v4l2_capability*)arg; | ||
835 | memset(cap, 0, sizeof(*cap)); | ||
836 | |||
837 | if (!vfd->vidioc_querycap) | ||
838 | break; | ||
839 | |||
840 | ret=vfd->vidioc_querycap(file, fh, cap); | ||
841 | if (!ret) | ||
842 | dbgarg (cmd, "driver=%s, card=%s, bus=%s, " | ||
843 | "version=0x%08x, " | ||
844 | "capabilities=0x%08x\n", | ||
845 | cap->driver,cap->card,cap->bus_info, | ||
846 | cap->version, | ||
847 | cap->capabilities); | ||
848 | break; | ||
849 | } | ||
850 | |||
851 | /* --- priority ------------------------------------------ */ | ||
852 | case VIDIOC_G_PRIORITY: | ||
853 | { | ||
854 | enum v4l2_priority *p=arg; | ||
855 | |||
856 | if (!vfd->vidioc_g_priority) | ||
857 | break; | ||
858 | ret=vfd->vidioc_g_priority(file, fh, p); | ||
859 | if (!ret) | ||
860 | dbgarg(cmd, "priority is %d\n", *p); | ||
861 | break; | ||
862 | } | ||
863 | case VIDIOC_S_PRIORITY: | ||
864 | { | ||
865 | enum v4l2_priority *p=arg; | ||
866 | |||
867 | if (!vfd->vidioc_s_priority) | ||
868 | break; | ||
869 | dbgarg(cmd, "setting priority to %d\n", *p); | ||
870 | ret=vfd->vidioc_s_priority(file, fh, *p); | ||
871 | break; | ||
872 | } | ||
873 | |||
874 | /* --- capture ioctls ---------------------------------------- */ | ||
875 | case VIDIOC_ENUM_FMT: | ||
876 | { | ||
877 | struct v4l2_fmtdesc *f = arg; | ||
878 | enum v4l2_buf_type type; | ||
879 | unsigned int index; | ||
880 | |||
881 | index = f->index; | ||
882 | type = f->type; | ||
883 | memset(f,0,sizeof(*f)); | ||
884 | f->index = index; | ||
885 | f->type = type; | ||
886 | |||
887 | switch (type) { | ||
888 | case V4L2_BUF_TYPE_VIDEO_CAPTURE: | ||
889 | if (vfd->vidioc_enum_fmt_vid_cap) | ||
890 | ret = vfd->vidioc_enum_fmt_vid_cap(file, fh, f); | ||
891 | break; | ||
892 | case V4L2_BUF_TYPE_VIDEO_OVERLAY: | ||
893 | if (vfd->vidioc_enum_fmt_vid_overlay) | ||
894 | ret = vfd->vidioc_enum_fmt_vid_overlay(file, | ||
895 | fh, f); | ||
896 | break; | ||
897 | #if 1 | ||
898 | /* V4L2_BUF_TYPE_VBI_CAPTURE should not support VIDIOC_ENUM_FMT | ||
899 | * according to the spec. The bttv and saa7134 drivers support | ||
900 | * it though, so just warn that this is deprecated and will be | ||
901 | * removed in the near future. */ | ||
902 | case V4L2_BUF_TYPE_VBI_CAPTURE: | ||
903 | if (vfd->vidioc_enum_fmt_vbi_cap) { | ||
904 | printk(KERN_WARNING "vidioc_enum_fmt_vbi_cap will be removed in 2.6.28!\n"); | ||
905 | ret = vfd->vidioc_enum_fmt_vbi_cap(file, fh, f); | ||
906 | } | ||
907 | break; | ||
908 | #endif | ||
909 | case V4L2_BUF_TYPE_VIDEO_OUTPUT: | ||
910 | if (vfd->vidioc_enum_fmt_vid_out) | ||
911 | ret = vfd->vidioc_enum_fmt_vid_out(file, fh, f); | ||
912 | break; | ||
913 | case V4L2_BUF_TYPE_PRIVATE: | ||
914 | if (vfd->vidioc_enum_fmt_type_private) | ||
915 | ret = vfd->vidioc_enum_fmt_type_private(file, | ||
916 | fh, f); | ||
917 | break; | ||
918 | default: | ||
919 | break; | ||
920 | } | ||
921 | if (!ret) | ||
922 | dbgarg (cmd, "index=%d, type=%d, flags=%d, " | ||
923 | "pixelformat=%c%c%c%c, description='%s'\n", | ||
924 | f->index, f->type, f->flags, | ||
925 | (f->pixelformat & 0xff), | ||
926 | (f->pixelformat >> 8) & 0xff, | ||
927 | (f->pixelformat >> 16) & 0xff, | ||
928 | (f->pixelformat >> 24) & 0xff, | ||
929 | f->description); | ||
930 | break; | ||
931 | } | ||
932 | case VIDIOC_G_FMT: | ||
933 | { | ||
934 | struct v4l2_format *f = (struct v4l2_format *)arg; | ||
935 | |||
936 | memset(f->fmt.raw_data, 0, sizeof(f->fmt.raw_data)); | ||
937 | |||
938 | /* FIXME: Should be one dump per type */ | ||
939 | dbgarg(cmd, "type=%s\n", prt_names(f->type, v4l2_type_names)); | ||
940 | |||
941 | switch (f->type) { | ||
942 | case V4L2_BUF_TYPE_VIDEO_CAPTURE: | ||
943 | if (vfd->vidioc_g_fmt_vid_cap) | ||
944 | ret = vfd->vidioc_g_fmt_vid_cap(file, fh, f); | ||
945 | if (!ret) | ||
946 | v4l_print_pix_fmt(vfd, &f->fmt.pix); | ||
947 | break; | ||
948 | case V4L2_BUF_TYPE_VIDEO_OVERLAY: | ||
949 | if (vfd->vidioc_g_fmt_vid_overlay) | ||
950 | ret = vfd->vidioc_g_fmt_vid_overlay(file, | ||
951 | fh, f); | ||
952 | break; | ||
953 | case V4L2_BUF_TYPE_VIDEO_OUTPUT: | ||
954 | if (vfd->vidioc_g_fmt_vid_out) | ||
955 | ret = vfd->vidioc_g_fmt_vid_out(file, fh, f); | ||
956 | if (!ret) | ||
957 | v4l_print_pix_fmt(vfd, &f->fmt.pix); | ||
958 | break; | ||
959 | case V4L2_BUF_TYPE_VIDEO_OUTPUT_OVERLAY: | ||
960 | if (vfd->vidioc_g_fmt_vid_out_overlay) | ||
961 | ret = vfd->vidioc_g_fmt_vid_out_overlay(file, | ||
962 | fh, f); | ||
963 | break; | ||
964 | case V4L2_BUF_TYPE_VBI_CAPTURE: | ||
965 | if (vfd->vidioc_g_fmt_vbi_cap) | ||
966 | ret = vfd->vidioc_g_fmt_vbi_cap(file, fh, f); | ||
967 | break; | ||
968 | case V4L2_BUF_TYPE_VBI_OUTPUT: | ||
969 | if (vfd->vidioc_g_fmt_vbi_out) | ||
970 | ret = vfd->vidioc_g_fmt_vbi_out(file, fh, f); | ||
971 | break; | ||
972 | case V4L2_BUF_TYPE_SLICED_VBI_CAPTURE: | ||
973 | if (vfd->vidioc_g_fmt_sliced_vbi_cap) | ||
974 | ret = vfd->vidioc_g_fmt_sliced_vbi_cap(file, | ||
975 | fh, f); | ||
976 | break; | ||
977 | case V4L2_BUF_TYPE_SLICED_VBI_OUTPUT: | ||
978 | if (vfd->vidioc_g_fmt_sliced_vbi_out) | ||
979 | ret = vfd->vidioc_g_fmt_sliced_vbi_out(file, | ||
980 | fh, f); | ||
981 | break; | ||
982 | case V4L2_BUF_TYPE_PRIVATE: | ||
983 | if (vfd->vidioc_g_fmt_type_private) | ||
984 | ret = vfd->vidioc_g_fmt_type_private(file, | ||
985 | fh, f); | ||
986 | break; | ||
987 | } | ||
988 | |||
989 | break; | ||
990 | } | ||
991 | case VIDIOC_S_FMT: | ||
992 | { | ||
993 | struct v4l2_format *f = (struct v4l2_format *)arg; | ||
994 | |||
995 | /* FIXME: Should be one dump per type */ | ||
996 | dbgarg(cmd, "type=%s\n", prt_names(f->type, v4l2_type_names)); | ||
997 | |||
998 | switch (f->type) { | ||
999 | case V4L2_BUF_TYPE_VIDEO_CAPTURE: | ||
1000 | v4l_print_pix_fmt(vfd, &f->fmt.pix); | ||
1001 | if (vfd->vidioc_s_fmt_vid_cap) | ||
1002 | ret = vfd->vidioc_s_fmt_vid_cap(file, fh, f); | ||
1003 | break; | ||
1004 | case V4L2_BUF_TYPE_VIDEO_OVERLAY: | ||
1005 | if (vfd->vidioc_s_fmt_vid_overlay) | ||
1006 | ret = vfd->vidioc_s_fmt_vid_overlay(file, | ||
1007 | fh, f); | ||
1008 | break; | ||
1009 | case V4L2_BUF_TYPE_VIDEO_OUTPUT: | ||
1010 | v4l_print_pix_fmt(vfd, &f->fmt.pix); | ||
1011 | if (vfd->vidioc_s_fmt_vid_out) | ||
1012 | ret = vfd->vidioc_s_fmt_vid_out(file, fh, f); | ||
1013 | break; | ||
1014 | case V4L2_BUF_TYPE_VIDEO_OUTPUT_OVERLAY: | ||
1015 | if (vfd->vidioc_s_fmt_vid_out_overlay) | ||
1016 | ret = vfd->vidioc_s_fmt_vid_out_overlay(file, | ||
1017 | fh, f); | ||
1018 | break; | ||
1019 | case V4L2_BUF_TYPE_VBI_CAPTURE: | ||
1020 | if (vfd->vidioc_s_fmt_vbi_cap) | ||
1021 | ret = vfd->vidioc_s_fmt_vbi_cap(file, fh, f); | ||
1022 | break; | ||
1023 | case V4L2_BUF_TYPE_VBI_OUTPUT: | ||
1024 | if (vfd->vidioc_s_fmt_vbi_out) | ||
1025 | ret = vfd->vidioc_s_fmt_vbi_out(file, fh, f); | ||
1026 | break; | ||
1027 | case V4L2_BUF_TYPE_SLICED_VBI_CAPTURE: | ||
1028 | if (vfd->vidioc_s_fmt_sliced_vbi_cap) | ||
1029 | ret = vfd->vidioc_s_fmt_sliced_vbi_cap(file, | ||
1030 | fh, f); | ||
1031 | break; | ||
1032 | case V4L2_BUF_TYPE_SLICED_VBI_OUTPUT: | ||
1033 | if (vfd->vidioc_s_fmt_sliced_vbi_out) | ||
1034 | ret = vfd->vidioc_s_fmt_sliced_vbi_out(file, | ||
1035 | fh, f); | ||
1036 | break; | ||
1037 | case V4L2_BUF_TYPE_PRIVATE: | ||
1038 | if (vfd->vidioc_s_fmt_type_private) | ||
1039 | ret = vfd->vidioc_s_fmt_type_private(file, | ||
1040 | fh, f); | ||
1041 | break; | ||
1042 | } | ||
1043 | break; | ||
1044 | } | ||
1045 | case VIDIOC_TRY_FMT: | ||
1046 | { | ||
1047 | struct v4l2_format *f = (struct v4l2_format *)arg; | ||
1048 | |||
1049 | /* FIXME: Should be one dump per type */ | ||
1050 | dbgarg (cmd, "type=%s\n", prt_names(f->type, | ||
1051 | v4l2_type_names)); | ||
1052 | switch (f->type) { | ||
1053 | case V4L2_BUF_TYPE_VIDEO_CAPTURE: | ||
1054 | if (vfd->vidioc_try_fmt_vid_cap) | ||
1055 | ret = vfd->vidioc_try_fmt_vid_cap(file, fh, f); | ||
1056 | if (!ret) | ||
1057 | v4l_print_pix_fmt(vfd, &f->fmt.pix); | ||
1058 | break; | ||
1059 | case V4L2_BUF_TYPE_VIDEO_OVERLAY: | ||
1060 | if (vfd->vidioc_try_fmt_vid_overlay) | ||
1061 | ret = vfd->vidioc_try_fmt_vid_overlay(file, | ||
1062 | fh, f); | ||
1063 | break; | ||
1064 | case V4L2_BUF_TYPE_VIDEO_OUTPUT: | ||
1065 | if (vfd->vidioc_try_fmt_vid_out) | ||
1066 | ret = vfd->vidioc_try_fmt_vid_out(file, fh, f); | ||
1067 | if (!ret) | ||
1068 | v4l_print_pix_fmt(vfd, &f->fmt.pix); | ||
1069 | break; | ||
1070 | case V4L2_BUF_TYPE_VIDEO_OUTPUT_OVERLAY: | ||
1071 | if (vfd->vidioc_try_fmt_vid_out_overlay) | ||
1072 | ret = vfd->vidioc_try_fmt_vid_out_overlay(file, | ||
1073 | fh, f); | ||
1074 | break; | ||
1075 | case V4L2_BUF_TYPE_VBI_CAPTURE: | ||
1076 | if (vfd->vidioc_try_fmt_vbi_cap) | ||
1077 | ret = vfd->vidioc_try_fmt_vbi_cap(file, fh, f); | ||
1078 | break; | ||
1079 | case V4L2_BUF_TYPE_VBI_OUTPUT: | ||
1080 | if (vfd->vidioc_try_fmt_vbi_out) | ||
1081 | ret = vfd->vidioc_try_fmt_vbi_out(file, fh, f); | ||
1082 | break; | ||
1083 | case V4L2_BUF_TYPE_SLICED_VBI_CAPTURE: | ||
1084 | if (vfd->vidioc_try_fmt_sliced_vbi_cap) | ||
1085 | ret = vfd->vidioc_try_fmt_sliced_vbi_cap(file, | ||
1086 | fh, f); | ||
1087 | break; | ||
1088 | case V4L2_BUF_TYPE_SLICED_VBI_OUTPUT: | ||
1089 | if (vfd->vidioc_try_fmt_sliced_vbi_out) | ||
1090 | ret = vfd->vidioc_try_fmt_sliced_vbi_out(file, | ||
1091 | fh, f); | ||
1092 | break; | ||
1093 | case V4L2_BUF_TYPE_PRIVATE: | ||
1094 | if (vfd->vidioc_try_fmt_type_private) | ||
1095 | ret = vfd->vidioc_try_fmt_type_private(file, | ||
1096 | fh, f); | ||
1097 | break; | ||
1098 | } | ||
1099 | |||
1100 | break; | ||
1101 | } | ||
1102 | /* FIXME: Those buf reqs could be handled here, | ||
1103 | with some changes on videobuf to allow its header to be included at | ||
1104 | videodev2.h or being merged at videodev2. | ||
1105 | */ | ||
1106 | case VIDIOC_REQBUFS: | ||
1107 | { | ||
1108 | struct v4l2_requestbuffers *p=arg; | ||
1109 | |||
1110 | if (!vfd->vidioc_reqbufs) | ||
1111 | break; | ||
1112 | ret = check_fmt (vfd, p->type); | ||
1113 | if (ret) | ||
1114 | break; | ||
1115 | |||
1116 | ret=vfd->vidioc_reqbufs(file, fh, p); | ||
1117 | dbgarg (cmd, "count=%d, type=%s, memory=%s\n", | ||
1118 | p->count, | ||
1119 | prt_names(p->type, v4l2_type_names), | ||
1120 | prt_names(p->memory, v4l2_memory_names)); | ||
1121 | break; | ||
1122 | } | ||
1123 | case VIDIOC_QUERYBUF: | ||
1124 | { | ||
1125 | struct v4l2_buffer *p=arg; | ||
1126 | |||
1127 | if (!vfd->vidioc_querybuf) | ||
1128 | break; | ||
1129 | ret = check_fmt (vfd, p->type); | ||
1130 | if (ret) | ||
1131 | break; | ||
1132 | |||
1133 | ret=vfd->vidioc_querybuf(file, fh, p); | ||
1134 | if (!ret) | ||
1135 | dbgbuf(cmd,vfd,p); | ||
1136 | break; | ||
1137 | } | ||
1138 | case VIDIOC_QBUF: | ||
1139 | { | ||
1140 | struct v4l2_buffer *p=arg; | ||
1141 | |||
1142 | if (!vfd->vidioc_qbuf) | ||
1143 | break; | ||
1144 | ret = check_fmt (vfd, p->type); | ||
1145 | if (ret) | ||
1146 | break; | ||
1147 | |||
1148 | ret=vfd->vidioc_qbuf(file, fh, p); | ||
1149 | if (!ret) | ||
1150 | dbgbuf(cmd,vfd,p); | ||
1151 | break; | ||
1152 | } | ||
1153 | case VIDIOC_DQBUF: | ||
1154 | { | ||
1155 | struct v4l2_buffer *p=arg; | ||
1156 | if (!vfd->vidioc_dqbuf) | ||
1157 | break; | ||
1158 | ret = check_fmt (vfd, p->type); | ||
1159 | if (ret) | ||
1160 | break; | ||
1161 | |||
1162 | ret=vfd->vidioc_dqbuf(file, fh, p); | ||
1163 | if (!ret) | ||
1164 | dbgbuf(cmd,vfd,p); | ||
1165 | break; | ||
1166 | } | ||
1167 | case VIDIOC_OVERLAY: | ||
1168 | { | ||
1169 | int *i = arg; | ||
1170 | |||
1171 | if (!vfd->vidioc_overlay) | ||
1172 | break; | ||
1173 | dbgarg (cmd, "value=%d\n",*i); | ||
1174 | ret=vfd->vidioc_overlay(file, fh, *i); | ||
1175 | break; | ||
1176 | } | ||
1177 | case VIDIOC_G_FBUF: | ||
1178 | { | ||
1179 | struct v4l2_framebuffer *p = arg; | ||
1180 | |||
1181 | if (!vfd->vidioc_g_fbuf) | ||
1182 | break; | ||
1183 | ret = vfd->vidioc_g_fbuf(file, fh, arg); | ||
1184 | if (!ret) { | ||
1185 | dbgarg(cmd, "capability=0x%x, flags=%d, base=0x%08lx\n", | ||
1186 | p->capability, p->flags, | ||
1187 | (unsigned long)p->base); | ||
1188 | v4l_print_pix_fmt(vfd, &p->fmt); | ||
1189 | } | ||
1190 | break; | ||
1191 | } | ||
1192 | case VIDIOC_S_FBUF: | ||
1193 | { | ||
1194 | struct v4l2_framebuffer *p = arg; | ||
1195 | |||
1196 | if (!vfd->vidioc_s_fbuf) | ||
1197 | break; | ||
1198 | dbgarg(cmd, "capability=0x%x, flags=%d, base=0x%08lx\n", | ||
1199 | p->capability, p->flags, (unsigned long)p->base); | ||
1200 | v4l_print_pix_fmt(vfd, &p->fmt); | ||
1201 | ret = vfd->vidioc_s_fbuf(file, fh, arg); | ||
1202 | break; | ||
1203 | } | ||
1204 | case VIDIOC_STREAMON: | ||
1205 | { | ||
1206 | enum v4l2_buf_type i = *(int *)arg; | ||
1207 | if (!vfd->vidioc_streamon) | ||
1208 | break; | ||
1209 | dbgarg(cmd, "type=%s\n", prt_names(i, v4l2_type_names)); | ||
1210 | ret=vfd->vidioc_streamon(file, fh,i); | ||
1211 | break; | ||
1212 | } | ||
1213 | case VIDIOC_STREAMOFF: | ||
1214 | { | ||
1215 | enum v4l2_buf_type i = *(int *)arg; | ||
1216 | |||
1217 | if (!vfd->vidioc_streamoff) | ||
1218 | break; | ||
1219 | dbgarg(cmd, "type=%s\n", prt_names(i, v4l2_type_names)); | ||
1220 | ret=vfd->vidioc_streamoff(file, fh, i); | ||
1221 | break; | ||
1222 | } | ||
1223 | /* ---------- tv norms ---------- */ | ||
1224 | case VIDIOC_ENUMSTD: | ||
1225 | { | ||
1226 | struct v4l2_standard *p = arg; | ||
1227 | v4l2_std_id id = vfd->tvnorms, curr_id = 0; | ||
1228 | unsigned int index = p->index, i, j = 0; | ||
1229 | const char *descr = ""; | ||
1230 | |||
1231 | /* Return norm array in a canonical way */ | ||
1232 | for (i = 0; i <= index && id; i++) { | ||
1233 | /* last std value in the standards array is 0, so this | ||
1234 | while always ends there since (id & 0) == 0. */ | ||
1235 | while ((id & standards[j].std) != standards[j].std) | ||
1236 | j++; | ||
1237 | curr_id = standards[j].std; | ||
1238 | descr = standards[j].descr; | ||
1239 | j++; | ||
1240 | if (curr_id == 0) | ||
1241 | break; | ||
1242 | if (curr_id != V4L2_STD_PAL && | ||
1243 | curr_id != V4L2_STD_SECAM && | ||
1244 | curr_id != V4L2_STD_NTSC) | ||
1245 | id &= ~curr_id; | ||
1246 | } | ||
1247 | if (i <= index) | ||
1248 | return -EINVAL; | ||
1249 | |||
1250 | v4l2_video_std_construct(p, curr_id, descr); | ||
1251 | p->index = index; | ||
1252 | |||
1253 | dbgarg(cmd, "index=%d, id=0x%Lx, name=%s, fps=%d/%d, " | ||
1254 | "framelines=%d\n", p->index, | ||
1255 | (unsigned long long)p->id, p->name, | ||
1256 | p->frameperiod.numerator, | ||
1257 | p->frameperiod.denominator, | ||
1258 | p->framelines); | ||
1259 | |||
1260 | ret = 0; | ||
1261 | break; | ||
1262 | } | ||
1263 | case VIDIOC_G_STD: | ||
1264 | { | ||
1265 | v4l2_std_id *id = arg; | ||
1266 | |||
1267 | ret = 0; | ||
1268 | /* Calls the specific handler */ | ||
1269 | if (vfd->vidioc_g_std) | ||
1270 | ret = vfd->vidioc_g_std(file, fh, id); | ||
1271 | else | ||
1272 | *id = vfd->current_norm; | ||
1273 | |||
1274 | if (!ret) | ||
1275 | dbgarg(cmd, "std=0x%08Lx\n", (long long unsigned)*id); | ||
1276 | break; | ||
1277 | } | ||
1278 | case VIDIOC_S_STD: | ||
1279 | { | ||
1280 | v4l2_std_id *id = arg,norm; | ||
1281 | |||
1282 | dbgarg(cmd, "std=%08Lx\n", (long long unsigned)*id); | ||
1283 | |||
1284 | norm = (*id) & vfd->tvnorms; | ||
1285 | if ( vfd->tvnorms && !norm) /* Check if std is supported */ | ||
1286 | break; | ||
1287 | |||
1288 | /* Calls the specific handler */ | ||
1289 | if (vfd->vidioc_s_std) | ||
1290 | ret=vfd->vidioc_s_std(file, fh, &norm); | ||
1291 | else | ||
1292 | ret=-EINVAL; | ||
1293 | |||
1294 | /* Updates standard information */ | ||
1295 | if (ret>=0) | ||
1296 | vfd->current_norm=norm; | ||
1297 | |||
1298 | break; | ||
1299 | } | ||
1300 | case VIDIOC_QUERYSTD: | ||
1301 | { | ||
1302 | v4l2_std_id *p=arg; | ||
1303 | |||
1304 | if (!vfd->vidioc_querystd) | ||
1305 | break; | ||
1306 | ret=vfd->vidioc_querystd(file, fh, arg); | ||
1307 | if (!ret) | ||
1308 | dbgarg (cmd, "detected std=%08Lx\n", | ||
1309 | (unsigned long long)*p); | ||
1310 | break; | ||
1311 | } | ||
1312 | /* ------ input switching ---------- */ | ||
1313 | /* FIXME: Inputs can be handled inside videodev2 */ | ||
1314 | case VIDIOC_ENUMINPUT: | ||
1315 | { | ||
1316 | struct v4l2_input *p=arg; | ||
1317 | int i=p->index; | ||
1318 | |||
1319 | if (!vfd->vidioc_enum_input) | ||
1320 | break; | ||
1321 | memset(p, 0, sizeof(*p)); | ||
1322 | p->index=i; | ||
1323 | |||
1324 | ret=vfd->vidioc_enum_input(file, fh, p); | ||
1325 | if (!ret) | ||
1326 | dbgarg (cmd, "index=%d, name=%s, type=%d, " | ||
1327 | "audioset=%d, " | ||
1328 | "tuner=%d, std=%08Lx, status=%d\n", | ||
1329 | p->index,p->name,p->type,p->audioset, | ||
1330 | p->tuner, | ||
1331 | (unsigned long long)p->std, | ||
1332 | p->status); | ||
1333 | break; | ||
1334 | } | ||
1335 | case VIDIOC_G_INPUT: | ||
1336 | { | ||
1337 | unsigned int *i = arg; | ||
1338 | |||
1339 | if (!vfd->vidioc_g_input) | ||
1340 | break; | ||
1341 | ret=vfd->vidioc_g_input(file, fh, i); | ||
1342 | if (!ret) | ||
1343 | dbgarg (cmd, "value=%d\n",*i); | ||
1344 | break; | ||
1345 | } | ||
1346 | case VIDIOC_S_INPUT: | ||
1347 | { | ||
1348 | unsigned int *i = arg; | ||
1349 | |||
1350 | if (!vfd->vidioc_s_input) | ||
1351 | break; | ||
1352 | dbgarg (cmd, "value=%d\n",*i); | ||
1353 | ret=vfd->vidioc_s_input(file, fh, *i); | ||
1354 | break; | ||
1355 | } | ||
1356 | |||
1357 | /* ------ output switching ---------- */ | ||
1358 | case VIDIOC_ENUMOUTPUT: | ||
1359 | { | ||
1360 | struct v4l2_output *p = arg; | ||
1361 | int i = p->index; | ||
1362 | |||
1363 | if (!vfd->vidioc_enum_output) | ||
1364 | break; | ||
1365 | memset(p, 0, sizeof(*p)); | ||
1366 | p->index = i; | ||
1367 | |||
1368 | ret = vfd->vidioc_enum_output(file, fh, p); | ||
1369 | if (!ret) | ||
1370 | dbgarg(cmd, "index=%d, name=%s, type=%d, " | ||
1371 | "audioset=0x%x, " | ||
1372 | "modulator=%d, std=0x%08Lx\n", | ||
1373 | p->index, p->name, p->type, p->audioset, | ||
1374 | p->modulator, (unsigned long long)p->std); | ||
1375 | break; | ||
1376 | } | ||
1377 | case VIDIOC_G_OUTPUT: | ||
1378 | { | ||
1379 | unsigned int *i = arg; | ||
1380 | |||
1381 | if (!vfd->vidioc_g_output) | ||
1382 | break; | ||
1383 | ret=vfd->vidioc_g_output(file, fh, i); | ||
1384 | if (!ret) | ||
1385 | dbgarg (cmd, "value=%d\n",*i); | ||
1386 | break; | ||
1387 | } | ||
1388 | case VIDIOC_S_OUTPUT: | ||
1389 | { | ||
1390 | unsigned int *i = arg; | ||
1391 | |||
1392 | if (!vfd->vidioc_s_output) | ||
1393 | break; | ||
1394 | dbgarg (cmd, "value=%d\n",*i); | ||
1395 | ret=vfd->vidioc_s_output(file, fh, *i); | ||
1396 | break; | ||
1397 | } | ||
1398 | |||
1399 | /* --- controls ---------------------------------------------- */ | ||
1400 | case VIDIOC_QUERYCTRL: | ||
1401 | { | ||
1402 | struct v4l2_queryctrl *p = arg; | ||
1403 | |||
1404 | if (!vfd->vidioc_queryctrl) | ||
1405 | break; | ||
1406 | ret = vfd->vidioc_queryctrl(file, fh, p); | ||
1407 | if (!ret) | ||
1408 | dbgarg(cmd, "id=0x%x, type=%d, name=%s, min/max=%d/%d, " | ||
1409 | "step=%d, default=%d, flags=0x%08x\n", | ||
1410 | p->id, p->type, p->name, | ||
1411 | p->minimum, p->maximum, | ||
1412 | p->step, p->default_value, p->flags); | ||
1413 | else | ||
1414 | dbgarg(cmd, "id=0x%x\n", p->id); | ||
1415 | break; | ||
1416 | } | ||
1417 | case VIDIOC_G_CTRL: | ||
1418 | { | ||
1419 | struct v4l2_control *p = arg; | ||
1420 | |||
1421 | if (vfd->vidioc_g_ctrl) | ||
1422 | ret = vfd->vidioc_g_ctrl(file, fh, p); | ||
1423 | else if (vfd->vidioc_g_ext_ctrls) { | ||
1424 | struct v4l2_ext_controls ctrls; | ||
1425 | struct v4l2_ext_control ctrl; | ||
1426 | |||
1427 | ctrls.ctrl_class = V4L2_CTRL_ID2CLASS(p->id); | ||
1428 | ctrls.count = 1; | ||
1429 | ctrls.controls = &ctrl; | ||
1430 | ctrl.id = p->id; | ||
1431 | ctrl.value = p->value; | ||
1432 | if (check_ext_ctrls(&ctrls, 1)) { | ||
1433 | ret = vfd->vidioc_g_ext_ctrls(file, fh, &ctrls); | ||
1434 | if (ret == 0) | ||
1435 | p->value = ctrl.value; | ||
1436 | } | ||
1437 | } else | ||
1438 | break; | ||
1439 | if (!ret) | ||
1440 | dbgarg(cmd, "id=0x%x, value=%d\n", p->id, p->value); | ||
1441 | else | ||
1442 | dbgarg(cmd, "id=0x%x\n", p->id); | ||
1443 | break; | ||
1444 | } | ||
1445 | case VIDIOC_S_CTRL: | ||
1446 | { | ||
1447 | struct v4l2_control *p = arg; | ||
1448 | struct v4l2_ext_controls ctrls; | ||
1449 | struct v4l2_ext_control ctrl; | ||
1450 | |||
1451 | if (!vfd->vidioc_s_ctrl && !vfd->vidioc_s_ext_ctrls) | ||
1452 | break; | ||
1453 | |||
1454 | dbgarg(cmd, "id=0x%x, value=%d\n", p->id, p->value); | ||
1455 | |||
1456 | if (vfd->vidioc_s_ctrl) { | ||
1457 | ret = vfd->vidioc_s_ctrl(file, fh, p); | ||
1458 | break; | ||
1459 | } | ||
1460 | if (!vfd->vidioc_s_ext_ctrls) | ||
1461 | break; | ||
1462 | |||
1463 | ctrls.ctrl_class = V4L2_CTRL_ID2CLASS(p->id); | ||
1464 | ctrls.count = 1; | ||
1465 | ctrls.controls = &ctrl; | ||
1466 | ctrl.id = p->id; | ||
1467 | ctrl.value = p->value; | ||
1468 | if (check_ext_ctrls(&ctrls, 1)) | ||
1469 | ret = vfd->vidioc_s_ext_ctrls(file, fh, &ctrls); | ||
1470 | break; | ||
1471 | } | ||
1472 | case VIDIOC_G_EXT_CTRLS: | ||
1473 | { | ||
1474 | struct v4l2_ext_controls *p = arg; | ||
1475 | |||
1476 | p->error_idx = p->count; | ||
1477 | if (!vfd->vidioc_g_ext_ctrls) | ||
1478 | break; | ||
1479 | if (check_ext_ctrls(p, 0)) | ||
1480 | ret = vfd->vidioc_g_ext_ctrls(file, fh, p); | ||
1481 | v4l_print_ext_ctrls(cmd, vfd, p, !ret); | ||
1482 | break; | ||
1483 | } | ||
1484 | case VIDIOC_S_EXT_CTRLS: | ||
1485 | { | ||
1486 | struct v4l2_ext_controls *p = arg; | ||
1487 | |||
1488 | p->error_idx = p->count; | ||
1489 | if (!vfd->vidioc_s_ext_ctrls) | ||
1490 | break; | ||
1491 | v4l_print_ext_ctrls(cmd, vfd, p, 1); | ||
1492 | if (check_ext_ctrls(p, 0)) | ||
1493 | ret = vfd->vidioc_s_ext_ctrls(file, fh, p); | ||
1494 | break; | ||
1495 | } | ||
1496 | case VIDIOC_TRY_EXT_CTRLS: | ||
1497 | { | ||
1498 | struct v4l2_ext_controls *p = arg; | ||
1499 | |||
1500 | p->error_idx = p->count; | ||
1501 | if (!vfd->vidioc_try_ext_ctrls) | ||
1502 | break; | ||
1503 | v4l_print_ext_ctrls(cmd, vfd, p, 1); | ||
1504 | if (check_ext_ctrls(p, 0)) | ||
1505 | ret = vfd->vidioc_try_ext_ctrls(file, fh, p); | ||
1506 | break; | ||
1507 | } | ||
1508 | case VIDIOC_QUERYMENU: | ||
1509 | { | ||
1510 | struct v4l2_querymenu *p = arg; | ||
1511 | |||
1512 | if (!vfd->vidioc_querymenu) | ||
1513 | break; | ||
1514 | ret = vfd->vidioc_querymenu(file, fh, p); | ||
1515 | if (!ret) | ||
1516 | dbgarg(cmd, "id=0x%x, index=%d, name=%s\n", | ||
1517 | p->id, p->index, p->name); | ||
1518 | else | ||
1519 | dbgarg(cmd, "id=0x%x, index=%d\n", | ||
1520 | p->id, p->index); | ||
1521 | break; | ||
1522 | } | ||
1523 | /* --- audio ---------------------------------------------- */ | ||
1524 | case VIDIOC_ENUMAUDIO: | ||
1525 | { | ||
1526 | struct v4l2_audio *p = arg; | ||
1527 | |||
1528 | if (!vfd->vidioc_enumaudio) | ||
1529 | break; | ||
1530 | ret = vfd->vidioc_enumaudio(file, fh, p); | ||
1531 | if (!ret) | ||
1532 | dbgarg(cmd, "index=%d, name=%s, capability=0x%x, " | ||
1533 | "mode=0x%x\n", p->index, p->name, | ||
1534 | p->capability, p->mode); | ||
1535 | else | ||
1536 | dbgarg(cmd, "index=%d\n", p->index); | ||
1537 | break; | ||
1538 | } | ||
1539 | case VIDIOC_G_AUDIO: | ||
1540 | { | ||
1541 | struct v4l2_audio *p = arg; | ||
1542 | __u32 index = p->index; | ||
1543 | |||
1544 | if (!vfd->vidioc_g_audio) | ||
1545 | break; | ||
1546 | |||
1547 | memset(p, 0, sizeof(*p)); | ||
1548 | p->index = index; | ||
1549 | ret = vfd->vidioc_g_audio(file, fh, p); | ||
1550 | if (!ret) | ||
1551 | dbgarg(cmd, "index=%d, name=%s, capability=0x%x, " | ||
1552 | "mode=0x%x\n", p->index, | ||
1553 | p->name, p->capability, p->mode); | ||
1554 | else | ||
1555 | dbgarg(cmd, "index=%d\n", p->index); | ||
1556 | break; | ||
1557 | } | ||
1558 | case VIDIOC_S_AUDIO: | ||
1559 | { | ||
1560 | struct v4l2_audio *p = arg; | ||
1561 | |||
1562 | if (!vfd->vidioc_s_audio) | ||
1563 | break; | ||
1564 | dbgarg(cmd, "index=%d, name=%s, capability=0x%x, " | ||
1565 | "mode=0x%x\n", p->index, p->name, | ||
1566 | p->capability, p->mode); | ||
1567 | ret = vfd->vidioc_s_audio(file, fh, p); | ||
1568 | break; | ||
1569 | } | ||
1570 | case VIDIOC_ENUMAUDOUT: | ||
1571 | { | ||
1572 | struct v4l2_audioout *p=arg; | ||
1573 | |||
1574 | if (!vfd->vidioc_enumaudout) | ||
1575 | break; | ||
1576 | dbgarg(cmd, "Enum for index=%d\n", p->index); | ||
1577 | ret=vfd->vidioc_enumaudout(file, fh, p); | ||
1578 | if (!ret) | ||
1579 | dbgarg2("index=%d, name=%s, capability=%d, " | ||
1580 | "mode=%d\n", p->index, p->name, | ||
1581 | p->capability,p->mode); | ||
1582 | break; | ||
1583 | } | ||
1584 | case VIDIOC_G_AUDOUT: | ||
1585 | { | ||
1586 | struct v4l2_audioout *p=arg; | ||
1587 | |||
1588 | if (!vfd->vidioc_g_audout) | ||
1589 | break; | ||
1590 | dbgarg(cmd, "Enum for index=%d\n", p->index); | ||
1591 | ret=vfd->vidioc_g_audout(file, fh, p); | ||
1592 | if (!ret) | ||
1593 | dbgarg2("index=%d, name=%s, capability=%d, " | ||
1594 | "mode=%d\n", p->index, p->name, | ||
1595 | p->capability,p->mode); | ||
1596 | break; | ||
1597 | } | ||
1598 | case VIDIOC_S_AUDOUT: | ||
1599 | { | ||
1600 | struct v4l2_audioout *p=arg; | ||
1601 | |||
1602 | if (!vfd->vidioc_s_audout) | ||
1603 | break; | ||
1604 | dbgarg(cmd, "index=%d, name=%s, capability=%d, " | ||
1605 | "mode=%d\n", p->index, p->name, | ||
1606 | p->capability,p->mode); | ||
1607 | |||
1608 | ret=vfd->vidioc_s_audout(file, fh, p); | ||
1609 | break; | ||
1610 | } | ||
1611 | case VIDIOC_G_MODULATOR: | ||
1612 | { | ||
1613 | struct v4l2_modulator *p=arg; | ||
1614 | if (!vfd->vidioc_g_modulator) | ||
1615 | break; | ||
1616 | ret=vfd->vidioc_g_modulator(file, fh, p); | ||
1617 | if (!ret) | ||
1618 | dbgarg(cmd, "index=%d, name=%s, " | ||
1619 | "capability=%d, rangelow=%d," | ||
1620 | " rangehigh=%d, txsubchans=%d\n", | ||
1621 | p->index, p->name,p->capability, | ||
1622 | p->rangelow, p->rangehigh, | ||
1623 | p->txsubchans); | ||
1624 | break; | ||
1625 | } | ||
1626 | case VIDIOC_S_MODULATOR: | ||
1627 | { | ||
1628 | struct v4l2_modulator *p=arg; | ||
1629 | if (!vfd->vidioc_s_modulator) | ||
1630 | break; | ||
1631 | dbgarg(cmd, "index=%d, name=%s, capability=%d, " | ||
1632 | "rangelow=%d, rangehigh=%d, txsubchans=%d\n", | ||
1633 | p->index, p->name,p->capability,p->rangelow, | ||
1634 | p->rangehigh,p->txsubchans); | ||
1635 | ret=vfd->vidioc_s_modulator(file, fh, p); | ||
1636 | break; | ||
1637 | } | ||
1638 | case VIDIOC_G_CROP: | ||
1639 | { | ||
1640 | struct v4l2_crop *p=arg; | ||
1641 | if (!vfd->vidioc_g_crop) | ||
1642 | break; | ||
1643 | dbgarg(cmd, "type=%s\n", prt_names(p->type, v4l2_type_names)); | ||
1644 | ret=vfd->vidioc_g_crop(file, fh, p); | ||
1645 | if (!ret) { | ||
1646 | dbgrect(vfd, "", &p->c); | ||
1647 | } | ||
1648 | break; | ||
1649 | } | ||
1650 | case VIDIOC_S_CROP: | ||
1651 | { | ||
1652 | struct v4l2_crop *p=arg; | ||
1653 | if (!vfd->vidioc_s_crop) | ||
1654 | break; | ||
1655 | dbgarg(cmd, "type=%s\n", prt_names(p->type, v4l2_type_names)); | ||
1656 | dbgrect(vfd, "", &p->c); | ||
1657 | ret=vfd->vidioc_s_crop(file, fh, p); | ||
1658 | break; | ||
1659 | } | ||
1660 | case VIDIOC_CROPCAP: | ||
1661 | { | ||
1662 | struct v4l2_cropcap *p = arg; | ||
1663 | |||
1664 | /*FIXME: Should also show v4l2_fract pixelaspect */ | ||
1665 | if (!vfd->vidioc_cropcap) | ||
1666 | break; | ||
1667 | dbgarg(cmd, "type=%s\n", prt_names(p->type, v4l2_type_names)); | ||
1668 | ret = vfd->vidioc_cropcap(file, fh, p); | ||
1669 | if (!ret) { | ||
1670 | dbgrect(vfd, "bounds ", &p->bounds); | ||
1671 | dbgrect(vfd, "defrect ", &p->defrect); | ||
1672 | } | ||
1673 | break; | ||
1674 | } | ||
1675 | case VIDIOC_G_JPEGCOMP: | ||
1676 | { | ||
1677 | struct v4l2_jpegcompression *p=arg; | ||
1678 | if (!vfd->vidioc_g_jpegcomp) | ||
1679 | break; | ||
1680 | ret=vfd->vidioc_g_jpegcomp(file, fh, p); | ||
1681 | if (!ret) | ||
1682 | dbgarg (cmd, "quality=%d, APPn=%d, " | ||
1683 | "APP_len=%d, COM_len=%d, " | ||
1684 | "jpeg_markers=%d\n", | ||
1685 | p->quality,p->APPn,p->APP_len, | ||
1686 | p->COM_len,p->jpeg_markers); | ||
1687 | break; | ||
1688 | } | ||
1689 | case VIDIOC_S_JPEGCOMP: | ||
1690 | { | ||
1691 | struct v4l2_jpegcompression *p=arg; | ||
1692 | if (!vfd->vidioc_g_jpegcomp) | ||
1693 | break; | ||
1694 | dbgarg (cmd, "quality=%d, APPn=%d, APP_len=%d, " | ||
1695 | "COM_len=%d, jpeg_markers=%d\n", | ||
1696 | p->quality,p->APPn,p->APP_len, | ||
1697 | p->COM_len,p->jpeg_markers); | ||
1698 | ret=vfd->vidioc_s_jpegcomp(file, fh, p); | ||
1699 | break; | ||
1700 | } | ||
1701 | case VIDIOC_G_ENC_INDEX: | ||
1702 | { | ||
1703 | struct v4l2_enc_idx *p=arg; | ||
1704 | |||
1705 | if (!vfd->vidioc_g_enc_index) | ||
1706 | break; | ||
1707 | ret=vfd->vidioc_g_enc_index(file, fh, p); | ||
1708 | if (!ret) | ||
1709 | dbgarg (cmd, "entries=%d, entries_cap=%d\n", | ||
1710 | p->entries,p->entries_cap); | ||
1711 | break; | ||
1712 | } | ||
1713 | case VIDIOC_ENCODER_CMD: | ||
1714 | { | ||
1715 | struct v4l2_encoder_cmd *p = arg; | ||
1716 | |||
1717 | if (!vfd->vidioc_encoder_cmd) | ||
1718 | break; | ||
1719 | memset(&p->raw, 0, sizeof(p->raw)); | ||
1720 | ret = vfd->vidioc_encoder_cmd(file, fh, p); | ||
1721 | if (!ret) | ||
1722 | dbgarg(cmd, "cmd=%d, flags=%x\n", p->cmd, p->flags); | ||
1723 | break; | ||
1724 | } | ||
1725 | case VIDIOC_TRY_ENCODER_CMD: | ||
1726 | { | ||
1727 | struct v4l2_encoder_cmd *p = arg; | ||
1728 | |||
1729 | if (!vfd->vidioc_try_encoder_cmd) | ||
1730 | break; | ||
1731 | memset(&p->raw, 0, sizeof(p->raw)); | ||
1732 | ret = vfd->vidioc_try_encoder_cmd(file, fh, p); | ||
1733 | if (!ret) | ||
1734 | dbgarg(cmd, "cmd=%d, flags=%x\n", p->cmd, p->flags); | ||
1735 | break; | ||
1736 | } | ||
1737 | case VIDIOC_G_PARM: | ||
1738 | { | ||
1739 | struct v4l2_streamparm *p=arg; | ||
1740 | __u32 type=p->type; | ||
1741 | |||
1742 | memset(p,0,sizeof(*p)); | ||
1743 | p->type=type; | ||
1744 | |||
1745 | if (vfd->vidioc_g_parm) { | ||
1746 | ret=vfd->vidioc_g_parm(file, fh, p); | ||
1747 | } else { | ||
1748 | struct v4l2_standard s; | ||
1749 | |||
1750 | if (p->type != V4L2_BUF_TYPE_VIDEO_CAPTURE) | ||
1751 | return -EINVAL; | ||
1752 | |||
1753 | v4l2_video_std_construct(&s, vfd->current_norm, | ||
1754 | v4l2_norm_to_name(vfd->current_norm)); | ||
1755 | |||
1756 | p->parm.capture.timeperframe = s.frameperiod; | ||
1757 | ret=0; | ||
1758 | } | ||
1759 | |||
1760 | dbgarg (cmd, "type=%d\n", p->type); | ||
1761 | break; | ||
1762 | } | ||
1763 | case VIDIOC_S_PARM: | ||
1764 | { | ||
1765 | struct v4l2_streamparm *p=arg; | ||
1766 | if (!vfd->vidioc_s_parm) | ||
1767 | break; | ||
1768 | dbgarg (cmd, "type=%d\n", p->type); | ||
1769 | ret=vfd->vidioc_s_parm(file, fh, p); | ||
1770 | break; | ||
1771 | } | ||
1772 | case VIDIOC_G_TUNER: | ||
1773 | { | ||
1774 | struct v4l2_tuner *p = arg; | ||
1775 | __u32 index = p->index; | ||
1776 | |||
1777 | if (!vfd->vidioc_g_tuner) | ||
1778 | break; | ||
1779 | |||
1780 | memset(p, 0, sizeof(*p)); | ||
1781 | p->index = index; | ||
1782 | |||
1783 | ret = vfd->vidioc_g_tuner(file, fh, p); | ||
1784 | if (!ret) | ||
1785 | dbgarg(cmd, "index=%d, name=%s, type=%d, " | ||
1786 | "capability=0x%x, rangelow=%d, " | ||
1787 | "rangehigh=%d, signal=%d, afc=%d, " | ||
1788 | "rxsubchans=0x%x, audmode=%d\n", | ||
1789 | p->index, p->name, p->type, | ||
1790 | p->capability, p->rangelow, | ||
1791 | p->rangehigh, p->signal, p->afc, | ||
1792 | p->rxsubchans, p->audmode); | ||
1793 | break; | ||
1794 | } | ||
1795 | case VIDIOC_S_TUNER: | ||
1796 | { | ||
1797 | struct v4l2_tuner *p = arg; | ||
1798 | |||
1799 | if (!vfd->vidioc_s_tuner) | ||
1800 | break; | ||
1801 | dbgarg(cmd, "index=%d, name=%s, type=%d, " | ||
1802 | "capability=0x%x, rangelow=%d, " | ||
1803 | "rangehigh=%d, signal=%d, afc=%d, " | ||
1804 | "rxsubchans=0x%x, audmode=%d\n", | ||
1805 | p->index, p->name, p->type, | ||
1806 | p->capability, p->rangelow, | ||
1807 | p->rangehigh, p->signal, p->afc, | ||
1808 | p->rxsubchans, p->audmode); | ||
1809 | ret = vfd->vidioc_s_tuner(file, fh, p); | ||
1810 | break; | ||
1811 | } | ||
1812 | case VIDIOC_G_FREQUENCY: | ||
1813 | { | ||
1814 | struct v4l2_frequency *p = arg; | ||
1815 | |||
1816 | if (!vfd->vidioc_g_frequency) | ||
1817 | break; | ||
1818 | |||
1819 | memset(p->reserved, 0, sizeof(p->reserved)); | ||
1820 | |||
1821 | ret = vfd->vidioc_g_frequency(file, fh, p); | ||
1822 | if (!ret) | ||
1823 | dbgarg(cmd, "tuner=%d, type=%d, frequency=%d\n", | ||
1824 | p->tuner, p->type, p->frequency); | ||
1825 | break; | ||
1826 | } | ||
1827 | case VIDIOC_S_FREQUENCY: | ||
1828 | { | ||
1829 | struct v4l2_frequency *p=arg; | ||
1830 | if (!vfd->vidioc_s_frequency) | ||
1831 | break; | ||
1832 | dbgarg (cmd, "tuner=%d, type=%d, frequency=%d\n", | ||
1833 | p->tuner,p->type,p->frequency); | ||
1834 | ret=vfd->vidioc_s_frequency(file, fh, p); | ||
1835 | break; | ||
1836 | } | ||
1837 | case VIDIOC_G_SLICED_VBI_CAP: | ||
1838 | { | ||
1839 | struct v4l2_sliced_vbi_cap *p = arg; | ||
1840 | __u32 type = p->type; | ||
1841 | |||
1842 | if (!vfd->vidioc_g_sliced_vbi_cap) | ||
1843 | break; | ||
1844 | memset(p, 0, sizeof(*p)); | ||
1845 | p->type = type; | ||
1846 | dbgarg(cmd, "type=%s\n", prt_names(p->type, v4l2_type_names)); | ||
1847 | ret = vfd->vidioc_g_sliced_vbi_cap(file, fh, p); | ||
1848 | if (!ret) | ||
1849 | dbgarg2("service_set=%d\n", p->service_set); | ||
1850 | break; | ||
1851 | } | ||
1852 | case VIDIOC_LOG_STATUS: | ||
1853 | { | ||
1854 | if (!vfd->vidioc_log_status) | ||
1855 | break; | ||
1856 | ret=vfd->vidioc_log_status(file, fh); | ||
1857 | break; | ||
1858 | } | ||
1859 | #ifdef CONFIG_VIDEO_ADV_DEBUG | ||
1860 | case VIDIOC_DBG_G_REGISTER: | ||
1861 | { | ||
1862 | struct v4l2_register *p=arg; | ||
1863 | if (!capable(CAP_SYS_ADMIN)) | ||
1864 | ret=-EPERM; | ||
1865 | else if (vfd->vidioc_g_register) | ||
1866 | ret=vfd->vidioc_g_register(file, fh, p); | ||
1867 | break; | ||
1868 | } | ||
1869 | case VIDIOC_DBG_S_REGISTER: | ||
1870 | { | ||
1871 | struct v4l2_register *p=arg; | ||
1872 | if (!capable(CAP_SYS_ADMIN)) | ||
1873 | ret=-EPERM; | ||
1874 | else if (vfd->vidioc_s_register) | ||
1875 | ret=vfd->vidioc_s_register(file, fh, p); | ||
1876 | break; | ||
1877 | } | ||
1878 | #endif | ||
1879 | case VIDIOC_G_CHIP_IDENT: | ||
1880 | { | ||
1881 | struct v4l2_chip_ident *p=arg; | ||
1882 | if (!vfd->vidioc_g_chip_ident) | ||
1883 | break; | ||
1884 | ret=vfd->vidioc_g_chip_ident(file, fh, p); | ||
1885 | if (!ret) | ||
1886 | dbgarg (cmd, "chip_ident=%u, revision=0x%x\n", p->ident, p->revision); | ||
1887 | break; | ||
1888 | } | ||
1889 | default: | ||
1890 | { | ||
1891 | if (!vfd->vidioc_default) | ||
1892 | break; | ||
1893 | ret = vfd->vidioc_default(file, fh, cmd, arg); | ||
1894 | break; | ||
1895 | } | ||
1896 | case VIDIOC_S_HW_FREQ_SEEK: | ||
1897 | { | ||
1898 | struct v4l2_hw_freq_seek *p = arg; | ||
1899 | if (!vfd->vidioc_s_hw_freq_seek) | ||
1900 | break; | ||
1901 | dbgarg(cmd, | ||
1902 | "tuner=%d, type=%d, seek_upward=%d, wrap_around=%d\n", | ||
1903 | p->tuner, p->type, p->seek_upward, p->wrap_around); | ||
1904 | ret = vfd->vidioc_s_hw_freq_seek(file, fh, p); | ||
1905 | break; | ||
1906 | } | ||
1907 | } /* switch */ | ||
1908 | |||
1909 | if (vfd->debug & V4L2_DEBUG_IOCTL_ARG) { | ||
1910 | if (ret < 0) { | ||
1911 | v4l_print_ioctl(vfd->name, cmd); | ||
1912 | printk(KERN_CONT " error %d\n", ret); | ||
1913 | } | ||
1914 | } | ||
1915 | |||
1916 | return ret; | ||
1917 | } | ||
1918 | |||
1919 | int video_ioctl2 (struct inode *inode, struct file *file, | ||
1920 | unsigned int cmd, unsigned long arg) | ||
1921 | { | ||
1922 | char sbuf[128]; | ||
1923 | void *mbuf = NULL; | ||
1924 | void *parg = NULL; | ||
1925 | int err = -EINVAL; | ||
1926 | int is_ext_ctrl; | ||
1927 | size_t ctrls_size = 0; | ||
1928 | void __user *user_ptr = NULL; | ||
1929 | |||
1930 | #ifdef __OLD_VIDIOC_ | ||
1931 | cmd = video_fix_command(cmd); | ||
1932 | #endif | ||
1933 | is_ext_ctrl = (cmd == VIDIOC_S_EXT_CTRLS || cmd == VIDIOC_G_EXT_CTRLS || | ||
1934 | cmd == VIDIOC_TRY_EXT_CTRLS); | ||
1935 | |||
1936 | /* Copy arguments into temp kernel buffer */ | ||
1937 | switch (_IOC_DIR(cmd)) { | ||
1938 | case _IOC_NONE: | ||
1939 | parg = NULL; | ||
1940 | break; | ||
1941 | case _IOC_READ: | ||
1942 | case _IOC_WRITE: | ||
1943 | case (_IOC_WRITE | _IOC_READ): | ||
1944 | if (_IOC_SIZE(cmd) <= sizeof(sbuf)) { | ||
1945 | parg = sbuf; | ||
1946 | } else { | ||
1947 | /* too big to allocate from stack */ | ||
1948 | mbuf = kmalloc(_IOC_SIZE(cmd),GFP_KERNEL); | ||
1949 | if (NULL == mbuf) | ||
1950 | return -ENOMEM; | ||
1951 | parg = mbuf; | ||
1952 | } | ||
1953 | |||
1954 | err = -EFAULT; | ||
1955 | if (_IOC_DIR(cmd) & _IOC_WRITE) | ||
1956 | if (copy_from_user(parg, (void __user *)arg, _IOC_SIZE(cmd))) | ||
1957 | goto out; | ||
1958 | break; | ||
1959 | } | ||
1960 | |||
1961 | if (is_ext_ctrl) { | ||
1962 | struct v4l2_ext_controls *p = parg; | ||
1963 | |||
1964 | /* In case of an error, tell the caller that it wasn't | ||
1965 | a specific control that caused it. */ | ||
1966 | p->error_idx = p->count; | ||
1967 | user_ptr = (void __user *)p->controls; | ||
1968 | if (p->count) { | ||
1969 | ctrls_size = sizeof(struct v4l2_ext_control) * p->count; | ||
1970 | /* Note: v4l2_ext_controls fits in sbuf[] so mbuf is still NULL. */ | ||
1971 | mbuf = kmalloc(ctrls_size, GFP_KERNEL); | ||
1972 | err = -ENOMEM; | ||
1973 | if (NULL == mbuf) | ||
1974 | goto out_ext_ctrl; | ||
1975 | err = -EFAULT; | ||
1976 | if (copy_from_user(mbuf, user_ptr, ctrls_size)) | ||
1977 | goto out_ext_ctrl; | ||
1978 | p->controls = mbuf; | ||
1979 | } | ||
1980 | } | ||
1981 | |||
1982 | /* Handles IOCTL */ | ||
1983 | err = __video_do_ioctl(inode, file, cmd, parg); | ||
1984 | if (err == -ENOIOCTLCMD) | ||
1985 | err = -EINVAL; | ||
1986 | if (is_ext_ctrl) { | ||
1987 | struct v4l2_ext_controls *p = parg; | ||
1988 | |||
1989 | p->controls = (void *)user_ptr; | ||
1990 | if (p->count && err == 0 && copy_to_user(user_ptr, mbuf, ctrls_size)) | ||
1991 | err = -EFAULT; | ||
1992 | goto out_ext_ctrl; | ||
1993 | } | ||
1994 | if (err < 0) | ||
1995 | goto out; | ||
1996 | |||
1997 | out_ext_ctrl: | ||
1998 | /* Copy results into user buffer */ | ||
1999 | switch (_IOC_DIR(cmd)) | ||
2000 | { | ||
2001 | case _IOC_READ: | ||
2002 | case (_IOC_WRITE | _IOC_READ): | ||
2003 | if (copy_to_user((void __user *)arg, parg, _IOC_SIZE(cmd))) | ||
2004 | err = -EFAULT; | ||
2005 | break; | ||
2006 | } | ||
2007 | |||
2008 | out: | ||
2009 | kfree(mbuf); | ||
2010 | return err; | ||
2011 | } | ||
2012 | EXPORT_SYMBOL(video_ioctl2); | ||
2013 | |||
2014 | /** | ||
2015 | * get_index - assign stream number based on parent device | ||
2016 | * @vdev: video_device to assign index number to, vdev->dev should be assigned | ||
2017 | * @num: -1 if auto assign, requested number otherwise | ||
2018 | * | ||
2019 | * | ||
2020 | * returns -ENFILE if num is already in use, a free index number if | ||
2021 | * successful. | ||
2022 | */ | ||
2023 | static int get_index(struct video_device *vdev, int num) | ||
2024 | { | ||
2025 | u32 used = 0; | ||
2026 | const int max_index = sizeof(used) * 8 - 1; | ||
2027 | int i; | ||
2028 | |||
2029 | /* Currently a single v4l driver instance cannot create more than | ||
2030 | 32 devices. | ||
2031 | Increase to u64 or an array of u32 if more are needed. */ | ||
2032 | if (num > max_index) { | ||
2033 | printk(KERN_ERR "videodev: %s num is too large\n", __func__); | ||
2034 | return -EINVAL; | ||
2035 | } | ||
2036 | |||
2037 | for (i = 0; i < VIDEO_NUM_DEVICES; i++) { | ||
2038 | if (video_device[i] != NULL && | ||
2039 | video_device[i] != vdev && | ||
2040 | video_device[i]->dev == vdev->dev) { | ||
2041 | used |= 1 << video_device[i]->index; | ||
2042 | } | ||
2043 | } | ||
2044 | |||
2045 | if (num >= 0) { | ||
2046 | if (used & (1 << num)) | ||
2047 | return -ENFILE; | ||
2048 | return num; | ||
2049 | } | ||
2050 | |||
2051 | i = ffz(used); | ||
2052 | return i > max_index ? -ENFILE : i; | ||
2053 | } | ||
2054 | |||
2055 | static const struct file_operations video_fops; | ||
2056 | |||
2057 | int video_register_device(struct video_device *vfd, int type, int nr) | ||
2058 | { | ||
2059 | return video_register_device_index(vfd, type, nr, -1); | ||
2060 | } | ||
2061 | EXPORT_SYMBOL(video_register_device); | ||
2062 | |||
2063 | /** | ||
2064 | * video_register_device - register video4linux devices | ||
2065 | * @vfd: video device structure we want to register | ||
2066 | * @type: type of device to register | ||
2067 | * @nr: which device number (0 == /dev/video0, 1 == /dev/video1, ... | ||
2068 | * -1 == first free) | ||
2069 | * | ||
2070 | * The registration code assigns minor numbers based on the type | ||
2071 | * requested. -ENFILE is returned in all the device slots for this | ||
2072 | * category are full. If not then the minor field is set and the | ||
2073 | * driver initialize function is called (if non %NULL). | ||
2074 | * | ||
2075 | * Zero is returned on success. | ||
2076 | * | ||
2077 | * Valid types are | ||
2078 | * | ||
2079 | * %VFL_TYPE_GRABBER - A frame grabber | ||
2080 | * | ||
2081 | * %VFL_TYPE_VTX - A teletext device | ||
2082 | * | ||
2083 | * %VFL_TYPE_VBI - Vertical blank data (undecoded) | ||
2084 | * | ||
2085 | * %VFL_TYPE_RADIO - A radio card | ||
2086 | */ | ||
2087 | |||
2088 | int video_register_device_index(struct video_device *vfd, int type, int nr, | ||
2089 | int index) | ||
2090 | { | ||
2091 | int i=0; | ||
2092 | int base; | ||
2093 | int end; | ||
2094 | int ret; | ||
2095 | char *name_base; | ||
2096 | |||
2097 | switch(type) | ||
2098 | { | ||
2099 | case VFL_TYPE_GRABBER: | ||
2100 | base=MINOR_VFL_TYPE_GRABBER_MIN; | ||
2101 | end=MINOR_VFL_TYPE_GRABBER_MAX+1; | ||
2102 | name_base = "video"; | ||
2103 | break; | ||
2104 | case VFL_TYPE_VTX: | ||
2105 | base=MINOR_VFL_TYPE_VTX_MIN; | ||
2106 | end=MINOR_VFL_TYPE_VTX_MAX+1; | ||
2107 | name_base = "vtx"; | ||
2108 | break; | ||
2109 | case VFL_TYPE_VBI: | ||
2110 | base=MINOR_VFL_TYPE_VBI_MIN; | ||
2111 | end=MINOR_VFL_TYPE_VBI_MAX+1; | ||
2112 | name_base = "vbi"; | ||
2113 | break; | ||
2114 | case VFL_TYPE_RADIO: | ||
2115 | base=MINOR_VFL_TYPE_RADIO_MIN; | ||
2116 | end=MINOR_VFL_TYPE_RADIO_MAX+1; | ||
2117 | name_base = "radio"; | ||
2118 | break; | ||
2119 | default: | ||
2120 | printk(KERN_ERR "%s called with unknown type: %d\n", | ||
2121 | __func__, type); | ||
2122 | return -1; | ||
2123 | } | ||
2124 | |||
2125 | /* pick a minor number */ | ||
2126 | mutex_lock(&videodev_lock); | ||
2127 | if (nr >= 0 && nr < end-base) { | ||
2128 | /* use the one the driver asked for */ | ||
2129 | i = base+nr; | ||
2130 | if (NULL != video_device[i]) { | ||
2131 | mutex_unlock(&videodev_lock); | ||
2132 | return -ENFILE; | ||
2133 | } | ||
2134 | } else { | ||
2135 | /* use first free */ | ||
2136 | for(i=base;i<end;i++) | ||
2137 | if (NULL == video_device[i]) | ||
2138 | break; | ||
2139 | if (i == end) { | ||
2140 | mutex_unlock(&videodev_lock); | ||
2141 | return -ENFILE; | ||
2142 | } | ||
2143 | } | ||
2144 | video_device[i]=vfd; | ||
2145 | vfd->minor=i; | ||
2146 | |||
2147 | ret = get_index(vfd, index); | ||
2148 | vfd->index = ret; | ||
2149 | |||
2150 | mutex_unlock(&videodev_lock); | ||
2151 | |||
2152 | if (ret < 0) { | ||
2153 | printk(KERN_ERR "%s: get_index failed\n", __func__); | ||
2154 | goto fail_minor; | ||
2155 | } | ||
2156 | |||
2157 | mutex_init(&vfd->lock); | ||
2158 | |||
2159 | /* sysfs class */ | ||
2160 | memset(&vfd->class_dev, 0x00, sizeof(vfd->class_dev)); | ||
2161 | vfd->class_dev.class = &video_class; | ||
2162 | vfd->class_dev.devt = MKDEV(VIDEO_MAJOR, vfd->minor); | ||
2163 | if (vfd->dev) | ||
2164 | vfd->class_dev.parent = vfd->dev; | ||
2165 | sprintf(vfd->class_dev.bus_id, "%s%d", name_base, i - base); | ||
2166 | ret = device_register(&vfd->class_dev); | ||
2167 | if (ret < 0) { | ||
2168 | printk(KERN_ERR "%s: device_register failed\n", __func__); | ||
2169 | goto fail_minor; | ||
2170 | } | ||
2171 | |||
2172 | #if 1 | ||
2173 | /* needed until all drivers are fixed */ | ||
2174 | if (!vfd->release) | ||
2175 | printk(KERN_WARNING "videodev: \"%s\" has no release callback. " | ||
2176 | "Please fix your driver for proper sysfs support, see " | ||
2177 | "http://lwn.net/Articles/36850/\n", vfd->name); | ||
2178 | #endif | ||
2179 | return 0; | ||
2180 | |||
2181 | fail_minor: | ||
2182 | mutex_lock(&videodev_lock); | ||
2183 | video_device[vfd->minor] = NULL; | ||
2184 | vfd->minor = -1; | ||
2185 | mutex_unlock(&videodev_lock); | ||
2186 | return ret; | ||
2187 | } | ||
2188 | EXPORT_SYMBOL(video_register_device_index); | ||
2189 | |||
2190 | /** | ||
2191 | * video_unregister_device - unregister a video4linux device | ||
2192 | * @vfd: the device to unregister | ||
2193 | * | ||
2194 | * This unregisters the passed device and deassigns the minor | ||
2195 | * number. Future open calls will be met with errors. | ||
2196 | */ | ||
2197 | |||
2198 | void video_unregister_device(struct video_device *vfd) | ||
2199 | { | ||
2200 | mutex_lock(&videodev_lock); | ||
2201 | if(video_device[vfd->minor]!=vfd) | ||
2202 | panic("videodev: bad unregister"); | ||
2203 | |||
2204 | video_device[vfd->minor]=NULL; | ||
2205 | device_unregister(&vfd->class_dev); | ||
2206 | mutex_unlock(&videodev_lock); | ||
2207 | } | ||
2208 | EXPORT_SYMBOL(video_unregister_device); | ||
2209 | |||
2210 | /* | ||
2211 | * Video fs operations | ||
2212 | */ | ||
2213 | static const struct file_operations video_fops= | ||
2214 | { | ||
2215 | .owner = THIS_MODULE, | ||
2216 | .llseek = no_llseek, | ||
2217 | .open = video_open, | ||
2218 | }; | ||
2219 | |||
2220 | /* | ||
2221 | * Initialise video for linux | ||
2222 | */ | ||
2223 | |||
2224 | static int __init videodev_init(void) | ||
2225 | { | ||
2226 | int ret; | ||
2227 | |||
2228 | printk(KERN_INFO "Linux video capture interface: v2.00\n"); | ||
2229 | if (register_chrdev(VIDEO_MAJOR, VIDEO_NAME, &video_fops)) { | ||
2230 | printk(KERN_WARNING "video_dev: unable to get major %d\n", VIDEO_MAJOR); | ||
2231 | return -EIO; | ||
2232 | } | ||
2233 | |||
2234 | ret = class_register(&video_class); | ||
2235 | if (ret < 0) { | ||
2236 | unregister_chrdev(VIDEO_MAJOR, VIDEO_NAME); | ||
2237 | printk(KERN_WARNING "video_dev: class_register failed\n"); | ||
2238 | return -EIO; | ||
2239 | } | ||
2240 | |||
2241 | return 0; | ||
2242 | } | ||
2243 | |||
2244 | static void __exit videodev_exit(void) | ||
2245 | { | ||
2246 | class_unregister(&video_class); | ||
2247 | unregister_chrdev(VIDEO_MAJOR, VIDEO_NAME); | ||
2248 | } | ||
2249 | |||
2250 | module_init(videodev_init) | ||
2251 | module_exit(videodev_exit) | ||
2252 | |||
2253 | MODULE_AUTHOR("Alan Cox, Mauro Carvalho Chehab <mchehab@infradead.org>"); | ||
2254 | MODULE_DESCRIPTION("Device registrar for Video4Linux drivers v2"); | ||
2255 | MODULE_LICENSE("GPL"); | ||
2256 | |||
2257 | |||
2258 | /* | ||
2259 | * Local variables: | ||
2260 | * c-basic-offset: 8 | ||
2261 | * End: | ||
2262 | */ | ||
diff --git a/drivers/media/video/vino.c b/drivers/media/video/vino.c index 01ea99c9bc1a..3989b0eded28 100644 --- a/drivers/media/video/vino.c +++ b/drivers/media/video/vino.c | |||
@@ -38,7 +38,7 @@ | |||
38 | #include <linux/i2c.h> | 38 | #include <linux/i2c.h> |
39 | #include <linux/i2c-algo-sgi.h> | 39 | #include <linux/i2c-algo-sgi.h> |
40 | 40 | ||
41 | #include <linux/videodev.h> | 41 | #include <linux/videodev2.h> |
42 | #include <media/v4l2-common.h> | 42 | #include <media/v4l2-common.h> |
43 | #include <linux/video_decoder.h> | 43 | #include <linux/video_decoder.h> |
44 | #include <linux/mutex.h> | 44 | #include <linux/mutex.h> |
@@ -4385,8 +4385,6 @@ static const struct file_operations vino_fops = { | |||
4385 | 4385 | ||
4386 | static struct video_device v4l_device_template = { | 4386 | static struct video_device v4l_device_template = { |
4387 | .name = "NOT SET", | 4387 | .name = "NOT SET", |
4388 | /*.type = VID_TYPE_CAPTURE | VID_TYPE_SUBCAPTURE | */ | ||
4389 | /* VID_TYPE_CLIPPING | VID_TYPE_SCALES, VID_TYPE_OVERLAY */ | ||
4390 | .fops = &vino_fops, | 4388 | .fops = &vino_fops, |
4391 | .minor = -1, | 4389 | .minor = -1, |
4392 | }; | 4390 | }; |
diff --git a/drivers/media/video/vivi.c b/drivers/media/video/vivi.c index 059b01c11dc1..3518af071a2e 100644 --- a/drivers/media/video/vivi.c +++ b/drivers/media/video/vivi.c | |||
@@ -35,6 +35,7 @@ | |||
35 | #include <linux/interrupt.h> | 35 | #include <linux/interrupt.h> |
36 | #include <media/videobuf-vmalloc.h> | 36 | #include <media/videobuf-vmalloc.h> |
37 | #include <media/v4l2-common.h> | 37 | #include <media/v4l2-common.h> |
38 | #include <media/v4l2-ioctl.h> | ||
38 | #include <linux/kthread.h> | 39 | #include <linux/kthread.h> |
39 | #include <linux/highmem.h> | 40 | #include <linux/highmem.h> |
40 | #include <linux/freezer.h> | 41 | #include <linux/freezer.h> |
@@ -1065,13 +1066,7 @@ static const struct file_operations vivi_fops = { | |||
1065 | .llseek = no_llseek, | 1066 | .llseek = no_llseek, |
1066 | }; | 1067 | }; |
1067 | 1068 | ||
1068 | static struct video_device vivi_template = { | 1069 | static const struct v4l2_ioctl_ops vivi_ioctl_ops = { |
1069 | .name = "vivi", | ||
1070 | .type = VID_TYPE_CAPTURE, | ||
1071 | .fops = &vivi_fops, | ||
1072 | .minor = -1, | ||
1073 | .release = video_device_release, | ||
1074 | |||
1075 | .vidioc_querycap = vidioc_querycap, | 1070 | .vidioc_querycap = vidioc_querycap, |
1076 | .vidioc_enum_fmt_vid_cap = vidioc_enum_fmt_vid_cap, | 1071 | .vidioc_enum_fmt_vid_cap = vidioc_enum_fmt_vid_cap, |
1077 | .vidioc_g_fmt_vid_cap = vidioc_g_fmt_vid_cap, | 1072 | .vidioc_g_fmt_vid_cap = vidioc_g_fmt_vid_cap, |
@@ -1093,6 +1088,15 @@ static struct video_device vivi_template = { | |||
1093 | #ifdef CONFIG_VIDEO_V4L1_COMPAT | 1088 | #ifdef CONFIG_VIDEO_V4L1_COMPAT |
1094 | .vidiocgmbuf = vidiocgmbuf, | 1089 | .vidiocgmbuf = vidiocgmbuf, |
1095 | #endif | 1090 | #endif |
1091 | }; | ||
1092 | |||
1093 | static struct video_device vivi_template = { | ||
1094 | .name = "vivi", | ||
1095 | .fops = &vivi_fops, | ||
1096 | .ioctl_ops = &vivi_ioctl_ops, | ||
1097 | .minor = -1, | ||
1098 | .release = video_device_release, | ||
1099 | |||
1096 | .tvnorms = V4L2_STD_525_60, | 1100 | .tvnorms = V4L2_STD_525_60, |
1097 | .current_norm = V4L2_STD_NTSC_M, | 1101 | .current_norm = V4L2_STD_NTSC_M, |
1098 | }; | 1102 | }; |
diff --git a/drivers/media/video/vp27smpx.c b/drivers/media/video/vp27smpx.c index cbecb3cbbbaa..577956c5410b 100644 --- a/drivers/media/video/vp27smpx.c +++ b/drivers/media/video/vp27smpx.c | |||
@@ -27,7 +27,7 @@ | |||
27 | #include <asm/uaccess.h> | 27 | #include <asm/uaccess.h> |
28 | #include <linux/i2c.h> | 28 | #include <linux/i2c.h> |
29 | #include <linux/i2c-id.h> | 29 | #include <linux/i2c-id.h> |
30 | #include <linux/videodev.h> | 30 | #include <linux/videodev2.h> |
31 | #include <media/v4l2-common.h> | 31 | #include <media/v4l2-common.h> |
32 | #include <media/v4l2-chip-ident.h> | 32 | #include <media/v4l2-chip-ident.h> |
33 | #include <media/v4l2-i2c-drv.h> | 33 | #include <media/v4l2-i2c-drv.h> |
diff --git a/drivers/media/video/w9966.c b/drivers/media/video/w9966.c index 33f702698a56..9402f40095b4 100644 --- a/drivers/media/video/w9966.c +++ b/drivers/media/video/w9966.c | |||
@@ -57,8 +57,9 @@ | |||
57 | #include <linux/module.h> | 57 | #include <linux/module.h> |
58 | #include <linux/init.h> | 58 | #include <linux/init.h> |
59 | #include <linux/delay.h> | 59 | #include <linux/delay.h> |
60 | #include <linux/videodev.h> | 60 | #include <linux/videodev2.h> |
61 | #include <media/v4l2-common.h> | 61 | #include <media/v4l2-common.h> |
62 | #include <media/v4l2-ioctl.h> | ||
62 | #include <linux/parport.h> | 63 | #include <linux/parport.h> |
63 | 64 | ||
64 | /*#define DEBUG*/ /* Undef me for production */ | 65 | /*#define DEBUG*/ /* Undef me for production */ |
@@ -195,9 +196,7 @@ static const struct file_operations w9966_fops = { | |||
195 | .llseek = no_llseek, | 196 | .llseek = no_llseek, |
196 | }; | 197 | }; |
197 | static struct video_device w9966_template = { | 198 | static struct video_device w9966_template = { |
198 | .owner = THIS_MODULE, | ||
199 | .name = W9966_DRIVERNAME, | 199 | .name = W9966_DRIVERNAME, |
200 | .type = VID_TYPE_CAPTURE | VID_TYPE_SCALES, | ||
201 | .fops = &w9966_fops, | 200 | .fops = &w9966_fops, |
202 | }; | 201 | }; |
203 | 202 | ||
diff --git a/drivers/media/video/w9968cf.c b/drivers/media/video/w9968cf.c index 840522442d07..168baabe4659 100644 --- a/drivers/media/video/w9968cf.c +++ b/drivers/media/video/w9968cf.c | |||
@@ -42,6 +42,7 @@ | |||
42 | #include <asm/page.h> | 42 | #include <asm/page.h> |
43 | #include <asm/uaccess.h> | 43 | #include <asm/uaccess.h> |
44 | #include <linux/page-flags.h> | 44 | #include <linux/page-flags.h> |
45 | #include <media/v4l2-ioctl.h> | ||
45 | 46 | ||
46 | #include "w9968cf.h" | 47 | #include "w9968cf.h" |
47 | #include "w9968cf_decoder.h" | 48 | #include "w9968cf_decoder.h" |
@@ -3549,13 +3550,11 @@ w9968cf_usb_probe(struct usb_interface* intf, const struct usb_device_id* id) | |||
3549 | } | 3550 | } |
3550 | 3551 | ||
3551 | strcpy(cam->v4ldev->name, symbolic(camlist, mod_id)); | 3552 | strcpy(cam->v4ldev->name, symbolic(camlist, mod_id)); |
3552 | cam->v4ldev->owner = THIS_MODULE; | ||
3553 | cam->v4ldev->type = VID_TYPE_CAPTURE | VID_TYPE_SCALES; | ||
3554 | cam->v4ldev->fops = &w9968cf_fops; | 3553 | cam->v4ldev->fops = &w9968cf_fops; |
3555 | cam->v4ldev->minor = video_nr[dev_nr]; | 3554 | cam->v4ldev->minor = video_nr[dev_nr]; |
3556 | cam->v4ldev->release = video_device_release; | 3555 | cam->v4ldev->release = video_device_release; |
3557 | video_set_drvdata(cam->v4ldev, cam); | 3556 | video_set_drvdata(cam->v4ldev, cam); |
3558 | cam->v4ldev->dev = &cam->dev; | 3557 | cam->v4ldev->parent = &cam->dev; |
3559 | 3558 | ||
3560 | err = video_register_device(cam->v4ldev, VFL_TYPE_GRABBER, | 3559 | err = video_register_device(cam->v4ldev, VFL_TYPE_GRABBER, |
3561 | video_nr[dev_nr]); | 3560 | video_nr[dev_nr]); |
diff --git a/drivers/media/video/w9968cf.h b/drivers/media/video/w9968cf.h index 3c95316bc030..30032e15e23c 100644 --- a/drivers/media/video/w9968cf.h +++ b/drivers/media/video/w9968cf.h | |||
@@ -21,7 +21,7 @@ | |||
21 | #ifndef _W9968CF_H_ | 21 | #ifndef _W9968CF_H_ |
22 | #define _W9968CF_H_ | 22 | #define _W9968CF_H_ |
23 | 23 | ||
24 | #include <linux/videodev.h> | 24 | #include <linux/videodev2.h> |
25 | #include <linux/usb.h> | 25 | #include <linux/usb.h> |
26 | #include <linux/i2c.h> | 26 | #include <linux/i2c.h> |
27 | #include <linux/device.h> | 27 | #include <linux/device.h> |
diff --git a/drivers/media/video/wm8739.c b/drivers/media/video/wm8739.c index 7be47a255853..95c79ad80487 100644 --- a/drivers/media/video/wm8739.c +++ b/drivers/media/video/wm8739.c | |||
@@ -27,7 +27,7 @@ | |||
27 | #include <asm/uaccess.h> | 27 | #include <asm/uaccess.h> |
28 | #include <linux/i2c.h> | 28 | #include <linux/i2c.h> |
29 | #include <linux/i2c-id.h> | 29 | #include <linux/i2c-id.h> |
30 | #include <linux/videodev.h> | 30 | #include <linux/videodev2.h> |
31 | #include <media/v4l2-common.h> | 31 | #include <media/v4l2-common.h> |
32 | #include <media/v4l2-chip-ident.h> | 32 | #include <media/v4l2-chip-ident.h> |
33 | #include <media/v4l2-i2c-drv.h> | 33 | #include <media/v4l2-i2c-drv.h> |
diff --git a/drivers/media/video/wm8775.c b/drivers/media/video/wm8775.c index c2ab70a04a74..48df661d4fc3 100644 --- a/drivers/media/video/wm8775.c +++ b/drivers/media/video/wm8775.c | |||
@@ -31,7 +31,7 @@ | |||
31 | #include <asm/uaccess.h> | 31 | #include <asm/uaccess.h> |
32 | #include <linux/i2c.h> | 32 | #include <linux/i2c.h> |
33 | #include <linux/i2c-id.h> | 33 | #include <linux/i2c-id.h> |
34 | #include <linux/videodev.h> | 34 | #include <linux/videodev2.h> |
35 | #include <media/v4l2-common.h> | 35 | #include <media/v4l2-common.h> |
36 | #include <media/v4l2-chip-ident.h> | 36 | #include <media/v4l2-chip-ident.h> |
37 | #include <media/v4l2-i2c-drv-legacy.h> | 37 | #include <media/v4l2-i2c-drv-legacy.h> |
diff --git a/drivers/media/video/zc0301/zc0301.h b/drivers/media/video/zc0301/zc0301.h index 7bbab541a309..b1b5cceb4baa 100644 --- a/drivers/media/video/zc0301/zc0301.h +++ b/drivers/media/video/zc0301/zc0301.h | |||
@@ -25,6 +25,7 @@ | |||
25 | #include <linux/usb.h> | 25 | #include <linux/usb.h> |
26 | #include <linux/videodev2.h> | 26 | #include <linux/videodev2.h> |
27 | #include <media/v4l2-common.h> | 27 | #include <media/v4l2-common.h> |
28 | #include <media/v4l2-ioctl.h> | ||
28 | #include <linux/device.h> | 29 | #include <linux/device.h> |
29 | #include <linux/list.h> | 30 | #include <linux/list.h> |
30 | #include <linux/spinlock.h> | 31 | #include <linux/spinlock.h> |
diff --git a/drivers/media/video/zc0301/zc0301_core.c b/drivers/media/video/zc0301/zc0301_core.c index e5c4e9f5193f..550ce7bd5c87 100644 --- a/drivers/media/video/zc0301/zc0301_core.c +++ b/drivers/media/video/zc0301/zc0301_core.c | |||
@@ -1985,8 +1985,6 @@ zc0301_usb_probe(struct usb_interface* intf, const struct usb_device_id* id) | |||
1985 | } | 1985 | } |
1986 | 1986 | ||
1987 | strcpy(cam->v4ldev->name, "ZC0301[P] PC Camera"); | 1987 | strcpy(cam->v4ldev->name, "ZC0301[P] PC Camera"); |
1988 | cam->v4ldev->owner = THIS_MODULE; | ||
1989 | cam->v4ldev->type = VID_TYPE_CAPTURE | VID_TYPE_SCALES; | ||
1990 | cam->v4ldev->fops = &zc0301_fops; | 1988 | cam->v4ldev->fops = &zc0301_fops; |
1991 | cam->v4ldev->minor = video_nr[dev_nr]; | 1989 | cam->v4ldev->minor = video_nr[dev_nr]; |
1992 | cam->v4ldev->release = video_device_release; | 1990 | cam->v4ldev->release = video_device_release; |
diff --git a/drivers/media/video/zoran_card.c b/drivers/media/video/zoran_card.c index 0929edb2d4f1..d842a7cb99d2 100644 --- a/drivers/media/video/zoran_card.c +++ b/drivers/media/video/zoran_card.c | |||
@@ -161,7 +161,7 @@ static struct pci_device_id zr36067_pci_tbl[] = { | |||
161 | MODULE_DEVICE_TABLE(pci, zr36067_pci_tbl); | 161 | MODULE_DEVICE_TABLE(pci, zr36067_pci_tbl); |
162 | 162 | ||
163 | int zoran_num; /* number of Buzs in use */ | 163 | int zoran_num; /* number of Buzs in use */ |
164 | struct zoran zoran[BUZ_MAX]; | 164 | struct zoran *zoran[BUZ_MAX]; |
165 | 165 | ||
166 | /* videocodec bus functions ZR36060 */ | 166 | /* videocodec bus functions ZR36060 */ |
167 | static u32 | 167 | static u32 |
@@ -355,9 +355,15 @@ i2cid_to_modulename (u16 i2c_id) | |||
355 | case I2C_DRIVERID_BT856: | 355 | case I2C_DRIVERID_BT856: |
356 | name = "bt856"; | 356 | name = "bt856"; |
357 | break; | 357 | break; |
358 | case I2C_DRIVERID_BT866: | ||
359 | name = "bt866"; | ||
360 | break; | ||
358 | case I2C_DRIVERID_VPX3220: | 361 | case I2C_DRIVERID_VPX3220: |
359 | name = "vpx3220"; | 362 | name = "vpx3220"; |
360 | break; | 363 | break; |
364 | case I2C_DRIVERID_KS0127: | ||
365 | name = "ks0127"; | ||
366 | break; | ||
361 | } | 367 | } |
362 | 368 | ||
363 | return name; | 369 | return name; |
@@ -1164,7 +1170,7 @@ static void | |||
1164 | zoran_release (struct zoran *zr) | 1170 | zoran_release (struct zoran *zr) |
1165 | { | 1171 | { |
1166 | if (!zr->initialized) | 1172 | if (!zr->initialized) |
1167 | return; | 1173 | goto exit_free; |
1168 | /* unregister videocodec bus */ | 1174 | /* unregister videocodec bus */ |
1169 | if (zr->codec) { | 1175 | if (zr->codec) { |
1170 | struct videocodec_master *master = zr->codec->master_data; | 1176 | struct videocodec_master *master = zr->codec->master_data; |
@@ -1192,6 +1198,8 @@ zoran_release (struct zoran *zr) | |||
1192 | iounmap(zr->zr36057_mem); | 1198 | iounmap(zr->zr36057_mem); |
1193 | pci_disable_device(zr->pci_dev); | 1199 | pci_disable_device(zr->pci_dev); |
1194 | video_unregister_device(zr->video_dev); | 1200 | video_unregister_device(zr->video_dev); |
1201 | exit_free: | ||
1202 | kfree(zr); | ||
1195 | } | 1203 | } |
1196 | 1204 | ||
1197 | void | 1205 | void |
@@ -1269,8 +1277,14 @@ find_zr36057 (void) | |||
1269 | while (zoran_num < BUZ_MAX && | 1277 | while (zoran_num < BUZ_MAX && |
1270 | (dev = pci_get_device(PCI_VENDOR_ID_ZORAN, PCI_DEVICE_ID_ZORAN_36057, dev)) != NULL) { | 1278 | (dev = pci_get_device(PCI_VENDOR_ID_ZORAN, PCI_DEVICE_ID_ZORAN_36057, dev)) != NULL) { |
1271 | card_num = card[zoran_num]; | 1279 | card_num = card[zoran_num]; |
1272 | zr = &zoran[zoran_num]; | 1280 | zr = kzalloc(sizeof(struct zoran), GFP_KERNEL); |
1273 | memset(zr, 0, sizeof(struct zoran)); // Just in case if previous cycle failed | 1281 | if (!zr) { |
1282 | dprintk(1, | ||
1283 | KERN_ERR | ||
1284 | "%s: find_zr36057() - kzalloc failed\n", | ||
1285 | ZORAN_NAME); | ||
1286 | continue; | ||
1287 | } | ||
1274 | zr->pci_dev = dev; | 1288 | zr->pci_dev = dev; |
1275 | //zr->zr36057_mem = NULL; | 1289 | //zr->zr36057_mem = NULL; |
1276 | zr->id = zoran_num; | 1290 | zr->id = zoran_num; |
@@ -1278,7 +1292,7 @@ find_zr36057 (void) | |||
1278 | spin_lock_init(&zr->spinlock); | 1292 | spin_lock_init(&zr->spinlock); |
1279 | mutex_init(&zr->resource_lock); | 1293 | mutex_init(&zr->resource_lock); |
1280 | if (pci_enable_device(dev)) | 1294 | if (pci_enable_device(dev)) |
1281 | continue; | 1295 | goto zr_free_mem; |
1282 | zr->zr36057_adr = pci_resource_start(zr->pci_dev, 0); | 1296 | zr->zr36057_adr = pci_resource_start(zr->pci_dev, 0); |
1283 | pci_read_config_byte(zr->pci_dev, PCI_CLASS_REVISION, | 1297 | pci_read_config_byte(zr->pci_dev, PCI_CLASS_REVISION, |
1284 | &zr->revision); | 1298 | &zr->revision); |
@@ -1294,7 +1308,7 @@ find_zr36057 (void) | |||
1294 | KERN_ERR | 1308 | KERN_ERR |
1295 | "%s: find_zr36057() - no card specified, please use the card=X insmod option\n", | 1309 | "%s: find_zr36057() - no card specified, please use the card=X insmod option\n", |
1296 | ZR_DEVNAME(zr)); | 1310 | ZR_DEVNAME(zr)); |
1297 | continue; | 1311 | goto zr_free_mem; |
1298 | } | 1312 | } |
1299 | } else { | 1313 | } else { |
1300 | int i; | 1314 | int i; |
@@ -1333,7 +1347,7 @@ find_zr36057 (void) | |||
1333 | KERN_ERR | 1347 | KERN_ERR |
1334 | "%s: find_zr36057() - unknown card\n", | 1348 | "%s: find_zr36057() - unknown card\n", |
1335 | ZR_DEVNAME(zr)); | 1349 | ZR_DEVNAME(zr)); |
1336 | continue; | 1350 | goto zr_free_mem; |
1337 | } | 1351 | } |
1338 | } | 1352 | } |
1339 | } | 1353 | } |
@@ -1343,7 +1357,7 @@ find_zr36057 (void) | |||
1343 | KERN_ERR | 1357 | KERN_ERR |
1344 | "%s: find_zr36057() - invalid cardnum %d\n", | 1358 | "%s: find_zr36057() - invalid cardnum %d\n", |
1345 | ZR_DEVNAME(zr), card_num); | 1359 | ZR_DEVNAME(zr), card_num); |
1346 | continue; | 1360 | goto zr_free_mem; |
1347 | } | 1361 | } |
1348 | 1362 | ||
1349 | /* even though we make this a non pointer and thus | 1363 | /* even though we make this a non pointer and thus |
@@ -1361,7 +1375,7 @@ find_zr36057 (void) | |||
1361 | KERN_ERR | 1375 | KERN_ERR |
1362 | "%s: find_zr36057() - ioremap failed\n", | 1376 | "%s: find_zr36057() - ioremap failed\n", |
1363 | ZR_DEVNAME(zr)); | 1377 | ZR_DEVNAME(zr)); |
1364 | continue; | 1378 | goto zr_free_mem; |
1365 | } | 1379 | } |
1366 | 1380 | ||
1367 | result = request_irq(zr->pci_dev->irq, | 1381 | result = request_irq(zr->pci_dev->irq, |
@@ -1530,7 +1544,7 @@ find_zr36057 (void) | |||
1530 | } | 1544 | } |
1531 | /* Success so keep the pci_dev referenced */ | 1545 | /* Success so keep the pci_dev referenced */ |
1532 | pci_dev_get(zr->pci_dev); | 1546 | pci_dev_get(zr->pci_dev); |
1533 | zoran_num++; | 1547 | zoran[zoran_num++] = zr; |
1534 | continue; | 1548 | continue; |
1535 | 1549 | ||
1536 | // Init errors | 1550 | // Init errors |
@@ -1549,6 +1563,8 @@ find_zr36057 (void) | |||
1549 | free_irq(zr->pci_dev->irq, zr); | 1563 | free_irq(zr->pci_dev->irq, zr); |
1550 | zr_unmap: | 1564 | zr_unmap: |
1551 | iounmap(zr->zr36057_mem); | 1565 | iounmap(zr->zr36057_mem); |
1566 | zr_free_mem: | ||
1567 | kfree(zr); | ||
1552 | continue; | 1568 | continue; |
1553 | } | 1569 | } |
1554 | if (dev) /* Clean up ref count on early exit */ | 1570 | if (dev) /* Clean up ref count on early exit */ |
@@ -1620,7 +1636,7 @@ init_dc10_cards (void) | |||
1620 | 1636 | ||
1621 | /* take care of Natoma chipset and a revision 1 zr36057 */ | 1637 | /* take care of Natoma chipset and a revision 1 zr36057 */ |
1622 | for (i = 0; i < zoran_num; i++) { | 1638 | for (i = 0; i < zoran_num; i++) { |
1623 | struct zoran *zr = &zoran[i]; | 1639 | struct zoran *zr = zoran[i]; |
1624 | 1640 | ||
1625 | if ((pci_pci_problems & PCIPCI_NATOMA) && zr->revision <= 1) { | 1641 | if ((pci_pci_problems & PCIPCI_NATOMA) && zr->revision <= 1) { |
1626 | zr->jpg_buffers.need_contiguous = 1; | 1642 | zr->jpg_buffers.need_contiguous = 1; |
@@ -1632,7 +1648,7 @@ init_dc10_cards (void) | |||
1632 | 1648 | ||
1633 | if (zr36057_init(zr) < 0) { | 1649 | if (zr36057_init(zr) < 0) { |
1634 | for (i = 0; i < zoran_num; i++) | 1650 | for (i = 0; i < zoran_num; i++) |
1635 | zoran_release(&zoran[i]); | 1651 | zoran_release(zoran[i]); |
1636 | return -EIO; | 1652 | return -EIO; |
1637 | } | 1653 | } |
1638 | zoran_proc_init(zr); | 1654 | zoran_proc_init(zr); |
@@ -1647,7 +1663,7 @@ unload_dc10_cards (void) | |||
1647 | int i; | 1663 | int i; |
1648 | 1664 | ||
1649 | for (i = 0; i < zoran_num; i++) | 1665 | for (i = 0; i < zoran_num; i++) |
1650 | zoran_release(&zoran[i]); | 1666 | zoran_release(zoran[i]); |
1651 | } | 1667 | } |
1652 | 1668 | ||
1653 | module_init(init_dc10_cards); | 1669 | module_init(init_dc10_cards); |
diff --git a/drivers/media/video/zoran_card.h b/drivers/media/video/zoran_card.h index 1b5c4171cf9c..e4dc9d29b404 100644 --- a/drivers/media/video/zoran_card.h +++ b/drivers/media/video/zoran_card.h | |||
@@ -41,7 +41,7 @@ extern int zr36067_debug; | |||
41 | /* Anybody who uses more than four? */ | 41 | /* Anybody who uses more than four? */ |
42 | #define BUZ_MAX 4 | 42 | #define BUZ_MAX 4 |
43 | extern int zoran_num; | 43 | extern int zoran_num; |
44 | extern struct zoran zoran[BUZ_MAX]; | 44 | extern struct zoran *zoran[BUZ_MAX]; |
45 | 45 | ||
46 | extern struct video_device zoran_template; | 46 | extern struct video_device zoran_template; |
47 | 47 | ||
diff --git a/drivers/media/video/zoran_driver.c b/drivers/media/video/zoran_driver.c index c0675921fe20..ec6f59674b10 100644 --- a/drivers/media/video/zoran_driver.c +++ b/drivers/media/video/zoran_driver.c | |||
@@ -71,6 +71,7 @@ | |||
71 | 71 | ||
72 | #include <linux/videodev.h> | 72 | #include <linux/videodev.h> |
73 | #include <media/v4l2-common.h> | 73 | #include <media/v4l2-common.h> |
74 | #include <media/v4l2-ioctl.h> | ||
74 | #include "videocodec.h" | 75 | #include "videocodec.h" |
75 | 76 | ||
76 | #include <asm/byteorder.h> | 77 | #include <asm/byteorder.h> |
@@ -1212,8 +1213,8 @@ zoran_open (struct inode *inode, | |||
1212 | 1213 | ||
1213 | /* find the device */ | 1214 | /* find the device */ |
1214 | for (i = 0; i < zoran_num; i++) { | 1215 | for (i = 0; i < zoran_num; i++) { |
1215 | if (zoran[i].video_dev->minor == minor) { | 1216 | if (zoran[i]->video_dev->minor == minor) { |
1216 | zr = &zoran[i]; | 1217 | zr = zoran[i]; |
1217 | break; | 1218 | break; |
1218 | } | 1219 | } |
1219 | } | 1220 | } |
@@ -4643,8 +4644,6 @@ static const struct file_operations zoran_fops = { | |||
4643 | 4644 | ||
4644 | struct video_device zoran_template __devinitdata = { | 4645 | struct video_device zoran_template __devinitdata = { |
4645 | .name = ZORAN_NAME, | 4646 | .name = ZORAN_NAME, |
4646 | .type = ZORAN_VID_TYPE, | ||
4647 | .type2 = ZORAN_V4L2_VID_FLAGS, | ||
4648 | .fops = &zoran_fops, | 4647 | .fops = &zoran_fops, |
4649 | .release = &zoran_vdev_release, | 4648 | .release = &zoran_vdev_release, |
4650 | .minor = -1 | 4649 | .minor = -1 |
diff --git a/drivers/media/video/zr364xx.c b/drivers/media/video/zr364xx.c index 485df2e36132..18d1c4ba79fb 100644 --- a/drivers/media/video/zr364xx.c +++ b/drivers/media/video/zr364xx.c | |||
@@ -35,6 +35,7 @@ | |||
35 | #include <linux/proc_fs.h> | 35 | #include <linux/proc_fs.h> |
36 | #include <linux/highmem.h> | 36 | #include <linux/highmem.h> |
37 | #include <media/v4l2-common.h> | 37 | #include <media/v4l2-common.h> |
38 | #include <media/v4l2-ioctl.h> | ||
38 | 39 | ||
39 | 40 | ||
40 | /* Version Information */ | 41 | /* Version Information */ |
@@ -761,14 +762,7 @@ static const struct file_operations zr364xx_fops = { | |||
761 | .llseek = no_llseek, | 762 | .llseek = no_llseek, |
762 | }; | 763 | }; |
763 | 764 | ||
764 | static struct video_device zr364xx_template = { | 765 | static const struct v4l2_ioctl_ops zr364xx_ioctl_ops = { |
765 | .owner = THIS_MODULE, | ||
766 | .name = DRIVER_DESC, | ||
767 | .type = VID_TYPE_CAPTURE, | ||
768 | .fops = &zr364xx_fops, | ||
769 | .release = video_device_release, | ||
770 | .minor = -1, | ||
771 | |||
772 | .vidioc_querycap = zr364xx_vidioc_querycap, | 766 | .vidioc_querycap = zr364xx_vidioc_querycap, |
773 | .vidioc_enum_fmt_vid_cap = zr364xx_vidioc_enum_fmt_vid_cap, | 767 | .vidioc_enum_fmt_vid_cap = zr364xx_vidioc_enum_fmt_vid_cap, |
774 | .vidioc_try_fmt_vid_cap = zr364xx_vidioc_try_fmt_vid_cap, | 768 | .vidioc_try_fmt_vid_cap = zr364xx_vidioc_try_fmt_vid_cap, |
@@ -784,6 +778,14 @@ static struct video_device zr364xx_template = { | |||
784 | .vidioc_s_ctrl = zr364xx_vidioc_s_ctrl, | 778 | .vidioc_s_ctrl = zr364xx_vidioc_s_ctrl, |
785 | }; | 779 | }; |
786 | 780 | ||
781 | static struct video_device zr364xx_template = { | ||
782 | .name = DRIVER_DESC, | ||
783 | .fops = &zr364xx_fops, | ||
784 | .ioctl_ops = &zr364xx_ioctl_ops, | ||
785 | .release = video_device_release, | ||
786 | .minor = -1, | ||
787 | }; | ||
788 | |||
787 | 789 | ||
788 | 790 | ||
789 | /*******************/ | 791 | /*******************/ |
diff --git a/drivers/mfd/mfd-core.c b/drivers/mfd/mfd-core.c index 0454be4266c1..9c9c126ed334 100644 --- a/drivers/mfd/mfd-core.c +++ b/drivers/mfd/mfd-core.c | |||
@@ -15,24 +15,24 @@ | |||
15 | #include <linux/platform_device.h> | 15 | #include <linux/platform_device.h> |
16 | #include <linux/mfd/core.h> | 16 | #include <linux/mfd/core.h> |
17 | 17 | ||
18 | static int mfd_add_device(struct platform_device *parent, | 18 | static int mfd_add_device(struct device *parent, int id, |
19 | const struct mfd_cell *cell, | 19 | const struct mfd_cell *cell, |
20 | struct resource *mem_base, | 20 | struct resource *mem_base, |
21 | int irq_base) | 21 | int irq_base) |
22 | { | 22 | { |
23 | struct resource res[cell->num_resources]; | 23 | struct resource res[cell->num_resources]; |
24 | struct platform_device *pdev; | 24 | struct platform_device *pdev; |
25 | int ret = -ENOMEM; | 25 | int ret = -ENOMEM; |
26 | int r; | 26 | int r; |
27 | 27 | ||
28 | pdev = platform_device_alloc(cell->name, parent->id); | 28 | pdev = platform_device_alloc(cell->name, id); |
29 | if (!pdev) | 29 | if (!pdev) |
30 | goto fail_alloc; | 30 | goto fail_alloc; |
31 | 31 | ||
32 | pdev->dev.parent = &parent->dev; | 32 | pdev->dev.parent = parent; |
33 | 33 | ||
34 | ret = platform_device_add_data(pdev, | 34 | ret = platform_device_add_data(pdev, |
35 | cell, sizeof(struct mfd_cell)); | 35 | cell->platform_data, cell->data_size); |
36 | if (ret) | 36 | if (ret) |
37 | goto fail_device; | 37 | goto fail_device; |
38 | 38 | ||
@@ -75,17 +75,16 @@ fail_alloc: | |||
75 | return ret; | 75 | return ret; |
76 | } | 76 | } |
77 | 77 | ||
78 | int mfd_add_devices( | 78 | int mfd_add_devices(struct device *parent, int id, |
79 | struct platform_device *parent, | 79 | const struct mfd_cell *cells, int n_devs, |
80 | const struct mfd_cell *cells, int n_devs, | 80 | struct resource *mem_base, |
81 | struct resource *mem_base, | 81 | int irq_base) |
82 | int irq_base) | ||
83 | { | 82 | { |
84 | int i; | 83 | int i; |
85 | int ret = 0; | 84 | int ret = 0; |
86 | 85 | ||
87 | for (i = 0; i < n_devs; i++) { | 86 | for (i = 0; i < n_devs; i++) { |
88 | ret = mfd_add_device(parent, cells + i, mem_base, irq_base); | 87 | ret = mfd_add_device(parent, id, cells + i, mem_base, irq_base); |
89 | if (ret) | 88 | if (ret) |
90 | break; | 89 | break; |
91 | } | 90 | } |
@@ -99,14 +98,13 @@ EXPORT_SYMBOL(mfd_add_devices); | |||
99 | 98 | ||
100 | static int mfd_remove_devices_fn(struct device *dev, void *unused) | 99 | static int mfd_remove_devices_fn(struct device *dev, void *unused) |
101 | { | 100 | { |
102 | platform_device_unregister( | 101 | platform_device_unregister(to_platform_device(dev)); |
103 | container_of(dev, struct platform_device, dev)); | ||
104 | return 0; | 102 | return 0; |
105 | } | 103 | } |
106 | 104 | ||
107 | void mfd_remove_devices(struct platform_device *parent) | 105 | void mfd_remove_devices(struct device *parent) |
108 | { | 106 | { |
109 | device_for_each_child(&parent->dev, NULL, mfd_remove_devices_fn); | 107 | device_for_each_child(parent, NULL, mfd_remove_devices_fn); |
110 | } | 108 | } |
111 | EXPORT_SYMBOL(mfd_remove_devices); | 109 | EXPORT_SYMBOL(mfd_remove_devices); |
112 | 110 | ||
diff --git a/drivers/mfd/tc6393xb.c b/drivers/mfd/tc6393xb.c index 94e55e8e7ce6..f4fd797c1590 100644 --- a/drivers/mfd/tc6393xb.c +++ b/drivers/mfd/tc6393xb.c | |||
@@ -466,8 +466,12 @@ static int __devinit tc6393xb_probe(struct platform_device *dev) | |||
466 | tc6393xb_attach_irq(dev); | 466 | tc6393xb_attach_irq(dev); |
467 | 467 | ||
468 | tc6393xb_cells[TC6393XB_CELL_NAND].driver_data = tcpd->nand_data; | 468 | tc6393xb_cells[TC6393XB_CELL_NAND].driver_data = tcpd->nand_data; |
469 | tc6393xb_cells[TC6393XB_CELL_NAND].platform_data = | ||
470 | &tc6393xb_cells[TC6393XB_CELL_NAND]; | ||
471 | tc6393xb_cells[TC6393XB_CELL_NAND].data_size = | ||
472 | sizeof(tc6393xb_cells[TC6393XB_CELL_NAND]); | ||
469 | 473 | ||
470 | retval = mfd_add_devices(dev, | 474 | retval = mfd_add_devices(&dev->dev, dev->id, |
471 | tc6393xb_cells, ARRAY_SIZE(tc6393xb_cells), | 475 | tc6393xb_cells, ARRAY_SIZE(tc6393xb_cells), |
472 | iomem, tcpd->irq_base); | 476 | iomem, tcpd->irq_base); |
473 | 477 | ||
@@ -501,7 +505,7 @@ static int __devexit tc6393xb_remove(struct platform_device *dev) | |||
501 | struct tc6393xb *tc6393xb = platform_get_drvdata(dev); | 505 | struct tc6393xb *tc6393xb = platform_get_drvdata(dev); |
502 | int ret; | 506 | int ret; |
503 | 507 | ||
504 | mfd_remove_devices(dev); | 508 | mfd_remove_devices(&dev->dev); |
505 | 509 | ||
506 | if (tc6393xb->irq) | 510 | if (tc6393xb->irq) |
507 | tc6393xb_detach_irq(dev); | 511 | tc6393xb_detach_irq(dev); |
diff --git a/drivers/misc/sgi-xp/xpc_main.c b/drivers/misc/sgi-xp/xpc_main.c index 579b01ff82d4..c3b4227f48a5 100644 --- a/drivers/misc/sgi-xp/xpc_main.c +++ b/drivers/misc/sgi-xp/xpc_main.c | |||
@@ -229,11 +229,10 @@ xpc_hb_checker(void *ignore) | |||
229 | int last_IRQ_count = 0; | 229 | int last_IRQ_count = 0; |
230 | int new_IRQ_count; | 230 | int new_IRQ_count; |
231 | int force_IRQ = 0; | 231 | int force_IRQ = 0; |
232 | cpumask_of_cpu_ptr(cpumask, XPC_HB_CHECK_CPU); | ||
233 | 232 | ||
234 | /* this thread was marked active by xpc_hb_init() */ | 233 | /* this thread was marked active by xpc_hb_init() */ |
235 | 234 | ||
236 | set_cpus_allowed_ptr(current, cpumask); | 235 | set_cpus_allowed_ptr(current, &cpumask_of_cpu(XPC_HB_CHECK_CPU)); |
237 | 236 | ||
238 | /* set our heartbeating to other partitions into motion */ | 237 | /* set our heartbeating to other partitions into motion */ |
239 | xpc_hb_check_timeout = jiffies + (xpc_hb_check_interval * HZ); | 238 | xpc_hb_check_timeout = jiffies + (xpc_hb_check_interval * HZ); |
diff --git a/drivers/net/ibmveth.c b/drivers/net/ibmveth.c index 91ec9fdc7184..a03fe1fb61ca 100644 --- a/drivers/net/ibmveth.c +++ b/drivers/net/ibmveth.c | |||
@@ -260,7 +260,7 @@ static void ibmveth_replenish_buffer_pool(struct ibmveth_adapter *adapter, struc | |||
260 | dma_addr = dma_map_single(&adapter->vdev->dev, skb->data, | 260 | dma_addr = dma_map_single(&adapter->vdev->dev, skb->data, |
261 | pool->buff_size, DMA_FROM_DEVICE); | 261 | pool->buff_size, DMA_FROM_DEVICE); |
262 | 262 | ||
263 | if (dma_mapping_error((&adapter->vdev->dev, dma_addr)) | 263 | if (dma_mapping_error(&adapter->vdev->dev, dma_addr)) |
264 | goto failure; | 264 | goto failure; |
265 | 265 | ||
266 | pool->free_map[free_index] = IBM_VETH_INVALID_MAP; | 266 | pool->free_map[free_index] = IBM_VETH_INVALID_MAP; |
@@ -294,7 +294,7 @@ failure: | |||
294 | pool->consumer_index = pool->size - 1; | 294 | pool->consumer_index = pool->size - 1; |
295 | else | 295 | else |
296 | pool->consumer_index--; | 296 | pool->consumer_index--; |
297 | if (!dma_mapping_error((&adapter->vdev->dev, dma_addr)) | 297 | if (!dma_mapping_error(&adapter->vdev->dev, dma_addr)) |
298 | dma_unmap_single(&adapter->vdev->dev, | 298 | dma_unmap_single(&adapter->vdev->dev, |
299 | pool->dma_addr[index], pool->buff_size, | 299 | pool->dma_addr[index], pool->buff_size, |
300 | DMA_FROM_DEVICE); | 300 | DMA_FROM_DEVICE); |
@@ -488,7 +488,7 @@ static void ibmveth_cleanup(struct ibmveth_adapter *adapter) | |||
488 | &adapter->rx_buff_pool[i]); | 488 | &adapter->rx_buff_pool[i]); |
489 | 489 | ||
490 | if (adapter->bounce_buffer != NULL) { | 490 | if (adapter->bounce_buffer != NULL) { |
491 | if (!dma_mapping_error(adapter->bounce_buffer_dma)) { | 491 | if (!dma_mapping_error(dev, adapter->bounce_buffer_dma)) { |
492 | dma_unmap_single(&adapter->vdev->dev, | 492 | dma_unmap_single(&adapter->vdev->dev, |
493 | adapter->bounce_buffer_dma, | 493 | adapter->bounce_buffer_dma, |
494 | adapter->netdev->mtu + IBMVETH_BUFF_OH, | 494 | adapter->netdev->mtu + IBMVETH_BUFF_OH, |
@@ -924,7 +924,7 @@ static int ibmveth_start_xmit(struct sk_buff *skb, struct net_device *netdev) | |||
924 | buf[1] = 0; | 924 | buf[1] = 0; |
925 | } | 925 | } |
926 | 926 | ||
927 | if (dma_mapping_error((&adapter->vdev->dev, data_dma_addr)) { | 927 | if (dma_mapping_error(&adapter->vdev->dev, data_dma_addr)) { |
928 | if (!firmware_has_feature(FW_FEATURE_CMO)) | 928 | if (!firmware_has_feature(FW_FEATURE_CMO)) |
929 | ibmveth_error_printk("tx: unable to map xmit buffer\n"); | 929 | ibmveth_error_printk("tx: unable to map xmit buffer\n"); |
930 | skb_copy_from_linear_data(skb, adapter->bounce_buffer, | 930 | skb_copy_from_linear_data(skb, adapter->bounce_buffer, |
diff --git a/drivers/of/Kconfig b/drivers/of/Kconfig index 1d7ec3129349..f821dbc952a4 100644 --- a/drivers/of/Kconfig +++ b/drivers/of/Kconfig | |||
@@ -13,3 +13,9 @@ config OF_I2C | |||
13 | depends on PPC_OF && I2C | 13 | depends on PPC_OF && I2C |
14 | help | 14 | help |
15 | OpenFirmware I2C accessors | 15 | OpenFirmware I2C accessors |
16 | |||
17 | config OF_SPI | ||
18 | def_tristate SPI | ||
19 | depends on OF && PPC_OF && SPI | ||
20 | help | ||
21 | OpenFirmware SPI accessors | ||
diff --git a/drivers/of/Makefile b/drivers/of/Makefile index 548772e871fd..4c3c6f8e36f5 100644 --- a/drivers/of/Makefile +++ b/drivers/of/Makefile | |||
@@ -2,3 +2,4 @@ obj-y = base.o | |||
2 | obj-$(CONFIG_OF_DEVICE) += device.o platform.o | 2 | obj-$(CONFIG_OF_DEVICE) += device.o platform.o |
3 | obj-$(CONFIG_OF_GPIO) += gpio.o | 3 | obj-$(CONFIG_OF_GPIO) += gpio.o |
4 | obj-$(CONFIG_OF_I2C) += of_i2c.o | 4 | obj-$(CONFIG_OF_I2C) += of_i2c.o |
5 | obj-$(CONFIG_OF_SPI) += of_spi.o | ||
diff --git a/drivers/of/base.c b/drivers/of/base.c index 23ffb7c0caf2..ad8ac1a8af28 100644 --- a/drivers/of/base.c +++ b/drivers/of/base.c | |||
@@ -385,3 +385,91 @@ struct device_node *of_find_matching_node(struct device_node *from, | |||
385 | return np; | 385 | return np; |
386 | } | 386 | } |
387 | EXPORT_SYMBOL(of_find_matching_node); | 387 | EXPORT_SYMBOL(of_find_matching_node); |
388 | |||
389 | /** | ||
390 | * of_modalias_table: Table of explicit compatible ==> modalias mappings | ||
391 | * | ||
392 | * This table allows particulare compatible property values to be mapped | ||
393 | * to modalias strings. This is useful for busses which do not directly | ||
394 | * understand the OF device tree but are populated based on data contained | ||
395 | * within the device tree. SPI and I2C are the two current users of this | ||
396 | * table. | ||
397 | * | ||
398 | * In most cases, devices do not need to be listed in this table because | ||
399 | * the modalias value can be derived directly from the compatible table. | ||
400 | * However, if for any reason a value cannot be derived, then this table | ||
401 | * provides a method to override the implicit derivation. | ||
402 | * | ||
403 | * At the moment, a single table is used for all bus types because it is | ||
404 | * assumed that the data size is small and that the compatible values | ||
405 | * should already be distinct enough to differentiate between SPI, I2C | ||
406 | * and other devices. | ||
407 | */ | ||
408 | struct of_modalias_table { | ||
409 | char *of_device; | ||
410 | char *modalias; | ||
411 | }; | ||
412 | static struct of_modalias_table of_modalias_table[] = { | ||
413 | /* Empty for now; add entries as needed */ | ||
414 | }; | ||
415 | |||
416 | /** | ||
417 | * of_modalias_node - Lookup appropriate modalias for a device node | ||
418 | * @node: pointer to a device tree node | ||
419 | * @modalias: Pointer to buffer that modalias value will be copied into | ||
420 | * @len: Length of modalias value | ||
421 | * | ||
422 | * Based on the value of the compatible property, this routine will determine | ||
423 | * an appropriate modalias value for a particular device tree node. Three | ||
424 | * separate methods are used to derive a modalias value. | ||
425 | * | ||
426 | * First method is to lookup the compatible value in of_modalias_table. | ||
427 | * Second is to look for a "linux,<modalias>" entry in the compatible list | ||
428 | * and used that for modalias. Third is to strip off the manufacturer | ||
429 | * prefix from the first compatible entry and use the remainder as modalias | ||
430 | * | ||
431 | * This routine returns 0 on success | ||
432 | */ | ||
433 | int of_modalias_node(struct device_node *node, char *modalias, int len) | ||
434 | { | ||
435 | int i, cplen; | ||
436 | const char *compatible; | ||
437 | const char *p; | ||
438 | |||
439 | /* 1. search for exception list entry */ | ||
440 | for (i = 0; i < ARRAY_SIZE(of_modalias_table); i++) { | ||
441 | compatible = of_modalias_table[i].of_device; | ||
442 | if (!of_device_is_compatible(node, compatible)) | ||
443 | continue; | ||
444 | strlcpy(modalias, of_modalias_table[i].modalias, len); | ||
445 | return 0; | ||
446 | } | ||
447 | |||
448 | compatible = of_get_property(node, "compatible", &cplen); | ||
449 | if (!compatible) | ||
450 | return -ENODEV; | ||
451 | |||
452 | /* 2. search for linux,<modalias> entry */ | ||
453 | p = compatible; | ||
454 | while (cplen > 0) { | ||
455 | if (!strncmp(p, "linux,", 6)) { | ||
456 | p += 6; | ||
457 | strlcpy(modalias, p, len); | ||
458 | return 0; | ||
459 | } | ||
460 | |||
461 | i = strlen(p) + 1; | ||
462 | p += i; | ||
463 | cplen -= i; | ||
464 | } | ||
465 | |||
466 | /* 3. take first compatible entry and strip manufacturer */ | ||
467 | p = strchr(compatible, ','); | ||
468 | if (!p) | ||
469 | return -ENODEV; | ||
470 | p++; | ||
471 | strlcpy(modalias, p, len); | ||
472 | return 0; | ||
473 | } | ||
474 | EXPORT_SYMBOL_GPL(of_modalias_node); | ||
475 | |||
diff --git a/drivers/of/of_i2c.c b/drivers/of/of_i2c.c index 344e1b03dd8b..6a98dc8aa30b 100644 --- a/drivers/of/of_i2c.c +++ b/drivers/of/of_i2c.c | |||
@@ -16,62 +16,6 @@ | |||
16 | #include <linux/of_i2c.h> | 16 | #include <linux/of_i2c.h> |
17 | #include <linux/module.h> | 17 | #include <linux/module.h> |
18 | 18 | ||
19 | struct i2c_driver_device { | ||
20 | char *of_device; | ||
21 | char *i2c_type; | ||
22 | }; | ||
23 | |||
24 | static struct i2c_driver_device i2c_devices[] = { | ||
25 | }; | ||
26 | |||
27 | static int of_find_i2c_driver(struct device_node *node, | ||
28 | struct i2c_board_info *info) | ||
29 | { | ||
30 | int i, cplen; | ||
31 | const char *compatible; | ||
32 | const char *p; | ||
33 | |||
34 | /* 1. search for exception list entry */ | ||
35 | for (i = 0; i < ARRAY_SIZE(i2c_devices); i++) { | ||
36 | if (!of_device_is_compatible(node, i2c_devices[i].of_device)) | ||
37 | continue; | ||
38 | if (strlcpy(info->type, i2c_devices[i].i2c_type, | ||
39 | I2C_NAME_SIZE) >= I2C_NAME_SIZE) | ||
40 | return -ENOMEM; | ||
41 | |||
42 | return 0; | ||
43 | } | ||
44 | |||
45 | compatible = of_get_property(node, "compatible", &cplen); | ||
46 | if (!compatible) | ||
47 | return -ENODEV; | ||
48 | |||
49 | /* 2. search for linux,<i2c-type> entry */ | ||
50 | p = compatible; | ||
51 | while (cplen > 0) { | ||
52 | if (!strncmp(p, "linux,", 6)) { | ||
53 | p += 6; | ||
54 | if (strlcpy(info->type, p, | ||
55 | I2C_NAME_SIZE) >= I2C_NAME_SIZE) | ||
56 | return -ENOMEM; | ||
57 | return 0; | ||
58 | } | ||
59 | |||
60 | i = strlen(p) + 1; | ||
61 | p += i; | ||
62 | cplen -= i; | ||
63 | } | ||
64 | |||
65 | /* 3. take fist compatible entry and strip manufacturer */ | ||
66 | p = strchr(compatible, ','); | ||
67 | if (!p) | ||
68 | return -ENODEV; | ||
69 | p++; | ||
70 | if (strlcpy(info->type, p, I2C_NAME_SIZE) >= I2C_NAME_SIZE) | ||
71 | return -ENOMEM; | ||
72 | return 0; | ||
73 | } | ||
74 | |||
75 | void of_register_i2c_devices(struct i2c_adapter *adap, | 19 | void of_register_i2c_devices(struct i2c_adapter *adap, |
76 | struct device_node *adap_node) | 20 | struct device_node *adap_node) |
77 | { | 21 | { |
@@ -83,6 +27,9 @@ void of_register_i2c_devices(struct i2c_adapter *adap, | |||
83 | const u32 *addr; | 27 | const u32 *addr; |
84 | int len; | 28 | int len; |
85 | 29 | ||
30 | if (of_modalias_node(node, info.type, sizeof(info.type)) < 0) | ||
31 | continue; | ||
32 | |||
86 | addr = of_get_property(node, "reg", &len); | 33 | addr = of_get_property(node, "reg", &len); |
87 | if (!addr || len < sizeof(int) || *addr > (1 << 10) - 1) { | 34 | if (!addr || len < sizeof(int) || *addr > (1 << 10) - 1) { |
88 | printk(KERN_ERR | 35 | printk(KERN_ERR |
@@ -92,11 +39,6 @@ void of_register_i2c_devices(struct i2c_adapter *adap, | |||
92 | 39 | ||
93 | info.irq = irq_of_parse_and_map(node, 0); | 40 | info.irq = irq_of_parse_and_map(node, 0); |
94 | 41 | ||
95 | if (of_find_i2c_driver(node, &info) < 0) { | ||
96 | irq_dispose_mapping(info.irq); | ||
97 | continue; | ||
98 | } | ||
99 | |||
100 | info.addr = *addr; | 42 | info.addr = *addr; |
101 | 43 | ||
102 | request_module(info.type); | 44 | request_module(info.type); |
diff --git a/drivers/of/of_spi.c b/drivers/of/of_spi.c new file mode 100644 index 000000000000..b01eec026f68 --- /dev/null +++ b/drivers/of/of_spi.c | |||
@@ -0,0 +1,93 @@ | |||
1 | /* | ||
2 | * SPI OF support routines | ||
3 | * Copyright (C) 2008 Secret Lab Technologies Ltd. | ||
4 | * | ||
5 | * Support routines for deriving SPI device attachments from the device | ||
6 | * tree. | ||
7 | */ | ||
8 | |||
9 | #include <linux/of.h> | ||
10 | #include <linux/device.h> | ||
11 | #include <linux/spi/spi.h> | ||
12 | #include <linux/of_spi.h> | ||
13 | |||
14 | /** | ||
15 | * of_register_spi_devices - Register child devices onto the SPI bus | ||
16 | * @master: Pointer to spi_master device | ||
17 | * @np: parent node of SPI device nodes | ||
18 | * | ||
19 | * Registers an spi_device for each child node of 'np' which has a 'reg' | ||
20 | * property. | ||
21 | */ | ||
22 | void of_register_spi_devices(struct spi_master *master, struct device_node *np) | ||
23 | { | ||
24 | struct spi_device *spi; | ||
25 | struct device_node *nc; | ||
26 | const u32 *prop; | ||
27 | int rc; | ||
28 | int len; | ||
29 | |||
30 | for_each_child_of_node(np, nc) { | ||
31 | /* Alloc an spi_device */ | ||
32 | spi = spi_alloc_device(master); | ||
33 | if (!spi) { | ||
34 | dev_err(&master->dev, "spi_device alloc error for %s\n", | ||
35 | nc->full_name); | ||
36 | spi_dev_put(spi); | ||
37 | continue; | ||
38 | } | ||
39 | |||
40 | /* Select device driver */ | ||
41 | if (of_modalias_node(nc, spi->modalias, | ||
42 | sizeof(spi->modalias)) < 0) { | ||
43 | dev_err(&master->dev, "cannot find modalias for %s\n", | ||
44 | nc->full_name); | ||
45 | spi_dev_put(spi); | ||
46 | continue; | ||
47 | } | ||
48 | |||
49 | /* Device address */ | ||
50 | prop = of_get_property(nc, "reg", &len); | ||
51 | if (!prop || len < sizeof(*prop)) { | ||
52 | dev_err(&master->dev, "%s has no 'reg' property\n", | ||
53 | nc->full_name); | ||
54 | spi_dev_put(spi); | ||
55 | continue; | ||
56 | } | ||
57 | spi->chip_select = *prop; | ||
58 | |||
59 | /* Mode (clock phase/polarity/etc.) */ | ||
60 | if (of_find_property(nc, "spi-cpha", NULL)) | ||
61 | spi->mode |= SPI_CPHA; | ||
62 | if (of_find_property(nc, "spi-cpol", NULL)) | ||
63 | spi->mode |= SPI_CPOL; | ||
64 | |||
65 | /* Device speed */ | ||
66 | prop = of_get_property(nc, "spi-max-frequency", &len); | ||
67 | if (!prop || len < sizeof(*prop)) { | ||
68 | dev_err(&master->dev, "%s has no 'spi-max-frequency' property\n", | ||
69 | nc->full_name); | ||
70 | spi_dev_put(spi); | ||
71 | continue; | ||
72 | } | ||
73 | spi->max_speed_hz = *prop; | ||
74 | |||
75 | /* IRQ */ | ||
76 | spi->irq = irq_of_parse_and_map(nc, 0); | ||
77 | |||
78 | /* Store a pointer to the node in the device structure */ | ||
79 | of_node_get(nc); | ||
80 | spi->dev.archdata.of_node = nc; | ||
81 | |||
82 | /* Register the new device */ | ||
83 | request_module(spi->modalias); | ||
84 | rc = spi_add_device(spi); | ||
85 | if (rc) { | ||
86 | dev_err(&master->dev, "spi_device register error %s\n", | ||
87 | nc->full_name); | ||
88 | spi_dev_put(spi); | ||
89 | } | ||
90 | |||
91 | } | ||
92 | } | ||
93 | EXPORT_SYMBOL(of_register_spi_devices); | ||
diff --git a/drivers/pci/hotplug/pciehp_hpc.c b/drivers/pci/hotplug/pciehp_hpc.c index 1323a43285d7..ad27e9e225a6 100644 --- a/drivers/pci/hotplug/pciehp_hpc.c +++ b/drivers/pci/hotplug/pciehp_hpc.c | |||
@@ -1103,7 +1103,7 @@ static inline void dbg_ctrl(struct controller *ctrl) | |||
1103 | dbg(" Power Indicator : %3s\n", PWR_LED(ctrl) ? "yes" : "no"); | 1103 | dbg(" Power Indicator : %3s\n", PWR_LED(ctrl) ? "yes" : "no"); |
1104 | dbg(" Hot-Plug Surprise : %3s\n", HP_SUPR_RM(ctrl) ? "yes" : "no"); | 1104 | dbg(" Hot-Plug Surprise : %3s\n", HP_SUPR_RM(ctrl) ? "yes" : "no"); |
1105 | dbg(" EMI Present : %3s\n", EMI(ctrl) ? "yes" : "no"); | 1105 | dbg(" EMI Present : %3s\n", EMI(ctrl) ? "yes" : "no"); |
1106 | dbg(" Comamnd Completed : %3s\n", NO_CMD_CMPL(ctrl)? "no" : "yes"); | 1106 | dbg(" Command Completed : %3s\n", NO_CMD_CMPL(ctrl)? "no" : "yes"); |
1107 | pciehp_readw(ctrl, SLOTSTATUS, ®16); | 1107 | pciehp_readw(ctrl, SLOTSTATUS, ®16); |
1108 | dbg("Slot Status : 0x%04x\n", reg16); | 1108 | dbg("Slot Status : 0x%04x\n", reg16); |
1109 | pciehp_readw(ctrl, SLOTCTRL, ®16); | 1109 | pciehp_readw(ctrl, SLOTCTRL, ®16); |
diff --git a/drivers/pci/msi.c b/drivers/pci/msi.c index 15af618d36e2..18354817173c 100644 --- a/drivers/pci/msi.c +++ b/drivers/pci/msi.c | |||
@@ -126,7 +126,16 @@ static void msix_flush_writes(unsigned int irq) | |||
126 | } | 126 | } |
127 | } | 127 | } |
128 | 128 | ||
129 | static void msi_set_mask_bits(unsigned int irq, u32 mask, u32 flag) | 129 | /* |
130 | * PCI 2.3 does not specify mask bits for each MSI interrupt. Attempting to | ||
131 | * mask all MSI interrupts by clearing the MSI enable bit does not work | ||
132 | * reliably as devices without an INTx disable bit will then generate a | ||
133 | * level IRQ which will never be cleared. | ||
134 | * | ||
135 | * Returns 1 if it succeeded in masking the interrupt and 0 if the device | ||
136 | * doesn't support MSI masking. | ||
137 | */ | ||
138 | static int msi_set_mask_bits(unsigned int irq, u32 mask, u32 flag) | ||
130 | { | 139 | { |
131 | struct msi_desc *entry; | 140 | struct msi_desc *entry; |
132 | 141 | ||
@@ -144,8 +153,7 @@ static void msi_set_mask_bits(unsigned int irq, u32 mask, u32 flag) | |||
144 | mask_bits |= flag & mask; | 153 | mask_bits |= flag & mask; |
145 | pci_write_config_dword(entry->dev, pos, mask_bits); | 154 | pci_write_config_dword(entry->dev, pos, mask_bits); |
146 | } else { | 155 | } else { |
147 | __msi_set_enable(entry->dev, entry->msi_attrib.pos, | 156 | return 0; |
148 | !flag); | ||
149 | } | 157 | } |
150 | break; | 158 | break; |
151 | case PCI_CAP_ID_MSIX: | 159 | case PCI_CAP_ID_MSIX: |
@@ -161,6 +169,7 @@ static void msi_set_mask_bits(unsigned int irq, u32 mask, u32 flag) | |||
161 | break; | 169 | break; |
162 | } | 170 | } |
163 | entry->msi_attrib.masked = !!flag; | 171 | entry->msi_attrib.masked = !!flag; |
172 | return 1; | ||
164 | } | 173 | } |
165 | 174 | ||
166 | void read_msi_msg(unsigned int irq, struct msi_msg *msg) | 175 | void read_msi_msg(unsigned int irq, struct msi_msg *msg) |
diff --git a/drivers/pci/pci-acpi.c b/drivers/pci/pci-acpi.c index 7764768b6a0e..89a2f0fa10f9 100644 --- a/drivers/pci/pci-acpi.c +++ b/drivers/pci/pci-acpi.c | |||
@@ -11,6 +11,7 @@ | |||
11 | #include <linux/init.h> | 11 | #include <linux/init.h> |
12 | #include <linux/pci.h> | 12 | #include <linux/pci.h> |
13 | #include <linux/module.h> | 13 | #include <linux/module.h> |
14 | #include <linux/pci-aspm.h> | ||
14 | #include <acpi/acpi.h> | 15 | #include <acpi/acpi.h> |
15 | #include <acpi/acnamesp.h> | 16 | #include <acpi/acnamesp.h> |
16 | #include <acpi/acresrc.h> | 17 | #include <acpi/acresrc.h> |
@@ -372,6 +373,12 @@ static int __init acpi_pci_init(void) | |||
372 | printk(KERN_INFO"ACPI FADT declares the system doesn't support MSI, so disable it\n"); | 373 | printk(KERN_INFO"ACPI FADT declares the system doesn't support MSI, so disable it\n"); |
373 | pci_no_msi(); | 374 | pci_no_msi(); |
374 | } | 375 | } |
376 | |||
377 | if (acpi_gbl_FADT.boot_flags & BAF_PCIE_ASPM_CONTROL) { | ||
378 | printk(KERN_INFO"ACPI FADT declares the system doesn't support PCIe ASPM, so disable it\n"); | ||
379 | pcie_no_aspm(); | ||
380 | } | ||
381 | |||
375 | ret = register_acpi_bus_type(&acpi_pci_bus); | 382 | ret = register_acpi_bus_type(&acpi_pci_bus); |
376 | if (ret) | 383 | if (ret) |
377 | return 0; | 384 | return 0; |
diff --git a/drivers/pci/pci.c b/drivers/pci/pci.c index e9c356236d27..0a3d856833fc 100644 --- a/drivers/pci/pci.c +++ b/drivers/pci/pci.c | |||
@@ -572,6 +572,10 @@ int pci_set_power_state(struct pci_dev *dev, pci_power_t state) | |||
572 | if (!ret) | 572 | if (!ret) |
573 | pci_update_current_state(dev); | 573 | pci_update_current_state(dev); |
574 | } | 574 | } |
575 | /* This device is quirked not to be put into D3, so | ||
576 | don't put it in D3 */ | ||
577 | if (state == PCI_D3hot && (dev->dev_flags & PCI_DEV_FLAGS_NO_D3)) | ||
578 | return 0; | ||
575 | 579 | ||
576 | error = pci_raw_set_power_state(dev, state); | 580 | error = pci_raw_set_power_state(dev, state); |
577 | 581 | ||
@@ -1123,6 +1127,12 @@ int pci_enable_wake(struct pci_dev *dev, pci_power_t state, int enable) | |||
1123 | } | 1127 | } |
1124 | 1128 | ||
1125 | /** | 1129 | /** |
1130 | * pci_target_state - find an appropriate low power state for a given PCI dev | ||
1131 | * @dev: PCI device | ||
1132 | * | ||
1133 | * Use underlying platform code to find a supported low power state for @dev. | ||
1134 | * If the platform can't manage @dev, return the deepest state from which it | ||
1135 | * can generate wake events, based on any available PME info. | ||
1126 | */ | 1136 | */ |
1127 | pci_power_t pci_target_state(struct pci_dev *dev) | 1137 | pci_power_t pci_target_state(struct pci_dev *dev) |
1128 | { | 1138 | { |
diff --git a/drivers/pci/pcie/aspm.c b/drivers/pci/pcie/aspm.c index f82495583e63..9a7c9e1408a4 100644 --- a/drivers/pci/pcie/aspm.c +++ b/drivers/pci/pcie/aspm.c | |||
@@ -55,7 +55,7 @@ struct pcie_link_state { | |||
55 | struct endpoint_state endpoints[8]; | 55 | struct endpoint_state endpoints[8]; |
56 | }; | 56 | }; |
57 | 57 | ||
58 | static int aspm_disabled; | 58 | static int aspm_disabled, aspm_force; |
59 | static DEFINE_MUTEX(aspm_lock); | 59 | static DEFINE_MUTEX(aspm_lock); |
60 | static LIST_HEAD(link_list); | 60 | static LIST_HEAD(link_list); |
61 | 61 | ||
@@ -510,6 +510,7 @@ static int pcie_aspm_sanity_check(struct pci_dev *pdev) | |||
510 | { | 510 | { |
511 | struct pci_dev *child_dev; | 511 | struct pci_dev *child_dev; |
512 | int child_pos; | 512 | int child_pos; |
513 | u32 reg32; | ||
513 | 514 | ||
514 | /* | 515 | /* |
515 | * Some functions in a slot might not all be PCIE functions, very | 516 | * Some functions in a slot might not all be PCIE functions, very |
@@ -519,6 +520,19 @@ static int pcie_aspm_sanity_check(struct pci_dev *pdev) | |||
519 | child_pos = pci_find_capability(child_dev, PCI_CAP_ID_EXP); | 520 | child_pos = pci_find_capability(child_dev, PCI_CAP_ID_EXP); |
520 | if (!child_pos) | 521 | if (!child_pos) |
521 | return -EINVAL; | 522 | return -EINVAL; |
523 | |||
524 | /* | ||
525 | * Disable ASPM for pre-1.1 PCIe device, we follow MS to use | ||
526 | * RBER bit to determine if a function is 1.1 version device | ||
527 | */ | ||
528 | pci_read_config_dword(child_dev, child_pos + PCI_EXP_DEVCAP, | ||
529 | ®32); | ||
530 | if (!(reg32 & PCI_EXP_DEVCAP_RBER && !aspm_force)) { | ||
531 | printk("Pre-1.1 PCIe device detected, " | ||
532 | "disable ASPM for %s. It can be enabled forcedly" | ||
533 | " with 'pcie_aspm=force'\n", pci_name(pdev)); | ||
534 | return -EINVAL; | ||
535 | } | ||
522 | } | 536 | } |
523 | return 0; | 537 | return 0; |
524 | } | 538 | } |
@@ -802,11 +816,23 @@ void pcie_aspm_remove_sysfs_dev_files(struct pci_dev *pdev) | |||
802 | 816 | ||
803 | static int __init pcie_aspm_disable(char *str) | 817 | static int __init pcie_aspm_disable(char *str) |
804 | { | 818 | { |
805 | aspm_disabled = 1; | 819 | if (!strcmp(str, "off")) { |
820 | aspm_disabled = 1; | ||
821 | printk(KERN_INFO "PCIe ASPM is disabled\n"); | ||
822 | } else if (!strcmp(str, "force")) { | ||
823 | aspm_force = 1; | ||
824 | printk(KERN_INFO "PCIe ASPM is forcedly enabled\n"); | ||
825 | } | ||
806 | return 1; | 826 | return 1; |
807 | } | 827 | } |
808 | 828 | ||
809 | __setup("pcie_noaspm", pcie_aspm_disable); | 829 | __setup("pcie_aspm=", pcie_aspm_disable); |
830 | |||
831 | void pcie_no_aspm(void) | ||
832 | { | ||
833 | if (!aspm_force) | ||
834 | aspm_disabled = 1; | ||
835 | } | ||
810 | 836 | ||
811 | #ifdef CONFIG_ACPI | 837 | #ifdef CONFIG_ACPI |
812 | #include <acpi/acpi_bus.h> | 838 | #include <acpi/acpi_bus.h> |
diff --git a/drivers/pci/probe.c b/drivers/pci/probe.c index b1724cf31b66..7098dfb07449 100644 --- a/drivers/pci/probe.c +++ b/drivers/pci/probe.c | |||
@@ -163,12 +163,9 @@ static inline unsigned int pci_calc_resource_flags(unsigned int flags) | |||
163 | return IORESOURCE_MEM; | 163 | return IORESOURCE_MEM; |
164 | } | 164 | } |
165 | 165 | ||
166 | /* | 166 | static u64 pci_size(u64 base, u64 maxbase, u64 mask) |
167 | * Find the extent of a PCI decode.. | ||
168 | */ | ||
169 | static u32 pci_size(u32 base, u32 maxbase, u32 mask) | ||
170 | { | 167 | { |
171 | u32 size = mask & maxbase; /* Find the significant bits */ | 168 | u64 size = mask & maxbase; /* Find the significant bits */ |
172 | if (!size) | 169 | if (!size) |
173 | return 0; | 170 | return 0; |
174 | 171 | ||
@@ -184,135 +181,142 @@ static u32 pci_size(u32 base, u32 maxbase, u32 mask) | |||
184 | return size; | 181 | return size; |
185 | } | 182 | } |
186 | 183 | ||
187 | static u64 pci_size64(u64 base, u64 maxbase, u64 mask) | 184 | enum pci_bar_type { |
188 | { | 185 | pci_bar_unknown, /* Standard PCI BAR probe */ |
189 | u64 size = mask & maxbase; /* Find the significant bits */ | 186 | pci_bar_io, /* An io port BAR */ |
190 | if (!size) | 187 | pci_bar_mem32, /* A 32-bit memory BAR */ |
191 | return 0; | 188 | pci_bar_mem64, /* A 64-bit memory BAR */ |
189 | }; | ||
192 | 190 | ||
193 | /* Get the lowest of them to find the decode size, and | 191 | static inline enum pci_bar_type decode_bar(struct resource *res, u32 bar) |
194 | from that the extent. */ | 192 | { |
195 | size = (size & ~(size-1)) - 1; | 193 | if ((bar & PCI_BASE_ADDRESS_SPACE) == PCI_BASE_ADDRESS_SPACE_IO) { |
194 | res->flags = bar & ~PCI_BASE_ADDRESS_IO_MASK; | ||
195 | return pci_bar_io; | ||
196 | } | ||
196 | 197 | ||
197 | /* base == maxbase can be valid only if the BAR has | 198 | res->flags = bar & ~PCI_BASE_ADDRESS_MEM_MASK; |
198 | already been programmed with all 1s. */ | ||
199 | if (base == maxbase && ((base | size) & mask) != mask) | ||
200 | return 0; | ||
201 | 199 | ||
202 | return size; | 200 | if (res->flags == PCI_BASE_ADDRESS_MEM_TYPE_64) |
201 | return pci_bar_mem64; | ||
202 | return pci_bar_mem32; | ||
203 | } | 203 | } |
204 | 204 | ||
205 | static inline int is_64bit_memory(u32 mask) | 205 | /* |
206 | * If the type is not unknown, we assume that the lowest bit is 'enable'. | ||
207 | * Returns 1 if the BAR was 64-bit and 0 if it was 32-bit. | ||
208 | */ | ||
209 | static int __pci_read_base(struct pci_dev *dev, enum pci_bar_type type, | ||
210 | struct resource *res, unsigned int pos) | ||
206 | { | 211 | { |
207 | if ((mask & (PCI_BASE_ADDRESS_SPACE|PCI_BASE_ADDRESS_MEM_TYPE_MASK)) == | 212 | u32 l, sz, mask; |
208 | (PCI_BASE_ADDRESS_SPACE_MEMORY|PCI_BASE_ADDRESS_MEM_TYPE_64)) | ||
209 | return 1; | ||
210 | return 0; | ||
211 | } | ||
212 | 213 | ||
213 | static void pci_read_bases(struct pci_dev *dev, unsigned int howmany, int rom) | 214 | mask = type ? ~PCI_ROM_ADDRESS_ENABLE : ~0; |
214 | { | ||
215 | unsigned int pos, reg, next; | ||
216 | u32 l, sz; | ||
217 | struct resource *res; | ||
218 | 215 | ||
219 | for(pos=0; pos<howmany; pos = next) { | 216 | res->name = pci_name(dev); |
220 | u64 l64; | ||
221 | u64 sz64; | ||
222 | u32 raw_sz; | ||
223 | 217 | ||
224 | next = pos+1; | 218 | pci_read_config_dword(dev, pos, &l); |
225 | res = &dev->resource[pos]; | 219 | pci_write_config_dword(dev, pos, mask); |
226 | res->name = pci_name(dev); | 220 | pci_read_config_dword(dev, pos, &sz); |
227 | reg = PCI_BASE_ADDRESS_0 + (pos << 2); | 221 | pci_write_config_dword(dev, pos, l); |
228 | pci_read_config_dword(dev, reg, &l); | 222 | |
229 | pci_write_config_dword(dev, reg, ~0); | 223 | /* |
230 | pci_read_config_dword(dev, reg, &sz); | 224 | * All bits set in sz means the device isn't working properly. |
231 | pci_write_config_dword(dev, reg, l); | 225 | * If the BAR isn't implemented, all bits must be 0. If it's a |
232 | if (!sz || sz == 0xffffffff) | 226 | * memory BAR or a ROM, bit 0 must be clear; if it's an io BAR, bit |
233 | continue; | 227 | * 1 must be clear. |
234 | if (l == 0xffffffff) | 228 | */ |
235 | l = 0; | 229 | if (!sz || sz == 0xffffffff) |
236 | raw_sz = sz; | 230 | goto fail; |
237 | if ((l & PCI_BASE_ADDRESS_SPACE) == | 231 | |
238 | PCI_BASE_ADDRESS_SPACE_MEMORY) { | 232 | /* |
239 | sz = pci_size(l, sz, (u32)PCI_BASE_ADDRESS_MEM_MASK); | 233 | * I don't know how l can have all bits set. Copied from old code. |
240 | /* | 234 | * Maybe it fixes a bug on some ancient platform. |
241 | * For 64bit prefetchable memory sz could be 0, if the | 235 | */ |
242 | * real size is bigger than 4G, so we need to check | 236 | if (l == 0xffffffff) |
243 | * szhi for that. | 237 | l = 0; |
244 | */ | 238 | |
245 | if (!is_64bit_memory(l) && !sz) | 239 | if (type == pci_bar_unknown) { |
246 | continue; | 240 | type = decode_bar(res, l); |
247 | res->start = l & PCI_BASE_ADDRESS_MEM_MASK; | 241 | res->flags |= pci_calc_resource_flags(l) | IORESOURCE_SIZEALIGN; |
248 | res->flags |= l & ~PCI_BASE_ADDRESS_MEM_MASK; | 242 | if (type == pci_bar_io) { |
243 | l &= PCI_BASE_ADDRESS_IO_MASK; | ||
244 | mask = PCI_BASE_ADDRESS_IO_MASK & 0xffff; | ||
249 | } else { | 245 | } else { |
250 | sz = pci_size(l, sz, PCI_BASE_ADDRESS_IO_MASK & 0xffff); | 246 | l &= PCI_BASE_ADDRESS_MEM_MASK; |
251 | if (!sz) | 247 | mask = (u32)PCI_BASE_ADDRESS_MEM_MASK; |
252 | continue; | ||
253 | res->start = l & PCI_BASE_ADDRESS_IO_MASK; | ||
254 | res->flags |= l & ~PCI_BASE_ADDRESS_IO_MASK; | ||
255 | } | 248 | } |
256 | res->end = res->start + (unsigned long) sz; | 249 | } else { |
257 | res->flags |= pci_calc_resource_flags(l) | IORESOURCE_SIZEALIGN; | 250 | res->flags |= (l & IORESOURCE_ROM_ENABLE); |
258 | if (is_64bit_memory(l)) { | 251 | l &= PCI_ROM_ADDRESS_MASK; |
259 | u32 szhi, lhi; | 252 | mask = (u32)PCI_ROM_ADDRESS_MASK; |
260 | 253 | } | |
261 | pci_read_config_dword(dev, reg+4, &lhi); | 254 | |
262 | pci_write_config_dword(dev, reg+4, ~0); | 255 | if (type == pci_bar_mem64) { |
263 | pci_read_config_dword(dev, reg+4, &szhi); | 256 | u64 l64 = l; |
264 | pci_write_config_dword(dev, reg+4, lhi); | 257 | u64 sz64 = sz; |
265 | sz64 = ((u64)szhi << 32) | raw_sz; | 258 | u64 mask64 = mask | (u64)~0 << 32; |
266 | l64 = ((u64)lhi << 32) | l; | 259 | |
267 | sz64 = pci_size64(l64, sz64, PCI_BASE_ADDRESS_MEM_MASK); | 260 | pci_read_config_dword(dev, pos + 4, &l); |
268 | next++; | 261 | pci_write_config_dword(dev, pos + 4, ~0); |
269 | #if BITS_PER_LONG == 64 | 262 | pci_read_config_dword(dev, pos + 4, &sz); |
270 | if (!sz64) { | 263 | pci_write_config_dword(dev, pos + 4, l); |
271 | res->start = 0; | 264 | |
272 | res->end = 0; | 265 | l64 |= ((u64)l << 32); |
273 | res->flags = 0; | 266 | sz64 |= ((u64)sz << 32); |
274 | continue; | 267 | |
275 | } | 268 | sz64 = pci_size(l64, sz64, mask64); |
276 | res->start = l64 & PCI_BASE_ADDRESS_MEM_MASK; | 269 | |
277 | res->end = res->start + sz64; | 270 | if (!sz64) |
278 | #else | 271 | goto fail; |
279 | if (sz64 > 0x100000000ULL) { | 272 | |
280 | dev_err(&dev->dev, "BAR %d: can't handle 64-bit" | 273 | if ((sizeof(resource_size_t) < 8) && (sz64 > 0x100000000ULL)) { |
281 | " BAR\n", pos); | 274 | dev_err(&dev->dev, "can't handle 64-bit BAR\n"); |
282 | res->start = 0; | 275 | goto fail; |
283 | res->flags = 0; | 276 | } else if ((sizeof(resource_size_t) < 8) && l) { |
284 | } else if (lhi) { | 277 | /* Address above 32-bit boundary; disable the BAR */ |
285 | /* 64-bit wide address, treat as disabled */ | 278 | pci_write_config_dword(dev, pos, 0); |
286 | pci_write_config_dword(dev, reg, | 279 | pci_write_config_dword(dev, pos + 4, 0); |
287 | l & ~(u32)PCI_BASE_ADDRESS_MEM_MASK); | 280 | res->start = 0; |
288 | pci_write_config_dword(dev, reg+4, 0); | 281 | res->end = sz64; |
289 | res->start = 0; | 282 | } else { |
290 | res->end = sz; | 283 | res->start = l64; |
291 | } | 284 | res->end = l64 + sz64; |
292 | #endif | ||
293 | } | 285 | } |
286 | } else { | ||
287 | sz = pci_size(l, sz, mask); | ||
288 | |||
289 | if (!sz) | ||
290 | goto fail; | ||
291 | |||
292 | res->start = l; | ||
293 | res->end = l + sz; | ||
294 | } | 294 | } |
295 | |||
296 | out: | ||
297 | return (type == pci_bar_mem64) ? 1 : 0; | ||
298 | fail: | ||
299 | res->flags = 0; | ||
300 | goto out; | ||
301 | } | ||
302 | |||
303 | static void pci_read_bases(struct pci_dev *dev, unsigned int howmany, int rom) | ||
304 | { | ||
305 | unsigned int pos, reg; | ||
306 | |||
307 | for (pos = 0; pos < howmany; pos++) { | ||
308 | struct resource *res = &dev->resource[pos]; | ||
309 | reg = PCI_BASE_ADDRESS_0 + (pos << 2); | ||
310 | pos += __pci_read_base(dev, pci_bar_unknown, res, reg); | ||
311 | } | ||
312 | |||
295 | if (rom) { | 313 | if (rom) { |
314 | struct resource *res = &dev->resource[PCI_ROM_RESOURCE]; | ||
296 | dev->rom_base_reg = rom; | 315 | dev->rom_base_reg = rom; |
297 | res = &dev->resource[PCI_ROM_RESOURCE]; | 316 | res->flags = IORESOURCE_MEM | IORESOURCE_PREFETCH | |
298 | res->name = pci_name(dev); | 317 | IORESOURCE_READONLY | IORESOURCE_CACHEABLE | |
299 | pci_read_config_dword(dev, rom, &l); | 318 | IORESOURCE_SIZEALIGN; |
300 | pci_write_config_dword(dev, rom, ~PCI_ROM_ADDRESS_ENABLE); | 319 | __pci_read_base(dev, pci_bar_mem32, res, rom); |
301 | pci_read_config_dword(dev, rom, &sz); | ||
302 | pci_write_config_dword(dev, rom, l); | ||
303 | if (l == 0xffffffff) | ||
304 | l = 0; | ||
305 | if (sz && sz != 0xffffffff) { | ||
306 | sz = pci_size(l, sz, (u32)PCI_ROM_ADDRESS_MASK); | ||
307 | if (sz) { | ||
308 | res->flags = (l & IORESOURCE_ROM_ENABLE) | | ||
309 | IORESOURCE_MEM | IORESOURCE_PREFETCH | | ||
310 | IORESOURCE_READONLY | IORESOURCE_CACHEABLE | | ||
311 | IORESOURCE_SIZEALIGN; | ||
312 | res->start = l & PCI_ROM_ADDRESS_MASK; | ||
313 | res->end = res->start + (unsigned long) sz; | ||
314 | } | ||
315 | } | ||
316 | } | 320 | } |
317 | } | 321 | } |
318 | 322 | ||
@@ -1053,7 +1057,8 @@ int pci_scan_slot(struct pci_bus *bus, int devfn) | |||
1053 | } | 1057 | } |
1054 | } | 1058 | } |
1055 | 1059 | ||
1056 | if (bus->self) | 1060 | /* only one slot has pcie device */ |
1061 | if (bus->self && nr) | ||
1057 | pcie_aspm_init_link_state(bus->self); | 1062 | pcie_aspm_init_link_state(bus->self); |
1058 | 1063 | ||
1059 | return nr; | 1064 | return nr; |
diff --git a/drivers/pci/quirks.c b/drivers/pci/quirks.c index 12d489395fad..0fb365074288 100644 --- a/drivers/pci/quirks.c +++ b/drivers/pci/quirks.c | |||
@@ -923,6 +923,19 @@ static void __init quirk_ide_samemode(struct pci_dev *pdev) | |||
923 | } | 923 | } |
924 | DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801CA_10, quirk_ide_samemode); | 924 | DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801CA_10, quirk_ide_samemode); |
925 | 925 | ||
926 | /* | ||
927 | * Some ATA devices break if put into D3 | ||
928 | */ | ||
929 | |||
930 | static void __devinit quirk_no_ata_d3(struct pci_dev *pdev) | ||
931 | { | ||
932 | /* Quirk the legacy ATA devices only. The AHCI ones are ok */ | ||
933 | if ((pdev->class >> 8) == PCI_CLASS_STORAGE_IDE) | ||
934 | pdev->dev_flags |= PCI_DEV_FLAGS_NO_D3; | ||
935 | } | ||
936 | DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_SERVERWORKS, PCI_ANY_ID, quirk_no_ata_d3); | ||
937 | DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_ATI, PCI_ANY_ID, quirk_no_ata_d3); | ||
938 | |||
926 | /* This was originally an Alpha specific thing, but it really fits here. | 939 | /* This was originally an Alpha specific thing, but it really fits here. |
927 | * The i82375 PCI/EISA bridge appears as non-classified. Fix that. | 940 | * The i82375 PCI/EISA bridge appears as non-classified. Fix that. |
928 | */ | 941 | */ |
diff --git a/drivers/scsi/qla2xxx/qla_attr.c b/drivers/scsi/qla2xxx/qla_attr.c index 7a4409ab30ea..a319a20ed440 100644 --- a/drivers/scsi/qla2xxx/qla_attr.c +++ b/drivers/scsi/qla2xxx/qla_attr.c | |||
@@ -8,6 +8,7 @@ | |||
8 | 8 | ||
9 | #include <linux/kthread.h> | 9 | #include <linux/kthread.h> |
10 | #include <linux/vmalloc.h> | 10 | #include <linux/vmalloc.h> |
11 | #include <linux/delay.h> | ||
11 | 12 | ||
12 | static int qla24xx_vport_disable(struct fc_vport *, bool); | 13 | static int qla24xx_vport_disable(struct fc_vport *, bool); |
13 | 14 | ||
diff --git a/drivers/serial/sh-sci.c b/drivers/serial/sh-sci.c index 208e42ba9455..3df2aaec829f 100644 --- a/drivers/serial/sh-sci.c +++ b/drivers/serial/sh-sci.c | |||
@@ -410,7 +410,6 @@ static void sci_init_pins_scif(struct uart_port *port, unsigned int cflag) | |||
410 | #endif | 410 | #endif |
411 | 411 | ||
412 | #if defined(CONFIG_CPU_SUBTYPE_SH7760) || \ | 412 | #if defined(CONFIG_CPU_SUBTYPE_SH7760) || \ |
413 | defined(CONFIG_CPU_SUBTYPE_SH7763) || \ | ||
414 | defined(CONFIG_CPU_SUBTYPE_SH7780) || \ | 413 | defined(CONFIG_CPU_SUBTYPE_SH7780) || \ |
415 | defined(CONFIG_CPU_SUBTYPE_SH7785) | 414 | defined(CONFIG_CPU_SUBTYPE_SH7785) |
416 | static inline int scif_txroom(struct uart_port *port) | 415 | static inline int scif_txroom(struct uart_port *port) |
@@ -422,6 +421,22 @@ static inline int scif_rxroom(struct uart_port *port) | |||
422 | { | 421 | { |
423 | return sci_in(port, SCRFDR) & 0xff; | 422 | return sci_in(port, SCRFDR) & 0xff; |
424 | } | 423 | } |
424 | #elif defined(CONFIG_CPU_SUBTYPE_SH7763) | ||
425 | static inline int scif_txroom(struct uart_port *port) | ||
426 | { | ||
427 | if((port->mapbase == 0xffe00000) || (port->mapbase == 0xffe08000)) /* SCIF0/1*/ | ||
428 | return SCIF_TXROOM_MAX - (sci_in(port, SCTFDR) & 0xff); | ||
429 | else /* SCIF2 */ | ||
430 | return SCIF2_TXROOM_MAX - (sci_in(port, SCFDR) >> 8); | ||
431 | } | ||
432 | |||
433 | static inline int scif_rxroom(struct uart_port *port) | ||
434 | { | ||
435 | if((port->mapbase == 0xffe00000) || (port->mapbase == 0xffe08000)) /* SCIF0/1*/ | ||
436 | return sci_in(port, SCRFDR) & 0xff; | ||
437 | else /* SCIF2 */ | ||
438 | return sci_in(port, SCFDR) & SCIF2_RFDC_MASK; | ||
439 | } | ||
425 | #else | 440 | #else |
426 | static inline int scif_txroom(struct uart_port *port) | 441 | static inline int scif_txroom(struct uart_port *port) |
427 | { | 442 | { |
diff --git a/drivers/serial/sh-sci.h b/drivers/serial/sh-sci.h index eb84833233fd..cd728df6a01a 100644 --- a/drivers/serial/sh-sci.h +++ b/drivers/serial/sh-sci.h | |||
@@ -123,8 +123,9 @@ | |||
123 | #elif defined(CONFIG_CPU_SUBTYPE_SH7763) | 123 | #elif defined(CONFIG_CPU_SUBTYPE_SH7763) |
124 | # define SCSPTR0 0xffe00024 /* 16 bit SCIF */ | 124 | # define SCSPTR0 0xffe00024 /* 16 bit SCIF */ |
125 | # define SCSPTR1 0xffe08024 /* 16 bit SCIF */ | 125 | # define SCSPTR1 0xffe08024 /* 16 bit SCIF */ |
126 | # define SCSPTR2 0xffe10020 /* 16 bit SCIF/IRDA */ | ||
126 | # define SCIF_ORER 0x0001 /* overrun error bit */ | 127 | # define SCIF_ORER 0x0001 /* overrun error bit */ |
127 | # define SCSCR_INIT(port) 0x3a /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */ | 128 | # define SCSCR_INIT(port) 0x38 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */ |
128 | # define SCIF_ONLY | 129 | # define SCIF_ONLY |
129 | #elif defined(CONFIG_CPU_SUBTYPE_SH7770) | 130 | #elif defined(CONFIG_CPU_SUBTYPE_SH7770) |
130 | # define SCSPTR0 0xff923020 /* 16 bit SCIF */ | 131 | # define SCSPTR0 0xff923020 /* 16 bit SCIF */ |
@@ -188,6 +189,7 @@ | |||
188 | defined(CONFIG_CPU_SUBTYPE_SH7750S) || \ | 189 | defined(CONFIG_CPU_SUBTYPE_SH7750S) || \ |
189 | defined(CONFIG_CPU_SUBTYPE_SH7751) || \ | 190 | defined(CONFIG_CPU_SUBTYPE_SH7751) || \ |
190 | defined(CONFIG_CPU_SUBTYPE_SH7751R) || \ | 191 | defined(CONFIG_CPU_SUBTYPE_SH7751R) || \ |
192 | defined(CONFIG_CPU_SUBTYPE_SH7763) || \ | ||
191 | defined(CONFIG_CPU_SUBTYPE_SH7780) || \ | 193 | defined(CONFIG_CPU_SUBTYPE_SH7780) || \ |
192 | defined(CONFIG_CPU_SUBTYPE_SH7785) || \ | 194 | defined(CONFIG_CPU_SUBTYPE_SH7785) || \ |
193 | defined(CONFIG_CPU_SUBTYPE_SHX3) | 195 | defined(CONFIG_CPU_SUBTYPE_SHX3) |
@@ -225,14 +227,21 @@ | |||
225 | #if defined(CONFIG_CPU_SUBTYPE_SH7705) || \ | 227 | #if defined(CONFIG_CPU_SUBTYPE_SH7705) || \ |
226 | defined(CONFIG_CPU_SUBTYPE_SH7720) || \ | 228 | defined(CONFIG_CPU_SUBTYPE_SH7720) || \ |
227 | defined(CONFIG_CPU_SUBTYPE_SH7721) | 229 | defined(CONFIG_CPU_SUBTYPE_SH7721) |
228 | #define SCIF_ORER 0x0200 | 230 | # define SCIF_ORER 0x0200 |
229 | #define SCIF_ERRORS ( SCIF_PER | SCIF_FER | SCIF_ER | SCIF_BRK | SCIF_ORER) | 231 | # define SCIF_ERRORS ( SCIF_PER | SCIF_FER | SCIF_ER | SCIF_BRK | SCIF_ORER) |
230 | #define SCIF_RFDC_MASK 0x007f | 232 | # define SCIF_RFDC_MASK 0x007f |
231 | #define SCIF_TXROOM_MAX 64 | 233 | # define SCIF_TXROOM_MAX 64 |
234 | #elif defined(CONFIG_CPU_SUBTYPE_SH7763) | ||
235 | # define SCIF_ERRORS ( SCIF_PER | SCIF_FER | SCIF_ER | SCIF_BRK ) | ||
236 | # define SCIF_RFDC_MASK 0x007f | ||
237 | # define SCIF_TXROOM_MAX 64 | ||
238 | /* SH7763 SCIF2 support */ | ||
239 | # define SCIF2_RFDC_MASK 0x001f | ||
240 | # define SCIF2_TXROOM_MAX 16 | ||
232 | #else | 241 | #else |
233 | #define SCIF_ERRORS ( SCIF_PER | SCIF_FER | SCIF_ER | SCIF_BRK) | 242 | # define SCIF_ERRORS ( SCIF_PER | SCIF_FER | SCIF_ER | SCIF_BRK) |
234 | #define SCIF_RFDC_MASK 0x001f | 243 | # define SCIF_RFDC_MASK 0x001f |
235 | #define SCIF_TXROOM_MAX 16 | 244 | # define SCIF_TXROOM_MAX 16 |
236 | #endif | 245 | #endif |
237 | 246 | ||
238 | #if defined(SCI_ONLY) | 247 | #if defined(SCI_ONLY) |
@@ -445,11 +454,16 @@ SCIF_FNS(SCFCR, 0x0c, 8, 0x18, 16) | |||
445 | defined(CONFIG_CPU_SUBTYPE_SH7763) || \ | 454 | defined(CONFIG_CPU_SUBTYPE_SH7763) || \ |
446 | defined(CONFIG_CPU_SUBTYPE_SH7780) || \ | 455 | defined(CONFIG_CPU_SUBTYPE_SH7780) || \ |
447 | defined(CONFIG_CPU_SUBTYPE_SH7785) | 456 | defined(CONFIG_CPU_SUBTYPE_SH7785) |
448 | SCIF_FNS(SCFDR, 0x0e, 16, 0x1C, 16) | ||
449 | SCIF_FNS(SCTFDR, 0x0e, 16, 0x1C, 16) | 457 | SCIF_FNS(SCTFDR, 0x0e, 16, 0x1C, 16) |
450 | SCIF_FNS(SCRFDR, 0x0e, 16, 0x20, 16) | 458 | SCIF_FNS(SCRFDR, 0x0e, 16, 0x20, 16) |
451 | SCIF_FNS(SCSPTR, 0, 0, 0x24, 16) | 459 | SCIF_FNS(SCSPTR, 0, 0, 0x24, 16) |
452 | SCIF_FNS(SCLSR, 0, 0, 0x28, 16) | 460 | SCIF_FNS(SCLSR, 0, 0, 0x28, 16) |
461 | #if defined(CONFIG_CPU_SUBTYPE_SH7763) | ||
462 | /* SH7763 SCIF2 */ | ||
463 | SCIF_FNS(SCFDR, 0, 0, 0x1C, 16) | ||
464 | SCIF_FNS(SCSPTR2, 0, 0, 0x20, 16) | ||
465 | SCIF_FNS(SCLSR2, 0, 0, 0x24, 16) | ||
466 | #endif /* CONFIG_CPU_SUBTYPE_SH7763 */ | ||
453 | #else | 467 | #else |
454 | SCIF_FNS(SCFDR, 0x0e, 16, 0x1C, 16) | 468 | SCIF_FNS(SCFDR, 0x0e, 16, 0x1C, 16) |
455 | #if defined(CONFIG_CPU_SUBTYPE_SH7722) | 469 | #if defined(CONFIG_CPU_SUBTYPE_SH7722) |
@@ -652,6 +666,9 @@ static inline int sci_rxd_in(struct uart_port *port) | |||
652 | return ctrl_inw(SCSPTR0) & 0x0001 ? 1 : 0; /* SCIF */ | 666 | return ctrl_inw(SCSPTR0) & 0x0001 ? 1 : 0; /* SCIF */ |
653 | if (port->mapbase == 0xffe08000) | 667 | if (port->mapbase == 0xffe08000) |
654 | return ctrl_inw(SCSPTR1) & 0x0001 ? 1 : 0; /* SCIF */ | 668 | return ctrl_inw(SCSPTR1) & 0x0001 ? 1 : 0; /* SCIF */ |
669 | if (port->mapbase == 0xffe10000) | ||
670 | return ctrl_inw(SCSPTR2) & 0x0001 ? 1 : 0; /* SCIF/IRDA */ | ||
671 | |||
655 | return 1; | 672 | return 1; |
656 | } | 673 | } |
657 | #elif defined(CONFIG_CPU_SUBTYPE_SH7770) | 674 | #elif defined(CONFIG_CPU_SUBTYPE_SH7770) |
@@ -764,8 +781,7 @@ static inline int sci_rxd_in(struct uart_port *port) | |||
764 | * -- Mitch Davis - 15 Jul 2000 | 781 | * -- Mitch Davis - 15 Jul 2000 |
765 | */ | 782 | */ |
766 | 783 | ||
767 | #if defined(CONFIG_CPU_SUBTYPE_SH7763) || \ | 784 | #if defined(CONFIG_CPU_SUBTYPE_SH7780) || \ |
768 | defined(CONFIG_CPU_SUBTYPE_SH7780) || \ | ||
769 | defined(CONFIG_CPU_SUBTYPE_SH7785) | 785 | defined(CONFIG_CPU_SUBTYPE_SH7785) |
770 | #define SCBRR_VALUE(bps, clk) ((clk+16*bps)/(16*bps)-1) | 786 | #define SCBRR_VALUE(bps, clk) ((clk+16*bps)/(16*bps)-1) |
771 | #elif defined(CONFIG_CPU_SUBTYPE_SH7705) || \ | 787 | #elif defined(CONFIG_CPU_SUBTYPE_SH7705) || \ |
diff --git a/drivers/spi/mpc52xx_psc_spi.c b/drivers/spi/mpc52xx_psc_spi.c index 604e5f0a2d95..25eda71f4bf4 100644 --- a/drivers/spi/mpc52xx_psc_spi.c +++ b/drivers/spi/mpc52xx_psc_spi.c | |||
@@ -148,7 +148,6 @@ static int mpc52xx_psc_spi_transfer_rxtx(struct spi_device *spi, | |||
148 | unsigned rfalarm; | 148 | unsigned rfalarm; |
149 | unsigned send_at_once = MPC52xx_PSC_BUFSIZE; | 149 | unsigned send_at_once = MPC52xx_PSC_BUFSIZE; |
150 | unsigned recv_at_once; | 150 | unsigned recv_at_once; |
151 | unsigned bpw = mps->bits_per_word / 8; | ||
152 | 151 | ||
153 | if (!t->tx_buf && !t->rx_buf && t->len) | 152 | if (!t->tx_buf && !t->rx_buf && t->len) |
154 | return -EINVAL; | 153 | return -EINVAL; |
@@ -164,22 +163,15 @@ static int mpc52xx_psc_spi_transfer_rxtx(struct spi_device *spi, | |||
164 | } | 163 | } |
165 | 164 | ||
166 | dev_dbg(&spi->dev, "send %d bytes...\n", send_at_once); | 165 | dev_dbg(&spi->dev, "send %d bytes...\n", send_at_once); |
167 | if (tx_buf) { | 166 | for (; send_at_once; sb++, send_at_once--) { |
168 | for (; send_at_once; sb++, send_at_once--) { | 167 | /* set EOF flag before the last word is sent */ |
169 | /* set EOF flag */ | 168 | if (send_at_once == 1) |
170 | if (mps->bits_per_word | 169 | out_8(&psc->ircr2, 0x01); |
171 | && (sb + 1) % bpw == 0) | 170 | |
172 | out_8(&psc->ircr2, 0x01); | 171 | if (tx_buf) |
173 | out_8(&psc->mpc52xx_psc_buffer_8, tx_buf[sb]); | 172 | out_8(&psc->mpc52xx_psc_buffer_8, tx_buf[sb]); |
174 | } | 173 | else |
175 | } else { | ||
176 | for (; send_at_once; sb++, send_at_once--) { | ||
177 | /* set EOF flag */ | ||
178 | if (mps->bits_per_word | ||
179 | && ((sb + 1) % bpw) == 0) | ||
180 | out_8(&psc->ircr2, 0x01); | ||
181 | out_8(&psc->mpc52xx_psc_buffer_8, 0); | 174 | out_8(&psc->mpc52xx_psc_buffer_8, 0); |
182 | } | ||
183 | } | 175 | } |
184 | 176 | ||
185 | 177 | ||
diff --git a/drivers/spi/spi.c b/drivers/spi/spi.c index ecca4a6a6f94..964124b60db2 100644 --- a/drivers/spi/spi.c +++ b/drivers/spi/spi.c | |||
@@ -178,6 +178,96 @@ struct boardinfo { | |||
178 | static LIST_HEAD(board_list); | 178 | static LIST_HEAD(board_list); |
179 | static DEFINE_MUTEX(board_lock); | 179 | static DEFINE_MUTEX(board_lock); |
180 | 180 | ||
181 | /** | ||
182 | * spi_alloc_device - Allocate a new SPI device | ||
183 | * @master: Controller to which device is connected | ||
184 | * Context: can sleep | ||
185 | * | ||
186 | * Allows a driver to allocate and initialize a spi_device without | ||
187 | * registering it immediately. This allows a driver to directly | ||
188 | * fill the spi_device with device parameters before calling | ||
189 | * spi_add_device() on it. | ||
190 | * | ||
191 | * Caller is responsible to call spi_add_device() on the returned | ||
192 | * spi_device structure to add it to the SPI master. If the caller | ||
193 | * needs to discard the spi_device without adding it, then it should | ||
194 | * call spi_dev_put() on it. | ||
195 | * | ||
196 | * Returns a pointer to the new device, or NULL. | ||
197 | */ | ||
198 | struct spi_device *spi_alloc_device(struct spi_master *master) | ||
199 | { | ||
200 | struct spi_device *spi; | ||
201 | struct device *dev = master->dev.parent; | ||
202 | |||
203 | if (!spi_master_get(master)) | ||
204 | return NULL; | ||
205 | |||
206 | spi = kzalloc(sizeof *spi, GFP_KERNEL); | ||
207 | if (!spi) { | ||
208 | dev_err(dev, "cannot alloc spi_device\n"); | ||
209 | spi_master_put(master); | ||
210 | return NULL; | ||
211 | } | ||
212 | |||
213 | spi->master = master; | ||
214 | spi->dev.parent = dev; | ||
215 | spi->dev.bus = &spi_bus_type; | ||
216 | spi->dev.release = spidev_release; | ||
217 | device_initialize(&spi->dev); | ||
218 | return spi; | ||
219 | } | ||
220 | EXPORT_SYMBOL_GPL(spi_alloc_device); | ||
221 | |||
222 | /** | ||
223 | * spi_add_device - Add spi_device allocated with spi_alloc_device | ||
224 | * @spi: spi_device to register | ||
225 | * | ||
226 | * Companion function to spi_alloc_device. Devices allocated with | ||
227 | * spi_alloc_device can be added onto the spi bus with this function. | ||
228 | * | ||
229 | * Returns 0 on success; non-zero on failure | ||
230 | */ | ||
231 | int spi_add_device(struct spi_device *spi) | ||
232 | { | ||
233 | struct device *dev = spi->master->dev.parent; | ||
234 | int status; | ||
235 | |||
236 | /* Chipselects are numbered 0..max; validate. */ | ||
237 | if (spi->chip_select >= spi->master->num_chipselect) { | ||
238 | dev_err(dev, "cs%d >= max %d\n", | ||
239 | spi->chip_select, | ||
240 | spi->master->num_chipselect); | ||
241 | return -EINVAL; | ||
242 | } | ||
243 | |||
244 | /* Set the bus ID string */ | ||
245 | snprintf(spi->dev.bus_id, sizeof spi->dev.bus_id, | ||
246 | "%s.%u", spi->master->dev.bus_id, | ||
247 | spi->chip_select); | ||
248 | |||
249 | /* drivers may modify this initial i/o setup */ | ||
250 | status = spi->master->setup(spi); | ||
251 | if (status < 0) { | ||
252 | dev_err(dev, "can't %s %s, status %d\n", | ||
253 | "setup", spi->dev.bus_id, status); | ||
254 | return status; | ||
255 | } | ||
256 | |||
257 | /* driver core catches callers that misbehave by defining | ||
258 | * devices that already exist. | ||
259 | */ | ||
260 | status = device_add(&spi->dev); | ||
261 | if (status < 0) { | ||
262 | dev_err(dev, "can't %s %s, status %d\n", | ||
263 | "add", spi->dev.bus_id, status); | ||
264 | return status; | ||
265 | } | ||
266 | |||
267 | dev_dbg(dev, "registered child %s\n", spi->dev.bus_id); | ||
268 | return 0; | ||
269 | } | ||
270 | EXPORT_SYMBOL_GPL(spi_add_device); | ||
181 | 271 | ||
182 | /** | 272 | /** |
183 | * spi_new_device - instantiate one new SPI device | 273 | * spi_new_device - instantiate one new SPI device |
@@ -197,7 +287,6 @@ struct spi_device *spi_new_device(struct spi_master *master, | |||
197 | struct spi_board_info *chip) | 287 | struct spi_board_info *chip) |
198 | { | 288 | { |
199 | struct spi_device *proxy; | 289 | struct spi_device *proxy; |
200 | struct device *dev = master->dev.parent; | ||
201 | int status; | 290 | int status; |
202 | 291 | ||
203 | /* NOTE: caller did any chip->bus_num checks necessary. | 292 | /* NOTE: caller did any chip->bus_num checks necessary. |
@@ -207,66 +296,28 @@ struct spi_device *spi_new_device(struct spi_master *master, | |||
207 | * suggests syslogged diagnostics are best here (ugh). | 296 | * suggests syslogged diagnostics are best here (ugh). |
208 | */ | 297 | */ |
209 | 298 | ||
210 | /* Chipselects are numbered 0..max; validate. */ | 299 | proxy = spi_alloc_device(master); |
211 | if (chip->chip_select >= master->num_chipselect) { | 300 | if (!proxy) |
212 | dev_err(dev, "cs%d > max %d\n", | ||
213 | chip->chip_select, | ||
214 | master->num_chipselect); | ||
215 | return NULL; | ||
216 | } | ||
217 | |||
218 | if (!spi_master_get(master)) | ||
219 | return NULL; | 301 | return NULL; |
220 | 302 | ||
221 | WARN_ON(strlen(chip->modalias) >= sizeof(proxy->modalias)); | 303 | WARN_ON(strlen(chip->modalias) >= sizeof(proxy->modalias)); |
222 | 304 | ||
223 | proxy = kzalloc(sizeof *proxy, GFP_KERNEL); | ||
224 | if (!proxy) { | ||
225 | dev_err(dev, "can't alloc dev for cs%d\n", | ||
226 | chip->chip_select); | ||
227 | goto fail; | ||
228 | } | ||
229 | proxy->master = master; | ||
230 | proxy->chip_select = chip->chip_select; | 305 | proxy->chip_select = chip->chip_select; |
231 | proxy->max_speed_hz = chip->max_speed_hz; | 306 | proxy->max_speed_hz = chip->max_speed_hz; |
232 | proxy->mode = chip->mode; | 307 | proxy->mode = chip->mode; |
233 | proxy->irq = chip->irq; | 308 | proxy->irq = chip->irq; |
234 | strlcpy(proxy->modalias, chip->modalias, sizeof(proxy->modalias)); | 309 | strlcpy(proxy->modalias, chip->modalias, sizeof(proxy->modalias)); |
235 | |||
236 | snprintf(proxy->dev.bus_id, sizeof proxy->dev.bus_id, | ||
237 | "%s.%u", master->dev.bus_id, | ||
238 | chip->chip_select); | ||
239 | proxy->dev.parent = dev; | ||
240 | proxy->dev.bus = &spi_bus_type; | ||
241 | proxy->dev.platform_data = (void *) chip->platform_data; | 310 | proxy->dev.platform_data = (void *) chip->platform_data; |
242 | proxy->controller_data = chip->controller_data; | 311 | proxy->controller_data = chip->controller_data; |
243 | proxy->controller_state = NULL; | 312 | proxy->controller_state = NULL; |
244 | proxy->dev.release = spidev_release; | ||
245 | 313 | ||
246 | /* drivers may modify this initial i/o setup */ | 314 | status = spi_add_device(proxy); |
247 | status = master->setup(proxy); | ||
248 | if (status < 0) { | 315 | if (status < 0) { |
249 | dev_err(dev, "can't %s %s, status %d\n", | 316 | spi_dev_put(proxy); |
250 | "setup", proxy->dev.bus_id, status); | 317 | return NULL; |
251 | goto fail; | ||
252 | } | 318 | } |
253 | 319 | ||
254 | /* driver core catches callers that misbehave by defining | ||
255 | * devices that already exist. | ||
256 | */ | ||
257 | status = device_register(&proxy->dev); | ||
258 | if (status < 0) { | ||
259 | dev_err(dev, "can't %s %s, status %d\n", | ||
260 | "add", proxy->dev.bus_id, status); | ||
261 | goto fail; | ||
262 | } | ||
263 | dev_dbg(dev, "registered child %s\n", proxy->dev.bus_id); | ||
264 | return proxy; | 320 | return proxy; |
265 | |||
266 | fail: | ||
267 | spi_master_put(master); | ||
268 | kfree(proxy); | ||
269 | return NULL; | ||
270 | } | 321 | } |
271 | EXPORT_SYMBOL_GPL(spi_new_device); | 322 | EXPORT_SYMBOL_GPL(spi_new_device); |
272 | 323 | ||
diff --git a/drivers/spi/spi_s3c24xx.c b/drivers/spi/spi_s3c24xx.c index 0885cc357a37..1c643c9e1f15 100644 --- a/drivers/spi/spi_s3c24xx.c +++ b/drivers/spi/spi_s3c24xx.c | |||
@@ -270,6 +270,7 @@ static int __init s3c24xx_spi_probe(struct platform_device *pdev) | |||
270 | /* setup the master state. */ | 270 | /* setup the master state. */ |
271 | 271 | ||
272 | master->num_chipselect = hw->pdata->num_cs; | 272 | master->num_chipselect = hw->pdata->num_cs; |
273 | master->bus_num = pdata->bus_num; | ||
273 | 274 | ||
274 | /* setup the state for the bitbang driver */ | 275 | /* setup the state for the bitbang driver */ |
275 | 276 | ||
diff --git a/drivers/video/sh7760fb.c b/drivers/video/sh7760fb.c index 4d0e28c5790b..8d0212da4514 100644 --- a/drivers/video/sh7760fb.c +++ b/drivers/video/sh7760fb.c | |||
@@ -152,6 +152,7 @@ static int sh7760fb_setcmap(struct fb_cmap *cmap, struct fb_info *info) | |||
152 | col |= ((*g) & 0xff) << 8; | 152 | col |= ((*g) & 0xff) << 8; |
153 | col |= ((*b) & 0xff); | 153 | col |= ((*b) & 0xff); |
154 | col &= SH7760FB_PALETTE_MASK; | 154 | col &= SH7760FB_PALETTE_MASK; |
155 | iowrite32(col, par->base + LDPR(s)); | ||
155 | 156 | ||
156 | if (s < 16) | 157 | if (s < 16) |
157 | ((u32 *) (info->pseudo_palette))[s] = s; | 158 | ((u32 *) (info->pseudo_palette))[s] = s; |
diff --git a/fs/Kconfig.binfmt b/fs/Kconfig.binfmt index 3263084eef9e..4a551af6f3fc 100644 --- a/fs/Kconfig.binfmt +++ b/fs/Kconfig.binfmt | |||
@@ -30,7 +30,7 @@ config COMPAT_BINFMT_ELF | |||
30 | config BINFMT_ELF_FDPIC | 30 | config BINFMT_ELF_FDPIC |
31 | bool "Kernel support for FDPIC ELF binaries" | 31 | bool "Kernel support for FDPIC ELF binaries" |
32 | default y | 32 | default y |
33 | depends on (FRV || BLACKFIN) | 33 | depends on (FRV || BLACKFIN || (SUPERH32 && !MMU)) |
34 | help | 34 | help |
35 | ELF FDPIC binaries are based on ELF, but allow the individual load | 35 | ELF FDPIC binaries are based on ELF, but allow the individual load |
36 | segments of a binary to be located in memory independently of each | 36 | segments of a binary to be located in memory independently of each |
diff --git a/fs/binfmt_elf_fdpic.c b/fs/binfmt_elf_fdpic.c index fdeadab2f18b..80c1f952ef78 100644 --- a/fs/binfmt_elf_fdpic.c +++ b/fs/binfmt_elf_fdpic.c | |||
@@ -470,6 +470,7 @@ static int create_elf_fdpic_tables(struct linux_binprm *bprm, | |||
470 | char __user *u_platform, *p; | 470 | char __user *u_platform, *p; |
471 | long hwcap; | 471 | long hwcap; |
472 | int loop; | 472 | int loop; |
473 | int nr; /* reset for each csp adjustment */ | ||
473 | 474 | ||
474 | /* we're going to shovel a whole load of stuff onto the stack */ | 475 | /* we're going to shovel a whole load of stuff onto the stack */ |
475 | #ifdef CONFIG_MMU | 476 | #ifdef CONFIG_MMU |
@@ -542,10 +543,7 @@ static int create_elf_fdpic_tables(struct linux_binprm *bprm, | |||
542 | /* force 16 byte _final_ alignment here for generality */ | 543 | /* force 16 byte _final_ alignment here for generality */ |
543 | #define DLINFO_ITEMS 13 | 544 | #define DLINFO_ITEMS 13 |
544 | 545 | ||
545 | nitems = 1 + DLINFO_ITEMS + (k_platform ? 1 : 0); | 546 | nitems = 1 + DLINFO_ITEMS + (k_platform ? 1 : 0) + AT_VECTOR_SIZE_ARCH; |
546 | #ifdef DLINFO_ARCH_ITEMS | ||
547 | nitems += DLINFO_ARCH_ITEMS; | ||
548 | #endif | ||
549 | 547 | ||
550 | csp = sp; | 548 | csp = sp; |
551 | sp -= nitems * 2 * sizeof(unsigned long); | 549 | sp -= nitems * 2 * sizeof(unsigned long); |
@@ -557,39 +555,46 @@ static int create_elf_fdpic_tables(struct linux_binprm *bprm, | |||
557 | sp -= sp & 15UL; | 555 | sp -= sp & 15UL; |
558 | 556 | ||
559 | /* put the ELF interpreter info on the stack */ | 557 | /* put the ELF interpreter info on the stack */ |
560 | #define NEW_AUX_ENT(nr, id, val) \ | 558 | #define NEW_AUX_ENT(id, val) \ |
561 | do { \ | 559 | do { \ |
562 | struct { unsigned long _id, _val; } __user *ent; \ | 560 | struct { unsigned long _id, _val; } __user *ent; \ |
563 | \ | 561 | \ |
564 | ent = (void __user *) csp; \ | 562 | ent = (void __user *) csp; \ |
565 | __put_user((id), &ent[nr]._id); \ | 563 | __put_user((id), &ent[nr]._id); \ |
566 | __put_user((val), &ent[nr]._val); \ | 564 | __put_user((val), &ent[nr]._val); \ |
565 | nr++; \ | ||
567 | } while (0) | 566 | } while (0) |
568 | 567 | ||
568 | nr = 0; | ||
569 | csp -= 2 * sizeof(unsigned long); | 569 | csp -= 2 * sizeof(unsigned long); |
570 | NEW_AUX_ENT(0, AT_NULL, 0); | 570 | NEW_AUX_ENT(AT_NULL, 0); |
571 | if (k_platform) { | 571 | if (k_platform) { |
572 | nr = 0; | ||
572 | csp -= 2 * sizeof(unsigned long); | 573 | csp -= 2 * sizeof(unsigned long); |
573 | NEW_AUX_ENT(0, AT_PLATFORM, | 574 | NEW_AUX_ENT(AT_PLATFORM, |
574 | (elf_addr_t) (unsigned long) u_platform); | 575 | (elf_addr_t) (unsigned long) u_platform); |
575 | } | 576 | } |
576 | 577 | ||
578 | nr = 0; | ||
577 | csp -= DLINFO_ITEMS * 2 * sizeof(unsigned long); | 579 | csp -= DLINFO_ITEMS * 2 * sizeof(unsigned long); |
578 | NEW_AUX_ENT( 0, AT_HWCAP, hwcap); | 580 | NEW_AUX_ENT(AT_HWCAP, hwcap); |
579 | NEW_AUX_ENT( 1, AT_PAGESZ, PAGE_SIZE); | 581 | NEW_AUX_ENT(AT_PAGESZ, PAGE_SIZE); |
580 | NEW_AUX_ENT( 2, AT_CLKTCK, CLOCKS_PER_SEC); | 582 | NEW_AUX_ENT(AT_CLKTCK, CLOCKS_PER_SEC); |
581 | NEW_AUX_ENT( 3, AT_PHDR, exec_params->ph_addr); | 583 | NEW_AUX_ENT(AT_PHDR, exec_params->ph_addr); |
582 | NEW_AUX_ENT( 4, AT_PHENT, sizeof(struct elf_phdr)); | 584 | NEW_AUX_ENT(AT_PHENT, sizeof(struct elf_phdr)); |
583 | NEW_AUX_ENT( 5, AT_PHNUM, exec_params->hdr.e_phnum); | 585 | NEW_AUX_ENT(AT_PHNUM, exec_params->hdr.e_phnum); |
584 | NEW_AUX_ENT( 6, AT_BASE, interp_params->elfhdr_addr); | 586 | NEW_AUX_ENT(AT_BASE, interp_params->elfhdr_addr); |
585 | NEW_AUX_ENT( 7, AT_FLAGS, 0); | 587 | NEW_AUX_ENT(AT_FLAGS, 0); |
586 | NEW_AUX_ENT( 8, AT_ENTRY, exec_params->entry_addr); | 588 | NEW_AUX_ENT(AT_ENTRY, exec_params->entry_addr); |
587 | NEW_AUX_ENT( 9, AT_UID, (elf_addr_t) current->uid); | 589 | NEW_AUX_ENT(AT_UID, (elf_addr_t) current->uid); |
588 | NEW_AUX_ENT(10, AT_EUID, (elf_addr_t) current->euid); | 590 | NEW_AUX_ENT(AT_EUID, (elf_addr_t) current->euid); |
589 | NEW_AUX_ENT(11, AT_GID, (elf_addr_t) current->gid); | 591 | NEW_AUX_ENT(AT_GID, (elf_addr_t) current->gid); |
590 | NEW_AUX_ENT(12, AT_EGID, (elf_addr_t) current->egid); | 592 | NEW_AUX_ENT(AT_EGID, (elf_addr_t) current->egid); |
591 | 593 | ||
592 | #ifdef ARCH_DLINFO | 594 | #ifdef ARCH_DLINFO |
595 | nr = 0; | ||
596 | csp -= AT_VECTOR_SIZE_ARCH * 2 * sizeof(unsigned long); | ||
597 | |||
593 | /* ARCH_DLINFO must come last so platform specific code can enforce | 598 | /* ARCH_DLINFO must come last so platform specific code can enforce |
594 | * special alignment requirements on the AUXV if necessary (eg. PPC). | 599 | * special alignment requirements on the AUXV if necessary (eg. PPC). |
595 | */ | 600 | */ |
diff --git a/fs/bio-integrity.c b/fs/bio-integrity.c index 63e2ee63058d..c3e174b35fe6 100644 --- a/fs/bio-integrity.c +++ b/fs/bio-integrity.c | |||
@@ -705,7 +705,6 @@ void __init bio_integrity_init_slab(void) | |||
705 | bio_integrity_slab = KMEM_CACHE(bio_integrity_payload, | 705 | bio_integrity_slab = KMEM_CACHE(bio_integrity_payload, |
706 | SLAB_HWCACHE_ALIGN|SLAB_PANIC); | 706 | SLAB_HWCACHE_ALIGN|SLAB_PANIC); |
707 | } | 707 | } |
708 | EXPORT_SYMBOL(bio_integrity_init_slab); | ||
709 | 708 | ||
710 | static int __init integrity_init(void) | 709 | static int __init integrity_init(void) |
711 | { | 710 | { |
diff --git a/fs/buffer.c b/fs/buffer.c index f95805019639..ca12a6bb82b1 100644 --- a/fs/buffer.c +++ b/fs/buffer.c | |||
@@ -2096,6 +2096,52 @@ int generic_write_end(struct file *file, struct address_space *mapping, | |||
2096 | EXPORT_SYMBOL(generic_write_end); | 2096 | EXPORT_SYMBOL(generic_write_end); |
2097 | 2097 | ||
2098 | /* | 2098 | /* |
2099 | * block_is_partially_uptodate checks whether buffers within a page are | ||
2100 | * uptodate or not. | ||
2101 | * | ||
2102 | * Returns true if all buffers which correspond to a file portion | ||
2103 | * we want to read are uptodate. | ||
2104 | */ | ||
2105 | int block_is_partially_uptodate(struct page *page, read_descriptor_t *desc, | ||
2106 | unsigned long from) | ||
2107 | { | ||
2108 | struct inode *inode = page->mapping->host; | ||
2109 | unsigned block_start, block_end, blocksize; | ||
2110 | unsigned to; | ||
2111 | struct buffer_head *bh, *head; | ||
2112 | int ret = 1; | ||
2113 | |||
2114 | if (!page_has_buffers(page)) | ||
2115 | return 0; | ||
2116 | |||
2117 | blocksize = 1 << inode->i_blkbits; | ||
2118 | to = min_t(unsigned, PAGE_CACHE_SIZE - from, desc->count); | ||
2119 | to = from + to; | ||
2120 | if (from < blocksize && to > PAGE_CACHE_SIZE - blocksize) | ||
2121 | return 0; | ||
2122 | |||
2123 | head = page_buffers(page); | ||
2124 | bh = head; | ||
2125 | block_start = 0; | ||
2126 | do { | ||
2127 | block_end = block_start + blocksize; | ||
2128 | if (block_end > from && block_start < to) { | ||
2129 | if (!buffer_uptodate(bh)) { | ||
2130 | ret = 0; | ||
2131 | break; | ||
2132 | } | ||
2133 | if (block_end >= to) | ||
2134 | break; | ||
2135 | } | ||
2136 | block_start = block_end; | ||
2137 | bh = bh->b_this_page; | ||
2138 | } while (bh != head); | ||
2139 | |||
2140 | return ret; | ||
2141 | } | ||
2142 | EXPORT_SYMBOL(block_is_partially_uptodate); | ||
2143 | |||
2144 | /* | ||
2099 | * Generic "read page" function for block devices that have the normal | 2145 | * Generic "read page" function for block devices that have the normal |
2100 | * get_block functionality. This is most of the block device filesystems. | 2146 | * get_block functionality. This is most of the block device filesystems. |
2101 | * Reads the page asynchronously --- the unlock_buffer() and | 2147 | * Reads the page asynchronously --- the unlock_buffer() and |
diff --git a/fs/dlm/lock.c b/fs/dlm/lock.c index 2d3d1027ce2b..724ddac91538 100644 --- a/fs/dlm/lock.c +++ b/fs/dlm/lock.c | |||
@@ -363,6 +363,7 @@ static int search_rsb_list(struct list_head *head, char *name, int len, | |||
363 | if (len == r->res_length && !memcmp(name, r->res_name, len)) | 363 | if (len == r->res_length && !memcmp(name, r->res_name, len)) |
364 | goto found; | 364 | goto found; |
365 | } | 365 | } |
366 | *r_ret = NULL; | ||
366 | return -EBADR; | 367 | return -EBADR; |
367 | 368 | ||
368 | found: | 369 | found: |
@@ -1782,7 +1783,8 @@ static void grant_pending_locks(struct dlm_rsb *r) | |||
1782 | 1783 | ||
1783 | list_for_each_entry_safe(lkb, s, &r->res_grantqueue, lkb_statequeue) { | 1784 | list_for_each_entry_safe(lkb, s, &r->res_grantqueue, lkb_statequeue) { |
1784 | if (lkb->lkb_bastfn && lock_requires_bast(lkb, high, cw)) { | 1785 | if (lkb->lkb_bastfn && lock_requires_bast(lkb, high, cw)) { |
1785 | if (cw && high == DLM_LOCK_PR) | 1786 | if (cw && high == DLM_LOCK_PR && |
1787 | lkb->lkb_grmode == DLM_LOCK_PR) | ||
1786 | queue_bast(r, lkb, DLM_LOCK_CW); | 1788 | queue_bast(r, lkb, DLM_LOCK_CW); |
1787 | else | 1789 | else |
1788 | queue_bast(r, lkb, high); | 1790 | queue_bast(r, lkb, high); |
diff --git a/fs/dlm/lowcomms.c b/fs/dlm/lowcomms.c index 637018c891ef..3962262f991a 100644 --- a/fs/dlm/lowcomms.c +++ b/fs/dlm/lowcomms.c | |||
@@ -891,8 +891,10 @@ static void tcp_connect_to_sock(struct connection *con) | |||
891 | goto out_err; | 891 | goto out_err; |
892 | 892 | ||
893 | memset(&saddr, 0, sizeof(saddr)); | 893 | memset(&saddr, 0, sizeof(saddr)); |
894 | if (dlm_nodeid_to_addr(con->nodeid, &saddr)) | 894 | if (dlm_nodeid_to_addr(con->nodeid, &saddr)) { |
895 | sock_release(sock); | ||
895 | goto out_err; | 896 | goto out_err; |
897 | } | ||
896 | 898 | ||
897 | sock->sk->sk_user_data = con; | 899 | sock->sk->sk_user_data = con; |
898 | con->rx_action = receive_from_sock; | 900 | con->rx_action = receive_from_sock; |
diff --git a/fs/dlm/user.c b/fs/dlm/user.c index f976f303c196..929e48ae7591 100644 --- a/fs/dlm/user.c +++ b/fs/dlm/user.c | |||
@@ -539,7 +539,7 @@ static ssize_t device_write(struct file *file, const char __user *buf, | |||
539 | 539 | ||
540 | /* do we really need this? can a write happen after a close? */ | 540 | /* do we really need this? can a write happen after a close? */ |
541 | if ((kbuf->cmd == DLM_USER_LOCK || kbuf->cmd == DLM_USER_UNLOCK) && | 541 | if ((kbuf->cmd == DLM_USER_LOCK || kbuf->cmd == DLM_USER_UNLOCK) && |
542 | test_bit(DLM_PROC_FLAGS_CLOSING, &proc->flags)) | 542 | (proc && test_bit(DLM_PROC_FLAGS_CLOSING, &proc->flags))) |
543 | return -EINVAL; | 543 | return -EINVAL; |
544 | 544 | ||
545 | sigfillset(&allsigs); | 545 | sigfillset(&allsigs); |
diff --git a/fs/ecryptfs/crypto.c b/fs/ecryptfs/crypto.c index 7b99917ffadc..06db79d05c12 100644 --- a/fs/ecryptfs/crypto.c +++ b/fs/ecryptfs/crypto.c | |||
@@ -475,8 +475,8 @@ int ecryptfs_encrypt_page(struct page *page) | |||
475 | { | 475 | { |
476 | struct inode *ecryptfs_inode; | 476 | struct inode *ecryptfs_inode; |
477 | struct ecryptfs_crypt_stat *crypt_stat; | 477 | struct ecryptfs_crypt_stat *crypt_stat; |
478 | char *enc_extent_virt = NULL; | 478 | char *enc_extent_virt; |
479 | struct page *enc_extent_page; | 479 | struct page *enc_extent_page = NULL; |
480 | loff_t extent_offset; | 480 | loff_t extent_offset; |
481 | int rc = 0; | 481 | int rc = 0; |
482 | 482 | ||
@@ -492,14 +492,14 @@ int ecryptfs_encrypt_page(struct page *page) | |||
492 | page->index); | 492 | page->index); |
493 | goto out; | 493 | goto out; |
494 | } | 494 | } |
495 | enc_extent_virt = kmalloc(PAGE_CACHE_SIZE, GFP_USER); | 495 | enc_extent_page = alloc_page(GFP_USER); |
496 | if (!enc_extent_virt) { | 496 | if (!enc_extent_page) { |
497 | rc = -ENOMEM; | 497 | rc = -ENOMEM; |
498 | ecryptfs_printk(KERN_ERR, "Error allocating memory for " | 498 | ecryptfs_printk(KERN_ERR, "Error allocating memory for " |
499 | "encrypted extent\n"); | 499 | "encrypted extent\n"); |
500 | goto out; | 500 | goto out; |
501 | } | 501 | } |
502 | enc_extent_page = virt_to_page(enc_extent_virt); | 502 | enc_extent_virt = kmap(enc_extent_page); |
503 | for (extent_offset = 0; | 503 | for (extent_offset = 0; |
504 | extent_offset < (PAGE_CACHE_SIZE / crypt_stat->extent_size); | 504 | extent_offset < (PAGE_CACHE_SIZE / crypt_stat->extent_size); |
505 | extent_offset++) { | 505 | extent_offset++) { |
@@ -527,7 +527,10 @@ int ecryptfs_encrypt_page(struct page *page) | |||
527 | } | 527 | } |
528 | } | 528 | } |
529 | out: | 529 | out: |
530 | kfree(enc_extent_virt); | 530 | if (enc_extent_page) { |
531 | kunmap(enc_extent_page); | ||
532 | __free_page(enc_extent_page); | ||
533 | } | ||
531 | return rc; | 534 | return rc; |
532 | } | 535 | } |
533 | 536 | ||
@@ -609,8 +612,8 @@ int ecryptfs_decrypt_page(struct page *page) | |||
609 | { | 612 | { |
610 | struct inode *ecryptfs_inode; | 613 | struct inode *ecryptfs_inode; |
611 | struct ecryptfs_crypt_stat *crypt_stat; | 614 | struct ecryptfs_crypt_stat *crypt_stat; |
612 | char *enc_extent_virt = NULL; | 615 | char *enc_extent_virt; |
613 | struct page *enc_extent_page; | 616 | struct page *enc_extent_page = NULL; |
614 | unsigned long extent_offset; | 617 | unsigned long extent_offset; |
615 | int rc = 0; | 618 | int rc = 0; |
616 | 619 | ||
@@ -627,14 +630,14 @@ int ecryptfs_decrypt_page(struct page *page) | |||
627 | page->index); | 630 | page->index); |
628 | goto out; | 631 | goto out; |
629 | } | 632 | } |
630 | enc_extent_virt = kmalloc(PAGE_CACHE_SIZE, GFP_USER); | 633 | enc_extent_page = alloc_page(GFP_USER); |
631 | if (!enc_extent_virt) { | 634 | if (!enc_extent_page) { |
632 | rc = -ENOMEM; | 635 | rc = -ENOMEM; |
633 | ecryptfs_printk(KERN_ERR, "Error allocating memory for " | 636 | ecryptfs_printk(KERN_ERR, "Error allocating memory for " |
634 | "encrypted extent\n"); | 637 | "encrypted extent\n"); |
635 | goto out; | 638 | goto out; |
636 | } | 639 | } |
637 | enc_extent_page = virt_to_page(enc_extent_virt); | 640 | enc_extent_virt = kmap(enc_extent_page); |
638 | for (extent_offset = 0; | 641 | for (extent_offset = 0; |
639 | extent_offset < (PAGE_CACHE_SIZE / crypt_stat->extent_size); | 642 | extent_offset < (PAGE_CACHE_SIZE / crypt_stat->extent_size); |
640 | extent_offset++) { | 643 | extent_offset++) { |
@@ -662,7 +665,10 @@ int ecryptfs_decrypt_page(struct page *page) | |||
662 | } | 665 | } |
663 | } | 666 | } |
664 | out: | 667 | out: |
665 | kfree(enc_extent_virt); | 668 | if (enc_extent_page) { |
669 | kunmap(enc_extent_page); | ||
670 | __free_page(enc_extent_page); | ||
671 | } | ||
666 | return rc; | 672 | return rc; |
667 | } | 673 | } |
668 | 674 | ||
@@ -32,6 +32,7 @@ | |||
32 | #include <linux/swap.h> | 32 | #include <linux/swap.h> |
33 | #include <linux/string.h> | 33 | #include <linux/string.h> |
34 | #include <linux/init.h> | 34 | #include <linux/init.h> |
35 | #include <linux/pagemap.h> | ||
35 | #include <linux/highmem.h> | 36 | #include <linux/highmem.h> |
36 | #include <linux/spinlock.h> | 37 | #include <linux/spinlock.h> |
37 | #include <linux/key.h> | 38 | #include <linux/key.h> |
diff --git a/fs/ext2/inode.c b/fs/ext2/inode.c index 384fc0d1dd74..991d6dfeb51f 100644 --- a/fs/ext2/inode.c +++ b/fs/ext2/inode.c | |||
@@ -791,6 +791,7 @@ const struct address_space_operations ext2_aops = { | |||
791 | .direct_IO = ext2_direct_IO, | 791 | .direct_IO = ext2_direct_IO, |
792 | .writepages = ext2_writepages, | 792 | .writepages = ext2_writepages, |
793 | .migratepage = buffer_migrate_page, | 793 | .migratepage = buffer_migrate_page, |
794 | .is_partially_uptodate = block_is_partially_uptodate, | ||
794 | }; | 795 | }; |
795 | 796 | ||
796 | const struct address_space_operations ext2_aops_xip = { | 797 | const struct address_space_operations ext2_aops_xip = { |
diff --git a/fs/ext3/inode.c b/fs/ext3/inode.c index 3bf07d70b914..507d8689b111 100644 --- a/fs/ext3/inode.c +++ b/fs/ext3/inode.c | |||
@@ -1767,44 +1767,47 @@ static int ext3_journalled_set_page_dirty(struct page *page) | |||
1767 | } | 1767 | } |
1768 | 1768 | ||
1769 | static const struct address_space_operations ext3_ordered_aops = { | 1769 | static const struct address_space_operations ext3_ordered_aops = { |
1770 | .readpage = ext3_readpage, | 1770 | .readpage = ext3_readpage, |
1771 | .readpages = ext3_readpages, | 1771 | .readpages = ext3_readpages, |
1772 | .writepage = ext3_ordered_writepage, | 1772 | .writepage = ext3_ordered_writepage, |
1773 | .sync_page = block_sync_page, | 1773 | .sync_page = block_sync_page, |
1774 | .write_begin = ext3_write_begin, | 1774 | .write_begin = ext3_write_begin, |
1775 | .write_end = ext3_ordered_write_end, | 1775 | .write_end = ext3_ordered_write_end, |
1776 | .bmap = ext3_bmap, | 1776 | .bmap = ext3_bmap, |
1777 | .invalidatepage = ext3_invalidatepage, | 1777 | .invalidatepage = ext3_invalidatepage, |
1778 | .releasepage = ext3_releasepage, | 1778 | .releasepage = ext3_releasepage, |
1779 | .direct_IO = ext3_direct_IO, | 1779 | .direct_IO = ext3_direct_IO, |
1780 | .migratepage = buffer_migrate_page, | 1780 | .migratepage = buffer_migrate_page, |
1781 | .is_partially_uptodate = block_is_partially_uptodate, | ||
1781 | }; | 1782 | }; |
1782 | 1783 | ||
1783 | static const struct address_space_operations ext3_writeback_aops = { | 1784 | static const struct address_space_operations ext3_writeback_aops = { |
1784 | .readpage = ext3_readpage, | 1785 | .readpage = ext3_readpage, |
1785 | .readpages = ext3_readpages, | 1786 | .readpages = ext3_readpages, |
1786 | .writepage = ext3_writeback_writepage, | 1787 | .writepage = ext3_writeback_writepage, |
1787 | .sync_page = block_sync_page, | 1788 | .sync_page = block_sync_page, |
1788 | .write_begin = ext3_write_begin, | 1789 | .write_begin = ext3_write_begin, |
1789 | .write_end = ext3_writeback_write_end, | 1790 | .write_end = ext3_writeback_write_end, |
1790 | .bmap = ext3_bmap, | 1791 | .bmap = ext3_bmap, |
1791 | .invalidatepage = ext3_invalidatepage, | 1792 | .invalidatepage = ext3_invalidatepage, |
1792 | .releasepage = ext3_releasepage, | 1793 | .releasepage = ext3_releasepage, |
1793 | .direct_IO = ext3_direct_IO, | 1794 | .direct_IO = ext3_direct_IO, |
1794 | .migratepage = buffer_migrate_page, | 1795 | .migratepage = buffer_migrate_page, |
1796 | .is_partially_uptodate = block_is_partially_uptodate, | ||
1795 | }; | 1797 | }; |
1796 | 1798 | ||
1797 | static const struct address_space_operations ext3_journalled_aops = { | 1799 | static const struct address_space_operations ext3_journalled_aops = { |
1798 | .readpage = ext3_readpage, | 1800 | .readpage = ext3_readpage, |
1799 | .readpages = ext3_readpages, | 1801 | .readpages = ext3_readpages, |
1800 | .writepage = ext3_journalled_writepage, | 1802 | .writepage = ext3_journalled_writepage, |
1801 | .sync_page = block_sync_page, | 1803 | .sync_page = block_sync_page, |
1802 | .write_begin = ext3_write_begin, | 1804 | .write_begin = ext3_write_begin, |
1803 | .write_end = ext3_journalled_write_end, | 1805 | .write_end = ext3_journalled_write_end, |
1804 | .set_page_dirty = ext3_journalled_set_page_dirty, | 1806 | .set_page_dirty = ext3_journalled_set_page_dirty, |
1805 | .bmap = ext3_bmap, | 1807 | .bmap = ext3_bmap, |
1806 | .invalidatepage = ext3_invalidatepage, | 1808 | .invalidatepage = ext3_invalidatepage, |
1807 | .releasepage = ext3_releasepage, | 1809 | .releasepage = ext3_releasepage, |
1810 | .is_partially_uptodate = block_is_partially_uptodate, | ||
1808 | }; | 1811 | }; |
1809 | 1812 | ||
1810 | void ext3_set_aops(struct inode *inode) | 1813 | void ext3_set_aops(struct inode *inode) |
diff --git a/fs/ext4/inode.c b/fs/ext4/inode.c index 8ca2763df091..9843b046c235 100644 --- a/fs/ext4/inode.c +++ b/fs/ext4/inode.c | |||
@@ -2806,59 +2806,63 @@ static int ext4_journalled_set_page_dirty(struct page *page) | |||
2806 | } | 2806 | } |
2807 | 2807 | ||
2808 | static const struct address_space_operations ext4_ordered_aops = { | 2808 | static const struct address_space_operations ext4_ordered_aops = { |
2809 | .readpage = ext4_readpage, | 2809 | .readpage = ext4_readpage, |
2810 | .readpages = ext4_readpages, | 2810 | .readpages = ext4_readpages, |
2811 | .writepage = ext4_normal_writepage, | 2811 | .writepage = ext4_normal_writepage, |
2812 | .sync_page = block_sync_page, | 2812 | .sync_page = block_sync_page, |
2813 | .write_begin = ext4_write_begin, | 2813 | .write_begin = ext4_write_begin, |
2814 | .write_end = ext4_ordered_write_end, | 2814 | .write_end = ext4_ordered_write_end, |
2815 | .bmap = ext4_bmap, | 2815 | .bmap = ext4_bmap, |
2816 | .invalidatepage = ext4_invalidatepage, | 2816 | .invalidatepage = ext4_invalidatepage, |
2817 | .releasepage = ext4_releasepage, | 2817 | .releasepage = ext4_releasepage, |
2818 | .direct_IO = ext4_direct_IO, | 2818 | .direct_IO = ext4_direct_IO, |
2819 | .migratepage = buffer_migrate_page, | 2819 | .migratepage = buffer_migrate_page, |
2820 | .is_partially_uptodate = block_is_partially_uptodate, | ||
2820 | }; | 2821 | }; |
2821 | 2822 | ||
2822 | static const struct address_space_operations ext4_writeback_aops = { | 2823 | static const struct address_space_operations ext4_writeback_aops = { |
2823 | .readpage = ext4_readpage, | 2824 | .readpage = ext4_readpage, |
2824 | .readpages = ext4_readpages, | 2825 | .readpages = ext4_readpages, |
2825 | .writepage = ext4_normal_writepage, | 2826 | .writepage = ext4_normal_writepage, |
2826 | .sync_page = block_sync_page, | 2827 | .sync_page = block_sync_page, |
2827 | .write_begin = ext4_write_begin, | 2828 | .write_begin = ext4_write_begin, |
2828 | .write_end = ext4_writeback_write_end, | 2829 | .write_end = ext4_writeback_write_end, |
2829 | .bmap = ext4_bmap, | 2830 | .bmap = ext4_bmap, |
2830 | .invalidatepage = ext4_invalidatepage, | 2831 | .invalidatepage = ext4_invalidatepage, |
2831 | .releasepage = ext4_releasepage, | 2832 | .releasepage = ext4_releasepage, |
2832 | .direct_IO = ext4_direct_IO, | 2833 | .direct_IO = ext4_direct_IO, |
2833 | .migratepage = buffer_migrate_page, | 2834 | .migratepage = buffer_migrate_page, |
2835 | .is_partially_uptodate = block_is_partially_uptodate, | ||
2834 | }; | 2836 | }; |
2835 | 2837 | ||
2836 | static const struct address_space_operations ext4_journalled_aops = { | 2838 | static const struct address_space_operations ext4_journalled_aops = { |
2837 | .readpage = ext4_readpage, | 2839 | .readpage = ext4_readpage, |
2838 | .readpages = ext4_readpages, | 2840 | .readpages = ext4_readpages, |
2839 | .writepage = ext4_journalled_writepage, | 2841 | .writepage = ext4_journalled_writepage, |
2840 | .sync_page = block_sync_page, | 2842 | .sync_page = block_sync_page, |
2841 | .write_begin = ext4_write_begin, | 2843 | .write_begin = ext4_write_begin, |
2842 | .write_end = ext4_journalled_write_end, | 2844 | .write_end = ext4_journalled_write_end, |
2843 | .set_page_dirty = ext4_journalled_set_page_dirty, | 2845 | .set_page_dirty = ext4_journalled_set_page_dirty, |
2844 | .bmap = ext4_bmap, | 2846 | .bmap = ext4_bmap, |
2845 | .invalidatepage = ext4_invalidatepage, | 2847 | .invalidatepage = ext4_invalidatepage, |
2846 | .releasepage = ext4_releasepage, | 2848 | .releasepage = ext4_releasepage, |
2849 | .is_partially_uptodate = block_is_partially_uptodate, | ||
2847 | }; | 2850 | }; |
2848 | 2851 | ||
2849 | static const struct address_space_operations ext4_da_aops = { | 2852 | static const struct address_space_operations ext4_da_aops = { |
2850 | .readpage = ext4_readpage, | 2853 | .readpage = ext4_readpage, |
2851 | .readpages = ext4_readpages, | 2854 | .readpages = ext4_readpages, |
2852 | .writepage = ext4_da_writepage, | 2855 | .writepage = ext4_da_writepage, |
2853 | .writepages = ext4_da_writepages, | 2856 | .writepages = ext4_da_writepages, |
2854 | .sync_page = block_sync_page, | 2857 | .sync_page = block_sync_page, |
2855 | .write_begin = ext4_da_write_begin, | 2858 | .write_begin = ext4_da_write_begin, |
2856 | .write_end = ext4_da_write_end, | 2859 | .write_end = ext4_da_write_end, |
2857 | .bmap = ext4_bmap, | 2860 | .bmap = ext4_bmap, |
2858 | .invalidatepage = ext4_da_invalidatepage, | 2861 | .invalidatepage = ext4_da_invalidatepage, |
2859 | .releasepage = ext4_releasepage, | 2862 | .releasepage = ext4_releasepage, |
2860 | .direct_IO = ext4_direct_IO, | 2863 | .direct_IO = ext4_direct_IO, |
2861 | .migratepage = buffer_migrate_page, | 2864 | .migratepage = buffer_migrate_page, |
2865 | .is_partially_uptodate = block_is_partially_uptodate, | ||
2862 | }; | 2866 | }; |
2863 | 2867 | ||
2864 | void ext4_set_aops(struct inode *inode) | 2868 | void ext4_set_aops(struct inode *inode) |
diff --git a/include/acpi/actbl.h b/include/acpi/actbl.h index 1ebbe883f786..13a3d9ad92db 100644 --- a/include/acpi/actbl.h +++ b/include/acpi/actbl.h | |||
@@ -277,6 +277,7 @@ enum acpi_prefered_pm_profiles { | |||
277 | #define BAF_LEGACY_DEVICES 0x0001 | 277 | #define BAF_LEGACY_DEVICES 0x0001 |
278 | #define BAF_8042_KEYBOARD_CONTROLLER 0x0002 | 278 | #define BAF_8042_KEYBOARD_CONTROLLER 0x0002 |
279 | #define BAF_MSI_NOT_SUPPORTED 0x0008 | 279 | #define BAF_MSI_NOT_SUPPORTED 0x0008 |
280 | #define BAF_PCIE_ASPM_CONTROL 0x0010 | ||
280 | 281 | ||
281 | #define FADT2_REVISION_ID 3 | 282 | #define FADT2_REVISION_ID 3 |
282 | #define FADT2_MINUS_REVISION_ID 2 | 283 | #define FADT2_MINUS_REVISION_ID 2 |
diff --git a/include/asm-arm/arch-s3c2410/spi.h b/include/asm-arm/arch-s3c2410/spi.h index 352d33860b63..442169887d3b 100644 --- a/include/asm-arm/arch-s3c2410/spi.h +++ b/include/asm-arm/arch-s3c2410/spi.h | |||
@@ -16,6 +16,7 @@ | |||
16 | struct s3c2410_spi_info { | 16 | struct s3c2410_spi_info { |
17 | unsigned long pin_cs; /* simple gpio cs */ | 17 | unsigned long pin_cs; /* simple gpio cs */ |
18 | unsigned int num_cs; /* total chipselects */ | 18 | unsigned int num_cs; /* total chipselects */ |
19 | int bus_num; /* bus number to use. */ | ||
19 | 20 | ||
20 | void (*set_cs)(struct s3c2410_spi_info *spi, int cs, int pol); | 21 | void (*set_cs)(struct s3c2410_spi_info *spi, int cs, int pol); |
21 | }; | 22 | }; |
diff --git a/include/asm-arm/dma-mapping.h b/include/asm-arm/dma-mapping.h index f41335ba6337..45329fca1b64 100644 --- a/include/asm-arm/dma-mapping.h +++ b/include/asm-arm/dma-mapping.h | |||
@@ -7,6 +7,8 @@ | |||
7 | 7 | ||
8 | #include <linux/scatterlist.h> | 8 | #include <linux/scatterlist.h> |
9 | 9 | ||
10 | #include <asm-generic/dma-coherent.h> | ||
11 | |||
10 | /* | 12 | /* |
11 | * DMA-consistent mapping functions. These allocate/free a region of | 13 | * DMA-consistent mapping functions. These allocate/free a region of |
12 | * uncached, unwrite-buffered mapped memory space for use with DMA | 14 | * uncached, unwrite-buffered mapped memory space for use with DMA |
diff --git a/include/asm-arm/plat-s3c/iic.h b/include/asm-arm/plat-s3c/iic.h index 71211c8b5384..d08a1f2863e4 100644 --- a/include/asm-arm/plat-s3c/iic.h +++ b/include/asm-arm/plat-s3c/iic.h | |||
@@ -21,6 +21,7 @@ | |||
21 | */ | 21 | */ |
22 | 22 | ||
23 | struct s3c2410_platform_i2c { | 23 | struct s3c2410_platform_i2c { |
24 | int bus_num; /* bus number to use */ | ||
24 | unsigned int flags; | 25 | unsigned int flags; |
25 | unsigned int slave_addr; /* slave address for controller */ | 26 | unsigned int slave_addr; /* slave address for controller */ |
26 | unsigned long bus_freq; /* standard bus frequency */ | 27 | unsigned long bus_freq; /* standard bus frequency */ |
diff --git a/include/asm-cris/dma-mapping.h b/include/asm-cris/dma-mapping.h index cb2fb25ff8d9..da8ef8e8f842 100644 --- a/include/asm-cris/dma-mapping.h +++ b/include/asm-cris/dma-mapping.h | |||
@@ -14,6 +14,8 @@ | |||
14 | #define dma_free_noncoherent(d, s, v, h) dma_free_coherent(d, s, v, h) | 14 | #define dma_free_noncoherent(d, s, v, h) dma_free_coherent(d, s, v, h) |
15 | 15 | ||
16 | #ifdef CONFIG_PCI | 16 | #ifdef CONFIG_PCI |
17 | #include <asm-generic/dma-coherent.h> | ||
18 | |||
17 | void *dma_alloc_coherent(struct device *dev, size_t size, | 19 | void *dma_alloc_coherent(struct device *dev, size_t size, |
18 | dma_addr_t *dma_handle, gfp_t flag); | 20 | dma_addr_t *dma_handle, gfp_t flag); |
19 | 21 | ||
diff --git a/include/asm-generic/dma-coherent.h b/include/asm-generic/dma-coherent.h new file mode 100644 index 000000000000..85a3ffaa0242 --- /dev/null +++ b/include/asm-generic/dma-coherent.h | |||
@@ -0,0 +1,32 @@ | |||
1 | #ifndef DMA_COHERENT_H | ||
2 | #define DMA_COHERENT_H | ||
3 | |||
4 | #ifdef CONFIG_HAVE_GENERIC_DMA_COHERENT | ||
5 | /* | ||
6 | * These two functions are only for dma allocator. | ||
7 | * Don't use them in device drivers. | ||
8 | */ | ||
9 | int dma_alloc_from_coherent(struct device *dev, ssize_t size, | ||
10 | dma_addr_t *dma_handle, void **ret); | ||
11 | int dma_release_from_coherent(struct device *dev, int order, void *vaddr); | ||
12 | |||
13 | /* | ||
14 | * Standard interface | ||
15 | */ | ||
16 | #define ARCH_HAS_DMA_DECLARE_COHERENT_MEMORY | ||
17 | extern int | ||
18 | dma_declare_coherent_memory(struct device *dev, dma_addr_t bus_addr, | ||
19 | dma_addr_t device_addr, size_t size, int flags); | ||
20 | |||
21 | extern void | ||
22 | dma_release_declared_memory(struct device *dev); | ||
23 | |||
24 | extern void * | ||
25 | dma_mark_declared_memory_occupied(struct device *dev, | ||
26 | dma_addr_t device_addr, size_t size); | ||
27 | #else | ||
28 | #define dma_alloc_from_coherent(dev, size, handle, ret) (0) | ||
29 | #define dma_release_from_coherent(dev, order, vaddr) (0) | ||
30 | #endif | ||
31 | |||
32 | #endif | ||
diff --git a/include/asm-generic/gpio.h b/include/asm-generic/gpio.h index c764a8fcb058..0f99ad38b012 100644 --- a/include/asm-generic/gpio.h +++ b/include/asm-generic/gpio.h | |||
@@ -2,6 +2,7 @@ | |||
2 | #define _ASM_GENERIC_GPIO_H | 2 | #define _ASM_GENERIC_GPIO_H |
3 | 3 | ||
4 | #include <linux/types.h> | 4 | #include <linux/types.h> |
5 | #include <linux/errno.h> | ||
5 | 6 | ||
6 | #ifdef CONFIG_GPIOLIB | 7 | #ifdef CONFIG_GPIOLIB |
7 | 8 | ||
diff --git a/include/asm-generic/pgtable-nopmd.h b/include/asm-generic/pgtable-nopmd.h index 087325ede76c..a7cdc48e8b78 100644 --- a/include/asm-generic/pgtable-nopmd.h +++ b/include/asm-generic/pgtable-nopmd.h | |||
@@ -5,6 +5,8 @@ | |||
5 | 5 | ||
6 | #include <asm-generic/pgtable-nopud.h> | 6 | #include <asm-generic/pgtable-nopud.h> |
7 | 7 | ||
8 | struct mm_struct; | ||
9 | |||
8 | #define __PAGETABLE_PMD_FOLDED | 10 | #define __PAGETABLE_PMD_FOLDED |
9 | 11 | ||
10 | /* | 12 | /* |
@@ -54,7 +56,9 @@ static inline pmd_t * pmd_offset(pud_t * pud, unsigned long address) | |||
54 | * inside the pud, so has no extra memory associated with it. | 56 | * inside the pud, so has no extra memory associated with it. |
55 | */ | 57 | */ |
56 | #define pmd_alloc_one(mm, address) NULL | 58 | #define pmd_alloc_one(mm, address) NULL |
57 | #define pmd_free(mm, x) do { } while (0) | 59 | static inline void pmd_free(struct mm_struct *mm, pmd_t *pmd) |
60 | { | ||
61 | } | ||
58 | #define __pmd_free_tlb(tlb, x) do { } while (0) | 62 | #define __pmd_free_tlb(tlb, x) do { } while (0) |
59 | 63 | ||
60 | #undef pmd_addr_end | 64 | #undef pmd_addr_end |
diff --git a/include/asm-powerpc/pgtable-4k.h b/include/asm-powerpc/pgtable-4k.h index c9601dfb4a1e..6b18ba9d2d85 100644 --- a/include/asm-powerpc/pgtable-4k.h +++ b/include/asm-powerpc/pgtable-4k.h | |||
@@ -46,6 +46,8 @@ | |||
46 | #define _PAGE_GROUP_IX 0x7000 /* software: HPTE index within group */ | 46 | #define _PAGE_GROUP_IX 0x7000 /* software: HPTE index within group */ |
47 | #define _PAGE_F_SECOND _PAGE_SECONDARY | 47 | #define _PAGE_F_SECOND _PAGE_SECONDARY |
48 | #define _PAGE_F_GIX _PAGE_GROUP_IX | 48 | #define _PAGE_F_GIX _PAGE_GROUP_IX |
49 | #define _PAGE_SPECIAL 0x10000 /* software: special page */ | ||
50 | #define __HAVE_ARCH_PTE_SPECIAL | ||
49 | 51 | ||
50 | /* PTE flags to conserve for HPTE identification */ | 52 | /* PTE flags to conserve for HPTE identification */ |
51 | #define _PAGE_HPTEFLAGS (_PAGE_BUSY | _PAGE_HASHPTE | \ | 53 | #define _PAGE_HPTEFLAGS (_PAGE_BUSY | _PAGE_HASHPTE | \ |
diff --git a/include/asm-powerpc/pgtable-64k.h b/include/asm-powerpc/pgtable-64k.h index 7e54adb35596..07b0d8f09cb6 100644 --- a/include/asm-powerpc/pgtable-64k.h +++ b/include/asm-powerpc/pgtable-64k.h | |||
@@ -70,6 +70,8 @@ static inline struct subpage_prot_table *pgd_subpage_prot(pgd_t *pgd) | |||
70 | #define PGDIR_MASK (~(PGDIR_SIZE-1)) | 70 | #define PGDIR_MASK (~(PGDIR_SIZE-1)) |
71 | 71 | ||
72 | /* Additional PTE bits (don't change without checking asm in hash_low.S) */ | 72 | /* Additional PTE bits (don't change without checking asm in hash_low.S) */ |
73 | #define __HAVE_ARCH_PTE_SPECIAL | ||
74 | #define _PAGE_SPECIAL 0x00000400 /* software: special page */ | ||
73 | #define _PAGE_HPTE_SUB 0x0ffff000 /* combo only: sub pages HPTE bits */ | 75 | #define _PAGE_HPTE_SUB 0x0ffff000 /* combo only: sub pages HPTE bits */ |
74 | #define _PAGE_HPTE_SUB0 0x08000000 /* combo only: first sub page */ | 76 | #define _PAGE_HPTE_SUB0 0x08000000 /* combo only: first sub page */ |
75 | #define _PAGE_COMBO 0x10000000 /* this is a combo 4k page */ | 77 | #define _PAGE_COMBO 0x10000000 /* this is a combo 4k page */ |
diff --git a/include/asm-powerpc/pgtable-ppc32.h b/include/asm-powerpc/pgtable-ppc32.h index bdbab72f3ebc..6fe39e327047 100644 --- a/include/asm-powerpc/pgtable-ppc32.h +++ b/include/asm-powerpc/pgtable-ppc32.h | |||
@@ -401,6 +401,9 @@ extern int icache_44x_need_flush; | |||
401 | #ifndef _PAGE_COHERENT | 401 | #ifndef _PAGE_COHERENT |
402 | #define _PAGE_COHERENT 0 | 402 | #define _PAGE_COHERENT 0 |
403 | #endif | 403 | #endif |
404 | #ifndef _PAGE_WRITETHRU | ||
405 | #define _PAGE_WRITETHRU 0 | ||
406 | #endif | ||
404 | #ifndef _PMD_PRESENT_MASK | 407 | #ifndef _PMD_PRESENT_MASK |
405 | #define _PMD_PRESENT_MASK _PMD_PRESENT | 408 | #define _PMD_PRESENT_MASK _PMD_PRESENT |
406 | #endif | 409 | #endif |
diff --git a/include/asm-powerpc/pgtable-ppc64.h b/include/asm-powerpc/pgtable-ppc64.h index ba8000352b9a..5fc78c0be302 100644 --- a/include/asm-powerpc/pgtable-ppc64.h +++ b/include/asm-powerpc/pgtable-ppc64.h | |||
@@ -245,7 +245,7 @@ static inline int pte_write(pte_t pte) { return pte_val(pte) & _PAGE_RW;} | |||
245 | static inline int pte_dirty(pte_t pte) { return pte_val(pte) & _PAGE_DIRTY;} | 245 | static inline int pte_dirty(pte_t pte) { return pte_val(pte) & _PAGE_DIRTY;} |
246 | static inline int pte_young(pte_t pte) { return pte_val(pte) & _PAGE_ACCESSED;} | 246 | static inline int pte_young(pte_t pte) { return pte_val(pte) & _PAGE_ACCESSED;} |
247 | static inline int pte_file(pte_t pte) { return pte_val(pte) & _PAGE_FILE;} | 247 | static inline int pte_file(pte_t pte) { return pte_val(pte) & _PAGE_FILE;} |
248 | static inline int pte_special(pte_t pte) { return 0; } | 248 | static inline int pte_special(pte_t pte) { return pte_val(pte) & _PAGE_SPECIAL; } |
249 | 249 | ||
250 | static inline void pte_uncache(pte_t pte) { pte_val(pte) |= _PAGE_NO_CACHE; } | 250 | static inline void pte_uncache(pte_t pte) { pte_val(pte) |= _PAGE_NO_CACHE; } |
251 | static inline void pte_cache(pte_t pte) { pte_val(pte) &= ~_PAGE_NO_CACHE; } | 251 | static inline void pte_cache(pte_t pte) { pte_val(pte) &= ~_PAGE_NO_CACHE; } |
@@ -265,7 +265,7 @@ static inline pte_t pte_mkyoung(pte_t pte) { | |||
265 | static inline pte_t pte_mkhuge(pte_t pte) { | 265 | static inline pte_t pte_mkhuge(pte_t pte) { |
266 | return pte; } | 266 | return pte; } |
267 | static inline pte_t pte_mkspecial(pte_t pte) { | 267 | static inline pte_t pte_mkspecial(pte_t pte) { |
268 | return pte; } | 268 | pte_val(pte) |= _PAGE_SPECIAL; return pte; } |
269 | static inline unsigned long pte_pgprot(pte_t pte) | 269 | static inline unsigned long pte_pgprot(pte_t pte) |
270 | { | 270 | { |
271 | return __pgprot(pte_val(pte)) & PAGE_PROT_BITS; | 271 | return __pgprot(pte_val(pte)) & PAGE_PROT_BITS; |
diff --git a/include/asm-powerpc/ptrace.h b/include/asm-powerpc/ptrace.h index 3d6e31024e56..734e0754fb9b 100644 --- a/include/asm-powerpc/ptrace.h +++ b/include/asm-powerpc/ptrace.h | |||
@@ -84,6 +84,7 @@ struct pt_regs { | |||
84 | #ifndef __ASSEMBLY__ | 84 | #ifndef __ASSEMBLY__ |
85 | 85 | ||
86 | #define instruction_pointer(regs) ((regs)->nip) | 86 | #define instruction_pointer(regs) ((regs)->nip) |
87 | #define user_stack_pointer(regs) ((regs)->gpr[1]) | ||
87 | #define regs_return_value(regs) ((regs)->gpr[3]) | 88 | #define regs_return_value(regs) ((regs)->gpr[3]) |
88 | 89 | ||
89 | #ifdef CONFIG_SMP | 90 | #ifdef CONFIG_SMP |
diff --git a/include/asm-powerpc/signal.h b/include/asm-powerpc/signal.h index a8c7babf4950..a7360cdd99eb 100644 --- a/include/asm-powerpc/signal.h +++ b/include/asm-powerpc/signal.h | |||
@@ -122,8 +122,7 @@ typedef struct sigaltstack { | |||
122 | 122 | ||
123 | #ifdef __KERNEL__ | 123 | #ifdef __KERNEL__ |
124 | struct pt_regs; | 124 | struct pt_regs; |
125 | extern int do_signal(sigset_t *oldset, struct pt_regs *regs); | 125 | extern void do_signal(struct pt_regs *regs, unsigned long thread_info_flags); |
126 | extern int do_signal32(sigset_t *oldset, struct pt_regs *regs); | ||
127 | #define ptrace_signal_deliver(regs, cookie) do { } while (0) | 126 | #define ptrace_signal_deliver(regs, cookie) do { } while (0) |
128 | #endif /* __KERNEL__ */ | 127 | #endif /* __KERNEL__ */ |
129 | 128 | ||
diff --git a/include/asm-powerpc/smp.h b/include/asm-powerpc/smp.h index 416d4c288cea..4d28e1e4521b 100644 --- a/include/asm-powerpc/smp.h +++ b/include/asm-powerpc/smp.h | |||
@@ -62,6 +62,8 @@ extern int smp_hw_index[]; | |||
62 | #endif | 62 | #endif |
63 | 63 | ||
64 | DECLARE_PER_CPU(cpumask_t, cpu_sibling_map); | 64 | DECLARE_PER_CPU(cpumask_t, cpu_sibling_map); |
65 | DECLARE_PER_CPU(cpumask_t, cpu_core_map); | ||
66 | extern int cpu_to_core_id(int cpu); | ||
65 | 67 | ||
66 | /* Since OpenPIC has only 4 IPIs, we use slightly different message numbers. | 68 | /* Since OpenPIC has only 4 IPIs, we use slightly different message numbers. |
67 | * | 69 | * |
diff --git a/include/asm-powerpc/syscall.h b/include/asm-powerpc/syscall.h new file mode 100644 index 000000000000..efa7f0b879f3 --- /dev/null +++ b/include/asm-powerpc/syscall.h | |||
@@ -0,0 +1,84 @@ | |||
1 | /* | ||
2 | * Access to user system call parameters and results | ||
3 | * | ||
4 | * Copyright (C) 2008 Red Hat, Inc. All rights reserved. | ||
5 | * | ||
6 | * This copyrighted material is made available to anyone wishing to use, | ||
7 | * modify, copy, or redistribute it subject to the terms and conditions | ||
8 | * of the GNU General Public License v.2. | ||
9 | * | ||
10 | * See asm-generic/syscall.h for descriptions of what we must do here. | ||
11 | */ | ||
12 | |||
13 | #ifndef _ASM_SYSCALL_H | ||
14 | #define _ASM_SYSCALL_H 1 | ||
15 | |||
16 | #include <linux/sched.h> | ||
17 | |||
18 | static inline long syscall_get_nr(struct task_struct *task, | ||
19 | struct pt_regs *regs) | ||
20 | { | ||
21 | return TRAP(regs) == 0xc00 ? regs->gpr[0] : -1L; | ||
22 | } | ||
23 | |||
24 | static inline void syscall_rollback(struct task_struct *task, | ||
25 | struct pt_regs *regs) | ||
26 | { | ||
27 | regs->gpr[3] = regs->orig_gpr3; | ||
28 | } | ||
29 | |||
30 | static inline long syscall_get_error(struct task_struct *task, | ||
31 | struct pt_regs *regs) | ||
32 | { | ||
33 | return (regs->ccr & 0x1000) ? -regs->gpr[3] : 0; | ||
34 | } | ||
35 | |||
36 | static inline long syscall_get_return_value(struct task_struct *task, | ||
37 | struct pt_regs *regs) | ||
38 | { | ||
39 | return regs->gpr[3]; | ||
40 | } | ||
41 | |||
42 | static inline void syscall_set_return_value(struct task_struct *task, | ||
43 | struct pt_regs *regs, | ||
44 | int error, long val) | ||
45 | { | ||
46 | if (error) { | ||
47 | regs->ccr |= 0x1000L; | ||
48 | regs->gpr[3] = -error; | ||
49 | } else { | ||
50 | regs->ccr &= ~0x1000L; | ||
51 | regs->gpr[3] = val; | ||
52 | } | ||
53 | } | ||
54 | |||
55 | static inline void syscall_get_arguments(struct task_struct *task, | ||
56 | struct pt_regs *regs, | ||
57 | unsigned int i, unsigned int n, | ||
58 | unsigned long *args) | ||
59 | { | ||
60 | BUG_ON(i + n > 6); | ||
61 | #ifdef CONFIG_PPC64 | ||
62 | if (test_tsk_thread_flag(task, TIF_32BIT)) { | ||
63 | /* | ||
64 | * Zero-extend 32-bit argument values. The high bits are | ||
65 | * garbage ignored by the actual syscall dispatch. | ||
66 | */ | ||
67 | while (n-- > 0) | ||
68 | args[n] = (u32) regs->gpr[3 + i + n]; | ||
69 | return; | ||
70 | } | ||
71 | #endif | ||
72 | memcpy(args, ®s->gpr[3 + i], n * sizeof(args[0])); | ||
73 | } | ||
74 | |||
75 | static inline void syscall_set_arguments(struct task_struct *task, | ||
76 | struct pt_regs *regs, | ||
77 | unsigned int i, unsigned int n, | ||
78 | const unsigned long *args) | ||
79 | { | ||
80 | BUG_ON(i + n > 6); | ||
81 | memcpy(®s->gpr[3 + i], args, n * sizeof(args[0])); | ||
82 | } | ||
83 | |||
84 | #endif /* _ASM_SYSCALL_H */ | ||
diff --git a/include/asm-powerpc/thread_info.h b/include/asm-powerpc/thread_info.h index a9db562df69a..9665a26a253a 100644 --- a/include/asm-powerpc/thread_info.h +++ b/include/asm-powerpc/thread_info.h | |||
@@ -108,6 +108,7 @@ static inline struct thread_info *current_thread_info(void) | |||
108 | #define TIF_SECCOMP 10 /* secure computing */ | 108 | #define TIF_SECCOMP 10 /* secure computing */ |
109 | #define TIF_RESTOREALL 11 /* Restore all regs (implies NOERROR) */ | 109 | #define TIF_RESTOREALL 11 /* Restore all regs (implies NOERROR) */ |
110 | #define TIF_NOERROR 12 /* Force successful syscall return */ | 110 | #define TIF_NOERROR 12 /* Force successful syscall return */ |
111 | #define TIF_NOTIFY_RESUME 13 /* callback before returning to user */ | ||
111 | #define TIF_FREEZE 14 /* Freezing for suspend */ | 112 | #define TIF_FREEZE 14 /* Freezing for suspend */ |
112 | #define TIF_RUNLATCH 15 /* Is the runlatch enabled? */ | 113 | #define TIF_RUNLATCH 15 /* Is the runlatch enabled? */ |
113 | #define TIF_ABI_PENDING 16 /* 32/64 bit switch needed */ | 114 | #define TIF_ABI_PENDING 16 /* 32/64 bit switch needed */ |
@@ -125,12 +126,14 @@ static inline struct thread_info *current_thread_info(void) | |||
125 | #define _TIF_SECCOMP (1<<TIF_SECCOMP) | 126 | #define _TIF_SECCOMP (1<<TIF_SECCOMP) |
126 | #define _TIF_RESTOREALL (1<<TIF_RESTOREALL) | 127 | #define _TIF_RESTOREALL (1<<TIF_RESTOREALL) |
127 | #define _TIF_NOERROR (1<<TIF_NOERROR) | 128 | #define _TIF_NOERROR (1<<TIF_NOERROR) |
129 | #define _TIF_NOTIFY_RESUME (1<<TIF_NOTIFY_RESUME) | ||
128 | #define _TIF_FREEZE (1<<TIF_FREEZE) | 130 | #define _TIF_FREEZE (1<<TIF_FREEZE) |
129 | #define _TIF_RUNLATCH (1<<TIF_RUNLATCH) | 131 | #define _TIF_RUNLATCH (1<<TIF_RUNLATCH) |
130 | #define _TIF_ABI_PENDING (1<<TIF_ABI_PENDING) | 132 | #define _TIF_ABI_PENDING (1<<TIF_ABI_PENDING) |
131 | #define _TIF_SYSCALL_T_OR_A (_TIF_SYSCALL_TRACE|_TIF_SYSCALL_AUDIT|_TIF_SECCOMP) | 133 | #define _TIF_SYSCALL_T_OR_A (_TIF_SYSCALL_TRACE|_TIF_SYSCALL_AUDIT|_TIF_SECCOMP) |
132 | 134 | ||
133 | #define _TIF_USER_WORK_MASK (_TIF_SIGPENDING | _TIF_NEED_RESCHED) | 135 | #define _TIF_USER_WORK_MASK (_TIF_SIGPENDING | _TIF_NEED_RESCHED | \ |
136 | _TIF_NOTIFY_RESUME) | ||
134 | #define _TIF_PERSYSCALL_MASK (_TIF_RESTOREALL|_TIF_NOERROR) | 137 | #define _TIF_PERSYSCALL_MASK (_TIF_RESTOREALL|_TIF_NOERROR) |
135 | 138 | ||
136 | /* Bits in local_flags */ | 139 | /* Bits in local_flags */ |
diff --git a/include/asm-powerpc/topology.h b/include/asm-powerpc/topology.h index 100c6fbfc587..c32da6f97999 100644 --- a/include/asm-powerpc/topology.h +++ b/include/asm-powerpc/topology.h | |||
@@ -108,6 +108,8 @@ static inline void sysfs_remove_device_from_node(struct sys_device *dev, | |||
108 | #include <asm/smp.h> | 108 | #include <asm/smp.h> |
109 | 109 | ||
110 | #define topology_thread_siblings(cpu) (per_cpu(cpu_sibling_map, cpu)) | 110 | #define topology_thread_siblings(cpu) (per_cpu(cpu_sibling_map, cpu)) |
111 | #define topology_core_siblings(cpu) (per_cpu(cpu_core_map, cpu)) | ||
112 | #define topology_core_id(cpu) (cpu_to_core_id(cpu)) | ||
111 | #endif | 113 | #endif |
112 | #endif | 114 | #endif |
113 | 115 | ||
diff --git a/include/asm-sh/clock.h b/include/asm-sh/clock.h index b550a27a7042..720dfab7b15e 100644 --- a/include/asm-sh/clock.h +++ b/include/asm-sh/clock.h | |||
@@ -5,6 +5,7 @@ | |||
5 | #include <linux/list.h> | 5 | #include <linux/list.h> |
6 | #include <linux/seq_file.h> | 6 | #include <linux/seq_file.h> |
7 | #include <linux/clk.h> | 7 | #include <linux/clk.h> |
8 | #include <linux/err.h> | ||
8 | 9 | ||
9 | struct clk; | 10 | struct clk; |
10 | 11 | ||
@@ -30,6 +31,7 @@ struct clk { | |||
30 | 31 | ||
31 | unsigned long rate; | 32 | unsigned long rate; |
32 | unsigned long flags; | 33 | unsigned long flags; |
34 | unsigned long arch_flags; | ||
33 | }; | 35 | }; |
34 | 36 | ||
35 | #define CLK_ALWAYS_ENABLED (1 << 0) | 37 | #define CLK_ALWAYS_ENABLED (1 << 0) |
@@ -41,14 +43,27 @@ void arch_init_clk_ops(struct clk_ops **, int type); | |||
41 | /* arch/sh/kernel/cpu/clock.c */ | 43 | /* arch/sh/kernel/cpu/clock.c */ |
42 | int clk_init(void); | 44 | int clk_init(void); |
43 | 45 | ||
44 | int __clk_enable(struct clk *); | ||
45 | void __clk_disable(struct clk *); | ||
46 | |||
47 | void clk_recalc_rate(struct clk *); | 46 | void clk_recalc_rate(struct clk *); |
48 | 47 | ||
49 | int clk_register(struct clk *); | 48 | int clk_register(struct clk *); |
50 | void clk_unregister(struct clk *); | 49 | void clk_unregister(struct clk *); |
51 | 50 | ||
51 | static inline int clk_always_enable(const char *id) | ||
52 | { | ||
53 | struct clk *clk; | ||
54 | int ret; | ||
55 | |||
56 | clk = clk_get(NULL, id); | ||
57 | if (IS_ERR(clk)) | ||
58 | return PTR_ERR(clk); | ||
59 | |||
60 | ret = clk_enable(clk); | ||
61 | if (ret) | ||
62 | clk_put(clk); | ||
63 | |||
64 | return ret; | ||
65 | } | ||
66 | |||
52 | /* the exported API, in addition to clk_set_rate */ | 67 | /* the exported API, in addition to clk_set_rate */ |
53 | /** | 68 | /** |
54 | * clk_set_rate_ex - set the clock rate for a clock source, with additional parameter | 69 | * clk_set_rate_ex - set the clock rate for a clock source, with additional parameter |
diff --git a/include/asm-sh/cpu-sh4/cacheflush.h b/include/asm-sh/cpu-sh4/cacheflush.h index 5fd5c89ef86a..065306d376eb 100644 --- a/include/asm-sh/cpu-sh4/cacheflush.h +++ b/include/asm-sh/cpu-sh4/cacheflush.h | |||
@@ -30,7 +30,6 @@ void flush_dcache_page(struct page *pg); | |||
30 | #define flush_dcache_mmap_unlock(mapping) do { } while (0) | 30 | #define flush_dcache_mmap_unlock(mapping) do { } while (0) |
31 | 31 | ||
32 | void flush_icache_range(unsigned long start, unsigned long end); | 32 | void flush_icache_range(unsigned long start, unsigned long end); |
33 | void flush_cache_sigtramp(unsigned long addr); | ||
34 | void flush_icache_user_range(struct vm_area_struct *vma, struct page *page, | 33 | void flush_icache_user_range(struct vm_area_struct *vma, struct page *page, |
35 | unsigned long addr, int len); | 34 | unsigned long addr, int len); |
36 | 35 | ||
diff --git a/include/asm-sh/cpu-sh4/freq.h b/include/asm-sh/cpu-sh4/freq.h index da46e67ae26d..c23af81c2e70 100644 --- a/include/asm-sh/cpu-sh4/freq.h +++ b/include/asm-sh/cpu-sh4/freq.h | |||
@@ -12,12 +12,16 @@ | |||
12 | 12 | ||
13 | #if defined(CONFIG_CPU_SUBTYPE_SH7722) || \ | 13 | #if defined(CONFIG_CPU_SUBTYPE_SH7722) || \ |
14 | defined(CONFIG_CPU_SUBTYPE_SH7723) || \ | 14 | defined(CONFIG_CPU_SUBTYPE_SH7723) || \ |
15 | defined(CONFIG_CPU_SUBTYPE_SH7343) || \ | ||
15 | defined(CONFIG_CPU_SUBTYPE_SH7366) | 16 | defined(CONFIG_CPU_SUBTYPE_SH7366) |
16 | #define FRQCR 0xa4150000 | 17 | #define FRQCR 0xa4150000 |
17 | #define VCLKCR 0xa4150004 | 18 | #define VCLKCR 0xa4150004 |
18 | #define SCLKACR 0xa4150008 | 19 | #define SCLKACR 0xa4150008 |
19 | #define SCLKBCR 0xa415000c | 20 | #define SCLKBCR 0xa415000c |
20 | #define IrDACLKCR 0xa4150010 | 21 | #define IrDACLKCR 0xa4150010 |
22 | #define MSTPCR0 0xa4150030 | ||
23 | #define MSTPCR1 0xa4150034 | ||
24 | #define MSTPCR2 0xa4150038 | ||
21 | #elif defined(CONFIG_CPU_SUBTYPE_SH7763) || \ | 25 | #elif defined(CONFIG_CPU_SUBTYPE_SH7763) || \ |
22 | defined(CONFIG_CPU_SUBTYPE_SH7780) | 26 | defined(CONFIG_CPU_SUBTYPE_SH7780) |
23 | #define FRQCR 0xffc80000 | 27 | #define FRQCR 0xffc80000 |
diff --git a/include/asm-sh/device.h b/include/asm-sh/device.h index d8f9872b0e2d..efd511d0803a 100644 --- a/include/asm-sh/device.h +++ b/include/asm-sh/device.h | |||
@@ -5,3 +5,8 @@ | |||
5 | */ | 5 | */ |
6 | #include <asm-generic/device.h> | 6 | #include <asm-generic/device.h> |
7 | 7 | ||
8 | struct platform_device; | ||
9 | /* allocate contiguous memory chunk and fill in struct resource */ | ||
10 | int platform_resource_setup_memory(struct platform_device *pdev, | ||
11 | char *name, unsigned long memsize); | ||
12 | |||
diff --git a/include/asm-sh/dma-mapping.h b/include/asm-sh/dma-mapping.h index 6c0b8a2de143..627315ecdb52 100644 --- a/include/asm-sh/dma-mapping.h +++ b/include/asm-sh/dma-mapping.h | |||
@@ -5,6 +5,7 @@ | |||
5 | #include <linux/scatterlist.h> | 5 | #include <linux/scatterlist.h> |
6 | #include <asm/cacheflush.h> | 6 | #include <asm/cacheflush.h> |
7 | #include <asm/io.h> | 7 | #include <asm/io.h> |
8 | #include <asm-generic/dma-coherent.h> | ||
8 | 9 | ||
9 | extern struct bus_type pci_bus_type; | 10 | extern struct bus_type pci_bus_type; |
10 | 11 | ||
diff --git a/include/asm-sh/elf.h b/include/asm-sh/elf.h index 05092da1aa59..f01449a8d378 100644 --- a/include/asm-sh/elf.h +++ b/include/asm-sh/elf.h | |||
@@ -1,10 +1,15 @@ | |||
1 | #ifndef __ASM_SH_ELF_H | 1 | #ifndef __ASM_SH_ELF_H |
2 | #define __ASM_SH_ELF_H | 2 | #define __ASM_SH_ELF_H |
3 | 3 | ||
4 | #include <linux/utsname.h> | ||
4 | #include <asm/auxvec.h> | 5 | #include <asm/auxvec.h> |
5 | #include <asm/ptrace.h> | 6 | #include <asm/ptrace.h> |
6 | #include <asm/user.h> | 7 | #include <asm/user.h> |
7 | 8 | ||
9 | /* ELF header e_flags defines */ | ||
10 | #define EF_SH_PIC 0x100 /* -fpic */ | ||
11 | #define EF_SH_FDPIC 0x8000 /* -mfdpic */ | ||
12 | |||
8 | /* SH (particularly SHcompact) relocation types */ | 13 | /* SH (particularly SHcompact) relocation types */ |
9 | #define R_SH_NONE 0 | 14 | #define R_SH_NONE 0 |
10 | #define R_SH_DIR32 1 | 15 | #define R_SH_DIR32 1 |
@@ -43,6 +48,28 @@ | |||
43 | #define R_SH_RELATIVE 165 | 48 | #define R_SH_RELATIVE 165 |
44 | #define R_SH_GOTOFF 166 | 49 | #define R_SH_GOTOFF 166 |
45 | #define R_SH_GOTPC 167 | 50 | #define R_SH_GOTPC 167 |
51 | |||
52 | /* FDPIC relocs */ | ||
53 | #define R_SH_GOT20 70 | ||
54 | #define R_SH_GOTOFF20 71 | ||
55 | #define R_SH_GOTFUNCDESC 72 | ||
56 | #define R_SH_GOTFUNCDESC20 73 | ||
57 | #define R_SH_GOTOFFFUNCDESC 74 | ||
58 | #define R_SH_GOTOFFFUNCDESC20 75 | ||
59 | #define R_SH_FUNCDESC 76 | ||
60 | #define R_SH_FUNCDESC_VALUE 77 | ||
61 | |||
62 | #if 0 /* XXX - later .. */ | ||
63 | #define R_SH_GOT20 198 | ||
64 | #define R_SH_GOTOFF20 199 | ||
65 | #define R_SH_GOTFUNCDESC 200 | ||
66 | #define R_SH_GOTFUNCDESC20 201 | ||
67 | #define R_SH_GOTOFFFUNCDESC 202 | ||
68 | #define R_SH_GOTOFFFUNCDESC20 203 | ||
69 | #define R_SH_FUNCDESC 204 | ||
70 | #define R_SH_FUNCDESC_VALUE 205 | ||
71 | #endif | ||
72 | |||
46 | /* SHmedia relocs */ | 73 | /* SHmedia relocs */ |
47 | #define R_SH_IMM_LOW16 246 | 74 | #define R_SH_IMM_LOW16 246 |
48 | #define R_SH_IMM_LOW16_PCREL 247 | 75 | #define R_SH_IMM_LOW16_PCREL 247 |
@@ -77,9 +104,12 @@ typedef struct user_fpu_struct elf_fpregset_t; | |||
77 | /* | 104 | /* |
78 | * This is used to ensure we don't load something for the wrong architecture. | 105 | * This is used to ensure we don't load something for the wrong architecture. |
79 | */ | 106 | */ |
80 | #define elf_check_arch(x) ( (x)->e_machine == EM_SH ) | 107 | #define elf_check_arch(x) ((x)->e_machine == EM_SH) |
108 | #define elf_check_fdpic(x) ((x)->e_flags & EF_SH_FDPIC) | ||
109 | #define elf_check_const_displacement(x) ((x)->e_flags & EF_SH_PIC) | ||
81 | 110 | ||
82 | #define USE_ELF_CORE_DUMP | 111 | #define USE_ELF_CORE_DUMP |
112 | #define ELF_FDPIC_CORE_EFLAGS EF_SH_FDPIC | ||
83 | #define ELF_EXEC_PAGESIZE PAGE_SIZE | 113 | #define ELF_EXEC_PAGESIZE PAGE_SIZE |
84 | 114 | ||
85 | /* This is the location that an ET_DYN program is loaded if exec'ed. Typical | 115 | /* This is the location that an ET_DYN program is loaded if exec'ed. Typical |
@@ -136,6 +166,27 @@ typedef struct user_fpu_struct elf_fpregset_t; | |||
136 | _r->regs[8]=0; _r->regs[9]=0; _r->regs[10]=0; _r->regs[11]=0; \ | 166 | _r->regs[8]=0; _r->regs[9]=0; _r->regs[10]=0; _r->regs[11]=0; \ |
137 | _r->regs[12]=0; _r->regs[13]=0; _r->regs[14]=0; \ | 167 | _r->regs[12]=0; _r->regs[13]=0; _r->regs[14]=0; \ |
138 | _r->sr = SR_FD; } while (0) | 168 | _r->sr = SR_FD; } while (0) |
169 | |||
170 | #define ELF_FDPIC_PLAT_INIT(_r, _exec_map_addr, _interp_map_addr, \ | ||
171 | _dynamic_addr) \ | ||
172 | do { \ | ||
173 | _r->regs[0] = 0; \ | ||
174 | _r->regs[1] = 0; \ | ||
175 | _r->regs[2] = 0; \ | ||
176 | _r->regs[3] = 0; \ | ||
177 | _r->regs[4] = 0; \ | ||
178 | _r->regs[5] = 0; \ | ||
179 | _r->regs[6] = 0; \ | ||
180 | _r->regs[7] = 0; \ | ||
181 | _r->regs[8] = _exec_map_addr; \ | ||
182 | _r->regs[9] = _interp_map_addr; \ | ||
183 | _r->regs[10] = _dynamic_addr; \ | ||
184 | _r->regs[11] = 0; \ | ||
185 | _r->regs[12] = 0; \ | ||
186 | _r->regs[13] = 0; \ | ||
187 | _r->regs[14] = 0; \ | ||
188 | _r->sr = SR_FD; \ | ||
189 | } while (0) | ||
139 | #endif | 190 | #endif |
140 | 191 | ||
141 | #define SET_PERSONALITY(ex, ibcs2) set_personality(PER_LINUX_32BIT) | 192 | #define SET_PERSONALITY(ex, ibcs2) set_personality(PER_LINUX_32BIT) |
diff --git a/include/asm-sh/hw_irq.h b/include/asm-sh/hw_irq.h index 7438d1e21bc9..d557b00111bf 100644 --- a/include/asm-sh/hw_irq.h +++ b/include/asm-sh/hw_irq.h | |||
@@ -79,7 +79,7 @@ struct intc_desc { | |||
79 | struct intc_sense_reg *sense_regs; | 79 | struct intc_sense_reg *sense_regs; |
80 | unsigned int nr_sense_regs; | 80 | unsigned int nr_sense_regs; |
81 | char *name; | 81 | char *name; |
82 | #ifdef CONFIG_CPU_SH3 | 82 | #if defined(CONFIG_CPU_SH3) || defined(CONFIG_CPU_SH4A) |
83 | struct intc_mask_reg *ack_regs; | 83 | struct intc_mask_reg *ack_regs; |
84 | unsigned int nr_ack_regs; | 84 | unsigned int nr_ack_regs; |
85 | #endif | 85 | #endif |
@@ -95,7 +95,7 @@ struct intc_desc symbol __initdata = { \ | |||
95 | chipname, \ | 95 | chipname, \ |
96 | } | 96 | } |
97 | 97 | ||
98 | #ifdef CONFIG_CPU_SH3 | 98 | #if defined(CONFIG_CPU_SH3) || defined(CONFIG_CPU_SH4A) |
99 | #define DECLARE_INTC_DESC_ACK(symbol, chipname, vectors, groups, \ | 99 | #define DECLARE_INTC_DESC_ACK(symbol, chipname, vectors, groups, \ |
100 | mask_regs, prio_regs, sense_regs, ack_regs) \ | 100 | mask_regs, prio_regs, sense_regs, ack_regs) \ |
101 | struct intc_desc symbol __initdata = { \ | 101 | struct intc_desc symbol __initdata = { \ |
diff --git a/include/asm-sh/migor.h b/include/asm-sh/migor.h index 2329363afdc3..10016e0f4a4e 100644 --- a/include/asm-sh/migor.h +++ b/include/asm-sh/migor.h | |||
@@ -16,10 +16,6 @@ | |||
16 | #include <asm/addrspace.h> | 16 | #include <asm/addrspace.h> |
17 | 17 | ||
18 | /* GPIO */ | 18 | /* GPIO */ |
19 | #define MSTPCR0 0xa4150030 | ||
20 | #define MSTPCR1 0xa4150034 | ||
21 | #define MSTPCR2 0xa4150038 | ||
22 | |||
23 | #define PORT_PACR 0xa4050100 | 19 | #define PORT_PACR 0xa4050100 |
24 | #define PORT_PDCR 0xa4050106 | 20 | #define PORT_PDCR 0xa4050106 |
25 | #define PORT_PECR 0xa4050108 | 21 | #define PORT_PECR 0xa4050108 |
@@ -29,11 +25,16 @@ | |||
29 | #define PORT_PLCR 0xa4050114 | 25 | #define PORT_PLCR 0xa4050114 |
30 | #define PORT_PMCR 0xa4050116 | 26 | #define PORT_PMCR 0xa4050116 |
31 | #define PORT_PRCR 0xa405011c | 27 | #define PORT_PRCR 0xa405011c |
28 | #define PORT_PTCR 0xa4050140 | ||
29 | #define PORT_PUCR 0xa4050142 | ||
30 | #define PORT_PVCR 0xa4050144 | ||
32 | #define PORT_PWCR 0xa4050146 | 31 | #define PORT_PWCR 0xa4050146 |
33 | #define PORT_PXCR 0xa4050148 | 32 | #define PORT_PXCR 0xa4050148 |
34 | #define PORT_PYCR 0xa405014a | 33 | #define PORT_PYCR 0xa405014a |
35 | #define PORT_PZCR 0xa405014c | 34 | #define PORT_PZCR 0xa405014c |
36 | #define PORT_PADR 0xa4050120 | 35 | #define PORT_PADR 0xa4050120 |
36 | #define PORT_PHDR 0xa405012e | ||
37 | #define PORT_PTDR 0xa4050160 | ||
37 | #define PORT_PWDR 0xa4050166 | 38 | #define PORT_PWDR 0xa4050166 |
38 | 39 | ||
39 | #define PORT_HIZCRA 0xa4050158 | 40 | #define PORT_HIZCRA 0xa4050158 |
@@ -48,6 +49,7 @@ | |||
48 | #define PORT_PSELB 0xa4050150 | 49 | #define PORT_PSELB 0xa4050150 |
49 | #define PORT_PSELC 0xa4050152 | 50 | #define PORT_PSELC 0xa4050152 |
50 | #define PORT_PSELD 0xa4050154 | 51 | #define PORT_PSELD 0xa4050154 |
52 | #define PORT_PSELE 0xa4050156 | ||
51 | 53 | ||
52 | #define PORT_HIZCRA 0xa4050158 | 54 | #define PORT_HIZCRA 0xa4050158 |
53 | #define PORT_HIZCRB 0xa405015a | 55 | #define PORT_HIZCRB 0xa405015a |
@@ -55,4 +57,9 @@ | |||
55 | 57 | ||
56 | #define BSC_CS6ABCR 0xfec1001c | 58 | #define BSC_CS6ABCR 0xfec1001c |
57 | 59 | ||
60 | #include <asm/sh_mobile_lcdc.h> | ||
61 | |||
62 | int migor_lcd_qvga_setup(void *board_data, void *sys_ops_handle, | ||
63 | struct sh_mobile_lcdc_sys_bus_ops *sys_ops); | ||
64 | |||
58 | #endif /* __ASM_SH_MIGOR_H */ | 65 | #endif /* __ASM_SH_MIGOR_H */ |
diff --git a/include/asm-sh/mmu.h b/include/asm-sh/mmu.h index eb0358c097d0..fdcb93bc6d11 100644 --- a/include/asm-sh/mmu.h +++ b/include/asm-sh/mmu.h | |||
@@ -12,6 +12,10 @@ typedef struct { | |||
12 | struct vm_list_struct *vmlist; | 12 | struct vm_list_struct *vmlist; |
13 | unsigned long end_brk; | 13 | unsigned long end_brk; |
14 | #endif | 14 | #endif |
15 | #ifdef CONFIG_BINFMT_ELF_FDPIC | ||
16 | unsigned long exec_fdpic_loadmap; | ||
17 | unsigned long interp_fdpic_loadmap; | ||
18 | #endif | ||
15 | } mm_context_t; | 19 | } mm_context_t; |
16 | 20 | ||
17 | /* | 21 | /* |
diff --git a/include/asm-sh/mmu_context.h b/include/asm-sh/mmu_context.h index 87e812f68bb0..8589a50febd0 100644 --- a/include/asm-sh/mmu_context.h +++ b/include/asm-sh/mmu_context.h | |||
@@ -27,8 +27,9 @@ | |||
27 | /* ASID is 8-bit value, so it can't be 0x100 */ | 27 | /* ASID is 8-bit value, so it can't be 0x100 */ |
28 | #define MMU_NO_ASID 0x100 | 28 | #define MMU_NO_ASID 0x100 |
29 | 29 | ||
30 | #ifdef CONFIG_MMU | ||
31 | #define asid_cache(cpu) (cpu_data[cpu].asid_cache) | 30 | #define asid_cache(cpu) (cpu_data[cpu].asid_cache) |
31 | |||
32 | #ifdef CONFIG_MMU | ||
32 | #define cpu_context(cpu, mm) ((mm)->context.id[cpu]) | 33 | #define cpu_context(cpu, mm) ((mm)->context.id[cpu]) |
33 | 34 | ||
34 | #define cpu_asid(cpu, mm) \ | 35 | #define cpu_asid(cpu, mm) \ |
diff --git a/include/asm-sh/page.h b/include/asm-sh/page.h index 5dc01d2fcc4c..77fb8bf02e4e 100644 --- a/include/asm-sh/page.h +++ b/include/asm-sh/page.h | |||
@@ -12,6 +12,8 @@ | |||
12 | # define PAGE_SHIFT 12 | 12 | # define PAGE_SHIFT 12 |
13 | #elif defined(CONFIG_PAGE_SIZE_8KB) | 13 | #elif defined(CONFIG_PAGE_SIZE_8KB) |
14 | # define PAGE_SHIFT 13 | 14 | # define PAGE_SHIFT 13 |
15 | #elif defined(CONFIG_PAGE_SIZE_16KB) | ||
16 | # define PAGE_SHIFT 14 | ||
15 | #elif defined(CONFIG_PAGE_SIZE_64KB) | 17 | #elif defined(CONFIG_PAGE_SIZE_64KB) |
16 | # define PAGE_SHIFT 16 | 18 | # define PAGE_SHIFT 16 |
17 | #else | 19 | #else |
diff --git a/include/asm-sh/pgtable_32.h b/include/asm-sh/pgtable_32.h index cbc731d35c25..72ea209195bd 100644 --- a/include/asm-sh/pgtable_32.h +++ b/include/asm-sh/pgtable_32.h | |||
@@ -102,7 +102,9 @@ | |||
102 | #define _PAGE_FLAGS_HARDWARE_MASK (PHYS_ADDR_MASK & ~(_PAGE_CLEAR_FLAGS)) | 102 | #define _PAGE_FLAGS_HARDWARE_MASK (PHYS_ADDR_MASK & ~(_PAGE_CLEAR_FLAGS)) |
103 | 103 | ||
104 | /* Hardware flags, page size encoding */ | 104 | /* Hardware flags, page size encoding */ |
105 | #if defined(CONFIG_X2TLB) | 105 | #if !defined(CONFIG_MMU) |
106 | # define _PAGE_FLAGS_HARD 0ULL | ||
107 | #elif defined(CONFIG_X2TLB) | ||
106 | # if defined(CONFIG_PAGE_SIZE_4KB) | 108 | # if defined(CONFIG_PAGE_SIZE_4KB) |
107 | # define _PAGE_FLAGS_HARD _PAGE_EXT(_PAGE_EXT_ESZ0) | 109 | # define _PAGE_FLAGS_HARD _PAGE_EXT(_PAGE_EXT_ESZ0) |
108 | # elif defined(CONFIG_PAGE_SIZE_8KB) | 110 | # elif defined(CONFIG_PAGE_SIZE_8KB) |
diff --git a/include/asm-sh/processor.h b/include/asm-sh/processor.h index b7c7ce80f03e..15d9f92ca383 100644 --- a/include/asm-sh/processor.h +++ b/include/asm-sh/processor.h | |||
@@ -2,6 +2,7 @@ | |||
2 | #define __ASM_SH_PROCESSOR_H | 2 | #define __ASM_SH_PROCESSOR_H |
3 | 3 | ||
4 | #include <asm/cpu-features.h> | 4 | #include <asm/cpu-features.h> |
5 | #include <asm/segment.h> | ||
5 | 6 | ||
6 | #ifndef __ASSEMBLY__ | 7 | #ifndef __ASSEMBLY__ |
7 | /* | 8 | /* |
diff --git a/include/asm-sh/processor_32.h b/include/asm-sh/processor_32.h index c09305d6a9d9..c6583f267071 100644 --- a/include/asm-sh/processor_32.h +++ b/include/asm-sh/processor_32.h | |||
@@ -28,6 +28,7 @@ | |||
28 | 28 | ||
29 | struct sh_cpuinfo { | 29 | struct sh_cpuinfo { |
30 | unsigned int type; | 30 | unsigned int type; |
31 | int cut_major, cut_minor; | ||
31 | unsigned long loops_per_jiffy; | 32 | unsigned long loops_per_jiffy; |
32 | unsigned long asid_cache; | 33 | unsigned long asid_cache; |
33 | 34 | ||
@@ -113,10 +114,6 @@ struct thread_struct { | |||
113 | union sh_fpu_union fpu; | 114 | union sh_fpu_union fpu; |
114 | }; | 115 | }; |
115 | 116 | ||
116 | typedef struct { | ||
117 | unsigned long seg; | ||
118 | } mm_segment_t; | ||
119 | |||
120 | /* Count of active tasks with UBC settings */ | 117 | /* Count of active tasks with UBC settings */ |
121 | extern int ubc_usercnt; | 118 | extern int ubc_usercnt; |
122 | 119 | ||
diff --git a/include/asm-sh/processor_64.h b/include/asm-sh/processor_64.h index 88a2edf8fa5d..fc7fc685ba27 100644 --- a/include/asm-sh/processor_64.h +++ b/include/asm-sh/processor_64.h | |||
@@ -166,10 +166,6 @@ struct thread_struct { | |||
166 | union sh_fpu_union fpu; | 166 | union sh_fpu_union fpu; |
167 | }; | 167 | }; |
168 | 168 | ||
169 | typedef struct { | ||
170 | unsigned long seg; | ||
171 | } mm_segment_t; | ||
172 | |||
173 | #define INIT_MMAP \ | 169 | #define INIT_MMAP \ |
174 | { &init_mm, 0, 0, NULL, PAGE_SHARED, VM_READ | VM_WRITE | VM_EXEC, 1, NULL, NULL } | 170 | { &init_mm, 0, 0, NULL, PAGE_SHARED, VM_READ | VM_WRITE | VM_EXEC, 1, NULL, NULL } |
175 | 171 | ||
diff --git a/include/asm-sh/ptrace.h b/include/asm-sh/ptrace.h index 7d36dc3bee69..643ab5a7cf3b 100644 --- a/include/asm-sh/ptrace.h +++ b/include/asm-sh/ptrace.h | |||
@@ -87,6 +87,11 @@ struct pt_dspregs { | |||
87 | unsigned long mod; | 87 | unsigned long mod; |
88 | }; | 88 | }; |
89 | 89 | ||
90 | #define PTRACE_GETFDPIC 31 /* get the ELF fdpic loadmap address */ | ||
91 | |||
92 | #define PTRACE_GETFDPIC_EXEC 0 /* [addr] request the executable loadmap */ | ||
93 | #define PTRACE_GETFDPIC_INTERP 1 /* [addr] request the interpreter loadmap */ | ||
94 | |||
90 | #define PTRACE_GETDSPREGS 55 | 95 | #define PTRACE_GETDSPREGS 55 |
91 | #define PTRACE_SETDSPREGS 56 | 96 | #define PTRACE_SETDSPREGS 56 |
92 | #endif | 97 | #endif |
diff --git a/include/asm-sh/se.h b/include/asm-sh/se.h index bd2596c014a9..eb23000e1bbe 100644 --- a/include/asm-sh/se.h +++ b/include/asm-sh/se.h | |||
@@ -76,6 +76,23 @@ | |||
76 | #define IRQ_CFCARD 7 | 76 | #define IRQ_CFCARD 7 |
77 | #endif | 77 | #endif |
78 | 78 | ||
79 | /* SH Ether support (SH7710/SH7712) */ | ||
80 | /* Base address */ | ||
81 | #define SH_ETH0_BASE 0xA7000000 | ||
82 | #define SH_ETH1_BASE 0xA7000400 | ||
83 | /* PHY ID */ | ||
84 | #if defined(CONFIG_CPU_SUBTYPE_SH7710) | ||
85 | # define PHY_ID 0x00 | ||
86 | #elif defined(CONFIG_CPU_SUBTYPE_SH7712) | ||
87 | # define PHY_ID 0x01 | ||
88 | #endif | ||
89 | /* Ether IRQ */ | ||
90 | #define SH_ETH0_IRQ 80 | ||
91 | #define SH_ETH1_IRQ 81 | ||
92 | #define SH_TSU_IRQ 82 | ||
93 | |||
94 | void init_se_IRQ(void); | ||
95 | |||
79 | #define __IO_PREFIX se | 96 | #define __IO_PREFIX se |
80 | #include <asm/io_generic.h> | 97 | #include <asm/io_generic.h> |
81 | 98 | ||
diff --git a/include/asm-sh/se7343.h b/include/asm-sh/se7343.h index e7914a54aa96..98458460e632 100644 --- a/include/asm-sh/se7343.h +++ b/include/asm-sh/se7343.h | |||
@@ -59,24 +59,91 @@ | |||
59 | #define PA_LCD1 0xb8000000 | 59 | #define PA_LCD1 0xb8000000 |
60 | #define PA_LCD2 0xb8800000 | 60 | #define PA_LCD2 0xb8800000 |
61 | 61 | ||
62 | #define PORT_PACR 0xA4050100 | ||
63 | #define PORT_PBCR 0xA4050102 | ||
64 | #define PORT_PCCR 0xA4050104 | ||
65 | #define PORT_PDCR 0xA4050106 | ||
66 | #define PORT_PECR 0xA4050108 | ||
67 | #define PORT_PFCR 0xA405010A | ||
68 | #define PORT_PGCR 0xA405010C | ||
69 | #define PORT_PHCR 0xA405010E | ||
70 | #define PORT_PJCR 0xA4050110 | ||
71 | #define PORT_PKCR 0xA4050112 | ||
72 | #define PORT_PLCR 0xA4050114 | ||
73 | #define PORT_PMCR 0xA4050116 | ||
74 | #define PORT_PNCR 0xA4050118 | ||
75 | #define PORT_PQCR 0xA405011A | ||
76 | #define PORT_PRCR 0xA405011C | ||
77 | #define PORT_PSCR 0xA405011E | ||
78 | #define PORT_PTCR 0xA4050140 | ||
79 | #define PORT_PUCR 0xA4050142 | ||
80 | #define PORT_PVCR 0xA4050144 | ||
81 | #define PORT_PWCR 0xA4050146 | ||
82 | #define PORT_PYCR 0xA4050148 | ||
83 | #define PORT_PZCR 0xA405014A | ||
84 | |||
85 | #define PORT_PSELA 0xA405014C | ||
86 | #define PORT_PSELB 0xA405014E | ||
87 | #define PORT_PSELC 0xA4050150 | ||
88 | #define PORT_PSELD 0xA4050152 | ||
89 | #define PORT_PSELE 0xA4050154 | ||
90 | |||
91 | #define PORT_HIZCRA 0xA4050156 | ||
92 | #define PORT_HIZCRB 0xA4050158 | ||
93 | #define PORT_HIZCRC 0xA405015C | ||
94 | |||
95 | #define PORT_DRVCR 0xA4050180 | ||
96 | |||
97 | #define PORT_PADR 0xA4050120 | ||
98 | #define PORT_PBDR 0xA4050122 | ||
99 | #define PORT_PCDR 0xA4050124 | ||
100 | #define PORT_PDDR 0xA4050126 | ||
101 | #define PORT_PEDR 0xA4050128 | ||
102 | #define PORT_PFDR 0xA405012A | ||
103 | #define PORT_PGDR 0xA405012C | ||
104 | #define PORT_PHDR 0xA405012E | ||
105 | #define PORT_PJDR 0xA4050130 | ||
106 | #define PORT_PKDR 0xA4050132 | ||
107 | #define PORT_PLDR 0xA4050134 | ||
108 | #define PORT_PMDR 0xA4050136 | ||
109 | #define PORT_PNDR 0xA4050138 | ||
110 | #define PORT_PQDR 0xA405013A | ||
111 | #define PORT_PRDR 0xA405013C | ||
112 | #define PORT_PTDR 0xA4050160 | ||
113 | #define PORT_PUDR 0xA4050162 | ||
114 | #define PORT_PVDR 0xA4050164 | ||
115 | #define PORT_PWDR 0xA4050166 | ||
116 | #define PORT_PYDR 0xA4050168 | ||
117 | |||
118 | #define FPGA_IN 0xb1400000 | ||
119 | #define FPGA_OUT 0xb1400002 | ||
120 | |||
62 | #define __IO_PREFIX sh7343se | 121 | #define __IO_PREFIX sh7343se |
63 | #include <asm/io_generic.h> | 122 | #include <asm/io_generic.h> |
64 | 123 | ||
65 | /* External Multiplexed interrupts */ | 124 | #define IRQ0_IRQ 32 |
66 | #define PC_IRQ0 OFFCHIP_IRQ_BASE | 125 | #define IRQ1_IRQ 33 |
67 | #define PC_IRQ1 (PC_IRQ0 + 1) | 126 | #define IRQ4_IRQ 36 |
68 | #define PC_IRQ2 (PC_IRQ1 + 1) | 127 | #define IRQ5_IRQ 37 |
69 | #define PC_IRQ3 (PC_IRQ2 + 1) | 128 | |
129 | #define SE7343_FPGA_IRQ_MRSHPC0 0 | ||
130 | #define SE7343_FPGA_IRQ_MRSHPC1 1 | ||
131 | #define SE7343_FPGA_IRQ_MRSHPC2 2 | ||
132 | #define SE7343_FPGA_IRQ_MRSHPC3 3 | ||
133 | #define SE7343_FPGA_IRQ_SMC 6 /* EXT_IRQ2 */ | ||
134 | #define SE7343_FPGA_IRQ_USB 8 | ||
70 | 135 | ||
71 | #define EXT_IRQ0 (PC_IRQ3 + 1) | 136 | #define SE7343_FPGA_IRQ_NR 11 |
72 | #define EXT_IRQ1 (EXT_IRQ0 + 1) | 137 | #define SE7343_FPGA_IRQ_BASE 120 |
73 | #define EXT_IRQ2 (EXT_IRQ1 + 1) | ||
74 | #define EXT_IRQ3 (EXT_IRQ2 + 1) | ||
75 | 138 | ||
76 | #define USB_IRQ0 (EXT_IRQ3 + 1) | 139 | #define MRSHPC_IRQ3 (SE7343_FPGA_IRQ_BASE + SE7343_FPGA_IRQ_MRSHPC3) |
77 | #define USB_IRQ1 (USB_IRQ0 + 1) | 140 | #define MRSHPC_IRQ2 (SE7343_FPGA_IRQ_BASE + SE7343_FPGA_IRQ_MRSHPC2) |
141 | #define MRSHPC_IRQ1 (SE7343_FPGA_IRQ_BASE + SE7343_FPGA_IRQ_MRSHPC1) | ||
142 | #define MRSHPC_IRQ0 (SE7343_FPGA_IRQ_BASE + SE7343_FPGA_IRQ_MRSHPC0) | ||
143 | #define SMC_IRQ (SE7343_FPGA_IRQ_BASE + SE7343_FPGA_IRQ_SMC) | ||
144 | #define USB_IRQ (SE7343_FPGA_IRQ_BASE + SE7343_FPGA_IRQ_USB) | ||
78 | 145 | ||
79 | #define UART_IRQ0 (USB_IRQ1 + 1) | 146 | /* arch/sh/boards/se/7343/irq.c */ |
80 | #define UART_IRQ1 (UART_IRQ0 + 1) | 147 | void init_7343se_IRQ(void); |
81 | 148 | ||
82 | #endif /* __ASM_SH_HITACHI_SE7343_H */ | 149 | #endif /* __ASM_SH_HITACHI_SE7343_H */ |
diff --git a/include/asm-sh/se7722.h b/include/asm-sh/se7722.h index 3690fe5857a4..e971d9a82f4a 100644 --- a/include/asm-sh/se7722.h +++ b/include/asm-sh/se7722.h | |||
@@ -55,10 +55,6 @@ | |||
55 | 55 | ||
56 | #define PA_LAN (PA_AREA6_IO + 0) /* SMC LAN91C111 */ | 56 | #define PA_LAN (PA_AREA6_IO + 0) /* SMC LAN91C111 */ |
57 | /* GPIO */ | 57 | /* GPIO */ |
58 | #define MSTPCR0 0xA4150030UL | ||
59 | #define MSTPCR1 0xA4150034UL | ||
60 | #define MSTPCR2 0xA4150038UL | ||
61 | |||
62 | #define FPGA_IN 0xb1840000UL | 58 | #define FPGA_IN 0xb1840000UL |
63 | #define FPGA_OUT 0xb1840004UL | 59 | #define FPGA_OUT 0xb1840004UL |
64 | 60 | ||
diff --git a/include/asm-sh/segment.h b/include/asm-sh/segment.h index e417eab4c7d7..5e2725f4ac49 100644 --- a/include/asm-sh/segment.h +++ b/include/asm-sh/segment.h | |||
@@ -1,6 +1,34 @@ | |||
1 | #ifndef __ASM_SH_SEGMENT_H | 1 | #ifndef __ASM_SH_SEGMENT_H |
2 | #define __ASM_SH_SEGMENT_H | 2 | #define __ASM_SH_SEGMENT_H |
3 | 3 | ||
4 | /* Only here because we have some old header files that expect it.. */ | 4 | #ifndef __ASSEMBLY__ |
5 | 5 | ||
6 | typedef struct { | ||
7 | unsigned long seg; | ||
8 | } mm_segment_t; | ||
9 | |||
10 | #define MAKE_MM_SEG(s) ((mm_segment_t) { (s) }) | ||
11 | |||
12 | /* | ||
13 | * The fs value determines whether argument validity checking should be | ||
14 | * performed or not. If get_fs() == USER_DS, checking is performed, with | ||
15 | * get_fs() == KERNEL_DS, checking is bypassed. | ||
16 | * | ||
17 | * For historical reasons, these macros are grossly misnamed. | ||
18 | */ | ||
19 | #define KERNEL_DS MAKE_MM_SEG(0xFFFFFFFFUL) | ||
20 | #ifdef CONFIG_MMU | ||
21 | #define USER_DS MAKE_MM_SEG(PAGE_OFFSET) | ||
22 | #else | ||
23 | #define USER_DS KERNEL_DS | ||
24 | #endif | ||
25 | |||
26 | #define segment_eq(a,b) ((a).seg == (b).seg) | ||
27 | |||
28 | #define get_ds() (KERNEL_DS) | ||
29 | |||
30 | #define get_fs() (current_thread_info()->addr_limit) | ||
31 | #define set_fs(x) (current_thread_info()->addr_limit = (x)) | ||
32 | |||
33 | #endif /* __ASSEMBLY__ */ | ||
6 | #endif /* __ASM_SH_SEGMENT_H */ | 34 | #endif /* __ASM_SH_SEGMENT_H */ |
diff --git a/include/asm-sh/sh7763rdp.h b/include/asm-sh/sh7763rdp.h new file mode 100644 index 000000000000..8750cc852977 --- /dev/null +++ b/include/asm-sh/sh7763rdp.h | |||
@@ -0,0 +1,54 @@ | |||
1 | #ifndef __ASM_SH_SH7763RDP_H | ||
2 | #define __ASM_SH_SH7763RDP_H | ||
3 | |||
4 | /* | ||
5 | * linux/include/asm-sh/sh7763drp.h | ||
6 | * | ||
7 | * Copyright (C) 2008 Renesas Solutions | ||
8 | * Copyright (C) 2008 Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> | ||
9 | * | ||
10 | * This file is subject to the terms and conditions of the GNU General Public | ||
11 | * License. See the file "COPYING" in the main directory of this archive | ||
12 | * for more details. | ||
13 | * | ||
14 | */ | ||
15 | #include <asm/addrspace.h> | ||
16 | |||
17 | /* clock control */ | ||
18 | #define MSTPCR1 0xFFC80038 | ||
19 | |||
20 | /* PORT */ | ||
21 | #define PORT_PSEL0 0xFFEF0070 | ||
22 | #define PORT_PSEL1 0xFFEF0072 | ||
23 | #define PORT_PSEL2 0xFFEF0074 | ||
24 | #define PORT_PSEL3 0xFFEF0076 | ||
25 | #define PORT_PSEL4 0xFFEF0078 | ||
26 | |||
27 | #define PORT_PACR 0xFFEF0000 | ||
28 | #define PORT_PCCR 0xFFEF0004 | ||
29 | #define PORT_PFCR 0xFFEF000A | ||
30 | #define PORT_PGCR 0xFFEF000C | ||
31 | #define PORT_PHCR 0xFFEF000E | ||
32 | #define PORT_PICR 0xFFEF0010 | ||
33 | #define PORT_PJCR 0xFFEF0012 | ||
34 | #define PORT_PKCR 0xFFEF0014 | ||
35 | #define PORT_PLCR 0xFFEF0016 | ||
36 | #define PORT_PMCR 0xFFEF0018 | ||
37 | #define PORT_PNCR 0xFFEF001A | ||
38 | |||
39 | /* FPGA */ | ||
40 | #define CPLD_BOARD_ID_ERV_REG 0xB1000000 | ||
41 | #define CPLD_CPLD_CMD_REG 0xB1000006 | ||
42 | |||
43 | /* | ||
44 | * USB SH7763RDP board can use Host only. | ||
45 | */ | ||
46 | #define USB_USBHSC 0xFFEC80f0 | ||
47 | |||
48 | /* arch/sh/boards/renesas/sh7763rdp/irq.c */ | ||
49 | void init_sh7763rdp_IRQ(void); | ||
50 | int sh7763rdp_irq_demux(int irq); | ||
51 | #define __IO_PREFIX sh7763rdp | ||
52 | #include <asm/io_generic.h> | ||
53 | |||
54 | #endif /* __ASM_SH_SH7763RDP_H */ | ||
diff --git a/include/asm-sh/sh7785lcr.h b/include/asm-sh/sh7785lcr.h new file mode 100644 index 000000000000..1ce27d5c7491 --- /dev/null +++ b/include/asm-sh/sh7785lcr.h | |||
@@ -0,0 +1,55 @@ | |||
1 | #ifndef __ASM_SH_RENESAS_SH7785LCR_H | ||
2 | #define __ASM_SH_RENESAS_SH7785LCR_H | ||
3 | |||
4 | /* | ||
5 | * This board has 2 physical memory maps. | ||
6 | * It can be changed with DIP switch(S2-5). | ||
7 | * | ||
8 | * phys address | S2-5 = OFF | S2-5 = ON | ||
9 | * -----------------------------+---------------+--------------- | ||
10 | * 0x00000000 - 0x03ffffff(CS0) | NOR Flash | NOR Flash | ||
11 | * 0x04000000 - 0x05ffffff(CS1) | PLD | PLD | ||
12 | * 0x06000000 - 0x07ffffff(CS1) | reserved | I2C | ||
13 | * 0x08000000 - 0x0bffffff(CS2) | USB | DDR SDRAM | ||
14 | * 0x0c000000 - 0x0fffffff(CS3) | SD | DDR SDRAM | ||
15 | * 0x10000000 - 0x13ffffff(CS4) | SM107 | SM107 | ||
16 | * 0x14000000 - 0x17ffffff(CS5) | I2C | USB | ||
17 | * 0x18000000 - 0x1bffffff(CS6) | reserved | SD | ||
18 | * 0x40000000 - 0x5fffffff | DDR SDRAM | (cannot use) | ||
19 | * | ||
20 | */ | ||
21 | |||
22 | #define NOR_FLASH_ADDR 0x00000000 | ||
23 | #define NOR_FLASH_SIZE 0x04000000 | ||
24 | |||
25 | #define PLD_BASE_ADDR 0x04000000 | ||
26 | #define PLD_PCICR (PLD_BASE_ADDR + 0x00) | ||
27 | #define PLD_LCD_BK_CONTR (PLD_BASE_ADDR + 0x02) | ||
28 | #define PLD_LOCALCR (PLD_BASE_ADDR + 0x04) | ||
29 | #define PLD_POFCR (PLD_BASE_ADDR + 0x06) | ||
30 | #define PLD_LEDCR (PLD_BASE_ADDR + 0x08) | ||
31 | #define PLD_SWSR (PLD_BASE_ADDR + 0x0a) | ||
32 | #define PLD_VERSR (PLD_BASE_ADDR + 0x0c) | ||
33 | #define PLD_MMSR (PLD_BASE_ADDR + 0x0e) | ||
34 | |||
35 | #define SM107_MEM_ADDR 0x10000000 | ||
36 | #define SM107_MEM_SIZE 0x00e00000 | ||
37 | #define SM107_REG_ADDR 0x13e00000 | ||
38 | #define SM107_REG_SIZE 0x00200000 | ||
39 | |||
40 | #if defined(CONFIG_SH_SH7785LCR_29BIT_PHYSMAPS) | ||
41 | #define R8A66597_ADDR 0x14000000 /* USB */ | ||
42 | #define CG200_ADDR 0x18000000 /* SD */ | ||
43 | #define PCA9564_ADDR 0x06000000 /* I2C */ | ||
44 | #else | ||
45 | #define R8A66597_ADDR 0x08000000 | ||
46 | #define CG200_ADDR 0x0c000000 | ||
47 | #define PCA9564_ADDR 0x14000000 | ||
48 | #endif | ||
49 | |||
50 | #define R8A66597_SIZE 0x00000100 | ||
51 | #define CG200_SIZE 0x00010000 | ||
52 | #define PCA9564_SIZE 0x00000100 | ||
53 | |||
54 | #endif /* __ASM_SH_RENESAS_SH7785LCR_H */ | ||
55 | |||
diff --git a/include/asm-sh/system.h b/include/asm-sh/system.h index e65b6b822cb3..056d68cd2108 100644 --- a/include/asm-sh/system.h +++ b/include/asm-sh/system.h | |||
@@ -148,14 +148,6 @@ extern unsigned long cached_to_uncached; | |||
148 | 148 | ||
149 | extern struct dentry *sh_debugfs_root; | 149 | extern struct dentry *sh_debugfs_root; |
150 | 150 | ||
151 | /* XXX | ||
152 | * disable hlt during certain critical i/o operations | ||
153 | */ | ||
154 | #define HAVE_DISABLE_HLT | ||
155 | void disable_hlt(void); | ||
156 | void enable_hlt(void); | ||
157 | |||
158 | void default_idle(void); | ||
159 | void per_cpu_trap_init(void); | 151 | void per_cpu_trap_init(void); |
160 | 152 | ||
161 | asmlinkage void break_point_trap(void); | 153 | asmlinkage void break_point_trap(void); |
diff --git a/include/asm-sh/thread_info.h b/include/asm-sh/thread_info.h index 5131e3907525..eeb4c747119e 100644 --- a/include/asm-sh/thread_info.h +++ b/include/asm-sh/thread_info.h | |||
@@ -38,6 +38,8 @@ struct thread_info { | |||
38 | #define THREAD_SIZE_ORDER (1) | 38 | #define THREAD_SIZE_ORDER (1) |
39 | #elif defined(CONFIG_PAGE_SIZE_8KB) | 39 | #elif defined(CONFIG_PAGE_SIZE_8KB) |
40 | #define THREAD_SIZE_ORDER (1) | 40 | #define THREAD_SIZE_ORDER (1) |
41 | #elif defined(CONFIG_PAGE_SIZE_16KB) | ||
42 | #define THREAD_SIZE_ORDER (0) | ||
41 | #elif defined(CONFIG_PAGE_SIZE_64KB) | 43 | #elif defined(CONFIG_PAGE_SIZE_64KB) |
42 | #define THREAD_SIZE_ORDER (0) | 44 | #define THREAD_SIZE_ORDER (0) |
43 | #else | 45 | #else |
diff --git a/include/asm-sh/timer.h b/include/asm-sh/timer.h index 701ba84c7049..327f7eb8976a 100644 --- a/include/asm-sh/timer.h +++ b/include/asm-sh/timer.h | |||
@@ -40,6 +40,5 @@ struct sys_timer *get_sys_timer(void); | |||
40 | /* arch/sh/kernel/time.c */ | 40 | /* arch/sh/kernel/time.c */ |
41 | void handle_timer_tick(void); | 41 | void handle_timer_tick(void); |
42 | extern unsigned long sh_hpt_frequency; | 42 | extern unsigned long sh_hpt_frequency; |
43 | extern struct clocksource clocksource_sh; | ||
44 | 43 | ||
45 | #endif /* __ASM_SH_TIMER_H */ | 44 | #endif /* __ASM_SH_TIMER_H */ |
diff --git a/include/asm-sh/uaccess.h b/include/asm-sh/uaccess.h index b3440c305b5d..45c2c9b2993d 100644 --- a/include/asm-sh/uaccess.h +++ b/include/asm-sh/uaccess.h | |||
@@ -1,12 +1,171 @@ | |||
1 | #ifndef __ASM_SH_UACCESS_H | 1 | #ifndef __ASM_SH_UACCESS_H |
2 | #define __ASM_SH_UACCESS_H | 2 | #define __ASM_SH_UACCESS_H |
3 | 3 | ||
4 | #include <linux/errno.h> | ||
5 | #include <linux/sched.h> | ||
6 | #include <asm/segment.h> | ||
7 | |||
8 | #define VERIFY_READ 0 | ||
9 | #define VERIFY_WRITE 1 | ||
10 | |||
11 | #define __addr_ok(addr) \ | ||
12 | ((unsigned long __force)(addr) < current_thread_info()->addr_limit.seg) | ||
13 | |||
14 | /* | ||
15 | * __access_ok: Check if address with size is OK or not. | ||
16 | * | ||
17 | * Uhhuh, this needs 33-bit arithmetic. We have a carry.. | ||
18 | * | ||
19 | * sum := addr + size; carry? --> flag = true; | ||
20 | * if (sum >= addr_limit) flag = true; | ||
21 | */ | ||
22 | #define __access_ok(addr, size) \ | ||
23 | (__addr_ok((addr) + (size))) | ||
24 | #define access_ok(type, addr, size) \ | ||
25 | (__chk_user_ptr(addr), \ | ||
26 | __access_ok((unsigned long __force)(addr), (size))) | ||
27 | |||
28 | /* | ||
29 | * Uh, these should become the main single-value transfer routines ... | ||
30 | * They automatically use the right size if we just have the right | ||
31 | * pointer type ... | ||
32 | * | ||
33 | * As SuperH uses the same address space for kernel and user data, we | ||
34 | * can just do these as direct assignments. | ||
35 | * | ||
36 | * Careful to not | ||
37 | * (a) re-use the arguments for side effects (sizeof is ok) | ||
38 | * (b) require any knowledge of processes at this stage | ||
39 | */ | ||
40 | #define put_user(x,ptr) __put_user_check((x), (ptr), sizeof(*(ptr))) | ||
41 | #define get_user(x,ptr) __get_user_check((x), (ptr), sizeof(*(ptr))) | ||
42 | |||
43 | /* | ||
44 | * The "__xxx" versions do not do address space checking, useful when | ||
45 | * doing multiple accesses to the same area (the user has to do the | ||
46 | * checks by hand with "access_ok()") | ||
47 | */ | ||
48 | #define __put_user(x,ptr) __put_user_nocheck((x), (ptr), sizeof(*(ptr))) | ||
49 | #define __get_user(x,ptr) __get_user_nocheck((x), (ptr), sizeof(*(ptr))) | ||
50 | |||
51 | struct __large_struct { unsigned long buf[100]; }; | ||
52 | #define __m(x) (*(struct __large_struct __user *)(x)) | ||
53 | |||
54 | #define __get_user_nocheck(x,ptr,size) \ | ||
55 | ({ \ | ||
56 | long __gu_err; \ | ||
57 | unsigned long __gu_val; \ | ||
58 | const __typeof__(*(ptr)) __user *__gu_addr = (ptr); \ | ||
59 | __chk_user_ptr(ptr); \ | ||
60 | __get_user_size(__gu_val, __gu_addr, (size), __gu_err); \ | ||
61 | (x) = (__typeof__(*(ptr)))__gu_val; \ | ||
62 | __gu_err; \ | ||
63 | }) | ||
64 | |||
65 | #define __get_user_check(x,ptr,size) \ | ||
66 | ({ \ | ||
67 | long __gu_err = -EFAULT; \ | ||
68 | unsigned long __gu_val = 0; \ | ||
69 | const __typeof__(*(ptr)) *__gu_addr = (ptr); \ | ||
70 | if (likely(access_ok(VERIFY_READ, __gu_addr, (size)))) \ | ||
71 | __get_user_size(__gu_val, __gu_addr, (size), __gu_err); \ | ||
72 | (x) = (__typeof__(*(ptr)))__gu_val; \ | ||
73 | __gu_err; \ | ||
74 | }) | ||
75 | |||
76 | #define __put_user_nocheck(x,ptr,size) \ | ||
77 | ({ \ | ||
78 | long __pu_err; \ | ||
79 | __typeof__(*(ptr)) __user *__pu_addr = (ptr); \ | ||
80 | __chk_user_ptr(ptr); \ | ||
81 | __put_user_size((x), __pu_addr, (size), __pu_err); \ | ||
82 | __pu_err; \ | ||
83 | }) | ||
84 | |||
85 | #define __put_user_check(x,ptr,size) \ | ||
86 | ({ \ | ||
87 | long __pu_err = -EFAULT; \ | ||
88 | __typeof__(*(ptr)) __user *__pu_addr = (ptr); \ | ||
89 | if (likely(access_ok(VERIFY_WRITE, __pu_addr, size))) \ | ||
90 | __put_user_size((x), __pu_addr, (size), \ | ||
91 | __pu_err); \ | ||
92 | __pu_err; \ | ||
93 | }) | ||
94 | |||
4 | #ifdef CONFIG_SUPERH32 | 95 | #ifdef CONFIG_SUPERH32 |
5 | # include "uaccess_32.h" | 96 | # include "uaccess_32.h" |
6 | #else | 97 | #else |
7 | # include "uaccess_64.h" | 98 | # include "uaccess_64.h" |
8 | #endif | 99 | #endif |
9 | 100 | ||
101 | /* Generic arbitrary sized copy. */ | ||
102 | /* Return the number of bytes NOT copied */ | ||
103 | __kernel_size_t __copy_user(void *to, const void *from, __kernel_size_t n); | ||
104 | |||
105 | static __always_inline unsigned long | ||
106 | __copy_from_user(void *to, const void __user *from, unsigned long n) | ||
107 | { | ||
108 | return __copy_user(to, (__force void *)from, n); | ||
109 | } | ||
110 | |||
111 | static __always_inline unsigned long __must_check | ||
112 | __copy_to_user(void __user *to, const void *from, unsigned long n) | ||
113 | { | ||
114 | return __copy_user((__force void *)to, from, n); | ||
115 | } | ||
116 | |||
117 | #define __copy_to_user_inatomic __copy_to_user | ||
118 | #define __copy_from_user_inatomic __copy_from_user | ||
119 | |||
120 | /* | ||
121 | * Clear the area and return remaining number of bytes | ||
122 | * (on failure. Usually it's 0.) | ||
123 | */ | ||
124 | __kernel_size_t __clear_user(void *addr, __kernel_size_t size); | ||
125 | |||
126 | #define clear_user(addr,n) \ | ||
127 | ({ \ | ||
128 | void __user * __cl_addr = (addr); \ | ||
129 | unsigned long __cl_size = (n); \ | ||
130 | \ | ||
131 | if (__cl_size && access_ok(VERIFY_WRITE, \ | ||
132 | ((unsigned long)(__cl_addr)), __cl_size)) \ | ||
133 | __cl_size = __clear_user(__cl_addr, __cl_size); \ | ||
134 | \ | ||
135 | __cl_size; \ | ||
136 | }) | ||
137 | |||
138 | /** | ||
139 | * strncpy_from_user: - Copy a NUL terminated string from userspace. | ||
140 | * @dst: Destination address, in kernel space. This buffer must be at | ||
141 | * least @count bytes long. | ||
142 | * @src: Source address, in user space. | ||
143 | * @count: Maximum number of bytes to copy, including the trailing NUL. | ||
144 | * | ||
145 | * Copies a NUL-terminated string from userspace to kernel space. | ||
146 | * | ||
147 | * On success, returns the length of the string (not including the trailing | ||
148 | * NUL). | ||
149 | * | ||
150 | * If access to userspace fails, returns -EFAULT (some data may have been | ||
151 | * copied). | ||
152 | * | ||
153 | * If @count is smaller than the length of the string, copies @count bytes | ||
154 | * and returns @count. | ||
155 | */ | ||
156 | #define strncpy_from_user(dest,src,count) \ | ||
157 | ({ \ | ||
158 | unsigned long __sfu_src = (unsigned long)(src); \ | ||
159 | int __sfu_count = (int)(count); \ | ||
160 | long __sfu_res = -EFAULT; \ | ||
161 | \ | ||
162 | if (__access_ok(__sfu_src, __sfu_count)) \ | ||
163 | __sfu_res = __strncpy_from_user((unsigned long)(dest), \ | ||
164 | __sfu_src, __sfu_count); \ | ||
165 | \ | ||
166 | __sfu_res; \ | ||
167 | }) | ||
168 | |||
10 | static inline unsigned long | 169 | static inline unsigned long |
11 | copy_from_user(void *to, const void __user *from, unsigned long n) | 170 | copy_from_user(void *to, const void __user *from, unsigned long n) |
12 | { | 171 | { |
@@ -31,4 +190,67 @@ copy_to_user(void __user *to, const void *from, unsigned long n) | |||
31 | return __copy_size; | 190 | return __copy_size; |
32 | } | 191 | } |
33 | 192 | ||
193 | /** | ||
194 | * strnlen_user: - Get the size of a string in user space. | ||
195 | * @s: The string to measure. | ||
196 | * @n: The maximum valid length | ||
197 | * | ||
198 | * Context: User context only. This function may sleep. | ||
199 | * | ||
200 | * Get the size of a NUL-terminated string in user space. | ||
201 | * | ||
202 | * Returns the size of the string INCLUDING the terminating NUL. | ||
203 | * On exception, returns 0. | ||
204 | * If the string is too long, returns a value greater than @n. | ||
205 | */ | ||
206 | static inline long strnlen_user(const char __user *s, long n) | ||
207 | { | ||
208 | if (!__addr_ok(s)) | ||
209 | return 0; | ||
210 | else | ||
211 | return __strnlen_user(s, n); | ||
212 | } | ||
213 | |||
214 | /** | ||
215 | * strlen_user: - Get the size of a string in user space. | ||
216 | * @str: The string to measure. | ||
217 | * | ||
218 | * Context: User context only. This function may sleep. | ||
219 | * | ||
220 | * Get the size of a NUL-terminated string in user space. | ||
221 | * | ||
222 | * Returns the size of the string INCLUDING the terminating NUL. | ||
223 | * On exception, returns 0. | ||
224 | * | ||
225 | * If there is a limit on the length of a valid string, you may wish to | ||
226 | * consider using strnlen_user() instead. | ||
227 | */ | ||
228 | #define strlen_user(str) strnlen_user(str, ~0UL >> 1) | ||
229 | |||
230 | /* | ||
231 | * The exception table consists of pairs of addresses: the first is the | ||
232 | * address of an instruction that is allowed to fault, and the second is | ||
233 | * the address at which the program should continue. No registers are | ||
234 | * modified, so it is entirely up to the continuation code to figure out | ||
235 | * what to do. | ||
236 | * | ||
237 | * All the routines below use bits of fixup code that are out of line | ||
238 | * with the main instruction path. This means when everything is well, | ||
239 | * we don't even have to jump over them. Further, they do not intrude | ||
240 | * on our cache or tlb entries. | ||
241 | */ | ||
242 | struct exception_table_entry { | ||
243 | unsigned long insn, fixup; | ||
244 | }; | ||
245 | |||
246 | #if defined(CONFIG_SUPERH64) && defined(CONFIG_MMU) | ||
247 | #define ARCH_HAS_SEARCH_EXTABLE | ||
248 | #endif | ||
249 | |||
250 | int fixup_exception(struct pt_regs *regs); | ||
251 | /* Returns 0 if exception not found and fixup.unit otherwise. */ | ||
252 | unsigned long search_exception_table(unsigned long addr); | ||
253 | const struct exception_table_entry *search_exception_tables(unsigned long addr); | ||
254 | |||
255 | |||
34 | #endif /* __ASM_SH_UACCESS_H */ | 256 | #endif /* __ASM_SH_UACCESS_H */ |
diff --git a/include/asm-sh/uaccess_32.h b/include/asm-sh/uaccess_32.h index 1e41fda74bd3..892fd6dea9db 100644 --- a/include/asm-sh/uaccess_32.h +++ b/include/asm-sh/uaccess_32.h | |||
@@ -1,9 +1,8 @@ | |||
1 | /* $Id: uaccess.h,v 1.11 2003/10/13 07:21:20 lethal Exp $ | 1 | /* |
2 | * | ||
3 | * User space memory access functions | 2 | * User space memory access functions |
4 | * | 3 | * |
5 | * Copyright (C) 1999, 2002 Niibe Yutaka | 4 | * Copyright (C) 1999, 2002 Niibe Yutaka |
6 | * Copyright (C) 2003 Paul Mundt | 5 | * Copyright (C) 2003 - 2008 Paul Mundt |
7 | * | 6 | * |
8 | * Based on: | 7 | * Based on: |
9 | * MIPS implementation version 1.15 by | 8 | * MIPS implementation version 1.15 by |
@@ -13,115 +12,6 @@ | |||
13 | #ifndef __ASM_SH_UACCESS_32_H | 12 | #ifndef __ASM_SH_UACCESS_32_H |
14 | #define __ASM_SH_UACCESS_32_H | 13 | #define __ASM_SH_UACCESS_32_H |
15 | 14 | ||
16 | #include <linux/errno.h> | ||
17 | #include <linux/sched.h> | ||
18 | |||
19 | #define VERIFY_READ 0 | ||
20 | #define VERIFY_WRITE 1 | ||
21 | |||
22 | /* | ||
23 | * The fs value determines whether argument validity checking should be | ||
24 | * performed or not. If get_fs() == USER_DS, checking is performed, with | ||
25 | * get_fs() == KERNEL_DS, checking is bypassed. | ||
26 | * | ||
27 | * For historical reasons (Data Segment Register?), these macros are misnamed. | ||
28 | */ | ||
29 | |||
30 | #define MAKE_MM_SEG(s) ((mm_segment_t) { (s) }) | ||
31 | |||
32 | #define KERNEL_DS MAKE_MM_SEG(0xFFFFFFFFUL) | ||
33 | #define USER_DS MAKE_MM_SEG(PAGE_OFFSET) | ||
34 | |||
35 | #define segment_eq(a,b) ((a).seg == (b).seg) | ||
36 | |||
37 | #define get_ds() (KERNEL_DS) | ||
38 | |||
39 | #if !defined(CONFIG_MMU) | ||
40 | /* NOMMU is always true */ | ||
41 | #define __addr_ok(addr) (1) | ||
42 | |||
43 | static inline mm_segment_t get_fs(void) | ||
44 | { | ||
45 | return USER_DS; | ||
46 | } | ||
47 | |||
48 | static inline void set_fs(mm_segment_t s) | ||
49 | { | ||
50 | } | ||
51 | |||
52 | /* | ||
53 | * __access_ok: Check if address with size is OK or not. | ||
54 | * | ||
55 | * If we don't have an MMU (or if its disabled) the only thing we really have | ||
56 | * to look out for is if the address resides somewhere outside of what | ||
57 | * available RAM we have. | ||
58 | */ | ||
59 | static inline int __access_ok(unsigned long addr, unsigned long size) | ||
60 | { | ||
61 | return 1; | ||
62 | } | ||
63 | #else /* CONFIG_MMU */ | ||
64 | #define __addr_ok(addr) \ | ||
65 | ((unsigned long)(addr) < (current_thread_info()->addr_limit.seg)) | ||
66 | |||
67 | #define get_fs() (current_thread_info()->addr_limit) | ||
68 | #define set_fs(x) (current_thread_info()->addr_limit = (x)) | ||
69 | |||
70 | /* | ||
71 | * __access_ok: Check if address with size is OK or not. | ||
72 | * | ||
73 | * Uhhuh, this needs 33-bit arithmetic. We have a carry.. | ||
74 | * | ||
75 | * sum := addr + size; carry? --> flag = true; | ||
76 | * if (sum >= addr_limit) flag = true; | ||
77 | */ | ||
78 | static inline int __access_ok(unsigned long addr, unsigned long size) | ||
79 | { | ||
80 | unsigned long flag, sum; | ||
81 | |||
82 | __asm__("clrt\n\t" | ||
83 | "addc %3, %1\n\t" | ||
84 | "movt %0\n\t" | ||
85 | "cmp/hi %4, %1\n\t" | ||
86 | "rotcl %0" | ||
87 | :"=&r" (flag), "=r" (sum) | ||
88 | :"1" (addr), "r" (size), | ||
89 | "r" (current_thread_info()->addr_limit.seg) | ||
90 | :"t"); | ||
91 | return flag == 0; | ||
92 | } | ||
93 | #endif /* CONFIG_MMU */ | ||
94 | |||
95 | #define access_ok(type, addr, size) \ | ||
96 | (__chk_user_ptr(addr), \ | ||
97 | __access_ok((unsigned long __force)(addr), (size))) | ||
98 | |||
99 | /* | ||
100 | * Uh, these should become the main single-value transfer routines ... | ||
101 | * They automatically use the right size if we just have the right | ||
102 | * pointer type ... | ||
103 | * | ||
104 | * As SuperH uses the same address space for kernel and user data, we | ||
105 | * can just do these as direct assignments. | ||
106 | * | ||
107 | * Careful to not | ||
108 | * (a) re-use the arguments for side effects (sizeof is ok) | ||
109 | * (b) require any knowledge of processes at this stage | ||
110 | */ | ||
111 | #define put_user(x,ptr) __put_user_check((x), (ptr), sizeof(*(ptr))) | ||
112 | #define get_user(x,ptr) __get_user_check((x), (ptr), sizeof(*(ptr))) | ||
113 | |||
114 | /* | ||
115 | * The "__xxx" versions do not do address space checking, useful when | ||
116 | * doing multiple accesses to the same area (the user has to do the | ||
117 | * checks by hand with "access_ok()") | ||
118 | */ | ||
119 | #define __put_user(x,ptr) __put_user_nocheck((x), (ptr), sizeof(*(ptr))) | ||
120 | #define __get_user(x,ptr) __get_user_nocheck((x), (ptr), sizeof(*(ptr))) | ||
121 | |||
122 | struct __large_struct { unsigned long buf[100]; }; | ||
123 | #define __m(x) (*(struct __large_struct __user *)(x)) | ||
124 | |||
125 | #define __get_user_size(x,ptr,size,retval) \ | 15 | #define __get_user_size(x,ptr,size,retval) \ |
126 | do { \ | 16 | do { \ |
127 | retval = 0; \ | 17 | retval = 0; \ |
@@ -141,28 +31,7 @@ do { \ | |||
141 | } \ | 31 | } \ |
142 | } while (0) | 32 | } while (0) |
143 | 33 | ||
144 | #define __get_user_nocheck(x,ptr,size) \ | 34 | #ifdef CONFIG_MMU |
145 | ({ \ | ||
146 | long __gu_err; \ | ||
147 | unsigned long __gu_val; \ | ||
148 | const __typeof__(*(ptr)) __user *__gu_addr = (ptr); \ | ||
149 | __chk_user_ptr(ptr); \ | ||
150 | __get_user_size(__gu_val, __gu_addr, (size), __gu_err); \ | ||
151 | (x) = (__typeof__(*(ptr)))__gu_val; \ | ||
152 | __gu_err; \ | ||
153 | }) | ||
154 | |||
155 | #define __get_user_check(x,ptr,size) \ | ||
156 | ({ \ | ||
157 | long __gu_err = -EFAULT; \ | ||
158 | unsigned long __gu_val = 0; \ | ||
159 | const __typeof__(*(ptr)) *__gu_addr = (ptr); \ | ||
160 | if (likely(access_ok(VERIFY_READ, __gu_addr, (size)))) \ | ||
161 | __get_user_size(__gu_val, __gu_addr, (size), __gu_err); \ | ||
162 | (x) = (__typeof__(*(ptr)))__gu_val; \ | ||
163 | __gu_err; \ | ||
164 | }) | ||
165 | |||
166 | #define __get_user_asm(x, addr, err, insn) \ | 35 | #define __get_user_asm(x, addr, err, insn) \ |
167 | ({ \ | 36 | ({ \ |
168 | __asm__ __volatile__( \ | 37 | __asm__ __volatile__( \ |
@@ -183,6 +52,16 @@ __asm__ __volatile__( \ | |||
183 | ".previous" \ | 52 | ".previous" \ |
184 | :"=&r" (err), "=&r" (x) \ | 53 | :"=&r" (err), "=&r" (x) \ |
185 | :"m" (__m(addr)), "i" (-EFAULT), "0" (err)); }) | 54 | :"m" (__m(addr)), "i" (-EFAULT), "0" (err)); }) |
55 | #else | ||
56 | #define __get_user_asm(x, addr, err, insn) \ | ||
57 | do { \ | ||
58 | __asm__ __volatile__ ( \ | ||
59 | "mov." insn " %1, %0\n\t" \ | ||
60 | : "=&r" (x) \ | ||
61 | : "m" (__m(addr)) \ | ||
62 | ); \ | ||
63 | } while (0) | ||
64 | #endif /* CONFIG_MMU */ | ||
186 | 65 | ||
187 | extern void __get_user_unknown(void); | 66 | extern void __get_user_unknown(void); |
188 | 67 | ||
@@ -197,7 +76,8 @@ do { \ | |||
197 | __put_user_asm(x, ptr, retval, "w"); \ | 76 | __put_user_asm(x, ptr, retval, "w"); \ |
198 | break; \ | 77 | break; \ |
199 | case 4: \ | 78 | case 4: \ |
200 | __put_user_asm(x, ptr, retval, "l"); \ | 79 | __put_user_asm((u32)x, ptr, \ |
80 | retval, "l"); \ | ||
201 | break; \ | 81 | break; \ |
202 | case 8: \ | 82 | case 8: \ |
203 | __put_user_u64(x, ptr, retval); \ | 83 | __put_user_u64(x, ptr, retval); \ |
@@ -207,45 +87,41 @@ do { \ | |||
207 | } \ | 87 | } \ |
208 | } while (0) | 88 | } while (0) |
209 | 89 | ||
210 | #define __put_user_nocheck(x,ptr,size) \ | 90 | #ifdef CONFIG_MMU |
211 | ({ \ | 91 | #define __put_user_asm(x, addr, err, insn) \ |
212 | long __pu_err; \ | 92 | do { \ |
213 | __typeof__(*(ptr)) __user *__pu_addr = (ptr); \ | 93 | __asm__ __volatile__ ( \ |
214 | __chk_user_ptr(ptr); \ | 94 | "1:\n\t" \ |
215 | __put_user_size((x), __pu_addr, (size), __pu_err); \ | 95 | "mov." insn " %1, %2\n\t" \ |
216 | __pu_err; \ | 96 | "2:\n" \ |
217 | }) | 97 | ".section .fixup,\"ax\"\n" \ |
218 | 98 | "3:\n\t" \ | |
219 | #define __put_user_check(x,ptr,size) \ | 99 | "mov.l 4f, %0\n\t" \ |
220 | ({ \ | 100 | "jmp @%0\n\t" \ |
221 | long __pu_err = -EFAULT; \ | 101 | " mov %3, %0\n\t" \ |
222 | __typeof__(*(ptr)) __user *__pu_addr = (ptr); \ | 102 | ".balign 4\n" \ |
223 | if (likely(access_ok(VERIFY_WRITE, __pu_addr, size))) \ | 103 | "4: .long 2b\n\t" \ |
224 | __put_user_size((x), __pu_addr, (size), \ | 104 | ".previous\n" \ |
225 | __pu_err); \ | 105 | ".section __ex_table,\"a\"\n\t" \ |
226 | __pu_err; \ | 106 | ".long 1b, 3b\n\t" \ |
227 | }) | 107 | ".previous" \ |
228 | 108 | : "=&r" (err) \ | |
229 | #define __put_user_asm(x, addr, err, insn) \ | 109 | : "r" (x), "m" (__m(addr)), "i" (-EFAULT), \ |
230 | ({ \ | 110 | "0" (err) \ |
231 | __asm__ __volatile__( \ | 111 | : "memory" \ |
232 | "1:\n\t" \ | 112 | ); \ |
233 | "mov." insn " %1, %2\n\t" \ | 113 | } while (0) |
234 | "2:\n" \ | 114 | #else |
235 | ".section .fixup,\"ax\"\n" \ | 115 | #define __put_user_asm(x, addr, err, insn) \ |
236 | "3:\n\t" \ | 116 | do { \ |
237 | "mov.l 4f, %0\n\t" \ | 117 | __asm__ __volatile__ ( \ |
238 | "jmp @%0\n\t" \ | 118 | "mov." insn " %0, %1\n\t" \ |
239 | " mov %3, %0\n\t" \ | 119 | : /* no outputs */ \ |
240 | ".balign 4\n" \ | 120 | : "r" (x), "m" (__m(addr)) \ |
241 | "4: .long 2b\n\t" \ | 121 | : "memory" \ |
242 | ".previous\n" \ | 122 | ); \ |
243 | ".section __ex_table,\"a\"\n\t" \ | 123 | } while (0) |
244 | ".long 1b, 3b\n\t" \ | 124 | #endif /* CONFIG_MMU */ |
245 | ".previous" \ | ||
246 | :"=&r" (err) \ | ||
247 | :"r" (x), "m" (__m(addr)), "i" (-EFAULT), "0" (err) \ | ||
248 | :"memory"); }) | ||
249 | 125 | ||
250 | #if defined(CONFIG_CPU_LITTLE_ENDIAN) | 126 | #if defined(CONFIG_CPU_LITTLE_ENDIAN) |
251 | #define __put_user_u64(val,addr,retval) \ | 127 | #define __put_user_u64(val,addr,retval) \ |
@@ -295,40 +171,7 @@ __asm__ __volatile__( \ | |||
295 | 171 | ||
296 | extern void __put_user_unknown(void); | 172 | extern void __put_user_unknown(void); |
297 | 173 | ||
298 | /* Generic arbitrary sized copy. */ | 174 | static inline int |
299 | /* Return the number of bytes NOT copied */ | ||
300 | __kernel_size_t __copy_user(void *to, const void *from, __kernel_size_t n); | ||
301 | |||
302 | |||
303 | static __always_inline unsigned long | ||
304 | __copy_from_user(void *to, const void __user *from, unsigned long n) | ||
305 | { | ||
306 | return __copy_user(to, (__force void *)from, n); | ||
307 | } | ||
308 | |||
309 | static __always_inline unsigned long __must_check | ||
310 | __copy_to_user(void __user *to, const void *from, unsigned long n) | ||
311 | { | ||
312 | return __copy_user((__force void *)to, from, n); | ||
313 | } | ||
314 | |||
315 | #define __copy_to_user_inatomic __copy_to_user | ||
316 | #define __copy_from_user_inatomic __copy_from_user | ||
317 | |||
318 | /* | ||
319 | * Clear the area and return remaining number of bytes | ||
320 | * (on failure. Usually it's 0.) | ||
321 | */ | ||
322 | extern __kernel_size_t __clear_user(void *addr, __kernel_size_t size); | ||
323 | |||
324 | #define clear_user(addr,n) ({ \ | ||
325 | void * __cl_addr = (addr); \ | ||
326 | unsigned long __cl_size = (n); \ | ||
327 | if (__cl_size && __access_ok(((unsigned long)(__cl_addr)), __cl_size)) \ | ||
328 | __cl_size = __clear_user(__cl_addr, __cl_size); \ | ||
329 | __cl_size; }) | ||
330 | |||
331 | static __inline__ int | ||
332 | __strncpy_from_user(unsigned long __dest, unsigned long __user __src, int __count) | 175 | __strncpy_from_user(unsigned long __dest, unsigned long __user __src, int __count) |
333 | { | 176 | { |
334 | __kernel_size_t res; | 177 | __kernel_size_t res; |
@@ -367,37 +210,11 @@ __strncpy_from_user(unsigned long __dest, unsigned long __user __src, int __coun | |||
367 | return res; | 210 | return res; |
368 | } | 211 | } |
369 | 212 | ||
370 | /** | ||
371 | * strncpy_from_user: - Copy a NUL terminated string from userspace. | ||
372 | * @dst: Destination address, in kernel space. This buffer must be at | ||
373 | * least @count bytes long. | ||
374 | * @src: Source address, in user space. | ||
375 | * @count: Maximum number of bytes to copy, including the trailing NUL. | ||
376 | * | ||
377 | * Copies a NUL-terminated string from userspace to kernel space. | ||
378 | * | ||
379 | * On success, returns the length of the string (not including the trailing | ||
380 | * NUL). | ||
381 | * | ||
382 | * If access to userspace fails, returns -EFAULT (some data may have been | ||
383 | * copied). | ||
384 | * | ||
385 | * If @count is smaller than the length of the string, copies @count bytes | ||
386 | * and returns @count. | ||
387 | */ | ||
388 | #define strncpy_from_user(dest,src,count) ({ \ | ||
389 | unsigned long __sfu_src = (unsigned long) (src); \ | ||
390 | int __sfu_count = (int) (count); \ | ||
391 | long __sfu_res = -EFAULT; \ | ||
392 | if(__access_ok(__sfu_src, __sfu_count)) { \ | ||
393 | __sfu_res = __strncpy_from_user((unsigned long) (dest), __sfu_src, __sfu_count); \ | ||
394 | } __sfu_res; }) | ||
395 | |||
396 | /* | 213 | /* |
397 | * Return the size of a string (including the ending 0 even when we have | 214 | * Return the size of a string (including the ending 0 even when we have |
398 | * exceeded the maximum string length). | 215 | * exceeded the maximum string length). |
399 | */ | 216 | */ |
400 | static __inline__ long __strnlen_user(const char __user *__s, long __n) | 217 | static inline long __strnlen_user(const char __user *__s, long __n) |
401 | { | 218 | { |
402 | unsigned long res; | 219 | unsigned long res; |
403 | unsigned long __dummy; | 220 | unsigned long __dummy; |
@@ -429,61 +246,4 @@ static __inline__ long __strnlen_user(const char __user *__s, long __n) | |||
429 | return res; | 246 | return res; |
430 | } | 247 | } |
431 | 248 | ||
432 | /** | ||
433 | * strnlen_user: - Get the size of a string in user space. | ||
434 | * @s: The string to measure. | ||
435 | * @n: The maximum valid length | ||
436 | * | ||
437 | * Context: User context only. This function may sleep. | ||
438 | * | ||
439 | * Get the size of a NUL-terminated string in user space. | ||
440 | * | ||
441 | * Returns the size of the string INCLUDING the terminating NUL. | ||
442 | * On exception, returns 0. | ||
443 | * If the string is too long, returns a value greater than @n. | ||
444 | */ | ||
445 | static __inline__ long strnlen_user(const char __user *s, long n) | ||
446 | { | ||
447 | if (!__addr_ok(s)) | ||
448 | return 0; | ||
449 | else | ||
450 | return __strnlen_user(s, n); | ||
451 | } | ||
452 | |||
453 | /** | ||
454 | * strlen_user: - Get the size of a string in user space. | ||
455 | * @str: The string to measure. | ||
456 | * | ||
457 | * Context: User context only. This function may sleep. | ||
458 | * | ||
459 | * Get the size of a NUL-terminated string in user space. | ||
460 | * | ||
461 | * Returns the size of the string INCLUDING the terminating NUL. | ||
462 | * On exception, returns 0. | ||
463 | * | ||
464 | * If there is a limit on the length of a valid string, you may wish to | ||
465 | * consider using strnlen_user() instead. | ||
466 | */ | ||
467 | #define strlen_user(str) strnlen_user(str, ~0UL >> 1) | ||
468 | |||
469 | /* | ||
470 | * The exception table consists of pairs of addresses: the first is the | ||
471 | * address of an instruction that is allowed to fault, and the second is | ||
472 | * the address at which the program should continue. No registers are | ||
473 | * modified, so it is entirely up to the continuation code to figure out | ||
474 | * what to do. | ||
475 | * | ||
476 | * All the routines below use bits of fixup code that are out of line | ||
477 | * with the main instruction path. This means when everything is well, | ||
478 | * we don't even have to jump over them. Further, they do not intrude | ||
479 | * on our cache or tlb entries. | ||
480 | */ | ||
481 | |||
482 | struct exception_table_entry | ||
483 | { | ||
484 | unsigned long insn, fixup; | ||
485 | }; | ||
486 | |||
487 | extern int fixup_exception(struct pt_regs *regs); | ||
488 | |||
489 | #endif /* __ASM_SH_UACCESS_32_H */ | 249 | #endif /* __ASM_SH_UACCESS_32_H */ |
diff --git a/include/asm-sh/uaccess_64.h b/include/asm-sh/uaccess_64.h index a9b68d094844..81b3d515fcb3 100644 --- a/include/asm-sh/uaccess_64.h +++ b/include/asm-sh/uaccess_64.h | |||
@@ -20,87 +20,6 @@ | |||
20 | * License. See the file "COPYING" in the main directory of this archive | 20 | * License. See the file "COPYING" in the main directory of this archive |
21 | * for more details. | 21 | * for more details. |
22 | */ | 22 | */ |
23 | #include <linux/errno.h> | ||
24 | #include <linux/sched.h> | ||
25 | |||
26 | #define VERIFY_READ 0 | ||
27 | #define VERIFY_WRITE 1 | ||
28 | |||
29 | /* | ||
30 | * The fs value determines whether argument validity checking should be | ||
31 | * performed or not. If get_fs() == USER_DS, checking is performed, with | ||
32 | * get_fs() == KERNEL_DS, checking is bypassed. | ||
33 | * | ||
34 | * For historical reasons (Data Segment Register?), these macros are misnamed. | ||
35 | */ | ||
36 | |||
37 | #define MAKE_MM_SEG(s) ((mm_segment_t) { (s) }) | ||
38 | |||
39 | #define KERNEL_DS MAKE_MM_SEG(0xFFFFFFFF) | ||
40 | #define USER_DS MAKE_MM_SEG(0x80000000) | ||
41 | |||
42 | #define get_ds() (KERNEL_DS) | ||
43 | #define get_fs() (current_thread_info()->addr_limit) | ||
44 | #define set_fs(x) (current_thread_info()->addr_limit=(x)) | ||
45 | |||
46 | #define segment_eq(a,b) ((a).seg == (b).seg) | ||
47 | |||
48 | #define __addr_ok(addr) ((unsigned long)(addr) < (current_thread_info()->addr_limit.seg)) | ||
49 | |||
50 | /* | ||
51 | * Uhhuh, this needs 33-bit arithmetic. We have a carry.. | ||
52 | * | ||
53 | * sum := addr + size; carry? --> flag = true; | ||
54 | * if (sum >= addr_limit) flag = true; | ||
55 | */ | ||
56 | #define __range_ok(addr,size) (((unsigned long) (addr) + (size) < (current_thread_info()->addr_limit.seg)) ? 0 : 1) | ||
57 | |||
58 | #define access_ok(type,addr,size) (__range_ok(addr,size) == 0) | ||
59 | #define __access_ok(addr,size) (__range_ok(addr,size) == 0) | ||
60 | |||
61 | /* | ||
62 | * Uh, these should become the main single-value transfer routines ... | ||
63 | * They automatically use the right size if we just have the right | ||
64 | * pointer type ... | ||
65 | * | ||
66 | * As MIPS uses the same address space for kernel and user data, we | ||
67 | * can just do these as direct assignments. | ||
68 | * | ||
69 | * Careful to not | ||
70 | * (a) re-use the arguments for side effects (sizeof is ok) | ||
71 | * (b) require any knowledge of processes at this stage | ||
72 | */ | ||
73 | #define put_user(x,ptr) __put_user_check((x),(ptr),sizeof(*(ptr))) | ||
74 | #define get_user(x,ptr) __get_user_check((x),(ptr),sizeof(*(ptr))) | ||
75 | |||
76 | /* | ||
77 | * The "__xxx" versions do not do address space checking, useful when | ||
78 | * doing multiple accesses to the same area (the user has to do the | ||
79 | * checks by hand with "access_ok()") | ||
80 | */ | ||
81 | #define __put_user(x,ptr) __put_user_nocheck((x),(ptr),sizeof(*(ptr))) | ||
82 | #define __get_user(x,ptr) __get_user_nocheck((x),(ptr),sizeof(*(ptr))) | ||
83 | |||
84 | /* | ||
85 | * The "xxx_ret" versions return constant specified in third argument, if | ||
86 | * something bad happens. These macros can be optimized for the | ||
87 | * case of just returning from the function xxx_ret is used. | ||
88 | */ | ||
89 | |||
90 | #define put_user_ret(x,ptr,ret) ({ \ | ||
91 | if (put_user(x,ptr)) return ret; }) | ||
92 | |||
93 | #define get_user_ret(x,ptr,ret) ({ \ | ||
94 | if (get_user(x,ptr)) return ret; }) | ||
95 | |||
96 | #define __put_user_ret(x,ptr,ret) ({ \ | ||
97 | if (__put_user(x,ptr)) return ret; }) | ||
98 | |||
99 | #define __get_user_ret(x,ptr,ret) ({ \ | ||
100 | if (__get_user(x,ptr)) return ret; }) | ||
101 | |||
102 | struct __large_struct { unsigned long buf[100]; }; | ||
103 | #define __m(x) (*(struct __large_struct *)(x)) | ||
104 | 23 | ||
105 | #define __get_user_size(x,ptr,size,retval) \ | 24 | #define __get_user_size(x,ptr,size,retval) \ |
106 | do { \ | 25 | do { \ |
@@ -124,26 +43,6 @@ do { \ | |||
124 | } \ | 43 | } \ |
125 | } while (0) | 44 | } while (0) |
126 | 45 | ||
127 | #define __get_user_nocheck(x,ptr,size) \ | ||
128 | ({ \ | ||
129 | long __gu_err, __gu_val; \ | ||
130 | __get_user_size((void *)&__gu_val, (long)(ptr), \ | ||
131 | (size), __gu_err); \ | ||
132 | (x) = (__typeof__(*(ptr)))__gu_val; \ | ||
133 | __gu_err; \ | ||
134 | }) | ||
135 | |||
136 | #define __get_user_check(x,ptr,size) \ | ||
137 | ({ \ | ||
138 | long __gu_addr = (long)(ptr); \ | ||
139 | long __gu_err = -EFAULT, __gu_val; \ | ||
140 | if (__access_ok(__gu_addr, (size))) \ | ||
141 | __get_user_size((void *)&__gu_val, __gu_addr, \ | ||
142 | (size), __gu_err); \ | ||
143 | (x) = (__typeof__(*(ptr))) __gu_val; \ | ||
144 | __gu_err; \ | ||
145 | }) | ||
146 | |||
147 | extern long __get_user_asm_b(void *, long); | 46 | extern long __get_user_asm_b(void *, long); |
148 | extern long __get_user_asm_w(void *, long); | 47 | extern long __get_user_asm_w(void *, long); |
149 | extern long __get_user_asm_l(void *, long); | 48 | extern long __get_user_asm_l(void *, long); |
@@ -171,115 +70,10 @@ do { \ | |||
171 | } \ | 70 | } \ |
172 | } while (0) | 71 | } while (0) |
173 | 72 | ||
174 | #define __put_user_nocheck(x,ptr,size) \ | ||
175 | ({ \ | ||
176 | long __pu_err; \ | ||
177 | __typeof__(*(ptr)) __pu_val = (x); \ | ||
178 | __put_user_size((void *)&__pu_val, (long)(ptr), (size), __pu_err); \ | ||
179 | __pu_err; \ | ||
180 | }) | ||
181 | |||
182 | #define __put_user_check(x,ptr,size) \ | ||
183 | ({ \ | ||
184 | long __pu_err = -EFAULT; \ | ||
185 | long __pu_addr = (long)(ptr); \ | ||
186 | __typeof__(*(ptr)) __pu_val = (x); \ | ||
187 | \ | ||
188 | if (__access_ok(__pu_addr, (size))) \ | ||
189 | __put_user_size((void *)&__pu_val, __pu_addr, (size), __pu_err);\ | ||
190 | __pu_err; \ | ||
191 | }) | ||
192 | |||
193 | extern long __put_user_asm_b(void *, long); | 73 | extern long __put_user_asm_b(void *, long); |
194 | extern long __put_user_asm_w(void *, long); | 74 | extern long __put_user_asm_w(void *, long); |
195 | extern long __put_user_asm_l(void *, long); | 75 | extern long __put_user_asm_l(void *, long); |
196 | extern long __put_user_asm_q(void *, long); | 76 | extern long __put_user_asm_q(void *, long); |
197 | extern void __put_user_unknown(void); | 77 | extern void __put_user_unknown(void); |
198 | 78 | ||
199 | |||
200 | /* Generic arbitrary sized copy. */ | ||
201 | /* Return the number of bytes NOT copied */ | ||
202 | /* XXX: should be such that: 4byte and the rest. */ | ||
203 | extern __kernel_size_t __copy_user(void *__to, const void *__from, __kernel_size_t __n); | ||
204 | |||
205 | #define copy_to_user_ret(to,from,n,retval) ({ \ | ||
206 | if (copy_to_user(to,from,n)) \ | ||
207 | return retval; \ | ||
208 | }) | ||
209 | |||
210 | #define __copy_to_user(to,from,n) \ | ||
211 | __copy_user((void *)(to), \ | ||
212 | (void *)(from), n) | ||
213 | |||
214 | #define __copy_to_user_ret(to,from,n,retval) ({ \ | ||
215 | if (__copy_to_user(to,from,n)) \ | ||
216 | return retval; \ | ||
217 | }) | ||
218 | |||
219 | #define copy_from_user_ret(to,from,n,retval) ({ \ | ||
220 | if (copy_from_user(to,from,n)) \ | ||
221 | return retval; \ | ||
222 | }) | ||
223 | |||
224 | #define __copy_from_user(to,from,n) \ | ||
225 | __copy_user((void *)(to), \ | ||
226 | (void *)(from), n) | ||
227 | |||
228 | #define __copy_from_user_ret(to,from,n,retval) ({ \ | ||
229 | if (__copy_from_user(to,from,n)) \ | ||
230 | return retval; \ | ||
231 | }) | ||
232 | |||
233 | #define __copy_to_user_inatomic __copy_to_user | ||
234 | #define __copy_from_user_inatomic __copy_from_user | ||
235 | |||
236 | /* XXX: Not sure it works well.. | ||
237 | should be such that: 4byte clear and the rest. */ | ||
238 | extern __kernel_size_t __clear_user(void *addr, __kernel_size_t size); | ||
239 | |||
240 | #define clear_user(addr,n) ({ \ | ||
241 | void * __cl_addr = (addr); \ | ||
242 | unsigned long __cl_size = (n); \ | ||
243 | if (__cl_size && __access_ok(((unsigned long)(__cl_addr)), __cl_size)) \ | ||
244 | __cl_size = __clear_user(__cl_addr, __cl_size); \ | ||
245 | __cl_size; }) | ||
246 | |||
247 | extern int __strncpy_from_user(unsigned long __dest, unsigned long __src, int __count); | ||
248 | |||
249 | #define strncpy_from_user(dest,src,count) ({ \ | ||
250 | unsigned long __sfu_src = (unsigned long) (src); \ | ||
251 | int __sfu_count = (int) (count); \ | ||
252 | long __sfu_res = -EFAULT; \ | ||
253 | if(__access_ok(__sfu_src, __sfu_count)) { \ | ||
254 | __sfu_res = __strncpy_from_user((unsigned long) (dest), __sfu_src, __sfu_count); \ | ||
255 | } __sfu_res; }) | ||
256 | |||
257 | #define strlen_user(str) strnlen_user(str, ~0UL >> 1) | ||
258 | |||
259 | /* | ||
260 | * Return the size of a string (including the ending 0!) | ||
261 | */ | ||
262 | extern long __strnlen_user(const char *__s, long __n); | ||
263 | |||
264 | static inline long strnlen_user(const char *s, long n) | ||
265 | { | ||
266 | if (!__addr_ok(s)) | ||
267 | return 0; | ||
268 | else | ||
269 | return __strnlen_user(s, n); | ||
270 | } | ||
271 | |||
272 | struct exception_table_entry | ||
273 | { | ||
274 | unsigned long insn, fixup; | ||
275 | }; | ||
276 | |||
277 | #ifdef CONFIG_MMU | ||
278 | #define ARCH_HAS_SEARCH_EXTABLE | ||
279 | #endif | ||
280 | |||
281 | /* Returns 0 if exception not found and fixup.unit otherwise. */ | ||
282 | extern unsigned long search_exception_table(unsigned long addr); | ||
283 | extern const struct exception_table_entry *search_exception_tables (unsigned long addr); | ||
284 | |||
285 | #endif /* __ASM_SH_UACCESS_64_H */ | 79 | #endif /* __ASM_SH_UACCESS_64_H */ |
diff --git a/include/asm-sh/unistd.h b/include/asm-sh/unistd.h index 4b21f369c28c..65be656ead7d 100644 --- a/include/asm-sh/unistd.h +++ b/include/asm-sh/unistd.h | |||
@@ -1,5 +1,13 @@ | |||
1 | #ifdef CONFIG_SUPERH32 | 1 | #ifdef __KERNEL__ |
2 | # include "unistd_32.h" | 2 | # ifdef CONFIG_SUPERH32 |
3 | # include "unistd_32.h" | ||
4 | # else | ||
5 | # include "unistd_64.h" | ||
6 | # endif | ||
3 | #else | 7 | #else |
4 | # include "unistd_64.h" | 8 | # ifdef __SH5__ |
9 | # include "unistd_64.h" | ||
10 | # else | ||
11 | # include "unistd_32.h" | ||
12 | # endif | ||
5 | #endif | 13 | #endif |
diff --git a/include/asm-sh/unistd_32.h b/include/asm-sh/unistd_32.h index 0b07212ec659..d52c000cf924 100644 --- a/include/asm-sh/unistd_32.h +++ b/include/asm-sh/unistd_32.h | |||
@@ -335,8 +335,14 @@ | |||
335 | #define __NR_fallocate 324 | 335 | #define __NR_fallocate 324 |
336 | #define __NR_timerfd_settime 325 | 336 | #define __NR_timerfd_settime 325 |
337 | #define __NR_timerfd_gettime 326 | 337 | #define __NR_timerfd_gettime 326 |
338 | #define __NR_signalfd4 327 | ||
339 | #define __NR_eventfd2 328 | ||
340 | #define __NR_epoll_create1 329 | ||
341 | #define __NR_dup3 330 | ||
342 | #define __NR_pipe2 331 | ||
343 | #define __NR_inotify_init1 332 | ||
338 | 344 | ||
339 | #define NR_syscalls 327 | 345 | #define NR_syscalls 333 |
340 | 346 | ||
341 | #ifdef __KERNEL__ | 347 | #ifdef __KERNEL__ |
342 | 348 | ||
diff --git a/include/asm-sh/unistd_64.h b/include/asm-sh/unistd_64.h index 9d21eab52427..7c54e91753c1 100644 --- a/include/asm-sh/unistd_64.h +++ b/include/asm-sh/unistd_64.h | |||
@@ -375,10 +375,16 @@ | |||
375 | #define __NR_fallocate 352 | 375 | #define __NR_fallocate 352 |
376 | #define __NR_timerfd_settime 353 | 376 | #define __NR_timerfd_settime 353 |
377 | #define __NR_timerfd_gettime 354 | 377 | #define __NR_timerfd_gettime 354 |
378 | #define __NR_signalfd4 355 | ||
379 | #define __NR_eventfd2 356 | ||
380 | #define __NR_epoll_create1 357 | ||
381 | #define __NR_dup3 358 | ||
382 | #define __NR_pipe2 359 | ||
383 | #define __NR_inotify_init1 360 | ||
378 | 384 | ||
379 | #ifdef __KERNEL__ | 385 | #ifdef __KERNEL__ |
380 | 386 | ||
381 | #define NR_syscalls 353 | 387 | #define NR_syscalls 361 |
382 | 388 | ||
383 | #define __ARCH_WANT_IPC_PARSE_VERSION | 389 | #define __ARCH_WANT_IPC_PARSE_VERSION |
384 | #define __ARCH_WANT_OLD_READDIR | 390 | #define __ARCH_WANT_OLD_READDIR |
diff --git a/include/asm-sparc/Kbuild b/include/asm-sparc/Kbuild deleted file mode 100644 index 6cdaf9d33b38..000000000000 --- a/include/asm-sparc/Kbuild +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | # dummy file to avoid breaking make headers_install | ||
diff --git a/include/asm-sparc64/Kbuild b/include/asm-sparc64/Kbuild deleted file mode 100644 index 6cdaf9d33b38..000000000000 --- a/include/asm-sparc64/Kbuild +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | # dummy file to avoid breaking make headers_install | ||
diff --git a/include/asm-sparc64/agp.h b/include/asm-sparc64/agp.h deleted file mode 100644 index eb8d4b3f5163..000000000000 --- a/include/asm-sparc64/agp.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/agp.h> | ||
diff --git a/include/asm-sparc64/apb.h b/include/asm-sparc64/apb.h deleted file mode 100644 index 5e236ca6e492..000000000000 --- a/include/asm-sparc64/apb.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/apb.h> | ||
diff --git a/include/asm-sparc64/asi.h b/include/asm-sparc64/asi.h deleted file mode 100644 index 9b7110c516e8..000000000000 --- a/include/asm-sparc64/asi.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/asi.h> | ||
diff --git a/include/asm-sparc64/atomic.h b/include/asm-sparc64/atomic.h deleted file mode 100644 index f5126826ba34..000000000000 --- a/include/asm-sparc64/atomic.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/atomic.h> | ||
diff --git a/include/asm-sparc64/auxio.h b/include/asm-sparc64/auxio.h deleted file mode 100644 index 46c9042f30b4..000000000000 --- a/include/asm-sparc64/auxio.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/auxio.h> | ||
diff --git a/include/asm-sparc64/auxvec.h b/include/asm-sparc64/auxvec.h deleted file mode 100644 index 1f45c67d7316..000000000000 --- a/include/asm-sparc64/auxvec.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/auxvec.h> | ||
diff --git a/include/asm-sparc64/backoff.h b/include/asm-sparc64/backoff.h deleted file mode 100644 index 8ee26d947e0e..000000000000 --- a/include/asm-sparc64/backoff.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/backoff.h> | ||
diff --git a/include/asm-sparc64/bbc.h b/include/asm-sparc64/bbc.h deleted file mode 100644 index 06e8b6306514..000000000000 --- a/include/asm-sparc64/bbc.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/bbc.h> | ||
diff --git a/include/asm-sparc64/bitops.h b/include/asm-sparc64/bitops.h deleted file mode 100644 index 204404355bdd..000000000000 --- a/include/asm-sparc64/bitops.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/bitops.h> | ||
diff --git a/include/asm-sparc64/bpp.h b/include/asm-sparc64/bpp.h deleted file mode 100644 index 514eee20272e..000000000000 --- a/include/asm-sparc64/bpp.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/bpp.h> | ||
diff --git a/include/asm-sparc64/bug.h b/include/asm-sparc64/bug.h deleted file mode 100644 index 3433737c7a67..000000000000 --- a/include/asm-sparc64/bug.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/bug.h> | ||
diff --git a/include/asm-sparc64/bugs.h b/include/asm-sparc64/bugs.h deleted file mode 100644 index 04ae9e2818cf..000000000000 --- a/include/asm-sparc64/bugs.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/bugs.h> | ||
diff --git a/include/asm-sparc64/byteorder.h b/include/asm-sparc64/byteorder.h deleted file mode 100644 index f672855bee17..000000000000 --- a/include/asm-sparc64/byteorder.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/byteorder.h> | ||
diff --git a/include/asm-sparc64/cache.h b/include/asm-sparc64/cache.h deleted file mode 100644 index fa9de5cadbf1..000000000000 --- a/include/asm-sparc64/cache.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/cache.h> | ||
diff --git a/include/asm-sparc64/cacheflush.h b/include/asm-sparc64/cacheflush.h deleted file mode 100644 index cf5b6b3e8a55..000000000000 --- a/include/asm-sparc64/cacheflush.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/cacheflush.h> | ||
diff --git a/include/asm-sparc64/chafsr.h b/include/asm-sparc64/chafsr.h deleted file mode 100644 index aaab97562a39..000000000000 --- a/include/asm-sparc64/chafsr.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/chafsr.h> | ||
diff --git a/include/asm-sparc64/checksum.h b/include/asm-sparc64/checksum.h deleted file mode 100644 index c3966c5e29d8..000000000000 --- a/include/asm-sparc64/checksum.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/checksum.h> | ||
diff --git a/include/asm-sparc64/chmctrl.h b/include/asm-sparc64/chmctrl.h deleted file mode 100644 index eb757b483b30..000000000000 --- a/include/asm-sparc64/chmctrl.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/chmctrl.h> | ||
diff --git a/include/asm-sparc64/cmt.h b/include/asm-sparc64/cmt.h deleted file mode 100644 index b19b445cb810..000000000000 --- a/include/asm-sparc64/cmt.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/cmt.h> | ||
diff --git a/include/asm-sparc64/compat.h b/include/asm-sparc64/compat.h deleted file mode 100644 index 8c155d221952..000000000000 --- a/include/asm-sparc64/compat.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/compat.h> | ||
diff --git a/include/asm-sparc64/compat_signal.h b/include/asm-sparc64/compat_signal.h deleted file mode 100644 index 7187dcc8cac7..000000000000 --- a/include/asm-sparc64/compat_signal.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/compat_signal.h> | ||
diff --git a/include/asm-sparc64/cpudata.h b/include/asm-sparc64/cpudata.h deleted file mode 100644 index 3220e134a579..000000000000 --- a/include/asm-sparc64/cpudata.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/cpudata.h> | ||
diff --git a/include/asm-sparc64/cputime.h b/include/asm-sparc64/cputime.h deleted file mode 100644 index 435f37a92f7c..000000000000 --- a/include/asm-sparc64/cputime.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/cputime.h> | ||
diff --git a/include/asm-sparc64/current.h b/include/asm-sparc64/current.h deleted file mode 100644 index a7904a7f53a8..000000000000 --- a/include/asm-sparc64/current.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/current.h> | ||
diff --git a/include/asm-sparc64/dcr.h b/include/asm-sparc64/dcr.h deleted file mode 100644 index d67613b1f5fe..000000000000 --- a/include/asm-sparc64/dcr.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/dcr.h> | ||
diff --git a/include/asm-sparc64/dcu.h b/include/asm-sparc64/dcu.h deleted file mode 100644 index 28853f4968d1..000000000000 --- a/include/asm-sparc64/dcu.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/dcu.h> | ||
diff --git a/include/asm-sparc64/delay.h b/include/asm-sparc64/delay.h deleted file mode 100644 index 33dc5589d841..000000000000 --- a/include/asm-sparc64/delay.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/delay.h> | ||
diff --git a/include/asm-sparc64/device.h b/include/asm-sparc64/device.h deleted file mode 100644 index 4145c47097e2..000000000000 --- a/include/asm-sparc64/device.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/device.h> | ||
diff --git a/include/asm-sparc64/display7seg.h b/include/asm-sparc64/display7seg.h deleted file mode 100644 index e74f046b41de..000000000000 --- a/include/asm-sparc64/display7seg.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/display7seg.h> | ||
diff --git a/include/asm-sparc64/div64.h b/include/asm-sparc64/div64.h deleted file mode 100644 index 928c94f99ecf..000000000000 --- a/include/asm-sparc64/div64.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/div64.h> | ||
diff --git a/include/asm-sparc64/dma-mapping.h b/include/asm-sparc64/dma-mapping.h deleted file mode 100644 index 380b7b63147f..000000000000 --- a/include/asm-sparc64/dma-mapping.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/dma-mapping.h> | ||
diff --git a/include/asm-sparc64/dma.h b/include/asm-sparc64/dma.h deleted file mode 100644 index 2e36248e6b59..000000000000 --- a/include/asm-sparc64/dma.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/dma.h> | ||
diff --git a/include/asm-sparc64/ebus.h b/include/asm-sparc64/ebus.h deleted file mode 100644 index d7d476158bd5..000000000000 --- a/include/asm-sparc64/ebus.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/ebus.h> | ||
diff --git a/include/asm-sparc64/elf.h b/include/asm-sparc64/elf.h deleted file mode 100644 index f256d9472c82..000000000000 --- a/include/asm-sparc64/elf.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/elf.h> | ||
diff --git a/include/asm-sparc64/emergency-restart.h b/include/asm-sparc64/emergency-restart.h deleted file mode 100644 index 2cac7b644da8..000000000000 --- a/include/asm-sparc64/emergency-restart.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/emergency-restart.h> | ||
diff --git a/include/asm-sparc64/envctrl.h b/include/asm-sparc64/envctrl.h deleted file mode 100644 index a2cc0ca334ba..000000000000 --- a/include/asm-sparc64/envctrl.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/envctrl.h> | ||
diff --git a/include/asm-sparc64/errno.h b/include/asm-sparc64/errno.h deleted file mode 100644 index 9701fe01cc53..000000000000 --- a/include/asm-sparc64/errno.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/errno.h> | ||
diff --git a/include/asm-sparc64/estate.h b/include/asm-sparc64/estate.h deleted file mode 100644 index bedd0ef5f19c..000000000000 --- a/include/asm-sparc64/estate.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/estate.h> | ||
diff --git a/include/asm-sparc64/fb.h b/include/asm-sparc64/fb.h deleted file mode 100644 index 1c2ac5832f39..000000000000 --- a/include/asm-sparc64/fb.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/fb.h> | ||
diff --git a/include/asm-sparc64/fbio.h b/include/asm-sparc64/fbio.h deleted file mode 100644 index c17edf8c7bc4..000000000000 --- a/include/asm-sparc64/fbio.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/fbio.h> | ||
diff --git a/include/asm-sparc64/fcntl.h b/include/asm-sparc64/fcntl.h deleted file mode 100644 index 8b1beae48cd1..000000000000 --- a/include/asm-sparc64/fcntl.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/fcntl.h> | ||
diff --git a/include/asm-sparc64/fhc.h b/include/asm-sparc64/fhc.h deleted file mode 100644 index 73eb04c19c47..000000000000 --- a/include/asm-sparc64/fhc.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/fhc.h> | ||
diff --git a/include/asm-sparc64/floppy.h b/include/asm-sparc64/floppy.h deleted file mode 100644 index 214878114436..000000000000 --- a/include/asm-sparc64/floppy.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/floppy.h> | ||
diff --git a/include/asm-sparc64/fpumacro.h b/include/asm-sparc64/fpumacro.h deleted file mode 100644 index 30d6d0f68bc3..000000000000 --- a/include/asm-sparc64/fpumacro.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/fpumacro.h> | ||
diff --git a/include/asm-sparc64/futex.h b/include/asm-sparc64/futex.h deleted file mode 100644 index 1ceb0bb2fe53..000000000000 --- a/include/asm-sparc64/futex.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/futex.h> | ||
diff --git a/include/asm-sparc64/hardirq.h b/include/asm-sparc64/hardirq.h deleted file mode 100644 index 63dca3db11f3..000000000000 --- a/include/asm-sparc64/hardirq.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/hardirq.h> | ||
diff --git a/include/asm-sparc64/head.h b/include/asm-sparc64/head.h deleted file mode 100644 index 2254c09e53f9..000000000000 --- a/include/asm-sparc64/head.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/head.h> | ||
diff --git a/include/asm-sparc64/hugetlb.h b/include/asm-sparc64/hugetlb.h deleted file mode 100644 index 21d8f0a9c243..000000000000 --- a/include/asm-sparc64/hugetlb.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/hugetlb.h> | ||
diff --git a/include/asm-sparc64/hvtramp.h b/include/asm-sparc64/hvtramp.h deleted file mode 100644 index fb46bfe934a7..000000000000 --- a/include/asm-sparc64/hvtramp.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/hvtramp.h> | ||
diff --git a/include/asm-sparc64/hw_irq.h b/include/asm-sparc64/hw_irq.h deleted file mode 100644 index 16920a291f51..000000000000 --- a/include/asm-sparc64/hw_irq.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/hw_irq.h> | ||
diff --git a/include/asm-sparc64/hypervisor.h b/include/asm-sparc64/hypervisor.h deleted file mode 100644 index fe7e51a9e429..000000000000 --- a/include/asm-sparc64/hypervisor.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/hypervisor.h> | ||
diff --git a/include/asm-sparc64/ide.h b/include/asm-sparc64/ide.h deleted file mode 100644 index 7125317a428d..000000000000 --- a/include/asm-sparc64/ide.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/ide.h> | ||
diff --git a/include/asm-sparc64/idprom.h b/include/asm-sparc64/idprom.h deleted file mode 100644 index c22f9c30bc78..000000000000 --- a/include/asm-sparc64/idprom.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/idprom.h> | ||
diff --git a/include/asm-sparc64/intr_queue.h b/include/asm-sparc64/intr_queue.h deleted file mode 100644 index f7225015b3db..000000000000 --- a/include/asm-sparc64/intr_queue.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/intr_queue.h> | ||
diff --git a/include/asm-sparc64/io.h b/include/asm-sparc64/io.h deleted file mode 100644 index 25ff258dfd33..000000000000 --- a/include/asm-sparc64/io.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/io.h> | ||
diff --git a/include/asm-sparc64/ioctl.h b/include/asm-sparc64/ioctl.h deleted file mode 100644 index 18fc5623ff51..000000000000 --- a/include/asm-sparc64/ioctl.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/ioctl.h> | ||
diff --git a/include/asm-sparc64/ioctls.h b/include/asm-sparc64/ioctls.h deleted file mode 100644 index dcd5540ec103..000000000000 --- a/include/asm-sparc64/ioctls.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/ioctls.h> | ||
diff --git a/include/asm-sparc64/iommu.h b/include/asm-sparc64/iommu.h deleted file mode 100644 index 76252bb85e97..000000000000 --- a/include/asm-sparc64/iommu.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/iommu.h> | ||
diff --git a/include/asm-sparc64/ipcbuf.h b/include/asm-sparc64/ipcbuf.h deleted file mode 100644 index 41dfaf1149b5..000000000000 --- a/include/asm-sparc64/ipcbuf.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/ipcbuf.h> | ||
diff --git a/include/asm-sparc64/irq.h b/include/asm-sparc64/irq.h deleted file mode 100644 index b2102e65947c..000000000000 --- a/include/asm-sparc64/irq.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/irq.h> | ||
diff --git a/include/asm-sparc64/irq_regs.h b/include/asm-sparc64/irq_regs.h deleted file mode 100644 index 1e2b8a1e745a..000000000000 --- a/include/asm-sparc64/irq_regs.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/irq_regs.h> | ||
diff --git a/include/asm-sparc64/irqflags.h b/include/asm-sparc64/irqflags.h deleted file mode 100644 index 27b091fc3fa0..000000000000 --- a/include/asm-sparc64/irqflags.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/irqflags.h> | ||
diff --git a/include/asm-sparc64/kdebug.h b/include/asm-sparc64/kdebug.h deleted file mode 100644 index 78cfd5d2749b..000000000000 --- a/include/asm-sparc64/kdebug.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/kdebug.h> | ||
diff --git a/include/asm-sparc64/kgdb.h b/include/asm-sparc64/kgdb.h deleted file mode 100644 index aa6532fd3a13..000000000000 --- a/include/asm-sparc64/kgdb.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/kgdb.h> | ||
diff --git a/include/asm-sparc64/kmap_types.h b/include/asm-sparc64/kmap_types.h deleted file mode 100644 index 276530cf5395..000000000000 --- a/include/asm-sparc64/kmap_types.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/kmap_types.h> | ||
diff --git a/include/asm-sparc64/kprobes.h b/include/asm-sparc64/kprobes.h deleted file mode 100644 index c55e43e4d2a4..000000000000 --- a/include/asm-sparc64/kprobes.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/kprobes.h> | ||
diff --git a/include/asm-sparc64/ldc.h b/include/asm-sparc64/ldc.h deleted file mode 100644 index 40f3f231c457..000000000000 --- a/include/asm-sparc64/ldc.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/ldc.h> | ||
diff --git a/include/asm-sparc64/linkage.h b/include/asm-sparc64/linkage.h deleted file mode 100644 index 3ea4fd13f193..000000000000 --- a/include/asm-sparc64/linkage.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/linkage.h> | ||
diff --git a/include/asm-sparc64/lmb.h b/include/asm-sparc64/lmb.h deleted file mode 100644 index 3d04981701e2..000000000000 --- a/include/asm-sparc64/lmb.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/lmb.h> | ||
diff --git a/include/asm-sparc64/local.h b/include/asm-sparc64/local.h deleted file mode 100644 index c11c530f74d0..000000000000 --- a/include/asm-sparc64/local.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-generic/local.h> | ||
diff --git a/include/asm-sparc64/lsu.h b/include/asm-sparc64/lsu.h deleted file mode 100644 index 4e3d8b128a58..000000000000 --- a/include/asm-sparc64/lsu.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/lsu.h> | ||
diff --git a/include/asm-sparc64/mc146818rtc.h b/include/asm-sparc64/mc146818rtc.h deleted file mode 100644 index 97842e6ed1c2..000000000000 --- a/include/asm-sparc64/mc146818rtc.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/mc146818rtc.h> | ||
diff --git a/include/asm-sparc64/mdesc.h b/include/asm-sparc64/mdesc.h deleted file mode 100644 index 165a19347286..000000000000 --- a/include/asm-sparc64/mdesc.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/mdesc.h> | ||
diff --git a/include/asm-sparc64/mman.h b/include/asm-sparc64/mman.h deleted file mode 100644 index 17ddb1724f51..000000000000 --- a/include/asm-sparc64/mman.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/mman.h> | ||
diff --git a/include/asm-sparc64/mmu.h b/include/asm-sparc64/mmu.h deleted file mode 100644 index e677a64d8db1..000000000000 --- a/include/asm-sparc64/mmu.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/mmu.h> | ||
diff --git a/include/asm-sparc64/mmu_context.h b/include/asm-sparc64/mmu_context.h deleted file mode 100644 index 877fee94bd4e..000000000000 --- a/include/asm-sparc64/mmu_context.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/mmu_context.h> | ||
diff --git a/include/asm-sparc64/mmzone.h b/include/asm-sparc64/mmzone.h deleted file mode 100644 index 43a710f7892a..000000000000 --- a/include/asm-sparc64/mmzone.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/mmzone.h> | ||
diff --git a/include/asm-sparc64/module.h b/include/asm-sparc64/module.h deleted file mode 100644 index a9606db55e4a..000000000000 --- a/include/asm-sparc64/module.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/module.h> | ||
diff --git a/include/asm-sparc64/mostek.h b/include/asm-sparc64/mostek.h deleted file mode 100644 index 95a752f7e875..000000000000 --- a/include/asm-sparc64/mostek.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/mostek.h> | ||
diff --git a/include/asm-sparc64/msgbuf.h b/include/asm-sparc64/msgbuf.h deleted file mode 100644 index 5b33cc9d9bfb..000000000000 --- a/include/asm-sparc64/msgbuf.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/msgbuf.h> | ||
diff --git a/include/asm-sparc64/mutex.h b/include/asm-sparc64/mutex.h deleted file mode 100644 index c0c0f8f260d6..000000000000 --- a/include/asm-sparc64/mutex.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/mutex.h> | ||
diff --git a/include/asm-sparc64/ns87303.h b/include/asm-sparc64/ns87303.h deleted file mode 100644 index 5f369d4df3db..000000000000 --- a/include/asm-sparc64/ns87303.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/ns87303.h> | ||
diff --git a/include/asm-sparc64/of_device.h b/include/asm-sparc64/of_device.h deleted file mode 100644 index a769fdbe164a..000000000000 --- a/include/asm-sparc64/of_device.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/of_device.h> | ||
diff --git a/include/asm-sparc64/of_platform.h b/include/asm-sparc64/of_platform.h deleted file mode 100644 index f7c427b8bc61..000000000000 --- a/include/asm-sparc64/of_platform.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/of_platform.h> | ||
diff --git a/include/asm-sparc64/openprom.h b/include/asm-sparc64/openprom.h deleted file mode 100644 index acf4b234fae3..000000000000 --- a/include/asm-sparc64/openprom.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/openprom.h> | ||
diff --git a/include/asm-sparc64/openpromio.h b/include/asm-sparc64/openpromio.h deleted file mode 100644 index 122fabda21f1..000000000000 --- a/include/asm-sparc64/openpromio.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/openpromio.h> | ||
diff --git a/include/asm-sparc64/oplib.h b/include/asm-sparc64/oplib.h deleted file mode 100644 index d93e44e63510..000000000000 --- a/include/asm-sparc64/oplib.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/oplib.h> | ||
diff --git a/include/asm-sparc64/page.h b/include/asm-sparc64/page.h deleted file mode 100644 index f46c1fb53028..000000000000 --- a/include/asm-sparc64/page.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/page.h> | ||
diff --git a/include/asm-sparc64/param.h b/include/asm-sparc64/param.h deleted file mode 100644 index 40c6dc110822..000000000000 --- a/include/asm-sparc64/param.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/param.h> | ||
diff --git a/include/asm-sparc64/parport.h b/include/asm-sparc64/parport.h deleted file mode 100644 index b4e4ca812eb6..000000000000 --- a/include/asm-sparc64/parport.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/parport.h> | ||
diff --git a/include/asm-sparc64/pci.h b/include/asm-sparc64/pci.h deleted file mode 100644 index da54c4d1f39c..000000000000 --- a/include/asm-sparc64/pci.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/pci.h> | ||
diff --git a/include/asm-sparc64/percpu.h b/include/asm-sparc64/percpu.h deleted file mode 100644 index 292729bb350f..000000000000 --- a/include/asm-sparc64/percpu.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/percpu.h> | ||
diff --git a/include/asm-sparc64/perfctr.h b/include/asm-sparc64/perfctr.h deleted file mode 100644 index 52073a9f8e30..000000000000 --- a/include/asm-sparc64/perfctr.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/perfctr.h> | ||
diff --git a/include/asm-sparc64/pgalloc.h b/include/asm-sparc64/pgalloc.h deleted file mode 100644 index bec31641011c..000000000000 --- a/include/asm-sparc64/pgalloc.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/pgalloc.h> | ||
diff --git a/include/asm-sparc64/pgtable.h b/include/asm-sparc64/pgtable.h deleted file mode 100644 index 9decbd99aeff..000000000000 --- a/include/asm-sparc64/pgtable.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/pgtable.h> | ||
diff --git a/include/asm-sparc64/pil.h b/include/asm-sparc64/pil.h deleted file mode 100644 index d805f33f1e0f..000000000000 --- a/include/asm-sparc64/pil.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/pil.h> | ||
diff --git a/include/asm-sparc64/poll.h b/include/asm-sparc64/poll.h deleted file mode 100644 index 8e2f31b4641a..000000000000 --- a/include/asm-sparc64/poll.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/poll.h> | ||
diff --git a/include/asm-sparc64/posix_types.h b/include/asm-sparc64/posix_types.h deleted file mode 100644 index 8cee99200232..000000000000 --- a/include/asm-sparc64/posix_types.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/posix_types.h> | ||
diff --git a/include/asm-sparc64/processor.h b/include/asm-sparc64/processor.h deleted file mode 100644 index 21de6cc182eb..000000000000 --- a/include/asm-sparc64/processor.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/processor.h> | ||
diff --git a/include/asm-sparc64/prom.h b/include/asm-sparc64/prom.h deleted file mode 100644 index 5fa166ee3ffa..000000000000 --- a/include/asm-sparc64/prom.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/prom.h> | ||
diff --git a/include/asm-sparc64/psrcompat.h b/include/asm-sparc64/psrcompat.h deleted file mode 100644 index 587846f48358..000000000000 --- a/include/asm-sparc64/psrcompat.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/psrcompat.h> | ||
diff --git a/include/asm-sparc64/pstate.h b/include/asm-sparc64/pstate.h deleted file mode 100644 index 3ccf0be25360..000000000000 --- a/include/asm-sparc64/pstate.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/pstate.h> | ||
diff --git a/include/asm-sparc64/ptrace.h b/include/asm-sparc64/ptrace.h deleted file mode 100644 index 1a55b9fb3b0c..000000000000 --- a/include/asm-sparc64/ptrace.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/ptrace.h> | ||
diff --git a/include/asm-sparc64/reboot.h b/include/asm-sparc64/reboot.h deleted file mode 100644 index 0d72eb811cc8..000000000000 --- a/include/asm-sparc64/reboot.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/reboot.h> | ||
diff --git a/include/asm-sparc64/reg.h b/include/asm-sparc64/reg.h deleted file mode 100644 index 495bab27da07..000000000000 --- a/include/asm-sparc64/reg.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/reg.h> | ||
diff --git a/include/asm-sparc64/resource.h b/include/asm-sparc64/resource.h deleted file mode 100644 index 46e3bc0de476..000000000000 --- a/include/asm-sparc64/resource.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/resource.h> | ||
diff --git a/include/asm-sparc64/rtc.h b/include/asm-sparc64/rtc.h deleted file mode 100644 index e49a9685aead..000000000000 --- a/include/asm-sparc64/rtc.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/rtc.h> | ||
diff --git a/include/asm-sparc64/rwsem-const.h b/include/asm-sparc64/rwsem-const.h deleted file mode 100644 index 2a1de315c86a..000000000000 --- a/include/asm-sparc64/rwsem-const.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/rwsem-const.h> | ||
diff --git a/include/asm-sparc64/rwsem.h b/include/asm-sparc64/rwsem.h deleted file mode 100644 index 6943c56ed087..000000000000 --- a/include/asm-sparc64/rwsem.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/rwsem.h> | ||
diff --git a/include/asm-sparc64/sbus.h b/include/asm-sparc64/sbus.h deleted file mode 100644 index 0cab0e89b874..000000000000 --- a/include/asm-sparc64/sbus.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/sbus.h> | ||
diff --git a/include/asm-sparc64/scatterlist.h b/include/asm-sparc64/scatterlist.h deleted file mode 100644 index b7fef95953ca..000000000000 --- a/include/asm-sparc64/scatterlist.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/scatterlist.h> | ||
diff --git a/include/asm-sparc64/scratchpad.h b/include/asm-sparc64/scratchpad.h deleted file mode 100644 index 23675f6a915a..000000000000 --- a/include/asm-sparc64/scratchpad.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/scratchpad.h> | ||
diff --git a/include/asm-sparc64/seccomp.h b/include/asm-sparc64/seccomp.h deleted file mode 100644 index f22f02a08a61..000000000000 --- a/include/asm-sparc64/seccomp.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/seccomp.h> | ||
diff --git a/include/asm-sparc64/sections.h b/include/asm-sparc64/sections.h deleted file mode 100644 index 721496f8b2be..000000000000 --- a/include/asm-sparc64/sections.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/sections.h> | ||
diff --git a/include/asm-sparc64/sembuf.h b/include/asm-sparc64/sembuf.h deleted file mode 100644 index c55b95214136..000000000000 --- a/include/asm-sparc64/sembuf.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/sembuf.h> | ||
diff --git a/include/asm-sparc64/setup.h b/include/asm-sparc64/setup.h deleted file mode 100644 index 7143d06b2c55..000000000000 --- a/include/asm-sparc64/setup.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/setup.h> | ||
diff --git a/include/asm-sparc64/sfafsr.h b/include/asm-sparc64/sfafsr.h deleted file mode 100644 index 8036fc377a4d..000000000000 --- a/include/asm-sparc64/sfafsr.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/sfafsr.h> | ||
diff --git a/include/asm-sparc64/sfp-machine.h b/include/asm-sparc64/sfp-machine.h deleted file mode 100644 index 7bbc4fecdc7d..000000000000 --- a/include/asm-sparc64/sfp-machine.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/sfp-machine.h> | ||
diff --git a/include/asm-sparc64/shmbuf.h b/include/asm-sparc64/shmbuf.h deleted file mode 100644 index 0c54a2d68681..000000000000 --- a/include/asm-sparc64/shmbuf.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/shmbuf.h> | ||
diff --git a/include/asm-sparc64/shmparam.h b/include/asm-sparc64/shmparam.h deleted file mode 100644 index 5fa3a9b05e7f..000000000000 --- a/include/asm-sparc64/shmparam.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/shmparam.h> | ||
diff --git a/include/asm-sparc64/sigcontext.h b/include/asm-sparc64/sigcontext.h deleted file mode 100644 index 5b16dcce44f2..000000000000 --- a/include/asm-sparc64/sigcontext.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/sigcontext.h> | ||
diff --git a/include/asm-sparc64/siginfo.h b/include/asm-sparc64/siginfo.h deleted file mode 100644 index 8ffd6ebabc7a..000000000000 --- a/include/asm-sparc64/siginfo.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/siginfo.h> | ||
diff --git a/include/asm-sparc64/signal.h b/include/asm-sparc64/signal.h deleted file mode 100644 index 79705e5d49c3..000000000000 --- a/include/asm-sparc64/signal.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/signal.h> | ||
diff --git a/include/asm-sparc64/smp.h b/include/asm-sparc64/smp.h deleted file mode 100644 index 5095a2cbea52..000000000000 --- a/include/asm-sparc64/smp.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/smp.h> | ||
diff --git a/include/asm-sparc64/socket.h b/include/asm-sparc64/socket.h deleted file mode 100644 index 13e0d5d94bb3..000000000000 --- a/include/asm-sparc64/socket.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/socket.h> | ||
diff --git a/include/asm-sparc64/sockios.h b/include/asm-sparc64/sockios.h deleted file mode 100644 index 2cb4b641482c..000000000000 --- a/include/asm-sparc64/sockios.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/sockios.h> | ||
diff --git a/include/asm-sparc64/sparsemem.h b/include/asm-sparc64/sparsemem.h deleted file mode 100644 index e681f22a97ae..000000000000 --- a/include/asm-sparc64/sparsemem.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/sparsemem.h> | ||
diff --git a/include/asm-sparc64/spinlock.h b/include/asm-sparc64/spinlock.h deleted file mode 100644 index 0115b8156eb8..000000000000 --- a/include/asm-sparc64/spinlock.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/spinlock.h> | ||
diff --git a/include/asm-sparc64/spinlock_types.h b/include/asm-sparc64/spinlock_types.h deleted file mode 100644 index 48d81c8734b5..000000000000 --- a/include/asm-sparc64/spinlock_types.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/spinlock_types.h> | ||
diff --git a/include/asm-sparc64/spitfire.h b/include/asm-sparc64/spitfire.h deleted file mode 100644 index 4430d2fbb0dc..000000000000 --- a/include/asm-sparc64/spitfire.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/spitfire.h> | ||
diff --git a/include/asm-sparc64/sstate.h b/include/asm-sparc64/sstate.h deleted file mode 100644 index 97720ce2fd43..000000000000 --- a/include/asm-sparc64/sstate.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/sstate.h> | ||
diff --git a/include/asm-sparc64/stacktrace.h b/include/asm-sparc64/stacktrace.h deleted file mode 100644 index adc9b92c0ef1..000000000000 --- a/include/asm-sparc64/stacktrace.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/stacktrace.h> | ||
diff --git a/include/asm-sparc64/starfire.h b/include/asm-sparc64/starfire.h deleted file mode 100644 index db97daa3bed4..000000000000 --- a/include/asm-sparc64/starfire.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/starfire.h> | ||
diff --git a/include/asm-sparc64/stat.h b/include/asm-sparc64/stat.h deleted file mode 100644 index b108a866256b..000000000000 --- a/include/asm-sparc64/stat.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/stat.h> | ||
diff --git a/include/asm-sparc64/statfs.h b/include/asm-sparc64/statfs.h deleted file mode 100644 index 5503d6a4c67e..000000000000 --- a/include/asm-sparc64/statfs.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/statfs.h> | ||
diff --git a/include/asm-sparc64/string.h b/include/asm-sparc64/string.h deleted file mode 100644 index 5018cd8b6ad0..000000000000 --- a/include/asm-sparc64/string.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/string.h> | ||
diff --git a/include/asm-sparc64/sunbpp.h b/include/asm-sparc64/sunbpp.h deleted file mode 100644 index 9632be290eb5..000000000000 --- a/include/asm-sparc64/sunbpp.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/sunbpp.h> | ||
diff --git a/include/asm-sparc64/syscalls.h b/include/asm-sparc64/syscalls.h deleted file mode 100644 index 3477b16e30ca..000000000000 --- a/include/asm-sparc64/syscalls.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/syscalls.h> | ||
diff --git a/include/asm-sparc64/system.h b/include/asm-sparc64/system.h deleted file mode 100644 index be2603c2e527..000000000000 --- a/include/asm-sparc64/system.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/system.h> | ||
diff --git a/include/asm-sparc64/termbits.h b/include/asm-sparc64/termbits.h deleted file mode 100644 index e03f97592c70..000000000000 --- a/include/asm-sparc64/termbits.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/termbits.h> | ||
diff --git a/include/asm-sparc64/termios.h b/include/asm-sparc64/termios.h deleted file mode 100644 index 940495eb05cc..000000000000 --- a/include/asm-sparc64/termios.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/termios.h> | ||
diff --git a/include/asm-sparc64/thread_info.h b/include/asm-sparc64/thread_info.h deleted file mode 100644 index 92bed7913395..000000000000 --- a/include/asm-sparc64/thread_info.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/thread_info.h> | ||
diff --git a/include/asm-sparc64/timer.h b/include/asm-sparc64/timer.h deleted file mode 100644 index 88026d83cc93..000000000000 --- a/include/asm-sparc64/timer.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/timer.h> | ||
diff --git a/include/asm-sparc64/timex.h b/include/asm-sparc64/timex.h deleted file mode 100644 index 8dd59ee24b48..000000000000 --- a/include/asm-sparc64/timex.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/timex.h> | ||
diff --git a/include/asm-sparc64/tlb.h b/include/asm-sparc64/tlb.h deleted file mode 100644 index ae92fce10936..000000000000 --- a/include/asm-sparc64/tlb.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/tlb.h> | ||
diff --git a/include/asm-sparc64/tlbflush.h b/include/asm-sparc64/tlbflush.h deleted file mode 100644 index a43979a06cd9..000000000000 --- a/include/asm-sparc64/tlbflush.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/tlbflush.h> | ||
diff --git a/include/asm-sparc64/topology.h b/include/asm-sparc64/topology.h deleted file mode 100644 index 46999b60fbba..000000000000 --- a/include/asm-sparc64/topology.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/topology.h> | ||
diff --git a/include/asm-sparc64/tsb.h b/include/asm-sparc64/tsb.h deleted file mode 100644 index 3677a302ea3e..000000000000 --- a/include/asm-sparc64/tsb.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/tsb.h> | ||
diff --git a/include/asm-sparc64/ttable.h b/include/asm-sparc64/ttable.h deleted file mode 100644 index a550f1bf6f9b..000000000000 --- a/include/asm-sparc64/ttable.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/ttable.h> | ||
diff --git a/include/asm-sparc64/types.h b/include/asm-sparc64/types.h deleted file mode 100644 index cfbfad5043eb..000000000000 --- a/include/asm-sparc64/types.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/types.h> | ||
diff --git a/include/asm-sparc64/uaccess.h b/include/asm-sparc64/uaccess.h deleted file mode 100644 index 2872d22844f3..000000000000 --- a/include/asm-sparc64/uaccess.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/uaccess.h> | ||
diff --git a/include/asm-sparc64/uctx.h b/include/asm-sparc64/uctx.h deleted file mode 100644 index 9e1b5794b07f..000000000000 --- a/include/asm-sparc64/uctx.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/uctx.h> | ||
diff --git a/include/asm-sparc64/unaligned.h b/include/asm-sparc64/unaligned.h deleted file mode 100644 index 19fbf9508acf..000000000000 --- a/include/asm-sparc64/unaligned.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/unaligned.h> | ||
diff --git a/include/asm-sparc64/unistd.h b/include/asm-sparc64/unistd.h deleted file mode 100644 index ad86e0b7a455..000000000000 --- a/include/asm-sparc64/unistd.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/unistd.h> | ||
diff --git a/include/asm-sparc64/upa.h b/include/asm-sparc64/upa.h deleted file mode 100644 index aab72930815a..000000000000 --- a/include/asm-sparc64/upa.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/upa.h> | ||
diff --git a/include/asm-sparc64/user.h b/include/asm-sparc64/user.h deleted file mode 100644 index 29fc6e906c29..000000000000 --- a/include/asm-sparc64/user.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/user.h> | ||
diff --git a/include/asm-sparc64/utrap.h b/include/asm-sparc64/utrap.h deleted file mode 100644 index b030a41f1895..000000000000 --- a/include/asm-sparc64/utrap.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/utrap.h> | ||
diff --git a/include/asm-sparc64/vga.h b/include/asm-sparc64/vga.h deleted file mode 100644 index fbf4d58a56f0..000000000000 --- a/include/asm-sparc64/vga.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/vga.h> | ||
diff --git a/include/asm-sparc64/vio.h b/include/asm-sparc64/vio.h deleted file mode 100644 index 299b26ab81a7..000000000000 --- a/include/asm-sparc64/vio.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/vio.h> | ||
diff --git a/include/asm-sparc64/visasm.h b/include/asm-sparc64/visasm.h deleted file mode 100644 index 837a12278f4a..000000000000 --- a/include/asm-sparc64/visasm.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/visasm.h> | ||
diff --git a/include/asm-sparc64/watchdog.h b/include/asm-sparc64/watchdog.h deleted file mode 100644 index b0f2857145f7..000000000000 --- a/include/asm-sparc64/watchdog.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/watchdog.h> | ||
diff --git a/include/asm-sparc64/xor.h b/include/asm-sparc64/xor.h deleted file mode 100644 index ef187cc07ed5..000000000000 --- a/include/asm-sparc64/xor.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-sparc/xor.h> | ||
diff --git a/include/asm-x86/dma-mapping.h b/include/asm-x86/dma-mapping.h index 0eaa9bf6011f..ad9cd6d49bfc 100644 --- a/include/asm-x86/dma-mapping.h +++ b/include/asm-x86/dma-mapping.h | |||
@@ -249,25 +249,5 @@ static inline int dma_get_cache_alignment(void) | |||
249 | 249 | ||
250 | #define dma_is_consistent(d, h) (1) | 250 | #define dma_is_consistent(d, h) (1) |
251 | 251 | ||
252 | #ifdef CONFIG_X86_32 | 252 | #include <asm-generic/dma-coherent.h> |
253 | # define ARCH_HAS_DMA_DECLARE_COHERENT_MEMORY | ||
254 | struct dma_coherent_mem { | ||
255 | void *virt_base; | ||
256 | u32 device_base; | ||
257 | int size; | ||
258 | int flags; | ||
259 | unsigned long *bitmap; | ||
260 | }; | ||
261 | |||
262 | extern int | ||
263 | dma_declare_coherent_memory(struct device *dev, dma_addr_t bus_addr, | ||
264 | dma_addr_t device_addr, size_t size, int flags); | ||
265 | |||
266 | extern void | ||
267 | dma_release_declared_memory(struct device *dev); | ||
268 | |||
269 | extern void * | ||
270 | dma_mark_declared_memory_occupied(struct device *dev, | ||
271 | dma_addr_t device_addr, size_t size); | ||
272 | #endif /* CONFIG_X86_32 */ | ||
273 | #endif | 253 | #endif |
diff --git a/include/linux/buffer_head.h b/include/linux/buffer_head.h index 82aa36c53ea7..50cfe8ceb478 100644 --- a/include/linux/buffer_head.h +++ b/include/linux/buffer_head.h | |||
@@ -205,6 +205,8 @@ void block_invalidatepage(struct page *page, unsigned long offset); | |||
205 | int block_write_full_page(struct page *page, get_block_t *get_block, | 205 | int block_write_full_page(struct page *page, get_block_t *get_block, |
206 | struct writeback_control *wbc); | 206 | struct writeback_control *wbc); |
207 | int block_read_full_page(struct page*, get_block_t*); | 207 | int block_read_full_page(struct page*, get_block_t*); |
208 | int block_is_partially_uptodate(struct page *page, read_descriptor_t *desc, | ||
209 | unsigned long from); | ||
208 | int block_write_begin(struct file *, struct address_space *, | 210 | int block_write_begin(struct file *, struct address_space *, |
209 | loff_t, unsigned, unsigned, | 211 | loff_t, unsigned, unsigned, |
210 | struct page **, void **, get_block_t*); | 212 | struct page **, void **, get_block_t*); |
diff --git a/include/linux/cpumask.h b/include/linux/cpumask.h index 1b5c98e7fef7..96d0509fb8d8 100644 --- a/include/linux/cpumask.h +++ b/include/linux/cpumask.h | |||
@@ -62,15 +62,7 @@ | |||
62 | * int next_cpu_nr(cpu, mask) Next cpu past 'cpu', or nr_cpu_ids | 62 | * int next_cpu_nr(cpu, mask) Next cpu past 'cpu', or nr_cpu_ids |
63 | * | 63 | * |
64 | * cpumask_t cpumask_of_cpu(cpu) Return cpumask with bit 'cpu' set | 64 | * cpumask_t cpumask_of_cpu(cpu) Return cpumask with bit 'cpu' set |
65 | *ifdef CONFIG_HAS_CPUMASK_OF_CPU | 65 | * (can be used as an lvalue) |
66 | * cpumask_of_cpu_ptr_declare(v) Declares cpumask_t *v | ||
67 | * cpumask_of_cpu_ptr_next(v, cpu) Sets v = &cpumask_of_cpu_map[cpu] | ||
68 | * cpumask_of_cpu_ptr(v, cpu) Combines above two operations | ||
69 | *else | ||
70 | * cpumask_of_cpu_ptr_declare(v) Declares cpumask_t _v and *v = &_v | ||
71 | * cpumask_of_cpu_ptr_next(v, cpu) Sets _v = cpumask_of_cpu(cpu) | ||
72 | * cpumask_of_cpu_ptr(v, cpu) Combines above two operations | ||
73 | *endif | ||
74 | * CPU_MASK_ALL Initializer - all bits set | 66 | * CPU_MASK_ALL Initializer - all bits set |
75 | * CPU_MASK_NONE Initializer - no bits set | 67 | * CPU_MASK_NONE Initializer - no bits set |
76 | * unsigned long *cpus_addr(mask) Array of unsigned long's in mask | 68 | * unsigned long *cpus_addr(mask) Array of unsigned long's in mask |
@@ -273,37 +265,30 @@ static inline void __cpus_shift_left(cpumask_t *dstp, | |||
273 | bitmap_shift_left(dstp->bits, srcp->bits, n, nbits); | 265 | bitmap_shift_left(dstp->bits, srcp->bits, n, nbits); |
274 | } | 266 | } |
275 | 267 | ||
268 | /* | ||
269 | * Special-case data structure for "single bit set only" constant CPU masks. | ||
270 | * | ||
271 | * We pre-generate all the 64 (or 32) possible bit positions, with enough | ||
272 | * padding to the left and the right, and return the constant pointer | ||
273 | * appropriately offset. | ||
274 | */ | ||
275 | extern const unsigned long | ||
276 | cpu_bit_bitmap[BITS_PER_LONG+1][BITS_TO_LONGS(NR_CPUS)]; | ||
277 | |||
278 | static inline const cpumask_t *get_cpu_mask(unsigned int cpu) | ||
279 | { | ||
280 | const unsigned long *p = cpu_bit_bitmap[1 + cpu % BITS_PER_LONG]; | ||
281 | p -= cpu / BITS_PER_LONG; | ||
282 | return (const cpumask_t *)p; | ||
283 | } | ||
284 | |||
285 | /* | ||
286 | * In cases where we take the address of the cpumask immediately, | ||
287 | * gcc optimizes it out (it's a constant) and there's no huge stack | ||
288 | * variable created: | ||
289 | */ | ||
290 | #define cpumask_of_cpu(cpu) ({ *get_cpu_mask(cpu); }) | ||
276 | 291 | ||
277 | #ifdef CONFIG_HAVE_CPUMASK_OF_CPU_MAP | ||
278 | extern cpumask_t *cpumask_of_cpu_map; | ||
279 | #define cpumask_of_cpu(cpu) (cpumask_of_cpu_map[cpu]) | ||
280 | #define cpumask_of_cpu_ptr(v, cpu) \ | ||
281 | const cpumask_t *v = &cpumask_of_cpu(cpu) | ||
282 | #define cpumask_of_cpu_ptr_declare(v) \ | ||
283 | const cpumask_t *v | ||
284 | #define cpumask_of_cpu_ptr_next(v, cpu) \ | ||
285 | v = &cpumask_of_cpu(cpu) | ||
286 | #else | ||
287 | #define cpumask_of_cpu(cpu) \ | ||
288 | ({ \ | ||
289 | typeof(_unused_cpumask_arg_) m; \ | ||
290 | if (sizeof(m) == sizeof(unsigned long)) { \ | ||
291 | m.bits[0] = 1UL<<(cpu); \ | ||
292 | } else { \ | ||
293 | cpus_clear(m); \ | ||
294 | cpu_set((cpu), m); \ | ||
295 | } \ | ||
296 | m; \ | ||
297 | }) | ||
298 | #define cpumask_of_cpu_ptr(v, cpu) \ | ||
299 | cpumask_t _##v = cpumask_of_cpu(cpu); \ | ||
300 | const cpumask_t *v = &_##v | ||
301 | #define cpumask_of_cpu_ptr_declare(v) \ | ||
302 | cpumask_t _##v; \ | ||
303 | const cpumask_t *v = &_##v | ||
304 | #define cpumask_of_cpu_ptr_next(v, cpu) \ | ||
305 | _##v = cpumask_of_cpu(cpu) | ||
306 | #endif | ||
307 | 292 | ||
308 | #define CPU_MASK_LAST_WORD BITMAP_LAST_WORD_MASK(NR_CPUS) | 293 | #define CPU_MASK_LAST_WORD BITMAP_LAST_WORD_MASK(NR_CPUS) |
309 | 294 | ||
diff --git a/include/linux/fs.h b/include/linux/fs.h index 8252b045e624..580b513668fe 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h | |||
@@ -443,6 +443,27 @@ static inline size_t iov_iter_count(struct iov_iter *i) | |||
443 | return i->count; | 443 | return i->count; |
444 | } | 444 | } |
445 | 445 | ||
446 | /* | ||
447 | * "descriptor" for what we're up to with a read. | ||
448 | * This allows us to use the same read code yet | ||
449 | * have multiple different users of the data that | ||
450 | * we read from a file. | ||
451 | * | ||
452 | * The simplest case just copies the data to user | ||
453 | * mode. | ||
454 | */ | ||
455 | typedef struct { | ||
456 | size_t written; | ||
457 | size_t count; | ||
458 | union { | ||
459 | char __user *buf; | ||
460 | void *data; | ||
461 | } arg; | ||
462 | int error; | ||
463 | } read_descriptor_t; | ||
464 | |||
465 | typedef int (*read_actor_t)(read_descriptor_t *, struct page *, | ||
466 | unsigned long, unsigned long); | ||
446 | 467 | ||
447 | struct address_space_operations { | 468 | struct address_space_operations { |
448 | int (*writepage)(struct page *page, struct writeback_control *wbc); | 469 | int (*writepage)(struct page *page, struct writeback_control *wbc); |
@@ -484,6 +505,8 @@ struct address_space_operations { | |||
484 | int (*migratepage) (struct address_space *, | 505 | int (*migratepage) (struct address_space *, |
485 | struct page *, struct page *); | 506 | struct page *, struct page *); |
486 | int (*launder_page) (struct page *); | 507 | int (*launder_page) (struct page *); |
508 | int (*is_partially_uptodate) (struct page *, read_descriptor_t *, | ||
509 | unsigned long); | ||
487 | }; | 510 | }; |
488 | 511 | ||
489 | /* | 512 | /* |
@@ -1198,27 +1221,6 @@ struct block_device_operations { | |||
1198 | struct module *owner; | 1221 | struct module *owner; |
1199 | }; | 1222 | }; |
1200 | 1223 | ||
1201 | /* | ||
1202 | * "descriptor" for what we're up to with a read. | ||
1203 | * This allows us to use the same read code yet | ||
1204 | * have multiple different users of the data that | ||
1205 | * we read from a file. | ||
1206 | * | ||
1207 | * The simplest case just copies the data to user | ||
1208 | * mode. | ||
1209 | */ | ||
1210 | typedef struct { | ||
1211 | size_t written; | ||
1212 | size_t count; | ||
1213 | union { | ||
1214 | char __user * buf; | ||
1215 | void *data; | ||
1216 | } arg; | ||
1217 | int error; | ||
1218 | } read_descriptor_t; | ||
1219 | |||
1220 | typedef int (*read_actor_t)(read_descriptor_t *, struct page *, unsigned long, unsigned long); | ||
1221 | |||
1222 | /* These macros are for out of kernel modules to test that | 1224 | /* These macros are for out of kernel modules to test that |
1223 | * the kernel supports the unlocked_ioctl and compat_ioctl | 1225 | * the kernel supports the unlocked_ioctl and compat_ioctl |
1224 | * fields in struct file_operations. */ | 1226 | * fields in struct file_operations. */ |
diff --git a/include/linux/iommu-helper.h b/include/linux/iommu-helper.h index c975caf75385..f8598f583944 100644 --- a/include/linux/iommu-helper.h +++ b/include/linux/iommu-helper.h | |||
@@ -8,3 +8,4 @@ extern unsigned long iommu_area_alloc(unsigned long *map, unsigned long size, | |||
8 | unsigned long align_mask); | 8 | unsigned long align_mask); |
9 | extern void iommu_area_free(unsigned long *map, unsigned long start, | 9 | extern void iommu_area_free(unsigned long *map, unsigned long start, |
10 | unsigned int nr); | 10 | unsigned int nr); |
11 | extern unsigned long iommu_num_pages(unsigned long addr, unsigned long len); | ||
diff --git a/include/linux/maple.h b/include/linux/maple.h index d31e36ebb436..523a286bb477 100644 --- a/include/linux/maple.h +++ b/include/linux/maple.h | |||
@@ -61,8 +61,6 @@ struct maple_device { | |||
61 | 61 | ||
62 | struct maple_driver { | 62 | struct maple_driver { |
63 | unsigned long function; | 63 | unsigned long function; |
64 | int (*connect) (struct maple_device * dev); | ||
65 | void (*disconnect) (struct maple_device * dev); | ||
66 | struct device_driver drv; | 64 | struct device_driver drv; |
67 | }; | 65 | }; |
68 | 66 | ||
diff --git a/include/linux/mfd/core.h b/include/linux/mfd/core.h index bb3dd0545928..49ef857cdb2d 100644 --- a/include/linux/mfd/core.h +++ b/include/linux/mfd/core.h | |||
@@ -1,5 +1,3 @@ | |||
1 | #ifndef MFD_CORE_H | ||
2 | #define MFD_CORE_H | ||
3 | /* | 1 | /* |
4 | * drivers/mfd/mfd-core.h | 2 | * drivers/mfd/mfd-core.h |
5 | * | 3 | * |
@@ -13,6 +11,9 @@ | |||
13 | * | 11 | * |
14 | */ | 12 | */ |
15 | 13 | ||
14 | #ifndef MFD_CORE_H | ||
15 | #define MFD_CORE_H | ||
16 | |||
16 | #include <linux/platform_device.h> | 17 | #include <linux/platform_device.h> |
17 | 18 | ||
18 | /* | 19 | /* |
@@ -28,7 +29,13 @@ struct mfd_cell { | |||
28 | int (*suspend)(struct platform_device *dev); | 29 | int (*suspend)(struct platform_device *dev); |
29 | int (*resume)(struct platform_device *dev); | 30 | int (*resume)(struct platform_device *dev); |
30 | 31 | ||
31 | void *driver_data; /* driver-specific data */ | 32 | /* driver-specific data for MFD-aware "cell" drivers */ |
33 | void *driver_data; | ||
34 | |||
35 | /* platform_data can be used to either pass data to "generic" | ||
36 | driver or as a hook to mfd_cell for the "cell" drivers */ | ||
37 | void *platform_data; | ||
38 | size_t data_size; | ||
32 | 39 | ||
33 | /* | 40 | /* |
34 | * This resources can be specified relatievly to the parent device. | 41 | * This resources can be specified relatievly to the parent device. |
@@ -38,18 +45,11 @@ struct mfd_cell { | |||
38 | const struct resource *resources; | 45 | const struct resource *resources; |
39 | }; | 46 | }; |
40 | 47 | ||
41 | static inline struct mfd_cell * | 48 | extern int mfd_add_devices(struct device *parent, int id, |
42 | mfd_get_cell(struct platform_device *pdev) | 49 | const struct mfd_cell *cells, int n_devs, |
43 | { | 50 | struct resource *mem_base, |
44 | return (struct mfd_cell *)pdev->dev.platform_data; | 51 | int irq_base); |
45 | } | ||
46 | |||
47 | extern int mfd_add_devices( | ||
48 | struct platform_device *parent, | ||
49 | const struct mfd_cell *cells, int n_devs, | ||
50 | struct resource *mem_base, | ||
51 | int irq_base); | ||
52 | 52 | ||
53 | extern void mfd_remove_devices(struct platform_device *parent); | 53 | extern void mfd_remove_devices(struct device *parent); |
54 | 54 | ||
55 | #endif | 55 | #endif |
diff --git a/include/linux/mm.h b/include/linux/mm.h index 6e695eaab4ce..866a3dbe5c75 100644 --- a/include/linux/mm.h +++ b/include/linux/mm.h | |||
@@ -1104,6 +1104,9 @@ extern struct vm_area_struct *copy_vma(struct vm_area_struct **, | |||
1104 | unsigned long addr, unsigned long len, pgoff_t pgoff); | 1104 | unsigned long addr, unsigned long len, pgoff_t pgoff); |
1105 | extern void exit_mmap(struct mm_struct *); | 1105 | extern void exit_mmap(struct mm_struct *); |
1106 | 1106 | ||
1107 | extern int mm_take_all_locks(struct mm_struct *mm); | ||
1108 | extern void mm_drop_all_locks(struct mm_struct *mm); | ||
1109 | |||
1107 | #ifdef CONFIG_PROC_FS | 1110 | #ifdef CONFIG_PROC_FS |
1108 | /* From fs/proc/base.c. callers must _not_ hold the mm's exe_file_lock */ | 1111 | /* From fs/proc/base.c. callers must _not_ hold the mm's exe_file_lock */ |
1109 | extern void added_exe_file_vma(struct mm_struct *mm); | 1112 | extern void added_exe_file_vma(struct mm_struct *mm); |
diff --git a/include/linux/mm_types.h b/include/linux/mm_types.h index 746f975b58ef..386edbe2cb4e 100644 --- a/include/linux/mm_types.h +++ b/include/linux/mm_types.h | |||
@@ -10,6 +10,7 @@ | |||
10 | #include <linux/rbtree.h> | 10 | #include <linux/rbtree.h> |
11 | #include <linux/rwsem.h> | 11 | #include <linux/rwsem.h> |
12 | #include <linux/completion.h> | 12 | #include <linux/completion.h> |
13 | #include <linux/cpumask.h> | ||
13 | #include <asm/page.h> | 14 | #include <asm/page.h> |
14 | #include <asm/mmu.h> | 15 | #include <asm/mmu.h> |
15 | 16 | ||
@@ -253,6 +254,9 @@ struct mm_struct { | |||
253 | struct file *exe_file; | 254 | struct file *exe_file; |
254 | unsigned long num_exe_file_vmas; | 255 | unsigned long num_exe_file_vmas; |
255 | #endif | 256 | #endif |
257 | #ifdef CONFIG_MMU_NOTIFIER | ||
258 | struct mmu_notifier_mm *mmu_notifier_mm; | ||
259 | #endif | ||
256 | }; | 260 | }; |
257 | 261 | ||
258 | #endif /* _LINUX_MM_TYPES_H */ | 262 | #endif /* _LINUX_MM_TYPES_H */ |
diff --git a/include/linux/mmu_notifier.h b/include/linux/mmu_notifier.h new file mode 100644 index 000000000000..b77486d152cd --- /dev/null +++ b/include/linux/mmu_notifier.h | |||
@@ -0,0 +1,279 @@ | |||
1 | #ifndef _LINUX_MMU_NOTIFIER_H | ||
2 | #define _LINUX_MMU_NOTIFIER_H | ||
3 | |||
4 | #include <linux/list.h> | ||
5 | #include <linux/spinlock.h> | ||
6 | #include <linux/mm_types.h> | ||
7 | |||
8 | struct mmu_notifier; | ||
9 | struct mmu_notifier_ops; | ||
10 | |||
11 | #ifdef CONFIG_MMU_NOTIFIER | ||
12 | |||
13 | /* | ||
14 | * The mmu notifier_mm structure is allocated and installed in | ||
15 | * mm->mmu_notifier_mm inside the mm_take_all_locks() protected | ||
16 | * critical section and it's released only when mm_count reaches zero | ||
17 | * in mmdrop(). | ||
18 | */ | ||
19 | struct mmu_notifier_mm { | ||
20 | /* all mmu notifiers registerd in this mm are queued in this list */ | ||
21 | struct hlist_head list; | ||
22 | /* to serialize the list modifications and hlist_unhashed */ | ||
23 | spinlock_t lock; | ||
24 | }; | ||
25 | |||
26 | struct mmu_notifier_ops { | ||
27 | /* | ||
28 | * Called either by mmu_notifier_unregister or when the mm is | ||
29 | * being destroyed by exit_mmap, always before all pages are | ||
30 | * freed. This can run concurrently with other mmu notifier | ||
31 | * methods (the ones invoked outside the mm context) and it | ||
32 | * should tear down all secondary mmu mappings and freeze the | ||
33 | * secondary mmu. If this method isn't implemented you've to | ||
34 | * be sure that nothing could possibly write to the pages | ||
35 | * through the secondary mmu by the time the last thread with | ||
36 | * tsk->mm == mm exits. | ||
37 | * | ||
38 | * As side note: the pages freed after ->release returns could | ||
39 | * be immediately reallocated by the gart at an alias physical | ||
40 | * address with a different cache model, so if ->release isn't | ||
41 | * implemented because all _software_ driven memory accesses | ||
42 | * through the secondary mmu are terminated by the time the | ||
43 | * last thread of this mm quits, you've also to be sure that | ||
44 | * speculative _hardware_ operations can't allocate dirty | ||
45 | * cachelines in the cpu that could not be snooped and made | ||
46 | * coherent with the other read and write operations happening | ||
47 | * through the gart alias address, so leading to memory | ||
48 | * corruption. | ||
49 | */ | ||
50 | void (*release)(struct mmu_notifier *mn, | ||
51 | struct mm_struct *mm); | ||
52 | |||
53 | /* | ||
54 | * clear_flush_young is called after the VM is | ||
55 | * test-and-clearing the young/accessed bitflag in the | ||
56 | * pte. This way the VM will provide proper aging to the | ||
57 | * accesses to the page through the secondary MMUs and not | ||
58 | * only to the ones through the Linux pte. | ||
59 | */ | ||
60 | int (*clear_flush_young)(struct mmu_notifier *mn, | ||
61 | struct mm_struct *mm, | ||
62 | unsigned long address); | ||
63 | |||
64 | /* | ||
65 | * Before this is invoked any secondary MMU is still ok to | ||
66 | * read/write to the page previously pointed to by the Linux | ||
67 | * pte because the page hasn't been freed yet and it won't be | ||
68 | * freed until this returns. If required set_page_dirty has to | ||
69 | * be called internally to this method. | ||
70 | */ | ||
71 | void (*invalidate_page)(struct mmu_notifier *mn, | ||
72 | struct mm_struct *mm, | ||
73 | unsigned long address); | ||
74 | |||
75 | /* | ||
76 | * invalidate_range_start() and invalidate_range_end() must be | ||
77 | * paired and are called only when the mmap_sem and/or the | ||
78 | * locks protecting the reverse maps are held. The subsystem | ||
79 | * must guarantee that no additional references are taken to | ||
80 | * the pages in the range established between the call to | ||
81 | * invalidate_range_start() and the matching call to | ||
82 | * invalidate_range_end(). | ||
83 | * | ||
84 | * Invalidation of multiple concurrent ranges may be | ||
85 | * optionally permitted by the driver. Either way the | ||
86 | * establishment of sptes is forbidden in the range passed to | ||
87 | * invalidate_range_begin/end for the whole duration of the | ||
88 | * invalidate_range_begin/end critical section. | ||
89 | * | ||
90 | * invalidate_range_start() is called when all pages in the | ||
91 | * range are still mapped and have at least a refcount of one. | ||
92 | * | ||
93 | * invalidate_range_end() is called when all pages in the | ||
94 | * range have been unmapped and the pages have been freed by | ||
95 | * the VM. | ||
96 | * | ||
97 | * The VM will remove the page table entries and potentially | ||
98 | * the page between invalidate_range_start() and | ||
99 | * invalidate_range_end(). If the page must not be freed | ||
100 | * because of pending I/O or other circumstances then the | ||
101 | * invalidate_range_start() callback (or the initial mapping | ||
102 | * by the driver) must make sure that the refcount is kept | ||
103 | * elevated. | ||
104 | * | ||
105 | * If the driver increases the refcount when the pages are | ||
106 | * initially mapped into an address space then either | ||
107 | * invalidate_range_start() or invalidate_range_end() may | ||
108 | * decrease the refcount. If the refcount is decreased on | ||
109 | * invalidate_range_start() then the VM can free pages as page | ||
110 | * table entries are removed. If the refcount is only | ||
111 | * droppped on invalidate_range_end() then the driver itself | ||
112 | * will drop the last refcount but it must take care to flush | ||
113 | * any secondary tlb before doing the final free on the | ||
114 | * page. Pages will no longer be referenced by the linux | ||
115 | * address space but may still be referenced by sptes until | ||
116 | * the last refcount is dropped. | ||
117 | */ | ||
118 | void (*invalidate_range_start)(struct mmu_notifier *mn, | ||
119 | struct mm_struct *mm, | ||
120 | unsigned long start, unsigned long end); | ||
121 | void (*invalidate_range_end)(struct mmu_notifier *mn, | ||
122 | struct mm_struct *mm, | ||
123 | unsigned long start, unsigned long end); | ||
124 | }; | ||
125 | |||
126 | /* | ||
127 | * The notifier chains are protected by mmap_sem and/or the reverse map | ||
128 | * semaphores. Notifier chains are only changed when all reverse maps and | ||
129 | * the mmap_sem locks are taken. | ||
130 | * | ||
131 | * Therefore notifier chains can only be traversed when either | ||
132 | * | ||
133 | * 1. mmap_sem is held. | ||
134 | * 2. One of the reverse map locks is held (i_mmap_lock or anon_vma->lock). | ||
135 | * 3. No other concurrent thread can access the list (release) | ||
136 | */ | ||
137 | struct mmu_notifier { | ||
138 | struct hlist_node hlist; | ||
139 | const struct mmu_notifier_ops *ops; | ||
140 | }; | ||
141 | |||
142 | static inline int mm_has_notifiers(struct mm_struct *mm) | ||
143 | { | ||
144 | return unlikely(mm->mmu_notifier_mm); | ||
145 | } | ||
146 | |||
147 | extern int mmu_notifier_register(struct mmu_notifier *mn, | ||
148 | struct mm_struct *mm); | ||
149 | extern int __mmu_notifier_register(struct mmu_notifier *mn, | ||
150 | struct mm_struct *mm); | ||
151 | extern void mmu_notifier_unregister(struct mmu_notifier *mn, | ||
152 | struct mm_struct *mm); | ||
153 | extern void __mmu_notifier_mm_destroy(struct mm_struct *mm); | ||
154 | extern void __mmu_notifier_release(struct mm_struct *mm); | ||
155 | extern int __mmu_notifier_clear_flush_young(struct mm_struct *mm, | ||
156 | unsigned long address); | ||
157 | extern void __mmu_notifier_invalidate_page(struct mm_struct *mm, | ||
158 | unsigned long address); | ||
159 | extern void __mmu_notifier_invalidate_range_start(struct mm_struct *mm, | ||
160 | unsigned long start, unsigned long end); | ||
161 | extern void __mmu_notifier_invalidate_range_end(struct mm_struct *mm, | ||
162 | unsigned long start, unsigned long end); | ||
163 | |||
164 | static inline void mmu_notifier_release(struct mm_struct *mm) | ||
165 | { | ||
166 | if (mm_has_notifiers(mm)) | ||
167 | __mmu_notifier_release(mm); | ||
168 | } | ||
169 | |||
170 | static inline int mmu_notifier_clear_flush_young(struct mm_struct *mm, | ||
171 | unsigned long address) | ||
172 | { | ||
173 | if (mm_has_notifiers(mm)) | ||
174 | return __mmu_notifier_clear_flush_young(mm, address); | ||
175 | return 0; | ||
176 | } | ||
177 | |||
178 | static inline void mmu_notifier_invalidate_page(struct mm_struct *mm, | ||
179 | unsigned long address) | ||
180 | { | ||
181 | if (mm_has_notifiers(mm)) | ||
182 | __mmu_notifier_invalidate_page(mm, address); | ||
183 | } | ||
184 | |||
185 | static inline void mmu_notifier_invalidate_range_start(struct mm_struct *mm, | ||
186 | unsigned long start, unsigned long end) | ||
187 | { | ||
188 | if (mm_has_notifiers(mm)) | ||
189 | __mmu_notifier_invalidate_range_start(mm, start, end); | ||
190 | } | ||
191 | |||
192 | static inline void mmu_notifier_invalidate_range_end(struct mm_struct *mm, | ||
193 | unsigned long start, unsigned long end) | ||
194 | { | ||
195 | if (mm_has_notifiers(mm)) | ||
196 | __mmu_notifier_invalidate_range_end(mm, start, end); | ||
197 | } | ||
198 | |||
199 | static inline void mmu_notifier_mm_init(struct mm_struct *mm) | ||
200 | { | ||
201 | mm->mmu_notifier_mm = NULL; | ||
202 | } | ||
203 | |||
204 | static inline void mmu_notifier_mm_destroy(struct mm_struct *mm) | ||
205 | { | ||
206 | if (mm_has_notifiers(mm)) | ||
207 | __mmu_notifier_mm_destroy(mm); | ||
208 | } | ||
209 | |||
210 | /* | ||
211 | * These two macros will sometime replace ptep_clear_flush. | ||
212 | * ptep_clear_flush is impleemnted as macro itself, so this also is | ||
213 | * implemented as a macro until ptep_clear_flush will converted to an | ||
214 | * inline function, to diminish the risk of compilation failure. The | ||
215 | * invalidate_page method over time can be moved outside the PT lock | ||
216 | * and these two macros can be later removed. | ||
217 | */ | ||
218 | #define ptep_clear_flush_notify(__vma, __address, __ptep) \ | ||
219 | ({ \ | ||
220 | pte_t __pte; \ | ||
221 | struct vm_area_struct *___vma = __vma; \ | ||
222 | unsigned long ___address = __address; \ | ||
223 | __pte = ptep_clear_flush(___vma, ___address, __ptep); \ | ||
224 | mmu_notifier_invalidate_page(___vma->vm_mm, ___address); \ | ||
225 | __pte; \ | ||
226 | }) | ||
227 | |||
228 | #define ptep_clear_flush_young_notify(__vma, __address, __ptep) \ | ||
229 | ({ \ | ||
230 | int __young; \ | ||
231 | struct vm_area_struct *___vma = __vma; \ | ||
232 | unsigned long ___address = __address; \ | ||
233 | __young = ptep_clear_flush_young(___vma, ___address, __ptep); \ | ||
234 | __young |= mmu_notifier_clear_flush_young(___vma->vm_mm, \ | ||
235 | ___address); \ | ||
236 | __young; \ | ||
237 | }) | ||
238 | |||
239 | #else /* CONFIG_MMU_NOTIFIER */ | ||
240 | |||
241 | static inline void mmu_notifier_release(struct mm_struct *mm) | ||
242 | { | ||
243 | } | ||
244 | |||
245 | static inline int mmu_notifier_clear_flush_young(struct mm_struct *mm, | ||
246 | unsigned long address) | ||
247 | { | ||
248 | return 0; | ||
249 | } | ||
250 | |||
251 | static inline void mmu_notifier_invalidate_page(struct mm_struct *mm, | ||
252 | unsigned long address) | ||
253 | { | ||
254 | } | ||
255 | |||
256 | static inline void mmu_notifier_invalidate_range_start(struct mm_struct *mm, | ||
257 | unsigned long start, unsigned long end) | ||
258 | { | ||
259 | } | ||
260 | |||
261 | static inline void mmu_notifier_invalidate_range_end(struct mm_struct *mm, | ||
262 | unsigned long start, unsigned long end) | ||
263 | { | ||
264 | } | ||
265 | |||
266 | static inline void mmu_notifier_mm_init(struct mm_struct *mm) | ||
267 | { | ||
268 | } | ||
269 | |||
270 | static inline void mmu_notifier_mm_destroy(struct mm_struct *mm) | ||
271 | { | ||
272 | } | ||
273 | |||
274 | #define ptep_clear_flush_young_notify ptep_clear_flush_young | ||
275 | #define ptep_clear_flush_notify ptep_clear_flush | ||
276 | |||
277 | #endif /* CONFIG_MMU_NOTIFIER */ | ||
278 | |||
279 | #endif /* _LINUX_MMU_NOTIFIER_H */ | ||
diff --git a/include/linux/of.h b/include/linux/of.h index 59a61bdc98b6..79886ade070f 100644 --- a/include/linux/of.h +++ b/include/linux/of.h | |||
@@ -70,5 +70,6 @@ extern int of_n_addr_cells(struct device_node *np); | |||
70 | extern int of_n_size_cells(struct device_node *np); | 70 | extern int of_n_size_cells(struct device_node *np); |
71 | extern const struct of_device_id *of_match_node( | 71 | extern const struct of_device_id *of_match_node( |
72 | const struct of_device_id *matches, const struct device_node *node); | 72 | const struct of_device_id *matches, const struct device_node *node); |
73 | extern int of_modalias_node(struct device_node *node, char *modalias, int len); | ||
73 | 74 | ||
74 | #endif /* _LINUX_OF_H */ | 75 | #endif /* _LINUX_OF_H */ |
diff --git a/include/linux/of_spi.h b/include/linux/of_spi.h new file mode 100644 index 000000000000..5f71ee8c0868 --- /dev/null +++ b/include/linux/of_spi.h | |||
@@ -0,0 +1,18 @@ | |||
1 | /* | ||
2 | * OpenFirmware SPI support routines | ||
3 | * Copyright (C) 2008 Secret Lab Technologies Ltd. | ||
4 | * | ||
5 | * Support routines for deriving SPI device attachments from the device | ||
6 | * tree. | ||
7 | */ | ||
8 | |||
9 | #ifndef __LINUX_OF_SPI_H | ||
10 | #define __LINUX_OF_SPI_H | ||
11 | |||
12 | #include <linux/of.h> | ||
13 | #include <linux/spi/spi.h> | ||
14 | |||
15 | extern void of_register_spi_devices(struct spi_master *master, | ||
16 | struct device_node *np); | ||
17 | |||
18 | #endif /* __LINUX_OF_SPI */ | ||
diff --git a/include/linux/pagemap.h b/include/linux/pagemap.h index a81d81890422..a39b38ccdc97 100644 --- a/include/linux/pagemap.h +++ b/include/linux/pagemap.h | |||
@@ -20,6 +20,7 @@ | |||
20 | */ | 20 | */ |
21 | #define AS_EIO (__GFP_BITS_SHIFT + 0) /* IO error on async write */ | 21 | #define AS_EIO (__GFP_BITS_SHIFT + 0) /* IO error on async write */ |
22 | #define AS_ENOSPC (__GFP_BITS_SHIFT + 1) /* ENOSPC on async write */ | 22 | #define AS_ENOSPC (__GFP_BITS_SHIFT + 1) /* ENOSPC on async write */ |
23 | #define AS_MM_ALL_LOCKS (__GFP_BITS_SHIFT + 2) /* under mm_take_all_locks() */ | ||
23 | 24 | ||
24 | static inline void mapping_set_error(struct address_space *mapping, int error) | 25 | static inline void mapping_set_error(struct address_space *mapping, int error) |
25 | { | 26 | { |
diff --git a/include/linux/pci-aspm.h b/include/linux/pci-aspm.h index a1a1e618e996..91ba0b338b47 100644 --- a/include/linux/pci-aspm.h +++ b/include/linux/pci-aspm.h | |||
@@ -27,6 +27,7 @@ extern void pcie_aspm_init_link_state(struct pci_dev *pdev); | |||
27 | extern void pcie_aspm_exit_link_state(struct pci_dev *pdev); | 27 | extern void pcie_aspm_exit_link_state(struct pci_dev *pdev); |
28 | extern void pcie_aspm_pm_state_change(struct pci_dev *pdev); | 28 | extern void pcie_aspm_pm_state_change(struct pci_dev *pdev); |
29 | extern void pci_disable_link_state(struct pci_dev *pdev, int state); | 29 | extern void pci_disable_link_state(struct pci_dev *pdev, int state); |
30 | extern void pcie_no_aspm(void); | ||
30 | #else | 31 | #else |
31 | static inline void pcie_aspm_init_link_state(struct pci_dev *pdev) | 32 | static inline void pcie_aspm_init_link_state(struct pci_dev *pdev) |
32 | { | 33 | { |
@@ -40,6 +41,10 @@ static inline void pcie_aspm_pm_state_change(struct pci_dev *pdev) | |||
40 | static inline void pci_disable_link_state(struct pci_dev *pdev, int state) | 41 | static inline void pci_disable_link_state(struct pci_dev *pdev, int state) |
41 | { | 42 | { |
42 | } | 43 | } |
44 | |||
45 | static inline void pcie_no_aspm(void) | ||
46 | { | ||
47 | } | ||
43 | #endif | 48 | #endif |
44 | 49 | ||
45 | #ifdef CONFIG_PCIEASPM_DEBUG /* this depends on CONFIG_PCIEASPM */ | 50 | #ifdef CONFIG_PCIEASPM_DEBUG /* this depends on CONFIG_PCIEASPM */ |
diff --git a/include/linux/pci.h b/include/linux/pci.h index 1d296d31abe0..825be3878f68 100644 --- a/include/linux/pci.h +++ b/include/linux/pci.h | |||
@@ -124,6 +124,8 @@ enum pci_dev_flags { | |||
124 | * generation too. | 124 | * generation too. |
125 | */ | 125 | */ |
126 | PCI_DEV_FLAGS_MSI_INTX_DISABLE_BUG = (__force pci_dev_flags_t) 1, | 126 | PCI_DEV_FLAGS_MSI_INTX_DISABLE_BUG = (__force pci_dev_flags_t) 1, |
127 | /* Device configuration is irrevocably lost if disabled into D3 */ | ||
128 | PCI_DEV_FLAGS_NO_D3 = (__force pci_dev_flags_t) 2, | ||
127 | }; | 129 | }; |
128 | 130 | ||
129 | typedef unsigned short __bitwise pci_bus_flags_t; | 131 | typedef unsigned short __bitwise pci_bus_flags_t; |
diff --git a/include/linux/pci_regs.h b/include/linux/pci_regs.h index 19958b929905..450684f7eaac 100644 --- a/include/linux/pci_regs.h +++ b/include/linux/pci_regs.h | |||
@@ -374,6 +374,7 @@ | |||
374 | #define PCI_EXP_DEVCAP_ATN_BUT 0x1000 /* Attention Button Present */ | 374 | #define PCI_EXP_DEVCAP_ATN_BUT 0x1000 /* Attention Button Present */ |
375 | #define PCI_EXP_DEVCAP_ATN_IND 0x2000 /* Attention Indicator Present */ | 375 | #define PCI_EXP_DEVCAP_ATN_IND 0x2000 /* Attention Indicator Present */ |
376 | #define PCI_EXP_DEVCAP_PWR_IND 0x4000 /* Power Indicator Present */ | 376 | #define PCI_EXP_DEVCAP_PWR_IND 0x4000 /* Power Indicator Present */ |
377 | #define PCI_EXP_DEVCAP_RBER 0x8000 /* Role-Based Error Reporting */ | ||
377 | #define PCI_EXP_DEVCAP_PWR_VAL 0x3fc0000 /* Slot Power Limit Value */ | 378 | #define PCI_EXP_DEVCAP_PWR_VAL 0x3fc0000 /* Slot Power Limit Value */ |
378 | #define PCI_EXP_DEVCAP_PWR_SCL 0xc000000 /* Slot Power Limit Scale */ | 379 | #define PCI_EXP_DEVCAP_PWR_SCL 0xc000000 /* Slot Power Limit Scale */ |
379 | #define PCI_EXP_DEVCTL 8 /* Device Control */ | 380 | #define PCI_EXP_DEVCTL 8 /* Device Control */ |
diff --git a/include/linux/rculist.h b/include/linux/rculist.h index b0f39be08b6c..eb4443c7e05b 100644 --- a/include/linux/rculist.h +++ b/include/linux/rculist.h | |||
@@ -98,6 +98,34 @@ static inline void list_del_rcu(struct list_head *entry) | |||
98 | } | 98 | } |
99 | 99 | ||
100 | /** | 100 | /** |
101 | * hlist_del_init_rcu - deletes entry from hash list with re-initialization | ||
102 | * @n: the element to delete from the hash list. | ||
103 | * | ||
104 | * Note: list_unhashed() on the node return true after this. It is | ||
105 | * useful for RCU based read lockfree traversal if the writer side | ||
106 | * must know if the list entry is still hashed or already unhashed. | ||
107 | * | ||
108 | * In particular, it means that we can not poison the forward pointers | ||
109 | * that may still be used for walking the hash list and we can only | ||
110 | * zero the pprev pointer so list_unhashed() will return true after | ||
111 | * this. | ||
112 | * | ||
113 | * The caller must take whatever precautions are necessary (such as | ||
114 | * holding appropriate locks) to avoid racing with another | ||
115 | * list-mutation primitive, such as hlist_add_head_rcu() or | ||
116 | * hlist_del_rcu(), running on this same list. However, it is | ||
117 | * perfectly legal to run concurrently with the _rcu list-traversal | ||
118 | * primitives, such as hlist_for_each_entry_rcu(). | ||
119 | */ | ||
120 | static inline void hlist_del_init_rcu(struct hlist_node *n) | ||
121 | { | ||
122 | if (!hlist_unhashed(n)) { | ||
123 | __hlist_del(n); | ||
124 | n->pprev = NULL; | ||
125 | } | ||
126 | } | ||
127 | |||
128 | /** | ||
101 | * list_replace_rcu - replace old entry by new one | 129 | * list_replace_rcu - replace old entry by new one |
102 | * @old : the element to be replaced | 130 | * @old : the element to be replaced |
103 | * @new : the new element to insert | 131 | * @new : the new element to insert |
diff --git a/include/linux/rmap.h b/include/linux/rmap.h index 1383692ac5bd..69407f85e10b 100644 --- a/include/linux/rmap.h +++ b/include/linux/rmap.h | |||
@@ -26,6 +26,14 @@ | |||
26 | */ | 26 | */ |
27 | struct anon_vma { | 27 | struct anon_vma { |
28 | spinlock_t lock; /* Serialize access to vma list */ | 28 | spinlock_t lock; /* Serialize access to vma list */ |
29 | /* | ||
30 | * NOTE: the LSB of the head.next is set by | ||
31 | * mm_take_all_locks() _after_ taking the above lock. So the | ||
32 | * head must only be read/written after taking the above lock | ||
33 | * to be sure to see a valid next pointer. The LSB bit itself | ||
34 | * is serialized by a system wide lock only visible to | ||
35 | * mm_take_all_locks() (mm_all_locks_mutex). | ||
36 | */ | ||
29 | struct list_head head; /* List of private "related" vmas */ | 37 | struct list_head head; /* List of private "related" vmas */ |
30 | }; | 38 | }; |
31 | 39 | ||
diff --git a/include/linux/serio.h b/include/linux/serio.h index e72716cca577..25641d9e0ea8 100644 --- a/include/linux/serio.h +++ b/include/linux/serio.h | |||
@@ -87,11 +87,10 @@ void serio_unregister_port(struct serio *serio); | |||
87 | void serio_unregister_child_port(struct serio *serio); | 87 | void serio_unregister_child_port(struct serio *serio); |
88 | 88 | ||
89 | int __serio_register_driver(struct serio_driver *drv, struct module *owner, const char *mod_name); | 89 | int __serio_register_driver(struct serio_driver *drv, struct module *owner, const char *mod_name); |
90 | static inline int serio_register_driver(struct serio_driver *drv) | 90 | static inline int __must_check serio_register_driver(struct serio_driver *drv) |
91 | { | 91 | { |
92 | return __serio_register_driver(drv, THIS_MODULE, KBUILD_MODNAME); | 92 | return __serio_register_driver(drv, THIS_MODULE, KBUILD_MODNAME); |
93 | } | 93 | } |
94 | int serio_register_driver(struct serio_driver *drv); | ||
95 | void serio_unregister_driver(struct serio_driver *drv); | 94 | void serio_unregister_driver(struct serio_driver *drv); |
96 | 95 | ||
97 | static inline int serio_write(struct serio *serio, unsigned char data) | 96 | static inline int serio_write(struct serio *serio, unsigned char data) |
diff --git a/include/linux/spi/spi.h b/include/linux/spi/spi.h index a9cc29d46653..4be01bb44377 100644 --- a/include/linux/spi/spi.h +++ b/include/linux/spi/spi.h | |||
@@ -778,8 +778,20 @@ spi_register_board_info(struct spi_board_info const *info, unsigned n) | |||
778 | * use spi_new_device() to describe each device. You can also call | 778 | * use spi_new_device() to describe each device. You can also call |
779 | * spi_unregister_device() to start making that device vanish, but | 779 | * spi_unregister_device() to start making that device vanish, but |
780 | * normally that would be handled by spi_unregister_master(). | 780 | * normally that would be handled by spi_unregister_master(). |
781 | * | ||
782 | * You can also use spi_alloc_device() and spi_add_device() to use a two | ||
783 | * stage registration sequence for each spi_device. This gives the caller | ||
784 | * some more control over the spi_device structure before it is registered, | ||
785 | * but requires that caller to initialize fields that would otherwise | ||
786 | * be defined using the board info. | ||
781 | */ | 787 | */ |
782 | extern struct spi_device * | 788 | extern struct spi_device * |
789 | spi_alloc_device(struct spi_master *master); | ||
790 | |||
791 | extern int | ||
792 | spi_add_device(struct spi_device *spi); | ||
793 | |||
794 | extern struct spi_device * | ||
783 | spi_new_device(struct spi_master *, struct spi_board_info *); | 795 | spi_new_device(struct spi_master *, struct spi_board_info *); |
784 | 796 | ||
785 | static inline void | 797 | static inline void |
diff --git a/include/linux/stop_machine.h b/include/linux/stop_machine.h index 5bfc553bdb21..f1cb0ba6d715 100644 --- a/include/linux/stop_machine.h +++ b/include/linux/stop_machine.h | |||
@@ -5,41 +5,43 @@ | |||
5 | (and more). So the "read" side to such a lock is anything which | 5 | (and more). So the "read" side to such a lock is anything which |
6 | diables preeempt. */ | 6 | diables preeempt. */ |
7 | #include <linux/cpu.h> | 7 | #include <linux/cpu.h> |
8 | #include <linux/cpumask.h> | ||
8 | #include <asm/system.h> | 9 | #include <asm/system.h> |
9 | 10 | ||
10 | #if defined(CONFIG_STOP_MACHINE) && defined(CONFIG_SMP) | 11 | #if defined(CONFIG_STOP_MACHINE) && defined(CONFIG_SMP) |
12 | |||
13 | /* Deprecated, but useful for transition. */ | ||
14 | #define ALL_CPUS ~0U | ||
15 | |||
11 | /** | 16 | /** |
12 | * stop_machine_run: freeze the machine on all CPUs and run this function | 17 | * stop_machine: freeze the machine on all CPUs and run this function |
13 | * @fn: the function to run | 18 | * @fn: the function to run |
14 | * @data: the data ptr for the @fn() | 19 | * @data: the data ptr for the @fn() |
15 | * @cpu: the cpu to run @fn() on (or any, if @cpu == NR_CPUS. | 20 | * @cpus: the cpus to run the @fn() on (NULL = any online cpu) |
16 | * | 21 | * |
17 | * Description: This causes a thread to be scheduled on every other cpu, | 22 | * Description: This causes a thread to be scheduled on every cpu, |
18 | * each of which disables interrupts, and finally interrupts are disabled | 23 | * each of which disables interrupts. The result is that noone is |
19 | * on the current CPU. The result is that noone is holding a spinlock | 24 | * holding a spinlock or inside any other preempt-disabled region when |
20 | * or inside any other preempt-disabled region when @fn() runs. | 25 | * @fn() runs. |
21 | * | 26 | * |
22 | * This can be thought of as a very heavy write lock, equivalent to | 27 | * This can be thought of as a very heavy write lock, equivalent to |
23 | * grabbing every spinlock in the kernel. */ | 28 | * grabbing every spinlock in the kernel. */ |
24 | int stop_machine_run(int (*fn)(void *), void *data, unsigned int cpu); | 29 | int stop_machine(int (*fn)(void *), void *data, const cpumask_t *cpus); |
25 | 30 | ||
26 | /** | 31 | /** |
27 | * __stop_machine_run: freeze the machine on all CPUs and run this function | 32 | * __stop_machine: freeze the machine on all CPUs and run this function |
28 | * @fn: the function to run | 33 | * @fn: the function to run |
29 | * @data: the data ptr for the @fn | 34 | * @data: the data ptr for the @fn |
30 | * @cpu: the cpu to run @fn on (or any, if @cpu == NR_CPUS. | 35 | * @cpus: the cpus to run the @fn() on (NULL = any online cpu) |
31 | * | 36 | * |
32 | * Description: This is a special version of the above, which returns the | 37 | * Description: This is a special version of the above, which assumes cpus |
33 | * thread which has run @fn(): kthread_stop will return the return value | 38 | * won't come or go while it's being called. Used by hotplug cpu. |
34 | * of @fn(). Used by hotplug cpu. | ||
35 | */ | 39 | */ |
36 | struct task_struct *__stop_machine_run(int (*fn)(void *), void *data, | 40 | int __stop_machine(int (*fn)(void *), void *data, const cpumask_t *cpus); |
37 | unsigned int cpu); | ||
38 | |||
39 | #else | 41 | #else |
40 | 42 | ||
41 | static inline int stop_machine_run(int (*fn)(void *), void *data, | 43 | static inline int stop_machine(int (*fn)(void *), void *data, |
42 | unsigned int cpu) | 44 | const cpumask_t *cpus) |
43 | { | 45 | { |
44 | int ret; | 46 | int ret; |
45 | local_irq_disable(); | 47 | local_irq_disable(); |
@@ -48,4 +50,18 @@ static inline int stop_machine_run(int (*fn)(void *), void *data, | |||
48 | return ret; | 50 | return ret; |
49 | } | 51 | } |
50 | #endif /* CONFIG_SMP */ | 52 | #endif /* CONFIG_SMP */ |
53 | |||
54 | static inline int __deprecated stop_machine_run(int (*fn)(void *), void *data, | ||
55 | unsigned int cpu) | ||
56 | { | ||
57 | /* If they don't care which cpu fn runs on, just pick one. */ | ||
58 | if (cpu == NR_CPUS) | ||
59 | return stop_machine(fn, data, NULL); | ||
60 | else if (cpu == ~0U) | ||
61 | return stop_machine(fn, data, &cpu_possible_map); | ||
62 | else { | ||
63 | cpumask_t cpus = cpumask_of_cpu(cpu); | ||
64 | return stop_machine(fn, data, &cpus); | ||
65 | } | ||
66 | } | ||
51 | #endif /* _LINUX_STOP_MACHINE */ | 67 | #endif /* _LINUX_STOP_MACHINE */ |
diff --git a/include/linux/videodev.h b/include/linux/videodev.h index 9385a566aed8..15a653d41132 100644 --- a/include/linux/videodev.h +++ b/include/linux/videodev.h | |||
@@ -17,6 +17,21 @@ | |||
17 | 17 | ||
18 | #if defined(CONFIG_VIDEO_V4L1_COMPAT) || !defined (__KERNEL__) | 18 | #if defined(CONFIG_VIDEO_V4L1_COMPAT) || !defined (__KERNEL__) |
19 | 19 | ||
20 | #define VID_TYPE_CAPTURE 1 /* Can capture */ | ||
21 | #define VID_TYPE_TUNER 2 /* Can tune */ | ||
22 | #define VID_TYPE_TELETEXT 4 /* Does teletext */ | ||
23 | #define VID_TYPE_OVERLAY 8 /* Overlay onto frame buffer */ | ||
24 | #define VID_TYPE_CHROMAKEY 16 /* Overlay by chromakey */ | ||
25 | #define VID_TYPE_CLIPPING 32 /* Can clip */ | ||
26 | #define VID_TYPE_FRAMERAM 64 /* Uses the frame buffer memory */ | ||
27 | #define VID_TYPE_SCALES 128 /* Scalable */ | ||
28 | #define VID_TYPE_MONOCHROME 256 /* Monochrome only */ | ||
29 | #define VID_TYPE_SUBCAPTURE 512 /* Can capture subareas of the image */ | ||
30 | #define VID_TYPE_MPEG_DECODER 1024 /* Can decode MPEG streams */ | ||
31 | #define VID_TYPE_MPEG_ENCODER 2048 /* Can encode MPEG streams */ | ||
32 | #define VID_TYPE_MJPEG_DECODER 4096 /* Can decode MJPEG streams */ | ||
33 | #define VID_TYPE_MJPEG_ENCODER 8192 /* Can encode MJPEG streams */ | ||
34 | |||
20 | struct video_capability | 35 | struct video_capability |
21 | { | 36 | { |
22 | char name[32]; | 37 | char name[32]; |
diff --git a/include/linux/videodev2.h b/include/linux/videodev2.h index 2e66a95e8d32..e466bd54a50e 100644 --- a/include/linux/videodev2.h +++ b/include/linux/videodev2.h | |||
@@ -71,6 +71,11 @@ | |||
71 | */ | 71 | */ |
72 | #define VIDEO_MAX_FRAME 32 | 72 | #define VIDEO_MAX_FRAME 32 |
73 | 73 | ||
74 | #ifndef __KERNEL__ | ||
75 | |||
76 | /* These defines are V4L1 specific and should not be used with the V4L2 API! | ||
77 | They will be removed from this header in the future. */ | ||
78 | |||
74 | #define VID_TYPE_CAPTURE 1 /* Can capture */ | 79 | #define VID_TYPE_CAPTURE 1 /* Can capture */ |
75 | #define VID_TYPE_TUNER 2 /* Can tune */ | 80 | #define VID_TYPE_TUNER 2 /* Can tune */ |
76 | #define VID_TYPE_TELETEXT 4 /* Does teletext */ | 81 | #define VID_TYPE_TELETEXT 4 /* Does teletext */ |
@@ -85,14 +90,15 @@ | |||
85 | #define VID_TYPE_MPEG_ENCODER 2048 /* Can encode MPEG streams */ | 90 | #define VID_TYPE_MPEG_ENCODER 2048 /* Can encode MPEG streams */ |
86 | #define VID_TYPE_MJPEG_DECODER 4096 /* Can decode MJPEG streams */ | 91 | #define VID_TYPE_MJPEG_DECODER 4096 /* Can decode MJPEG streams */ |
87 | #define VID_TYPE_MJPEG_ENCODER 8192 /* Can encode MJPEG streams */ | 92 | #define VID_TYPE_MJPEG_ENCODER 8192 /* Can encode MJPEG streams */ |
93 | #endif | ||
88 | 94 | ||
89 | /* | 95 | /* |
90 | * M I S C E L L A N E O U S | 96 | * M I S C E L L A N E O U S |
91 | */ | 97 | */ |
92 | 98 | ||
93 | /* Four-character-code (FOURCC) */ | 99 | /* Four-character-code (FOURCC) */ |
94 | #define v4l2_fourcc(a,b,c,d)\ | 100 | #define v4l2_fourcc(a, b, c, d)\ |
95 | (((__u32)(a)<<0)|((__u32)(b)<<8)|((__u32)(c)<<16)|((__u32)(d)<<24)) | 101 | ((__u32)(a) | ((__u32)(b) << 8) | ((__u32)(c) << 16) | ((__u32)(d) << 24)) |
96 | 102 | ||
97 | /* | 103 | /* |
98 | * E N U M S | 104 | * E N U M S |
@@ -226,8 +232,7 @@ struct v4l2_fract { | |||
226 | /* | 232 | /* |
227 | * D R I V E R C A P A B I L I T I E S | 233 | * D R I V E R C A P A B I L I T I E S |
228 | */ | 234 | */ |
229 | struct v4l2_capability | 235 | struct v4l2_capability { |
230 | { | ||
231 | __u8 driver[16]; /* i.e. "bttv" */ | 236 | __u8 driver[16]; /* i.e. "bttv" */ |
232 | __u8 card[32]; /* i.e. "Hauppauge WinTV" */ | 237 | __u8 card[32]; /* i.e. "Hauppauge WinTV" */ |
233 | __u8 bus_info[32]; /* "PCI:" + pci_name(pci_dev) */ | 238 | __u8 bus_info[32]; /* "PCI:" + pci_name(pci_dev) */ |
@@ -259,8 +264,7 @@ struct v4l2_capability | |||
259 | /* | 264 | /* |
260 | * V I D E O I M A G E F O R M A T | 265 | * V I D E O I M A G E F O R M A T |
261 | */ | 266 | */ |
262 | struct v4l2_pix_format | 267 | struct v4l2_pix_format { |
263 | { | ||
264 | __u32 width; | 268 | __u32 width; |
265 | __u32 height; | 269 | __u32 height; |
266 | __u32 pixelformat; | 270 | __u32 pixelformat; |
@@ -272,68 +276,69 @@ struct v4l2_pix_format | |||
272 | }; | 276 | }; |
273 | 277 | ||
274 | /* Pixel format FOURCC depth Description */ | 278 | /* Pixel format FOURCC depth Description */ |
275 | #define V4L2_PIX_FMT_RGB332 v4l2_fourcc('R','G','B','1') /* 8 RGB-3-3-2 */ | 279 | #define V4L2_PIX_FMT_RGB332 v4l2_fourcc('R', 'G', 'B', '1') /* 8 RGB-3-3-2 */ |
276 | #define V4L2_PIX_FMT_RGB444 v4l2_fourcc('R','4','4','4') /* 16 xxxxrrrr ggggbbbb */ | 280 | #define V4L2_PIX_FMT_RGB444 v4l2_fourcc('R', '4', '4', '4') /* 16 xxxxrrrr ggggbbbb */ |
277 | #define V4L2_PIX_FMT_RGB555 v4l2_fourcc('R','G','B','O') /* 16 RGB-5-5-5 */ | 281 | #define V4L2_PIX_FMT_RGB555 v4l2_fourcc('R', 'G', 'B', 'O') /* 16 RGB-5-5-5 */ |
278 | #define V4L2_PIX_FMT_RGB565 v4l2_fourcc('R','G','B','P') /* 16 RGB-5-6-5 */ | 282 | #define V4L2_PIX_FMT_RGB565 v4l2_fourcc('R', 'G', 'B', 'P') /* 16 RGB-5-6-5 */ |
279 | #define V4L2_PIX_FMT_RGB555X v4l2_fourcc('R','G','B','Q') /* 16 RGB-5-5-5 BE */ | 283 | #define V4L2_PIX_FMT_RGB555X v4l2_fourcc('R', 'G', 'B', 'Q') /* 16 RGB-5-5-5 BE */ |
280 | #define V4L2_PIX_FMT_RGB565X v4l2_fourcc('R','G','B','R') /* 16 RGB-5-6-5 BE */ | 284 | #define V4L2_PIX_FMT_RGB565X v4l2_fourcc('R', 'G', 'B', 'R') /* 16 RGB-5-6-5 BE */ |
281 | #define V4L2_PIX_FMT_BGR24 v4l2_fourcc('B','G','R','3') /* 24 BGR-8-8-8 */ | 285 | #define V4L2_PIX_FMT_BGR24 v4l2_fourcc('B', 'G', 'R', '3') /* 24 BGR-8-8-8 */ |
282 | #define V4L2_PIX_FMT_RGB24 v4l2_fourcc('R','G','B','3') /* 24 RGB-8-8-8 */ | 286 | #define V4L2_PIX_FMT_RGB24 v4l2_fourcc('R', 'G', 'B', '3') /* 24 RGB-8-8-8 */ |
283 | #define V4L2_PIX_FMT_BGR32 v4l2_fourcc('B','G','R','4') /* 32 BGR-8-8-8-8 */ | 287 | #define V4L2_PIX_FMT_BGR32 v4l2_fourcc('B', 'G', 'R', '4') /* 32 BGR-8-8-8-8 */ |
284 | #define V4L2_PIX_FMT_RGB32 v4l2_fourcc('R','G','B','4') /* 32 RGB-8-8-8-8 */ | 288 | #define V4L2_PIX_FMT_RGB32 v4l2_fourcc('R', 'G', 'B', '4') /* 32 RGB-8-8-8-8 */ |
285 | #define V4L2_PIX_FMT_GREY v4l2_fourcc('G','R','E','Y') /* 8 Greyscale */ | 289 | #define V4L2_PIX_FMT_GREY v4l2_fourcc('G', 'R', 'E', 'Y') /* 8 Greyscale */ |
286 | #define V4L2_PIX_FMT_Y16 v4l2_fourcc('Y','1','6',' ') /* 16 Greyscale */ | 290 | #define V4L2_PIX_FMT_Y16 v4l2_fourcc('Y', '1', '6', ' ') /* 16 Greyscale */ |
287 | #define V4L2_PIX_FMT_PAL8 v4l2_fourcc('P','A','L','8') /* 8 8-bit palette */ | 291 | #define V4L2_PIX_FMT_PAL8 v4l2_fourcc('P', 'A', 'L', '8') /* 8 8-bit palette */ |
288 | #define V4L2_PIX_FMT_YVU410 v4l2_fourcc('Y','V','U','9') /* 9 YVU 4:1:0 */ | 292 | #define V4L2_PIX_FMT_YVU410 v4l2_fourcc('Y', 'V', 'U', '9') /* 9 YVU 4:1:0 */ |
289 | #define V4L2_PIX_FMT_YVU420 v4l2_fourcc('Y','V','1','2') /* 12 YVU 4:2:0 */ | 293 | #define V4L2_PIX_FMT_YVU420 v4l2_fourcc('Y', 'V', '1', '2') /* 12 YVU 4:2:0 */ |
290 | #define V4L2_PIX_FMT_YUYV v4l2_fourcc('Y','U','Y','V') /* 16 YUV 4:2:2 */ | 294 | #define V4L2_PIX_FMT_YUYV v4l2_fourcc('Y', 'U', 'Y', 'V') /* 16 YUV 4:2:2 */ |
291 | #define V4L2_PIX_FMT_UYVY v4l2_fourcc('U','Y','V','Y') /* 16 YUV 4:2:2 */ | 295 | #define V4L2_PIX_FMT_UYVY v4l2_fourcc('U', 'Y', 'V', 'Y') /* 16 YUV 4:2:2 */ |
292 | #define V4L2_PIX_FMT_YUV422P v4l2_fourcc('4','2','2','P') /* 16 YVU422 planar */ | 296 | #define V4L2_PIX_FMT_YUV422P v4l2_fourcc('4', '2', '2', 'P') /* 16 YVU422 planar */ |
293 | #define V4L2_PIX_FMT_YUV411P v4l2_fourcc('4','1','1','P') /* 16 YVU411 planar */ | 297 | #define V4L2_PIX_FMT_YUV411P v4l2_fourcc('4', '1', '1', 'P') /* 16 YVU411 planar */ |
294 | #define V4L2_PIX_FMT_Y41P v4l2_fourcc('Y','4','1','P') /* 12 YUV 4:1:1 */ | 298 | #define V4L2_PIX_FMT_Y41P v4l2_fourcc('Y', '4', '1', 'P') /* 12 YUV 4:1:1 */ |
295 | #define V4L2_PIX_FMT_YUV444 v4l2_fourcc('Y','4','4','4') /* 16 xxxxyyyy uuuuvvvv */ | 299 | #define V4L2_PIX_FMT_YUV444 v4l2_fourcc('Y', '4', '4', '4') /* 16 xxxxyyyy uuuuvvvv */ |
296 | #define V4L2_PIX_FMT_YUV555 v4l2_fourcc('Y','U','V','O') /* 16 YUV-5-5-5 */ | 300 | #define V4L2_PIX_FMT_YUV555 v4l2_fourcc('Y', 'U', 'V', 'O') /* 16 YUV-5-5-5 */ |
297 | #define V4L2_PIX_FMT_YUV565 v4l2_fourcc('Y','U','V','P') /* 16 YUV-5-6-5 */ | 301 | #define V4L2_PIX_FMT_YUV565 v4l2_fourcc('Y', 'U', 'V', 'P') /* 16 YUV-5-6-5 */ |
298 | #define V4L2_PIX_FMT_YUV32 v4l2_fourcc('Y','U','V','4') /* 32 YUV-8-8-8-8 */ | 302 | #define V4L2_PIX_FMT_YUV32 v4l2_fourcc('Y', 'U', 'V', '4') /* 32 YUV-8-8-8-8 */ |
299 | 303 | ||
300 | /* two planes -- one Y, one Cr + Cb interleaved */ | 304 | /* two planes -- one Y, one Cr + Cb interleaved */ |
301 | #define V4L2_PIX_FMT_NV12 v4l2_fourcc('N','V','1','2') /* 12 Y/CbCr 4:2:0 */ | 305 | #define V4L2_PIX_FMT_NV12 v4l2_fourcc('N', 'V', '1', '2') /* 12 Y/CbCr 4:2:0 */ |
302 | #define V4L2_PIX_FMT_NV21 v4l2_fourcc('N','V','2','1') /* 12 Y/CrCb 4:2:0 */ | 306 | #define V4L2_PIX_FMT_NV21 v4l2_fourcc('N', 'V', '2', '1') /* 12 Y/CrCb 4:2:0 */ |
303 | 307 | ||
304 | /* The following formats are not defined in the V4L2 specification */ | 308 | /* The following formats are not defined in the V4L2 specification */ |
305 | #define V4L2_PIX_FMT_YUV410 v4l2_fourcc('Y','U','V','9') /* 9 YUV 4:1:0 */ | 309 | #define V4L2_PIX_FMT_YUV410 v4l2_fourcc('Y', 'U', 'V', '9') /* 9 YUV 4:1:0 */ |
306 | #define V4L2_PIX_FMT_YUV420 v4l2_fourcc('Y','U','1','2') /* 12 YUV 4:2:0 */ | 310 | #define V4L2_PIX_FMT_YUV420 v4l2_fourcc('Y', 'U', '1', '2') /* 12 YUV 4:2:0 */ |
307 | #define V4L2_PIX_FMT_YYUV v4l2_fourcc('Y','Y','U','V') /* 16 YUV 4:2:2 */ | 311 | #define V4L2_PIX_FMT_YYUV v4l2_fourcc('Y', 'Y', 'U', 'V') /* 16 YUV 4:2:2 */ |
308 | #define V4L2_PIX_FMT_HI240 v4l2_fourcc('H','I','2','4') /* 8 8-bit color */ | 312 | #define V4L2_PIX_FMT_HI240 v4l2_fourcc('H', 'I', '2', '4') /* 8 8-bit color */ |
309 | #define V4L2_PIX_FMT_HM12 v4l2_fourcc('H','M','1','2') /* 8 YUV 4:2:0 16x16 macroblocks */ | 313 | #define V4L2_PIX_FMT_HM12 v4l2_fourcc('H', 'M', '1', '2') /* 8 YUV 4:2:0 16x16 macroblocks */ |
310 | 314 | ||
311 | /* see http://www.siliconimaging.com/RGB%20Bayer.htm */ | 315 | /* see http://www.siliconimaging.com/RGB%20Bayer.htm */ |
312 | #define V4L2_PIX_FMT_SBGGR8 v4l2_fourcc('B','A','8','1') /* 8 BGBG.. GRGR.. */ | 316 | #define V4L2_PIX_FMT_SBGGR8 v4l2_fourcc('B', 'A', '8', '1') /* 8 BGBG.. GRGR.. */ |
313 | #define V4L2_PIX_FMT_SGBRG8 v4l2_fourcc('G','B','R','G') /* 8 GBGB.. RGRG.. */ | 317 | #define V4L2_PIX_FMT_SGBRG8 v4l2_fourcc('G', 'B', 'R', 'G') /* 8 GBGB.. RGRG.. */ |
314 | #define V4L2_PIX_FMT_SBGGR16 v4l2_fourcc('B','Y','R','2') /* 16 BGBG.. GRGR.. */ | 318 | #define V4L2_PIX_FMT_SBGGR16 v4l2_fourcc('B', 'Y', 'R', '2') /* 16 BGBG.. GRGR.. */ |
315 | 319 | ||
316 | /* compressed formats */ | 320 | /* compressed formats */ |
317 | #define V4L2_PIX_FMT_MJPEG v4l2_fourcc('M','J','P','G') /* Motion-JPEG */ | 321 | #define V4L2_PIX_FMT_MJPEG v4l2_fourcc('M', 'J', 'P', 'G') /* Motion-JPEG */ |
318 | #define V4L2_PIX_FMT_JPEG v4l2_fourcc('J','P','E','G') /* JFIF JPEG */ | 322 | #define V4L2_PIX_FMT_JPEG v4l2_fourcc('J', 'P', 'E', 'G') /* JFIF JPEG */ |
319 | #define V4L2_PIX_FMT_DV v4l2_fourcc('d','v','s','d') /* 1394 */ | 323 | #define V4L2_PIX_FMT_DV v4l2_fourcc('d', 'v', 's', 'd') /* 1394 */ |
320 | #define V4L2_PIX_FMT_MPEG v4l2_fourcc('M','P','E','G') /* MPEG-1/2/4 */ | 324 | #define V4L2_PIX_FMT_MPEG v4l2_fourcc('M', 'P', 'E', 'G') /* MPEG-1/2/4 */ |
321 | 325 | ||
322 | /* Vendor-specific formats */ | 326 | /* Vendor-specific formats */ |
323 | #define V4L2_PIX_FMT_WNVA v4l2_fourcc('W','N','V','A') /* Winnov hw compress */ | 327 | #define V4L2_PIX_FMT_WNVA v4l2_fourcc('W', 'N', 'V', 'A') /* Winnov hw compress */ |
324 | #define V4L2_PIX_FMT_SN9C10X v4l2_fourcc('S','9','1','0') /* SN9C10x compression */ | 328 | #define V4L2_PIX_FMT_SN9C10X v4l2_fourcc('S', '9', '1', '0') /* SN9C10x compression */ |
325 | #define V4L2_PIX_FMT_PWC1 v4l2_fourcc('P','W','C','1') /* pwc older webcam */ | 329 | #define V4L2_PIX_FMT_PWC1 v4l2_fourcc('P', 'W', 'C', '1') /* pwc older webcam */ |
326 | #define V4L2_PIX_FMT_PWC2 v4l2_fourcc('P','W','C','2') /* pwc newer webcam */ | 330 | #define V4L2_PIX_FMT_PWC2 v4l2_fourcc('P', 'W', 'C', '2') /* pwc newer webcam */ |
327 | #define V4L2_PIX_FMT_ET61X251 v4l2_fourcc('E','6','2','5') /* ET61X251 compression */ | 331 | #define V4L2_PIX_FMT_ET61X251 v4l2_fourcc('E', '6', '2', '5') /* ET61X251 compression */ |
328 | #define V4L2_PIX_FMT_SPCA501 v4l2_fourcc('S','5','0','1') /* YUYV per line */ | 332 | #define V4L2_PIX_FMT_SPCA501 v4l2_fourcc('S', '5', '0', '1') /* YUYV per line */ |
329 | #define V4L2_PIX_FMT_SPCA561 v4l2_fourcc('S','5','6','1') /* compressed GBRG bayer */ | 333 | #define V4L2_PIX_FMT_SPCA505 v4l2_fourcc('S', '5', '0', '5') /* YYUV per line */ |
330 | #define V4L2_PIX_FMT_PAC207 v4l2_fourcc('P','2','0','7') /* compressed BGGR bayer */ | 334 | #define V4L2_PIX_FMT_SPCA508 v4l2_fourcc('S', '5', '0', '8') /* YUVY per line */ |
335 | #define V4L2_PIX_FMT_SPCA561 v4l2_fourcc('S', '5', '6', '1') /* compressed GBRG bayer */ | ||
336 | #define V4L2_PIX_FMT_PAC207 v4l2_fourcc('P', '2', '0', '7') /* compressed BGGR bayer */ | ||
331 | 337 | ||
332 | /* | 338 | /* |
333 | * F O R M A T E N U M E R A T I O N | 339 | * F O R M A T E N U M E R A T I O N |
334 | */ | 340 | */ |
335 | struct v4l2_fmtdesc | 341 | struct v4l2_fmtdesc { |
336 | { | ||
337 | __u32 index; /* Format number */ | 342 | __u32 index; /* Format number */ |
338 | enum v4l2_buf_type type; /* buffer type */ | 343 | enum v4l2_buf_type type; /* buffer type */ |
339 | __u32 flags; | 344 | __u32 flags; |
@@ -349,21 +354,18 @@ struct v4l2_fmtdesc | |||
349 | /* | 354 | /* |
350 | * F R A M E S I Z E E N U M E R A T I O N | 355 | * F R A M E S I Z E E N U M E R A T I O N |
351 | */ | 356 | */ |
352 | enum v4l2_frmsizetypes | 357 | enum v4l2_frmsizetypes { |
353 | { | ||
354 | V4L2_FRMSIZE_TYPE_DISCRETE = 1, | 358 | V4L2_FRMSIZE_TYPE_DISCRETE = 1, |
355 | V4L2_FRMSIZE_TYPE_CONTINUOUS = 2, | 359 | V4L2_FRMSIZE_TYPE_CONTINUOUS = 2, |
356 | V4L2_FRMSIZE_TYPE_STEPWISE = 3, | 360 | V4L2_FRMSIZE_TYPE_STEPWISE = 3, |
357 | }; | 361 | }; |
358 | 362 | ||
359 | struct v4l2_frmsize_discrete | 363 | struct v4l2_frmsize_discrete { |
360 | { | ||
361 | __u32 width; /* Frame width [pixel] */ | 364 | __u32 width; /* Frame width [pixel] */ |
362 | __u32 height; /* Frame height [pixel] */ | 365 | __u32 height; /* Frame height [pixel] */ |
363 | }; | 366 | }; |
364 | 367 | ||
365 | struct v4l2_frmsize_stepwise | 368 | struct v4l2_frmsize_stepwise { |
366 | { | ||
367 | __u32 min_width; /* Minimum frame width [pixel] */ | 369 | __u32 min_width; /* Minimum frame width [pixel] */ |
368 | __u32 max_width; /* Maximum frame width [pixel] */ | 370 | __u32 max_width; /* Maximum frame width [pixel] */ |
369 | __u32 step_width; /* Frame width step size [pixel] */ | 371 | __u32 step_width; /* Frame width step size [pixel] */ |
@@ -372,8 +374,7 @@ struct v4l2_frmsize_stepwise | |||
372 | __u32 step_height; /* Frame height step size [pixel] */ | 374 | __u32 step_height; /* Frame height step size [pixel] */ |
373 | }; | 375 | }; |
374 | 376 | ||
375 | struct v4l2_frmsizeenum | 377 | struct v4l2_frmsizeenum { |
376 | { | ||
377 | __u32 index; /* Frame size number */ | 378 | __u32 index; /* Frame size number */ |
378 | __u32 pixel_format; /* Pixel format */ | 379 | __u32 pixel_format; /* Pixel format */ |
379 | __u32 type; /* Frame size type the device supports. */ | 380 | __u32 type; /* Frame size type the device supports. */ |
@@ -389,22 +390,19 @@ struct v4l2_frmsizeenum | |||
389 | /* | 390 | /* |
390 | * F R A M E R A T E E N U M E R A T I O N | 391 | * F R A M E R A T E E N U M E R A T I O N |
391 | */ | 392 | */ |
392 | enum v4l2_frmivaltypes | 393 | enum v4l2_frmivaltypes { |
393 | { | ||
394 | V4L2_FRMIVAL_TYPE_DISCRETE = 1, | 394 | V4L2_FRMIVAL_TYPE_DISCRETE = 1, |
395 | V4L2_FRMIVAL_TYPE_CONTINUOUS = 2, | 395 | V4L2_FRMIVAL_TYPE_CONTINUOUS = 2, |
396 | V4L2_FRMIVAL_TYPE_STEPWISE = 3, | 396 | V4L2_FRMIVAL_TYPE_STEPWISE = 3, |
397 | }; | 397 | }; |
398 | 398 | ||
399 | struct v4l2_frmival_stepwise | 399 | struct v4l2_frmival_stepwise { |
400 | { | ||
401 | struct v4l2_fract min; /* Minimum frame interval [s] */ | 400 | struct v4l2_fract min; /* Minimum frame interval [s] */ |
402 | struct v4l2_fract max; /* Maximum frame interval [s] */ | 401 | struct v4l2_fract max; /* Maximum frame interval [s] */ |
403 | struct v4l2_fract step; /* Frame interval step size [s] */ | 402 | struct v4l2_fract step; /* Frame interval step size [s] */ |
404 | }; | 403 | }; |
405 | 404 | ||
406 | struct v4l2_frmivalenum | 405 | struct v4l2_frmivalenum { |
407 | { | ||
408 | __u32 index; /* Frame format index */ | 406 | __u32 index; /* Frame format index */ |
409 | __u32 pixel_format; /* Pixel format */ | 407 | __u32 pixel_format; /* Pixel format */ |
410 | __u32 width; /* Frame width */ | 408 | __u32 width; /* Frame width */ |
@@ -423,8 +421,7 @@ struct v4l2_frmivalenum | |||
423 | /* | 421 | /* |
424 | * T I M E C O D E | 422 | * T I M E C O D E |
425 | */ | 423 | */ |
426 | struct v4l2_timecode | 424 | struct v4l2_timecode { |
427 | { | ||
428 | __u32 type; | 425 | __u32 type; |
429 | __u32 flags; | 426 | __u32 flags; |
430 | __u8 frames; | 427 | __u8 frames; |
@@ -449,8 +446,7 @@ struct v4l2_timecode | |||
449 | #define V4L2_TC_USERBITS_8BITCHARS 0x0008 | 446 | #define V4L2_TC_USERBITS_8BITCHARS 0x0008 |
450 | /* The above is based on SMPTE timecodes */ | 447 | /* The above is based on SMPTE timecodes */ |
451 | 448 | ||
452 | struct v4l2_jpegcompression | 449 | struct v4l2_jpegcompression { |
453 | { | ||
454 | int quality; | 450 | int quality; |
455 | 451 | ||
456 | int APPn; /* Number of APP segment to be written, | 452 | int APPn; /* Number of APP segment to be written, |
@@ -482,16 +478,14 @@ struct v4l2_jpegcompression | |||
482 | /* | 478 | /* |
483 | * M E M O R Y - M A P P I N G B U F F E R S | 479 | * M E M O R Y - M A P P I N G B U F F E R S |
484 | */ | 480 | */ |
485 | struct v4l2_requestbuffers | 481 | struct v4l2_requestbuffers { |
486 | { | ||
487 | __u32 count; | 482 | __u32 count; |
488 | enum v4l2_buf_type type; | 483 | enum v4l2_buf_type type; |
489 | enum v4l2_memory memory; | 484 | enum v4l2_memory memory; |
490 | __u32 reserved[2]; | 485 | __u32 reserved[2]; |
491 | }; | 486 | }; |
492 | 487 | ||
493 | struct v4l2_buffer | 488 | struct v4l2_buffer { |
494 | { | ||
495 | __u32 index; | 489 | __u32 index; |
496 | enum v4l2_buf_type type; | 490 | enum v4l2_buf_type type; |
497 | __u32 bytesused; | 491 | __u32 bytesused; |
@@ -525,13 +519,12 @@ struct v4l2_buffer | |||
525 | /* | 519 | /* |
526 | * O V E R L A Y P R E V I E W | 520 | * O V E R L A Y P R E V I E W |
527 | */ | 521 | */ |
528 | struct v4l2_framebuffer | 522 | struct v4l2_framebuffer { |
529 | { | ||
530 | __u32 capability; | 523 | __u32 capability; |
531 | __u32 flags; | 524 | __u32 flags; |
532 | /* FIXME: in theory we should pass something like PCI device + memory | 525 | /* FIXME: in theory we should pass something like PCI device + memory |
533 | * region + offset instead of some physical address */ | 526 | * region + offset instead of some physical address */ |
534 | void* base; | 527 | void *base; |
535 | struct v4l2_pix_format fmt; | 528 | struct v4l2_pix_format fmt; |
536 | }; | 529 | }; |
537 | /* Flags for the 'capability' field. Read only */ | 530 | /* Flags for the 'capability' field. Read only */ |
@@ -550,14 +543,12 @@ struct v4l2_framebuffer | |||
550 | #define V4L2_FBUF_FLAG_GLOBAL_ALPHA 0x0010 | 543 | #define V4L2_FBUF_FLAG_GLOBAL_ALPHA 0x0010 |
551 | #define V4L2_FBUF_FLAG_LOCAL_INV_ALPHA 0x0020 | 544 | #define V4L2_FBUF_FLAG_LOCAL_INV_ALPHA 0x0020 |
552 | 545 | ||
553 | struct v4l2_clip | 546 | struct v4l2_clip { |
554 | { | ||
555 | struct v4l2_rect c; | 547 | struct v4l2_rect c; |
556 | struct v4l2_clip __user *next; | 548 | struct v4l2_clip __user *next; |
557 | }; | 549 | }; |
558 | 550 | ||
559 | struct v4l2_window | 551 | struct v4l2_window { |
560 | { | ||
561 | struct v4l2_rect w; | 552 | struct v4l2_rect w; |
562 | enum v4l2_field field; | 553 | enum v4l2_field field; |
563 | __u32 chromakey; | 554 | __u32 chromakey; |
@@ -570,8 +561,7 @@ struct v4l2_window | |||
570 | /* | 561 | /* |
571 | * C A P T U R E P A R A M E T E R S | 562 | * C A P T U R E P A R A M E T E R S |
572 | */ | 563 | */ |
573 | struct v4l2_captureparm | 564 | struct v4l2_captureparm { |
574 | { | ||
575 | __u32 capability; /* Supported modes */ | 565 | __u32 capability; /* Supported modes */ |
576 | __u32 capturemode; /* Current mode */ | 566 | __u32 capturemode; /* Current mode */ |
577 | struct v4l2_fract timeperframe; /* Time per frame in .1us units */ | 567 | struct v4l2_fract timeperframe; /* Time per frame in .1us units */ |
@@ -584,8 +574,7 @@ struct v4l2_captureparm | |||
584 | #define V4L2_MODE_HIGHQUALITY 0x0001 /* High quality imaging mode */ | 574 | #define V4L2_MODE_HIGHQUALITY 0x0001 /* High quality imaging mode */ |
585 | #define V4L2_CAP_TIMEPERFRAME 0x1000 /* timeperframe field is supported */ | 575 | #define V4L2_CAP_TIMEPERFRAME 0x1000 /* timeperframe field is supported */ |
586 | 576 | ||
587 | struct v4l2_outputparm | 577 | struct v4l2_outputparm { |
588 | { | ||
589 | __u32 capability; /* Supported modes */ | 578 | __u32 capability; /* Supported modes */ |
590 | __u32 outputmode; /* Current mode */ | 579 | __u32 outputmode; /* Current mode */ |
591 | struct v4l2_fract timeperframe; /* Time per frame in seconds */ | 580 | struct v4l2_fract timeperframe; /* Time per frame in seconds */ |
@@ -702,8 +691,7 @@ typedef __u64 v4l2_std_id; | |||
702 | #define V4L2_STD_ALL (V4L2_STD_525_60 |\ | 691 | #define V4L2_STD_ALL (V4L2_STD_525_60 |\ |
703 | V4L2_STD_625_50) | 692 | V4L2_STD_625_50) |
704 | 693 | ||
705 | struct v4l2_standard | 694 | struct v4l2_standard { |
706 | { | ||
707 | __u32 index; | 695 | __u32 index; |
708 | v4l2_std_id id; | 696 | v4l2_std_id id; |
709 | __u8 name[24]; | 697 | __u8 name[24]; |
@@ -715,8 +703,7 @@ struct v4l2_standard | |||
715 | /* | 703 | /* |
716 | * V I D E O I N P U T S | 704 | * V I D E O I N P U T S |
717 | */ | 705 | */ |
718 | struct v4l2_input | 706 | struct v4l2_input { |
719 | { | ||
720 | __u32 index; /* Which input */ | 707 | __u32 index; /* Which input */ |
721 | __u8 name[32]; /* Label */ | 708 | __u8 name[32]; /* Label */ |
722 | __u32 type; /* Type of input */ | 709 | __u32 type; /* Type of input */ |
@@ -753,8 +740,7 @@ struct v4l2_input | |||
753 | /* | 740 | /* |
754 | * V I D E O O U T P U T S | 741 | * V I D E O O U T P U T S |
755 | */ | 742 | */ |
756 | struct v4l2_output | 743 | struct v4l2_output { |
757 | { | ||
758 | __u32 index; /* Which output */ | 744 | __u32 index; /* Which output */ |
759 | __u8 name[32]; /* Label */ | 745 | __u8 name[32]; /* Label */ |
760 | __u32 type; /* Type of output */ | 746 | __u32 type; /* Type of output */ |
@@ -771,14 +757,12 @@ struct v4l2_output | |||
771 | /* | 757 | /* |
772 | * C O N T R O L S | 758 | * C O N T R O L S |
773 | */ | 759 | */ |
774 | struct v4l2_control | 760 | struct v4l2_control { |
775 | { | ||
776 | __u32 id; | 761 | __u32 id; |
777 | __s32 value; | 762 | __s32 value; |
778 | }; | 763 | }; |
779 | 764 | ||
780 | struct v4l2_ext_control | 765 | struct v4l2_ext_control { |
781 | { | ||
782 | __u32 id; | 766 | __u32 id; |
783 | __u32 reserved2[2]; | 767 | __u32 reserved2[2]; |
784 | union { | 768 | union { |
@@ -788,8 +772,7 @@ struct v4l2_ext_control | |||
788 | }; | 772 | }; |
789 | } __attribute__ ((packed)); | 773 | } __attribute__ ((packed)); |
790 | 774 | ||
791 | struct v4l2_ext_controls | 775 | struct v4l2_ext_controls { |
792 | { | ||
793 | __u32 ctrl_class; | 776 | __u32 ctrl_class; |
794 | __u32 count; | 777 | __u32 count; |
795 | __u32 error_idx; | 778 | __u32 error_idx; |
@@ -807,8 +790,7 @@ struct v4l2_ext_controls | |||
807 | #define V4L2_CTRL_DRIVER_PRIV(id) (((id) & 0xffff) >= 0x1000) | 790 | #define V4L2_CTRL_DRIVER_PRIV(id) (((id) & 0xffff) >= 0x1000) |
808 | 791 | ||
809 | /* Used in the VIDIOC_QUERYCTRL ioctl for querying controls */ | 792 | /* Used in the VIDIOC_QUERYCTRL ioctl for querying controls */ |
810 | struct v4l2_queryctrl | 793 | struct v4l2_queryctrl { |
811 | { | ||
812 | __u32 id; | 794 | __u32 id; |
813 | enum v4l2_ctrl_type type; | 795 | enum v4l2_ctrl_type type; |
814 | __u8 name[32]; /* Whatever */ | 796 | __u8 name[32]; /* Whatever */ |
@@ -821,8 +803,7 @@ struct v4l2_queryctrl | |||
821 | }; | 803 | }; |
822 | 804 | ||
823 | /* Used in the VIDIOC_QUERYMENU ioctl for querying menu items */ | 805 | /* Used in the VIDIOC_QUERYMENU ioctl for querying menu items */ |
824 | struct v4l2_querymenu | 806 | struct v4l2_querymenu { |
825 | { | ||
826 | __u32 id; | 807 | __u32 id; |
827 | __u32 index; | 808 | __u32 index; |
828 | __u8 name[32]; /* Whatever */ | 809 | __u8 name[32]; /* Whatever */ |
@@ -1104,8 +1085,7 @@ enum v4l2_exposure_auto_type { | |||
1104 | /* | 1085 | /* |
1105 | * T U N I N G | 1086 | * T U N I N G |
1106 | */ | 1087 | */ |
1107 | struct v4l2_tuner | 1088 | struct v4l2_tuner { |
1108 | { | ||
1109 | __u32 index; | 1089 | __u32 index; |
1110 | __u8 name[32]; | 1090 | __u8 name[32]; |
1111 | enum v4l2_tuner_type type; | 1091 | enum v4l2_tuner_type type; |
@@ -1119,8 +1099,7 @@ struct v4l2_tuner | |||
1119 | __u32 reserved[4]; | 1099 | __u32 reserved[4]; |
1120 | }; | 1100 | }; |
1121 | 1101 | ||
1122 | struct v4l2_modulator | 1102 | struct v4l2_modulator { |
1123 | { | ||
1124 | __u32 index; | 1103 | __u32 index; |
1125 | __u8 name[32]; | 1104 | __u8 name[32]; |
1126 | __u32 capability; | 1105 | __u32 capability; |
@@ -1153,8 +1132,7 @@ struct v4l2_modulator | |||
1153 | #define V4L2_TUNER_MODE_LANG1 0x0003 | 1132 | #define V4L2_TUNER_MODE_LANG1 0x0003 |
1154 | #define V4L2_TUNER_MODE_LANG1_LANG2 0x0004 | 1133 | #define V4L2_TUNER_MODE_LANG1_LANG2 0x0004 |
1155 | 1134 | ||
1156 | struct v4l2_frequency | 1135 | struct v4l2_frequency { |
1157 | { | ||
1158 | __u32 tuner; | 1136 | __u32 tuner; |
1159 | enum v4l2_tuner_type type; | 1137 | enum v4l2_tuner_type type; |
1160 | __u32 frequency; | 1138 | __u32 frequency; |
@@ -1172,8 +1150,7 @@ struct v4l2_hw_freq_seek { | |||
1172 | /* | 1150 | /* |
1173 | * A U D I O | 1151 | * A U D I O |
1174 | */ | 1152 | */ |
1175 | struct v4l2_audio | 1153 | struct v4l2_audio { |
1176 | { | ||
1177 | __u32 index; | 1154 | __u32 index; |
1178 | __u8 name[32]; | 1155 | __u8 name[32]; |
1179 | __u32 capability; | 1156 | __u32 capability; |
@@ -1188,8 +1165,7 @@ struct v4l2_audio | |||
1188 | /* Flags for the 'mode' field */ | 1165 | /* Flags for the 'mode' field */ |
1189 | #define V4L2_AUDMODE_AVL 0x00001 | 1166 | #define V4L2_AUDMODE_AVL 0x00001 |
1190 | 1167 | ||
1191 | struct v4l2_audioout | 1168 | struct v4l2_audioout { |
1192 | { | ||
1193 | __u32 index; | 1169 | __u32 index; |
1194 | __u8 name[32]; | 1170 | __u8 name[32]; |
1195 | __u32 capability; | 1171 | __u32 capability; |
@@ -1253,8 +1229,7 @@ struct v4l2_encoder_cmd { | |||
1253 | */ | 1229 | */ |
1254 | 1230 | ||
1255 | /* Raw VBI */ | 1231 | /* Raw VBI */ |
1256 | struct v4l2_vbi_format | 1232 | struct v4l2_vbi_format { |
1257 | { | ||
1258 | __u32 sampling_rate; /* in 1 Hz */ | 1233 | __u32 sampling_rate; /* in 1 Hz */ |
1259 | __u32 offset; | 1234 | __u32 offset; |
1260 | __u32 samples_per_line; | 1235 | __u32 samples_per_line; |
@@ -1266,8 +1241,8 @@ struct v4l2_vbi_format | |||
1266 | }; | 1241 | }; |
1267 | 1242 | ||
1268 | /* VBI flags */ | 1243 | /* VBI flags */ |
1269 | #define V4L2_VBI_UNSYNC (1<< 0) | 1244 | #define V4L2_VBI_UNSYNC (1 << 0) |
1270 | #define V4L2_VBI_INTERLACED (1<< 1) | 1245 | #define V4L2_VBI_INTERLACED (1 << 1) |
1271 | 1246 | ||
1272 | /* Sliced VBI | 1247 | /* Sliced VBI |
1273 | * | 1248 | * |
@@ -1276,8 +1251,7 @@ struct v4l2_vbi_format | |||
1276 | * notice in the definitive implementation. | 1251 | * notice in the definitive implementation. |
1277 | */ | 1252 | */ |
1278 | 1253 | ||
1279 | struct v4l2_sliced_vbi_format | 1254 | struct v4l2_sliced_vbi_format { |
1280 | { | ||
1281 | __u16 service_set; | 1255 | __u16 service_set; |
1282 | /* service_lines[0][...] specifies lines 0-23 (1-23 used) of the first field | 1256 | /* service_lines[0][...] specifies lines 0-23 (1-23 used) of the first field |
1283 | service_lines[1][...] specifies lines 0-23 (1-23 used) of the second field | 1257 | service_lines[1][...] specifies lines 0-23 (1-23 used) of the second field |
@@ -1301,8 +1275,7 @@ struct v4l2_sliced_vbi_format | |||
1301 | #define V4L2_SLICED_VBI_525 (V4L2_SLICED_CAPTION_525) | 1275 | #define V4L2_SLICED_VBI_525 (V4L2_SLICED_CAPTION_525) |
1302 | #define V4L2_SLICED_VBI_625 (V4L2_SLICED_TELETEXT_B | V4L2_SLICED_VPS | V4L2_SLICED_WSS_625) | 1276 | #define V4L2_SLICED_VBI_625 (V4L2_SLICED_TELETEXT_B | V4L2_SLICED_VPS | V4L2_SLICED_WSS_625) |
1303 | 1277 | ||
1304 | struct v4l2_sliced_vbi_cap | 1278 | struct v4l2_sliced_vbi_cap { |
1305 | { | ||
1306 | __u16 service_set; | 1279 | __u16 service_set; |
1307 | /* service_lines[0][...] specifies lines 0-23 (1-23 used) of the first field | 1280 | /* service_lines[0][...] specifies lines 0-23 (1-23 used) of the first field |
1308 | service_lines[1][...] specifies lines 0-23 (1-23 used) of the second field | 1281 | service_lines[1][...] specifies lines 0-23 (1-23 used) of the second field |
@@ -1313,8 +1286,7 @@ struct v4l2_sliced_vbi_cap | |||
1313 | __u32 reserved[3]; /* must be 0 */ | 1286 | __u32 reserved[3]; /* must be 0 */ |
1314 | }; | 1287 | }; |
1315 | 1288 | ||
1316 | struct v4l2_sliced_vbi_data | 1289 | struct v4l2_sliced_vbi_data { |
1317 | { | ||
1318 | __u32 id; | 1290 | __u32 id; |
1319 | __u32 field; /* 0: first field, 1: second field */ | 1291 | __u32 field; /* 0: first field, 1: second field */ |
1320 | __u32 line; /* 1-23 */ | 1292 | __u32 line; /* 1-23 */ |
@@ -1328,27 +1300,23 @@ struct v4l2_sliced_vbi_data | |||
1328 | 1300 | ||
1329 | /* Stream data format | 1301 | /* Stream data format |
1330 | */ | 1302 | */ |
1331 | struct v4l2_format | 1303 | struct v4l2_format { |
1332 | { | ||
1333 | enum v4l2_buf_type type; | 1304 | enum v4l2_buf_type type; |
1334 | union | 1305 | union { |
1335 | { | 1306 | struct v4l2_pix_format pix; /* V4L2_BUF_TYPE_VIDEO_CAPTURE */ |
1336 | struct v4l2_pix_format pix; // V4L2_BUF_TYPE_VIDEO_CAPTURE | 1307 | struct v4l2_window win; /* V4L2_BUF_TYPE_VIDEO_OVERLAY */ |
1337 | struct v4l2_window win; // V4L2_BUF_TYPE_VIDEO_OVERLAY | 1308 | struct v4l2_vbi_format vbi; /* V4L2_BUF_TYPE_VBI_CAPTURE */ |
1338 | struct v4l2_vbi_format vbi; // V4L2_BUF_TYPE_VBI_CAPTURE | 1309 | struct v4l2_sliced_vbi_format sliced; /* V4L2_BUF_TYPE_SLICED_VBI_CAPTURE */ |
1339 | struct v4l2_sliced_vbi_format sliced; // V4L2_BUF_TYPE_SLICED_VBI_CAPTURE | 1310 | __u8 raw_data[200]; /* user-defined */ |
1340 | __u8 raw_data[200]; // user-defined | ||
1341 | } fmt; | 1311 | } fmt; |
1342 | }; | 1312 | }; |
1343 | 1313 | ||
1344 | 1314 | ||
1345 | /* Stream type-dependent parameters | 1315 | /* Stream type-dependent parameters |
1346 | */ | 1316 | */ |
1347 | struct v4l2_streamparm | 1317 | struct v4l2_streamparm { |
1348 | { | ||
1349 | enum v4l2_buf_type type; | 1318 | enum v4l2_buf_type type; |
1350 | union | 1319 | union { |
1351 | { | ||
1352 | struct v4l2_captureparm capture; | 1320 | struct v4l2_captureparm capture; |
1353 | struct v4l2_outputparm output; | 1321 | struct v4l2_outputparm output; |
1354 | __u8 raw_data[200]; /* user-defined */ | 1322 | __u8 raw_data[200]; /* user-defined */ |
@@ -1386,92 +1354,86 @@ struct v4l2_chip_ident { | |||
1386 | * I O C T L C O D E S F O R V I D E O D E V I C E S | 1354 | * I O C T L C O D E S F O R V I D E O D E V I C E S |
1387 | * | 1355 | * |
1388 | */ | 1356 | */ |
1389 | #define VIDIOC_QUERYCAP _IOR ('V', 0, struct v4l2_capability) | 1357 | #define VIDIOC_QUERYCAP _IOR('V', 0, struct v4l2_capability) |
1390 | #define VIDIOC_RESERVED _IO ('V', 1) | 1358 | #define VIDIOC_RESERVED _IO('V', 1) |
1391 | #define VIDIOC_ENUM_FMT _IOWR ('V', 2, struct v4l2_fmtdesc) | 1359 | #define VIDIOC_ENUM_FMT _IOWR('V', 2, struct v4l2_fmtdesc) |
1392 | #define VIDIOC_G_FMT _IOWR ('V', 4, struct v4l2_format) | 1360 | #define VIDIOC_G_FMT _IOWR('V', 4, struct v4l2_format) |
1393 | #define VIDIOC_S_FMT _IOWR ('V', 5, struct v4l2_format) | 1361 | #define VIDIOC_S_FMT _IOWR('V', 5, struct v4l2_format) |
1394 | #define VIDIOC_REQBUFS _IOWR ('V', 8, struct v4l2_requestbuffers) | 1362 | #define VIDIOC_REQBUFS _IOWR('V', 8, struct v4l2_requestbuffers) |
1395 | #define VIDIOC_QUERYBUF _IOWR ('V', 9, struct v4l2_buffer) | 1363 | #define VIDIOC_QUERYBUF _IOWR('V', 9, struct v4l2_buffer) |
1396 | #define VIDIOC_G_FBUF _IOR ('V', 10, struct v4l2_framebuffer) | 1364 | #define VIDIOC_G_FBUF _IOR('V', 10, struct v4l2_framebuffer) |
1397 | #define VIDIOC_S_FBUF _IOW ('V', 11, struct v4l2_framebuffer) | 1365 | #define VIDIOC_S_FBUF _IOW('V', 11, struct v4l2_framebuffer) |
1398 | #define VIDIOC_OVERLAY _IOW ('V', 14, int) | 1366 | #define VIDIOC_OVERLAY _IOW('V', 14, int) |
1399 | #define VIDIOC_QBUF _IOWR ('V', 15, struct v4l2_buffer) | 1367 | #define VIDIOC_QBUF _IOWR('V', 15, struct v4l2_buffer) |
1400 | #define VIDIOC_DQBUF _IOWR ('V', 17, struct v4l2_buffer) | 1368 | #define VIDIOC_DQBUF _IOWR('V', 17, struct v4l2_buffer) |
1401 | #define VIDIOC_STREAMON _IOW ('V', 18, int) | 1369 | #define VIDIOC_STREAMON _IOW('V', 18, int) |
1402 | #define VIDIOC_STREAMOFF _IOW ('V', 19, int) | 1370 | #define VIDIOC_STREAMOFF _IOW('V', 19, int) |
1403 | #define VIDIOC_G_PARM _IOWR ('V', 21, struct v4l2_streamparm) | 1371 | #define VIDIOC_G_PARM _IOWR('V', 21, struct v4l2_streamparm) |
1404 | #define VIDIOC_S_PARM _IOWR ('V', 22, struct v4l2_streamparm) | 1372 | #define VIDIOC_S_PARM _IOWR('V', 22, struct v4l2_streamparm) |
1405 | #define VIDIOC_G_STD _IOR ('V', 23, v4l2_std_id) | 1373 | #define VIDIOC_G_STD _IOR('V', 23, v4l2_std_id) |
1406 | #define VIDIOC_S_STD _IOW ('V', 24, v4l2_std_id) | 1374 | #define VIDIOC_S_STD _IOW('V', 24, v4l2_std_id) |
1407 | #define VIDIOC_ENUMSTD _IOWR ('V', 25, struct v4l2_standard) | 1375 | #define VIDIOC_ENUMSTD _IOWR('V', 25, struct v4l2_standard) |
1408 | #define VIDIOC_ENUMINPUT _IOWR ('V', 26, struct v4l2_input) | 1376 | #define VIDIOC_ENUMINPUT _IOWR('V', 26, struct v4l2_input) |
1409 | #define VIDIOC_G_CTRL _IOWR ('V', 27, struct v4l2_control) | 1377 | #define VIDIOC_G_CTRL _IOWR('V', 27, struct v4l2_control) |
1410 | #define VIDIOC_S_CTRL _IOWR ('V', 28, struct v4l2_control) | 1378 | #define VIDIOC_S_CTRL _IOWR('V', 28, struct v4l2_control) |
1411 | #define VIDIOC_G_TUNER _IOWR ('V', 29, struct v4l2_tuner) | 1379 | #define VIDIOC_G_TUNER _IOWR('V', 29, struct v4l2_tuner) |
1412 | #define VIDIOC_S_TUNER _IOW ('V', 30, struct v4l2_tuner) | 1380 | #define VIDIOC_S_TUNER _IOW('V', 30, struct v4l2_tuner) |
1413 | #define VIDIOC_G_AUDIO _IOR ('V', 33, struct v4l2_audio) | 1381 | #define VIDIOC_G_AUDIO _IOR('V', 33, struct v4l2_audio) |
1414 | #define VIDIOC_S_AUDIO _IOW ('V', 34, struct v4l2_audio) | 1382 | #define VIDIOC_S_AUDIO _IOW('V', 34, struct v4l2_audio) |
1415 | #define VIDIOC_QUERYCTRL _IOWR ('V', 36, struct v4l2_queryctrl) | 1383 | #define VIDIOC_QUERYCTRL _IOWR('V', 36, struct v4l2_queryctrl) |
1416 | #define VIDIOC_QUERYMENU _IOWR ('V', 37, struct v4l2_querymenu) | 1384 | #define VIDIOC_QUERYMENU _IOWR('V', 37, struct v4l2_querymenu) |
1417 | #define VIDIOC_G_INPUT _IOR ('V', 38, int) | 1385 | #define VIDIOC_G_INPUT _IOR('V', 38, int) |
1418 | #define VIDIOC_S_INPUT _IOWR ('V', 39, int) | 1386 | #define VIDIOC_S_INPUT _IOWR('V', 39, int) |
1419 | #define VIDIOC_G_OUTPUT _IOR ('V', 46, int) | 1387 | #define VIDIOC_G_OUTPUT _IOR('V', 46, int) |
1420 | #define VIDIOC_S_OUTPUT _IOWR ('V', 47, int) | 1388 | #define VIDIOC_S_OUTPUT _IOWR('V', 47, int) |
1421 | #define VIDIOC_ENUMOUTPUT _IOWR ('V', 48, struct v4l2_output) | 1389 | #define VIDIOC_ENUMOUTPUT _IOWR('V', 48, struct v4l2_output) |
1422 | #define VIDIOC_G_AUDOUT _IOR ('V', 49, struct v4l2_audioout) | 1390 | #define VIDIOC_G_AUDOUT _IOR('V', 49, struct v4l2_audioout) |
1423 | #define VIDIOC_S_AUDOUT _IOW ('V', 50, struct v4l2_audioout) | 1391 | #define VIDIOC_S_AUDOUT _IOW('V', 50, struct v4l2_audioout) |
1424 | #define VIDIOC_G_MODULATOR _IOWR ('V', 54, struct v4l2_modulator) | 1392 | #define VIDIOC_G_MODULATOR _IOWR('V', 54, struct v4l2_modulator) |
1425 | #define VIDIOC_S_MODULATOR _IOW ('V', 55, struct v4l2_modulator) | 1393 | #define VIDIOC_S_MODULATOR _IOW('V', 55, struct v4l2_modulator) |
1426 | #define VIDIOC_G_FREQUENCY _IOWR ('V', 56, struct v4l2_frequency) | 1394 | #define VIDIOC_G_FREQUENCY _IOWR('V', 56, struct v4l2_frequency) |
1427 | #define VIDIOC_S_FREQUENCY _IOW ('V', 57, struct v4l2_frequency) | 1395 | #define VIDIOC_S_FREQUENCY _IOW('V', 57, struct v4l2_frequency) |
1428 | #define VIDIOC_CROPCAP _IOWR ('V', 58, struct v4l2_cropcap) | 1396 | #define VIDIOC_CROPCAP _IOWR('V', 58, struct v4l2_cropcap) |
1429 | #define VIDIOC_G_CROP _IOWR ('V', 59, struct v4l2_crop) | 1397 | #define VIDIOC_G_CROP _IOWR('V', 59, struct v4l2_crop) |
1430 | #define VIDIOC_S_CROP _IOW ('V', 60, struct v4l2_crop) | 1398 | #define VIDIOC_S_CROP _IOW('V', 60, struct v4l2_crop) |
1431 | #define VIDIOC_G_JPEGCOMP _IOR ('V', 61, struct v4l2_jpegcompression) | 1399 | #define VIDIOC_G_JPEGCOMP _IOR('V', 61, struct v4l2_jpegcompression) |
1432 | #define VIDIOC_S_JPEGCOMP _IOW ('V', 62, struct v4l2_jpegcompression) | 1400 | #define VIDIOC_S_JPEGCOMP _IOW('V', 62, struct v4l2_jpegcompression) |
1433 | #define VIDIOC_QUERYSTD _IOR ('V', 63, v4l2_std_id) | 1401 | #define VIDIOC_QUERYSTD _IOR('V', 63, v4l2_std_id) |
1434 | #define VIDIOC_TRY_FMT _IOWR ('V', 64, struct v4l2_format) | 1402 | #define VIDIOC_TRY_FMT _IOWR('V', 64, struct v4l2_format) |
1435 | #define VIDIOC_ENUMAUDIO _IOWR ('V', 65, struct v4l2_audio) | 1403 | #define VIDIOC_ENUMAUDIO _IOWR('V', 65, struct v4l2_audio) |
1436 | #define VIDIOC_ENUMAUDOUT _IOWR ('V', 66, struct v4l2_audioout) | 1404 | #define VIDIOC_ENUMAUDOUT _IOWR('V', 66, struct v4l2_audioout) |
1437 | #define VIDIOC_G_PRIORITY _IOR ('V', 67, enum v4l2_priority) | 1405 | #define VIDIOC_G_PRIORITY _IOR('V', 67, enum v4l2_priority) |
1438 | #define VIDIOC_S_PRIORITY _IOW ('V', 68, enum v4l2_priority) | 1406 | #define VIDIOC_S_PRIORITY _IOW('V', 68, enum v4l2_priority) |
1439 | #define VIDIOC_G_SLICED_VBI_CAP _IOWR ('V', 69, struct v4l2_sliced_vbi_cap) | 1407 | #define VIDIOC_G_SLICED_VBI_CAP _IOWR('V', 69, struct v4l2_sliced_vbi_cap) |
1440 | #define VIDIOC_LOG_STATUS _IO ('V', 70) | 1408 | #define VIDIOC_LOG_STATUS _IO('V', 70) |
1441 | #define VIDIOC_G_EXT_CTRLS _IOWR ('V', 71, struct v4l2_ext_controls) | 1409 | #define VIDIOC_G_EXT_CTRLS _IOWR('V', 71, struct v4l2_ext_controls) |
1442 | #define VIDIOC_S_EXT_CTRLS _IOWR ('V', 72, struct v4l2_ext_controls) | 1410 | #define VIDIOC_S_EXT_CTRLS _IOWR('V', 72, struct v4l2_ext_controls) |
1443 | #define VIDIOC_TRY_EXT_CTRLS _IOWR ('V', 73, struct v4l2_ext_controls) | 1411 | #define VIDIOC_TRY_EXT_CTRLS _IOWR('V', 73, struct v4l2_ext_controls) |
1444 | #if 1 | 1412 | #if 1 |
1445 | #define VIDIOC_ENUM_FRAMESIZES _IOWR ('V', 74, struct v4l2_frmsizeenum) | 1413 | #define VIDIOC_ENUM_FRAMESIZES _IOWR('V', 74, struct v4l2_frmsizeenum) |
1446 | #define VIDIOC_ENUM_FRAMEINTERVALS _IOWR ('V', 75, struct v4l2_frmivalenum) | 1414 | #define VIDIOC_ENUM_FRAMEINTERVALS _IOWR('V', 75, struct v4l2_frmivalenum) |
1447 | #define VIDIOC_G_ENC_INDEX _IOR ('V', 76, struct v4l2_enc_idx) | 1415 | #define VIDIOC_G_ENC_INDEX _IOR('V', 76, struct v4l2_enc_idx) |
1448 | #define VIDIOC_ENCODER_CMD _IOWR ('V', 77, struct v4l2_encoder_cmd) | 1416 | #define VIDIOC_ENCODER_CMD _IOWR('V', 77, struct v4l2_encoder_cmd) |
1449 | #define VIDIOC_TRY_ENCODER_CMD _IOWR ('V', 78, struct v4l2_encoder_cmd) | 1417 | #define VIDIOC_TRY_ENCODER_CMD _IOWR('V', 78, struct v4l2_encoder_cmd) |
1450 | 1418 | ||
1451 | /* Experimental, only implemented if CONFIG_VIDEO_ADV_DEBUG is defined */ | 1419 | /* Experimental, only implemented if CONFIG_VIDEO_ADV_DEBUG is defined */ |
1452 | #define VIDIOC_DBG_S_REGISTER _IOW ('V', 79, struct v4l2_register) | 1420 | #define VIDIOC_DBG_S_REGISTER _IOW('V', 79, struct v4l2_register) |
1453 | #define VIDIOC_DBG_G_REGISTER _IOWR ('V', 80, struct v4l2_register) | 1421 | #define VIDIOC_DBG_G_REGISTER _IOWR('V', 80, struct v4l2_register) |
1454 | 1422 | ||
1455 | #define VIDIOC_G_CHIP_IDENT _IOWR ('V', 81, struct v4l2_chip_ident) | 1423 | #define VIDIOC_G_CHIP_IDENT _IOWR('V', 81, struct v4l2_chip_ident) |
1456 | #endif | 1424 | #endif |
1457 | #define VIDIOC_S_HW_FREQ_SEEK _IOW ('V', 82, struct v4l2_hw_freq_seek) | 1425 | #define VIDIOC_S_HW_FREQ_SEEK _IOW('V', 82, struct v4l2_hw_freq_seek) |
1458 | 1426 | ||
1459 | #ifdef __OLD_VIDIOC_ | 1427 | #ifdef __OLD_VIDIOC_ |
1460 | /* for compatibility, will go away some day */ | 1428 | /* for compatibility, will go away some day */ |
1461 | #define VIDIOC_OVERLAY_OLD _IOWR ('V', 14, int) | 1429 | #define VIDIOC_OVERLAY_OLD _IOWR('V', 14, int) |
1462 | #define VIDIOC_S_PARM_OLD _IOW ('V', 22, struct v4l2_streamparm) | 1430 | #define VIDIOC_S_PARM_OLD _IOW('V', 22, struct v4l2_streamparm) |
1463 | #define VIDIOC_S_CTRL_OLD _IOW ('V', 28, struct v4l2_control) | 1431 | #define VIDIOC_S_CTRL_OLD _IOW('V', 28, struct v4l2_control) |
1464 | #define VIDIOC_G_AUDIO_OLD _IOWR ('V', 33, struct v4l2_audio) | 1432 | #define VIDIOC_G_AUDIO_OLD _IOWR('V', 33, struct v4l2_audio) |
1465 | #define VIDIOC_G_AUDOUT_OLD _IOWR ('V', 49, struct v4l2_audioout) | 1433 | #define VIDIOC_G_AUDOUT_OLD _IOWR('V', 49, struct v4l2_audioout) |
1466 | #define VIDIOC_CROPCAP_OLD _IOR ('V', 58, struct v4l2_cropcap) | 1434 | #define VIDIOC_CROPCAP_OLD _IOR('V', 58, struct v4l2_cropcap) |
1467 | #endif | 1435 | #endif |
1468 | 1436 | ||
1469 | #define BASE_VIDIOC_PRIVATE 192 /* 192-255 are private */ | 1437 | #define BASE_VIDIOC_PRIVATE 192 /* 192-255 are private */ |
1470 | 1438 | ||
1471 | #endif /* __LINUX_VIDEODEV2_H */ | 1439 | #endif /* __LINUX_VIDEODEV2_H */ |
1472 | |||
1473 | /* | ||
1474 | * Local variables: | ||
1475 | * c-basic-offset: 8 | ||
1476 | * End: | ||
1477 | */ | ||
diff --git a/include/linux/videotext.h b/include/linux/videotext.h index 018f92047ff8..3e68c8d1c7f7 100644 --- a/include/linux/videotext.h +++ b/include/linux/videotext.h | |||
@@ -45,10 +45,10 @@ | |||
45 | #define VTXIOCCLRCACHE_OLD 0x710b /* clear cache on VTX-interface (if avail.) */ | 45 | #define VTXIOCCLRCACHE_OLD 0x710b /* clear cache on VTX-interface (if avail.) */ |
46 | #define VTXIOCSETVIRT_OLD 0x710c /* turn on virtual mode (this disables TV-display) */ | 46 | #define VTXIOCSETVIRT_OLD 0x710c /* turn on virtual mode (this disables TV-display) */ |
47 | 47 | ||
48 | /* | 48 | /* |
49 | * Definitions for VTXIOCGETINFO | 49 | * Definitions for VTXIOCGETINFO |
50 | */ | 50 | */ |
51 | 51 | ||
52 | #define SAA5243 0 | 52 | #define SAA5243 0 |
53 | #define SAA5246 1 | 53 | #define SAA5246 1 |
54 | #define SAA5249 2 | 54 | #define SAA5249 2 |
@@ -57,10 +57,10 @@ | |||
57 | 57 | ||
58 | typedef struct { | 58 | typedef struct { |
59 | int version_major, version_minor; /* version of driver; if version_major changes, driver */ | 59 | int version_major, version_minor; /* version of driver; if version_major changes, driver */ |
60 | /* is not backward compatible!!! CHECK THIS!!! */ | 60 | /* is not backward compatible!!! CHECK THIS!!! */ |
61 | int numpages; /* number of page-buffers of vtx-chipset */ | 61 | int numpages; /* number of page-buffers of vtx-chipset */ |
62 | int cct_type; /* type of vtx-chipset (SAA5243, SAA5246, SAA5248 or | 62 | int cct_type; /* type of vtx-chipset (SAA5243, SAA5246, SAA5248 or |
63 | * SAA5249) */ | 63 | * SAA5249) */ |
64 | } | 64 | } |
65 | vtx_info_t; | 65 | vtx_info_t; |
66 | 66 | ||
@@ -81,7 +81,7 @@ vtx_info_t; | |||
81 | #define PGMASK_HOUR (HR_TEN | HR_UNIT) | 81 | #define PGMASK_HOUR (HR_TEN | HR_UNIT) |
82 | #define PGMASK_MINUTE (MIN_TEN | MIN_UNIT) | 82 | #define PGMASK_MINUTE (MIN_TEN | MIN_UNIT) |
83 | 83 | ||
84 | typedef struct | 84 | typedef struct |
85 | { | 85 | { |
86 | int page; /* number of requested page (hexadecimal) */ | 86 | int page; /* number of requested page (hexadecimal) */ |
87 | int hour; /* requested hour (hexadecimal) */ | 87 | int hour; /* requested hour (hexadecimal) */ |
@@ -98,11 +98,11 @@ vtx_pagereq_t; | |||
98 | /* | 98 | /* |
99 | * Definitions for VTXIOC{GETSTAT,PUTSTAT} | 99 | * Definitions for VTXIOC{GETSTAT,PUTSTAT} |
100 | */ | 100 | */ |
101 | 101 | ||
102 | #define VTX_PAGESIZE (40 * 24) | 102 | #define VTX_PAGESIZE (40 * 24) |
103 | #define VTX_VIRTUALSIZE (40 * 49) | 103 | #define VTX_VIRTUALSIZE (40 * 49) |
104 | 104 | ||
105 | typedef struct | 105 | typedef struct |
106 | { | 106 | { |
107 | int pagenum; /* number of page (hexadecimal) */ | 107 | int pagenum; /* number of page (hexadecimal) */ |
108 | int hour; /* hour (hexadecimal) */ | 108 | int hour; /* hour (hexadecimal) */ |
@@ -121,5 +121,5 @@ typedef struct | |||
121 | unsigned hamming : 1; /* hamming-error occurred */ | 121 | unsigned hamming : 1; /* hamming-error occurred */ |
122 | } | 122 | } |
123 | vtx_pageinfo_t; | 123 | vtx_pageinfo_t; |
124 | 124 | ||
125 | #endif /* _VTX_H */ | 125 | #endif /* _VTX_H */ |
diff --git a/include/media/audiochip.h b/include/media/audiochip.h index db8823d45a7d..e69de29bb2d1 100644 --- a/include/media/audiochip.h +++ b/include/media/audiochip.h | |||
@@ -1,26 +0,0 @@ | |||
1 | /* | ||
2 | */ | ||
3 | |||
4 | #ifndef AUDIOCHIP_H | ||
5 | #define AUDIOCHIP_H | ||
6 | |||
7 | enum audiochip { | ||
8 | AUDIO_CHIP_NONE, | ||
9 | AUDIO_CHIP_UNKNOWN, | ||
10 | /* Provided by video chip */ | ||
11 | AUDIO_CHIP_INTERNAL, | ||
12 | /* Provided by tvaudio.c */ | ||
13 | AUDIO_CHIP_TDA8425, | ||
14 | AUDIO_CHIP_TEA6300, | ||
15 | AUDIO_CHIP_TEA6420, | ||
16 | AUDIO_CHIP_TDA9840, | ||
17 | AUDIO_CHIP_TDA985X, | ||
18 | AUDIO_CHIP_TDA9874, | ||
19 | AUDIO_CHIP_PIC16C54, | ||
20 | /* Provided by msp3400.c */ | ||
21 | AUDIO_CHIP_MSP34XX, | ||
22 | /* Provided by wm8775.c */ | ||
23 | AUDIO_CHIP_WM8775 | ||
24 | }; | ||
25 | |||
26 | #endif /* AUDIOCHIP_H */ | ||
diff --git a/include/media/saa7146_vv.h b/include/media/saa7146_vv.h index 89c442eb8849..1d104096619c 100644 --- a/include/media/saa7146_vv.h +++ b/include/media/saa7146_vv.h | |||
@@ -2,6 +2,7 @@ | |||
2 | #define __SAA7146_VV__ | 2 | #define __SAA7146_VV__ |
3 | 3 | ||
4 | #include <media/v4l2-common.h> | 4 | #include <media/v4l2-common.h> |
5 | #include <media/v4l2-ioctl.h> | ||
5 | #include <media/saa7146.h> | 6 | #include <media/saa7146.h> |
6 | #include <media/videobuf-dma-sg.h> | 7 | #include <media/videobuf-dma-sg.h> |
7 | 8 | ||
diff --git a/include/media/tveeprom.h b/include/media/tveeprom.h index 5660ea24996b..a8ad75a9152a 100644 --- a/include/media/tveeprom.h +++ b/include/media/tveeprom.h | |||
@@ -3,7 +3,12 @@ | |||
3 | 3 | ||
4 | struct tveeprom { | 4 | struct tveeprom { |
5 | u32 has_radio; | 5 | u32 has_radio; |
6 | u32 has_ir; /* bit 0: IR receiver present, bit 1: IR transmitter (blaster) present. -1 == unknown */ | 6 | /* If has_ir == 0, then it is unknown what the IR capabilities are, |
7 | otherwise: | ||
8 | bit 0: 1 (= IR capabilities are known) | ||
9 | bit 1: IR receiver present | ||
10 | bit 2: IR transmitter (blaster) present */ | ||
11 | u32 has_ir; | ||
7 | u32 has_MAC_address; /* 0: no MAC, 1: MAC present, 2: unknown */ | 12 | u32 has_MAC_address; /* 0: no MAC, 1: MAC present, 2: unknown */ |
8 | 13 | ||
9 | u32 tuner_type; | 14 | u32 tuner_type; |
diff --git a/include/media/v4l2-chip-ident.h b/include/media/v4l2-chip-ident.h index 2a527742701a..41b509babf3f 100644 --- a/include/media/v4l2-chip-ident.h +++ b/include/media/v4l2-chip-ident.h | |||
@@ -90,7 +90,10 @@ enum { | |||
90 | /* module m52790: just ident 52790 */ | 90 | /* module m52790: just ident 52790 */ |
91 | V4L2_IDENT_M52790 = 52790, | 91 | V4L2_IDENT_M52790 = 52790, |
92 | 92 | ||
93 | /* module msp34xx: reserved range 34000-34999 */ | 93 | /* module msp3400: reserved range 34000-34999 and 44000-44999 */ |
94 | V4L2_IDENT_MSPX4XX = 34000, /* generic MSPX4XX identifier, only | ||
95 | use internally (tveeprom.c). */ | ||
96 | |||
94 | V4L2_IDENT_MSP3400B = 34002, | 97 | V4L2_IDENT_MSP3400B = 34002, |
95 | V4L2_IDENT_MSP3410B = 34102, | 98 | V4L2_IDENT_MSP3410B = 34102, |
96 | 99 | ||
@@ -142,7 +145,7 @@ enum { | |||
142 | V4L2_IDENT_MSP3457G = 34577, | 145 | V4L2_IDENT_MSP3457G = 34577, |
143 | V4L2_IDENT_MSP3467G = 34677, | 146 | V4L2_IDENT_MSP3467G = 34677, |
144 | 147 | ||
145 | /* module msp44xx: reserved range 44000-44999 */ | 148 | /* module msp3400: reserved range 34000-34999 and 44000-44999 */ |
146 | V4L2_IDENT_MSP4400G = 44007, | 149 | V4L2_IDENT_MSP4400G = 44007, |
147 | V4L2_IDENT_MSP4410G = 44107, | 150 | V4L2_IDENT_MSP4410G = 44107, |
148 | V4L2_IDENT_MSP4420G = 44207, | 151 | V4L2_IDENT_MSP4420G = 44207, |
diff --git a/include/media/v4l2-common.h b/include/media/v4l2-common.h index 020d05758bd8..07d3a9a575d1 100644 --- a/include/media/v4l2-common.h +++ b/include/media/v4l2-common.h | |||
@@ -28,12 +28,6 @@ | |||
28 | 28 | ||
29 | #include <media/v4l2-dev.h> | 29 | #include <media/v4l2-dev.h> |
30 | 30 | ||
31 | /* v4l debugging and diagnostics */ | ||
32 | |||
33 | /* Debug bitmask flags to be used on V4L2 */ | ||
34 | #define V4L2_DEBUG_IOCTL 0x01 | ||
35 | #define V4L2_DEBUG_IOCTL_ARG 0x02 | ||
36 | |||
37 | /* Common printk constucts for v4l-i2c drivers. These macros create a unique | 31 | /* Common printk constucts for v4l-i2c drivers. These macros create a unique |
38 | prefix consisting of the driver name, the adapter number and the i2c | 32 | prefix consisting of the driver name, the adapter number and the i2c |
39 | address. */ | 33 | address. */ |
@@ -61,21 +55,20 @@ | |||
61 | v4l_client_printk(KERN_DEBUG, client, fmt , ## arg); \ | 55 | v4l_client_printk(KERN_DEBUG, client, fmt , ## arg); \ |
62 | } while (0) | 56 | } while (0) |
63 | 57 | ||
58 | /* ------------------------------------------------------------------------- */ | ||
64 | 59 | ||
65 | /* Use this macro for non-I2C drivers. Pass the driver name as the first arg. */ | 60 | /* Priority helper functions */ |
66 | #define v4l_print_ioctl(name, cmd) \ | ||
67 | do { \ | ||
68 | printk(KERN_DEBUG "%s: ", name); \ | ||
69 | v4l_printk_ioctl(cmd); \ | ||
70 | } while (0) | ||
71 | 61 | ||
72 | /* Use this macro in I2C drivers where 'client' is the struct i2c_client | 62 | struct v4l2_prio_state { |
73 | pointer */ | 63 | atomic_t prios[4]; |
74 | #define v4l_i2c_print_ioctl(client, cmd) \ | 64 | }; |
75 | do { \ | 65 | int v4l2_prio_init(struct v4l2_prio_state *global); |
76 | v4l_client_printk(KERN_DEBUG, client, ""); \ | 66 | int v4l2_prio_change(struct v4l2_prio_state *global, enum v4l2_priority *local, |
77 | v4l_printk_ioctl(cmd); \ | 67 | enum v4l2_priority new); |
78 | } while (0) | 68 | int v4l2_prio_open(struct v4l2_prio_state *global, enum v4l2_priority *local); |
69 | int v4l2_prio_close(struct v4l2_prio_state *global, enum v4l2_priority *local); | ||
70 | enum v4l2_priority v4l2_prio_max(struct v4l2_prio_state *global); | ||
71 | int v4l2_prio_check(struct v4l2_prio_state *global, enum v4l2_priority *local); | ||
79 | 72 | ||
80 | /* ------------------------------------------------------------------------- */ | 73 | /* ------------------------------------------------------------------------- */ |
81 | 74 | ||
diff --git a/include/media/v4l2-dev.h b/include/media/v4l2-dev.h index 33f379b1ecfe..2745e1afc722 100644 --- a/include/media/v4l2-dev.h +++ b/include/media/v4l2-dev.h | |||
@@ -9,7 +9,6 @@ | |||
9 | #ifndef _V4L2_DEV_H | 9 | #ifndef _V4L2_DEV_H |
10 | #define _V4L2_DEV_H | 10 | #define _V4L2_DEV_H |
11 | 11 | ||
12 | #define OBSOLETE_OWNER 1 /* to be removed soon */ | ||
13 | #define OBSOLETE_DEVDATA 1 /* to be removed soon */ | 12 | #define OBSOLETE_DEVDATA 1 /* to be removed soon */ |
14 | 13 | ||
15 | #include <linux/poll.h> | 14 | #include <linux/poll.h> |
@@ -17,11 +16,7 @@ | |||
17 | #include <linux/device.h> | 16 | #include <linux/device.h> |
18 | #include <linux/mutex.h> | 17 | #include <linux/mutex.h> |
19 | #include <linux/compiler.h> /* need __user */ | 18 | #include <linux/compiler.h> /* need __user */ |
20 | #ifdef CONFIG_VIDEO_V4L1_COMPAT | ||
21 | #include <linux/videodev.h> | ||
22 | #else | ||
23 | #include <linux/videodev2.h> | 19 | #include <linux/videodev2.h> |
24 | #endif | ||
25 | 20 | ||
26 | #define VIDEO_MAJOR 81 | 21 | #define VIDEO_MAJOR 81 |
27 | /* Minor device allocation */ | 22 | /* Minor device allocation */ |
@@ -39,42 +34,7 @@ | |||
39 | #define VFL_TYPE_RADIO 2 | 34 | #define VFL_TYPE_RADIO 2 |
40 | #define VFL_TYPE_VTX 3 | 35 | #define VFL_TYPE_VTX 3 |
41 | 36 | ||
42 | /* Video standard functions */ | 37 | struct v4l2_ioctl_callbacks; |
43 | extern const char *v4l2_norm_to_name(v4l2_std_id id); | ||
44 | extern int v4l2_video_std_construct(struct v4l2_standard *vs, | ||
45 | int id, const char *name); | ||
46 | /* Prints the ioctl in a human-readable format */ | ||
47 | extern void v4l_printk_ioctl(unsigned int cmd); | ||
48 | |||
49 | /* prority handling */ | ||
50 | struct v4l2_prio_state { | ||
51 | atomic_t prios[4]; | ||
52 | }; | ||
53 | int v4l2_prio_init(struct v4l2_prio_state *global); | ||
54 | int v4l2_prio_change(struct v4l2_prio_state *global, enum v4l2_priority *local, | ||
55 | enum v4l2_priority new); | ||
56 | int v4l2_prio_open(struct v4l2_prio_state *global, enum v4l2_priority *local); | ||
57 | int v4l2_prio_close(struct v4l2_prio_state *global, enum v4l2_priority *local); | ||
58 | enum v4l2_priority v4l2_prio_max(struct v4l2_prio_state *global); | ||
59 | int v4l2_prio_check(struct v4l2_prio_state *global, enum v4l2_priority *local); | ||
60 | |||
61 | /* names for fancy debug output */ | ||
62 | extern const char *v4l2_field_names[]; | ||
63 | extern const char *v4l2_type_names[]; | ||
64 | |||
65 | /* Compatibility layer interface -- v4l1-compat module */ | ||
66 | typedef int (*v4l2_kioctl)(struct inode *inode, struct file *file, | ||
67 | unsigned int cmd, void *arg); | ||
68 | #ifdef CONFIG_VIDEO_V4L1_COMPAT | ||
69 | int v4l_compat_translate_ioctl(struct inode *inode, struct file *file, | ||
70 | int cmd, void *arg, v4l2_kioctl driver_ioctl); | ||
71 | #else | ||
72 | #define v4l_compat_translate_ioctl(inode,file,cmd,arg,ioctl) -EINVAL | ||
73 | #endif | ||
74 | |||
75 | /* 32 Bits compatibility layer for 64 bits processors */ | ||
76 | extern long v4l_compat_ioctl32(struct file *file, unsigned int cmd, | ||
77 | unsigned long arg); | ||
78 | 38 | ||
79 | /* | 39 | /* |
80 | * Newer version of video_device, handled by videodev2.c | 40 | * Newer version of video_device, handled by videodev2.c |
@@ -88,18 +48,17 @@ struct video_device | |||
88 | const struct file_operations *fops; | 48 | const struct file_operations *fops; |
89 | 49 | ||
90 | /* sysfs */ | 50 | /* sysfs */ |
91 | struct device class_dev; /* v4l device */ | 51 | struct device dev; /* v4l device */ |
92 | struct device *dev; /* device parent */ | 52 | struct device *parent; /* device parent */ |
93 | 53 | ||
94 | /* device info */ | 54 | /* device info */ |
95 | char name[32]; | 55 | char name[32]; |
96 | int type; /* v4l1 */ | 56 | int vfl_type; |
97 | int type2; /* v4l2 */ | ||
98 | int minor; | 57 | int minor; |
99 | /* attribute to diferentiate multiple indexs on one physical device */ | 58 | /* attribute to differentiate multiple indices on one physical device */ |
100 | int index; | 59 | int index; |
101 | 60 | ||
102 | int debug; /* Activates debug level*/ | 61 | int debug; /* Activates debug level*/ |
103 | 62 | ||
104 | /* Video standard vars */ | 63 | /* Video standard vars */ |
105 | v4l2_std_id tvnorms; /* Supported tv norms */ | 64 | v4l2_std_id tvnorms; /* Supported tv norms */ |
@@ -109,285 +68,36 @@ struct video_device | |||
109 | void (*release)(struct video_device *vfd); | 68 | void (*release)(struct video_device *vfd); |
110 | 69 | ||
111 | /* ioctl callbacks */ | 70 | /* ioctl callbacks */ |
71 | const struct v4l2_ioctl_ops *ioctl_ops; | ||
112 | 72 | ||
113 | /* VIDIOC_QUERYCAP handler */ | 73 | #ifdef OBSOLETE_DEVDATA /* to be removed soon */ |
114 | int (*vidioc_querycap)(struct file *file, void *fh, struct v4l2_capability *cap); | 74 | /* dev->driver_data will be used instead some day. |
115 | 75 | * Use the video_{get|set}_drvdata() helper functions, | |
116 | /* Priority handling */ | 76 | * so the switch over will be transparent for you. |
117 | int (*vidioc_g_priority) (struct file *file, void *fh, | 77 | * Or use {pci|usb}_{get|set}_drvdata() directly. */ |
118 | enum v4l2_priority *p); | 78 | void *priv; |
119 | int (*vidioc_s_priority) (struct file *file, void *fh, | ||
120 | enum v4l2_priority p); | ||
121 | |||
122 | /* VIDIOC_ENUM_FMT handlers */ | ||
123 | int (*vidioc_enum_fmt_vid_cap) (struct file *file, void *fh, | ||
124 | struct v4l2_fmtdesc *f); | ||
125 | int (*vidioc_enum_fmt_vid_overlay) (struct file *file, void *fh, | ||
126 | struct v4l2_fmtdesc *f); | ||
127 | int (*vidioc_enum_fmt_vid_out) (struct file *file, void *fh, | ||
128 | struct v4l2_fmtdesc *f); | ||
129 | #if 1 | ||
130 | /* deprecated, will be removed in 2.6.28 */ | ||
131 | int (*vidioc_enum_fmt_vbi_cap) (struct file *file, void *fh, | ||
132 | struct v4l2_fmtdesc *f); | ||
133 | #endif | ||
134 | int (*vidioc_enum_fmt_type_private)(struct file *file, void *fh, | ||
135 | struct v4l2_fmtdesc *f); | ||
136 | |||
137 | /* VIDIOC_G_FMT handlers */ | ||
138 | int (*vidioc_g_fmt_vid_cap) (struct file *file, void *fh, | ||
139 | struct v4l2_format *f); | ||
140 | int (*vidioc_g_fmt_vid_overlay)(struct file *file, void *fh, | ||
141 | struct v4l2_format *f); | ||
142 | int (*vidioc_g_fmt_vid_out) (struct file *file, void *fh, | ||
143 | struct v4l2_format *f); | ||
144 | int (*vidioc_g_fmt_vid_out_overlay)(struct file *file, void *fh, | ||
145 | struct v4l2_format *f); | ||
146 | int (*vidioc_g_fmt_vbi_cap) (struct file *file, void *fh, | ||
147 | struct v4l2_format *f); | ||
148 | int (*vidioc_g_fmt_vbi_out) (struct file *file, void *fh, | ||
149 | struct v4l2_format *f); | ||
150 | int (*vidioc_g_fmt_sliced_vbi_cap)(struct file *file, void *fh, | ||
151 | struct v4l2_format *f); | ||
152 | int (*vidioc_g_fmt_sliced_vbi_out)(struct file *file, void *fh, | ||
153 | struct v4l2_format *f); | ||
154 | int (*vidioc_g_fmt_type_private)(struct file *file, void *fh, | ||
155 | struct v4l2_format *f); | ||
156 | |||
157 | /* VIDIOC_S_FMT handlers */ | ||
158 | int (*vidioc_s_fmt_vid_cap) (struct file *file, void *fh, | ||
159 | struct v4l2_format *f); | ||
160 | int (*vidioc_s_fmt_vid_overlay)(struct file *file, void *fh, | ||
161 | struct v4l2_format *f); | ||
162 | int (*vidioc_s_fmt_vid_out) (struct file *file, void *fh, | ||
163 | struct v4l2_format *f); | ||
164 | int (*vidioc_s_fmt_vid_out_overlay)(struct file *file, void *fh, | ||
165 | struct v4l2_format *f); | ||
166 | int (*vidioc_s_fmt_vbi_cap) (struct file *file, void *fh, | ||
167 | struct v4l2_format *f); | ||
168 | int (*vidioc_s_fmt_vbi_out) (struct file *file, void *fh, | ||
169 | struct v4l2_format *f); | ||
170 | int (*vidioc_s_fmt_sliced_vbi_cap)(struct file *file, void *fh, | ||
171 | struct v4l2_format *f); | ||
172 | int (*vidioc_s_fmt_sliced_vbi_out)(struct file *file, void *fh, | ||
173 | struct v4l2_format *f); | ||
174 | int (*vidioc_s_fmt_type_private)(struct file *file, void *fh, | ||
175 | struct v4l2_format *f); | ||
176 | |||
177 | /* VIDIOC_TRY_FMT handlers */ | ||
178 | int (*vidioc_try_fmt_vid_cap) (struct file *file, void *fh, | ||
179 | struct v4l2_format *f); | ||
180 | int (*vidioc_try_fmt_vid_overlay)(struct file *file, void *fh, | ||
181 | struct v4l2_format *f); | ||
182 | int (*vidioc_try_fmt_vid_out) (struct file *file, void *fh, | ||
183 | struct v4l2_format *f); | ||
184 | int (*vidioc_try_fmt_vid_out_overlay)(struct file *file, void *fh, | ||
185 | struct v4l2_format *f); | ||
186 | int (*vidioc_try_fmt_vbi_cap) (struct file *file, void *fh, | ||
187 | struct v4l2_format *f); | ||
188 | int (*vidioc_try_fmt_vbi_out) (struct file *file, void *fh, | ||
189 | struct v4l2_format *f); | ||
190 | int (*vidioc_try_fmt_sliced_vbi_cap)(struct file *file, void *fh, | ||
191 | struct v4l2_format *f); | ||
192 | int (*vidioc_try_fmt_sliced_vbi_out)(struct file *file, void *fh, | ||
193 | struct v4l2_format *f); | ||
194 | int (*vidioc_try_fmt_type_private)(struct file *file, void *fh, | ||
195 | struct v4l2_format *f); | ||
196 | |||
197 | /* Buffer handlers */ | ||
198 | int (*vidioc_reqbufs) (struct file *file, void *fh, struct v4l2_requestbuffers *b); | ||
199 | int (*vidioc_querybuf)(struct file *file, void *fh, struct v4l2_buffer *b); | ||
200 | int (*vidioc_qbuf) (struct file *file, void *fh, struct v4l2_buffer *b); | ||
201 | int (*vidioc_dqbuf) (struct file *file, void *fh, struct v4l2_buffer *b); | ||
202 | |||
203 | |||
204 | int (*vidioc_overlay) (struct file *file, void *fh, unsigned int i); | ||
205 | #ifdef CONFIG_VIDEO_V4L1_COMPAT | ||
206 | /* buffer type is struct vidio_mbuf * */ | ||
207 | int (*vidiocgmbuf) (struct file *file, void *fh, struct video_mbuf *p); | ||
208 | #endif | ||
209 | int (*vidioc_g_fbuf) (struct file *file, void *fh, | ||
210 | struct v4l2_framebuffer *a); | ||
211 | int (*vidioc_s_fbuf) (struct file *file, void *fh, | ||
212 | struct v4l2_framebuffer *a); | ||
213 | |||
214 | /* Stream on/off */ | ||
215 | int (*vidioc_streamon) (struct file *file, void *fh, enum v4l2_buf_type i); | ||
216 | int (*vidioc_streamoff)(struct file *file, void *fh, enum v4l2_buf_type i); | ||
217 | |||
218 | /* Standard handling | ||
219 | ENUMSTD is handled by videodev.c | ||
220 | */ | ||
221 | int (*vidioc_g_std) (struct file *file, void *fh, v4l2_std_id *norm); | ||
222 | int (*vidioc_s_std) (struct file *file, void *fh, v4l2_std_id *norm); | ||
223 | int (*vidioc_querystd) (struct file *file, void *fh, v4l2_std_id *a); | ||
224 | |||
225 | /* Input handling */ | ||
226 | int (*vidioc_enum_input)(struct file *file, void *fh, | ||
227 | struct v4l2_input *inp); | ||
228 | int (*vidioc_g_input) (struct file *file, void *fh, unsigned int *i); | ||
229 | int (*vidioc_s_input) (struct file *file, void *fh, unsigned int i); | ||
230 | |||
231 | /* Output handling */ | ||
232 | int (*vidioc_enum_output) (struct file *file, void *fh, | ||
233 | struct v4l2_output *a); | ||
234 | int (*vidioc_g_output) (struct file *file, void *fh, unsigned int *i); | ||
235 | int (*vidioc_s_output) (struct file *file, void *fh, unsigned int i); | ||
236 | |||
237 | /* Control handling */ | ||
238 | int (*vidioc_queryctrl) (struct file *file, void *fh, | ||
239 | struct v4l2_queryctrl *a); | ||
240 | int (*vidioc_g_ctrl) (struct file *file, void *fh, | ||
241 | struct v4l2_control *a); | ||
242 | int (*vidioc_s_ctrl) (struct file *file, void *fh, | ||
243 | struct v4l2_control *a); | ||
244 | int (*vidioc_g_ext_ctrls) (struct file *file, void *fh, | ||
245 | struct v4l2_ext_controls *a); | ||
246 | int (*vidioc_s_ext_ctrls) (struct file *file, void *fh, | ||
247 | struct v4l2_ext_controls *a); | ||
248 | int (*vidioc_try_ext_ctrls) (struct file *file, void *fh, | ||
249 | struct v4l2_ext_controls *a); | ||
250 | int (*vidioc_querymenu) (struct file *file, void *fh, | ||
251 | struct v4l2_querymenu *a); | ||
252 | |||
253 | /* Audio ioctls */ | ||
254 | int (*vidioc_enumaudio) (struct file *file, void *fh, | ||
255 | struct v4l2_audio *a); | ||
256 | int (*vidioc_g_audio) (struct file *file, void *fh, | ||
257 | struct v4l2_audio *a); | ||
258 | int (*vidioc_s_audio) (struct file *file, void *fh, | ||
259 | struct v4l2_audio *a); | ||
260 | |||
261 | /* Audio out ioctls */ | ||
262 | int (*vidioc_enumaudout) (struct file *file, void *fh, | ||
263 | struct v4l2_audioout *a); | ||
264 | int (*vidioc_g_audout) (struct file *file, void *fh, | ||
265 | struct v4l2_audioout *a); | ||
266 | int (*vidioc_s_audout) (struct file *file, void *fh, | ||
267 | struct v4l2_audioout *a); | ||
268 | int (*vidioc_g_modulator) (struct file *file, void *fh, | ||
269 | struct v4l2_modulator *a); | ||
270 | int (*vidioc_s_modulator) (struct file *file, void *fh, | ||
271 | struct v4l2_modulator *a); | ||
272 | /* Crop ioctls */ | ||
273 | int (*vidioc_cropcap) (struct file *file, void *fh, | ||
274 | struct v4l2_cropcap *a); | ||
275 | int (*vidioc_g_crop) (struct file *file, void *fh, | ||
276 | struct v4l2_crop *a); | ||
277 | int (*vidioc_s_crop) (struct file *file, void *fh, | ||
278 | struct v4l2_crop *a); | ||
279 | /* Compression ioctls */ | ||
280 | int (*vidioc_g_jpegcomp) (struct file *file, void *fh, | ||
281 | struct v4l2_jpegcompression *a); | ||
282 | int (*vidioc_s_jpegcomp) (struct file *file, void *fh, | ||
283 | struct v4l2_jpegcompression *a); | ||
284 | int (*vidioc_g_enc_index) (struct file *file, void *fh, | ||
285 | struct v4l2_enc_idx *a); | ||
286 | int (*vidioc_encoder_cmd) (struct file *file, void *fh, | ||
287 | struct v4l2_encoder_cmd *a); | ||
288 | int (*vidioc_try_encoder_cmd) (struct file *file, void *fh, | ||
289 | struct v4l2_encoder_cmd *a); | ||
290 | |||
291 | /* Stream type-dependent parameter ioctls */ | ||
292 | int (*vidioc_g_parm) (struct file *file, void *fh, | ||
293 | struct v4l2_streamparm *a); | ||
294 | int (*vidioc_s_parm) (struct file *file, void *fh, | ||
295 | struct v4l2_streamparm *a); | ||
296 | |||
297 | /* Tuner ioctls */ | ||
298 | int (*vidioc_g_tuner) (struct file *file, void *fh, | ||
299 | struct v4l2_tuner *a); | ||
300 | int (*vidioc_s_tuner) (struct file *file, void *fh, | ||
301 | struct v4l2_tuner *a); | ||
302 | int (*vidioc_g_frequency) (struct file *file, void *fh, | ||
303 | struct v4l2_frequency *a); | ||
304 | int (*vidioc_s_frequency) (struct file *file, void *fh, | ||
305 | struct v4l2_frequency *a); | ||
306 | |||
307 | /* Sliced VBI cap */ | ||
308 | int (*vidioc_g_sliced_vbi_cap) (struct file *file, void *fh, | ||
309 | struct v4l2_sliced_vbi_cap *a); | ||
310 | |||
311 | /* Log status ioctl */ | ||
312 | int (*vidioc_log_status) (struct file *file, void *fh); | ||
313 | |||
314 | int (*vidioc_s_hw_freq_seek) (struct file *file, void *fh, | ||
315 | struct v4l2_hw_freq_seek *a); | ||
316 | |||
317 | /* Debugging ioctls */ | ||
318 | #ifdef CONFIG_VIDEO_ADV_DEBUG | ||
319 | int (*vidioc_g_register) (struct file *file, void *fh, | ||
320 | struct v4l2_register *reg); | ||
321 | int (*vidioc_s_register) (struct file *file, void *fh, | ||
322 | struct v4l2_register *reg); | ||
323 | #endif | ||
324 | int (*vidioc_g_chip_ident) (struct file *file, void *fh, | ||
325 | struct v4l2_chip_ident *chip); | ||
326 | |||
327 | /* For other private ioctls */ | ||
328 | int (*vidioc_default) (struct file *file, void *fh, | ||
329 | int cmd, void *arg); | ||
330 | |||
331 | |||
332 | #ifdef OBSOLETE_OWNER /* to be removed soon */ | ||
333 | /* obsolete -- fops->owner is used instead */ | ||
334 | struct module *owner; | ||
335 | /* dev->driver_data will be used instead some day. | ||
336 | * Use the video_{get|set}_drvdata() helper functions, | ||
337 | * so the switch over will be transparent for you. | ||
338 | * Or use {pci|usb}_{get|set}_drvdata() directly. */ | ||
339 | void *priv; | ||
340 | #endif | 79 | #endif |
341 | 80 | ||
342 | /* for videodev.c intenal usage -- please don't touch */ | 81 | /* for videodev.c internal usage -- please don't touch */ |
343 | int users; /* video_exclusive_{open|close} ... */ | 82 | int users; /* video_exclusive_{open|close} ... */ |
344 | struct mutex lock; /* ... helper function uses these */ | 83 | struct mutex lock; /* ... helper function uses these */ |
345 | }; | 84 | }; |
346 | 85 | ||
347 | /* Class-dev to video-device */ | 86 | /* Class-dev to video-device */ |
348 | #define to_video_device(cd) container_of(cd, struct video_device, class_dev) | 87 | #define to_video_device(cd) container_of(cd, struct video_device, dev) |
349 | 88 | ||
350 | /* Version 2 functions */ | 89 | /* Version 2 functions */ |
351 | extern int video_register_device(struct video_device *vfd, int type, int nr); | 90 | extern int video_register_device(struct video_device *vfd, int type, int nr); |
352 | int video_register_device_index(struct video_device *vfd, int type, int nr, | 91 | int video_register_device_index(struct video_device *vfd, int type, int nr, |
353 | int index); | 92 | int index); |
354 | void video_unregister_device(struct video_device *); | 93 | void video_unregister_device(struct video_device *); |
355 | extern int video_ioctl2(struct inode *inode, struct file *file, | ||
356 | unsigned int cmd, unsigned long arg); | ||
357 | 94 | ||
358 | /* helper functions to alloc / release struct video_device, the | 95 | /* helper functions to alloc / release struct video_device, the |
359 | later can be used for video_device->release() */ | 96 | later can be used for video_device->release() */ |
360 | struct video_device *video_device_alloc(void); | 97 | struct video_device *video_device_alloc(void); |
361 | void video_device_release(struct video_device *vfd); | 98 | void video_device_release(struct video_device *vfd); |
362 | 99 | ||
363 | /* Include support for obsoleted stuff */ | 100 | #ifdef OBSOLETE_DEVDATA /* to be removed soon */ |
364 | extern int video_usercopy(struct inode *inode, struct file *file, | ||
365 | unsigned int cmd, unsigned long arg, | ||
366 | int (*func)(struct inode *inode, struct file *file, | ||
367 | unsigned int cmd, void *arg)); | ||
368 | |||
369 | #ifdef CONFIG_VIDEO_V4L1_COMPAT | ||
370 | #include <linux/mm.h> | ||
371 | |||
372 | static inline int __must_check | ||
373 | video_device_create_file(struct video_device *vfd, | ||
374 | struct device_attribute *attr) | ||
375 | { | ||
376 | int ret = device_create_file(&vfd->class_dev, attr); | ||
377 | if (ret < 0) | ||
378 | printk(KERN_WARNING "%s error: %d\n", __func__, ret); | ||
379 | return ret; | ||
380 | } | ||
381 | static inline void | ||
382 | video_device_remove_file(struct video_device *vfd, | ||
383 | struct device_attribute *attr) | ||
384 | { | ||
385 | device_remove_file(&vfd->class_dev, attr); | ||
386 | } | ||
387 | |||
388 | #endif /* CONFIG_VIDEO_V4L1_COMPAT */ | ||
389 | |||
390 | #ifdef OBSOLETE_OWNER /* to be removed soon */ | ||
391 | /* helper functions to access driver private data. */ | 101 | /* helper functions to access driver private data. */ |
392 | static inline void *video_get_drvdata(struct video_device *dev) | 102 | static inline void *video_get_drvdata(struct video_device *dev) |
393 | { | 103 | { |
@@ -399,9 +109,6 @@ static inline void video_set_drvdata(struct video_device *dev, void *data) | |||
399 | dev->priv = data; | 109 | dev->priv = data; |
400 | } | 110 | } |
401 | 111 | ||
402 | #endif | ||
403 | |||
404 | #ifdef OBSOLETE_DEVDATA /* to be removed soon */ | ||
405 | /* Obsolete stuff - Still needed for radio devices and obsolete drivers */ | 112 | /* Obsolete stuff - Still needed for radio devices and obsolete drivers */ |
406 | extern struct video_device* video_devdata(struct file*); | 113 | extern struct video_device* video_devdata(struct file*); |
407 | extern int video_exclusive_open(struct inode *inode, struct file *file); | 114 | extern int video_exclusive_open(struct inode *inode, struct file *file); |
diff --git a/include/media/v4l2-ioctl.h b/include/media/v4l2-ioctl.h new file mode 100644 index 000000000000..dc6404618555 --- /dev/null +++ b/include/media/v4l2-ioctl.h | |||
@@ -0,0 +1,301 @@ | |||
1 | /* | ||
2 | * | ||
3 | * V 4 L 2 D R I V E R H E L P E R A P I | ||
4 | * | ||
5 | * Moved from videodev2.h | ||
6 | * | ||
7 | * Some commonly needed functions for drivers (v4l2-common.o module) | ||
8 | */ | ||
9 | #ifndef _V4L2_IOCTL_H | ||
10 | #define _V4L2_IOCTL_H | ||
11 | |||
12 | #include <linux/poll.h> | ||
13 | #include <linux/fs.h> | ||
14 | #include <linux/device.h> | ||
15 | #include <linux/mutex.h> | ||
16 | #include <linux/compiler.h> /* need __user */ | ||
17 | #ifdef CONFIG_VIDEO_V4L1_COMPAT | ||
18 | #include <linux/videodev.h> | ||
19 | #else | ||
20 | #include <linux/videodev2.h> | ||
21 | #endif | ||
22 | |||
23 | struct v4l2_ioctl_ops { | ||
24 | /* ioctl callbacks */ | ||
25 | |||
26 | /* VIDIOC_QUERYCAP handler */ | ||
27 | int (*vidioc_querycap)(struct file *file, void *fh, struct v4l2_capability *cap); | ||
28 | |||
29 | /* Priority handling */ | ||
30 | int (*vidioc_g_priority) (struct file *file, void *fh, | ||
31 | enum v4l2_priority *p); | ||
32 | int (*vidioc_s_priority) (struct file *file, void *fh, | ||
33 | enum v4l2_priority p); | ||
34 | |||
35 | /* VIDIOC_ENUM_FMT handlers */ | ||
36 | int (*vidioc_enum_fmt_vid_cap) (struct file *file, void *fh, | ||
37 | struct v4l2_fmtdesc *f); | ||
38 | int (*vidioc_enum_fmt_vid_overlay) (struct file *file, void *fh, | ||
39 | struct v4l2_fmtdesc *f); | ||
40 | int (*vidioc_enum_fmt_vid_out) (struct file *file, void *fh, | ||
41 | struct v4l2_fmtdesc *f); | ||
42 | #if 1 | ||
43 | /* deprecated, will be removed in 2.6.28 */ | ||
44 | int (*vidioc_enum_fmt_vbi_cap) (struct file *file, void *fh, | ||
45 | struct v4l2_fmtdesc *f); | ||
46 | #endif | ||
47 | int (*vidioc_enum_fmt_type_private)(struct file *file, void *fh, | ||
48 | struct v4l2_fmtdesc *f); | ||
49 | |||
50 | /* VIDIOC_G_FMT handlers */ | ||
51 | int (*vidioc_g_fmt_vid_cap) (struct file *file, void *fh, | ||
52 | struct v4l2_format *f); | ||
53 | int (*vidioc_g_fmt_vid_overlay)(struct file *file, void *fh, | ||
54 | struct v4l2_format *f); | ||
55 | int (*vidioc_g_fmt_vid_out) (struct file *file, void *fh, | ||
56 | struct v4l2_format *f); | ||
57 | int (*vidioc_g_fmt_vid_out_overlay)(struct file *file, void *fh, | ||
58 | struct v4l2_format *f); | ||
59 | int (*vidioc_g_fmt_vbi_cap) (struct file *file, void *fh, | ||
60 | struct v4l2_format *f); | ||
61 | int (*vidioc_g_fmt_vbi_out) (struct file *file, void *fh, | ||
62 | struct v4l2_format *f); | ||
63 | int (*vidioc_g_fmt_sliced_vbi_cap)(struct file *file, void *fh, | ||
64 | struct v4l2_format *f); | ||
65 | int (*vidioc_g_fmt_sliced_vbi_out)(struct file *file, void *fh, | ||
66 | struct v4l2_format *f); | ||
67 | int (*vidioc_g_fmt_type_private)(struct file *file, void *fh, | ||
68 | struct v4l2_format *f); | ||
69 | |||
70 | /* VIDIOC_S_FMT handlers */ | ||
71 | int (*vidioc_s_fmt_vid_cap) (struct file *file, void *fh, | ||
72 | struct v4l2_format *f); | ||
73 | int (*vidioc_s_fmt_vid_overlay)(struct file *file, void *fh, | ||
74 | struct v4l2_format *f); | ||
75 | int (*vidioc_s_fmt_vid_out) (struct file *file, void *fh, | ||
76 | struct v4l2_format *f); | ||
77 | int (*vidioc_s_fmt_vid_out_overlay)(struct file *file, void *fh, | ||
78 | struct v4l2_format *f); | ||
79 | int (*vidioc_s_fmt_vbi_cap) (struct file *file, void *fh, | ||
80 | struct v4l2_format *f); | ||
81 | int (*vidioc_s_fmt_vbi_out) (struct file *file, void *fh, | ||
82 | struct v4l2_format *f); | ||
83 | int (*vidioc_s_fmt_sliced_vbi_cap)(struct file *file, void *fh, | ||
84 | struct v4l2_format *f); | ||
85 | int (*vidioc_s_fmt_sliced_vbi_out)(struct file *file, void *fh, | ||
86 | struct v4l2_format *f); | ||
87 | int (*vidioc_s_fmt_type_private)(struct file *file, void *fh, | ||
88 | struct v4l2_format *f); | ||
89 | |||
90 | /* VIDIOC_TRY_FMT handlers */ | ||
91 | int (*vidioc_try_fmt_vid_cap) (struct file *file, void *fh, | ||
92 | struct v4l2_format *f); | ||
93 | int (*vidioc_try_fmt_vid_overlay)(struct file *file, void *fh, | ||
94 | struct v4l2_format *f); | ||
95 | int (*vidioc_try_fmt_vid_out) (struct file *file, void *fh, | ||
96 | struct v4l2_format *f); | ||
97 | int (*vidioc_try_fmt_vid_out_overlay)(struct file *file, void *fh, | ||
98 | struct v4l2_format *f); | ||
99 | int (*vidioc_try_fmt_vbi_cap) (struct file *file, void *fh, | ||
100 | struct v4l2_format *f); | ||
101 | int (*vidioc_try_fmt_vbi_out) (struct file *file, void *fh, | ||
102 | struct v4l2_format *f); | ||
103 | int (*vidioc_try_fmt_sliced_vbi_cap)(struct file *file, void *fh, | ||
104 | struct v4l2_format *f); | ||
105 | int (*vidioc_try_fmt_sliced_vbi_out)(struct file *file, void *fh, | ||
106 | struct v4l2_format *f); | ||
107 | int (*vidioc_try_fmt_type_private)(struct file *file, void *fh, | ||
108 | struct v4l2_format *f); | ||
109 | |||
110 | /* Buffer handlers */ | ||
111 | int (*vidioc_reqbufs) (struct file *file, void *fh, struct v4l2_requestbuffers *b); | ||
112 | int (*vidioc_querybuf)(struct file *file, void *fh, struct v4l2_buffer *b); | ||
113 | int (*vidioc_qbuf) (struct file *file, void *fh, struct v4l2_buffer *b); | ||
114 | int (*vidioc_dqbuf) (struct file *file, void *fh, struct v4l2_buffer *b); | ||
115 | |||
116 | |||
117 | int (*vidioc_overlay) (struct file *file, void *fh, unsigned int i); | ||
118 | #ifdef CONFIG_VIDEO_V4L1_COMPAT | ||
119 | /* buffer type is struct vidio_mbuf * */ | ||
120 | int (*vidiocgmbuf) (struct file *file, void *fh, struct video_mbuf *p); | ||
121 | #endif | ||
122 | int (*vidioc_g_fbuf) (struct file *file, void *fh, | ||
123 | struct v4l2_framebuffer *a); | ||
124 | int (*vidioc_s_fbuf) (struct file *file, void *fh, | ||
125 | struct v4l2_framebuffer *a); | ||
126 | |||
127 | /* Stream on/off */ | ||
128 | int (*vidioc_streamon) (struct file *file, void *fh, enum v4l2_buf_type i); | ||
129 | int (*vidioc_streamoff)(struct file *file, void *fh, enum v4l2_buf_type i); | ||
130 | |||
131 | /* Standard handling | ||
132 | ENUMSTD is handled by videodev.c | ||
133 | */ | ||
134 | int (*vidioc_g_std) (struct file *file, void *fh, v4l2_std_id *norm); | ||
135 | int (*vidioc_s_std) (struct file *file, void *fh, v4l2_std_id *norm); | ||
136 | int (*vidioc_querystd) (struct file *file, void *fh, v4l2_std_id *a); | ||
137 | |||
138 | /* Input handling */ | ||
139 | int (*vidioc_enum_input)(struct file *file, void *fh, | ||
140 | struct v4l2_input *inp); | ||
141 | int (*vidioc_g_input) (struct file *file, void *fh, unsigned int *i); | ||
142 | int (*vidioc_s_input) (struct file *file, void *fh, unsigned int i); | ||
143 | |||
144 | /* Output handling */ | ||
145 | int (*vidioc_enum_output) (struct file *file, void *fh, | ||
146 | struct v4l2_output *a); | ||
147 | int (*vidioc_g_output) (struct file *file, void *fh, unsigned int *i); | ||
148 | int (*vidioc_s_output) (struct file *file, void *fh, unsigned int i); | ||
149 | |||
150 | /* Control handling */ | ||
151 | int (*vidioc_queryctrl) (struct file *file, void *fh, | ||
152 | struct v4l2_queryctrl *a); | ||
153 | int (*vidioc_g_ctrl) (struct file *file, void *fh, | ||
154 | struct v4l2_control *a); | ||
155 | int (*vidioc_s_ctrl) (struct file *file, void *fh, | ||
156 | struct v4l2_control *a); | ||
157 | int (*vidioc_g_ext_ctrls) (struct file *file, void *fh, | ||
158 | struct v4l2_ext_controls *a); | ||
159 | int (*vidioc_s_ext_ctrls) (struct file *file, void *fh, | ||
160 | struct v4l2_ext_controls *a); | ||
161 | int (*vidioc_try_ext_ctrls) (struct file *file, void *fh, | ||
162 | struct v4l2_ext_controls *a); | ||
163 | int (*vidioc_querymenu) (struct file *file, void *fh, | ||
164 | struct v4l2_querymenu *a); | ||
165 | |||
166 | /* Audio ioctls */ | ||
167 | int (*vidioc_enumaudio) (struct file *file, void *fh, | ||
168 | struct v4l2_audio *a); | ||
169 | int (*vidioc_g_audio) (struct file *file, void *fh, | ||
170 | struct v4l2_audio *a); | ||
171 | int (*vidioc_s_audio) (struct file *file, void *fh, | ||
172 | struct v4l2_audio *a); | ||
173 | |||
174 | /* Audio out ioctls */ | ||
175 | int (*vidioc_enumaudout) (struct file *file, void *fh, | ||
176 | struct v4l2_audioout *a); | ||
177 | int (*vidioc_g_audout) (struct file *file, void *fh, | ||
178 | struct v4l2_audioout *a); | ||
179 | int (*vidioc_s_audout) (struct file *file, void *fh, | ||
180 | struct v4l2_audioout *a); | ||
181 | int (*vidioc_g_modulator) (struct file *file, void *fh, | ||
182 | struct v4l2_modulator *a); | ||
183 | int (*vidioc_s_modulator) (struct file *file, void *fh, | ||
184 | struct v4l2_modulator *a); | ||
185 | /* Crop ioctls */ | ||
186 | int (*vidioc_cropcap) (struct file *file, void *fh, | ||
187 | struct v4l2_cropcap *a); | ||
188 | int (*vidioc_g_crop) (struct file *file, void *fh, | ||
189 | struct v4l2_crop *a); | ||
190 | int (*vidioc_s_crop) (struct file *file, void *fh, | ||
191 | struct v4l2_crop *a); | ||
192 | /* Compression ioctls */ | ||
193 | int (*vidioc_g_jpegcomp) (struct file *file, void *fh, | ||
194 | struct v4l2_jpegcompression *a); | ||
195 | int (*vidioc_s_jpegcomp) (struct file *file, void *fh, | ||
196 | struct v4l2_jpegcompression *a); | ||
197 | int (*vidioc_g_enc_index) (struct file *file, void *fh, | ||
198 | struct v4l2_enc_idx *a); | ||
199 | int (*vidioc_encoder_cmd) (struct file *file, void *fh, | ||
200 | struct v4l2_encoder_cmd *a); | ||
201 | int (*vidioc_try_encoder_cmd) (struct file *file, void *fh, | ||
202 | struct v4l2_encoder_cmd *a); | ||
203 | |||
204 | /* Stream type-dependent parameter ioctls */ | ||
205 | int (*vidioc_g_parm) (struct file *file, void *fh, | ||
206 | struct v4l2_streamparm *a); | ||
207 | int (*vidioc_s_parm) (struct file *file, void *fh, | ||
208 | struct v4l2_streamparm *a); | ||
209 | |||
210 | /* Tuner ioctls */ | ||
211 | int (*vidioc_g_tuner) (struct file *file, void *fh, | ||
212 | struct v4l2_tuner *a); | ||
213 | int (*vidioc_s_tuner) (struct file *file, void *fh, | ||
214 | struct v4l2_tuner *a); | ||
215 | int (*vidioc_g_frequency) (struct file *file, void *fh, | ||
216 | struct v4l2_frequency *a); | ||
217 | int (*vidioc_s_frequency) (struct file *file, void *fh, | ||
218 | struct v4l2_frequency *a); | ||
219 | |||
220 | /* Sliced VBI cap */ | ||
221 | int (*vidioc_g_sliced_vbi_cap) (struct file *file, void *fh, | ||
222 | struct v4l2_sliced_vbi_cap *a); | ||
223 | |||
224 | /* Log status ioctl */ | ||
225 | int (*vidioc_log_status) (struct file *file, void *fh); | ||
226 | |||
227 | int (*vidioc_s_hw_freq_seek) (struct file *file, void *fh, | ||
228 | struct v4l2_hw_freq_seek *a); | ||
229 | |||
230 | /* Debugging ioctls */ | ||
231 | #ifdef CONFIG_VIDEO_ADV_DEBUG | ||
232 | int (*vidioc_g_register) (struct file *file, void *fh, | ||
233 | struct v4l2_register *reg); | ||
234 | int (*vidioc_s_register) (struct file *file, void *fh, | ||
235 | struct v4l2_register *reg); | ||
236 | #endif | ||
237 | int (*vidioc_g_chip_ident) (struct file *file, void *fh, | ||
238 | struct v4l2_chip_ident *chip); | ||
239 | |||
240 | /* For other private ioctls */ | ||
241 | int (*vidioc_default) (struct file *file, void *fh, | ||
242 | int cmd, void *arg); | ||
243 | }; | ||
244 | |||
245 | |||
246 | /* v4l debugging and diagnostics */ | ||
247 | |||
248 | /* Debug bitmask flags to be used on V4L2 */ | ||
249 | #define V4L2_DEBUG_IOCTL 0x01 | ||
250 | #define V4L2_DEBUG_IOCTL_ARG 0x02 | ||
251 | |||
252 | /* Use this macro for non-I2C drivers. Pass the driver name as the first arg. */ | ||
253 | #define v4l_print_ioctl(name, cmd) \ | ||
254 | do { \ | ||
255 | printk(KERN_DEBUG "%s: ", name); \ | ||
256 | v4l_printk_ioctl(cmd); \ | ||
257 | } while (0) | ||
258 | |||
259 | /* Use this macro in I2C drivers where 'client' is the struct i2c_client | ||
260 | pointer */ | ||
261 | #define v4l_i2c_print_ioctl(client, cmd) \ | ||
262 | do { \ | ||
263 | v4l_client_printk(KERN_DEBUG, client, ""); \ | ||
264 | v4l_printk_ioctl(cmd); \ | ||
265 | } while (0) | ||
266 | |||
267 | /* Video standard functions */ | ||
268 | extern const char *v4l2_norm_to_name(v4l2_std_id id); | ||
269 | extern int v4l2_video_std_construct(struct v4l2_standard *vs, | ||
270 | int id, const char *name); | ||
271 | /* Prints the ioctl in a human-readable format */ | ||
272 | extern void v4l_printk_ioctl(unsigned int cmd); | ||
273 | |||
274 | /* names for fancy debug output */ | ||
275 | extern const char *v4l2_field_names[]; | ||
276 | extern const char *v4l2_type_names[]; | ||
277 | |||
278 | /* Compatibility layer interface -- v4l1-compat module */ | ||
279 | typedef int (*v4l2_kioctl)(struct inode *inode, struct file *file, | ||
280 | unsigned int cmd, void *arg); | ||
281 | #ifdef CONFIG_VIDEO_V4L1_COMPAT | ||
282 | int v4l_compat_translate_ioctl(struct inode *inode, struct file *file, | ||
283 | int cmd, void *arg, v4l2_kioctl driver_ioctl); | ||
284 | #else | ||
285 | #define v4l_compat_translate_ioctl(inode, file, cmd, arg, ioctl) (-EINVAL) | ||
286 | #endif | ||
287 | |||
288 | /* 32 Bits compatibility layer for 64 bits processors */ | ||
289 | extern long v4l_compat_ioctl32(struct file *file, unsigned int cmd, | ||
290 | unsigned long arg); | ||
291 | |||
292 | extern int video_ioctl2(struct inode *inode, struct file *file, | ||
293 | unsigned int cmd, unsigned long arg); | ||
294 | |||
295 | /* Include support for obsoleted stuff */ | ||
296 | extern int video_usercopy(struct inode *inode, struct file *file, | ||
297 | unsigned int cmd, unsigned long arg, | ||
298 | int (*func)(struct inode *inode, struct file *file, | ||
299 | unsigned int cmd, void *arg)); | ||
300 | |||
301 | #endif /* _V4L2_IOCTL_H */ | ||
diff --git a/init/Kconfig b/init/Kconfig index 43d6989c275f..250e02c8f8f9 100644 --- a/init/Kconfig +++ b/init/Kconfig | |||
@@ -802,6 +802,10 @@ config PROC_PAGE_MONITOR | |||
802 | 802 | ||
803 | endmenu # General setup | 803 | endmenu # General setup |
804 | 804 | ||
805 | config HAVE_GENERIC_DMA_COHERENT | ||
806 | bool | ||
807 | default n | ||
808 | |||
805 | config SLABINFO | 809 | config SLABINFO |
806 | bool | 810 | bool |
807 | depends on PROC_FS | 811 | depends on PROC_FS |
diff --git a/kernel/Makefile b/kernel/Makefile index 54f69837d35a..4e1d7df7c3e2 100644 --- a/kernel/Makefile +++ b/kernel/Makefile | |||
@@ -84,6 +84,7 @@ obj-$(CONFIG_TASK_DELAY_ACCT) += delayacct.o | |||
84 | obj-$(CONFIG_TASKSTATS) += taskstats.o tsacct.o | 84 | obj-$(CONFIG_TASKSTATS) += taskstats.o tsacct.o |
85 | obj-$(CONFIG_MARKERS) += marker.o | 85 | obj-$(CONFIG_MARKERS) += marker.o |
86 | obj-$(CONFIG_LATENCYTOP) += latencytop.o | 86 | obj-$(CONFIG_LATENCYTOP) += latencytop.o |
87 | obj-$(CONFIG_HAVE_GENERIC_DMA_COHERENT) += dma-coherent.o | ||
87 | obj-$(CONFIG_FTRACE) += trace/ | 88 | obj-$(CONFIG_FTRACE) += trace/ |
88 | obj-$(CONFIG_TRACING) += trace/ | 89 | obj-$(CONFIG_TRACING) += trace/ |
89 | obj-$(CONFIG_SMP) += sched_cpupri.o | 90 | obj-$(CONFIG_SMP) += sched_cpupri.o |
diff --git a/kernel/cpu.c b/kernel/cpu.c index 10ba5f1004a5..e202a68d1cc1 100644 --- a/kernel/cpu.c +++ b/kernel/cpu.c | |||
@@ -216,7 +216,6 @@ static int __ref take_cpu_down(void *_param) | |||
216 | static int __ref _cpu_down(unsigned int cpu, int tasks_frozen) | 216 | static int __ref _cpu_down(unsigned int cpu, int tasks_frozen) |
217 | { | 217 | { |
218 | int err, nr_calls = 0; | 218 | int err, nr_calls = 0; |
219 | struct task_struct *p; | ||
220 | cpumask_t old_allowed, tmp; | 219 | cpumask_t old_allowed, tmp; |
221 | void *hcpu = (void *)(long)cpu; | 220 | void *hcpu = (void *)(long)cpu; |
222 | unsigned long mod = tasks_frozen ? CPU_TASKS_FROZEN : 0; | 221 | unsigned long mod = tasks_frozen ? CPU_TASKS_FROZEN : 0; |
@@ -249,21 +248,18 @@ static int __ref _cpu_down(unsigned int cpu, int tasks_frozen) | |||
249 | cpus_setall(tmp); | 248 | cpus_setall(tmp); |
250 | cpu_clear(cpu, tmp); | 249 | cpu_clear(cpu, tmp); |
251 | set_cpus_allowed_ptr(current, &tmp); | 250 | set_cpus_allowed_ptr(current, &tmp); |
251 | tmp = cpumask_of_cpu(cpu); | ||
252 | 252 | ||
253 | p = __stop_machine_run(take_cpu_down, &tcd_param, cpu); | 253 | err = __stop_machine(take_cpu_down, &tcd_param, &tmp); |
254 | 254 | if (err) { | |
255 | if (IS_ERR(p) || cpu_online(cpu)) { | ||
256 | /* CPU didn't die: tell everyone. Can't complain. */ | 255 | /* CPU didn't die: tell everyone. Can't complain. */ |
257 | if (raw_notifier_call_chain(&cpu_chain, CPU_DOWN_FAILED | mod, | 256 | if (raw_notifier_call_chain(&cpu_chain, CPU_DOWN_FAILED | mod, |
258 | hcpu) == NOTIFY_BAD) | 257 | hcpu) == NOTIFY_BAD) |
259 | BUG(); | 258 | BUG(); |
260 | 259 | ||
261 | if (IS_ERR(p)) { | 260 | goto out_allowed; |
262 | err = PTR_ERR(p); | ||
263 | goto out_allowed; | ||
264 | } | ||
265 | goto out_thread; | ||
266 | } | 261 | } |
262 | BUG_ON(cpu_online(cpu)); | ||
267 | 263 | ||
268 | /* Wait for it to sleep (leaving idle task). */ | 264 | /* Wait for it to sleep (leaving idle task). */ |
269 | while (!idle_cpu(cpu)) | 265 | while (!idle_cpu(cpu)) |
@@ -279,8 +275,6 @@ static int __ref _cpu_down(unsigned int cpu, int tasks_frozen) | |||
279 | 275 | ||
280 | check_for_tasks(cpu); | 276 | check_for_tasks(cpu); |
281 | 277 | ||
282 | out_thread: | ||
283 | err = kthread_stop(p); | ||
284 | out_allowed: | 278 | out_allowed: |
285 | set_cpus_allowed_ptr(current, &old_allowed); | 279 | set_cpus_allowed_ptr(current, &old_allowed); |
286 | out_release: | 280 | out_release: |
@@ -461,3 +455,28 @@ out: | |||
461 | #endif /* CONFIG_PM_SLEEP_SMP */ | 455 | #endif /* CONFIG_PM_SLEEP_SMP */ |
462 | 456 | ||
463 | #endif /* CONFIG_SMP */ | 457 | #endif /* CONFIG_SMP */ |
458 | |||
459 | /* | ||
460 | * cpu_bit_bitmap[] is a special, "compressed" data structure that | ||
461 | * represents all NR_CPUS bits binary values of 1<<nr. | ||
462 | * | ||
463 | * It is used by cpumask_of_cpu() to get a constant address to a CPU | ||
464 | * mask value that has a single bit set only. | ||
465 | */ | ||
466 | |||
467 | /* cpu_bit_bitmap[0] is empty - so we can back into it */ | ||
468 | #define MASK_DECLARE_1(x) [x+1][0] = 1UL << (x) | ||
469 | #define MASK_DECLARE_2(x) MASK_DECLARE_1(x), MASK_DECLARE_1(x+1) | ||
470 | #define MASK_DECLARE_4(x) MASK_DECLARE_2(x), MASK_DECLARE_2(x+2) | ||
471 | #define MASK_DECLARE_8(x) MASK_DECLARE_4(x), MASK_DECLARE_4(x+4) | ||
472 | |||
473 | const unsigned long cpu_bit_bitmap[BITS_PER_LONG+1][BITS_TO_LONGS(NR_CPUS)] = { | ||
474 | |||
475 | MASK_DECLARE_8(0), MASK_DECLARE_8(8), | ||
476 | MASK_DECLARE_8(16), MASK_DECLARE_8(24), | ||
477 | #if BITS_PER_LONG > 32 | ||
478 | MASK_DECLARE_8(32), MASK_DECLARE_8(40), | ||
479 | MASK_DECLARE_8(48), MASK_DECLARE_8(56), | ||
480 | #endif | ||
481 | }; | ||
482 | EXPORT_SYMBOL_GPL(cpu_bit_bitmap); | ||
diff --git a/kernel/dma-coherent.c b/kernel/dma-coherent.c new file mode 100644 index 000000000000..7517115a8cce --- /dev/null +++ b/kernel/dma-coherent.c | |||
@@ -0,0 +1,154 @@ | |||
1 | /* | ||
2 | * Coherent per-device memory handling. | ||
3 | * Borrowed from i386 | ||
4 | */ | ||
5 | #include <linux/kernel.h> | ||
6 | #include <linux/dma-mapping.h> | ||
7 | |||
8 | struct dma_coherent_mem { | ||
9 | void *virt_base; | ||
10 | u32 device_base; | ||
11 | int size; | ||
12 | int flags; | ||
13 | unsigned long *bitmap; | ||
14 | }; | ||
15 | |||
16 | int dma_declare_coherent_memory(struct device *dev, dma_addr_t bus_addr, | ||
17 | dma_addr_t device_addr, size_t size, int flags) | ||
18 | { | ||
19 | void __iomem *mem_base = NULL; | ||
20 | int pages = size >> PAGE_SHIFT; | ||
21 | int bitmap_size = BITS_TO_LONGS(pages) * sizeof(long); | ||
22 | |||
23 | if ((flags & (DMA_MEMORY_MAP | DMA_MEMORY_IO)) == 0) | ||
24 | goto out; | ||
25 | if (!size) | ||
26 | goto out; | ||
27 | if (dev->dma_mem) | ||
28 | goto out; | ||
29 | |||
30 | /* FIXME: this routine just ignores DMA_MEMORY_INCLUDES_CHILDREN */ | ||
31 | |||
32 | mem_base = ioremap(bus_addr, size); | ||
33 | if (!mem_base) | ||
34 | goto out; | ||
35 | |||
36 | dev->dma_mem = kzalloc(sizeof(struct dma_coherent_mem), GFP_KERNEL); | ||
37 | if (!dev->dma_mem) | ||
38 | goto out; | ||
39 | dev->dma_mem->bitmap = kzalloc(bitmap_size, GFP_KERNEL); | ||
40 | if (!dev->dma_mem->bitmap) | ||
41 | goto free1_out; | ||
42 | |||
43 | dev->dma_mem->virt_base = mem_base; | ||
44 | dev->dma_mem->device_base = device_addr; | ||
45 | dev->dma_mem->size = pages; | ||
46 | dev->dma_mem->flags = flags; | ||
47 | |||
48 | if (flags & DMA_MEMORY_MAP) | ||
49 | return DMA_MEMORY_MAP; | ||
50 | |||
51 | return DMA_MEMORY_IO; | ||
52 | |||
53 | free1_out: | ||
54 | kfree(dev->dma_mem); | ||
55 | out: | ||
56 | if (mem_base) | ||
57 | iounmap(mem_base); | ||
58 | return 0; | ||
59 | } | ||
60 | EXPORT_SYMBOL(dma_declare_coherent_memory); | ||
61 | |||
62 | void dma_release_declared_memory(struct device *dev) | ||
63 | { | ||
64 | struct dma_coherent_mem *mem = dev->dma_mem; | ||
65 | |||
66 | if (!mem) | ||
67 | return; | ||
68 | dev->dma_mem = NULL; | ||
69 | iounmap(mem->virt_base); | ||
70 | kfree(mem->bitmap); | ||
71 | kfree(mem); | ||
72 | } | ||
73 | EXPORT_SYMBOL(dma_release_declared_memory); | ||
74 | |||
75 | void *dma_mark_declared_memory_occupied(struct device *dev, | ||
76 | dma_addr_t device_addr, size_t size) | ||
77 | { | ||
78 | struct dma_coherent_mem *mem = dev->dma_mem; | ||
79 | int pos, err; | ||
80 | int pages = (size + (device_addr & ~PAGE_MASK) + PAGE_SIZE - 1); | ||
81 | |||
82 | pages >>= PAGE_SHIFT; | ||
83 | |||
84 | if (!mem) | ||
85 | return ERR_PTR(-EINVAL); | ||
86 | |||
87 | pos = (device_addr - mem->device_base) >> PAGE_SHIFT; | ||
88 | err = bitmap_allocate_region(mem->bitmap, pos, get_order(pages)); | ||
89 | if (err != 0) | ||
90 | return ERR_PTR(err); | ||
91 | return mem->virt_base + (pos << PAGE_SHIFT); | ||
92 | } | ||
93 | EXPORT_SYMBOL(dma_mark_declared_memory_occupied); | ||
94 | |||
95 | /** | ||
96 | * Try to allocate memory from the per-device coherent area. | ||
97 | * | ||
98 | * @dev: device from which we allocate memory | ||
99 | * @size: size of requested memory area | ||
100 | * @dma_handle: This will be filled with the correct dma handle | ||
101 | * @ret: This pointer will be filled with the virtual address | ||
102 | * to allocated area. | ||
103 | * | ||
104 | * This function should be only called from per-arch %dma_alloc_coherent() | ||
105 | * to support allocation from per-device coherent memory pools. | ||
106 | * | ||
107 | * Returns 0 if dma_alloc_coherent should continue with allocating from | ||
108 | * generic memory areas, or !0 if dma_alloc_coherent should return %ret. | ||
109 | */ | ||
110 | int dma_alloc_from_coherent(struct device *dev, ssize_t size, | ||
111 | dma_addr_t *dma_handle, void **ret) | ||
112 | { | ||
113 | struct dma_coherent_mem *mem = dev ? dev->dma_mem : NULL; | ||
114 | int order = get_order(size); | ||
115 | |||
116 | if (mem) { | ||
117 | int page = bitmap_find_free_region(mem->bitmap, mem->size, | ||
118 | order); | ||
119 | if (page >= 0) { | ||
120 | *dma_handle = mem->device_base + (page << PAGE_SHIFT); | ||
121 | *ret = mem->virt_base + (page << PAGE_SHIFT); | ||
122 | memset(*ret, 0, size); | ||
123 | } else if (mem->flags & DMA_MEMORY_EXCLUSIVE) | ||
124 | *ret = NULL; | ||
125 | } | ||
126 | return (mem != NULL); | ||
127 | } | ||
128 | |||
129 | /** | ||
130 | * Try to free the memory allocated from per-device coherent memory pool. | ||
131 | * @dev: device from which the memory was allocated | ||
132 | * @order: the order of pages allocated | ||
133 | * @vaddr: virtual address of allocated pages | ||
134 | * | ||
135 | * This checks whether the memory was allocated from the per-device | ||
136 | * coherent memory pool and if so, releases that memory. | ||
137 | * | ||
138 | * Returns 1 if we correctly released the memory, or 0 if | ||
139 | * %dma_release_coherent() should proceed with releasing memory from | ||
140 | * generic pools. | ||
141 | */ | ||
142 | int dma_release_from_coherent(struct device *dev, int order, void *vaddr) | ||
143 | { | ||
144 | struct dma_coherent_mem *mem = dev ? dev->dma_mem : NULL; | ||
145 | |||
146 | if (mem && vaddr >= mem->virt_base && vaddr < | ||
147 | (mem->virt_base + (mem->size << PAGE_SHIFT))) { | ||
148 | int page = (vaddr - mem->virt_base) >> PAGE_SHIFT; | ||
149 | |||
150 | bitmap_release_region(mem->bitmap, page, order); | ||
151 | return 1; | ||
152 | } | ||
153 | return 0; | ||
154 | } | ||
diff --git a/kernel/fork.c b/kernel/fork.c index 8214ba7c8bb1..7ce2ebe84796 100644 --- a/kernel/fork.c +++ b/kernel/fork.c | |||
@@ -27,6 +27,7 @@ | |||
27 | #include <linux/key.h> | 27 | #include <linux/key.h> |
28 | #include <linux/binfmts.h> | 28 | #include <linux/binfmts.h> |
29 | #include <linux/mman.h> | 29 | #include <linux/mman.h> |
30 | #include <linux/mmu_notifier.h> | ||
30 | #include <linux/fs.h> | 31 | #include <linux/fs.h> |
31 | #include <linux/nsproxy.h> | 32 | #include <linux/nsproxy.h> |
32 | #include <linux/capability.h> | 33 | #include <linux/capability.h> |
@@ -414,6 +415,7 @@ static struct mm_struct * mm_init(struct mm_struct * mm, struct task_struct *p) | |||
414 | 415 | ||
415 | if (likely(!mm_alloc_pgd(mm))) { | 416 | if (likely(!mm_alloc_pgd(mm))) { |
416 | mm->def_flags = 0; | 417 | mm->def_flags = 0; |
418 | mmu_notifier_mm_init(mm); | ||
417 | return mm; | 419 | return mm; |
418 | } | 420 | } |
419 | 421 | ||
@@ -446,6 +448,7 @@ void __mmdrop(struct mm_struct *mm) | |||
446 | BUG_ON(mm == &init_mm); | 448 | BUG_ON(mm == &init_mm); |
447 | mm_free_pgd(mm); | 449 | mm_free_pgd(mm); |
448 | destroy_context(mm); | 450 | destroy_context(mm); |
451 | mmu_notifier_mm_destroy(mm); | ||
449 | free_mm(mm); | 452 | free_mm(mm); |
450 | } | 453 | } |
451 | EXPORT_SYMBOL_GPL(__mmdrop); | 454 | EXPORT_SYMBOL_GPL(__mmdrop); |
diff --git a/kernel/module.c b/kernel/module.c index d8b5605132a0..61d212120df4 100644 --- a/kernel/module.c +++ b/kernel/module.c | |||
@@ -325,18 +325,6 @@ static unsigned long find_symbol(const char *name, | |||
325 | return -ENOENT; | 325 | return -ENOENT; |
326 | } | 326 | } |
327 | 327 | ||
328 | /* lookup symbol in given range of kernel_symbols */ | ||
329 | static const struct kernel_symbol *lookup_symbol(const char *name, | ||
330 | const struct kernel_symbol *start, | ||
331 | const struct kernel_symbol *stop) | ||
332 | { | ||
333 | const struct kernel_symbol *ks = start; | ||
334 | for (; ks < stop; ks++) | ||
335 | if (strcmp(ks->name, name) == 0) | ||
336 | return ks; | ||
337 | return NULL; | ||
338 | } | ||
339 | |||
340 | /* Search for module by name: must hold module_mutex. */ | 328 | /* Search for module by name: must hold module_mutex. */ |
341 | static struct module *find_module(const char *name) | 329 | static struct module *find_module(const char *name) |
342 | { | 330 | { |
@@ -690,7 +678,7 @@ static int try_stop_module(struct module *mod, int flags, int *forced) | |||
690 | if (flags & O_NONBLOCK) { | 678 | if (flags & O_NONBLOCK) { |
691 | struct stopref sref = { mod, flags, forced }; | 679 | struct stopref sref = { mod, flags, forced }; |
692 | 680 | ||
693 | return stop_machine_run(__try_stop_module, &sref, NR_CPUS); | 681 | return stop_machine(__try_stop_module, &sref, NULL); |
694 | } else { | 682 | } else { |
695 | /* We don't need to stop the machine for this. */ | 683 | /* We don't need to stop the machine for this. */ |
696 | mod->state = MODULE_STATE_GOING; | 684 | mod->state = MODULE_STATE_GOING; |
@@ -1428,7 +1416,7 @@ static int __unlink_module(void *_mod) | |||
1428 | static void free_module(struct module *mod) | 1416 | static void free_module(struct module *mod) |
1429 | { | 1417 | { |
1430 | /* Delete from various lists */ | 1418 | /* Delete from various lists */ |
1431 | stop_machine_run(__unlink_module, mod, NR_CPUS); | 1419 | stop_machine(__unlink_module, mod, NULL); |
1432 | remove_notes_attrs(mod); | 1420 | remove_notes_attrs(mod); |
1433 | remove_sect_attrs(mod); | 1421 | remove_sect_attrs(mod); |
1434 | mod_kobject_remove(mod); | 1422 | mod_kobject_remove(mod); |
@@ -1703,6 +1691,19 @@ static void setup_modinfo(struct module *mod, Elf_Shdr *sechdrs, | |||
1703 | } | 1691 | } |
1704 | 1692 | ||
1705 | #ifdef CONFIG_KALLSYMS | 1693 | #ifdef CONFIG_KALLSYMS |
1694 | |||
1695 | /* lookup symbol in given range of kernel_symbols */ | ||
1696 | static const struct kernel_symbol *lookup_symbol(const char *name, | ||
1697 | const struct kernel_symbol *start, | ||
1698 | const struct kernel_symbol *stop) | ||
1699 | { | ||
1700 | const struct kernel_symbol *ks = start; | ||
1701 | for (; ks < stop; ks++) | ||
1702 | if (strcmp(ks->name, name) == 0) | ||
1703 | return ks; | ||
1704 | return NULL; | ||
1705 | } | ||
1706 | |||
1706 | static int is_exported(const char *name, const struct module *mod) | 1707 | static int is_exported(const char *name, const struct module *mod) |
1707 | { | 1708 | { |
1708 | if (!mod && lookup_symbol(name, __start___ksymtab, __stop___ksymtab)) | 1709 | if (!mod && lookup_symbol(name, __start___ksymtab, __stop___ksymtab)) |
@@ -2196,7 +2197,7 @@ static struct module *load_module(void __user *umod, | |||
2196 | /* Now sew it into the lists so we can get lockdep and oops | 2197 | /* Now sew it into the lists so we can get lockdep and oops |
2197 | * info during argument parsing. Noone should access us, since | 2198 | * info during argument parsing. Noone should access us, since |
2198 | * strong_try_module_get() will fail. */ | 2199 | * strong_try_module_get() will fail. */ |
2199 | stop_machine_run(__link_module, mod, NR_CPUS); | 2200 | stop_machine(__link_module, mod, NULL); |
2200 | 2201 | ||
2201 | /* Size of section 0 is 0, so this works well if no params */ | 2202 | /* Size of section 0 is 0, so this works well if no params */ |
2202 | err = parse_args(mod->name, mod->args, | 2203 | err = parse_args(mod->name, mod->args, |
@@ -2230,7 +2231,7 @@ static struct module *load_module(void __user *umod, | |||
2230 | return mod; | 2231 | return mod; |
2231 | 2232 | ||
2232 | unlink: | 2233 | unlink: |
2233 | stop_machine_run(__unlink_module, mod, NR_CPUS); | 2234 | stop_machine(__unlink_module, mod, NULL); |
2234 | module_arch_cleanup(mod); | 2235 | module_arch_cleanup(mod); |
2235 | cleanup: | 2236 | cleanup: |
2236 | kobject_del(&mod->mkobj.kobj); | 2237 | kobject_del(&mod->mkobj.kobj); |
diff --git a/kernel/rcuclassic.c b/kernel/rcuclassic.c index 6f8696c502f4..aad93cdc9f68 100644 --- a/kernel/rcuclassic.c +++ b/kernel/rcuclassic.c | |||
@@ -91,8 +91,8 @@ static void force_quiescent_state(struct rcu_data *rdp, | |||
91 | * rdp->cpu is the current cpu. | 91 | * rdp->cpu is the current cpu. |
92 | * | 92 | * |
93 | * cpu_online_map is updated by the _cpu_down() | 93 | * cpu_online_map is updated by the _cpu_down() |
94 | * using stop_machine_run(). Since we're in irqs disabled | 94 | * using __stop_machine(). Since we're in irqs disabled |
95 | * section, stop_machine_run() is not exectuting, hence | 95 | * section, __stop_machine() is not exectuting, hence |
96 | * the cpu_online_map is stable. | 96 | * the cpu_online_map is stable. |
97 | * | 97 | * |
98 | * However, a cpu might have been offlined _just_ before | 98 | * However, a cpu might have been offlined _just_ before |
diff --git a/kernel/stop_machine.c b/kernel/stop_machine.c index 738b411ff2d3..e446c7c7d6a9 100644 --- a/kernel/stop_machine.c +++ b/kernel/stop_machine.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* Copyright 2005 Rusty Russell rusty@rustcorp.com.au IBM Corporation. | 1 | /* Copyright 2008, 2005 Rusty Russell rusty@rustcorp.com.au IBM Corporation. |
2 | * GPL v2 and any later version. | 2 | * GPL v2 and any later version. |
3 | */ | 3 | */ |
4 | #include <linux/cpu.h> | 4 | #include <linux/cpu.h> |
@@ -13,204 +13,178 @@ | |||
13 | #include <asm/atomic.h> | 13 | #include <asm/atomic.h> |
14 | #include <asm/uaccess.h> | 14 | #include <asm/uaccess.h> |
15 | 15 | ||
16 | /* Since we effect priority and affinity (both of which are visible | 16 | /* This controls the threads on each CPU. */ |
17 | * to, and settable by outside processes) we do indirection via a | ||
18 | * kthread. */ | ||
19 | |||
20 | /* Thread to stop each CPU in user context. */ | ||
21 | enum stopmachine_state { | 17 | enum stopmachine_state { |
22 | STOPMACHINE_WAIT, | 18 | /* Dummy starting state for thread. */ |
19 | STOPMACHINE_NONE, | ||
20 | /* Awaiting everyone to be scheduled. */ | ||
23 | STOPMACHINE_PREPARE, | 21 | STOPMACHINE_PREPARE, |
22 | /* Disable interrupts. */ | ||
24 | STOPMACHINE_DISABLE_IRQ, | 23 | STOPMACHINE_DISABLE_IRQ, |
24 | /* Run the function */ | ||
25 | STOPMACHINE_RUN, | ||
26 | /* Exit */ | ||
25 | STOPMACHINE_EXIT, | 27 | STOPMACHINE_EXIT, |
26 | }; | 28 | }; |
29 | static enum stopmachine_state state; | ||
27 | 30 | ||
28 | static enum stopmachine_state stopmachine_state; | 31 | struct stop_machine_data { |
29 | static unsigned int stopmachine_num_threads; | 32 | int (*fn)(void *); |
30 | static atomic_t stopmachine_thread_ack; | 33 | void *data; |
31 | 34 | int fnret; | |
32 | static int stopmachine(void *cpu) | 35 | }; |
33 | { | ||
34 | int irqs_disabled = 0; | ||
35 | int prepared = 0; | ||
36 | cpumask_of_cpu_ptr(cpumask, (int)(long)cpu); | ||
37 | |||
38 | set_cpus_allowed_ptr(current, cpumask); | ||
39 | |||
40 | /* Ack: we are alive */ | ||
41 | smp_mb(); /* Theoretically the ack = 0 might not be on this CPU yet. */ | ||
42 | atomic_inc(&stopmachine_thread_ack); | ||
43 | |||
44 | /* Simple state machine */ | ||
45 | while (stopmachine_state != STOPMACHINE_EXIT) { | ||
46 | if (stopmachine_state == STOPMACHINE_DISABLE_IRQ | ||
47 | && !irqs_disabled) { | ||
48 | local_irq_disable(); | ||
49 | hard_irq_disable(); | ||
50 | irqs_disabled = 1; | ||
51 | /* Ack: irqs disabled. */ | ||
52 | smp_mb(); /* Must read state first. */ | ||
53 | atomic_inc(&stopmachine_thread_ack); | ||
54 | } else if (stopmachine_state == STOPMACHINE_PREPARE | ||
55 | && !prepared) { | ||
56 | /* Everyone is in place, hold CPU. */ | ||
57 | preempt_disable(); | ||
58 | prepared = 1; | ||
59 | smp_mb(); /* Must read state first. */ | ||
60 | atomic_inc(&stopmachine_thread_ack); | ||
61 | } | ||
62 | /* Yield in first stage: migration threads need to | ||
63 | * help our sisters onto their CPUs. */ | ||
64 | if (!prepared && !irqs_disabled) | ||
65 | yield(); | ||
66 | cpu_relax(); | ||
67 | } | ||
68 | |||
69 | /* Ack: we are exiting. */ | ||
70 | smp_mb(); /* Must read state first. */ | ||
71 | atomic_inc(&stopmachine_thread_ack); | ||
72 | |||
73 | if (irqs_disabled) | ||
74 | local_irq_enable(); | ||
75 | if (prepared) | ||
76 | preempt_enable(); | ||
77 | 36 | ||
78 | return 0; | 37 | /* Like num_online_cpus(), but hotplug cpu uses us, so we need this. */ |
79 | } | 38 | static unsigned int num_threads; |
39 | static atomic_t thread_ack; | ||
40 | static struct completion finished; | ||
41 | static DEFINE_MUTEX(lock); | ||
80 | 42 | ||
81 | /* Change the thread state */ | 43 | static void set_state(enum stopmachine_state newstate) |
82 | static void stopmachine_set_state(enum stopmachine_state state) | ||
83 | { | 44 | { |
84 | atomic_set(&stopmachine_thread_ack, 0); | 45 | /* Reset ack counter. */ |
46 | atomic_set(&thread_ack, num_threads); | ||
85 | smp_wmb(); | 47 | smp_wmb(); |
86 | stopmachine_state = state; | 48 | state = newstate; |
87 | while (atomic_read(&stopmachine_thread_ack) != stopmachine_num_threads) | ||
88 | cpu_relax(); | ||
89 | } | 49 | } |
90 | 50 | ||
91 | static int stop_machine(void) | 51 | /* Last one to ack a state moves to the next state. */ |
52 | static void ack_state(void) | ||
92 | { | 53 | { |
93 | int i, ret = 0; | 54 | if (atomic_dec_and_test(&thread_ack)) { |
94 | 55 | /* If we're the last one to ack the EXIT, we're finished. */ | |
95 | atomic_set(&stopmachine_thread_ack, 0); | 56 | if (state == STOPMACHINE_EXIT) |
96 | stopmachine_num_threads = 0; | 57 | complete(&finished); |
97 | stopmachine_state = STOPMACHINE_WAIT; | 58 | else |
98 | 59 | set_state(state + 1); | |
99 | for_each_online_cpu(i) { | ||
100 | if (i == raw_smp_processor_id()) | ||
101 | continue; | ||
102 | ret = kernel_thread(stopmachine, (void *)(long)i,CLONE_KERNEL); | ||
103 | if (ret < 0) | ||
104 | break; | ||
105 | stopmachine_num_threads++; | ||
106 | } | ||
107 | |||
108 | /* Wait for them all to come to life. */ | ||
109 | while (atomic_read(&stopmachine_thread_ack) != stopmachine_num_threads) { | ||
110 | yield(); | ||
111 | cpu_relax(); | ||
112 | } | 60 | } |
61 | } | ||
113 | 62 | ||
114 | /* If some failed, kill them all. */ | 63 | /* This is the actual thread which stops the CPU. It exits by itself rather |
115 | if (ret < 0) { | 64 | * than waiting for kthread_stop(), because it's easier for hotplug CPU. */ |
116 | stopmachine_set_state(STOPMACHINE_EXIT); | 65 | static int stop_cpu(struct stop_machine_data *smdata) |
117 | return ret; | 66 | { |
118 | } | 67 | enum stopmachine_state curstate = STOPMACHINE_NONE; |
68 | int uninitialized_var(ret); | ||
119 | 69 | ||
120 | /* Now they are all started, make them hold the CPUs, ready. */ | 70 | /* Simple state machine */ |
121 | preempt_disable(); | 71 | do { |
122 | stopmachine_set_state(STOPMACHINE_PREPARE); | 72 | /* Chill out and ensure we re-read stopmachine_state. */ |
73 | cpu_relax(); | ||
74 | if (state != curstate) { | ||
75 | curstate = state; | ||
76 | switch (curstate) { | ||
77 | case STOPMACHINE_DISABLE_IRQ: | ||
78 | local_irq_disable(); | ||
79 | hard_irq_disable(); | ||
80 | break; | ||
81 | case STOPMACHINE_RUN: | ||
82 | /* |= allows error detection if functions on | ||
83 | * multiple CPUs. */ | ||
84 | smdata->fnret |= smdata->fn(smdata->data); | ||
85 | break; | ||
86 | default: | ||
87 | break; | ||
88 | } | ||
89 | ack_state(); | ||
90 | } | ||
91 | } while (curstate != STOPMACHINE_EXIT); | ||
123 | 92 | ||
124 | /* Make them disable irqs. */ | 93 | local_irq_enable(); |
125 | local_irq_disable(); | 94 | do_exit(0); |
126 | hard_irq_disable(); | 95 | } |
127 | stopmachine_set_state(STOPMACHINE_DISABLE_IRQ); | ||
128 | 96 | ||
97 | /* Callback for CPUs which aren't supposed to do anything. */ | ||
98 | static int chill(void *unused) | ||
99 | { | ||
129 | return 0; | 100 | return 0; |
130 | } | 101 | } |
131 | 102 | ||
132 | static void restart_machine(void) | 103 | int __stop_machine(int (*fn)(void *), void *data, const cpumask_t *cpus) |
133 | { | 104 | { |
134 | stopmachine_set_state(STOPMACHINE_EXIT); | 105 | int i, err; |
135 | local_irq_enable(); | 106 | struct stop_machine_data active, idle; |
136 | preempt_enable_no_resched(); | 107 | struct task_struct **threads; |
137 | } | 108 | |
109 | active.fn = fn; | ||
110 | active.data = data; | ||
111 | active.fnret = 0; | ||
112 | idle.fn = chill; | ||
113 | idle.data = NULL; | ||
114 | |||
115 | /* This could be too big for stack on large machines. */ | ||
116 | threads = kcalloc(NR_CPUS, sizeof(threads[0]), GFP_KERNEL); | ||
117 | if (!threads) | ||
118 | return -ENOMEM; | ||
119 | |||
120 | /* Set up initial state. */ | ||
121 | mutex_lock(&lock); | ||
122 | init_completion(&finished); | ||
123 | num_threads = num_online_cpus(); | ||
124 | set_state(STOPMACHINE_PREPARE); | ||
138 | 125 | ||
139 | struct stop_machine_data { | 126 | for_each_online_cpu(i) { |
140 | int (*fn)(void *); | 127 | struct stop_machine_data *smdata = &idle; |
141 | void *data; | 128 | struct sched_param param = { .sched_priority = MAX_RT_PRIO-1 }; |
142 | struct completion done; | ||
143 | }; | ||
144 | 129 | ||
145 | static int do_stop(void *_smdata) | 130 | if (!cpus) { |
146 | { | 131 | if (i == first_cpu(cpu_online_map)) |
147 | struct stop_machine_data *smdata = _smdata; | 132 | smdata = &active; |
148 | int ret; | 133 | } else { |
134 | if (cpu_isset(i, *cpus)) | ||
135 | smdata = &active; | ||
136 | } | ||
149 | 137 | ||
150 | ret = stop_machine(); | 138 | threads[i] = kthread_create((void *)stop_cpu, smdata, "kstop%u", |
151 | if (ret == 0) { | 139 | i); |
152 | ret = smdata->fn(smdata->data); | 140 | if (IS_ERR(threads[i])) { |
153 | restart_machine(); | 141 | err = PTR_ERR(threads[i]); |
154 | } | 142 | threads[i] = NULL; |
143 | goto kill_threads; | ||
144 | } | ||
155 | 145 | ||
156 | /* We're done: you can kthread_stop us now */ | 146 | /* Place it onto correct cpu. */ |
157 | complete(&smdata->done); | 147 | kthread_bind(threads[i], i); |
158 | 148 | ||
159 | /* Wait for kthread_stop */ | 149 | /* Make it highest prio. */ |
160 | set_current_state(TASK_INTERRUPTIBLE); | 150 | if (sched_setscheduler_nocheck(threads[i], SCHED_FIFO, ¶m)) |
161 | while (!kthread_should_stop()) { | 151 | BUG(); |
162 | schedule(); | ||
163 | set_current_state(TASK_INTERRUPTIBLE); | ||
164 | } | 152 | } |
165 | __set_current_state(TASK_RUNNING); | ||
166 | return ret; | ||
167 | } | ||
168 | 153 | ||
169 | struct task_struct *__stop_machine_run(int (*fn)(void *), void *data, | 154 | /* We've created all the threads. Wake them all: hold this CPU so one |
170 | unsigned int cpu) | 155 | * doesn't hit this CPU until we're ready. */ |
171 | { | 156 | get_cpu(); |
172 | static DEFINE_MUTEX(stopmachine_mutex); | 157 | for_each_online_cpu(i) |
173 | struct stop_machine_data smdata; | 158 | wake_up_process(threads[i]); |
174 | struct task_struct *p; | ||
175 | 159 | ||
176 | smdata.fn = fn; | 160 | /* This will release the thread on our CPU. */ |
177 | smdata.data = data; | 161 | put_cpu(); |
178 | init_completion(&smdata.done); | 162 | wait_for_completion(&finished); |
163 | mutex_unlock(&lock); | ||
179 | 164 | ||
180 | mutex_lock(&stopmachine_mutex); | 165 | kfree(threads); |
181 | 166 | ||
182 | /* If they don't care which CPU fn runs on, bind to any online one. */ | 167 | return active.fnret; |
183 | if (cpu == NR_CPUS) | ||
184 | cpu = raw_smp_processor_id(); | ||
185 | 168 | ||
186 | p = kthread_create(do_stop, &smdata, "kstopmachine"); | 169 | kill_threads: |
187 | if (!IS_ERR(p)) { | 170 | for_each_online_cpu(i) |
188 | struct sched_param param = { .sched_priority = MAX_RT_PRIO-1 }; | 171 | if (threads[i]) |
172 | kthread_stop(threads[i]); | ||
173 | mutex_unlock(&lock); | ||
189 | 174 | ||
190 | /* One high-prio thread per cpu. We'll do this one. */ | 175 | kfree(threads); |
191 | sched_setscheduler_nocheck(p, SCHED_FIFO, ¶m); | 176 | return err; |
192 | kthread_bind(p, cpu); | ||
193 | wake_up_process(p); | ||
194 | wait_for_completion(&smdata.done); | ||
195 | } | ||
196 | mutex_unlock(&stopmachine_mutex); | ||
197 | return p; | ||
198 | } | 177 | } |
199 | 178 | ||
200 | int stop_machine_run(int (*fn)(void *), void *data, unsigned int cpu) | 179 | int stop_machine(int (*fn)(void *), void *data, const cpumask_t *cpus) |
201 | { | 180 | { |
202 | struct task_struct *p; | ||
203 | int ret; | 181 | int ret; |
204 | 182 | ||
205 | /* No CPUs can come up or down during this. */ | 183 | /* No CPUs can come up or down during this. */ |
206 | get_online_cpus(); | 184 | get_online_cpus(); |
207 | p = __stop_machine_run(fn, data, cpu); | 185 | ret = __stop_machine(fn, data, cpus); |
208 | if (!IS_ERR(p)) | ||
209 | ret = kthread_stop(p); | ||
210 | else | ||
211 | ret = PTR_ERR(p); | ||
212 | put_online_cpus(); | 186 | put_online_cpus(); |
213 | 187 | ||
214 | return ret; | 188 | return ret; |
215 | } | 189 | } |
216 | EXPORT_SYMBOL_GPL(stop_machine_run); | 190 | EXPORT_SYMBOL_GPL(stop_machine); |
diff --git a/kernel/time/tick-common.c b/kernel/time/tick-common.c index bf43284d6855..80c4336f4188 100644 --- a/kernel/time/tick-common.c +++ b/kernel/time/tick-common.c | |||
@@ -196,12 +196,10 @@ static int tick_check_new_device(struct clock_event_device *newdev) | |||
196 | struct tick_device *td; | 196 | struct tick_device *td; |
197 | int cpu, ret = NOTIFY_OK; | 197 | int cpu, ret = NOTIFY_OK; |
198 | unsigned long flags; | 198 | unsigned long flags; |
199 | cpumask_of_cpu_ptr_declare(cpumask); | ||
200 | 199 | ||
201 | spin_lock_irqsave(&tick_device_lock, flags); | 200 | spin_lock_irqsave(&tick_device_lock, flags); |
202 | 201 | ||
203 | cpu = smp_processor_id(); | 202 | cpu = smp_processor_id(); |
204 | cpumask_of_cpu_ptr_next(cpumask, cpu); | ||
205 | if (!cpu_isset(cpu, newdev->cpumask)) | 203 | if (!cpu_isset(cpu, newdev->cpumask)) |
206 | goto out_bc; | 204 | goto out_bc; |
207 | 205 | ||
@@ -209,7 +207,7 @@ static int tick_check_new_device(struct clock_event_device *newdev) | |||
209 | curdev = td->evtdev; | 207 | curdev = td->evtdev; |
210 | 208 | ||
211 | /* cpu local device ? */ | 209 | /* cpu local device ? */ |
212 | if (!cpus_equal(newdev->cpumask, *cpumask)) { | 210 | if (!cpus_equal(newdev->cpumask, cpumask_of_cpu(cpu))) { |
213 | 211 | ||
214 | /* | 212 | /* |
215 | * If the cpu affinity of the device interrupt can not | 213 | * If the cpu affinity of the device interrupt can not |
@@ -222,7 +220,7 @@ static int tick_check_new_device(struct clock_event_device *newdev) | |||
222 | * If we have a cpu local device already, do not replace it | 220 | * If we have a cpu local device already, do not replace it |
223 | * by a non cpu local device | 221 | * by a non cpu local device |
224 | */ | 222 | */ |
225 | if (curdev && cpus_equal(curdev->cpumask, *cpumask)) | 223 | if (curdev && cpus_equal(curdev->cpumask, cpumask_of_cpu(cpu))) |
226 | goto out_bc; | 224 | goto out_bc; |
227 | } | 225 | } |
228 | 226 | ||
@@ -254,7 +252,7 @@ static int tick_check_new_device(struct clock_event_device *newdev) | |||
254 | curdev = NULL; | 252 | curdev = NULL; |
255 | } | 253 | } |
256 | clockevents_exchange_device(curdev, newdev); | 254 | clockevents_exchange_device(curdev, newdev); |
257 | tick_setup_device(td, newdev, cpu, cpumask); | 255 | tick_setup_device(td, newdev, cpu, &cpumask_of_cpu(cpu)); |
258 | if (newdev->features & CLOCK_EVT_FEAT_ONESHOT) | 256 | if (newdev->features & CLOCK_EVT_FEAT_ONESHOT) |
259 | tick_oneshot_notify(); | 257 | tick_oneshot_notify(); |
260 | 258 | ||
diff --git a/kernel/trace/ftrace.c b/kernel/trace/ftrace.c index 4231a3dc224a..f6e3af31b403 100644 --- a/kernel/trace/ftrace.c +++ b/kernel/trace/ftrace.c | |||
@@ -587,7 +587,7 @@ static int __ftrace_modify_code(void *data) | |||
587 | 587 | ||
588 | static void ftrace_run_update_code(int command) | 588 | static void ftrace_run_update_code(int command) |
589 | { | 589 | { |
590 | stop_machine_run(__ftrace_modify_code, &command, NR_CPUS); | 590 | stop_machine(__ftrace_modify_code, &command, NULL); |
591 | } | 591 | } |
592 | 592 | ||
593 | void ftrace_disable_daemon(void) | 593 | void ftrace_disable_daemon(void) |
@@ -787,7 +787,7 @@ static int ftrace_update_code(void) | |||
787 | !ftrace_enabled || !ftraced_trigger) | 787 | !ftrace_enabled || !ftraced_trigger) |
788 | return 0; | 788 | return 0; |
789 | 789 | ||
790 | stop_machine_run(__ftrace_update_code, NULL, NR_CPUS); | 790 | stop_machine(__ftrace_update_code, NULL, NULL); |
791 | 791 | ||
792 | return 1; | 792 | return 1; |
793 | } | 793 | } |
@@ -1564,7 +1564,7 @@ static int __init ftrace_dynamic_init(void) | |||
1564 | 1564 | ||
1565 | addr = (unsigned long)ftrace_record_ip; | 1565 | addr = (unsigned long)ftrace_record_ip; |
1566 | 1566 | ||
1567 | stop_machine_run(ftrace_dyn_arch_init, &addr, NR_CPUS); | 1567 | stop_machine(ftrace_dyn_arch_init, &addr, NULL); |
1568 | 1568 | ||
1569 | /* ftrace_dyn_arch_init places the return code in addr */ | 1569 | /* ftrace_dyn_arch_init places the return code in addr */ |
1570 | if (addr) { | 1570 | if (addr) { |
diff --git a/kernel/trace/trace_sysprof.c b/kernel/trace/trace_sysprof.c index ce2d723c10e1..bb948e52ce20 100644 --- a/kernel/trace/trace_sysprof.c +++ b/kernel/trace/trace_sysprof.c | |||
@@ -213,9 +213,7 @@ static void start_stack_timers(void) | |||
213 | int cpu; | 213 | int cpu; |
214 | 214 | ||
215 | for_each_online_cpu(cpu) { | 215 | for_each_online_cpu(cpu) { |
216 | cpumask_of_cpu_ptr(new_mask, cpu); | 216 | set_cpus_allowed_ptr(current, &cpumask_of_cpu(cpu)); |
217 | |||
218 | set_cpus_allowed_ptr(current, new_mask); | ||
219 | start_stack_timer(cpu); | 217 | start_stack_timer(cpu); |
220 | } | 218 | } |
221 | set_cpus_allowed_ptr(current, &saved_mask); | 219 | set_cpus_allowed_ptr(current, &saved_mask); |
diff --git a/lib/iommu-helper.c b/lib/iommu-helper.c index a3b8d4c3f77a..889ddce2021e 100644 --- a/lib/iommu-helper.c +++ b/lib/iommu-helper.c | |||
@@ -80,3 +80,11 @@ void iommu_area_free(unsigned long *map, unsigned long start, unsigned int nr) | |||
80 | } | 80 | } |
81 | } | 81 | } |
82 | EXPORT_SYMBOL(iommu_area_free); | 82 | EXPORT_SYMBOL(iommu_area_free); |
83 | |||
84 | unsigned long iommu_num_pages(unsigned long addr, unsigned long len) | ||
85 | { | ||
86 | unsigned long size = roundup((addr & ~PAGE_MASK) + len, PAGE_SIZE); | ||
87 | |||
88 | return size >> PAGE_SHIFT; | ||
89 | } | ||
90 | EXPORT_SYMBOL(iommu_num_pages); | ||
diff --git a/lib/ratelimit.c b/lib/ratelimit.c index 35136671b215..26187edcc7ea 100644 --- a/lib/ratelimit.c +++ b/lib/ratelimit.c | |||
@@ -15,7 +15,6 @@ | |||
15 | #include <linux/module.h> | 15 | #include <linux/module.h> |
16 | 16 | ||
17 | static DEFINE_SPINLOCK(ratelimit_lock); | 17 | static DEFINE_SPINLOCK(ratelimit_lock); |
18 | static unsigned long flags; | ||
19 | 18 | ||
20 | /* | 19 | /* |
21 | * __ratelimit - rate limiting | 20 | * __ratelimit - rate limiting |
@@ -26,6 +25,8 @@ static unsigned long flags; | |||
26 | */ | 25 | */ |
27 | int __ratelimit(struct ratelimit_state *rs) | 26 | int __ratelimit(struct ratelimit_state *rs) |
28 | { | 27 | { |
28 | unsigned long flags; | ||
29 | |||
29 | if (!rs->interval) | 30 | if (!rs->interval) |
30 | return 1; | 31 | return 1; |
31 | 32 | ||
diff --git a/lib/smp_processor_id.c b/lib/smp_processor_id.c index c4381d9516f6..0f8fc22ed103 100644 --- a/lib/smp_processor_id.c +++ b/lib/smp_processor_id.c | |||
@@ -11,7 +11,6 @@ notrace unsigned int debug_smp_processor_id(void) | |||
11 | { | 11 | { |
12 | unsigned long preempt_count = preempt_count(); | 12 | unsigned long preempt_count = preempt_count(); |
13 | int this_cpu = raw_smp_processor_id(); | 13 | int this_cpu = raw_smp_processor_id(); |
14 | cpumask_of_cpu_ptr_declare(this_mask); | ||
15 | 14 | ||
16 | if (likely(preempt_count)) | 15 | if (likely(preempt_count)) |
17 | goto out; | 16 | goto out; |
@@ -23,9 +22,7 @@ notrace unsigned int debug_smp_processor_id(void) | |||
23 | * Kernel threads bound to a single CPU can safely use | 22 | * Kernel threads bound to a single CPU can safely use |
24 | * smp_processor_id(): | 23 | * smp_processor_id(): |
25 | */ | 24 | */ |
26 | cpumask_of_cpu_ptr_next(this_mask, this_cpu); | 25 | if (cpus_equal(current->cpus_allowed, cpumask_of_cpu(this_cpu))) |
27 | |||
28 | if (cpus_equal(current->cpus_allowed, *this_mask)) | ||
29 | goto out; | 26 | goto out; |
30 | 27 | ||
31 | /* | 28 | /* |
diff --git a/mm/Kconfig b/mm/Kconfig index efee5d379df4..446c6588c753 100644 --- a/mm/Kconfig +++ b/mm/Kconfig | |||
@@ -208,3 +208,6 @@ config NR_QUICK | |||
208 | config VIRT_TO_BUS | 208 | config VIRT_TO_BUS |
209 | def_bool y | 209 | def_bool y |
210 | depends on !ARCH_NO_VIRT_TO_BUS | 210 | depends on !ARCH_NO_VIRT_TO_BUS |
211 | |||
212 | config MMU_NOTIFIER | ||
213 | bool | ||
diff --git a/mm/Makefile b/mm/Makefile index 06ca2381fef1..da4ccf015aea 100644 --- a/mm/Makefile +++ b/mm/Makefile | |||
@@ -25,6 +25,7 @@ obj-$(CONFIG_SHMEM) += shmem.o | |||
25 | obj-$(CONFIG_TMPFS_POSIX_ACL) += shmem_acl.o | 25 | obj-$(CONFIG_TMPFS_POSIX_ACL) += shmem_acl.o |
26 | obj-$(CONFIG_TINY_SHMEM) += tiny-shmem.o | 26 | obj-$(CONFIG_TINY_SHMEM) += tiny-shmem.o |
27 | obj-$(CONFIG_SLOB) += slob.o | 27 | obj-$(CONFIG_SLOB) += slob.o |
28 | obj-$(CONFIG_MMU_NOTIFIER) += mmu_notifier.o | ||
28 | obj-$(CONFIG_SLAB) += slab.o | 29 | obj-$(CONFIG_SLAB) += slab.o |
29 | obj-$(CONFIG_SLUB) += slub.o | 30 | obj-$(CONFIG_SLUB) += slub.o |
30 | obj-$(CONFIG_MEMORY_HOTPLUG) += memory_hotplug.o | 31 | obj-$(CONFIG_MEMORY_HOTPLUG) += memory_hotplug.o |
diff --git a/mm/filemap.c b/mm/filemap.c index 5de7633e1dbe..42bbc6909ba4 100644 --- a/mm/filemap.c +++ b/mm/filemap.c | |||
@@ -1023,8 +1023,17 @@ find_page: | |||
1023 | ra, filp, page, | 1023 | ra, filp, page, |
1024 | index, last_index - index); | 1024 | index, last_index - index); |
1025 | } | 1025 | } |
1026 | if (!PageUptodate(page)) | 1026 | if (!PageUptodate(page)) { |
1027 | goto page_not_up_to_date; | 1027 | if (inode->i_blkbits == PAGE_CACHE_SHIFT || |
1028 | !mapping->a_ops->is_partially_uptodate) | ||
1029 | goto page_not_up_to_date; | ||
1030 | if (TestSetPageLocked(page)) | ||
1031 | goto page_not_up_to_date; | ||
1032 | if (!mapping->a_ops->is_partially_uptodate(page, | ||
1033 | desc, offset)) | ||
1034 | goto page_not_up_to_date_locked; | ||
1035 | unlock_page(page); | ||
1036 | } | ||
1028 | page_ok: | 1037 | page_ok: |
1029 | /* | 1038 | /* |
1030 | * i_size must be checked after we know the page is Uptodate. | 1039 | * i_size must be checked after we know the page is Uptodate. |
@@ -1094,6 +1103,7 @@ page_not_up_to_date: | |||
1094 | if (lock_page_killable(page)) | 1103 | if (lock_page_killable(page)) |
1095 | goto readpage_eio; | 1104 | goto readpage_eio; |
1096 | 1105 | ||
1106 | page_not_up_to_date_locked: | ||
1097 | /* Did it get truncated before we got the lock? */ | 1107 | /* Did it get truncated before we got the lock? */ |
1098 | if (!page->mapping) { | 1108 | if (!page->mapping) { |
1099 | unlock_page(page); | 1109 | unlock_page(page); |
diff --git a/mm/filemap_xip.c b/mm/filemap_xip.c index 98a3f31ccd6a..380ab402d711 100644 --- a/mm/filemap_xip.c +++ b/mm/filemap_xip.c | |||
@@ -13,6 +13,7 @@ | |||
13 | #include <linux/module.h> | 13 | #include <linux/module.h> |
14 | #include <linux/uio.h> | 14 | #include <linux/uio.h> |
15 | #include <linux/rmap.h> | 15 | #include <linux/rmap.h> |
16 | #include <linux/mmu_notifier.h> | ||
16 | #include <linux/sched.h> | 17 | #include <linux/sched.h> |
17 | #include <asm/tlbflush.h> | 18 | #include <asm/tlbflush.h> |
18 | #include <asm/io.h> | 19 | #include <asm/io.h> |
@@ -188,7 +189,7 @@ __xip_unmap (struct address_space * mapping, | |||
188 | if (pte) { | 189 | if (pte) { |
189 | /* Nuke the page table entry. */ | 190 | /* Nuke the page table entry. */ |
190 | flush_cache_page(vma, address, pte_pfn(*pte)); | 191 | flush_cache_page(vma, address, pte_pfn(*pte)); |
191 | pteval = ptep_clear_flush(vma, address, pte); | 192 | pteval = ptep_clear_flush_notify(vma, address, pte); |
192 | page_remove_rmap(page, vma); | 193 | page_remove_rmap(page, vma); |
193 | dec_mm_counter(mm, file_rss); | 194 | dec_mm_counter(mm, file_rss); |
194 | BUG_ON(pte_dirty(pteval)); | 195 | BUG_ON(pte_dirty(pteval)); |
diff --git a/mm/fremap.c b/mm/fremap.c index 07a9c82ce1a3..7881638e4a12 100644 --- a/mm/fremap.c +++ b/mm/fremap.c | |||
@@ -15,6 +15,7 @@ | |||
15 | #include <linux/rmap.h> | 15 | #include <linux/rmap.h> |
16 | #include <linux/module.h> | 16 | #include <linux/module.h> |
17 | #include <linux/syscalls.h> | 17 | #include <linux/syscalls.h> |
18 | #include <linux/mmu_notifier.h> | ||
18 | 19 | ||
19 | #include <asm/mmu_context.h> | 20 | #include <asm/mmu_context.h> |
20 | #include <asm/cacheflush.h> | 21 | #include <asm/cacheflush.h> |
@@ -214,7 +215,9 @@ asmlinkage long sys_remap_file_pages(unsigned long start, unsigned long size, | |||
214 | spin_unlock(&mapping->i_mmap_lock); | 215 | spin_unlock(&mapping->i_mmap_lock); |
215 | } | 216 | } |
216 | 217 | ||
218 | mmu_notifier_invalidate_range_start(mm, start, start + size); | ||
217 | err = populate_range(mm, vma, start, size, pgoff); | 219 | err = populate_range(mm, vma, start, size, pgoff); |
220 | mmu_notifier_invalidate_range_end(mm, start, start + size); | ||
218 | if (!err && !(flags & MAP_NONBLOCK)) { | 221 | if (!err && !(flags & MAP_NONBLOCK)) { |
219 | if (unlikely(has_write_lock)) { | 222 | if (unlikely(has_write_lock)) { |
220 | downgrade_write(&mm->mmap_sem); | 223 | downgrade_write(&mm->mmap_sem); |
diff --git a/mm/hugetlb.c b/mm/hugetlb.c index 3be79dc18c5c..254ce2b90158 100644 --- a/mm/hugetlb.c +++ b/mm/hugetlb.c | |||
@@ -9,6 +9,7 @@ | |||
9 | #include <linux/mm.h> | 9 | #include <linux/mm.h> |
10 | #include <linux/sysctl.h> | 10 | #include <linux/sysctl.h> |
11 | #include <linux/highmem.h> | 11 | #include <linux/highmem.h> |
12 | #include <linux/mmu_notifier.h> | ||
12 | #include <linux/nodemask.h> | 13 | #include <linux/nodemask.h> |
13 | #include <linux/pagemap.h> | 14 | #include <linux/pagemap.h> |
14 | #include <linux/mempolicy.h> | 15 | #include <linux/mempolicy.h> |
@@ -19,6 +20,7 @@ | |||
19 | 20 | ||
20 | #include <asm/page.h> | 21 | #include <asm/page.h> |
21 | #include <asm/pgtable.h> | 22 | #include <asm/pgtable.h> |
23 | #include <asm/io.h> | ||
22 | 24 | ||
23 | #include <linux/hugetlb.h> | 25 | #include <linux/hugetlb.h> |
24 | #include "internal.h" | 26 | #include "internal.h" |
@@ -1672,6 +1674,7 @@ void __unmap_hugepage_range(struct vm_area_struct *vma, unsigned long start, | |||
1672 | BUG_ON(start & ~huge_page_mask(h)); | 1674 | BUG_ON(start & ~huge_page_mask(h)); |
1673 | BUG_ON(end & ~huge_page_mask(h)); | 1675 | BUG_ON(end & ~huge_page_mask(h)); |
1674 | 1676 | ||
1677 | mmu_notifier_invalidate_range_start(mm, start, end); | ||
1675 | spin_lock(&mm->page_table_lock); | 1678 | spin_lock(&mm->page_table_lock); |
1676 | for (address = start; address < end; address += sz) { | 1679 | for (address = start; address < end; address += sz) { |
1677 | ptep = huge_pte_offset(mm, address); | 1680 | ptep = huge_pte_offset(mm, address); |
@@ -1713,6 +1716,7 @@ void __unmap_hugepage_range(struct vm_area_struct *vma, unsigned long start, | |||
1713 | } | 1716 | } |
1714 | spin_unlock(&mm->page_table_lock); | 1717 | spin_unlock(&mm->page_table_lock); |
1715 | flush_tlb_range(vma, start, end); | 1718 | flush_tlb_range(vma, start, end); |
1719 | mmu_notifier_invalidate_range_end(mm, start, end); | ||
1716 | list_for_each_entry_safe(page, tmp, &page_list, lru) { | 1720 | list_for_each_entry_safe(page, tmp, &page_list, lru) { |
1717 | list_del(&page->lru); | 1721 | list_del(&page->lru); |
1718 | put_page(page); | 1722 | put_page(page); |
diff --git a/mm/memory.c b/mm/memory.c index a8ca04faaea6..67f0ab9077d9 100644 --- a/mm/memory.c +++ b/mm/memory.c | |||
@@ -51,6 +51,7 @@ | |||
51 | #include <linux/init.h> | 51 | #include <linux/init.h> |
52 | #include <linux/writeback.h> | 52 | #include <linux/writeback.h> |
53 | #include <linux/memcontrol.h> | 53 | #include <linux/memcontrol.h> |
54 | #include <linux/mmu_notifier.h> | ||
54 | 55 | ||
55 | #include <asm/pgalloc.h> | 56 | #include <asm/pgalloc.h> |
56 | #include <asm/uaccess.h> | 57 | #include <asm/uaccess.h> |
@@ -652,6 +653,7 @@ int copy_page_range(struct mm_struct *dst_mm, struct mm_struct *src_mm, | |||
652 | unsigned long next; | 653 | unsigned long next; |
653 | unsigned long addr = vma->vm_start; | 654 | unsigned long addr = vma->vm_start; |
654 | unsigned long end = vma->vm_end; | 655 | unsigned long end = vma->vm_end; |
656 | int ret; | ||
655 | 657 | ||
656 | /* | 658 | /* |
657 | * Don't copy ptes where a page fault will fill them correctly. | 659 | * Don't copy ptes where a page fault will fill them correctly. |
@@ -667,17 +669,33 @@ int copy_page_range(struct mm_struct *dst_mm, struct mm_struct *src_mm, | |||
667 | if (is_vm_hugetlb_page(vma)) | 669 | if (is_vm_hugetlb_page(vma)) |
668 | return copy_hugetlb_page_range(dst_mm, src_mm, vma); | 670 | return copy_hugetlb_page_range(dst_mm, src_mm, vma); |
669 | 671 | ||
672 | /* | ||
673 | * We need to invalidate the secondary MMU mappings only when | ||
674 | * there could be a permission downgrade on the ptes of the | ||
675 | * parent mm. And a permission downgrade will only happen if | ||
676 | * is_cow_mapping() returns true. | ||
677 | */ | ||
678 | if (is_cow_mapping(vma->vm_flags)) | ||
679 | mmu_notifier_invalidate_range_start(src_mm, addr, end); | ||
680 | |||
681 | ret = 0; | ||
670 | dst_pgd = pgd_offset(dst_mm, addr); | 682 | dst_pgd = pgd_offset(dst_mm, addr); |
671 | src_pgd = pgd_offset(src_mm, addr); | 683 | src_pgd = pgd_offset(src_mm, addr); |
672 | do { | 684 | do { |
673 | next = pgd_addr_end(addr, end); | 685 | next = pgd_addr_end(addr, end); |
674 | if (pgd_none_or_clear_bad(src_pgd)) | 686 | if (pgd_none_or_clear_bad(src_pgd)) |
675 | continue; | 687 | continue; |
676 | if (copy_pud_range(dst_mm, src_mm, dst_pgd, src_pgd, | 688 | if (unlikely(copy_pud_range(dst_mm, src_mm, dst_pgd, src_pgd, |
677 | vma, addr, next)) | 689 | vma, addr, next))) { |
678 | return -ENOMEM; | 690 | ret = -ENOMEM; |
691 | break; | ||
692 | } | ||
679 | } while (dst_pgd++, src_pgd++, addr = next, addr != end); | 693 | } while (dst_pgd++, src_pgd++, addr = next, addr != end); |
680 | return 0; | 694 | |
695 | if (is_cow_mapping(vma->vm_flags)) | ||
696 | mmu_notifier_invalidate_range_end(src_mm, | ||
697 | vma->vm_start, end); | ||
698 | return ret; | ||
681 | } | 699 | } |
682 | 700 | ||
683 | static unsigned long zap_pte_range(struct mmu_gather *tlb, | 701 | static unsigned long zap_pte_range(struct mmu_gather *tlb, |
@@ -881,7 +899,9 @@ unsigned long unmap_vmas(struct mmu_gather **tlbp, | |||
881 | unsigned long start = start_addr; | 899 | unsigned long start = start_addr; |
882 | spinlock_t *i_mmap_lock = details? details->i_mmap_lock: NULL; | 900 | spinlock_t *i_mmap_lock = details? details->i_mmap_lock: NULL; |
883 | int fullmm = (*tlbp)->fullmm; | 901 | int fullmm = (*tlbp)->fullmm; |
902 | struct mm_struct *mm = vma->vm_mm; | ||
884 | 903 | ||
904 | mmu_notifier_invalidate_range_start(mm, start_addr, end_addr); | ||
885 | for ( ; vma && vma->vm_start < end_addr; vma = vma->vm_next) { | 905 | for ( ; vma && vma->vm_start < end_addr; vma = vma->vm_next) { |
886 | unsigned long end; | 906 | unsigned long end; |
887 | 907 | ||
@@ -946,6 +966,7 @@ unsigned long unmap_vmas(struct mmu_gather **tlbp, | |||
946 | } | 966 | } |
947 | } | 967 | } |
948 | out: | 968 | out: |
969 | mmu_notifier_invalidate_range_end(mm, start_addr, end_addr); | ||
949 | return start; /* which is now the end (or restart) address */ | 970 | return start; /* which is now the end (or restart) address */ |
950 | } | 971 | } |
951 | 972 | ||
@@ -1616,10 +1637,11 @@ int apply_to_page_range(struct mm_struct *mm, unsigned long addr, | |||
1616 | { | 1637 | { |
1617 | pgd_t *pgd; | 1638 | pgd_t *pgd; |
1618 | unsigned long next; | 1639 | unsigned long next; |
1619 | unsigned long end = addr + size; | 1640 | unsigned long start = addr, end = addr + size; |
1620 | int err; | 1641 | int err; |
1621 | 1642 | ||
1622 | BUG_ON(addr >= end); | 1643 | BUG_ON(addr >= end); |
1644 | mmu_notifier_invalidate_range_start(mm, start, end); | ||
1623 | pgd = pgd_offset(mm, addr); | 1645 | pgd = pgd_offset(mm, addr); |
1624 | do { | 1646 | do { |
1625 | next = pgd_addr_end(addr, end); | 1647 | next = pgd_addr_end(addr, end); |
@@ -1627,6 +1649,7 @@ int apply_to_page_range(struct mm_struct *mm, unsigned long addr, | |||
1627 | if (err) | 1649 | if (err) |
1628 | break; | 1650 | break; |
1629 | } while (pgd++, addr = next, addr != end); | 1651 | } while (pgd++, addr = next, addr != end); |
1652 | mmu_notifier_invalidate_range_end(mm, start, end); | ||
1630 | return err; | 1653 | return err; |
1631 | } | 1654 | } |
1632 | EXPORT_SYMBOL_GPL(apply_to_page_range); | 1655 | EXPORT_SYMBOL_GPL(apply_to_page_range); |
@@ -1839,7 +1862,7 @@ gotten: | |||
1839 | * seen in the presence of one thread doing SMC and another | 1862 | * seen in the presence of one thread doing SMC and another |
1840 | * thread doing COW. | 1863 | * thread doing COW. |
1841 | */ | 1864 | */ |
1842 | ptep_clear_flush(vma, address, page_table); | 1865 | ptep_clear_flush_notify(vma, address, page_table); |
1843 | set_pte_at(mm, address, page_table, entry); | 1866 | set_pte_at(mm, address, page_table, entry); |
1844 | update_mmu_cache(vma, address, entry); | 1867 | update_mmu_cache(vma, address, entry); |
1845 | lru_cache_add_active(new_page); | 1868 | lru_cache_add_active(new_page); |
@@ -26,6 +26,7 @@ | |||
26 | #include <linux/mount.h> | 26 | #include <linux/mount.h> |
27 | #include <linux/mempolicy.h> | 27 | #include <linux/mempolicy.h> |
28 | #include <linux/rmap.h> | 28 | #include <linux/rmap.h> |
29 | #include <linux/mmu_notifier.h> | ||
29 | 30 | ||
30 | #include <asm/uaccess.h> | 31 | #include <asm/uaccess.h> |
31 | #include <asm/cacheflush.h> | 32 | #include <asm/cacheflush.h> |
@@ -2061,6 +2062,7 @@ void exit_mmap(struct mm_struct *mm) | |||
2061 | 2062 | ||
2062 | /* mm's last user has gone, and its about to be pulled down */ | 2063 | /* mm's last user has gone, and its about to be pulled down */ |
2063 | arch_exit_mmap(mm); | 2064 | arch_exit_mmap(mm); |
2065 | mmu_notifier_release(mm); | ||
2064 | 2066 | ||
2065 | lru_add_drain(); | 2067 | lru_add_drain(); |
2066 | flush_cache_mm(mm); | 2068 | flush_cache_mm(mm); |
@@ -2268,3 +2270,161 @@ int install_special_mapping(struct mm_struct *mm, | |||
2268 | 2270 | ||
2269 | return 0; | 2271 | return 0; |
2270 | } | 2272 | } |
2273 | |||
2274 | static DEFINE_MUTEX(mm_all_locks_mutex); | ||
2275 | |||
2276 | static void vm_lock_anon_vma(struct anon_vma *anon_vma) | ||
2277 | { | ||
2278 | if (!test_bit(0, (unsigned long *) &anon_vma->head.next)) { | ||
2279 | /* | ||
2280 | * The LSB of head.next can't change from under us | ||
2281 | * because we hold the mm_all_locks_mutex. | ||
2282 | */ | ||
2283 | spin_lock(&anon_vma->lock); | ||
2284 | /* | ||
2285 | * We can safely modify head.next after taking the | ||
2286 | * anon_vma->lock. If some other vma in this mm shares | ||
2287 | * the same anon_vma we won't take it again. | ||
2288 | * | ||
2289 | * No need of atomic instructions here, head.next | ||
2290 | * can't change from under us thanks to the | ||
2291 | * anon_vma->lock. | ||
2292 | */ | ||
2293 | if (__test_and_set_bit(0, (unsigned long *) | ||
2294 | &anon_vma->head.next)) | ||
2295 | BUG(); | ||
2296 | } | ||
2297 | } | ||
2298 | |||
2299 | static void vm_lock_mapping(struct address_space *mapping) | ||
2300 | { | ||
2301 | if (!test_bit(AS_MM_ALL_LOCKS, &mapping->flags)) { | ||
2302 | /* | ||
2303 | * AS_MM_ALL_LOCKS can't change from under us because | ||
2304 | * we hold the mm_all_locks_mutex. | ||
2305 | * | ||
2306 | * Operations on ->flags have to be atomic because | ||
2307 | * even if AS_MM_ALL_LOCKS is stable thanks to the | ||
2308 | * mm_all_locks_mutex, there may be other cpus | ||
2309 | * changing other bitflags in parallel to us. | ||
2310 | */ | ||
2311 | if (test_and_set_bit(AS_MM_ALL_LOCKS, &mapping->flags)) | ||
2312 | BUG(); | ||
2313 | spin_lock(&mapping->i_mmap_lock); | ||
2314 | } | ||
2315 | } | ||
2316 | |||
2317 | /* | ||
2318 | * This operation locks against the VM for all pte/vma/mm related | ||
2319 | * operations that could ever happen on a certain mm. This includes | ||
2320 | * vmtruncate, try_to_unmap, and all page faults. | ||
2321 | * | ||
2322 | * The caller must take the mmap_sem in write mode before calling | ||
2323 | * mm_take_all_locks(). The caller isn't allowed to release the | ||
2324 | * mmap_sem until mm_drop_all_locks() returns. | ||
2325 | * | ||
2326 | * mmap_sem in write mode is required in order to block all operations | ||
2327 | * that could modify pagetables and free pages without need of | ||
2328 | * altering the vma layout (for example populate_range() with | ||
2329 | * nonlinear vmas). It's also needed in write mode to avoid new | ||
2330 | * anon_vmas to be associated with existing vmas. | ||
2331 | * | ||
2332 | * A single task can't take more than one mm_take_all_locks() in a row | ||
2333 | * or it would deadlock. | ||
2334 | * | ||
2335 | * The LSB in anon_vma->head.next and the AS_MM_ALL_LOCKS bitflag in | ||
2336 | * mapping->flags avoid to take the same lock twice, if more than one | ||
2337 | * vma in this mm is backed by the same anon_vma or address_space. | ||
2338 | * | ||
2339 | * We can take all the locks in random order because the VM code | ||
2340 | * taking i_mmap_lock or anon_vma->lock outside the mmap_sem never | ||
2341 | * takes more than one of them in a row. Secondly we're protected | ||
2342 | * against a concurrent mm_take_all_locks() by the mm_all_locks_mutex. | ||
2343 | * | ||
2344 | * mm_take_all_locks() and mm_drop_all_locks are expensive operations | ||
2345 | * that may have to take thousand of locks. | ||
2346 | * | ||
2347 | * mm_take_all_locks() can fail if it's interrupted by signals. | ||
2348 | */ | ||
2349 | int mm_take_all_locks(struct mm_struct *mm) | ||
2350 | { | ||
2351 | struct vm_area_struct *vma; | ||
2352 | int ret = -EINTR; | ||
2353 | |||
2354 | BUG_ON(down_read_trylock(&mm->mmap_sem)); | ||
2355 | |||
2356 | mutex_lock(&mm_all_locks_mutex); | ||
2357 | |||
2358 | for (vma = mm->mmap; vma; vma = vma->vm_next) { | ||
2359 | if (signal_pending(current)) | ||
2360 | goto out_unlock; | ||
2361 | if (vma->anon_vma) | ||
2362 | vm_lock_anon_vma(vma->anon_vma); | ||
2363 | if (vma->vm_file && vma->vm_file->f_mapping) | ||
2364 | vm_lock_mapping(vma->vm_file->f_mapping); | ||
2365 | } | ||
2366 | ret = 0; | ||
2367 | |||
2368 | out_unlock: | ||
2369 | if (ret) | ||
2370 | mm_drop_all_locks(mm); | ||
2371 | |||
2372 | return ret; | ||
2373 | } | ||
2374 | |||
2375 | static void vm_unlock_anon_vma(struct anon_vma *anon_vma) | ||
2376 | { | ||
2377 | if (test_bit(0, (unsigned long *) &anon_vma->head.next)) { | ||
2378 | /* | ||
2379 | * The LSB of head.next can't change to 0 from under | ||
2380 | * us because we hold the mm_all_locks_mutex. | ||
2381 | * | ||
2382 | * We must however clear the bitflag before unlocking | ||
2383 | * the vma so the users using the anon_vma->head will | ||
2384 | * never see our bitflag. | ||
2385 | * | ||
2386 | * No need of atomic instructions here, head.next | ||
2387 | * can't change from under us until we release the | ||
2388 | * anon_vma->lock. | ||
2389 | */ | ||
2390 | if (!__test_and_clear_bit(0, (unsigned long *) | ||
2391 | &anon_vma->head.next)) | ||
2392 | BUG(); | ||
2393 | spin_unlock(&anon_vma->lock); | ||
2394 | } | ||
2395 | } | ||
2396 | |||
2397 | static void vm_unlock_mapping(struct address_space *mapping) | ||
2398 | { | ||
2399 | if (test_bit(AS_MM_ALL_LOCKS, &mapping->flags)) { | ||
2400 | /* | ||
2401 | * AS_MM_ALL_LOCKS can't change to 0 from under us | ||
2402 | * because we hold the mm_all_locks_mutex. | ||
2403 | */ | ||
2404 | spin_unlock(&mapping->i_mmap_lock); | ||
2405 | if (!test_and_clear_bit(AS_MM_ALL_LOCKS, | ||
2406 | &mapping->flags)) | ||
2407 | BUG(); | ||
2408 | } | ||
2409 | } | ||
2410 | |||
2411 | /* | ||
2412 | * The mmap_sem cannot be released by the caller until | ||
2413 | * mm_drop_all_locks() returns. | ||
2414 | */ | ||
2415 | void mm_drop_all_locks(struct mm_struct *mm) | ||
2416 | { | ||
2417 | struct vm_area_struct *vma; | ||
2418 | |||
2419 | BUG_ON(down_read_trylock(&mm->mmap_sem)); | ||
2420 | BUG_ON(!mutex_is_locked(&mm_all_locks_mutex)); | ||
2421 | |||
2422 | for (vma = mm->mmap; vma; vma = vma->vm_next) { | ||
2423 | if (vma->anon_vma) | ||
2424 | vm_unlock_anon_vma(vma->anon_vma); | ||
2425 | if (vma->vm_file && vma->vm_file->f_mapping) | ||
2426 | vm_unlock_mapping(vma->vm_file->f_mapping); | ||
2427 | } | ||
2428 | |||
2429 | mutex_unlock(&mm_all_locks_mutex); | ||
2430 | } | ||
diff --git a/mm/mmu_notifier.c b/mm/mmu_notifier.c new file mode 100644 index 000000000000..5f4ef0250bee --- /dev/null +++ b/mm/mmu_notifier.c | |||
@@ -0,0 +1,277 @@ | |||
1 | /* | ||
2 | * linux/mm/mmu_notifier.c | ||
3 | * | ||
4 | * Copyright (C) 2008 Qumranet, Inc. | ||
5 | * Copyright (C) 2008 SGI | ||
6 | * Christoph Lameter <clameter@sgi.com> | ||
7 | * | ||
8 | * This work is licensed under the terms of the GNU GPL, version 2. See | ||
9 | * the COPYING file in the top-level directory. | ||
10 | */ | ||
11 | |||
12 | #include <linux/rculist.h> | ||
13 | #include <linux/mmu_notifier.h> | ||
14 | #include <linux/module.h> | ||
15 | #include <linux/mm.h> | ||
16 | #include <linux/err.h> | ||
17 | #include <linux/rcupdate.h> | ||
18 | #include <linux/sched.h> | ||
19 | |||
20 | /* | ||
21 | * This function can't run concurrently against mmu_notifier_register | ||
22 | * because mm->mm_users > 0 during mmu_notifier_register and exit_mmap | ||
23 | * runs with mm_users == 0. Other tasks may still invoke mmu notifiers | ||
24 | * in parallel despite there being no task using this mm any more, | ||
25 | * through the vmas outside of the exit_mmap context, such as with | ||
26 | * vmtruncate. This serializes against mmu_notifier_unregister with | ||
27 | * the mmu_notifier_mm->lock in addition to RCU and it serializes | ||
28 | * against the other mmu notifiers with RCU. struct mmu_notifier_mm | ||
29 | * can't go away from under us as exit_mmap holds an mm_count pin | ||
30 | * itself. | ||
31 | */ | ||
32 | void __mmu_notifier_release(struct mm_struct *mm) | ||
33 | { | ||
34 | struct mmu_notifier *mn; | ||
35 | |||
36 | spin_lock(&mm->mmu_notifier_mm->lock); | ||
37 | while (unlikely(!hlist_empty(&mm->mmu_notifier_mm->list))) { | ||
38 | mn = hlist_entry(mm->mmu_notifier_mm->list.first, | ||
39 | struct mmu_notifier, | ||
40 | hlist); | ||
41 | /* | ||
42 | * We arrived before mmu_notifier_unregister so | ||
43 | * mmu_notifier_unregister will do nothing other than | ||
44 | * to wait ->release to finish and | ||
45 | * mmu_notifier_unregister to return. | ||
46 | */ | ||
47 | hlist_del_init_rcu(&mn->hlist); | ||
48 | /* | ||
49 | * RCU here will block mmu_notifier_unregister until | ||
50 | * ->release returns. | ||
51 | */ | ||
52 | rcu_read_lock(); | ||
53 | spin_unlock(&mm->mmu_notifier_mm->lock); | ||
54 | /* | ||
55 | * if ->release runs before mmu_notifier_unregister it | ||
56 | * must be handled as it's the only way for the driver | ||
57 | * to flush all existing sptes and stop the driver | ||
58 | * from establishing any more sptes before all the | ||
59 | * pages in the mm are freed. | ||
60 | */ | ||
61 | if (mn->ops->release) | ||
62 | mn->ops->release(mn, mm); | ||
63 | rcu_read_unlock(); | ||
64 | spin_lock(&mm->mmu_notifier_mm->lock); | ||
65 | } | ||
66 | spin_unlock(&mm->mmu_notifier_mm->lock); | ||
67 | |||
68 | /* | ||
69 | * synchronize_rcu here prevents mmu_notifier_release to | ||
70 | * return to exit_mmap (which would proceed freeing all pages | ||
71 | * in the mm) until the ->release method returns, if it was | ||
72 | * invoked by mmu_notifier_unregister. | ||
73 | * | ||
74 | * The mmu_notifier_mm can't go away from under us because one | ||
75 | * mm_count is hold by exit_mmap. | ||
76 | */ | ||
77 | synchronize_rcu(); | ||
78 | } | ||
79 | |||
80 | /* | ||
81 | * If no young bitflag is supported by the hardware, ->clear_flush_young can | ||
82 | * unmap the address and return 1 or 0 depending if the mapping previously | ||
83 | * existed or not. | ||
84 | */ | ||
85 | int __mmu_notifier_clear_flush_young(struct mm_struct *mm, | ||
86 | unsigned long address) | ||
87 | { | ||
88 | struct mmu_notifier *mn; | ||
89 | struct hlist_node *n; | ||
90 | int young = 0; | ||
91 | |||
92 | rcu_read_lock(); | ||
93 | hlist_for_each_entry_rcu(mn, n, &mm->mmu_notifier_mm->list, hlist) { | ||
94 | if (mn->ops->clear_flush_young) | ||
95 | young |= mn->ops->clear_flush_young(mn, mm, address); | ||
96 | } | ||
97 | rcu_read_unlock(); | ||
98 | |||
99 | return young; | ||
100 | } | ||
101 | |||
102 | void __mmu_notifier_invalidate_page(struct mm_struct *mm, | ||
103 | unsigned long address) | ||
104 | { | ||
105 | struct mmu_notifier *mn; | ||
106 | struct hlist_node *n; | ||
107 | |||
108 | rcu_read_lock(); | ||
109 | hlist_for_each_entry_rcu(mn, n, &mm->mmu_notifier_mm->list, hlist) { | ||
110 | if (mn->ops->invalidate_page) | ||
111 | mn->ops->invalidate_page(mn, mm, address); | ||
112 | } | ||
113 | rcu_read_unlock(); | ||
114 | } | ||
115 | |||
116 | void __mmu_notifier_invalidate_range_start(struct mm_struct *mm, | ||
117 | unsigned long start, unsigned long end) | ||
118 | { | ||
119 | struct mmu_notifier *mn; | ||
120 | struct hlist_node *n; | ||
121 | |||
122 | rcu_read_lock(); | ||
123 | hlist_for_each_entry_rcu(mn, n, &mm->mmu_notifier_mm->list, hlist) { | ||
124 | if (mn->ops->invalidate_range_start) | ||
125 | mn->ops->invalidate_range_start(mn, mm, start, end); | ||
126 | } | ||
127 | rcu_read_unlock(); | ||
128 | } | ||
129 | |||
130 | void __mmu_notifier_invalidate_range_end(struct mm_struct *mm, | ||
131 | unsigned long start, unsigned long end) | ||
132 | { | ||
133 | struct mmu_notifier *mn; | ||
134 | struct hlist_node *n; | ||
135 | |||
136 | rcu_read_lock(); | ||
137 | hlist_for_each_entry_rcu(mn, n, &mm->mmu_notifier_mm->list, hlist) { | ||
138 | if (mn->ops->invalidate_range_end) | ||
139 | mn->ops->invalidate_range_end(mn, mm, start, end); | ||
140 | } | ||
141 | rcu_read_unlock(); | ||
142 | } | ||
143 | |||
144 | static int do_mmu_notifier_register(struct mmu_notifier *mn, | ||
145 | struct mm_struct *mm, | ||
146 | int take_mmap_sem) | ||
147 | { | ||
148 | struct mmu_notifier_mm *mmu_notifier_mm; | ||
149 | int ret; | ||
150 | |||
151 | BUG_ON(atomic_read(&mm->mm_users) <= 0); | ||
152 | |||
153 | ret = -ENOMEM; | ||
154 | mmu_notifier_mm = kmalloc(sizeof(struct mmu_notifier_mm), GFP_KERNEL); | ||
155 | if (unlikely(!mmu_notifier_mm)) | ||
156 | goto out; | ||
157 | |||
158 | if (take_mmap_sem) | ||
159 | down_write(&mm->mmap_sem); | ||
160 | ret = mm_take_all_locks(mm); | ||
161 | if (unlikely(ret)) | ||
162 | goto out_cleanup; | ||
163 | |||
164 | if (!mm_has_notifiers(mm)) { | ||
165 | INIT_HLIST_HEAD(&mmu_notifier_mm->list); | ||
166 | spin_lock_init(&mmu_notifier_mm->lock); | ||
167 | mm->mmu_notifier_mm = mmu_notifier_mm; | ||
168 | mmu_notifier_mm = NULL; | ||
169 | } | ||
170 | atomic_inc(&mm->mm_count); | ||
171 | |||
172 | /* | ||
173 | * Serialize the update against mmu_notifier_unregister. A | ||
174 | * side note: mmu_notifier_release can't run concurrently with | ||
175 | * us because we hold the mm_users pin (either implicitly as | ||
176 | * current->mm or explicitly with get_task_mm() or similar). | ||
177 | * We can't race against any other mmu notifier method either | ||
178 | * thanks to mm_take_all_locks(). | ||
179 | */ | ||
180 | spin_lock(&mm->mmu_notifier_mm->lock); | ||
181 | hlist_add_head(&mn->hlist, &mm->mmu_notifier_mm->list); | ||
182 | spin_unlock(&mm->mmu_notifier_mm->lock); | ||
183 | |||
184 | mm_drop_all_locks(mm); | ||
185 | out_cleanup: | ||
186 | if (take_mmap_sem) | ||
187 | up_write(&mm->mmap_sem); | ||
188 | /* kfree() does nothing if mmu_notifier_mm is NULL */ | ||
189 | kfree(mmu_notifier_mm); | ||
190 | out: | ||
191 | BUG_ON(atomic_read(&mm->mm_users) <= 0); | ||
192 | return ret; | ||
193 | } | ||
194 | |||
195 | /* | ||
196 | * Must not hold mmap_sem nor any other VM related lock when calling | ||
197 | * this registration function. Must also ensure mm_users can't go down | ||
198 | * to zero while this runs to avoid races with mmu_notifier_release, | ||
199 | * so mm has to be current->mm or the mm should be pinned safely such | ||
200 | * as with get_task_mm(). If the mm is not current->mm, the mm_users | ||
201 | * pin should be released by calling mmput after mmu_notifier_register | ||
202 | * returns. mmu_notifier_unregister must be always called to | ||
203 | * unregister the notifier. mm_count is automatically pinned to allow | ||
204 | * mmu_notifier_unregister to safely run at any time later, before or | ||
205 | * after exit_mmap. ->release will always be called before exit_mmap | ||
206 | * frees the pages. | ||
207 | */ | ||
208 | int mmu_notifier_register(struct mmu_notifier *mn, struct mm_struct *mm) | ||
209 | { | ||
210 | return do_mmu_notifier_register(mn, mm, 1); | ||
211 | } | ||
212 | EXPORT_SYMBOL_GPL(mmu_notifier_register); | ||
213 | |||
214 | /* | ||
215 | * Same as mmu_notifier_register but here the caller must hold the | ||
216 | * mmap_sem in write mode. | ||
217 | */ | ||
218 | int __mmu_notifier_register(struct mmu_notifier *mn, struct mm_struct *mm) | ||
219 | { | ||
220 | return do_mmu_notifier_register(mn, mm, 0); | ||
221 | } | ||
222 | EXPORT_SYMBOL_GPL(__mmu_notifier_register); | ||
223 | |||
224 | /* this is called after the last mmu_notifier_unregister() returned */ | ||
225 | void __mmu_notifier_mm_destroy(struct mm_struct *mm) | ||
226 | { | ||
227 | BUG_ON(!hlist_empty(&mm->mmu_notifier_mm->list)); | ||
228 | kfree(mm->mmu_notifier_mm); | ||
229 | mm->mmu_notifier_mm = LIST_POISON1; /* debug */ | ||
230 | } | ||
231 | |||
232 | /* | ||
233 | * This releases the mm_count pin automatically and frees the mm | ||
234 | * structure if it was the last user of it. It serializes against | ||
235 | * running mmu notifiers with RCU and against mmu_notifier_unregister | ||
236 | * with the unregister lock + RCU. All sptes must be dropped before | ||
237 | * calling mmu_notifier_unregister. ->release or any other notifier | ||
238 | * method may be invoked concurrently with mmu_notifier_unregister, | ||
239 | * and only after mmu_notifier_unregister returned we're guaranteed | ||
240 | * that ->release or any other method can't run anymore. | ||
241 | */ | ||
242 | void mmu_notifier_unregister(struct mmu_notifier *mn, struct mm_struct *mm) | ||
243 | { | ||
244 | BUG_ON(atomic_read(&mm->mm_count) <= 0); | ||
245 | |||
246 | spin_lock(&mm->mmu_notifier_mm->lock); | ||
247 | if (!hlist_unhashed(&mn->hlist)) { | ||
248 | hlist_del_rcu(&mn->hlist); | ||
249 | |||
250 | /* | ||
251 | * RCU here will force exit_mmap to wait ->release to finish | ||
252 | * before freeing the pages. | ||
253 | */ | ||
254 | rcu_read_lock(); | ||
255 | spin_unlock(&mm->mmu_notifier_mm->lock); | ||
256 | /* | ||
257 | * exit_mmap will block in mmu_notifier_release to | ||
258 | * guarantee ->release is called before freeing the | ||
259 | * pages. | ||
260 | */ | ||
261 | if (mn->ops->release) | ||
262 | mn->ops->release(mn, mm); | ||
263 | rcu_read_unlock(); | ||
264 | } else | ||
265 | spin_unlock(&mm->mmu_notifier_mm->lock); | ||
266 | |||
267 | /* | ||
268 | * Wait any running method to finish, of course including | ||
269 | * ->release if it was run by mmu_notifier_relase instead of us. | ||
270 | */ | ||
271 | synchronize_rcu(); | ||
272 | |||
273 | BUG_ON(atomic_read(&mm->mm_count) <= 0); | ||
274 | |||
275 | mmdrop(mm); | ||
276 | } | ||
277 | EXPORT_SYMBOL_GPL(mmu_notifier_unregister); | ||
diff --git a/mm/mprotect.c b/mm/mprotect.c index abd645a3b0a0..fded06f923f4 100644 --- a/mm/mprotect.c +++ b/mm/mprotect.c | |||
@@ -21,6 +21,7 @@ | |||
21 | #include <linux/syscalls.h> | 21 | #include <linux/syscalls.h> |
22 | #include <linux/swap.h> | 22 | #include <linux/swap.h> |
23 | #include <linux/swapops.h> | 23 | #include <linux/swapops.h> |
24 | #include <linux/mmu_notifier.h> | ||
24 | #include <asm/uaccess.h> | 25 | #include <asm/uaccess.h> |
25 | #include <asm/pgtable.h> | 26 | #include <asm/pgtable.h> |
26 | #include <asm/cacheflush.h> | 27 | #include <asm/cacheflush.h> |
@@ -203,10 +204,12 @@ success: | |||
203 | dirty_accountable = 1; | 204 | dirty_accountable = 1; |
204 | } | 205 | } |
205 | 206 | ||
207 | mmu_notifier_invalidate_range_start(mm, start, end); | ||
206 | if (is_vm_hugetlb_page(vma)) | 208 | if (is_vm_hugetlb_page(vma)) |
207 | hugetlb_change_protection(vma, start, end, vma->vm_page_prot); | 209 | hugetlb_change_protection(vma, start, end, vma->vm_page_prot); |
208 | else | 210 | else |
209 | change_protection(vma, start, end, vma->vm_page_prot, dirty_accountable); | 211 | change_protection(vma, start, end, vma->vm_page_prot, dirty_accountable); |
212 | mmu_notifier_invalidate_range_end(mm, start, end); | ||
210 | vm_stat_account(mm, oldflags, vma->vm_file, -nrpages); | 213 | vm_stat_account(mm, oldflags, vma->vm_file, -nrpages); |
211 | vm_stat_account(mm, newflags, vma->vm_file, nrpages); | 214 | vm_stat_account(mm, newflags, vma->vm_file, nrpages); |
212 | return 0; | 215 | return 0; |
diff --git a/mm/mremap.c b/mm/mremap.c index 08e3c7f2bd15..1a7743923c8c 100644 --- a/mm/mremap.c +++ b/mm/mremap.c | |||
@@ -18,6 +18,7 @@ | |||
18 | #include <linux/highmem.h> | 18 | #include <linux/highmem.h> |
19 | #include <linux/security.h> | 19 | #include <linux/security.h> |
20 | #include <linux/syscalls.h> | 20 | #include <linux/syscalls.h> |
21 | #include <linux/mmu_notifier.h> | ||
21 | 22 | ||
22 | #include <asm/uaccess.h> | 23 | #include <asm/uaccess.h> |
23 | #include <asm/cacheflush.h> | 24 | #include <asm/cacheflush.h> |
@@ -74,7 +75,11 @@ static void move_ptes(struct vm_area_struct *vma, pmd_t *old_pmd, | |||
74 | struct mm_struct *mm = vma->vm_mm; | 75 | struct mm_struct *mm = vma->vm_mm; |
75 | pte_t *old_pte, *new_pte, pte; | 76 | pte_t *old_pte, *new_pte, pte; |
76 | spinlock_t *old_ptl, *new_ptl; | 77 | spinlock_t *old_ptl, *new_ptl; |
78 | unsigned long old_start; | ||
77 | 79 | ||
80 | old_start = old_addr; | ||
81 | mmu_notifier_invalidate_range_start(vma->vm_mm, | ||
82 | old_start, old_end); | ||
78 | if (vma->vm_file) { | 83 | if (vma->vm_file) { |
79 | /* | 84 | /* |
80 | * Subtle point from Rajesh Venkatasubramanian: before | 85 | * Subtle point from Rajesh Venkatasubramanian: before |
@@ -116,6 +121,7 @@ static void move_ptes(struct vm_area_struct *vma, pmd_t *old_pmd, | |||
116 | pte_unmap_unlock(old_pte - 1, old_ptl); | 121 | pte_unmap_unlock(old_pte - 1, old_ptl); |
117 | if (mapping) | 122 | if (mapping) |
118 | spin_unlock(&mapping->i_mmap_lock); | 123 | spin_unlock(&mapping->i_mmap_lock); |
124 | mmu_notifier_invalidate_range_end(vma->vm_mm, old_start, old_end); | ||
119 | } | 125 | } |
120 | 126 | ||
121 | #define LATENCY_LIMIT (64 * PAGE_SIZE) | 127 | #define LATENCY_LIMIT (64 * PAGE_SIZE) |
diff --git a/mm/page_alloc.c b/mm/page_alloc.c index 6da667274df5..3cf3d05b6bd4 100644 --- a/mm/page_alloc.c +++ b/mm/page_alloc.c | |||
@@ -2372,7 +2372,7 @@ static void build_zonelist_cache(pg_data_t *pgdat) | |||
2372 | 2372 | ||
2373 | #endif /* CONFIG_NUMA */ | 2373 | #endif /* CONFIG_NUMA */ |
2374 | 2374 | ||
2375 | /* return values int ....just for stop_machine_run() */ | 2375 | /* return values int ....just for stop_machine() */ |
2376 | static int __build_all_zonelists(void *dummy) | 2376 | static int __build_all_zonelists(void *dummy) |
2377 | { | 2377 | { |
2378 | int nid; | 2378 | int nid; |
@@ -2397,7 +2397,7 @@ void build_all_zonelists(void) | |||
2397 | } else { | 2397 | } else { |
2398 | /* we have to stop all cpus to guarantee there is no user | 2398 | /* we have to stop all cpus to guarantee there is no user |
2399 | of zonelist */ | 2399 | of zonelist */ |
2400 | stop_machine_run(__build_all_zonelists, NULL, NR_CPUS); | 2400 | stop_machine(__build_all_zonelists, NULL, NULL); |
2401 | /* cpuset refresh routine should be here */ | 2401 | /* cpuset refresh routine should be here */ |
2402 | } | 2402 | } |
2403 | vm_total_pages = nr_free_pagecache_pages(); | 2403 | vm_total_pages = nr_free_pagecache_pages(); |
@@ -49,6 +49,7 @@ | |||
49 | #include <linux/module.h> | 49 | #include <linux/module.h> |
50 | #include <linux/kallsyms.h> | 50 | #include <linux/kallsyms.h> |
51 | #include <linux/memcontrol.h> | 51 | #include <linux/memcontrol.h> |
52 | #include <linux/mmu_notifier.h> | ||
52 | 53 | ||
53 | #include <asm/tlbflush.h> | 54 | #include <asm/tlbflush.h> |
54 | 55 | ||
@@ -287,7 +288,7 @@ static int page_referenced_one(struct page *page, | |||
287 | if (vma->vm_flags & VM_LOCKED) { | 288 | if (vma->vm_flags & VM_LOCKED) { |
288 | referenced++; | 289 | referenced++; |
289 | *mapcount = 1; /* break early from loop */ | 290 | *mapcount = 1; /* break early from loop */ |
290 | } else if (ptep_clear_flush_young(vma, address, pte)) | 291 | } else if (ptep_clear_flush_young_notify(vma, address, pte)) |
291 | referenced++; | 292 | referenced++; |
292 | 293 | ||
293 | /* Pretend the page is referenced if the task has the | 294 | /* Pretend the page is referenced if the task has the |
@@ -457,7 +458,7 @@ static int page_mkclean_one(struct page *page, struct vm_area_struct *vma) | |||
457 | pte_t entry; | 458 | pte_t entry; |
458 | 459 | ||
459 | flush_cache_page(vma, address, pte_pfn(*pte)); | 460 | flush_cache_page(vma, address, pte_pfn(*pte)); |
460 | entry = ptep_clear_flush(vma, address, pte); | 461 | entry = ptep_clear_flush_notify(vma, address, pte); |
461 | entry = pte_wrprotect(entry); | 462 | entry = pte_wrprotect(entry); |
462 | entry = pte_mkclean(entry); | 463 | entry = pte_mkclean(entry); |
463 | set_pte_at(mm, address, pte, entry); | 464 | set_pte_at(mm, address, pte, entry); |
@@ -705,14 +706,14 @@ static int try_to_unmap_one(struct page *page, struct vm_area_struct *vma, | |||
705 | * skipped over this mm) then we should reactivate it. | 706 | * skipped over this mm) then we should reactivate it. |
706 | */ | 707 | */ |
707 | if (!migration && ((vma->vm_flags & VM_LOCKED) || | 708 | if (!migration && ((vma->vm_flags & VM_LOCKED) || |
708 | (ptep_clear_flush_young(vma, address, pte)))) { | 709 | (ptep_clear_flush_young_notify(vma, address, pte)))) { |
709 | ret = SWAP_FAIL; | 710 | ret = SWAP_FAIL; |
710 | goto out_unmap; | 711 | goto out_unmap; |
711 | } | 712 | } |
712 | 713 | ||
713 | /* Nuke the page table entry. */ | 714 | /* Nuke the page table entry. */ |
714 | flush_cache_page(vma, address, page_to_pfn(page)); | 715 | flush_cache_page(vma, address, page_to_pfn(page)); |
715 | pteval = ptep_clear_flush(vma, address, pte); | 716 | pteval = ptep_clear_flush_notify(vma, address, pte); |
716 | 717 | ||
717 | /* Move the dirty bit to the physical page now the pte is gone. */ | 718 | /* Move the dirty bit to the physical page now the pte is gone. */ |
718 | if (pte_dirty(pteval)) | 719 | if (pte_dirty(pteval)) |
@@ -837,12 +838,12 @@ static void try_to_unmap_cluster(unsigned long cursor, | |||
837 | page = vm_normal_page(vma, address, *pte); | 838 | page = vm_normal_page(vma, address, *pte); |
838 | BUG_ON(!page || PageAnon(page)); | 839 | BUG_ON(!page || PageAnon(page)); |
839 | 840 | ||
840 | if (ptep_clear_flush_young(vma, address, pte)) | 841 | if (ptep_clear_flush_young_notify(vma, address, pte)) |
841 | continue; | 842 | continue; |
842 | 843 | ||
843 | /* Nuke the page table entry. */ | 844 | /* Nuke the page table entry. */ |
844 | flush_cache_page(vma, address, pte_pfn(*pte)); | 845 | flush_cache_page(vma, address, pte_pfn(*pte)); |
845 | pteval = ptep_clear_flush(vma, address, pte); | 846 | pteval = ptep_clear_flush_notify(vma, address, pte); |
846 | 847 | ||
847 | /* If nonlinear, store the file page offset in the pte. */ | 848 | /* If nonlinear, store the file page offset in the pte. */ |
848 | if (page->index != linear_page_index(vma, address)) | 849 | if (page->index != linear_page_index(vma, address)) |
diff --git a/mm/shmem.c b/mm/shmem.c index 952d361774bb..c1e5a3b4f758 100644 --- a/mm/shmem.c +++ b/mm/shmem.c | |||
@@ -1513,7 +1513,6 @@ shmem_get_inode(struct super_block *sb, int mode, dev_t dev) | |||
1513 | inode->i_uid = current->fsuid; | 1513 | inode->i_uid = current->fsuid; |
1514 | inode->i_gid = current->fsgid; | 1514 | inode->i_gid = current->fsgid; |
1515 | inode->i_blocks = 0; | 1515 | inode->i_blocks = 0; |
1516 | inode->i_mapping->a_ops = &shmem_aops; | ||
1517 | inode->i_mapping->backing_dev_info = &shmem_backing_dev_info; | 1516 | inode->i_mapping->backing_dev_info = &shmem_backing_dev_info; |
1518 | inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME; | 1517 | inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME; |
1519 | inode->i_generation = get_seconds(); | 1518 | inode->i_generation = get_seconds(); |
@@ -1528,6 +1527,7 @@ shmem_get_inode(struct super_block *sb, int mode, dev_t dev) | |||
1528 | init_special_inode(inode, mode, dev); | 1527 | init_special_inode(inode, mode, dev); |
1529 | break; | 1528 | break; |
1530 | case S_IFREG: | 1529 | case S_IFREG: |
1530 | inode->i_mapping->a_ops = &shmem_aops; | ||
1531 | inode->i_op = &shmem_inode_operations; | 1531 | inode->i_op = &shmem_inode_operations; |
1532 | inode->i_fop = &shmem_file_operations; | 1532 | inode->i_fop = &shmem_file_operations; |
1533 | mpol_shared_policy_init(&info->policy, | 1533 | mpol_shared_policy_init(&info->policy, |
@@ -1929,6 +1929,7 @@ static int shmem_symlink(struct inode *dir, struct dentry *dentry, const char *s | |||
1929 | return error; | 1929 | return error; |
1930 | } | 1930 | } |
1931 | unlock_page(page); | 1931 | unlock_page(page); |
1932 | inode->i_mapping->a_ops = &shmem_aops; | ||
1932 | inode->i_op = &shmem_symlink_inode_operations; | 1933 | inode->i_op = &shmem_symlink_inode_operations; |
1933 | kaddr = kmap_atomic(page, KM_USER0); | 1934 | kaddr = kmap_atomic(page, KM_USER0); |
1934 | memcpy(kaddr, symname, len); | 1935 | memcpy(kaddr, symname, len); |
diff --git a/net/dccp/dccp.h b/net/dccp/dccp.h index 743d85fcd651..1c2e3ec2eb57 100644 --- a/net/dccp/dccp.h +++ b/net/dccp/dccp.h | |||
@@ -226,7 +226,7 @@ static inline void dccp_csum_outgoing(struct sk_buff *skb) | |||
226 | 226 | ||
227 | extern void dccp_v4_send_check(struct sock *sk, int len, struct sk_buff *skb); | 227 | extern void dccp_v4_send_check(struct sock *sk, int len, struct sk_buff *skb); |
228 | 228 | ||
229 | extern int dccp_retransmit_skb(struct sock *sk, struct sk_buff *skb); | 229 | extern int dccp_retransmit_skb(struct sock *sk); |
230 | 230 | ||
231 | extern void dccp_send_ack(struct sock *sk); | 231 | extern void dccp_send_ack(struct sock *sk); |
232 | extern void dccp_reqsk_send_ack(struct sk_buff *sk, struct request_sock *rsk); | 232 | extern void dccp_reqsk_send_ack(struct sk_buff *sk, struct request_sock *rsk); |
diff --git a/net/dccp/ipv4.c b/net/dccp/ipv4.c index a835b88237cb..882c5c4de69e 100644 --- a/net/dccp/ipv4.c +++ b/net/dccp/ipv4.c | |||
@@ -196,8 +196,8 @@ static inline void dccp_do_pmtu_discovery(struct sock *sk, | |||
196 | static void dccp_v4_err(struct sk_buff *skb, u32 info) | 196 | static void dccp_v4_err(struct sk_buff *skb, u32 info) |
197 | { | 197 | { |
198 | const struct iphdr *iph = (struct iphdr *)skb->data; | 198 | const struct iphdr *iph = (struct iphdr *)skb->data; |
199 | const struct dccp_hdr *dh = (struct dccp_hdr *)(skb->data + | 199 | const u8 offset = iph->ihl << 2; |
200 | (iph->ihl << 2)); | 200 | const struct dccp_hdr *dh = (struct dccp_hdr *)(skb->data + offset); |
201 | struct dccp_sock *dp; | 201 | struct dccp_sock *dp; |
202 | struct inet_sock *inet; | 202 | struct inet_sock *inet; |
203 | const int type = icmp_hdr(skb)->type; | 203 | const int type = icmp_hdr(skb)->type; |
@@ -207,7 +207,8 @@ static void dccp_v4_err(struct sk_buff *skb, u32 info) | |||
207 | int err; | 207 | int err; |
208 | struct net *net = dev_net(skb->dev); | 208 | struct net *net = dev_net(skb->dev); |
209 | 209 | ||
210 | if (skb->len < (iph->ihl << 2) + 8) { | 210 | if (skb->len < offset + sizeof(*dh) || |
211 | skb->len < offset + __dccp_basic_hdr_len(dh)) { | ||
211 | ICMP_INC_STATS_BH(net, ICMP_MIB_INERRORS); | 212 | ICMP_INC_STATS_BH(net, ICMP_MIB_INERRORS); |
212 | return; | 213 | return; |
213 | } | 214 | } |
@@ -238,7 +239,7 @@ static void dccp_v4_err(struct sk_buff *skb, u32 info) | |||
238 | dp = dccp_sk(sk); | 239 | dp = dccp_sk(sk); |
239 | seq = dccp_hdr_seq(dh); | 240 | seq = dccp_hdr_seq(dh); |
240 | if ((1 << sk->sk_state) & ~(DCCPF_REQUESTING | DCCPF_LISTEN) && | 241 | if ((1 << sk->sk_state) & ~(DCCPF_REQUESTING | DCCPF_LISTEN) && |
241 | !between48(seq, dp->dccps_swl, dp->dccps_swh)) { | 242 | !between48(seq, dp->dccps_awl, dp->dccps_awh)) { |
242 | NET_INC_STATS_BH(net, LINUX_MIB_OUTOFWINDOWICMPS); | 243 | NET_INC_STATS_BH(net, LINUX_MIB_OUTOFWINDOWICMPS); |
243 | goto out; | 244 | goto out; |
244 | } | 245 | } |
diff --git a/net/dccp/ipv6.c b/net/dccp/ipv6.c index da509127e00c..5e1ee0da2c40 100644 --- a/net/dccp/ipv6.c +++ b/net/dccp/ipv6.c | |||
@@ -89,12 +89,19 @@ static void dccp_v6_err(struct sk_buff *skb, struct inet6_skb_parm *opt, | |||
89 | { | 89 | { |
90 | struct ipv6hdr *hdr = (struct ipv6hdr *)skb->data; | 90 | struct ipv6hdr *hdr = (struct ipv6hdr *)skb->data; |
91 | const struct dccp_hdr *dh = (struct dccp_hdr *)(skb->data + offset); | 91 | const struct dccp_hdr *dh = (struct dccp_hdr *)(skb->data + offset); |
92 | struct dccp_sock *dp; | ||
92 | struct ipv6_pinfo *np; | 93 | struct ipv6_pinfo *np; |
93 | struct sock *sk; | 94 | struct sock *sk; |
94 | int err; | 95 | int err; |
95 | __u64 seq; | 96 | __u64 seq; |
96 | struct net *net = dev_net(skb->dev); | 97 | struct net *net = dev_net(skb->dev); |
97 | 98 | ||
99 | if (skb->len < offset + sizeof(*dh) || | ||
100 | skb->len < offset + __dccp_basic_hdr_len(dh)) { | ||
101 | ICMP6_INC_STATS_BH(__in6_dev_get(skb->dev), ICMP6_MIB_INERRORS); | ||
102 | return; | ||
103 | } | ||
104 | |||
98 | sk = inet6_lookup(net, &dccp_hashinfo, | 105 | sk = inet6_lookup(net, &dccp_hashinfo, |
99 | &hdr->daddr, dh->dccph_dport, | 106 | &hdr->daddr, dh->dccph_dport, |
100 | &hdr->saddr, dh->dccph_sport, inet6_iif(skb)); | 107 | &hdr->saddr, dh->dccph_sport, inet6_iif(skb)); |
@@ -116,6 +123,14 @@ static void dccp_v6_err(struct sk_buff *skb, struct inet6_skb_parm *opt, | |||
116 | if (sk->sk_state == DCCP_CLOSED) | 123 | if (sk->sk_state == DCCP_CLOSED) |
117 | goto out; | 124 | goto out; |
118 | 125 | ||
126 | dp = dccp_sk(sk); | ||
127 | seq = dccp_hdr_seq(dh); | ||
128 | if ((1 << sk->sk_state) & ~(DCCPF_REQUESTING | DCCPF_LISTEN) && | ||
129 | !between48(seq, dp->dccps_awl, dp->dccps_awh)) { | ||
130 | NET_INC_STATS_BH(net, LINUX_MIB_OUTOFWINDOWICMPS); | ||
131 | goto out; | ||
132 | } | ||
133 | |||
119 | np = inet6_sk(sk); | 134 | np = inet6_sk(sk); |
120 | 135 | ||
121 | if (type == ICMPV6_PKT_TOOBIG) { | 136 | if (type == ICMPV6_PKT_TOOBIG) { |
@@ -168,7 +183,6 @@ static void dccp_v6_err(struct sk_buff *skb, struct inet6_skb_parm *opt, | |||
168 | 183 | ||
169 | icmpv6_err_convert(type, code, &err); | 184 | icmpv6_err_convert(type, code, &err); |
170 | 185 | ||
171 | seq = dccp_hdr_seq(dh); | ||
172 | /* Might be for an request_sock */ | 186 | /* Might be for an request_sock */ |
173 | switch (sk->sk_state) { | 187 | switch (sk->sk_state) { |
174 | struct request_sock *req, **prev; | 188 | struct request_sock *req, **prev; |
diff --git a/net/dccp/output.c b/net/dccp/output.c index fe20068c5d8e..d06945c7d3df 100644 --- a/net/dccp/output.c +++ b/net/dccp/output.c | |||
@@ -53,8 +53,11 @@ static int dccp_transmit_skb(struct sock *sk, struct sk_buff *skb) | |||
53 | dccp_packet_hdr_len(dcb->dccpd_type); | 53 | dccp_packet_hdr_len(dcb->dccpd_type); |
54 | int err, set_ack = 1; | 54 | int err, set_ack = 1; |
55 | u64 ackno = dp->dccps_gsr; | 55 | u64 ackno = dp->dccps_gsr; |
56 | 56 | /* | |
57 | dccp_inc_seqno(&dp->dccps_gss); | 57 | * Increment GSS here already in case the option code needs it. |
58 | * Update GSS for real only if option processing below succeeds. | ||
59 | */ | ||
60 | dcb->dccpd_seq = ADD48(dp->dccps_gss, 1); | ||
58 | 61 | ||
59 | switch (dcb->dccpd_type) { | 62 | switch (dcb->dccpd_type) { |
60 | case DCCP_PKT_DATA: | 63 | case DCCP_PKT_DATA: |
@@ -66,6 +69,9 @@ static int dccp_transmit_skb(struct sock *sk, struct sk_buff *skb) | |||
66 | 69 | ||
67 | case DCCP_PKT_REQUEST: | 70 | case DCCP_PKT_REQUEST: |
68 | set_ack = 0; | 71 | set_ack = 0; |
72 | /* Use ISS on the first (non-retransmitted) Request. */ | ||
73 | if (icsk->icsk_retransmits == 0) | ||
74 | dcb->dccpd_seq = dp->dccps_iss; | ||
69 | /* fall through */ | 75 | /* fall through */ |
70 | 76 | ||
71 | case DCCP_PKT_SYNC: | 77 | case DCCP_PKT_SYNC: |
@@ -84,8 +90,6 @@ static int dccp_transmit_skb(struct sock *sk, struct sk_buff *skb) | |||
84 | break; | 90 | break; |
85 | } | 91 | } |
86 | 92 | ||
87 | dcb->dccpd_seq = dp->dccps_gss; | ||
88 | |||
89 | if (dccp_insert_options(sk, skb)) { | 93 | if (dccp_insert_options(sk, skb)) { |
90 | kfree_skb(skb); | 94 | kfree_skb(skb); |
91 | return -EPROTO; | 95 | return -EPROTO; |
@@ -103,7 +107,7 @@ static int dccp_transmit_skb(struct sock *sk, struct sk_buff *skb) | |||
103 | /* XXX For now we're using only 48 bits sequence numbers */ | 107 | /* XXX For now we're using only 48 bits sequence numbers */ |
104 | dh->dccph_x = 1; | 108 | dh->dccph_x = 1; |
105 | 109 | ||
106 | dp->dccps_awh = dp->dccps_gss; | 110 | dccp_update_gss(sk, dcb->dccpd_seq); |
107 | dccp_hdr_set_seq(dh, dp->dccps_gss); | 111 | dccp_hdr_set_seq(dh, dp->dccps_gss); |
108 | if (set_ack) | 112 | if (set_ack) |
109 | dccp_hdr_set_ack(dccp_hdr_ack_bits(skb), ackno); | 113 | dccp_hdr_set_ack(dccp_hdr_ack_bits(skb), ackno); |
@@ -112,6 +116,11 @@ static int dccp_transmit_skb(struct sock *sk, struct sk_buff *skb) | |||
112 | case DCCP_PKT_REQUEST: | 116 | case DCCP_PKT_REQUEST: |
113 | dccp_hdr_request(skb)->dccph_req_service = | 117 | dccp_hdr_request(skb)->dccph_req_service = |
114 | dp->dccps_service; | 118 | dp->dccps_service; |
119 | /* | ||
120 | * Limit Ack window to ISS <= P.ackno <= GSS, so that | ||
121 | * only Responses to Requests we sent are considered. | ||
122 | */ | ||
123 | dp->dccps_awl = dp->dccps_iss; | ||
115 | break; | 124 | break; |
116 | case DCCP_PKT_RESET: | 125 | case DCCP_PKT_RESET: |
117 | dccp_hdr_reset(skb)->dccph_reset_code = | 126 | dccp_hdr_reset(skb)->dccph_reset_code = |
@@ -284,14 +293,26 @@ void dccp_write_xmit(struct sock *sk, int block) | |||
284 | } | 293 | } |
285 | } | 294 | } |
286 | 295 | ||
287 | int dccp_retransmit_skb(struct sock *sk, struct sk_buff *skb) | 296 | /** |
297 | * dccp_retransmit_skb - Retransmit Request, Close, or CloseReq packets | ||
298 | * There are only four retransmittable packet types in DCCP: | ||
299 | * - Request in client-REQUEST state (sec. 8.1.1), | ||
300 | * - CloseReq in server-CLOSEREQ state (sec. 8.3), | ||
301 | * - Close in node-CLOSING state (sec. 8.3), | ||
302 | * - Acks in client-PARTOPEN state (sec. 8.1.5, handled by dccp_delack_timer()). | ||
303 | * This function expects sk->sk_send_head to contain the original skb. | ||
304 | */ | ||
305 | int dccp_retransmit_skb(struct sock *sk) | ||
288 | { | 306 | { |
307 | WARN_ON(sk->sk_send_head == NULL); | ||
308 | |||
289 | if (inet_csk(sk)->icsk_af_ops->rebuild_header(sk) != 0) | 309 | if (inet_csk(sk)->icsk_af_ops->rebuild_header(sk) != 0) |
290 | return -EHOSTUNREACH; /* Routing failure or similar. */ | 310 | return -EHOSTUNREACH; /* Routing failure or similar. */ |
291 | 311 | ||
292 | return dccp_transmit_skb(sk, (skb_cloned(skb) ? | 312 | /* this count is used to distinguish original and retransmitted skb */ |
293 | pskb_copy(skb, GFP_ATOMIC): | 313 | inet_csk(sk)->icsk_retransmits++; |
294 | skb_clone(skb, GFP_ATOMIC))); | 314 | |
315 | return dccp_transmit_skb(sk, skb_clone(sk->sk_send_head, GFP_ATOMIC)); | ||
295 | } | 316 | } |
296 | 317 | ||
297 | struct sk_buff *dccp_make_response(struct sock *sk, struct dst_entry *dst, | 318 | struct sk_buff *dccp_make_response(struct sock *sk, struct dst_entry *dst, |
@@ -437,19 +458,7 @@ static inline void dccp_connect_init(struct sock *sk) | |||
437 | 458 | ||
438 | dccp_sync_mss(sk, dst_mtu(dst)); | 459 | dccp_sync_mss(sk, dst_mtu(dst)); |
439 | 460 | ||
440 | /* | 461 | /* Initialise GAR as per 8.5; AWL/AWH are set in dccp_transmit_skb() */ |
441 | * SWL and AWL are initially adjusted so that they are not less than | ||
442 | * the initial Sequence Numbers received and sent, respectively: | ||
443 | * SWL := max(GSR + 1 - floor(W/4), ISR), | ||
444 | * AWL := max(GSS - W' + 1, ISS). | ||
445 | * These adjustments MUST be applied only at the beginning of the | ||
446 | * connection. | ||
447 | */ | ||
448 | dccp_update_gss(sk, dp->dccps_iss); | ||
449 | dccp_set_seqno(&dp->dccps_awl, max48(dp->dccps_awl, dp->dccps_iss)); | ||
450 | |||
451 | /* S.GAR - greatest valid acknowledgement number received on a non-Sync; | ||
452 | * initialized to S.ISS (sec. 8.5) */ | ||
453 | dp->dccps_gar = dp->dccps_iss; | 462 | dp->dccps_gar = dp->dccps_iss; |
454 | 463 | ||
455 | icsk->icsk_retransmits = 0; | 464 | icsk->icsk_retransmits = 0; |
diff --git a/net/dccp/timer.c b/net/dccp/timer.c index 6a5b961b6f5c..54b3c7e9e016 100644 --- a/net/dccp/timer.c +++ b/net/dccp/timer.c | |||
@@ -99,21 +99,11 @@ static void dccp_retransmit_timer(struct sock *sk) | |||
99 | } | 99 | } |
100 | 100 | ||
101 | /* | 101 | /* |
102 | * sk->sk_send_head has to have one skb with | ||
103 | * DCCP_SKB_CB(skb)->dccpd_type set to one of the retransmittable DCCP | ||
104 | * packet types. The only packets eligible for retransmission are: | ||
105 | * -- Requests in client-REQUEST state (sec. 8.1.1) | ||
106 | * -- Acks in client-PARTOPEN state (sec. 8.1.5) | ||
107 | * -- CloseReq in server-CLOSEREQ state (sec. 8.3) | ||
108 | * -- Close in node-CLOSING state (sec. 8.3) */ | ||
109 | WARN_ON(sk->sk_send_head == NULL); | ||
110 | |||
111 | /* | ||
112 | * More than than 4MSL (8 minutes) has passed, a RESET(aborted) was | 102 | * More than than 4MSL (8 minutes) has passed, a RESET(aborted) was |
113 | * sent, no need to retransmit, this sock is dead. | 103 | * sent, no need to retransmit, this sock is dead. |
114 | */ | 104 | */ |
115 | if (dccp_write_timeout(sk)) | 105 | if (dccp_write_timeout(sk)) |
116 | goto out; | 106 | return; |
117 | 107 | ||
118 | /* | 108 | /* |
119 | * We want to know the number of packets retransmitted, not the | 109 | * We want to know the number of packets retransmitted, not the |
@@ -122,30 +112,28 @@ static void dccp_retransmit_timer(struct sock *sk) | |||
122 | if (icsk->icsk_retransmits == 0) | 112 | if (icsk->icsk_retransmits == 0) |
123 | DCCP_INC_STATS_BH(DCCP_MIB_TIMEOUTS); | 113 | DCCP_INC_STATS_BH(DCCP_MIB_TIMEOUTS); |
124 | 114 | ||
125 | if (dccp_retransmit_skb(sk, sk->sk_send_head) < 0) { | 115 | if (dccp_retransmit_skb(sk) != 0) { |
126 | /* | 116 | /* |
127 | * Retransmission failed because of local congestion, | 117 | * Retransmission failed because of local congestion, |
128 | * do not backoff. | 118 | * do not backoff. |
129 | */ | 119 | */ |
130 | if (icsk->icsk_retransmits == 0) | 120 | if (--icsk->icsk_retransmits == 0) |
131 | icsk->icsk_retransmits = 1; | 121 | icsk->icsk_retransmits = 1; |
132 | inet_csk_reset_xmit_timer(sk, ICSK_TIME_RETRANS, | 122 | inet_csk_reset_xmit_timer(sk, ICSK_TIME_RETRANS, |
133 | min(icsk->icsk_rto, | 123 | min(icsk->icsk_rto, |
134 | TCP_RESOURCE_PROBE_INTERVAL), | 124 | TCP_RESOURCE_PROBE_INTERVAL), |
135 | DCCP_RTO_MAX); | 125 | DCCP_RTO_MAX); |
136 | goto out; | 126 | return; |
137 | } | 127 | } |
138 | 128 | ||
139 | backoff: | 129 | backoff: |
140 | icsk->icsk_backoff++; | 130 | icsk->icsk_backoff++; |
141 | icsk->icsk_retransmits++; | ||
142 | 131 | ||
143 | icsk->icsk_rto = min(icsk->icsk_rto << 1, DCCP_RTO_MAX); | 132 | icsk->icsk_rto = min(icsk->icsk_rto << 1, DCCP_RTO_MAX); |
144 | inet_csk_reset_xmit_timer(sk, ICSK_TIME_RETRANS, icsk->icsk_rto, | 133 | inet_csk_reset_xmit_timer(sk, ICSK_TIME_RETRANS, icsk->icsk_rto, |
145 | DCCP_RTO_MAX); | 134 | DCCP_RTO_MAX); |
146 | if (icsk->icsk_retransmits > sysctl_dccp_retries1) | 135 | if (icsk->icsk_retransmits > sysctl_dccp_retries1) |
147 | __sk_dst_reset(sk); | 136 | __sk_dst_reset(sk); |
148 | out:; | ||
149 | } | 137 | } |
150 | 138 | ||
151 | static void dccp_write_timer(unsigned long data) | 139 | static void dccp_write_timer(unsigned long data) |
diff --git a/net/ipv4/ipcomp.c b/net/ipv4/ipcomp.c index a42b64d040c4..38ccb6dfb02e 100644 --- a/net/ipv4/ipcomp.c +++ b/net/ipv4/ipcomp.c | |||
@@ -104,9 +104,7 @@ out: | |||
104 | 104 | ||
105 | static int ipcomp4_init_state(struct xfrm_state *x) | 105 | static int ipcomp4_init_state(struct xfrm_state *x) |
106 | { | 106 | { |
107 | int err; | 107 | int err = -EINVAL; |
108 | struct ipcomp_data *ipcd; | ||
109 | struct xfrm_algo_desc *calg_desc; | ||
110 | 108 | ||
111 | x->props.header_len = 0; | 109 | x->props.header_len = 0; |
112 | switch (x->props.mode) { | 110 | switch (x->props.mode) { |
diff --git a/net/ipv6/ipcomp6.c b/net/ipv6/ipcomp6.c index 0cfcea42153a..4545e4306862 100644 --- a/net/ipv6/ipcomp6.c +++ b/net/ipv6/ipcomp6.c | |||
@@ -134,9 +134,7 @@ out: | |||
134 | 134 | ||
135 | static int ipcomp6_init_state(struct xfrm_state *x) | 135 | static int ipcomp6_init_state(struct xfrm_state *x) |
136 | { | 136 | { |
137 | int err; | 137 | int err = -EINVAL; |
138 | struct ipcomp_data *ipcd; | ||
139 | struct xfrm_algo_desc *calg_desc; | ||
140 | 138 | ||
141 | x->props.header_len = 0; | 139 | x->props.header_len = 0; |
142 | switch (x->props.mode) { | 140 | switch (x->props.mode) { |
diff --git a/net/sunrpc/svc.c b/net/sunrpc/svc.c index 835d27413083..5a32cb7c4bb4 100644 --- a/net/sunrpc/svc.c +++ b/net/sunrpc/svc.c | |||
@@ -310,8 +310,7 @@ svc_pool_map_set_cpumask(struct task_struct *task, unsigned int pidx) | |||
310 | switch (m->mode) { | 310 | switch (m->mode) { |
311 | case SVC_POOL_PERCPU: | 311 | case SVC_POOL_PERCPU: |
312 | { | 312 | { |
313 | cpumask_of_cpu_ptr(cpumask, node); | 313 | set_cpus_allowed_ptr(task, &cpumask_of_cpu(node)); |
314 | set_cpus_allowed_ptr(task, cpumask); | ||
315 | break; | 314 | break; |
316 | } | 315 | } |
317 | case SVC_POOL_PERNODE: | 316 | case SVC_POOL_PERNODE: |
diff --git a/sound/i2c/other/tea575x-tuner.c b/sound/i2c/other/tea575x-tuner.c index 87e3aefeddc3..83e90057270e 100644 --- a/sound/i2c/other/tea575x-tuner.c +++ b/sound/i2c/other/tea575x-tuner.c | |||
@@ -189,9 +189,7 @@ void snd_tea575x_init(struct snd_tea575x *tea) | |||
189 | } | 189 | } |
190 | 190 | ||
191 | memset(&tea->vd, 0, sizeof(tea->vd)); | 191 | memset(&tea->vd, 0, sizeof(tea->vd)); |
192 | tea->vd.owner = tea->card->module; | ||
193 | strcpy(tea->vd.name, tea->tea5759 ? "TEA5759 radio" : "TEA5757 radio"); | 192 | strcpy(tea->vd.name, tea->tea5759 ? "TEA5759 radio" : "TEA5757 radio"); |
194 | tea->vd.type = VID_TYPE_TUNER; | ||
195 | tea->vd.release = snd_tea575x_release; | 193 | tea->vd.release = snd_tea575x_release; |
196 | video_set_drvdata(&tea->vd, tea); | 194 | video_set_drvdata(&tea->vd, tea); |
197 | tea->vd.fops = &tea->fops; | 195 | tea->vd.fops = &tea->fops; |