diff options
305 files changed, 5065 insertions, 4517 deletions
diff --git a/Documentation/accounting/getdelays.c b/Documentation/accounting/getdelays.c index ab82b7f53312..d6cb1a86fd61 100644 --- a/Documentation/accounting/getdelays.c +++ b/Documentation/accounting/getdelays.c | |||
| @@ -25,6 +25,7 @@ | |||
| 25 | 25 | ||
| 26 | #include <linux/genetlink.h> | 26 | #include <linux/genetlink.h> |
| 27 | #include <linux/taskstats.h> | 27 | #include <linux/taskstats.h> |
| 28 | #include <linux/cgroupstats.h> | ||
| 28 | 29 | ||
| 29 | /* | 30 | /* |
| 30 | * Generic macros for dealing with netlink sockets. Might be duplicated | 31 | * Generic macros for dealing with netlink sockets. Might be duplicated |
| @@ -78,6 +79,7 @@ static void usage(void) | |||
| 78 | fprintf(stderr, " -i: print IO accounting (works only with -p)\n"); | 79 | fprintf(stderr, " -i: print IO accounting (works only with -p)\n"); |
| 79 | fprintf(stderr, " -l: listen forever\n"); | 80 | fprintf(stderr, " -l: listen forever\n"); |
| 80 | fprintf(stderr, " -v: debug on\n"); | 81 | fprintf(stderr, " -v: debug on\n"); |
| 82 | fprintf(stderr, " -C: container path\n"); | ||
| 81 | } | 83 | } |
| 82 | 84 | ||
| 83 | /* | 85 | /* |
| @@ -212,6 +214,14 @@ void task_context_switch_counts(struct taskstats *t) | |||
| 212 | t->nvcsw, t->nivcsw); | 214 | t->nvcsw, t->nivcsw); |
| 213 | } | 215 | } |
| 214 | 216 | ||
| 217 | void print_cgroupstats(struct cgroupstats *c) | ||
| 218 | { | ||
| 219 | printf("sleeping %llu, blocked %llu, running %llu, stopped %llu, " | ||
| 220 | "uninterruptible %llu\n", c->nr_sleeping, c->nr_io_wait, | ||
| 221 | c->nr_running, c->nr_stopped, c->nr_uninterruptible); | ||
| 222 | } | ||
| 223 | |||
| 224 | |||
| 215 | void print_ioacct(struct taskstats *t) | 225 | void print_ioacct(struct taskstats *t) |
| 216 | { | 226 | { |
| 217 | printf("%s: read=%llu, write=%llu, cancelled_write=%llu\n", | 227 | printf("%s: read=%llu, write=%llu, cancelled_write=%llu\n", |
| @@ -239,11 +249,14 @@ int main(int argc, char *argv[]) | |||
| 239 | int maskset = 0; | 249 | int maskset = 0; |
| 240 | char *logfile = NULL; | 250 | char *logfile = NULL; |
| 241 | int loop = 0; | 251 | int loop = 0; |
| 252 | int containerset = 0; | ||
| 253 | char containerpath[1024]; | ||
| 254 | int cfd = 0; | ||
| 242 | 255 | ||
| 243 | struct msgtemplate msg; | 256 | struct msgtemplate msg; |
| 244 | 257 | ||
| 245 | while (1) { | 258 | while (1) { |
| 246 | c = getopt(argc, argv, "qdiw:r:m:t:p:vl"); | 259 | c = getopt(argc, argv, "qdiw:r:m:t:p:vlC:"); |
| 247 | if (c < 0) | 260 | if (c < 0) |
| 248 | break; | 261 | break; |
| 249 | 262 | ||
| @@ -260,6 +273,10 @@ int main(int argc, char *argv[]) | |||
| 260 | printf("printing task/process context switch rates\n"); | 273 | printf("printing task/process context switch rates\n"); |
| 261 | print_task_context_switch_counts = 1; | 274 | print_task_context_switch_counts = 1; |
| 262 | break; | 275 | break; |
| 276 | case 'C': | ||
| 277 | containerset = 1; | ||
| 278 | strncpy(containerpath, optarg, strlen(optarg) + 1); | ||
| 279 | break; | ||
| 263 | case 'w': | 280 | case 'w': |
| 264 | logfile = strdup(optarg); | 281 | logfile = strdup(optarg); |
| 265 | printf("write to file %s\n", logfile); | 282 | printf("write to file %s\n", logfile); |
| @@ -334,6 +351,11 @@ int main(int argc, char *argv[]) | |||
| 334 | } | 351 | } |
| 335 | } | 352 | } |
| 336 | 353 | ||
| 354 | if (tid && containerset) { | ||
| 355 | fprintf(stderr, "Select either -t or -C, not both\n"); | ||
| 356 | goto err; | ||
| 357 | } | ||
| 358 | |||
| 337 | if (tid) { | 359 | if (tid) { |
| 338 | rc = send_cmd(nl_sd, id, mypid, TASKSTATS_CMD_GET, | 360 | rc = send_cmd(nl_sd, id, mypid, TASKSTATS_CMD_GET, |
| 339 | cmd_type, &tid, sizeof(__u32)); | 361 | cmd_type, &tid, sizeof(__u32)); |
| @@ -344,6 +366,20 @@ int main(int argc, char *argv[]) | |||
| 344 | } | 366 | } |
| 345 | } | 367 | } |
| 346 | 368 | ||
| 369 | if (containerset) { | ||
| 370 | cfd = open(containerpath, O_RDONLY); | ||
| 371 | if (cfd < 0) { | ||
| 372 | perror("error opening container file"); | ||
| 373 | goto err; | ||
| 374 | } | ||
| 375 | rc = send_cmd(nl_sd, id, mypid, CGROUPSTATS_CMD_GET, | ||
| 376 | CGROUPSTATS_CMD_ATTR_FD, &cfd, sizeof(__u32)); | ||
| 377 | if (rc < 0) { | ||
| 378 | perror("error sending cgroupstats command"); | ||
| 379 | goto err; | ||
| 380 | } | ||
| 381 | } | ||
| 382 | |||
| 347 | do { | 383 | do { |
| 348 | int i; | 384 | int i; |
| 349 | 385 | ||
| @@ -422,6 +458,9 @@ int main(int argc, char *argv[]) | |||
| 422 | } | 458 | } |
| 423 | break; | 459 | break; |
| 424 | 460 | ||
| 461 | case CGROUPSTATS_TYPE_CGROUP_STATS: | ||
| 462 | print_cgroupstats(NLA_DATA(na)); | ||
| 463 | break; | ||
| 425 | default: | 464 | default: |
| 426 | fprintf(stderr, "Unknown nla_type %d\n", | 465 | fprintf(stderr, "Unknown nla_type %d\n", |
| 427 | na->nla_type); | 466 | na->nla_type); |
| @@ -443,5 +482,7 @@ err: | |||
| 443 | close(nl_sd); | 482 | close(nl_sd); |
| 444 | if (fd) | 483 | if (fd) |
| 445 | close(fd); | 484 | close(fd); |
| 485 | if (cfd) | ||
| 486 | close(cfd); | ||
| 446 | return 0; | 487 | return 0; |
| 447 | } | 488 | } |
diff --git a/Documentation/feature-removal-schedule.txt b/Documentation/feature-removal-schedule.txt index 6bb9be54ab76..20c4c8bac9d7 100644 --- a/Documentation/feature-removal-schedule.txt +++ b/Documentation/feature-removal-schedule.txt | |||
| @@ -181,15 +181,6 @@ Who: Nick Piggin <npiggin@suse.de> | |||
| 181 | 181 | ||
| 182 | --------------------------- | 182 | --------------------------- |
| 183 | 183 | ||
| 184 | What: Interrupt only SA_* flags | ||
| 185 | When: September 2007 | ||
| 186 | Why: The interrupt related SA_* flags are replaced by IRQF_* to move them | ||
| 187 | out of the signal namespace. | ||
| 188 | |||
| 189 | Who: Thomas Gleixner <tglx@linutronix.de> | ||
| 190 | |||
| 191 | --------------------------- | ||
| 192 | |||
| 193 | What: PHYSDEVPATH, PHYSDEVBUS, PHYSDEVDRIVER in the uevent environment | 184 | What: PHYSDEVPATH, PHYSDEVBUS, PHYSDEVDRIVER in the uevent environment |
| 194 | When: October 2008 | 185 | When: October 2008 |
| 195 | Why: The stacking of class devices makes these values misleading and | 186 | Why: The stacking of class devices makes these values misleading and |
diff --git a/Documentation/markers.txt b/Documentation/markers.txt index 295a71bc301e..d9f50a19fa0c 100644 --- a/Documentation/markers.txt +++ b/Documentation/markers.txt | |||
| @@ -35,12 +35,14 @@ In order to use the macro trace_mark, you should include linux/marker.h. | |||
| 35 | 35 | ||
| 36 | And, | 36 | And, |
| 37 | 37 | ||
| 38 | trace_mark(subsystem_event, "%d %s", someint, somestring); | 38 | trace_mark(subsystem_event, "myint %d mystring %s", someint, somestring); |
| 39 | Where : | 39 | Where : |
| 40 | - subsystem_event is an identifier unique to your event | 40 | - subsystem_event is an identifier unique to your event |
| 41 | - subsystem is the name of your subsystem. | 41 | - subsystem is the name of your subsystem. |
| 42 | - event is the name of the event to mark. | 42 | - event is the name of the event to mark. |
| 43 | - "%d %s" is the formatted string for the serializer. | 43 | - "myint %d mystring %s" is the formatted string for the serializer. "myint" and |
| 44 | "mystring" are repectively the field names associated with the first and | ||
| 45 | second parameter. | ||
| 44 | - someint is an integer. | 46 | - someint is an integer. |
| 45 | - somestring is a char pointer. | 47 | - somestring is a char pointer. |
| 46 | 48 | ||
diff --git a/Documentation/rtc.txt b/Documentation/rtc.txt index c931d613f641..e20b19c1b60d 100644 --- a/Documentation/rtc.txt +++ b/Documentation/rtc.txt | |||
| @@ -180,9 +180,10 @@ driver returns ENOIOCTLCMD. Some common examples: | |||
| 180 | * RTC_IRQP_SET, RTC_IRQP_READ: the irq_set_freq function will be called | 180 | * RTC_IRQP_SET, RTC_IRQP_READ: the irq_set_freq function will be called |
| 181 | to set the frequency while the framework will handle the read for you | 181 | to set the frequency while the framework will handle the read for you |
| 182 | since the frequency is stored in the irq_freq member of the rtc_device | 182 | since the frequency is stored in the irq_freq member of the rtc_device |
| 183 | structure. Also make sure you set the max_user_freq member in your | 183 | structure. Your driver needs to initialize the irq_freq member during |
| 184 | initialization routines so the framework can sanity check the user | 184 | init. Make sure you check the requested frequency is in range of your |
| 185 | input for you. | 185 | hardware in the irq_set_freq function. If you cannot actually change |
| 186 | the frequency, just return -ENOTTY. | ||
| 186 | 187 | ||
| 187 | If all else fails, check out the rtc-test.c driver! | 188 | If all else fails, check out the rtc-test.c driver! |
| 188 | 189 | ||
| @@ -1,7 +1,7 @@ | |||
| 1 | VERSION = 2 | 1 | VERSION = 2 |
| 2 | PATCHLEVEL = 6 | 2 | PATCHLEVEL = 6 |
| 3 | SUBLEVEL = 24 | 3 | SUBLEVEL = 24 |
| 4 | EXTRAVERSION = -rc2 | 4 | EXTRAVERSION = -rc3 |
| 5 | NAME = Arr Matey! A Hairy Bilge Rat! | 5 | NAME = Arr Matey! A Hairy Bilge Rat! |
| 6 | 6 | ||
| 7 | # *DOCUMENTATION* | 7 | # *DOCUMENTATION* |
| @@ -197,8 +197,13 @@ CROSS_COMPILE ?= | |||
| 197 | UTS_MACHINE := $(ARCH) | 197 | UTS_MACHINE := $(ARCH) |
| 198 | SRCARCH := $(ARCH) | 198 | SRCARCH := $(ARCH) |
| 199 | 199 | ||
| 200 | # for i386 and x86_64 we use SRCARCH equal to x86 | 200 | # Additional ARCH settings for x86 |
| 201 | SRCARCH := $(if $(filter x86_64 i386,$(SRCARCH)),x86,$(SRCARCH)) | 201 | ifeq ($(ARCH),i386) |
| 202 | SRCARCH := x86 | ||
| 203 | endif | ||
| 204 | ifeq ($(ARCH),x86_64) | ||
| 205 | SRCARCH := x86 | ||
| 206 | endif | ||
| 202 | 207 | ||
| 203 | KCONFIG_CONFIG ?= .config | 208 | KCONFIG_CONFIG ?= .config |
| 204 | 209 | ||
| @@ -1327,12 +1332,7 @@ else | |||
| 1327 | ALLINCLUDE_ARCHS := $(ALLSOURCE_ARCHS) | 1332 | ALLINCLUDE_ARCHS := $(ALLSOURCE_ARCHS) |
| 1328 | endif | 1333 | endif |
| 1329 | 1334 | ||
| 1330 | # Take care of arch/x86 | 1335 | ALLSOURCE_ARCHS := $(SRCARCH) |
| 1331 | ifeq ($(ARCH), $(SRCARCH)) | ||
| 1332 | ALLSOURCE_ARCHS := $(ARCH) | ||
| 1333 | else | ||
| 1334 | ALLSOURCE_ARCHS := $(ARCH) $(SRCARCH) | ||
| 1335 | endif | ||
| 1336 | 1336 | ||
| 1337 | define find-sources | 1337 | define find-sources |
| 1338 | ( for arch in $(ALLSOURCE_ARCHS) ; do \ | 1338 | ( for arch in $(ALLSOURCE_ARCHS) ; do \ |
diff --git a/arch/arm/mach-pxa/pxa3xx.c b/arch/arm/mach-pxa/pxa3xx.c index 5da798282a54..61d9c9d69e6b 100644 --- a/arch/arm/mach-pxa/pxa3xx.c +++ b/arch/arm/mach-pxa/pxa3xx.c | |||
| @@ -150,22 +150,45 @@ static void clk_pxa3xx_cken_disable(struct clk *clk) | |||
| 150 | local_irq_enable(); | 150 | local_irq_enable(); |
| 151 | } | 151 | } |
| 152 | 152 | ||
| 153 | static const struct clkops clk_pxa3xx_cken_ops = { | ||
| 154 | .enable = clk_pxa3xx_cken_enable, | ||
| 155 | .disable = clk_pxa3xx_cken_disable, | ||
| 156 | }; | ||
| 157 | |||
| 153 | static const struct clkops clk_pxa3xx_hsio_ops = { | 158 | static const struct clkops clk_pxa3xx_hsio_ops = { |
| 154 | .enable = clk_pxa3xx_cken_enable, | 159 | .enable = clk_pxa3xx_cken_enable, |
| 155 | .disable = clk_pxa3xx_cken_disable, | 160 | .disable = clk_pxa3xx_cken_disable, |
| 156 | .getrate = clk_pxa3xx_hsio_getrate, | 161 | .getrate = clk_pxa3xx_hsio_getrate, |
| 157 | }; | 162 | }; |
| 158 | 163 | ||
| 164 | #define PXA3xx_CKEN(_name, _cken, _rate, _delay, _dev) \ | ||
| 165 | { \ | ||
| 166 | .name = _name, \ | ||
| 167 | .dev = _dev, \ | ||
| 168 | .ops = &clk_pxa3xx_cken_ops, \ | ||
| 169 | .rate = _rate, \ | ||
| 170 | .cken = CKEN_##_cken, \ | ||
| 171 | .delay = _delay, \ | ||
| 172 | } | ||
| 173 | |||
| 174 | #define PXA3xx_CK(_name, _cken, _ops, _dev) \ | ||
| 175 | { \ | ||
| 176 | .name = _name, \ | ||
| 177 | .dev = _dev, \ | ||
| 178 | .ops = _ops, \ | ||
| 179 | .cken = CKEN_##_cken, \ | ||
| 180 | } | ||
| 181 | |||
| 159 | static struct clk pxa3xx_clks[] = { | 182 | static struct clk pxa3xx_clks[] = { |
| 160 | INIT_CK("LCDCLK", LCD, &clk_pxa3xx_hsio_ops, &pxa_device_fb.dev), | 183 | PXA3xx_CK("LCDCLK", LCD, &clk_pxa3xx_hsio_ops, &pxa_device_fb.dev), |
| 161 | INIT_CK("CAMCLK", CAMERA, &clk_pxa3xx_hsio_ops, NULL), | 184 | PXA3xx_CK("CAMCLK", CAMERA, &clk_pxa3xx_hsio_ops, NULL), |
| 162 | 185 | ||
| 163 | INIT_CKEN("UARTCLK", FFUART, 14857000, 1, &pxa_device_ffuart.dev), | 186 | PXA3xx_CKEN("UARTCLK", FFUART, 14857000, 1, &pxa_device_ffuart.dev), |
| 164 | INIT_CKEN("UARTCLK", BTUART, 14857000, 1, &pxa_device_btuart.dev), | 187 | PXA3xx_CKEN("UARTCLK", BTUART, 14857000, 1, &pxa_device_btuart.dev), |
| 165 | INIT_CKEN("UARTCLK", STUART, 14857000, 1, NULL), | 188 | PXA3xx_CKEN("UARTCLK", STUART, 14857000, 1, NULL), |
| 166 | 189 | ||
| 167 | INIT_CKEN("I2CCLK", I2C, 32842000, 0, &pxa_device_i2c.dev), | 190 | PXA3xx_CKEN("I2CCLK", I2C, 32842000, 0, &pxa_device_i2c.dev), |
| 168 | INIT_CKEN("UDCCLK", UDC, 48000000, 5, &pxa_device_udc.dev), | 191 | PXA3xx_CKEN("UDCCLK", UDC, 48000000, 5, &pxa_device_udc.dev), |
| 169 | }; | 192 | }; |
| 170 | 193 | ||
| 171 | void __init pxa3xx_init_irq(void) | 194 | void __init pxa3xx_init_irq(void) |
diff --git a/arch/arm/mm/consistent.c b/arch/arm/mm/consistent.c index cefdf2f9f26e..333a82a3717e 100644 --- a/arch/arm/mm/consistent.c +++ b/arch/arm/mm/consistent.c | |||
| @@ -322,7 +322,6 @@ static int dma_mmap(struct device *dev, struct vm_area_struct *vma, | |||
| 322 | 322 | ||
| 323 | if (off < kern_size && | 323 | if (off < kern_size && |
| 324 | user_size <= (kern_size - off)) { | 324 | user_size <= (kern_size - off)) { |
| 325 | vma->vm_flags |= VM_RESERVED; | ||
| 326 | ret = remap_pfn_range(vma, vma->vm_start, | 325 | ret = remap_pfn_range(vma, vma->vm_start, |
| 327 | page_to_pfn(c->vm_pages) + off, | 326 | page_to_pfn(c->vm_pages) + off, |
| 328 | user_size << PAGE_SHIFT, | 327 | user_size << PAGE_SHIFT, |
diff --git a/arch/avr32/Kconfig b/arch/avr32/Kconfig index bbecbd8469b5..4f402c924504 100644 --- a/arch/avr32/Kconfig +++ b/arch/avr32/Kconfig | |||
| @@ -19,9 +19,6 @@ config AVR32 | |||
| 19 | There is an AVR32 Linux project with a web page at | 19 | There is an AVR32 Linux project with a web page at |
| 20 | http://avr32linux.org/. | 20 | http://avr32linux.org/. |
| 21 | 21 | ||
| 22 | config UID16 | ||
| 23 | bool | ||
| 24 | |||
| 25 | config GENERIC_GPIO | 22 | config GENERIC_GPIO |
| 26 | bool | 23 | bool |
| 27 | default y | 24 | default y |
diff --git a/arch/avr32/mach-at32ap/at32ap7000.c b/arch/avr32/mach-at32ap/at32ap7000.c index a9d9ec081e3d..7c4388f4f17f 100644 --- a/arch/avr32/mach-at32ap/at32ap7000.c +++ b/arch/avr32/mach-at32ap/at32ap7000.c | |||
| @@ -474,7 +474,7 @@ static struct resource at32ap700x_rtc0_resource[] = { | |||
| 474 | static struct resource at32_wdt0_resource[] = { | 474 | static struct resource at32_wdt0_resource[] = { |
| 475 | { | 475 | { |
| 476 | .start = 0xfff000b0, | 476 | .start = 0xfff000b0, |
| 477 | .end = 0xfff000bf, | 477 | .end = 0xfff000cf, |
| 478 | .flags = IORESOURCE_MEM, | 478 | .flags = IORESOURCE_MEM, |
| 479 | }, | 479 | }, |
| 480 | }; | 480 | }; |
| @@ -690,7 +690,7 @@ static struct resource atmel_usart0_resource[] = { | |||
| 690 | IRQ(6), | 690 | IRQ(6), |
| 691 | }; | 691 | }; |
| 692 | DEFINE_DEV_DATA(atmel_usart, 0); | 692 | DEFINE_DEV_DATA(atmel_usart, 0); |
| 693 | DEV_CLK(usart, atmel_usart0, pba, 4); | 693 | DEV_CLK(usart, atmel_usart0, pba, 3); |
| 694 | 694 | ||
| 695 | static struct atmel_uart_data atmel_usart1_data = { | 695 | static struct atmel_uart_data atmel_usart1_data = { |
| 696 | .use_dma_tx = 1, | 696 | .use_dma_tx = 1, |
diff --git a/arch/avr32/mach-at32ap/hsmc.c b/arch/avr32/mach-at32ap/hsmc.c index 704607fbcc69..fa427ed42787 100644 --- a/arch/avr32/mach-at32ap/hsmc.c +++ b/arch/avr32/mach-at32ap/hsmc.c | |||
| @@ -7,7 +7,6 @@ | |||
| 7 | * it under the terms of the GNU General Public License version 2 as | 7 | * it under the terms of the GNU General Public License version 2 as |
| 8 | * published by the Free Software Foundation. | 8 | * published by the Free Software Foundation. |
| 9 | */ | 9 | */ |
| 10 | #define DEBUG | ||
| 11 | #include <linux/clk.h> | 10 | #include <linux/clk.h> |
| 12 | #include <linux/err.h> | 11 | #include <linux/err.h> |
| 13 | #include <linux/init.h> | 12 | #include <linux/init.h> |
diff --git a/arch/avr32/mach-at32ap/intc.c b/arch/avr32/mach-at32ap/intc.c index dd5c009cf224..0b286cd53028 100644 --- a/arch/avr32/mach-at32ap/intc.c +++ b/arch/avr32/mach-at32ap/intc.c | |||
| @@ -13,6 +13,7 @@ | |||
| 13 | #include <linux/irq.h> | 13 | #include <linux/irq.h> |
| 14 | #include <linux/platform_device.h> | 14 | #include <linux/platform_device.h> |
| 15 | 15 | ||
| 16 | #include <asm/intc.h> | ||
| 16 | #include <asm/io.h> | 17 | #include <asm/io.h> |
| 17 | 18 | ||
| 18 | #include "intc.h" | 19 | #include "intc.h" |
| @@ -136,7 +137,8 @@ fail: | |||
| 136 | panic("Interrupt controller initialization failed!\n"); | 137 | panic("Interrupt controller initialization failed!\n"); |
| 137 | } | 138 | } |
| 138 | 139 | ||
| 139 | unsigned long intc_get_pending(int group) | 140 | unsigned long intc_get_pending(unsigned int group) |
| 140 | { | 141 | { |
| 141 | return intc_readl(&intc0, INTREQ0 + 4 * group); | 142 | return intc_readl(&intc0, INTREQ0 + 4 * group); |
| 142 | } | 143 | } |
| 144 | EXPORT_SYMBOL_GPL(intc_get_pending); | ||
diff --git a/arch/cris/Kconfig b/arch/cris/Kconfig index 21900a9378bb..222da1501f47 100644 --- a/arch/cris/Kconfig +++ b/arch/cris/Kconfig | |||
| @@ -13,6 +13,10 @@ config ZONE_DMA | |||
| 13 | bool | 13 | bool |
| 14 | default y | 14 | default y |
| 15 | 15 | ||
| 16 | config NO_DMA | ||
| 17 | bool | ||
| 18 | default y | ||
| 19 | |||
| 16 | config RWSEM_GENERIC_SPINLOCK | 20 | config RWSEM_GENERIC_SPINLOCK |
| 17 | bool | 21 | bool |
| 18 | default y | 22 | default y |
| @@ -57,6 +61,10 @@ menu "General setup" | |||
| 57 | 61 | ||
| 58 | source "fs/Kconfig.binfmt" | 62 | source "fs/Kconfig.binfmt" |
| 59 | 63 | ||
| 64 | config GENERIC_HARDIRQS | ||
| 65 | bool | ||
| 66 | default y | ||
| 67 | |||
| 60 | config ETRAX_CMDLINE | 68 | config ETRAX_CMDLINE |
| 61 | string "Kernel command line" | 69 | string "Kernel command line" |
| 62 | default "root=/dev/mtdblock3" | 70 | default "root=/dev/mtdblock3" |
| @@ -149,7 +157,8 @@ source "net/Kconfig" | |||
| 149 | 157 | ||
| 150 | # bring in ETRAX built-in drivers | 158 | # bring in ETRAX built-in drivers |
| 151 | menu "Drivers for built-in interfaces" | 159 | menu "Drivers for built-in interfaces" |
| 152 | source arch/cris/arch-v10/drivers/Kconfig | 160 | # arch/cris/arch is a symlink to correct arch (arch-v10 or arch-v32) |
| 161 | source arch/cris/arch/drivers/Kconfig | ||
| 153 | 162 | ||
| 154 | endmenu | 163 | endmenu |
| 155 | 164 | ||
| @@ -180,6 +189,10 @@ source "drivers/isdn/Kconfig" | |||
| 180 | 189 | ||
| 181 | source "drivers/telephony/Kconfig" | 190 | source "drivers/telephony/Kconfig" |
| 182 | 191 | ||
| 192 | source "drivers/i2c/Kconfig" | ||
| 193 | |||
| 194 | source "drivers/rtc/Kconfig" | ||
| 195 | |||
| 183 | # | 196 | # |
| 184 | # input before char - char/joystick depends on it. As does USB. | 197 | # input before char - char/joystick depends on it. As does USB. |
| 185 | # | 198 | # |
| @@ -194,6 +207,10 @@ source "fs/Kconfig" | |||
| 194 | 207 | ||
| 195 | source "sound/Kconfig" | 208 | source "sound/Kconfig" |
| 196 | 209 | ||
| 210 | source "drivers/pcmcia/Kconfig" | ||
| 211 | |||
| 212 | source "drivers/pci/Kconfig" | ||
| 213 | |||
| 197 | source "drivers/usb/Kconfig" | 214 | source "drivers/usb/Kconfig" |
| 198 | 215 | ||
| 199 | source "kernel/Kconfig.instrumentation" | 216 | source "kernel/Kconfig.instrumentation" |
diff --git a/arch/cris/arch-v10/defconfig b/arch/cris/arch-v10/defconfig index 710c20ba2be7..572f11926399 100644 --- a/arch/cris/arch-v10/defconfig +++ b/arch/cris/arch-v10/defconfig | |||
| @@ -99,7 +99,6 @@ CONFIG_MTD=y | |||
| 99 | CONFIG_MTD_CFI=y | 99 | CONFIG_MTD_CFI=y |
| 100 | # CONFIG_MTD_CFI_INTELEXT is not set | 100 | # CONFIG_MTD_CFI_INTELEXT is not set |
| 101 | CONFIG_MTD_CFI_AMDSTD=y | 101 | CONFIG_MTD_CFI_AMDSTD=y |
| 102 | CONFIG_MTD_AMDSTD=y | ||
| 103 | CONFIG_MTD_CHAR=y | 102 | CONFIG_MTD_CHAR=y |
| 104 | CONFIG_MTD_BLOCK=y | 103 | CONFIG_MTD_BLOCK=y |
| 105 | CONFIG_ETRAX_I2C=y | 104 | CONFIG_ETRAX_I2C=y |
| @@ -145,7 +144,6 @@ CONFIG_MTD_CFI=y | |||
| 145 | # CONFIG_MTD_CFI_GEOMETRY is not set | 144 | # CONFIG_MTD_CFI_GEOMETRY is not set |
| 146 | # CONFIG_MTD_CFI_INTELEXT is not set | 145 | # CONFIG_MTD_CFI_INTELEXT is not set |
| 147 | CONFIG_MTD_CFI_AMDSTD=y | 146 | CONFIG_MTD_CFI_AMDSTD=y |
| 148 | CONFIG_MTD_AMDSTD=y | ||
| 149 | # CONFIG_MTD_SHARP is not set | 147 | # CONFIG_MTD_SHARP is not set |
| 150 | # CONFIG_MTD_PHYSMAP is not set | 148 | # CONFIG_MTD_PHYSMAP is not set |
| 151 | # CONFIG_MTD_NORA is not set | 149 | # CONFIG_MTD_NORA is not set |
diff --git a/arch/cris/arch-v10/drivers/Kconfig b/arch/cris/arch-v10/drivers/Kconfig index 03e2e68f947d..faf8b4d3ca01 100644 --- a/arch/cris/arch-v10/drivers/Kconfig +++ b/arch/cris/arch-v10/drivers/Kconfig | |||
| @@ -2,6 +2,7 @@ config ETRAX_ETHERNET | |||
| 2 | bool "Ethernet support" | 2 | bool "Ethernet support" |
| 3 | depends on ETRAX_ARCH_V10 | 3 | depends on ETRAX_ARCH_V10 |
| 4 | select NET_ETHERNET | 4 | select NET_ETHERNET |
| 5 | select MII | ||
| 5 | help | 6 | help |
| 6 | This option enables the ETRAX 100LX built-in 10/100Mbit Ethernet | 7 | This option enables the ETRAX 100LX built-in 10/100Mbit Ethernet |
| 7 | controller. | 8 | controller. |
| @@ -605,8 +606,6 @@ config ETRAX_AXISFLASHMAP | |||
| 605 | select MTD | 606 | select MTD |
| 606 | select MTD_CFI | 607 | select MTD_CFI |
| 607 | select MTD_CFI_AMDSTD | 608 | select MTD_CFI_AMDSTD |
| 608 | select MTD_OBSOLETE_CHIPS | ||
| 609 | select MTD_AMDSTD | ||
| 610 | select MTD_CHAR | 609 | select MTD_CHAR |
| 611 | select MTD_BLOCK | 610 | select MTD_BLOCK |
| 612 | select MTD_PARTITIONS | 611 | select MTD_PARTITIONS |
diff --git a/arch/cris/arch-v10/drivers/axisflashmap.c b/arch/cris/arch-v10/drivers/axisflashmap.c index efd7b0f3a910..ea3cf2e39a14 100644 --- a/arch/cris/arch-v10/drivers/axisflashmap.c +++ b/arch/cris/arch-v10/drivers/axisflashmap.c | |||
| @@ -312,12 +312,12 @@ static struct mtd_info *probe_cs(struct map_info *map_cs) | |||
| 312 | "%s: Probing a 0x%08lx bytes large window at 0x%08lx.\n", | 312 | "%s: Probing a 0x%08lx bytes large window at 0x%08lx.\n", |
| 313 | map_cs->name, map_cs->size, map_cs->map_priv_1); | 313 | map_cs->name, map_cs->size, map_cs->map_priv_1); |
| 314 | 314 | ||
| 315 | #ifdef CONFIG_MTD_AMDSTD | ||
| 316 | mtd_cs = do_map_probe("amd_flash", map_cs); | ||
| 317 | #endif | ||
| 318 | #ifdef CONFIG_MTD_CFI | 315 | #ifdef CONFIG_MTD_CFI |
| 316 | mtd_cs = do_map_probe("cfi_probe", map_cs); | ||
| 317 | #endif | ||
| 318 | #ifdef CONFIG_MTD_JEDECPROBE | ||
| 319 | if (!mtd_cs) { | 319 | if (!mtd_cs) { |
| 320 | mtd_cs = do_map_probe("cfi_probe", map_cs); | 320 | mtd_cs = do_map_probe("jedec_probe", map_cs); |
| 321 | } | 321 | } |
| 322 | #endif | 322 | #endif |
| 323 | 323 | ||
diff --git a/arch/cris/arch-v10/drivers/gpio.c b/arch/cris/arch-v10/drivers/gpio.c index f389ed6998fe..0d347a705835 100644 --- a/arch/cris/arch-v10/drivers/gpio.c +++ b/arch/cris/arch-v10/drivers/gpio.c | |||
| @@ -297,8 +297,10 @@ gpio_poll(struct file *file, | |||
| 297 | data = *R_PORT_PB_DATA; | 297 | data = *R_PORT_PB_DATA; |
| 298 | else if (priv->minor == GPIO_MINOR_G) | 298 | else if (priv->minor == GPIO_MINOR_G) |
| 299 | data = *R_PORT_G_DATA; | 299 | data = *R_PORT_G_DATA; |
| 300 | else | 300 | else { |
| 301 | spin_unlock(&gpio_lock); | ||
| 301 | return 0; | 302 | return 0; |
| 303 | } | ||
| 302 | 304 | ||
| 303 | if ((data & priv->highalarm) || | 305 | if ((data & priv->highalarm) || |
| 304 | (~data & priv->lowalarm)) { | 306 | (~data & priv->lowalarm)) { |
| @@ -381,18 +383,21 @@ static ssize_t gpio_write(struct file * file, const char * buf, size_t count, | |||
| 381 | 383 | ||
| 382 | ssize_t retval = count; | 384 | ssize_t retval = count; |
| 383 | if (priv->minor !=GPIO_MINOR_A && priv->minor != GPIO_MINOR_B) { | 385 | if (priv->minor !=GPIO_MINOR_A && priv->minor != GPIO_MINOR_B) { |
| 384 | return -EFAULT; | 386 | retval = -EFAULT; |
| 387 | goto out; | ||
| 385 | } | 388 | } |
| 386 | 389 | ||
| 387 | if (!access_ok(VERIFY_READ, buf, count)) { | 390 | if (!access_ok(VERIFY_READ, buf, count)) { |
| 388 | return -EFAULT; | 391 | retval = -EFAULT; |
| 392 | goto out; | ||
| 389 | } | 393 | } |
| 390 | clk_mask = priv->clk_mask; | 394 | clk_mask = priv->clk_mask; |
| 391 | data_mask = priv->data_mask; | 395 | data_mask = priv->data_mask; |
| 392 | /* It must have been configured using the IO_CFG_WRITE_MODE */ | 396 | /* It must have been configured using the IO_CFG_WRITE_MODE */ |
| 393 | /* Perhaps a better error code? */ | 397 | /* Perhaps a better error code? */ |
| 394 | if (clk_mask == 0 || data_mask == 0) { | 398 | if (clk_mask == 0 || data_mask == 0) { |
| 395 | return -EPERM; | 399 | retval = -EPERM; |
| 400 | goto out; | ||
| 396 | } | 401 | } |
| 397 | write_msb = priv->write_msb; | 402 | write_msb = priv->write_msb; |
| 398 | D(printk("gpio_write: %lu to data 0x%02X clk 0x%02X msb: %i\n",count, data_mask, clk_mask, write_msb)); | 403 | D(printk("gpio_write: %lu to data 0x%02X clk 0x%02X msb: %i\n",count, data_mask, clk_mask, write_msb)); |
| @@ -425,6 +430,7 @@ static ssize_t gpio_write(struct file * file, const char * buf, size_t count, | |||
| 425 | } | 430 | } |
| 426 | } | 431 | } |
| 427 | } | 432 | } |
| 433 | out: | ||
| 428 | spin_unlock(&gpio_lock); | 434 | spin_unlock(&gpio_lock); |
| 429 | return retval; | 435 | return retval; |
| 430 | } | 436 | } |
| @@ -506,6 +512,7 @@ gpio_release(struct inode *inode, struct file *filp) | |||
| 506 | while (p) { | 512 | while (p) { |
| 507 | if (p->highalarm | p->lowalarm) { | 513 | if (p->highalarm | p->lowalarm) { |
| 508 | gpio_some_alarms = 1; | 514 | gpio_some_alarms = 1; |
| 515 | spin_unlock(&gpio_lock); | ||
| 509 | return 0; | 516 | return 0; |
| 510 | } | 517 | } |
| 511 | p = p->next; | 518 | p = p->next; |
diff --git a/arch/cris/arch-v10/kernel/entry.S b/arch/cris/arch-v10/kernel/entry.S index c5844cb70f09..ec62c951fa3c 100644 --- a/arch/cris/arch-v10/kernel/entry.S +++ b/arch/cris/arch-v10/kernel/entry.S | |||
| @@ -500,9 +500,8 @@ _work_notifysig: | |||
| 500 | ;; deal with pending signals and notify-resume requests | 500 | ;; deal with pending signals and notify-resume requests |
| 501 | 501 | ||
| 502 | move.d $r9, $r10 ; do_notify_resume syscall/irq param | 502 | move.d $r9, $r10 ; do_notify_resume syscall/irq param |
| 503 | moveq 0, $r11 ; oldset param - 0 in this case | 503 | move.d $sp, $r11 ; the regs param |
| 504 | move.d $sp, $r12 ; the regs param | 504 | move.d $r1, $r12 ; the thread_info_flags parameter |
| 505 | move.d $r1, $r13 ; the thread_info_flags parameter | ||
| 506 | jsr do_notify_resume | 505 | jsr do_notify_resume |
| 507 | 506 | ||
| 508 | ba _Rexit | 507 | ba _Rexit |
| @@ -678,13 +677,19 @@ IRQ1_interrupt: | |||
| 678 | push $r10 ; push orig_r10 | 677 | push $r10 ; push orig_r10 |
| 679 | clear.d [$sp=$sp-4] ; frametype == 0, normal frame | 678 | clear.d [$sp=$sp-4] ; frametype == 0, normal frame |
| 680 | 679 | ||
| 680 | ;; If there is a glitch on the NMI pin shorter than ~100ns | ||
| 681 | ;; (i.e. non-active by the time we get here) then the nmi_pin bit | ||
| 682 | ;; in R_IRQ_MASK0_RD will already be cleared. The watchdog_nmi bit | ||
| 683 | ;; is cleared by us however (when feeding the watchdog), which is why | ||
| 684 | ;; we use that bit to determine what brought us here. | ||
| 685 | |||
| 681 | move.d [R_IRQ_MASK0_RD], $r1 ; External NMI or watchdog? | 686 | move.d [R_IRQ_MASK0_RD], $r1 ; External NMI or watchdog? |
| 682 | and.d 0x80000000, $r1 | 687 | and.d (1<<30), $r1 |
| 683 | beq wdog | 688 | bne wdog |
| 684 | move.d $sp, $r10 | 689 | move.d $sp, $r10 |
| 685 | jsr handle_nmi | 690 | jsr handle_nmi |
| 686 | setf m ; Enable NMI again | 691 | setf m ; Enable NMI again |
| 687 | retb ; Return from NMI | 692 | ba _Rexit ; Return the standard way |
| 688 | nop | 693 | nop |
| 689 | wdog: | 694 | wdog: |
| 690 | #if defined(CONFIG_ETRAX_WATCHDOG) && !defined(CONFIG_SVINTO_SIM) | 695 | #if defined(CONFIG_ETRAX_WATCHDOG) && !defined(CONFIG_SVINTO_SIM) |
| @@ -775,22 +780,9 @@ multiple_interrupt: | |||
| 775 | push $r10 ; push orig_r10 | 780 | push $r10 ; push orig_r10 |
| 776 | clear.d [$sp=$sp-4] ; frametype == 0, normal frame | 781 | clear.d [$sp=$sp-4] ; frametype == 0, normal frame |
| 777 | 782 | ||
| 778 | moveq 2, $r2 ; first bit we care about is the timer0 irq | 783 | move.d $sp, $r10 |
| 779 | move.d [R_VECT_MASK_RD], $r0; read the irq bits that triggered the multiple irq | 784 | jsr do_multiple_IRQ |
| 780 | move.d $r0, [R_VECT_MASK_CLR] ; Block all active IRQs | ||
| 781 | 1: | ||
| 782 | btst $r2, $r0 ; check for the irq given by bit r2 | ||
| 783 | bpl 2f | ||
| 784 | move.d $r2, $r10 ; First argument to do_IRQ | ||
| 785 | move.d $sp, $r11 ; second argument to do_IRQ | ||
| 786 | jsr do_IRQ | ||
| 787 | 2: | ||
| 788 | addq 1, $r2 ; next vector bit | ||
| 789 | cmp.b 32, $r2 | ||
| 790 | bne 1b ; process all irq's up to and including number 31 | ||
| 791 | moveq 0, $r9 ; make ret_from_intr realise we came from an ir | ||
| 792 | 785 | ||
| 793 | move.d $r0, [R_VECT_MASK_SET] ; Unblock all the IRQs | ||
| 794 | jump ret_from_intr | 786 | jump ret_from_intr |
| 795 | 787 | ||
| 796 | do_sigtrap: | 788 | do_sigtrap: |
| @@ -837,6 +829,13 @@ _ugdb_handle_breakpoint: | |||
| 837 | ba do_sigtrap ; SIGTRAP the offending process. | 829 | ba do_sigtrap ; SIGTRAP the offending process. |
| 838 | pop $dccr ; Restore dccr in delay slot. | 830 | pop $dccr ; Restore dccr in delay slot. |
| 839 | 831 | ||
| 832 | .global kernel_execve | ||
| 833 | kernel_execve: | ||
| 834 | move.d __NR_execve, $r9 | ||
| 835 | break 13 | ||
| 836 | ret | ||
| 837 | nop | ||
| 838 | |||
| 840 | .data | 839 | .data |
| 841 | 840 | ||
| 842 | hw_bp_trigs: | 841 | hw_bp_trigs: |
| @@ -1135,6 +1134,42 @@ sys_call_table: | |||
| 1135 | .long sys_add_key | 1134 | .long sys_add_key |
| 1136 | .long sys_request_key | 1135 | .long sys_request_key |
| 1137 | .long sys_keyctl | 1136 | .long sys_keyctl |
| 1137 | .long sys_ioprio_set | ||
| 1138 | .long sys_ioprio_get /* 290 */ | ||
| 1139 | .long sys_inotify_init | ||
| 1140 | .long sys_inotify_add_watch | ||
| 1141 | .long sys_inotify_rm_watch | ||
| 1142 | .long sys_migrate_pages | ||
| 1143 | .long sys_openat /* 295 */ | ||
| 1144 | .long sys_mkdirat | ||
| 1145 | .long sys_mknodat | ||
| 1146 | .long sys_fchownat | ||
| 1147 | .long sys_futimesat | ||
| 1148 | .long sys_fstatat64 /* 300 */ | ||
| 1149 | .long sys_unlinkat | ||
| 1150 | .long sys_renameat | ||
| 1151 | .long sys_linkat | ||
| 1152 | .long sys_symlinkat | ||
| 1153 | .long sys_readlinkat /* 305 */ | ||
| 1154 | .long sys_fchmodat | ||
| 1155 | .long sys_faccessat | ||
| 1156 | .long sys_pselect6 | ||
| 1157 | .long sys_ppoll | ||
| 1158 | .long sys_unshare /* 310 */ | ||
| 1159 | .long sys_set_robust_list | ||
| 1160 | .long sys_get_robust_list | ||
| 1161 | .long sys_splice | ||
| 1162 | .long sys_sync_file_range | ||
| 1163 | .long sys_tee /* 315 */ | ||
| 1164 | .long sys_vmsplice | ||
| 1165 | .long sys_move_pages | ||
| 1166 | .long sys_getcpu | ||
| 1167 | .long sys_epoll_pwait | ||
| 1168 | .long sys_utimensat /* 320 */ | ||
| 1169 | .long sys_signalfd | ||
| 1170 | .long sys_timerfd | ||
| 1171 | .long sys_eventfd | ||
| 1172 | .long sys_fallocate | ||
| 1138 | 1173 | ||
| 1139 | /* | 1174 | /* |
| 1140 | * NOTE!! This doesn't have to be exact - we just have | 1175 | * NOTE!! This doesn't have to be exact - we just have |
diff --git a/arch/cris/arch-v10/kernel/fasttimer.c b/arch/cris/arch-v10/kernel/fasttimer.c index d3ea052e5ee1..c1a3a2100ee7 100644 --- a/arch/cris/arch-v10/kernel/fasttimer.c +++ b/arch/cris/arch-v10/kernel/fasttimer.c | |||
| @@ -1,97 +1,9 @@ | |||
| 1 | /* $Id: fasttimer.c,v 1.9 2005/03/04 08:16:16 starvik Exp $ | 1 | /* |
| 2 | * linux/arch/cris/kernel/fasttimer.c | 2 | * linux/arch/cris/kernel/fasttimer.c |
| 3 | * | 3 | * |
| 4 | * Fast timers for ETRAX100/ETRAX100LX | 4 | * Fast timers for ETRAX100/ETRAX100LX |
| 5 | * This may be useful in other OS than Linux so use 2 space indentation... | ||
| 6 | * | 5 | * |
| 7 | * $Log: fasttimer.c,v $ | 6 | * Copyright (C) 2000-2007 Axis Communications AB, Lund, Sweden |
| 8 | * Revision 1.9 2005/03/04 08:16:16 starvik | ||
| 9 | * Merge of Linux 2.6.11. | ||
| 10 | * | ||
| 11 | * Revision 1.8 2005/01/05 06:09:29 starvik | ||
| 12 | * cli()/sti() will be obsolete in 2.6.11. | ||
| 13 | * | ||
| 14 | * Revision 1.7 2005/01/03 13:35:46 starvik | ||
| 15 | * Removed obsolete stuff. | ||
| 16 | * Mark fast timer IRQ as not shared. | ||
| 17 | * | ||
| 18 | * Revision 1.6 2004/05/14 10:18:39 starvik | ||
| 19 | * Export fast_timer_list | ||
| 20 | * | ||
| 21 | * Revision 1.5 2004/05/14 07:58:01 starvik | ||
| 22 | * Merge of changes from 2.4 | ||
| 23 | * | ||
| 24 | * Revision 1.4 2003/07/04 08:27:41 starvik | ||
| 25 | * Merge of Linux 2.5.74 | ||
| 26 | * | ||
| 27 | * Revision 1.3 2002/12/12 08:26:32 starvik | ||
| 28 | * Don't use C-comments inside CVS comments | ||
| 29 | * | ||
| 30 | * Revision 1.2 2002/12/11 15:42:02 starvik | ||
| 31 | * Extracted v10 (ETRAX 100LX) specific stuff from arch/cris/kernel/ | ||
| 32 | * | ||
| 33 | * Revision 1.1 2002/11/18 07:58:06 starvik | ||
| 34 | * Fast timers (from Linux 2.4) | ||
| 35 | * | ||
| 36 | * Revision 1.5 2002/10/15 06:21:39 starvik | ||
| 37 | * Added call to init_waitqueue_head | ||
| 38 | * | ||
| 39 | * Revision 1.4 2002/05/28 17:47:59 johana | ||
| 40 | * Added del_fast_timer() | ||
| 41 | * | ||
| 42 | * Revision 1.3 2002/05/28 16:16:07 johana | ||
| 43 | * Handle empty fast_timer_list | ||
| 44 | * | ||
| 45 | * Revision 1.2 2002/05/27 15:38:42 johana | ||
| 46 | * Made it compile without warnings on Linux 2.4. | ||
| 47 | * (includes, wait_queue, PROC_FS and snprintf) | ||
| 48 | * | ||
| 49 | * Revision 1.1 2002/05/27 15:32:25 johana | ||
| 50 | * arch/etrax100/kernel/fasttimer.c v1.8 from the elinux tree. | ||
| 51 | * | ||
| 52 | * Revision 1.8 2001/11/27 13:50:40 pkj | ||
| 53 | * Disable interrupts while stopping the timer and while modifying the | ||
| 54 | * list of active timers in timer1_handler() as it may be interrupted | ||
| 55 | * by other interrupts (e.g., the serial interrupt) which may add fast | ||
| 56 | * timers. | ||
| 57 | * | ||
| 58 | * Revision 1.7 2001/11/22 11:50:32 pkj | ||
| 59 | * * Only store information about the last 16 timers. | ||
| 60 | * * proc_fasttimer_read() now uses an allocated buffer, since it | ||
| 61 | * requires more space than just a page even for only writing the | ||
| 62 | * last 16 timers. The buffer is only allocated on request, so | ||
| 63 | * unless /proc/fasttimer is read, it is never allocated. | ||
| 64 | * * Renamed fast_timer_started to fast_timers_started to match | ||
| 65 | * fast_timers_added and fast_timers_expired. | ||
| 66 | * * Some clean-up. | ||
| 67 | * | ||
| 68 | * Revision 1.6 2000/12/13 14:02:08 johana | ||
| 69 | * Removed volatile for fast_timer_list | ||
| 70 | * | ||
| 71 | * Revision 1.5 2000/12/13 13:55:35 johana | ||
| 72 | * Added DEBUG_LOG, added som cli() and cleanup | ||
| 73 | * | ||
| 74 | * Revision 1.4 2000/12/05 13:48:50 johana | ||
| 75 | * Added range check when writing proc file, modified timer int handling | ||
| 76 | * | ||
| 77 | * Revision 1.3 2000/11/23 10:10:20 johana | ||
| 78 | * More debug/logging possibilities. | ||
| 79 | * Moved GET_JIFFIES_USEC() to timex.h and time.c | ||
| 80 | * | ||
| 81 | * Revision 1.2 2000/11/01 13:41:04 johana | ||
| 82 | * Clean up and bugfixes. | ||
| 83 | * Created new do_gettimeofday_fast() that gets a timeval struct | ||
| 84 | * with time based on jiffies and *R_TIMER0_DATA, uses a table | ||
| 85 | * for fast conversion of timer value to microseconds. | ||
| 86 | * (Much faster the standard do_gettimeofday() and we don't really | ||
| 87 | * want to use the true time - we want the "uptime" so timers don't screw up | ||
| 88 | * when we change the time. | ||
| 89 | * TODO: Add efficient support for continuous timers as well. | ||
| 90 | * | ||
| 91 | * Revision 1.1 2000/10/26 15:49:16 johana | ||
| 92 | * Added fasttimer, highresolution timers. | ||
| 93 | * | ||
| 94 | * Copyright (C) 2000,2001 2002 Axis Communications AB, Lund, Sweden | ||
| 95 | */ | 7 | */ |
| 96 | 8 | ||
| 97 | #include <linux/errno.h> | 9 | #include <linux/errno.h> |
| @@ -125,7 +37,7 @@ | |||
| 125 | 37 | ||
| 126 | #ifdef FAST_TIMER_SANITY_CHECKS | 38 | #ifdef FAST_TIMER_SANITY_CHECKS |
| 127 | #define SANITYCHECK(x) x | 39 | #define SANITYCHECK(x) x |
| 128 | static int sanity_failed = 0; | 40 | static int sanity_failed; |
| 129 | #else | 41 | #else |
| 130 | #define SANITYCHECK(x) | 42 | #define SANITYCHECK(x) |
| 131 | #endif | 43 | #endif |
| @@ -134,15 +46,13 @@ static int sanity_failed = 0; | |||
| 134 | #define D2(x) | 46 | #define D2(x) |
| 135 | #define DP(x) | 47 | #define DP(x) |
| 136 | 48 | ||
| 137 | #define __INLINE__ inline | 49 | static unsigned int fast_timer_running; |
| 138 | 50 | static unsigned int fast_timers_added; | |
| 139 | static int fast_timer_running = 0; | 51 | static unsigned int fast_timers_started; |
| 140 | static int fast_timers_added = 0; | 52 | static unsigned int fast_timers_expired; |
| 141 | static int fast_timers_started = 0; | 53 | static unsigned int fast_timers_deleted; |
| 142 | static int fast_timers_expired = 0; | 54 | static unsigned int fast_timer_is_init; |
| 143 | static int fast_timers_deleted = 0; | 55 | static unsigned int fast_timer_ints; |
| 144 | static int fast_timer_is_init = 0; | ||
| 145 | static int fast_timer_ints = 0; | ||
| 146 | 56 | ||
| 147 | struct fast_timer *fast_timer_list = NULL; | 57 | struct fast_timer *fast_timer_list = NULL; |
| 148 | 58 | ||
| @@ -150,8 +60,8 @@ struct fast_timer *fast_timer_list = NULL; | |||
| 150 | #define DEBUG_LOG_MAX 128 | 60 | #define DEBUG_LOG_MAX 128 |
| 151 | static const char * debug_log_string[DEBUG_LOG_MAX]; | 61 | static const char * debug_log_string[DEBUG_LOG_MAX]; |
| 152 | static unsigned long debug_log_value[DEBUG_LOG_MAX]; | 62 | static unsigned long debug_log_value[DEBUG_LOG_MAX]; |
| 153 | static int debug_log_cnt = 0; | 63 | static unsigned int debug_log_cnt; |
| 154 | static int debug_log_cnt_wrapped = 0; | 64 | static unsigned int debug_log_cnt_wrapped; |
| 155 | 65 | ||
| 156 | #define DEBUG_LOG(string, value) \ | 66 | #define DEBUG_LOG(string, value) \ |
| 157 | { \ | 67 | { \ |
| @@ -206,45 +116,29 @@ int timer_freq_settings[NUM_TIMER_STATS]; | |||
| 206 | int timer_delay_settings[NUM_TIMER_STATS]; | 116 | int timer_delay_settings[NUM_TIMER_STATS]; |
| 207 | 117 | ||
| 208 | /* Not true gettimeofday, only checks the jiffies (uptime) + useconds */ | 118 | /* Not true gettimeofday, only checks the jiffies (uptime) + useconds */ |
| 209 | void __INLINE__ do_gettimeofday_fast(struct timeval *tv) | 119 | inline void do_gettimeofday_fast(struct fasttime_t *tv) |
| 210 | { | 120 | { |
| 211 | unsigned long sec = jiffies; | 121 | tv->tv_jiff = jiffies; |
| 212 | unsigned long usec = GET_JIFFIES_USEC(); | 122 | tv->tv_usec = GET_JIFFIES_USEC(); |
| 213 | |||
| 214 | usec += (sec % HZ) * (1000000 / HZ); | ||
| 215 | sec = sec / HZ; | ||
| 216 | |||
| 217 | if (usec > 1000000) | ||
| 218 | { | ||
| 219 | usec -= 1000000; | ||
| 220 | sec++; | ||
| 221 | } | ||
| 222 | tv->tv_sec = sec; | ||
| 223 | tv->tv_usec = usec; | ||
| 224 | } | 123 | } |
| 225 | 124 | ||
| 226 | int __INLINE__ timeval_cmp(struct timeval *t0, struct timeval *t1) | 125 | inline int fasttime_cmp(struct fasttime_t *t0, struct fasttime_t *t1) |
| 227 | { | 126 | { |
| 228 | if (t0->tv_sec < t1->tv_sec) | 127 | /* Compare jiffies. Takes care of wrapping */ |
| 229 | { | 128 | if (time_before(t0->tv_jiff, t1->tv_jiff)) |
| 230 | return -1; | 129 | return -1; |
| 231 | } | 130 | else if (time_after(t0->tv_jiff, t1->tv_jiff)) |
| 232 | else if (t0->tv_sec > t1->tv_sec) | 131 | return 1; |
| 233 | { | 132 | |
| 234 | return 1; | 133 | /* Compare us */ |
| 235 | } | 134 | if (t0->tv_usec < t1->tv_usec) |
| 236 | if (t0->tv_usec < t1->tv_usec) | 135 | return -1; |
| 237 | { | 136 | else if (t0->tv_usec > t1->tv_usec) |
| 238 | return -1; | 137 | return 1; |
| 239 | } | 138 | return 0; |
| 240 | else if (t0->tv_usec > t1->tv_usec) | ||
| 241 | { | ||
| 242 | return 1; | ||
| 243 | } | ||
| 244 | return 0; | ||
| 245 | } | 139 | } |
| 246 | 140 | ||
| 247 | void __INLINE__ start_timer1(unsigned long delay_us) | 141 | inline void start_timer1(unsigned long delay_us) |
| 248 | { | 142 | { |
| 249 | int freq_index = 0; /* This is the lowest resolution */ | 143 | int freq_index = 0; /* This is the lowest resolution */ |
| 250 | unsigned long upper_limit = MAX_DELAY_US; | 144 | unsigned long upper_limit = MAX_DELAY_US; |
| @@ -285,7 +179,7 @@ void __INLINE__ start_timer1(unsigned long delay_us) | |||
| 285 | timer_freq_settings[fast_timers_started % NUM_TIMER_STATS] = freq_index; | 179 | timer_freq_settings[fast_timers_started % NUM_TIMER_STATS] = freq_index; |
| 286 | timer_delay_settings[fast_timers_started % NUM_TIMER_STATS] = delay_us; | 180 | timer_delay_settings[fast_timers_started % NUM_TIMER_STATS] = delay_us; |
| 287 | 181 | ||
| 288 | D1(printk("start_timer1 : %d us freq: %i div: %i\n", | 182 | D1(printk(KERN_DEBUG "start_timer1 : %d us freq: %i div: %i\n", |
| 289 | delay_us, freq_index, div)); | 183 | delay_us, freq_index, div)); |
| 290 | /* Clear timer1 irq */ | 184 | /* Clear timer1 irq */ |
| 291 | *R_IRQ_MASK0_CLR = IO_STATE(R_IRQ_MASK0_CLR, timer1, clr); | 185 | *R_IRQ_MASK0_CLR = IO_STATE(R_IRQ_MASK0_CLR, timer1, clr); |
| @@ -340,7 +234,7 @@ void start_one_shot_timer(struct fast_timer *t, | |||
| 340 | printk(KERN_WARNING | 234 | printk(KERN_WARNING |
| 341 | "timer name: %s data: 0x%08lX already in list!\n", name, data); | 235 | "timer name: %s data: 0x%08lX already in list!\n", name, data); |
| 342 | sanity_failed++; | 236 | sanity_failed++; |
| 343 | return; | 237 | goto done; |
| 344 | } | 238 | } |
| 345 | else | 239 | else |
| 346 | { | 240 | { |
| @@ -356,11 +250,11 @@ void start_one_shot_timer(struct fast_timer *t, | |||
| 356 | t->name = name; | 250 | t->name = name; |
| 357 | 251 | ||
| 358 | t->tv_expires.tv_usec = t->tv_set.tv_usec + delay_us % 1000000; | 252 | t->tv_expires.tv_usec = t->tv_set.tv_usec + delay_us % 1000000; |
| 359 | t->tv_expires.tv_sec = t->tv_set.tv_sec + delay_us / 1000000; | 253 | t->tv_expires.tv_jiff = t->tv_set.tv_jiff + delay_us / 1000000 / HZ; |
| 360 | if (t->tv_expires.tv_usec > 1000000) | 254 | if (t->tv_expires.tv_usec > 1000000) |
| 361 | { | 255 | { |
| 362 | t->tv_expires.tv_usec -= 1000000; | 256 | t->tv_expires.tv_usec -= 1000000; |
| 363 | t->tv_expires.tv_sec++; | 257 | t->tv_expires.tv_jiff += HZ; |
| 364 | } | 258 | } |
| 365 | #ifdef FAST_TIMER_LOG | 259 | #ifdef FAST_TIMER_LOG |
| 366 | timer_added_log[fast_timers_added % NUM_TIMER_STATS] = *t; | 260 | timer_added_log[fast_timers_added % NUM_TIMER_STATS] = *t; |
| @@ -368,7 +262,7 @@ void start_one_shot_timer(struct fast_timer *t, | |||
| 368 | fast_timers_added++; | 262 | fast_timers_added++; |
| 369 | 263 | ||
| 370 | /* Check if this should timeout before anything else */ | 264 | /* Check if this should timeout before anything else */ |
| 371 | if (tmp == NULL || timeval_cmp(&t->tv_expires, &tmp->tv_expires) < 0) | 265 | if (tmp == NULL || fasttime_cmp(&t->tv_expires, &tmp->tv_expires) < 0) |
| 372 | { | 266 | { |
| 373 | /* Put first in list and modify the timer value */ | 267 | /* Put first in list and modify the timer value */ |
| 374 | t->prev = NULL; | 268 | t->prev = NULL; |
| @@ -384,8 +278,8 @@ void start_one_shot_timer(struct fast_timer *t, | |||
| 384 | start_timer1(delay_us); | 278 | start_timer1(delay_us); |
| 385 | } else { | 279 | } else { |
| 386 | /* Put in correct place in list */ | 280 | /* Put in correct place in list */ |
| 387 | while (tmp->next && | 281 | while (tmp->next && fasttime_cmp(&t->tv_expires, |
| 388 | timeval_cmp(&t->tv_expires, &tmp->next->tv_expires) > 0) | 282 | &tmp->next->tv_expires) > 0) |
| 389 | { | 283 | { |
| 390 | tmp = tmp->next; | 284 | tmp = tmp->next; |
| 391 | } | 285 | } |
| @@ -401,6 +295,7 @@ void start_one_shot_timer(struct fast_timer *t, | |||
| 401 | 295 | ||
| 402 | D2(printk("start_one_shot_timer: %d us done\n", delay_us)); | 296 | D2(printk("start_one_shot_timer: %d us done\n", delay_us)); |
| 403 | 297 | ||
| 298 | done: | ||
| 404 | local_irq_restore(flags); | 299 | local_irq_restore(flags); |
| 405 | } /* start_one_shot_timer */ | 300 | } /* start_one_shot_timer */ |
| 406 | 301 | ||
| @@ -444,11 +339,18 @@ int del_fast_timer(struct fast_timer * t) | |||
| 444 | /* Timer 1 interrupt handler */ | 339 | /* Timer 1 interrupt handler */ |
| 445 | 340 | ||
| 446 | static irqreturn_t | 341 | static irqreturn_t |
| 447 | timer1_handler(int irq, void *dev_id, struct pt_regs *regs) | 342 | timer1_handler(int irq, void *dev_id) |
| 448 | { | 343 | { |
| 449 | struct fast_timer *t; | 344 | struct fast_timer *t; |
| 450 | unsigned long flags; | 345 | unsigned long flags; |
| 451 | 346 | ||
| 347 | /* We keep interrupts disabled not only when we modify the | ||
| 348 | * fast timer list, but any time we hold a reference to a | ||
| 349 | * timer in the list, since del_fast_timer may be called | ||
| 350 | * from (another) interrupt context. Thus, the only time | ||
| 351 | * when interrupts are enabled is when calling the timer | ||
| 352 | * callback function. | ||
| 353 | */ | ||
| 452 | local_irq_save(flags); | 354 | local_irq_save(flags); |
| 453 | 355 | ||
| 454 | /* Clear timer1 irq */ | 356 | /* Clear timer1 irq */ |
| @@ -466,18 +368,19 @@ timer1_handler(int irq, void *dev_id, struct pt_regs *regs) | |||
| 466 | fast_timer_running = 0; | 368 | fast_timer_running = 0; |
| 467 | fast_timer_ints++; | 369 | fast_timer_ints++; |
| 468 | 370 | ||
| 469 | local_irq_restore(flags); | ||
| 470 | |||
| 471 | t = fast_timer_list; | 371 | t = fast_timer_list; |
| 472 | while (t) | 372 | while (t) |
| 473 | { | 373 | { |
| 474 | struct timeval tv; | 374 | struct fasttime_t tv; |
| 375 | fast_timer_function_type *f; | ||
| 376 | unsigned long d; | ||
| 475 | 377 | ||
| 476 | /* Has it really expired? */ | 378 | /* Has it really expired? */ |
| 477 | do_gettimeofday_fast(&tv); | 379 | do_gettimeofday_fast(&tv); |
| 478 | D1(printk("t: %is %06ius\n", tv.tv_sec, tv.tv_usec)); | 380 | D1(printk(KERN_DEBUG "t: %is %06ius\n", |
| 381 | tv.tv_jiff, tv.tv_usec)); | ||
| 479 | 382 | ||
| 480 | if (timeval_cmp(&t->tv_expires, &tv) <= 0) | 383 | if (fasttime_cmp(&t->tv_expires, &tv) <= 0) |
| 481 | { | 384 | { |
| 482 | /* Yes it has expired */ | 385 | /* Yes it has expired */ |
| 483 | #ifdef FAST_TIMER_LOG | 386 | #ifdef FAST_TIMER_LOG |
| @@ -486,7 +389,6 @@ timer1_handler(int irq, void *dev_id, struct pt_regs *regs) | |||
| 486 | fast_timers_expired++; | 389 | fast_timers_expired++; |
| 487 | 390 | ||
| 488 | /* Remove this timer before call, since it may reuse the timer */ | 391 | /* Remove this timer before call, since it may reuse the timer */ |
| 489 | local_irq_save(flags); | ||
| 490 | if (t->prev) | 392 | if (t->prev) |
| 491 | { | 393 | { |
| 492 | t->prev->next = t->next; | 394 | t->prev->next = t->next; |
| @@ -501,16 +403,23 @@ timer1_handler(int irq, void *dev_id, struct pt_regs *regs) | |||
| 501 | } | 403 | } |
| 502 | t->prev = NULL; | 404 | t->prev = NULL; |
| 503 | t->next = NULL; | 405 | t->next = NULL; |
| 504 | local_irq_restore(flags); | ||
| 505 | 406 | ||
| 506 | if (t->function != NULL) | 407 | /* Save function callback data before enabling |
| 507 | { | 408 | * interrupts, since the timer may be removed and |
| 508 | t->function(t->data); | 409 | * we don't know how it was allocated |
| 509 | } | 410 | * (e.g. ->function and ->data may become overwritten |
| 510 | else | 411 | * after deletion if the timer was stack-allocated). |
| 511 | { | 412 | */ |
| 413 | f = t->function; | ||
| 414 | d = t->data; | ||
| 415 | |||
| 416 | if (f != NULL) { | ||
| 417 | /* Run callback with interrupts enabled. */ | ||
| 418 | local_irq_restore(flags); | ||
| 419 | f(d); | ||
| 420 | local_irq_save(flags); | ||
| 421 | } else | ||
| 512 | DEBUG_LOG("!timer1 %i function==NULL!\n", fast_timer_ints); | 422 | DEBUG_LOG("!timer1 %i function==NULL!\n", fast_timer_ints); |
| 513 | } | ||
| 514 | } | 423 | } |
| 515 | else | 424 | else |
| 516 | { | 425 | { |
| @@ -518,16 +427,20 @@ timer1_handler(int irq, void *dev_id, struct pt_regs *regs) | |||
| 518 | D1(printk(".\n")); | 427 | D1(printk(".\n")); |
| 519 | } | 428 | } |
| 520 | 429 | ||
| 521 | local_irq_save(flags); | ||
| 522 | if ((t = fast_timer_list) != NULL) | 430 | if ((t = fast_timer_list) != NULL) |
| 523 | { | 431 | { |
| 524 | /* Start next timer.. */ | 432 | /* Start next timer.. */ |
| 525 | long us; | 433 | long us = 0; |
| 526 | struct timeval tv; | 434 | struct fasttime_t tv; |
| 527 | 435 | ||
| 528 | do_gettimeofday_fast(&tv); | 436 | do_gettimeofday_fast(&tv); |
| 529 | us = ((t->tv_expires.tv_sec - tv.tv_sec) * 1000000 + | 437 | |
| 530 | t->tv_expires.tv_usec - tv.tv_usec); | 438 | /* time_after_eq takes care of wrapping */ |
| 439 | if (time_after_eq(t->tv_expires.tv_jiff, tv.tv_jiff)) | ||
| 440 | us = ((t->tv_expires.tv_jiff - tv.tv_jiff) * | ||
| 441 | 1000000 / HZ + t->tv_expires.tv_usec - | ||
| 442 | tv.tv_usec); | ||
| 443 | |||
| 531 | if (us > 0) | 444 | if (us > 0) |
| 532 | { | 445 | { |
| 533 | if (!fast_timer_running) | 446 | if (!fast_timer_running) |
| @@ -537,7 +450,6 @@ timer1_handler(int irq, void *dev_id, struct pt_regs *regs) | |||
| 537 | #endif | 450 | #endif |
| 538 | start_timer1(us); | 451 | start_timer1(us); |
| 539 | } | 452 | } |
| 540 | local_irq_restore(flags); | ||
| 541 | break; | 453 | break; |
| 542 | } | 454 | } |
| 543 | else | 455 | else |
| @@ -548,9 +460,10 @@ timer1_handler(int irq, void *dev_id, struct pt_regs *regs) | |||
| 548 | D1(printk("e! %d\n", us)); | 460 | D1(printk("e! %d\n", us)); |
| 549 | } | 461 | } |
| 550 | } | 462 | } |
| 551 | local_irq_restore(flags); | ||
| 552 | } | 463 | } |
| 553 | 464 | ||
| 465 | local_irq_restore(flags); | ||
| 466 | |||
| 554 | if (!t) | 467 | if (!t) |
| 555 | { | 468 | { |
| 556 | D1(printk("t1 stop!\n")); | 469 | D1(printk("t1 stop!\n")); |
| @@ -575,28 +488,17 @@ static void wake_up_func(unsigned long data) | |||
| 575 | void schedule_usleep(unsigned long us) | 488 | void schedule_usleep(unsigned long us) |
| 576 | { | 489 | { |
| 577 | struct fast_timer t; | 490 | struct fast_timer t; |
| 578 | #ifdef DECLARE_WAITQUEUE | ||
| 579 | wait_queue_head_t sleep_wait; | 491 | wait_queue_head_t sleep_wait; |
| 580 | init_waitqueue_head(&sleep_wait); | 492 | init_waitqueue_head(&sleep_wait); |
| 581 | { | ||
| 582 | DECLARE_WAITQUEUE(wait, current); | ||
| 583 | #else | ||
| 584 | struct wait_queue *sleep_wait = NULL; | ||
| 585 | struct wait_queue wait = { current, NULL }; | ||
| 586 | #endif | ||
| 587 | 493 | ||
| 588 | D1(printk("schedule_usleep(%d)\n", us)); | 494 | D1(printk("schedule_usleep(%d)\n", us)); |
| 589 | add_wait_queue(&sleep_wait, &wait); | ||
| 590 | set_current_state(TASK_INTERRUPTIBLE); | ||
| 591 | start_one_shot_timer(&t, wake_up_func, (unsigned long)&sleep_wait, us, | 495 | start_one_shot_timer(&t, wake_up_func, (unsigned long)&sleep_wait, us, |
| 592 | "usleep"); | 496 | "usleep"); |
| 593 | schedule(); | 497 | /* Uninterruptible sleep on the fast timer. (The condition is somewhat |
| 594 | set_current_state(TASK_RUNNING); | 498 | * redundant since the timer is what wakes us up.) */ |
| 595 | remove_wait_queue(&sleep_wait, &wait); | 499 | wait_event(sleep_wait, !fast_timer_pending(&t)); |
| 500 | |||
| 596 | D1(printk("done schedule_usleep(%d)\n", us)); | 501 | D1(printk("done schedule_usleep(%d)\n", us)); |
| 597 | #ifdef DECLARE_WAITQUEUE | ||
| 598 | } | ||
| 599 | #endif | ||
| 600 | } | 502 | } |
| 601 | 503 | ||
| 602 | #ifdef CONFIG_PROC_FS | 504 | #ifdef CONFIG_PROC_FS |
| @@ -616,7 +518,7 @@ static int proc_fasttimer_read(char *buf, char **start, off_t offset, int len | |||
| 616 | unsigned long flags; | 518 | unsigned long flags; |
| 617 | int i = 0; | 519 | int i = 0; |
| 618 | int num_to_show; | 520 | int num_to_show; |
| 619 | struct timeval tv; | 521 | struct fasttime_t tv; |
| 620 | struct fast_timer *t, *nextt; | 522 | struct fast_timer *t, *nextt; |
| 621 | static char *bigbuf = NULL; | 523 | static char *bigbuf = NULL; |
| 622 | static unsigned long used; | 524 | static unsigned long used; |
| @@ -624,7 +526,8 @@ static int proc_fasttimer_read(char *buf, char **start, off_t offset, int len | |||
| 624 | if (!bigbuf && !(bigbuf = vmalloc(BIG_BUF_SIZE))) | 526 | if (!bigbuf && !(bigbuf = vmalloc(BIG_BUF_SIZE))) |
| 625 | { | 527 | { |
| 626 | used = 0; | 528 | used = 0; |
| 627 | bigbuf[0] = '\0'; | 529 | if (buf) |
| 530 | buf[0] = '\0'; | ||
| 628 | return 0; | 531 | return 0; |
| 629 | } | 532 | } |
| 630 | 533 | ||
| @@ -646,7 +549,7 @@ static int proc_fasttimer_read(char *buf, char **start, off_t offset, int len | |||
| 646 | used += sprintf(bigbuf + used, "Fast timer running: %s\n", | 549 | used += sprintf(bigbuf + used, "Fast timer running: %s\n", |
| 647 | fast_timer_running ? "yes" : "no"); | 550 | fast_timer_running ? "yes" : "no"); |
| 648 | used += sprintf(bigbuf + used, "Current time: %lu.%06lu\n", | 551 | used += sprintf(bigbuf + used, "Current time: %lu.%06lu\n", |
| 649 | (unsigned long)tv.tv_sec, | 552 | (unsigned long)tv.tv_jiff, |
| 650 | (unsigned long)tv.tv_usec); | 553 | (unsigned long)tv.tv_usec); |
| 651 | #ifdef FAST_TIMER_SANITY_CHECKS | 554 | #ifdef FAST_TIMER_SANITY_CHECKS |
| 652 | used += sprintf(bigbuf + used, "Sanity failed: %i\n", | 555 | used += sprintf(bigbuf + used, "Sanity failed: %i\n", |
| @@ -696,9 +599,9 @@ static int proc_fasttimer_read(char *buf, char **start, off_t offset, int len | |||
| 696 | "d: %6li us data: 0x%08lX" | 599 | "d: %6li us data: 0x%08lX" |
| 697 | "\n", | 600 | "\n", |
| 698 | t->name, | 601 | t->name, |
| 699 | (unsigned long)t->tv_set.tv_sec, | 602 | (unsigned long)t->tv_set.tv_jiff, |
| 700 | (unsigned long)t->tv_set.tv_usec, | 603 | (unsigned long)t->tv_set.tv_usec, |
| 701 | (unsigned long)t->tv_expires.tv_sec, | 604 | (unsigned long)t->tv_expires.tv_jiff, |
| 702 | (unsigned long)t->tv_expires.tv_usec, | 605 | (unsigned long)t->tv_expires.tv_usec, |
| 703 | t->delay_us, | 606 | t->delay_us, |
| 704 | t->data | 607 | t->data |
| @@ -718,9 +621,9 @@ static int proc_fasttimer_read(char *buf, char **start, off_t offset, int len | |||
| 718 | "d: %6li us data: 0x%08lX" | 621 | "d: %6li us data: 0x%08lX" |
| 719 | "\n", | 622 | "\n", |
| 720 | t->name, | 623 | t->name, |
| 721 | (unsigned long)t->tv_set.tv_sec, | 624 | (unsigned long)t->tv_set.tv_jiff, |
| 722 | (unsigned long)t->tv_set.tv_usec, | 625 | (unsigned long)t->tv_set.tv_usec, |
| 723 | (unsigned long)t->tv_expires.tv_sec, | 626 | (unsigned long)t->tv_expires.tv_jiff, |
| 724 | (unsigned long)t->tv_expires.tv_usec, | 627 | (unsigned long)t->tv_expires.tv_usec, |
| 725 | t->delay_us, | 628 | t->delay_us, |
| 726 | t->data | 629 | t->data |
| @@ -738,9 +641,9 @@ static int proc_fasttimer_read(char *buf, char **start, off_t offset, int len | |||
| 738 | "d: %6li us data: 0x%08lX" | 641 | "d: %6li us data: 0x%08lX" |
| 739 | "\n", | 642 | "\n", |
| 740 | t->name, | 643 | t->name, |
| 741 | (unsigned long)t->tv_set.tv_sec, | 644 | (unsigned long)t->tv_set.tv_jiff, |
| 742 | (unsigned long)t->tv_set.tv_usec, | 645 | (unsigned long)t->tv_set.tv_usec, |
| 743 | (unsigned long)t->tv_expires.tv_sec, | 646 | (unsigned long)t->tv_expires.tv_jiff, |
| 744 | (unsigned long)t->tv_expires.tv_usec, | 647 | (unsigned long)t->tv_expires.tv_usec, |
| 745 | t->delay_us, | 648 | t->delay_us, |
| 746 | t->data | 649 | t->data |
| @@ -761,15 +664,15 @@ static int proc_fasttimer_read(char *buf, char **start, off_t offset, int len | |||
| 761 | /* " func: 0x%08lX" */ | 664 | /* " func: 0x%08lX" */ |
| 762 | "\n", | 665 | "\n", |
| 763 | t->name, | 666 | t->name, |
| 764 | (unsigned long)t->tv_set.tv_sec, | 667 | (unsigned long)t->tv_set.tv_jiff, |
| 765 | (unsigned long)t->tv_set.tv_usec, | 668 | (unsigned long)t->tv_set.tv_usec, |
| 766 | (unsigned long)t->tv_expires.tv_sec, | 669 | (unsigned long)t->tv_expires.tv_jiff, |
| 767 | (unsigned long)t->tv_expires.tv_usec, | 670 | (unsigned long)t->tv_expires.tv_usec, |
| 768 | t->delay_us, | 671 | t->delay_us, |
| 769 | t->data | 672 | t->data |
| 770 | /* , t->function */ | 673 | /* , t->function */ |
| 771 | ); | 674 | ); |
| 772 | local_irq_disable(); | 675 | local_irq_save(flags); |
| 773 | if (t->next != nextt) | 676 | if (t->next != nextt) |
| 774 | { | 677 | { |
| 775 | printk(KERN_WARNING "timer removed!\n"); | 678 | printk(KERN_WARNING "timer removed!\n"); |
| @@ -798,7 +701,7 @@ static volatile int num_test_timeout = 0; | |||
| 798 | static struct fast_timer tr[10]; | 701 | static struct fast_timer tr[10]; |
| 799 | static int exp_num[10]; | 702 | static int exp_num[10]; |
| 800 | 703 | ||
| 801 | static struct timeval tv_exp[100]; | 704 | static struct fasttime_t tv_exp[100]; |
| 802 | 705 | ||
| 803 | static void test_timeout(unsigned long data) | 706 | static void test_timeout(unsigned long data) |
| 804 | { | 707 | { |
| @@ -836,7 +739,7 @@ static void fast_timer_test(void) | |||
| 836 | int prev_num; | 739 | int prev_num; |
| 837 | int j; | 740 | int j; |
| 838 | 741 | ||
| 839 | struct timeval tv, tv0, tv1, tv2; | 742 | struct fasttime_t tv, tv0, tv1, tv2; |
| 840 | 743 | ||
| 841 | printk("fast_timer_test() start\n"); | 744 | printk("fast_timer_test() start\n"); |
| 842 | do_gettimeofday_fast(&tv); | 745 | do_gettimeofday_fast(&tv); |
| @@ -849,7 +752,8 @@ static void fast_timer_test(void) | |||
| 849 | { | 752 | { |
| 850 | do_gettimeofday_fast(&tv_exp[j]); | 753 | do_gettimeofday_fast(&tv_exp[j]); |
| 851 | } | 754 | } |
| 852 | printk("fast_timer_test() %is %06i\n", tv.tv_sec, tv.tv_usec); | 755 | printk(KERN_DEBUG "fast_timer_test() %is %06i\n", |
| 756 | tv.tv_jiff, tv.tv_usec); | ||
| 853 | 757 | ||
| 854 | for (j = 0; j < 1000; j++) | 758 | for (j = 0; j < 1000; j++) |
| 855 | { | 759 | { |
| @@ -858,12 +762,12 @@ static void fast_timer_test(void) | |||
| 858 | } | 762 | } |
| 859 | for (j = 0; j < 100; j++) | 763 | for (j = 0; j < 100; j++) |
| 860 | { | 764 | { |
| 861 | printk("%i.%i %i.%i %i.%i %i.%i %i.%i\n", | 765 | printk(KERN_DEBUG "%i.%i %i.%i %i.%i %i.%i %i.%i\n", |
| 862 | tv_exp[j].tv_sec,tv_exp[j].tv_usec, | 766 | tv_exp[j].tv_jiff, tv_exp[j].tv_usec, |
| 863 | tv_exp[j+1].tv_sec,tv_exp[j+1].tv_usec, | 767 | tv_exp[j+1].tv_jiff, tv_exp[j+1].tv_usec, |
| 864 | tv_exp[j+2].tv_sec,tv_exp[j+2].tv_usec, | 768 | tv_exp[j+2].tv_jiff, tv_exp[j+2].tv_usec, |
| 865 | tv_exp[j+3].tv_sec,tv_exp[j+3].tv_usec, | 769 | tv_exp[j+3].tv_jiff, tv_exp[j+3].tv_usec, |
| 866 | tv_exp[j+4].tv_sec,tv_exp[j+4].tv_usec); | 770 | tv_exp[j+4].tv_jiff, tv_exp[j+4].tv_usec); |
| 867 | j += 4; | 771 | j += 4; |
| 868 | } | 772 | } |
| 869 | do_gettimeofday_fast(&tv0); | 773 | do_gettimeofday_fast(&tv0); |
| @@ -895,9 +799,12 @@ static void fast_timer_test(void) | |||
| 895 | } | 799 | } |
| 896 | } | 800 | } |
| 897 | do_gettimeofday_fast(&tv2); | 801 | do_gettimeofday_fast(&tv2); |
| 898 | printk("Timers started %is %06i\n", tv0.tv_sec, tv0.tv_usec); | 802 | printk(KERN_DEBUG "Timers started %is %06i\n", |
| 899 | printk("Timers started at %is %06i\n", tv1.tv_sec, tv1.tv_usec); | 803 | tv0.tv_jiff, tv0.tv_usec); |
| 900 | printk("Timers done %is %06i\n", tv2.tv_sec, tv2.tv_usec); | 804 | printk(KERN_DEBUG "Timers started at %is %06i\n", |
| 805 | tv1.tv_jiff, tv1.tv_usec); | ||
| 806 | printk(KERN_DEBUG "Timers done %is %06i\n", | ||
| 807 | tv2.tv_jiff, tv2.tv_usec); | ||
| 901 | DP(printk("buf0:\n"); | 808 | DP(printk("buf0:\n"); |
| 902 | printk(buf0); | 809 | printk(buf0); |
| 903 | printk("buf1:\n"); | 810 | printk("buf1:\n"); |
| @@ -919,9 +826,9 @@ static void fast_timer_test(void) | |||
| 919 | printk("%-10s set: %6is %06ius exp: %6is %06ius " | 826 | printk("%-10s set: %6is %06ius exp: %6is %06ius " |
| 920 | "data: 0x%08X func: 0x%08X\n", | 827 | "data: 0x%08X func: 0x%08X\n", |
| 921 | t->name, | 828 | t->name, |
| 922 | t->tv_set.tv_sec, | 829 | t->tv_set.tv_jiff, |
| 923 | t->tv_set.tv_usec, | 830 | t->tv_set.tv_usec, |
| 924 | t->tv_expires.tv_sec, | 831 | t->tv_expires.tv_jiff, |
| 925 | t->tv_expires.tv_usec, | 832 | t->tv_expires.tv_usec, |
| 926 | t->data, | 833 | t->data, |
| 927 | t->function | 834 | t->function |
| @@ -929,10 +836,12 @@ static void fast_timer_test(void) | |||
| 929 | 836 | ||
| 930 | printk(" del: %6ius did exp: %6is %06ius as #%i error: %6li\n", | 837 | printk(" del: %6ius did exp: %6is %06ius as #%i error: %6li\n", |
| 931 | t->delay_us, | 838 | t->delay_us, |
| 932 | tv_exp[j].tv_sec, | 839 | tv_exp[j].tv_jiff, |
| 933 | tv_exp[j].tv_usec, | 840 | tv_exp[j].tv_usec, |
| 934 | exp_num[j], | 841 | exp_num[j], |
| 935 | (tv_exp[j].tv_sec - t->tv_expires.tv_sec)*1000000 + tv_exp[j].tv_usec - t->tv_expires.tv_usec); | 842 | (tv_exp[j].tv_jiff - t->tv_expires.tv_jiff) * |
| 843 | 1000000 + tv_exp[j].tv_usec - | ||
| 844 | t->tv_expires.tv_usec); | ||
| 936 | } | 845 | } |
| 937 | proc_fasttimer_read(buf5, NULL, 0, 0, 0); | 846 | proc_fasttimer_read(buf5, NULL, 0, 0, 0); |
| 938 | printk("buf5 after all done:\n"); | 847 | printk("buf5 after all done:\n"); |
| @@ -942,7 +851,7 @@ static void fast_timer_test(void) | |||
| 942 | #endif | 851 | #endif |
| 943 | 852 | ||
| 944 | 853 | ||
| 945 | void fast_timer_init(void) | 854 | int fast_timer_init(void) |
| 946 | { | 855 | { |
| 947 | /* For some reason, request_irq() hangs when called froom time_init() */ | 856 | /* For some reason, request_irq() hangs when called froom time_init() */ |
| 948 | if (!fast_timer_is_init) | 857 | if (!fast_timer_is_init) |
| @@ -975,4 +884,6 @@ void fast_timer_init(void) | |||
| 975 | fast_timer_test(); | 884 | fast_timer_test(); |
| 976 | #endif | 885 | #endif |
| 977 | } | 886 | } |
| 887 | return 0; | ||
| 978 | } | 888 | } |
| 889 | __initcall(fast_timer_init); | ||
diff --git a/arch/cris/arch-v10/kernel/io_interface_mux.c b/arch/cris/arch-v10/kernel/io_interface_mux.c index 29d48ad00df9..3a9114e89edf 100644 --- a/arch/cris/arch-v10/kernel/io_interface_mux.c +++ b/arch/cris/arch-v10/kernel/io_interface_mux.c | |||
| @@ -304,7 +304,7 @@ static unsigned char clear_group_from_set(const unsigned char groups, struct if_ | |||
| 304 | static struct if_group *get_group(const unsigned char groups) | 304 | static struct if_group *get_group(const unsigned char groups) |
| 305 | { | 305 | { |
| 306 | int i; | 306 | int i; |
| 307 | for (i = 0; i < sizeof(if_groups)/sizeof(struct if_group); i++) { | 307 | for (i = 0; i < ARRAY_SIZE(if_groups); i++) { |
| 308 | if (groups & if_groups[i].group) { | 308 | if (groups & if_groups[i].group) { |
| 309 | return &if_groups[i]; | 309 | return &if_groups[i]; |
| 310 | } | 310 | } |
diff --git a/arch/cris/arch-v10/kernel/irq.c b/arch/cris/arch-v10/kernel/irq.c index 845c95f6e871..e06ab0050d37 100644 --- a/arch/cris/arch-v10/kernel/irq.c +++ b/arch/cris/arch-v10/kernel/irq.c | |||
| @@ -12,10 +12,16 @@ | |||
| 12 | */ | 12 | */ |
| 13 | 13 | ||
| 14 | #include <asm/irq.h> | 14 | #include <asm/irq.h> |
| 15 | #include <asm/current.h> | ||
| 15 | #include <linux/irq.h> | 16 | #include <linux/irq.h> |
| 17 | #include <linux/interrupt.h> | ||
| 16 | #include <linux/kernel.h> | 18 | #include <linux/kernel.h> |
| 17 | #include <linux/init.h> | 19 | #include <linux/init.h> |
| 18 | 20 | ||
| 21 | /* From kgdb.c. */ | ||
| 22 | extern void kgdb_init(void); | ||
| 23 | extern void breakpoint(void); | ||
| 24 | |||
| 19 | #define mask_irq(irq_nr) (*R_VECT_MASK_CLR = 1 << (irq_nr)); | 25 | #define mask_irq(irq_nr) (*R_VECT_MASK_CLR = 1 << (irq_nr)); |
| 20 | #define unmask_irq(irq_nr) (*R_VECT_MASK_SET = 1 << (irq_nr)); | 26 | #define unmask_irq(irq_nr) (*R_VECT_MASK_SET = 1 << (irq_nr)); |
| 21 | 27 | ||
| @@ -75,8 +81,8 @@ BUILD_IRQ(12, 0x1000) | |||
| 75 | BUILD_IRQ(13, 0x2000) | 81 | BUILD_IRQ(13, 0x2000) |
| 76 | void mmu_bus_fault(void); /* IRQ 14 is the bus fault interrupt */ | 82 | void mmu_bus_fault(void); /* IRQ 14 is the bus fault interrupt */ |
| 77 | void multiple_interrupt(void); /* IRQ 15 is the multiple IRQ interrupt */ | 83 | void multiple_interrupt(void); /* IRQ 15 is the multiple IRQ interrupt */ |
| 78 | BUILD_IRQ(16, 0x10000) | 84 | BUILD_IRQ(16, 0x10000 | 0x20000) /* ethernet tx interrupt needs to block rx */ |
| 79 | BUILD_IRQ(17, 0x20000) | 85 | BUILD_IRQ(17, 0x20000 | 0x10000) /* ...and vice versa */ |
| 80 | BUILD_IRQ(18, 0x40000) | 86 | BUILD_IRQ(18, 0x40000) |
| 81 | BUILD_IRQ(19, 0x80000) | 87 | BUILD_IRQ(19, 0x80000) |
| 82 | BUILD_IRQ(20, 0x100000) | 88 | BUILD_IRQ(20, 0x100000) |
| @@ -147,6 +153,55 @@ void system_call(void); /* from entry.S */ | |||
| 147 | void do_sigtrap(void); /* from entry.S */ | 153 | void do_sigtrap(void); /* from entry.S */ |
| 148 | void gdb_handle_breakpoint(void); /* from entry.S */ | 154 | void gdb_handle_breakpoint(void); /* from entry.S */ |
| 149 | 155 | ||
| 156 | extern void do_IRQ(int irq, struct pt_regs * regs); | ||
| 157 | |||
| 158 | /* Handle multiple IRQs */ | ||
| 159 | void do_multiple_IRQ(struct pt_regs* regs) | ||
| 160 | { | ||
| 161 | int bit; | ||
| 162 | unsigned masked; | ||
| 163 | unsigned mask; | ||
| 164 | unsigned ethmask = 0; | ||
| 165 | |||
| 166 | /* Get interrupts to mask and handle */ | ||
| 167 | mask = masked = *R_VECT_MASK_RD; | ||
| 168 | |||
| 169 | /* Never mask timer IRQ */ | ||
| 170 | mask &= ~(IO_MASK(R_VECT_MASK_RD, timer0)); | ||
| 171 | |||
| 172 | /* | ||
| 173 | * If either ethernet interrupt (rx or tx) is active then block | ||
| 174 | * the other one too. Unblock afterwards also. | ||
| 175 | */ | ||
| 176 | if (mask & | ||
| 177 | (IO_STATE(R_VECT_MASK_RD, dma0, active) | | ||
| 178 | IO_STATE(R_VECT_MASK_RD, dma1, active))) { | ||
| 179 | ethmask = (IO_MASK(R_VECT_MASK_RD, dma0) | | ||
| 180 | IO_MASK(R_VECT_MASK_RD, dma1)); | ||
| 181 | } | ||
| 182 | |||
| 183 | /* Block them */ | ||
| 184 | *R_VECT_MASK_CLR = (mask | ethmask); | ||
| 185 | |||
| 186 | /* An extra irq_enter here to prevent softIRQs to run after | ||
| 187 | * each do_IRQ. This will decrease the interrupt latency. | ||
| 188 | */ | ||
| 189 | irq_enter(); | ||
| 190 | |||
| 191 | /* Handle all IRQs */ | ||
| 192 | for (bit = 2; bit < 32; bit++) { | ||
| 193 | if (masked & (1 << bit)) { | ||
| 194 | do_IRQ(bit, regs); | ||
| 195 | } | ||
| 196 | } | ||
| 197 | |||
| 198 | /* This irq_exit() will trigger the soft IRQs. */ | ||
| 199 | irq_exit(); | ||
| 200 | |||
| 201 | /* Unblock the IRQs again */ | ||
| 202 | *R_VECT_MASK_SET = (masked | ethmask); | ||
| 203 | } | ||
| 204 | |||
| 150 | /* init_IRQ() is called by start_kernel and is responsible for fixing IRQ masks and | 205 | /* init_IRQ() is called by start_kernel and is responsible for fixing IRQ masks and |
| 151 | setting the irq vector table. | 206 | setting the irq vector table. |
| 152 | */ | 207 | */ |
diff --git a/arch/cris/arch-v10/kernel/setup.c b/arch/cris/arch-v10/kernel/setup.c index 682ef955aec4..de27b50b72a2 100644 --- a/arch/cris/arch-v10/kernel/setup.c +++ b/arch/cris/arch-v10/kernel/setup.c | |||
| @@ -13,6 +13,7 @@ | |||
| 13 | #include <linux/seq_file.h> | 13 | #include <linux/seq_file.h> |
| 14 | #include <linux/proc_fs.h> | 14 | #include <linux/proc_fs.h> |
| 15 | #include <linux/delay.h> | 15 | #include <linux/delay.h> |
| 16 | #include <linux/param.h> | ||
| 16 | 17 | ||
| 17 | #ifdef CONFIG_PROC_FS | 18 | #ifdef CONFIG_PROC_FS |
| 18 | #define HAS_FPU 0x0001 | 19 | #define HAS_FPU 0x0001 |
| @@ -56,8 +57,8 @@ int show_cpuinfo(struct seq_file *m, void *v) | |||
| 56 | 57 | ||
| 57 | revision = rdvr(); | 58 | revision = rdvr(); |
| 58 | 59 | ||
| 59 | if (revision >= sizeof cpu_info/sizeof *cpu_info) | 60 | if (revision >= ARRAY_SIZE(cpu_info)) |
| 60 | info = &cpu_info[sizeof cpu_info/sizeof *cpu_info - 1]; | 61 | info = &cpu_info[ARRAY_SIZE(cpu_info) - 1]; |
| 61 | else | 62 | else |
| 62 | info = &cpu_info[revision]; | 63 | info = &cpu_info[revision]; |
| 63 | 64 | ||
diff --git a/arch/cris/arch-v10/kernel/time.c b/arch/cris/arch-v10/kernel/time.c index 575a14bb1106..5976f6199c47 100644 --- a/arch/cris/arch-v10/kernel/time.c +++ b/arch/cris/arch-v10/kernel/time.c | |||
| @@ -1,5 +1,4 @@ | |||
| 1 | /* $Id: time.c,v 1.5 2004/09/29 06:12:46 starvik Exp $ | 1 | /* |
| 2 | * | ||
| 3 | * linux/arch/cris/arch-v10/kernel/time.c | 2 | * linux/arch/cris/arch-v10/kernel/time.c |
| 4 | * | 3 | * |
| 5 | * Copyright (C) 1991, 1992, 1995 Linus Torvalds | 4 | * Copyright (C) 1991, 1992, 1995 Linus Torvalds |
| @@ -20,6 +19,7 @@ | |||
| 20 | #include <asm/io.h> | 19 | #include <asm/io.h> |
| 21 | #include <asm/delay.h> | 20 | #include <asm/delay.h> |
| 22 | #include <asm/rtc.h> | 21 | #include <asm/rtc.h> |
| 22 | #include <asm/irq_regs.h> | ||
| 23 | 23 | ||
| 24 | /* define this if you need to use print_timestamp */ | 24 | /* define this if you need to use print_timestamp */ |
| 25 | /* it will make jiffies at 96 hz instead of 100 hz though */ | 25 | /* it will make jiffies at 96 hz instead of 100 hz though */ |
| @@ -201,8 +201,9 @@ static long last_rtc_update = 0; | |||
| 201 | extern void cris_do_profile(struct pt_regs *regs); | 201 | extern void cris_do_profile(struct pt_regs *regs); |
| 202 | 202 | ||
| 203 | static inline irqreturn_t | 203 | static inline irqreturn_t |
| 204 | timer_interrupt(int irq, void *dev_id, struct pt_regs *regs) | 204 | timer_interrupt(int irq, void *dev_id) |
| 205 | { | 205 | { |
| 206 | struct pt_regs *regs = get_irq_regs(); | ||
| 206 | /* acknowledge the timer irq */ | 207 | /* acknowledge the timer irq */ |
| 207 | 208 | ||
| 208 | #ifdef USE_CASCADE_TIMERS | 209 | #ifdef USE_CASCADE_TIMERS |
| @@ -221,9 +222,11 @@ timer_interrupt(int irq, void *dev_id, struct pt_regs *regs) | |||
| 221 | #endif | 222 | #endif |
| 222 | 223 | ||
| 223 | /* reset watchdog otherwise it resets us! */ | 224 | /* reset watchdog otherwise it resets us! */ |
| 224 | |||
| 225 | reset_watchdog(); | 225 | reset_watchdog(); |
| 226 | 226 | ||
| 227 | /* Update statistics. */ | ||
| 228 | update_process_times(user_mode(regs)); | ||
| 229 | |||
| 227 | /* call the real timer interrupt handler */ | 230 | /* call the real timer interrupt handler */ |
| 228 | 231 | ||
| 229 | do_timer(1); | 232 | do_timer(1); |
diff --git a/arch/cris/arch-v10/lib/memset.c b/arch/cris/arch-v10/lib/memset.c index 82bb66839171..42c1101043a3 100644 --- a/arch/cris/arch-v10/lib/memset.c +++ b/arch/cris/arch-v10/lib/memset.c | |||
| @@ -66,7 +66,7 @@ void *memset(void *pdst, | |||
| 66 | 66 | ||
| 67 | { | 67 | { |
| 68 | register char *dst __asm__ ("r13") = pdst; | 68 | register char *dst __asm__ ("r13") = pdst; |
| 69 | 69 | ||
| 70 | /* This is NONPORTABLE, but since this whole routine is */ | 70 | /* This is NONPORTABLE, but since this whole routine is */ |
| 71 | /* grossly nonportable that doesn't matter. */ | 71 | /* grossly nonportable that doesn't matter. */ |
| 72 | 72 | ||
| @@ -110,52 +110,52 @@ void *memset(void *pdst, | |||
| 110 | If you want to check that the allocation was right; then | 110 | If you want to check that the allocation was right; then |
| 111 | check the equalities in the first comment. It should say | 111 | check the equalities in the first comment. It should say |
| 112 | "r13=r13, r12=r12, r11=r11" */ | 112 | "r13=r13, r12=r12, r11=r11" */ |
| 113 | __asm__ volatile (" | 113 | __asm__ volatile ("\n\ |
| 114 | ;; Check that the following is true (same register names on | 114 | ;; Check that the following is true (same register names on \n\ |
| 115 | ;; both sides of equal sign, as in r8=r8): | 115 | ;; both sides of equal sign, as in r8=r8): \n\ |
| 116 | ;; %0=r13, %1=r12, %4=r11 | 116 | ;; %0=r13, %1=r12, %4=r11 \n\ |
| 117 | ;; | 117 | ;; \n\ |
| 118 | ;; Save the registers we'll clobber in the movem process | 118 | ;; Save the registers we'll clobber in the movem process \n\ |
| 119 | ;; on the stack. Don't mention them to gcc, it will only be | 119 | ;; on the stack. Don't mention them to gcc, it will only be \n\ |
| 120 | ;; upset. | 120 | ;; upset. \n\ |
| 121 | subq 11*4,$sp | 121 | subq 11*4,$sp \n\ |
| 122 | movem $r10,[$sp] | 122 | movem $r10,[$sp] \n\ |
| 123 | 123 | \n\ | |
| 124 | move.d $r11,$r0 | 124 | move.d $r11,$r0 \n\ |
| 125 | move.d $r11,$r1 | 125 | move.d $r11,$r1 \n\ |
| 126 | move.d $r11,$r2 | 126 | move.d $r11,$r2 \n\ |
| 127 | move.d $r11,$r3 | 127 | move.d $r11,$r3 \n\ |
| 128 | move.d $r11,$r4 | 128 | move.d $r11,$r4 \n\ |
| 129 | move.d $r11,$r5 | 129 | move.d $r11,$r5 \n\ |
| 130 | move.d $r11,$r6 | 130 | move.d $r11,$r6 \n\ |
| 131 | move.d $r11,$r7 | 131 | move.d $r11,$r7 \n\ |
| 132 | move.d $r11,$r8 | 132 | move.d $r11,$r8 \n\ |
| 133 | move.d $r11,$r9 | 133 | move.d $r11,$r9 \n\ |
| 134 | move.d $r11,$r10 | 134 | move.d $r11,$r10 \n\ |
| 135 | 135 | \n\ | |
| 136 | ;; Now we've got this: | 136 | ;; Now we've got this: \n\ |
| 137 | ;; r13 - dst | 137 | ;; r13 - dst \n\ |
| 138 | ;; r12 - n | 138 | ;; r12 - n \n\ |
| 139 | 139 | \n\ | |
| 140 | ;; Update n for the first loop | 140 | ;; Update n for the first loop \n\ |
| 141 | subq 12*4,$r12 | 141 | subq 12*4,$r12 \n\ |
| 142 | 0: | 142 | 0: \n\ |
| 143 | subq 12*4,$r12 | 143 | subq 12*4,$r12 \n\ |
| 144 | bge 0b | 144 | bge 0b \n\ |
| 145 | movem $r11,[$r13+] | 145 | movem $r11,[$r13+] \n\ |
| 146 | 146 | \n\ | |
| 147 | addq 12*4,$r12 ;; compensate for last loop underflowing n | 147 | addq 12*4,$r12 ;; compensate for last loop underflowing n \n\ |
| 148 | 148 | \n\ | |
| 149 | ;; Restore registers from stack | 149 | ;; Restore registers from stack \n\ |
| 150 | movem [$sp+],$r10" | 150 | movem [$sp+],$r10" |
| 151 | 151 | ||
| 152 | /* Outputs */ : "=r" (dst), "=r" (n) | 152 | /* Outputs */ : "=r" (dst), "=r" (n) |
| 153 | /* Inputs */ : "0" (dst), "1" (n), "r" (lc)); | 153 | /* Inputs */ : "0" (dst), "1" (n), "r" (lc)); |
| 154 | 154 | ||
| 155 | } | 155 | } |
| 156 | 156 | ||
| 157 | /* Either we directly starts copying, using dword copying | 157 | /* Either we directly starts copying, using dword copying |
| 158 | in a loop, or we copy as much as possible with 'movem' | 158 | in a loop, or we copy as much as possible with 'movem' |
| 159 | and then the last block (<44 bytes) is copied here. | 159 | and then the last block (<44 bytes) is copied here. |
| 160 | This will work since 'movem' will have updated src,dst,n. */ | 160 | This will work since 'movem' will have updated src,dst,n. */ |
| 161 | 161 | ||
diff --git a/arch/cris/arch-v10/lib/string.c b/arch/cris/arch-v10/lib/string.c index 15d6662b03b1..7161a2bef4fe 100644 --- a/arch/cris/arch-v10/lib/string.c +++ b/arch/cris/arch-v10/lib/string.c | |||
| @@ -95,33 +95,33 @@ void *memcpy(void *pdst, | |||
| 95 | If you want to check that the allocation was right; then | 95 | If you want to check that the allocation was right; then |
| 96 | check the equalities in the first comment. It should say | 96 | check the equalities in the first comment. It should say |
| 97 | "r13=r13, r11=r11, r12=r12" */ | 97 | "r13=r13, r11=r11, r12=r12" */ |
| 98 | __asm__ volatile (" | 98 | __asm__ volatile ("\n\ |
| 99 | ;; Check that the following is true (same register names on | 99 | ;; Check that the following is true (same register names on \n\ |
| 100 | ;; both sides of equal sign, as in r8=r8): | 100 | ;; both sides of equal sign, as in r8=r8): \n\ |
| 101 | ;; %0=r13, %1=r11, %2=r12 | 101 | ;; %0=r13, %1=r11, %2=r12 \n\ |
| 102 | ;; | 102 | ;; \n\ |
| 103 | ;; Save the registers we'll use in the movem process | 103 | ;; Save the registers we'll use in the movem process \n\ |
| 104 | ;; on the stack. | 104 | ;; on the stack. \n\ |
| 105 | subq 11*4,$sp | 105 | subq 11*4,$sp \n\ |
| 106 | movem $r10,[$sp] | 106 | movem $r10,[$sp] \n\ |
| 107 | 107 | \n\ | |
| 108 | ;; Now we've got this: | 108 | ;; Now we've got this: \n\ |
| 109 | ;; r11 - src | 109 | ;; r11 - src \n\ |
| 110 | ;; r13 - dst | 110 | ;; r13 - dst \n\ |
| 111 | ;; r12 - n | 111 | ;; r12 - n \n\ |
| 112 | 112 | \n\ | |
| 113 | ;; Update n for the first loop | 113 | ;; Update n for the first loop \n\ |
| 114 | subq 44,$r12 | 114 | subq 44,$r12 \n\ |
| 115 | 0: | 115 | 0: \n\ |
| 116 | movem [$r11+],$r10 | 116 | movem [$r11+],$r10 \n\ |
| 117 | subq 44,$r12 | 117 | subq 44,$r12 \n\ |
| 118 | bge 0b | 118 | bge 0b \n\ |
| 119 | movem $r10,[$r13+] | 119 | movem $r10,[$r13+] \n\ |
| 120 | 120 | \n\ | |
| 121 | addq 44,$r12 ;; compensate for last loop underflowing n | 121 | addq 44,$r12 ;; compensate for last loop underflowing n \n\ |
| 122 | 122 | \n\ | |
| 123 | ;; Restore registers from stack | 123 | ;; Restore registers from stack \n\ |
| 124 | movem [$sp+],$r10" | 124 | movem [$sp+],$r10" |
| 125 | 125 | ||
| 126 | /* Outputs */ : "=r" (dst), "=r" (src), "=r" (n) | 126 | /* Outputs */ : "=r" (dst), "=r" (src), "=r" (n) |
| 127 | /* Inputs */ : "0" (dst), "1" (src), "2" (n)); | 127 | /* Inputs */ : "0" (dst), "1" (src), "2" (n)); |
diff --git a/arch/cris/arch-v10/lib/usercopy.c b/arch/cris/arch-v10/lib/usercopy.c index a12c708afc9a..b8e6c0430e5b 100644 --- a/arch/cris/arch-v10/lib/usercopy.c +++ b/arch/cris/arch-v10/lib/usercopy.c | |||
| @@ -92,58 +92,58 @@ __copy_user (void __user *pdst, const void *psrc, unsigned long pn) | |||
| 92 | .ifnc %0%1%2%3,$r13$r11$r12$r10 \n\ | 92 | .ifnc %0%1%2%3,$r13$r11$r12$r10 \n\ |
| 93 | .err \n\ | 93 | .err \n\ |
| 94 | .endif \n\ | 94 | .endif \n\ |
| 95 | 95 | \n\ | |
| 96 | ;; Save the registers we'll use in the movem process | 96 | ;; Save the registers we'll use in the movem process \n\ |
| 97 | ;; on the stack. | 97 | ;; on the stack. \n\ |
| 98 | subq 11*4,$sp | 98 | subq 11*4,$sp \n\ |
| 99 | movem $r10,[$sp] | 99 | movem $r10,[$sp] \n\ |
| 100 | 100 | \n\ | |
| 101 | ;; Now we've got this: | 101 | ;; Now we've got this: \n\ |
| 102 | ;; r11 - src | 102 | ;; r11 - src \n\ |
| 103 | ;; r13 - dst | 103 | ;; r13 - dst \n\ |
| 104 | ;; r12 - n | 104 | ;; r12 - n \n\ |
| 105 | 105 | \n\ | |
| 106 | ;; Update n for the first loop | 106 | ;; Update n for the first loop \n\ |
| 107 | subq 44,$r12 | 107 | subq 44,$r12 \n\ |
| 108 | 108 | \n\ | |
| 109 | ; Since the noted PC of a faulting instruction in a delay-slot of a taken | 109 | ; Since the noted PC of a faulting instruction in a delay-slot of a taken \n\ |
| 110 | ; branch, is that of the branch target, we actually point at the from-movem | 110 | ; branch, is that of the branch target, we actually point at the from-movem \n\ |
| 111 | ; for this case. There is no ambiguity here; if there was a fault in that | 111 | ; for this case. There is no ambiguity here; if there was a fault in that \n\ |
| 112 | ; instruction (meaning a kernel oops), the faulted PC would be the address | 112 | ; instruction (meaning a kernel oops), the faulted PC would be the address \n\ |
| 113 | ; after *that* movem. | 113 | ; after *that* movem. \n\ |
| 114 | 114 | \n\ | |
| 115 | 0: | 115 | 0: \n\ |
| 116 | movem [$r11+],$r10 | 116 | movem [$r11+],$r10 \n\ |
| 117 | subq 44,$r12 | 117 | subq 44,$r12 \n\ |
| 118 | bge 0b | 118 | bge 0b \n\ |
| 119 | movem $r10,[$r13+] | 119 | movem $r10,[$r13+] \n\ |
| 120 | 1: | 120 | 1: \n\ |
| 121 | addq 44,$r12 ;; compensate for last loop underflowing n | 121 | addq 44,$r12 ;; compensate for last loop underflowing n \n\ |
| 122 | 122 | \n\ | |
| 123 | ;; Restore registers from stack | 123 | ;; Restore registers from stack \n\ |
| 124 | movem [$sp+],$r10 | 124 | movem [$sp+],$r10 \n\ |
| 125 | 2: | 125 | 2: \n\ |
| 126 | .section .fixup,\"ax\" | 126 | .section .fixup,\"ax\" \n\ |
| 127 | 127 | \n\ | |
| 128 | ; To provide a correct count in r10 of bytes that failed to be copied, | 128 | ; To provide a correct count in r10 of bytes that failed to be copied, \n\ |
| 129 | ; we jump back into the loop if the loop-branch was taken. There is no | 129 | ; we jump back into the loop if the loop-branch was taken. There is no \n\ |
| 130 | ; performance penalty for sany use; the program will segfault soon enough. | 130 | ; performance penalty for sany use; the program will segfault soon enough.\n\ |
| 131 | 131 | \n\ | |
| 132 | 3: | 132 | 3: \n\ |
| 133 | move.d [$sp],$r10 | 133 | move.d [$sp],$r10 \n\ |
| 134 | addq 44,$r10 | 134 | addq 44,$r10 \n\ |
| 135 | move.d $r10,[$sp] | 135 | move.d $r10,[$sp] \n\ |
| 136 | jump 0b | 136 | jump 0b \n\ |
| 137 | 4: | 137 | 4: \n\ |
| 138 | movem [$sp+],$r10 | 138 | movem [$sp+],$r10 \n\ |
| 139 | addq 44,$r10 | 139 | addq 44,$r10 \n\ |
| 140 | addq 44,$r12 | 140 | addq 44,$r12 \n\ |
| 141 | jump 2b | 141 | jump 2b \n\ |
| 142 | 142 | \n\ | |
| 143 | .previous | 143 | .previous \n\ |
| 144 | .section __ex_table,\"a\" | 144 | .section __ex_table,\"a\" \n\ |
| 145 | .dword 0b,3b | 145 | .dword 0b,3b \n\ |
| 146 | .dword 1b,4b | 146 | .dword 1b,4b \n\ |
| 147 | .previous" | 147 | .previous" |
| 148 | 148 | ||
| 149 | /* Outputs */ : "=r" (dst), "=r" (src), "=r" (n), "=r" (retn) | 149 | /* Outputs */ : "=r" (dst), "=r" (src), "=r" (n), "=r" (retn) |
| @@ -253,59 +253,59 @@ __copy_user_zeroing (void __user *pdst, const void *psrc, unsigned long pn) | |||
| 253 | If you want to check that the allocation was right; then | 253 | If you want to check that the allocation was right; then |
| 254 | check the equalities in the first comment. It should say | 254 | check the equalities in the first comment. It should say |
| 255 | "r13=r13, r11=r11, r12=r12" */ | 255 | "r13=r13, r11=r11, r12=r12" */ |
| 256 | __asm__ volatile (" | 256 | __asm__ volatile ("\n\ |
| 257 | .ifnc %0%1%2%3,$r13$r11$r12$r10 \n\ | 257 | .ifnc %0%1%2%3,$r13$r11$r12$r10 \n\ |
| 258 | .err \n\ | 258 | .err \n\ |
| 259 | .endif \n\ | 259 | .endif \n\ |
| 260 | 260 | \n\ | |
| 261 | ;; Save the registers we'll use in the movem process | 261 | ;; Save the registers we'll use in the movem process \n\ |
| 262 | ;; on the stack. | 262 | ;; on the stack. \n\ |
| 263 | subq 11*4,$sp | 263 | subq 11*4,$sp \n\ |
| 264 | movem $r10,[$sp] | 264 | movem $r10,[$sp] \n\ |
| 265 | 265 | \n\ | |
| 266 | ;; Now we've got this: | 266 | ;; Now we've got this: \n\ |
| 267 | ;; r11 - src | 267 | ;; r11 - src \n\ |
| 268 | ;; r13 - dst | 268 | ;; r13 - dst \n\ |
| 269 | ;; r12 - n | 269 | ;; r12 - n \n\ |
| 270 | 270 | \n\ | |
| 271 | ;; Update n for the first loop | 271 | ;; Update n for the first loop \n\ |
| 272 | subq 44,$r12 | 272 | subq 44,$r12 \n\ |
| 273 | 0: | 273 | 0: \n\ |
| 274 | movem [$r11+],$r10 | 274 | movem [$r11+],$r10 \n\ |
| 275 | 1: | 275 | 1: \n\ |
| 276 | subq 44,$r12 | 276 | subq 44,$r12 \n\ |
| 277 | bge 0b | 277 | bge 0b \n\ |
| 278 | movem $r10,[$r13+] | 278 | movem $r10,[$r13+] \n\ |
| 279 | 279 | \n\ | |
| 280 | addq 44,$r12 ;; compensate for last loop underflowing n | 280 | addq 44,$r12 ;; compensate for last loop underflowing n \n\ |
| 281 | 281 | \n\ | |
| 282 | ;; Restore registers from stack | 282 | ;; Restore registers from stack \n\ |
| 283 | movem [$sp+],$r10 | 283 | movem [$sp+],$r10 \n\ |
| 284 | 4: | 284 | 4: \n\ |
| 285 | .section .fixup,\"ax\" | 285 | .section .fixup,\"ax\" \n\ |
| 286 | 286 | \n\ | |
| 287 | ;; Do not jump back into the loop if we fail. For some uses, we get a | 287 | ;; Do not jump back into the loop if we fail. For some uses, we get a \n\ |
| 288 | ;; page fault somewhere on the line. Without checking for page limits, | 288 | ;; page fault somewhere on the line. Without checking for page limits, \n\ |
| 289 | ;; we don't know where, but we need to copy accurately and keep an | 289 | ;; we don't know where, but we need to copy accurately and keep an \n\ |
| 290 | ;; accurate count; not just clear the whole line. To do that, we fall | 290 | ;; accurate count; not just clear the whole line. To do that, we fall \n\ |
| 291 | ;; down in the code below, proceeding with smaller amounts. It should | 291 | ;; down in the code below, proceeding with smaller amounts. It should \n\ |
| 292 | ;; be kept in mind that we have to cater to code like what at one time | 292 | ;; be kept in mind that we have to cater to code like what at one time \n\ |
| 293 | ;; was in fs/super.c: | 293 | ;; was in fs/super.c: \n\ |
| 294 | ;; i = size - copy_from_user((void *)page, data, size); | 294 | ;; i = size - copy_from_user((void *)page, data, size); \n\ |
| 295 | ;; which would cause repeated faults while clearing the remainder of | 295 | ;; which would cause repeated faults while clearing the remainder of \n\ |
| 296 | ;; the SIZE bytes at PAGE after the first fault. | 296 | ;; the SIZE bytes at PAGE after the first fault. \n\ |
| 297 | ;; A caveat here is that we must not fall through from a failing page | 297 | ;; A caveat here is that we must not fall through from a failing page \n\ |
| 298 | ;; to a valid page. | 298 | ;; to a valid page. \n\ |
| 299 | 299 | \n\ | |
| 300 | 3: | 300 | 3: \n\ |
| 301 | movem [$sp+],$r10 | 301 | movem [$sp+],$r10 \n\ |
| 302 | addq 44,$r12 ;; Get back count before faulting point. | 302 | addq 44,$r12 ;; Get back count before faulting point. \n\ |
| 303 | subq 44,$r11 ;; Get back pointer to faulting movem-line. | 303 | subq 44,$r11 ;; Get back pointer to faulting movem-line. \n\ |
| 304 | jump 4b ;; Fall through, pretending the fault didn't happen. | 304 | jump 4b ;; Fall through, pretending the fault didn't happen.\n\ |
| 305 | 305 | \n\ | |
| 306 | .previous | 306 | .previous \n\ |
| 307 | .section __ex_table,\"a\" | 307 | .section __ex_table,\"a\" \n\ |
| 308 | .dword 1b,3b | 308 | .dword 1b,3b \n\ |
| 309 | .previous" | 309 | .previous" |
| 310 | 310 | ||
| 311 | /* Outputs */ : "=r" (dst), "=r" (src), "=r" (n), "=r" (retn) | 311 | /* Outputs */ : "=r" (dst), "=r" (src), "=r" (n), "=r" (retn) |
| @@ -425,64 +425,64 @@ __do_clear_user (void __user *pto, unsigned long pn) | |||
| 425 | If you want to check that the allocation was right; then | 425 | If you want to check that the allocation was right; then |
| 426 | check the equalities in the first comment. It should say | 426 | check the equalities in the first comment. It should say |
| 427 | something like "r13=r13, r11=r11, r12=r12". */ | 427 | something like "r13=r13, r11=r11, r12=r12". */ |
| 428 | __asm__ volatile (" | 428 | __asm__ volatile ("\n\ |
| 429 | .ifnc %0%1%2,$r13$r12$r10 \n\ | 429 | .ifnc %0%1%2,$r13$r12$r10 \n\ |
| 430 | .err \n\ | 430 | .err \n\ |
| 431 | .endif \n\ | 431 | .endif \n\ |
| 432 | 432 | \n\ | |
| 433 | ;; Save the registers we'll clobber in the movem process | 433 | ;; Save the registers we'll clobber in the movem process \n\ |
| 434 | ;; on the stack. Don't mention them to gcc, it will only be | 434 | ;; on the stack. Don't mention them to gcc, it will only be \n\ |
| 435 | ;; upset. | 435 | ;; upset. \n\ |
| 436 | subq 11*4,$sp | 436 | subq 11*4,$sp \n\ |
| 437 | movem $r10,[$sp] | 437 | movem $r10,[$sp] \n\ |
| 438 | 438 | \n\ | |
| 439 | clear.d $r0 | 439 | clear.d $r0 \n\ |
| 440 | clear.d $r1 | 440 | clear.d $r1 \n\ |
| 441 | clear.d $r2 | 441 | clear.d $r2 \n\ |
| 442 | clear.d $r3 | 442 | clear.d $r3 \n\ |
| 443 | clear.d $r4 | 443 | clear.d $r4 \n\ |
| 444 | clear.d $r5 | 444 | clear.d $r5 \n\ |
| 445 | clear.d $r6 | 445 | clear.d $r6 \n\ |
| 446 | clear.d $r7 | 446 | clear.d $r7 \n\ |
| 447 | clear.d $r8 | 447 | clear.d $r8 \n\ |
| 448 | clear.d $r9 | 448 | clear.d $r9 \n\ |
| 449 | clear.d $r10 | 449 | clear.d $r10 \n\ |
| 450 | clear.d $r11 | 450 | clear.d $r11 \n\ |
| 451 | 451 | \n\ | |
| 452 | ;; Now we've got this: | 452 | ;; Now we've got this: \n\ |
| 453 | ;; r13 - dst | 453 | ;; r13 - dst \n\ |
| 454 | ;; r12 - n | 454 | ;; r12 - n \n\ |
| 455 | 455 | \n\ | |
| 456 | ;; Update n for the first loop | 456 | ;; Update n for the first loop \n\ |
| 457 | subq 12*4,$r12 | 457 | subq 12*4,$r12 \n\ |
| 458 | 0: | 458 | 0: \n\ |
| 459 | subq 12*4,$r12 | 459 | subq 12*4,$r12 \n\ |
| 460 | bge 0b | 460 | bge 0b \n\ |
| 461 | movem $r11,[$r13+] | 461 | movem $r11,[$r13+] \n\ |
| 462 | 1: | 462 | 1: \n\ |
| 463 | addq 12*4,$r12 ;; compensate for last loop underflowing n | 463 | addq 12*4,$r12 ;; compensate for last loop underflowing n\n\ |
| 464 | 464 | \n\ | |
| 465 | ;; Restore registers from stack | 465 | ;; Restore registers from stack \n\ |
| 466 | movem [$sp+],$r10 | 466 | movem [$sp+],$r10 \n\ |
| 467 | 2: | 467 | 2: \n\ |
| 468 | .section .fixup,\"ax\" | 468 | .section .fixup,\"ax\" \n\ |
| 469 | 3: | 469 | 3: \n\ |
| 470 | move.d [$sp],$r10 | 470 | move.d [$sp],$r10 \n\ |
| 471 | addq 12*4,$r10 | 471 | addq 12*4,$r10 \n\ |
| 472 | move.d $r10,[$sp] | 472 | move.d $r10,[$sp] \n\ |
| 473 | clear.d $r10 | 473 | clear.d $r10 \n\ |
| 474 | jump 0b | 474 | jump 0b \n\ |
| 475 | 475 | \n\ | |
| 476 | 4: | 476 | 4: \n\ |
| 477 | movem [$sp+],$r10 | 477 | movem [$sp+],$r10 \n\ |
| 478 | addq 12*4,$r10 | 478 | addq 12*4,$r10 \n\ |
| 479 | addq 12*4,$r12 | 479 | addq 12*4,$r12 \n\ |
| 480 | jump 2b | 480 | jump 2b \n\ |
| 481 | 481 | \n\ | |
| 482 | .previous | 482 | .previous \n\ |
| 483 | .section __ex_table,\"a\" | 483 | .section __ex_table,\"a\" \n\ |
| 484 | .dword 0b,3b | 484 | .dword 0b,3b \n\ |
| 485 | .dword 1b,4b | 485 | .dword 1b,4b \n\ |
| 486 | .previous" | 486 | .previous" |
| 487 | 487 | ||
| 488 | /* Outputs */ : "=r" (dst), "=r" (n), "=r" (retn) | 488 | /* Outputs */ : "=r" (dst), "=r" (n), "=r" (retn) |
diff --git a/arch/cris/arch-v32/drivers/Kconfig b/arch/cris/arch-v32/drivers/Kconfig index cc6ba5423754..7f72d7c9e1ce 100644 --- a/arch/cris/arch-v32/drivers/Kconfig +++ b/arch/cris/arch-v32/drivers/Kconfig | |||
| @@ -362,8 +362,6 @@ config ETRAX_AXISFLASHMAP | |||
| 362 | select MTD | 362 | select MTD |
| 363 | select MTD_CFI | 363 | select MTD_CFI |
| 364 | select MTD_CFI_AMDSTD | 364 | select MTD_CFI_AMDSTD |
| 365 | select MTD_OBSOLETE_CHIPS | ||
| 366 | select MTD_AMDSTD | ||
| 367 | select MTD_CHAR | 365 | select MTD_CHAR |
| 368 | select MTD_BLOCK | 366 | select MTD_BLOCK |
| 369 | select MTD_PARTITIONS | 367 | select MTD_PARTITIONS |
diff --git a/arch/cris/arch-v32/drivers/axisflashmap.c b/arch/cris/arch-v32/drivers/axisflashmap.c index 3ec12ea44e8e..c5ff95e18269 100644 --- a/arch/cris/arch-v32/drivers/axisflashmap.c +++ b/arch/cris/arch-v32/drivers/axisflashmap.c | |||
| @@ -190,13 +190,12 @@ static struct mtd_info *probe_cs(struct map_info *map_cs) | |||
| 190 | "%s: Probing a 0x%08lx bytes large window at 0x%08lx.\n", | 190 | "%s: Probing a 0x%08lx bytes large window at 0x%08lx.\n", |
| 191 | map_cs->name, map_cs->size, map_cs->map_priv_1); | 191 | map_cs->name, map_cs->size, map_cs->map_priv_1); |
| 192 | 192 | ||
| 193 | #ifdef CONFIG_MTD_AMDSTD | ||
| 194 | mtd_cs = do_map_probe("amd_flash", map_cs); | ||
| 195 | #endif | ||
| 196 | #ifdef CONFIG_MTD_CFI | 193 | #ifdef CONFIG_MTD_CFI |
| 197 | if (!mtd_cs) { | ||
| 198 | mtd_cs = do_map_probe("cfi_probe", map_cs); | 194 | mtd_cs = do_map_probe("cfi_probe", map_cs); |
| 199 | } | 195 | #endif |
| 196 | #ifdef CONFIG_MTD_JEDECPROBE | ||
| 197 | if (!mtd_cs) | ||
| 198 | mtd_cs = do_map_probe("jedec_probe", map_cs); | ||
| 200 | #endif | 199 | #endif |
| 201 | 200 | ||
| 202 | return mtd_cs; | 201 | return mtd_cs; |
diff --git a/arch/cris/arch-v32/drivers/sync_serial.c b/arch/cris/arch-v32/drivers/sync_serial.c index df89298aafc4..d581b0a92a3f 100644 --- a/arch/cris/arch-v32/drivers/sync_serial.c +++ b/arch/cris/arch-v32/drivers/sync_serial.c | |||
| @@ -185,7 +185,7 @@ static struct sync_port ports[]= | |||
| 185 | } | 185 | } |
| 186 | }; | 186 | }; |
| 187 | 187 | ||
| 188 | #define NUMBER_OF_PORTS (sizeof(ports)/sizeof(sync_port)) | 188 | #define NUMBER_OF_PORTS ARRAY_SIZE(ports) |
| 189 | 189 | ||
| 190 | static const struct file_operations sync_serial_fops = { | 190 | static const struct file_operations sync_serial_fops = { |
| 191 | .owner = THIS_MODULE, | 191 | .owner = THIS_MODULE, |
diff --git a/arch/cris/arch-v32/kernel/cache.c b/arch/cris/arch-v32/kernel/cache.c new file mode 100644 index 000000000000..80da7b88a72b --- /dev/null +++ b/arch/cris/arch-v32/kernel/cache.c | |||
| @@ -0,0 +1,33 @@ | |||
| 1 | #include <linux/module.h> | ||
| 2 | #include <asm/io.h> | ||
| 3 | #include <asm/arch/cache.h> | ||
| 4 | #include <asm/arch/hwregs/dma.h> | ||
| 5 | |||
| 6 | /* This file is used to workaround a cache bug, Guinness TR 106. */ | ||
| 7 | |||
| 8 | inline void flush_dma_descr(struct dma_descr_data *descr, int flush_buf) | ||
| 9 | { | ||
| 10 | /* Flush descriptor to make sure we get correct in_eop and after. */ | ||
| 11 | asm volatile ("ftagd [%0]" :: "r" (descr)); | ||
| 12 | /* Flush buffer pointed out by descriptor. */ | ||
| 13 | if (flush_buf) | ||
| 14 | cris_flush_cache_range(phys_to_virt((unsigned)descr->buf), | ||
| 15 | (unsigned)(descr->after - descr->buf)); | ||
| 16 | } | ||
| 17 | EXPORT_SYMBOL(flush_dma_descr); | ||
| 18 | |||
| 19 | void flush_dma_list(struct dma_descr_data *descr) | ||
| 20 | { | ||
| 21 | while (1) { | ||
| 22 | flush_dma_descr(descr, 1); | ||
| 23 | if (descr->eol) | ||
| 24 | break; | ||
| 25 | descr = phys_to_virt((unsigned)descr->next); | ||
| 26 | } | ||
| 27 | } | ||
| 28 | EXPORT_SYMBOL(flush_dma_list); | ||
| 29 | |||
| 30 | /* From cacheflush.S */ | ||
| 31 | EXPORT_SYMBOL(cris_flush_cache); | ||
| 32 | /* From cacheflush.S */ | ||
| 33 | EXPORT_SYMBOL(cris_flush_cache_range); | ||
diff --git a/arch/cris/arch-v32/kernel/cacheflush.S b/arch/cris/arch-v32/kernel/cacheflush.S new file mode 100644 index 000000000000..956e8fb82f01 --- /dev/null +++ b/arch/cris/arch-v32/kernel/cacheflush.S | |||
| @@ -0,0 +1,94 @@ | |||
| 1 | .global cris_flush_cache_range | ||
| 2 | cris_flush_cache_range: | ||
| 3 | move.d 1024, $r12 | ||
| 4 | cmp.d $r11, $r12 | ||
| 5 | bhi cris_flush_1KB | ||
| 6 | nop | ||
| 7 | add.d $r10, $r11 | ||
| 8 | ftagd [$r10] | ||
| 9 | cris_flush_last: | ||
| 10 | addq 32, $r10 | ||
| 11 | cmp.d $r11, $r10 | ||
| 12 | blt cris_flush_last | ||
| 13 | ftagd [$r10] | ||
| 14 | ret | ||
| 15 | nop | ||
| 16 | cris_flush_1KB: | ||
| 17 | ftagd [$r10] | ||
| 18 | addq 32, $r10 | ||
| 19 | ftagd [$r10] | ||
| 20 | addq 32, $r10 | ||
| 21 | ftagd [$r10] | ||
| 22 | addq 32, $r10 | ||
| 23 | ftagd [$r10] | ||
| 24 | addq 32, $r10 | ||
| 25 | ftagd [$r10] | ||
| 26 | addq 32, $r10 | ||
| 27 | ftagd [$r10] | ||
| 28 | addq 32, $r10 | ||
| 29 | ftagd [$r10] | ||
| 30 | addq 32, $r10 | ||
| 31 | ftagd [$r10] | ||
| 32 | addq 32, $r10 | ||
| 33 | ftagd [$r10] | ||
| 34 | addq 32, $r10 | ||
| 35 | ftagd [$r10] | ||
| 36 | addq 32, $r10 | ||
| 37 | ftagd [$r10] | ||
| 38 | addq 32, $r10 | ||
| 39 | ftagd [$r10] | ||
| 40 | addq 32, $r10 | ||
| 41 | ftagd [$r10] | ||
| 42 | addq 32, $r10 | ||
| 43 | ftagd [$r10] | ||
| 44 | addq 32, $r10 | ||
| 45 | ftagd [$r10] | ||
| 46 | addq 32, $r10 | ||
| 47 | ftagd [$r10] | ||
| 48 | addq 32, $r10 | ||
| 49 | ftagd [$r10] | ||
| 50 | addq 32, $r10 | ||
| 51 | ftagd [$r10] | ||
| 52 | addq 32, $r10 | ||
| 53 | ftagd [$r10] | ||
| 54 | addq 32, $r10 | ||
| 55 | ftagd [$r10] | ||
| 56 | addq 32, $r10 | ||
| 57 | ftagd [$r10] | ||
| 58 | addq 32, $r10 | ||
| 59 | ftagd [$r10] | ||
| 60 | addq 32, $r10 | ||
| 61 | ftagd [$r10] | ||
| 62 | addq 32, $r10 | ||
| 63 | ftagd [$r10] | ||
| 64 | addq 32, $r10 | ||
| 65 | ftagd [$r10] | ||
| 66 | addq 32, $r10 | ||
| 67 | ftagd [$r10] | ||
| 68 | addq 32, $r10 | ||
| 69 | ftagd [$r10] | ||
| 70 | addq 32, $r10 | ||
| 71 | ftagd [$r10] | ||
| 72 | addq 32, $r10 | ||
| 73 | ftagd [$r10] | ||
| 74 | addq 32, $r10 | ||
| 75 | ftagd [$r10] | ||
| 76 | addq 32, $r10 | ||
| 77 | ftagd [$r10] | ||
| 78 | addq 32, $r10 | ||
| 79 | ftagd [$r10] | ||
| 80 | addq 32, $r10 | ||
| 81 | ba cris_flush_cache_range | ||
| 82 | sub.d $r12, $r11 | ||
| 83 | |||
| 84 | .global cris_flush_cache | ||
| 85 | cris_flush_cache: | ||
| 86 | moveq 0, $r10 | ||
| 87 | cris_flush_line: | ||
| 88 | move.d 16*1024, $r11 | ||
| 89 | addq 16, $r10 | ||
| 90 | cmp.d $r10, $r11 | ||
| 91 | blt cris_flush_line | ||
| 92 | fidxd [$r10] | ||
| 93 | ret | ||
| 94 | nop | ||
diff --git a/arch/cris/arch-v32/kernel/io.c b/arch/cris/arch-v32/kernel/io.c index dfbfcb8d2585..a22a9e02e093 100644 --- a/arch/cris/arch-v32/kernel/io.c +++ b/arch/cris/arch-v32/kernel/io.c | |||
| @@ -49,7 +49,7 @@ struct crisv32_ioport crisv32_ioports[] = | |||
| 49 | } | 49 | } |
| 50 | }; | 50 | }; |
| 51 | 51 | ||
| 52 | #define NBR_OF_PORTS sizeof(crisv32_ioports)/sizeof(struct crisv32_ioport) | 52 | #define NBR_OF_PORTS ARRAY_SIZE(crisv32_ioports) |
| 53 | 53 | ||
| 54 | struct crisv32_iopin crisv32_led1_green; | 54 | struct crisv32_iopin crisv32_led1_green; |
| 55 | struct crisv32_iopin crisv32_led1_red; | 55 | struct crisv32_iopin crisv32_led1_red; |
diff --git a/arch/cris/arch-v32/kernel/setup.c b/arch/cris/arch-v32/kernel/setup.c index 4662f363df63..72e9e8331f63 100644 --- a/arch/cris/arch-v32/kernel/setup.c +++ b/arch/cris/arch-v32/kernel/setup.c | |||
| @@ -54,12 +54,10 @@ show_cpuinfo(struct seq_file *m, void *v) | |||
| 54 | { | 54 | { |
| 55 | int i; | 55 | int i; |
| 56 | int cpu = (int)v - 1; | 56 | int cpu = (int)v - 1; |
| 57 | int entries; | ||
| 58 | unsigned long revision; | 57 | unsigned long revision; |
| 59 | struct cpu_info *info; | 58 | struct cpu_info *info; |
| 60 | 59 | ||
| 61 | entries = sizeof cpinfo / sizeof(struct cpu_info); | 60 | info = &cpinfo[ARRAY_SIZE(cpinfo) - 1]; |
| 62 | info = &cpinfo[entries - 1]; | ||
| 63 | 61 | ||
| 64 | #ifdef CONFIG_SMP | 62 | #ifdef CONFIG_SMP |
| 65 | if (!cpu_online(cpu)) | 63 | if (!cpu_online(cpu)) |
| @@ -68,7 +66,7 @@ show_cpuinfo(struct seq_file *m, void *v) | |||
| 68 | 66 | ||
| 69 | revision = rdvr(); | 67 | revision = rdvr(); |
| 70 | 68 | ||
| 71 | for (i = 0; i < entries; i++) { | 69 | for (i = 0; i < ARRAY_SIZE(cpinfo); i++) { |
| 72 | if (cpinfo[i].rev == revision) { | 70 | if (cpinfo[i].rev == revision) { |
| 73 | info = &cpinfo[i]; | 71 | info = &cpinfo[i]; |
| 74 | break; | 72 | break; |
diff --git a/arch/cris/defconfig b/arch/cris/defconfig index 142a10818af3..9c33ae659934 100644 --- a/arch/cris/defconfig +++ b/arch/cris/defconfig | |||
| @@ -226,8 +226,6 @@ CONFIG_MTD_CFI_UTIL=y | |||
| 226 | CONFIG_MTD_RAM=y | 226 | CONFIG_MTD_RAM=y |
| 227 | # CONFIG_MTD_ROM is not set | 227 | # CONFIG_MTD_ROM is not set |
| 228 | # CONFIG_MTD_ABSENT is not set | 228 | # CONFIG_MTD_ABSENT is not set |
| 229 | CONFIG_MTD_OBSOLETE_CHIPS=y | ||
| 230 | CONFIG_MTD_AMDSTD=y | ||
| 231 | # CONFIG_MTD_SHARP is not set | 229 | # CONFIG_MTD_SHARP is not set |
| 232 | # CONFIG_MTD_JEDEC is not set | 230 | # CONFIG_MTD_JEDEC is not set |
| 233 | 231 | ||
| @@ -276,6 +274,7 @@ CONFIG_MTDRAM_ABS_POS=0x0 | |||
| 276 | # CONFIG_BLK_DEV_FD is not set | 274 | # CONFIG_BLK_DEV_FD is not set |
| 277 | # CONFIG_BLK_DEV_COW_COMMON is not set | 275 | # CONFIG_BLK_DEV_COW_COMMON is not set |
| 278 | # CONFIG_BLK_DEV_LOOP is not set | 276 | # CONFIG_BLK_DEV_LOOP is not set |
| 277 | # CONFIG_BLK_DEV_CRYPTOLOOP is not set | ||
| 279 | # CONFIG_BLK_DEV_NBD is not set | 278 | # CONFIG_BLK_DEV_NBD is not set |
| 280 | # CONFIG_BLK_DEV_UB is not set | 279 | # CONFIG_BLK_DEV_UB is not set |
| 281 | CONFIG_BLK_DEV_RAM=y | 280 | CONFIG_BLK_DEV_RAM=y |
| @@ -302,16 +301,14 @@ CONFIG_IOSCHED_CFQ=y | |||
| 302 | # | 301 | # |
| 303 | # ATA/ATAPI/MFM/RLL support | 302 | # ATA/ATAPI/MFM/RLL support |
| 304 | # | 303 | # |
| 305 | CONFIG_IDE=y | 304 | # CONFIG_IDE is not set |
| 306 | CONFIG_BLK_DEV_IDE=y | 305 | # CONFIG_PARIDE is not set |
| 307 | 306 | ||
| 308 | # | 307 | # |
| 309 | # Please see Documentation/ide.txt for help/info on IDE drives | 308 | # Please see Documentation/ide.txt for help/info on IDE drives |
| 310 | # | 309 | # |
| 311 | # CONFIG_BLK_DEV_IDE_SATA is not set | 310 | # CONFIG_BLK_DEV_IDE_SATA is not set |
| 312 | CONFIG_BLK_DEV_IDEDISK=y | ||
| 313 | # CONFIG_IDEDISK_MULTI_MODE is not set | 311 | # CONFIG_IDEDISK_MULTI_MODE is not set |
| 314 | CONFIG_BLK_DEV_IDECD=y | ||
| 315 | # CONFIG_BLK_DEV_IDETAPE is not set | 312 | # CONFIG_BLK_DEV_IDETAPE is not set |
| 316 | # CONFIG_BLK_DEV_IDEFLOPPY is not set | 313 | # CONFIG_BLK_DEV_IDEFLOPPY is not set |
| 317 | # CONFIG_IDE_TASK_IOCTL is not set | 314 | # CONFIG_IDE_TASK_IOCTL is not set |
| @@ -321,7 +318,6 @@ CONFIG_BLK_DEV_IDECD=y | |||
| 321 | # | 318 | # |
| 322 | # CONFIG_IDE_GENERIC is not set | 319 | # CONFIG_IDE_GENERIC is not set |
| 323 | # CONFIG_IDE_ARM is not set | 320 | # CONFIG_IDE_ARM is not set |
| 324 | CONFIG_BLK_DEV_IDEDMA=y | ||
| 325 | # CONFIG_IDEDMA_AUTO is not set | 321 | # CONFIG_IDEDMA_AUTO is not set |
| 326 | # CONFIG_BLK_DEV_HD is not set | 322 | # CONFIG_BLK_DEV_HD is not set |
| 327 | 323 | ||
| @@ -329,6 +325,7 @@ CONFIG_BLK_DEV_IDEDMA=y | |||
| 329 | # SCSI device support | 325 | # SCSI device support |
| 330 | # | 326 | # |
| 331 | # CONFIG_SCSI is not set | 327 | # CONFIG_SCSI is not set |
| 328 | # CONFIG_ISCSI_TCP is not set | ||
| 332 | 329 | ||
| 333 | # | 330 | # |
| 334 | # IEEE 1394 (FireWire) support | 331 | # IEEE 1394 (FireWire) support |
| @@ -414,26 +411,11 @@ CONFIG_NETFILTER=y | |||
| 414 | # CONFIG_NET_POLL_CONTROLLER is not set | 411 | # CONFIG_NET_POLL_CONTROLLER is not set |
| 415 | # CONFIG_HAMRADIO is not set | 412 | # CONFIG_HAMRADIO is not set |
| 416 | # CONFIG_IRDA is not set | 413 | # CONFIG_IRDA is not set |
| 417 | CONFIG_BT=y | 414 | # CONFIG_AF_RXRPC is not set |
| 418 | CONFIG_BT_L2CAP=y | 415 | # CONFIG_AF_RXRPC_DEBUG is not set |
| 419 | # CONFIG_BT_SCO is not set | 416 | # CONFIG_BT is not set |
| 420 | CONFIG_BT_RFCOMM=y | 417 | # CONFIG_I2C is not set |
| 421 | # CONFIG_BT_RFCOMM_TTY is not set | 418 | |
| 422 | CONFIG_BT_BNEP=y | ||
| 423 | # CONFIG_BT_BNEP_MC_FILTER is not set | ||
| 424 | # CONFIG_BT_BNEP_PROTO_FILTER is not set | ||
| 425 | # CONFIG_BT_HIDP is not set | ||
| 426 | |||
| 427 | # | ||
| 428 | # Bluetooth device drivers | ||
| 429 | # | ||
| 430 | CONFIG_BT_HCIUSB=y | ||
| 431 | # CONFIG_BT_HCIUSB_SCO is not set | ||
| 432 | # CONFIG_BT_HCIUART is not set | ||
| 433 | # CONFIG_BT_HCIBCM203X is not set | ||
| 434 | # CONFIG_BT_HCIBPA10X is not set | ||
| 435 | # CONFIG_BT_HCIBFUSB is not set | ||
| 436 | # CONFIG_BT_HCIVHCI is not set | ||
| 437 | CONFIG_NETDEVICES=y | 419 | CONFIG_NETDEVICES=y |
| 438 | # CONFIG_DUMMY is not set | 420 | # CONFIG_DUMMY is not set |
| 439 | # CONFIG_BONDING is not set | 421 | # CONFIG_BONDING is not set |
| @@ -485,31 +467,17 @@ CONFIG_NET_ETHERNET=y | |||
| 485 | # | 467 | # |
| 486 | # Input device support | 468 | # Input device support |
| 487 | # | 469 | # |
| 488 | CONFIG_INPUT=y | 470 | # CONFIG_INPUT is not set |
| 489 | |||
| 490 | # | ||
| 491 | # Userland interfaces | ||
| 492 | # | ||
| 493 | CONFIG_INPUT_MOUSEDEV=y | ||
| 494 | CONFIG_INPUT_MOUSEDEV_PSAUX=y | ||
| 495 | CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 | ||
| 496 | CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 | ||
| 497 | # CONFIG_INPUT_JOYDEV is not set | ||
| 498 | # CONFIG_INPUT_TSDEV is not set | ||
| 499 | # CONFIG_INPUT_EVDEV is not set | ||
| 500 | # CONFIG_INPUT_EVBUG is not set | ||
| 501 | 471 | ||
| 502 | # | 472 | # |
| 503 | # Input I/O drivers | 473 | # Input I/O drivers |
| 504 | # | 474 | # |
| 505 | # CONFIG_GAMEPORT is not set | ||
| 506 | CONFIG_SOUND_GAMEPORT=y | ||
| 507 | CONFIG_SERIO=y | 475 | CONFIG_SERIO=y |
| 508 | # CONFIG_SERIO_I8042 is not set | 476 | # CONFIG_SERIO_I8042 is not set |
| 509 | # CONFIG_SERIO_SERPORT is not set | 477 | # CONFIG_SERIO_SERPORT is not set |
| 510 | # CONFIG_SERIO_CT82C710 is not set | 478 | # CONFIG_SERIO_LIBPS2 is not set |
| 511 | CONFIG_SERIO_LIBPS2=y | ||
| 512 | # CONFIG_SERIO_RAW is not set | 479 | # CONFIG_SERIO_RAW is not set |
| 480 | # CONFIG_GAMEPORT is not set | ||
| 513 | 481 | ||
| 514 | # | 482 | # |
| 515 | # Input Device Drivers | 483 | # Input Device Drivers |
| @@ -525,6 +493,7 @@ CONFIG_MOUSE_PS2=y | |||
| 525 | # CONFIG_MOUSE_SERIAL is not set | 493 | # CONFIG_MOUSE_SERIAL is not set |
| 526 | # CONFIG_MOUSE_VSXXXAA is not set | 494 | # CONFIG_MOUSE_VSXXXAA is not set |
| 527 | # CONFIG_INPUT_JOYSTICK is not set | 495 | # CONFIG_INPUT_JOYSTICK is not set |
| 496 | # CONFIG_INPUT_TABLET is not set | ||
| 528 | # CONFIG_INPUT_TOUCHSCREEN is not set | 497 | # CONFIG_INPUT_TOUCHSCREEN is not set |
| 529 | # CONFIG_INPUT_MISC is not set | 498 | # CONFIG_INPUT_MISC is not set |
| 530 | 499 | ||
| @@ -542,6 +511,8 @@ CONFIG_MOUSE_PS2=y | |||
| 542 | # | 511 | # |
| 543 | # Non-8250 serial port support | 512 | # Non-8250 serial port support |
| 544 | # | 513 | # |
| 514 | CONFIG_SERIAL_CORE=y | ||
| 515 | CONFIG_SERIAL_CORE_CONSOLE=y | ||
| 545 | CONFIG_UNIX98_PTYS=y | 516 | CONFIG_UNIX98_PTYS=y |
| 546 | CONFIG_LEGACY_PTYS=y | 517 | CONFIG_LEGACY_PTYS=y |
| 547 | CONFIG_LEGACY_PTY_COUNT=256 | 518 | CONFIG_LEGACY_PTY_COUNT=256 |
| @@ -559,6 +530,8 @@ CONFIG_LEGACY_PTY_COUNT=256 | |||
| 559 | # CONFIG_GEN_RTC is not set | 530 | # CONFIG_GEN_RTC is not set |
| 560 | # CONFIG_DTLK is not set | 531 | # CONFIG_DTLK is not set |
| 561 | # CONFIG_R3964 is not set | 532 | # CONFIG_R3964 is not set |
| 533 | # CONFIG_RTC_LIB is not set | ||
| 534 | # CONFIG_RTC_CLASS is not set | ||
| 562 | 535 | ||
| 563 | # | 536 | # |
| 564 | # Ftape, the floppy tape device driver | 537 | # Ftape, the floppy tape device driver |
| @@ -660,7 +633,9 @@ CONFIG_NFS_V3=y | |||
| 660 | # CONFIG_NFSD is not set | 633 | # CONFIG_NFSD is not set |
| 661 | CONFIG_LOCKD=y | 634 | CONFIG_LOCKD=y |
| 662 | CONFIG_LOCKD_V4=y | 635 | CONFIG_LOCKD_V4=y |
| 636 | CONFIG_NFS_COMMON=y | ||
| 663 | CONFIG_SUNRPC=y | 637 | CONFIG_SUNRPC=y |
| 638 | # CONFIG_SUNRPC_BIND34 is not set | ||
| 664 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 639 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
| 665 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 640 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 666 | # CONFIG_SMB_FS is not set | 641 | # CONFIG_SMB_FS is not set |
| @@ -686,9 +661,21 @@ CONFIG_MSDOS_PARTITION=y | |||
| 686 | # CONFIG_SOUND is not set | 661 | # CONFIG_SOUND is not set |
| 687 | 662 | ||
| 688 | # | 663 | # |
| 664 | # Generic devices | ||
| 665 | # | ||
| 666 | # CONFIG_SND_MPU401_UART is not set | ||
| 667 | # CONFIG_SND_DUMMY is not set | ||
| 668 | # CONFIG_SND_VIRMIDI is not set | ||
| 669 | # CONFIG_SND_MTPAV is not set | ||
| 670 | # CONFIG_SND_SERIAL_U16550 is not set | ||
| 671 | # CONFIG_SND_MPU401 is not set | ||
| 672 | |||
| 673 | # | ||
| 689 | # PCCARD (PCMCIA/CardBus) support | 674 | # PCCARD (PCMCIA/CardBus) support |
| 690 | # | 675 | # |
| 691 | # CONFIG_PCCARD is not set | 676 | # CONFIG_PCCARD is not set |
| 677 | # CONFIG_PARPORT_PC_PCMCIA is not set | ||
| 678 | # CONFIG_NET_PCMCIA is not set | ||
| 692 | 679 | ||
| 693 | # | 680 | # |
| 694 | # PC-card bridges | 681 | # PC-card bridges |
| @@ -734,6 +721,7 @@ CONFIG_USB_DEVICEFS=y | |||
| 734 | # USB Input Devices | 721 | # USB Input Devices |
| 735 | # | 722 | # |
| 736 | # CONFIG_USB_HID is not set | 723 | # CONFIG_USB_HID is not set |
| 724 | # HID_SUPPORT is not set | ||
| 737 | 725 | ||
| 738 | # | 726 | # |
| 739 | # USB HID Boot Protocol drivers | 727 | # USB HID Boot Protocol drivers |
| @@ -829,7 +817,7 @@ CONFIG_USB_RTL8150=y | |||
| 829 | 817 | ||
| 830 | # | 818 | # |
| 831 | # Hardware crypto devices | 819 | # Hardware crypto devices |
| 832 | # | 820 | # CONFIG_CRYPTO_HW is not set |
| 833 | 821 | ||
| 834 | # | 822 | # |
| 835 | # Library routines | 823 | # Library routines |
diff --git a/arch/cris/kernel/crisksyms.c b/arch/cris/kernel/crisksyms.c index 105bb5ed48f7..62f0e752915a 100644 --- a/arch/cris/kernel/crisksyms.c +++ b/arch/cris/kernel/crisksyms.c | |||
| @@ -27,6 +27,7 @@ extern void __Mod(void); | |||
| 27 | extern void __ashldi3(void); | 27 | extern void __ashldi3(void); |
| 28 | extern void __ashrdi3(void); | 28 | extern void __ashrdi3(void); |
| 29 | extern void __lshrdi3(void); | 29 | extern void __lshrdi3(void); |
| 30 | extern void __negdi2(void); | ||
| 30 | extern void iounmap(volatile void * __iomem); | 31 | extern void iounmap(volatile void * __iomem); |
| 31 | 32 | ||
| 32 | /* Platform dependent support */ | 33 | /* Platform dependent support */ |
| @@ -34,19 +35,6 @@ EXPORT_SYMBOL(kernel_thread); | |||
| 34 | EXPORT_SYMBOL(get_cmos_time); | 35 | EXPORT_SYMBOL(get_cmos_time); |
| 35 | EXPORT_SYMBOL(loops_per_usec); | 36 | EXPORT_SYMBOL(loops_per_usec); |
| 36 | 37 | ||
| 37 | /* String functions */ | ||
| 38 | EXPORT_SYMBOL(memcmp); | ||
| 39 | EXPORT_SYMBOL(memmove); | ||
| 40 | EXPORT_SYMBOL(strstr); | ||
| 41 | EXPORT_SYMBOL(strcpy); | ||
| 42 | EXPORT_SYMBOL(strchr); | ||
| 43 | EXPORT_SYMBOL(strcmp); | ||
| 44 | EXPORT_SYMBOL(strlen); | ||
| 45 | EXPORT_SYMBOL(strcat); | ||
| 46 | EXPORT_SYMBOL(strncat); | ||
| 47 | EXPORT_SYMBOL(strncmp); | ||
| 48 | EXPORT_SYMBOL(strncpy); | ||
| 49 | |||
| 50 | /* Math functions */ | 38 | /* Math functions */ |
| 51 | EXPORT_SYMBOL(__Udiv); | 39 | EXPORT_SYMBOL(__Udiv); |
| 52 | EXPORT_SYMBOL(__Umod); | 40 | EXPORT_SYMBOL(__Umod); |
| @@ -55,6 +43,7 @@ EXPORT_SYMBOL(__Mod); | |||
| 55 | EXPORT_SYMBOL(__ashldi3); | 43 | EXPORT_SYMBOL(__ashldi3); |
| 56 | EXPORT_SYMBOL(__ashrdi3); | 44 | EXPORT_SYMBOL(__ashrdi3); |
| 57 | EXPORT_SYMBOL(__lshrdi3); | 45 | EXPORT_SYMBOL(__lshrdi3); |
| 46 | EXPORT_SYMBOL(__negdi2); | ||
| 58 | 47 | ||
| 59 | /* Memory functions */ | 48 | /* Memory functions */ |
| 60 | EXPORT_SYMBOL(__ioremap); | 49 | EXPORT_SYMBOL(__ioremap); |
| @@ -84,4 +73,4 @@ EXPORT_SYMBOL(start_one_shot_timer); | |||
| 84 | EXPORT_SYMBOL(del_fast_timer); | 73 | EXPORT_SYMBOL(del_fast_timer); |
| 85 | EXPORT_SYMBOL(schedule_usleep); | 74 | EXPORT_SYMBOL(schedule_usleep); |
| 86 | #endif | 75 | #endif |
| 87 | 76 | EXPORT_SYMBOL(csum_partial); | |
diff --git a/arch/cris/kernel/irq.c b/arch/cris/kernel/irq.c index 5c27ff86121b..2dfac8c79090 100644 --- a/arch/cris/kernel/irq.c +++ b/arch/cris/kernel/irq.c | |||
| @@ -2,7 +2,7 @@ | |||
| 2 | * | 2 | * |
| 3 | * linux/arch/cris/kernel/irq.c | 3 | * linux/arch/cris/kernel/irq.c |
| 4 | * | 4 | * |
| 5 | * Copyright (c) 2000,2001 Axis Communications AB | 5 | * Copyright (c) 2000,2007 Axis Communications AB |
| 6 | * | 6 | * |
| 7 | * Authors: Bjorn Wesen (bjornw@axis.com) | 7 | * Authors: Bjorn Wesen (bjornw@axis.com) |
| 8 | * | 8 | * |
| @@ -92,14 +92,16 @@ skip: | |||
| 92 | asmlinkage void do_IRQ(int irq, struct pt_regs * regs) | 92 | asmlinkage void do_IRQ(int irq, struct pt_regs * regs) |
| 93 | { | 93 | { |
| 94 | unsigned long sp; | 94 | unsigned long sp; |
| 95 | struct pt_regs *old_regs = set_irq_regs(regs); | ||
| 95 | irq_enter(); | 96 | irq_enter(); |
| 96 | sp = rdsp(); | 97 | sp = rdsp(); |
| 97 | if (unlikely((sp & (PAGE_SIZE - 1)) < (PAGE_SIZE/8))) { | 98 | if (unlikely((sp & (PAGE_SIZE - 1)) < (PAGE_SIZE/8))) { |
| 98 | printk("do_IRQ: stack overflow: %lX\n", sp); | 99 | printk("do_IRQ: stack overflow: %lX\n", sp); |
| 99 | show_stack(NULL, (unsigned long *)sp); | 100 | show_stack(NULL, (unsigned long *)sp); |
| 100 | } | 101 | } |
| 101 | __do_IRQ(irq, regs); | 102 | __do_IRQ(irq); |
| 102 | irq_exit(); | 103 | irq_exit(); |
| 104 | set_irq_regs(old_regs); | ||
| 103 | } | 105 | } |
| 104 | 106 | ||
| 105 | void weird_irq(void) | 107 | void weird_irq(void) |
diff --git a/arch/cris/kernel/process.c b/arch/cris/kernel/process.c index 123451c44154..9ca558fc5bc8 100644 --- a/arch/cris/kernel/process.c +++ b/arch/cris/kernel/process.c | |||
| @@ -195,6 +195,11 @@ EXPORT_SYMBOL(enable_hlt); | |||
| 195 | */ | 195 | */ |
| 196 | void (*pm_idle)(void); | 196 | void (*pm_idle)(void); |
| 197 | 197 | ||
| 198 | extern void default_idle(void); | ||
| 199 | |||
| 200 | void (*pm_power_off)(void); | ||
| 201 | EXPORT_SYMBOL(pm_power_off); | ||
| 202 | |||
| 198 | /* | 203 | /* |
| 199 | * The idle thread. There's no useful work to be | 204 | * The idle thread. There's no useful work to be |
| 200 | * done, so just try to conserve power and have a | 205 | * done, so just try to conserve power and have a |
diff --git a/arch/cris/kernel/ptrace.c b/arch/cris/kernel/ptrace.c index 1085d037027b..3ccd20e85dce 100644 --- a/arch/cris/kernel/ptrace.c +++ b/arch/cris/kernel/ptrace.c | |||
| @@ -81,13 +81,13 @@ | |||
| 81 | /* notification of userspace execution resumption | 81 | /* notification of userspace execution resumption |
| 82 | * - triggered by current->work.notify_resume | 82 | * - triggered by current->work.notify_resume |
| 83 | */ | 83 | */ |
| 84 | extern int do_signal(int canrestart, sigset_t *oldset, struct pt_regs *regs); | 84 | extern int do_signal(int canrestart, struct pt_regs *regs); |
| 85 | 85 | ||
| 86 | 86 | ||
| 87 | void do_notify_resume(int canrestart, sigset_t *oldset, struct pt_regs *regs, | 87 | void do_notify_resume(int canrestart, struct pt_regs *regs, |
| 88 | __u32 thread_info_flags ) | 88 | __u32 thread_info_flags ) |
| 89 | { | 89 | { |
| 90 | /* deal with pending signal delivery */ | 90 | /* deal with pending signal delivery */ |
| 91 | if (thread_info_flags & _TIF_SIGPENDING) | 91 | if (thread_info_flags & _TIF_SIGPENDING) |
| 92 | do_signal(canrestart,oldset,regs); | 92 | do_signal(canrestart,regs); |
| 93 | } | 93 | } |
diff --git a/arch/cris/kernel/sys_cris.c b/arch/cris/kernel/sys_cris.c index 514359b8122e..8b9984197edc 100644 --- a/arch/cris/kernel/sys_cris.c +++ b/arch/cris/kernel/sys_cris.c | |||
| @@ -13,6 +13,7 @@ | |||
| 13 | #include <linux/sched.h> | 13 | #include <linux/sched.h> |
| 14 | #include <linux/syscalls.h> | 14 | #include <linux/syscalls.h> |
| 15 | #include <linux/mm.h> | 15 | #include <linux/mm.h> |
| 16 | #include <linux/fs.h> | ||
| 16 | #include <linux/smp.h> | 17 | #include <linux/smp.h> |
| 17 | #include <linux/smp_lock.h> | 18 | #include <linux/smp_lock.h> |
| 18 | #include <linux/sem.h> | 19 | #include <linux/sem.h> |
diff --git a/arch/cris/kernel/time.c b/arch/cris/kernel/time.c index acfd04559405..7a2cc7efbcf8 100644 --- a/arch/cris/kernel/time.c +++ b/arch/cris/kernel/time.c | |||
| @@ -171,10 +171,6 @@ get_cmos_time(void) | |||
| 171 | mon = CMOS_READ(RTC_MONTH); | 171 | mon = CMOS_READ(RTC_MONTH); |
| 172 | year = CMOS_READ(RTC_YEAR); | 172 | year = CMOS_READ(RTC_YEAR); |
| 173 | 173 | ||
| 174 | printk(KERN_DEBUG | ||
| 175 | "rtc: sec 0x%x min 0x%x hour 0x%x day 0x%x mon 0x%x year 0x%x\n", | ||
| 176 | sec, min, hour, day, mon, year); | ||
| 177 | |||
| 178 | BCD_TO_BIN(sec); | 174 | BCD_TO_BIN(sec); |
| 179 | BCD_TO_BIN(min); | 175 | BCD_TO_BIN(min); |
| 180 | BCD_TO_BIN(hour); | 176 | BCD_TO_BIN(hour); |
| @@ -207,12 +203,12 @@ void | |||
| 207 | cris_do_profile(struct pt_regs* regs) | 203 | cris_do_profile(struct pt_regs* regs) |
| 208 | { | 204 | { |
| 209 | 205 | ||
| 210 | #if CONFIG_SYSTEM_PROFILER | 206 | #ifdef CONFIG_SYSTEM_PROFILER |
| 211 | cris_profile_sample(regs); | 207 | cris_profile_sample(regs); |
| 212 | #endif | 208 | #endif |
| 213 | 209 | ||
| 214 | #if CONFIG_PROFILING | 210 | #ifdef CONFIG_PROFILING |
| 215 | profile_tick(CPU_PROFILING, regs); | 211 | profile_tick(CPU_PROFILING); |
| 216 | #endif | 212 | #endif |
| 217 | } | 213 | } |
| 218 | 214 | ||
diff --git a/arch/ia64/kernel/efi.c b/arch/ia64/kernel/efi.c index 5181bf551f3c..8e8f8b6193ee 100644 --- a/arch/ia64/kernel/efi.c +++ b/arch/ia64/kernel/efi.c | |||
| @@ -1113,7 +1113,7 @@ efi_initialize_iomem_resources(struct resource *code_resource, | |||
| 1113 | if (md->num_pages == 0) /* should not happen */ | 1113 | if (md->num_pages == 0) /* should not happen */ |
| 1114 | continue; | 1114 | continue; |
| 1115 | 1115 | ||
| 1116 | flags = IORESOURCE_MEM; | 1116 | flags = IORESOURCE_MEM | IORESOURCE_BUSY; |
| 1117 | switch (md->type) { | 1117 | switch (md->type) { |
| 1118 | 1118 | ||
| 1119 | case EFI_MEMORY_MAPPED_IO: | 1119 | case EFI_MEMORY_MAPPED_IO: |
| @@ -1135,12 +1135,11 @@ efi_initialize_iomem_resources(struct resource *code_resource, | |||
| 1135 | 1135 | ||
| 1136 | case EFI_ACPI_MEMORY_NVS: | 1136 | case EFI_ACPI_MEMORY_NVS: |
| 1137 | name = "ACPI Non-volatile Storage"; | 1137 | name = "ACPI Non-volatile Storage"; |
| 1138 | flags |= IORESOURCE_BUSY; | ||
| 1139 | break; | 1138 | break; |
| 1140 | 1139 | ||
| 1141 | case EFI_UNUSABLE_MEMORY: | 1140 | case EFI_UNUSABLE_MEMORY: |
| 1142 | name = "reserved"; | 1141 | name = "reserved"; |
| 1143 | flags |= IORESOURCE_BUSY | IORESOURCE_DISABLED; | 1142 | flags |= IORESOURCE_DISABLED; |
| 1144 | break; | 1143 | break; |
| 1145 | 1144 | ||
| 1146 | case EFI_RESERVED_TYPE: | 1145 | case EFI_RESERVED_TYPE: |
| @@ -1149,7 +1148,6 @@ efi_initialize_iomem_resources(struct resource *code_resource, | |||
| 1149 | case EFI_ACPI_RECLAIM_MEMORY: | 1148 | case EFI_ACPI_RECLAIM_MEMORY: |
| 1150 | default: | 1149 | default: |
| 1151 | name = "reserved"; | 1150 | name = "reserved"; |
| 1152 | flags |= IORESOURCE_BUSY; | ||
| 1153 | break; | 1151 | break; |
| 1154 | } | 1152 | } |
| 1155 | 1153 | ||
diff --git a/arch/mips/Kconfig b/arch/mips/Kconfig index 2c7d6c240b73..2f2ce0c28bc0 100644 --- a/arch/mips/Kconfig +++ b/arch/mips/Kconfig | |||
| @@ -361,10 +361,10 @@ config QEMU | |||
| 361 | select PCSPEAKER | 361 | select PCSPEAKER |
| 362 | select SWAP_IO_SPACE | 362 | select SWAP_IO_SPACE |
| 363 | select SYS_HAS_CPU_MIPS32_R1 | 363 | select SYS_HAS_CPU_MIPS32_R1 |
| 364 | select SYS_HAS_EARLY_PRINTK | ||
| 364 | select SYS_SUPPORTS_32BIT_KERNEL | 365 | select SYS_SUPPORTS_32BIT_KERNEL |
| 365 | select SYS_SUPPORTS_BIG_ENDIAN | 366 | select SYS_SUPPORTS_BIG_ENDIAN |
| 366 | select SYS_SUPPORTS_LITTLE_ENDIAN | 367 | select SYS_SUPPORTS_LITTLE_ENDIAN |
| 367 | select ARCH_SPARSEMEM_ENABLE | ||
| 368 | select GENERIC_HARDIRQS_NO__DO_IRQ | 368 | select GENERIC_HARDIRQS_NO__DO_IRQ |
| 369 | select NR_CPUS_DEFAULT_1 | 369 | select NR_CPUS_DEFAULT_1 |
| 370 | select SYS_SUPPORTS_SMP | 370 | select SYS_SUPPORTS_SMP |
| @@ -1409,7 +1409,6 @@ config MIPS_MT_SMP | |||
| 1409 | depends on SYS_SUPPORTS_MULTITHREADING | 1409 | depends on SYS_SUPPORTS_MULTITHREADING |
| 1410 | select CPU_MIPSR2_IRQ_VI | 1410 | select CPU_MIPSR2_IRQ_VI |
| 1411 | select CPU_MIPSR2_IRQ_EI | 1411 | select CPU_MIPSR2_IRQ_EI |
| 1412 | select CPU_MIPSR2_SRS | ||
| 1413 | select MIPS_MT | 1412 | select MIPS_MT |
| 1414 | select NR_CPUS_DEFAULT_2 | 1413 | select NR_CPUS_DEFAULT_2 |
| 1415 | select SMP | 1414 | select SMP |
| @@ -1426,7 +1425,6 @@ config MIPS_MT_SMTC | |||
| 1426 | select GENERIC_CLOCKEVENTS_BROADCAST | 1425 | select GENERIC_CLOCKEVENTS_BROADCAST |
| 1427 | select CPU_MIPSR2_IRQ_VI | 1426 | select CPU_MIPSR2_IRQ_VI |
| 1428 | select CPU_MIPSR2_IRQ_EI | 1427 | select CPU_MIPSR2_IRQ_EI |
| 1429 | select CPU_MIPSR2_SRS | ||
| 1430 | select MIPS_MT | 1428 | select MIPS_MT |
| 1431 | select NR_CPUS_DEFAULT_8 | 1429 | select NR_CPUS_DEFAULT_8 |
| 1432 | select SMP | 1430 | select SMP |
| @@ -1453,7 +1451,6 @@ config MIPS_VPE_LOADER | |||
| 1453 | depends on SYS_SUPPORTS_MULTITHREADING | 1451 | depends on SYS_SUPPORTS_MULTITHREADING |
| 1454 | select CPU_MIPSR2_IRQ_VI | 1452 | select CPU_MIPSR2_IRQ_VI |
| 1455 | select CPU_MIPSR2_IRQ_EI | 1453 | select CPU_MIPSR2_IRQ_EI |
| 1456 | select CPU_MIPSR2_SRS | ||
| 1457 | select MIPS_MT | 1454 | select MIPS_MT |
| 1458 | help | 1455 | help |
| 1459 | Includes a loader for loading an elf relocatable object | 1456 | Includes a loader for loading an elf relocatable object |
| @@ -1582,12 +1579,6 @@ config CPU_MIPSR2_IRQ_VI | |||
| 1582 | config CPU_MIPSR2_IRQ_EI | 1579 | config CPU_MIPSR2_IRQ_EI |
| 1583 | bool | 1580 | bool |
| 1584 | 1581 | ||
| 1585 | # | ||
| 1586 | # Shadow registers are an R2 feature | ||
| 1587 | # | ||
| 1588 | config CPU_MIPSR2_SRS | ||
| 1589 | bool | ||
| 1590 | |||
| 1591 | config CPU_HAS_SYNC | 1582 | config CPU_HAS_SYNC |
| 1592 | bool | 1583 | bool |
| 1593 | depends on !CPU_R3000 | 1584 | depends on !CPU_R3000 |
diff --git a/arch/mips/Makefile b/arch/mips/Makefile index 23c17755eca0..a1f8d8b96b03 100644 --- a/arch/mips/Makefile +++ b/arch/mips/Makefile | |||
| @@ -44,7 +44,7 @@ endif | |||
| 44 | 44 | ||
| 45 | ifneq ($(SUBARCH),$(ARCH)) | 45 | ifneq ($(SUBARCH),$(ARCH)) |
| 46 | ifeq ($(CROSS_COMPILE),) | 46 | ifeq ($(CROSS_COMPILE),) |
| 47 | CROSS_COMPILE := $(call cc-cross-prefix, $(tool-archpref)-linux- $(tool-archpref)-gnu-linux- $(tool-archpref)-unknown-gnu-linux-) | 47 | CROSS_COMPILE := $(call cc-cross-prefix, $(tool-archpref)-linux- $(tool-archpref)-linux-gnu- $(tool-archpref)-unknown-linux-gnu-) |
| 48 | endif | 48 | endif |
| 49 | endif | 49 | endif |
| 50 | 50 | ||
diff --git a/arch/mips/kernel/cevt-bcm1480.c b/arch/mips/kernel/cevt-bcm1480.c index 21e6d63eb4d1..0a57f86945f1 100644 --- a/arch/mips/kernel/cevt-bcm1480.c +++ b/arch/mips/kernel/cevt-bcm1480.c | |||
| @@ -75,6 +75,7 @@ static int sibyte_next_event(unsigned long delta, struct clock_event_device *cd) | |||
| 75 | cfg = IOADDR(A_SCD_TIMER_REGISTER(cpu, R_SCD_TIMER_CFG)); | 75 | cfg = IOADDR(A_SCD_TIMER_REGISTER(cpu, R_SCD_TIMER_CFG)); |
| 76 | init = IOADDR(A_SCD_TIMER_REGISTER(cpu, R_SCD_TIMER_INIT)); | 76 | init = IOADDR(A_SCD_TIMER_REGISTER(cpu, R_SCD_TIMER_INIT)); |
| 77 | 77 | ||
| 78 | __raw_writeq(0, cfg); | ||
| 78 | __raw_writeq(delta - 1, init); | 79 | __raw_writeq(delta - 1, init); |
| 79 | __raw_writeq(M_SCD_TIMER_ENABLE, cfg); | 80 | __raw_writeq(M_SCD_TIMER_ENABLE, cfg); |
| 80 | 81 | ||
| @@ -122,7 +123,7 @@ void __cpuinit sb1480_clockevent_init(void) | |||
| 122 | CLOCK_EVT_FEAT_ONESHOT; | 123 | CLOCK_EVT_FEAT_ONESHOT; |
| 123 | clockevent_set_clock(cd, V_SCD_TIMER_FREQ); | 124 | clockevent_set_clock(cd, V_SCD_TIMER_FREQ); |
| 124 | cd->max_delta_ns = clockevent_delta2ns(0x7fffff, cd); | 125 | cd->max_delta_ns = clockevent_delta2ns(0x7fffff, cd); |
| 125 | cd->min_delta_ns = clockevent_delta2ns(1, cd); | 126 | cd->min_delta_ns = clockevent_delta2ns(2, cd); |
| 126 | cd->rating = 200; | 127 | cd->rating = 200; |
| 127 | cd->irq = irq; | 128 | cd->irq = irq; |
| 128 | cd->cpumask = cpumask_of_cpu(cpu); | 129 | cd->cpumask = cpumask_of_cpu(cpu); |
| @@ -143,7 +144,10 @@ void __cpuinit sb1480_clockevent_init(void) | |||
| 143 | 144 | ||
| 144 | action->handler = sibyte_counter_handler; | 145 | action->handler = sibyte_counter_handler; |
| 145 | action->flags = IRQF_DISABLED | IRQF_PERCPU; | 146 | action->flags = IRQF_DISABLED | IRQF_PERCPU; |
| 147 | action->mask = cpumask_of_cpu(cpu); | ||
| 146 | action->name = name; | 148 | action->name = name; |
| 147 | action->dev_id = cd; | 149 | action->dev_id = cd; |
| 150 | |||
| 151 | irq_set_affinity(irq, cpumask_of_cpu(cpu)); | ||
| 148 | setup_irq(irq, action); | 152 | setup_irq(irq, action); |
| 149 | } | 153 | } |
diff --git a/arch/mips/kernel/cevt-sb1250.c b/arch/mips/kernel/cevt-sb1250.c index e2029d0fc39b..63ac3ad462bc 100644 --- a/arch/mips/kernel/cevt-sb1250.c +++ b/arch/mips/kernel/cevt-sb1250.c | |||
| @@ -73,6 +73,7 @@ static int sibyte_next_event(unsigned long delta, struct clock_event_device *cd) | |||
| 73 | cfg = IOADDR(A_SCD_TIMER_REGISTER(cpu, R_SCD_TIMER_CFG)); | 73 | cfg = IOADDR(A_SCD_TIMER_REGISTER(cpu, R_SCD_TIMER_CFG)); |
| 74 | init = IOADDR(A_SCD_TIMER_REGISTER(cpu, R_SCD_TIMER_INIT)); | 74 | init = IOADDR(A_SCD_TIMER_REGISTER(cpu, R_SCD_TIMER_INIT)); |
| 75 | 75 | ||
| 76 | __raw_writeq(0, cfg); | ||
| 76 | __raw_writeq(delta - 1, init); | 77 | __raw_writeq(delta - 1, init); |
| 77 | __raw_writeq(M_SCD_TIMER_ENABLE, cfg); | 78 | __raw_writeq(M_SCD_TIMER_ENABLE, cfg); |
| 78 | 79 | ||
| @@ -121,7 +122,7 @@ void __cpuinit sb1250_clockevent_init(void) | |||
| 121 | CLOCK_EVT_FEAT_ONESHOT; | 122 | CLOCK_EVT_FEAT_ONESHOT; |
| 122 | clockevent_set_clock(cd, V_SCD_TIMER_FREQ); | 123 | clockevent_set_clock(cd, V_SCD_TIMER_FREQ); |
| 123 | cd->max_delta_ns = clockevent_delta2ns(0x7fffff, cd); | 124 | cd->max_delta_ns = clockevent_delta2ns(0x7fffff, cd); |
| 124 | cd->min_delta_ns = clockevent_delta2ns(1, cd); | 125 | cd->min_delta_ns = clockevent_delta2ns(2, cd); |
| 125 | cd->rating = 200; | 126 | cd->rating = 200; |
| 126 | cd->irq = irq; | 127 | cd->irq = irq; |
| 127 | cd->cpumask = cpumask_of_cpu(cpu); | 128 | cd->cpumask = cpumask_of_cpu(cpu); |
| @@ -142,7 +143,10 @@ void __cpuinit sb1250_clockevent_init(void) | |||
| 142 | 143 | ||
| 143 | action->handler = sibyte_counter_handler; | 144 | action->handler = sibyte_counter_handler; |
| 144 | action->flags = IRQF_DISABLED | IRQF_PERCPU; | 145 | action->flags = IRQF_DISABLED | IRQF_PERCPU; |
| 146 | action->mask = cpumask_of_cpu(cpu); | ||
| 145 | action->name = name; | 147 | action->name = name; |
| 146 | action->dev_id = cd; | 148 | action->dev_id = cd; |
| 149 | |||
| 150 | irq_set_affinity(irq, cpumask_of_cpu(cpu)); | ||
| 147 | setup_irq(irq, action); | 151 | setup_irq(irq, action); |
| 148 | } | 152 | } |
diff --git a/arch/mips/kernel/cpu-probe.c b/arch/mips/kernel/cpu-probe.c index c8c47a2d1972..5c2794391bf5 100644 --- a/arch/mips/kernel/cpu-probe.c +++ b/arch/mips/kernel/cpu-probe.c | |||
| @@ -943,6 +943,11 @@ __init void cpu_probe(void) | |||
| 943 | } | 943 | } |
| 944 | 944 | ||
| 945 | __cpu_name[cpu] = cpu_to_name(c); | 945 | __cpu_name[cpu] = cpu_to_name(c); |
| 946 | |||
| 947 | if (cpu_has_mips_r2) | ||
| 948 | c->srsets = ((read_c0_srsctl() >> 26) & 0x0f) + 1; | ||
| 949 | else | ||
| 950 | c->srsets = 1; | ||
| 946 | } | 951 | } |
| 947 | 952 | ||
| 948 | __init void cpu_report(void) | 953 | __init void cpu_report(void) |
diff --git a/arch/mips/kernel/csrc-sb1250.c b/arch/mips/kernel/csrc-sb1250.c index ebb16e668877..92212bbb8e45 100644 --- a/arch/mips/kernel/csrc-sb1250.c +++ b/arch/mips/kernel/csrc-sb1250.c | |||
| @@ -43,7 +43,7 @@ static cycle_t sb1250_hpt_read(void) | |||
| 43 | } | 43 | } |
| 44 | 44 | ||
| 45 | struct clocksource bcm1250_clocksource = { | 45 | struct clocksource bcm1250_clocksource = { |
| 46 | .name = "MIPS", | 46 | .name = "bcm1250-counter-3", |
| 47 | .rating = 200, | 47 | .rating = 200, |
| 48 | .read = sb1250_hpt_read, | 48 | .read = sb1250_hpt_read, |
| 49 | .mask = CLOCKSOURCE_MASK(23), | 49 | .mask = CLOCKSOURCE_MASK(23), |
diff --git a/arch/mips/kernel/genex.S b/arch/mips/kernel/genex.S index c0f19d638b98..e76a76bf0b3d 100644 --- a/arch/mips/kernel/genex.S +++ b/arch/mips/kernel/genex.S | |||
| @@ -146,7 +146,7 @@ NESTED(handle_int, PT_SIZE, sp) | |||
| 146 | and k0, ST0_IEP | 146 | and k0, ST0_IEP |
| 147 | bnez k0, 1f | 147 | bnez k0, 1f |
| 148 | 148 | ||
| 149 | mfc0 k0, EP0_EPC | 149 | mfc0 k0, CP0_EPC |
| 150 | .set noreorder | 150 | .set noreorder |
| 151 | j k0 | 151 | j k0 |
| 152 | rfe | 152 | rfe |
diff --git a/arch/mips/kernel/irixsig.c b/arch/mips/kernel/irixsig.c index 33506ff25910..5b10ac133ec8 100644 --- a/arch/mips/kernel/irixsig.c +++ b/arch/mips/kernel/irixsig.c | |||
| @@ -430,6 +430,7 @@ asmlinkage int irix_sigprocmask(int how, irix_sigset_t __user *new, | |||
| 430 | break; | 430 | break; |
| 431 | 431 | ||
| 432 | default: | 432 | default: |
| 433 | spin_unlock_irq(¤t->sighand->siglock); | ||
| 433 | return -EINVAL; | 434 | return -EINVAL; |
| 434 | } | 435 | } |
| 435 | recalc_sigpending(); | 436 | recalc_sigpending(); |
diff --git a/arch/mips/kernel/irq-rm7000.c b/arch/mips/kernel/irq-rm7000.c index 250732883488..971adf6ef4f4 100644 --- a/arch/mips/kernel/irq-rm7000.c +++ b/arch/mips/kernel/irq-rm7000.c | |||
| @@ -44,5 +44,5 @@ void __init rm7k_cpu_irq_init(void) | |||
| 44 | 44 | ||
| 45 | for (i = base; i < base + 4; i++) | 45 | for (i = base; i < base + 4; i++) |
| 46 | set_irq_chip_and_handler(i, &rm7k_irq_controller, | 46 | set_irq_chip_and_handler(i, &rm7k_irq_controller, |
| 47 | handle_level_irq); | 47 | handle_percpu_irq); |
| 48 | } | 48 | } |
diff --git a/arch/mips/kernel/irq-rm9000.c b/arch/mips/kernel/irq-rm9000.c index ae83d2df6f31..7b04583bd800 100644 --- a/arch/mips/kernel/irq-rm9000.c +++ b/arch/mips/kernel/irq-rm9000.c | |||
| @@ -104,5 +104,5 @@ void __init rm9k_cpu_irq_init(void) | |||
| 104 | 104 | ||
| 105 | rm9000_perfcount_irq = base + 1; | 105 | rm9000_perfcount_irq = base + 1; |
| 106 | set_irq_chip_and_handler(rm9000_perfcount_irq, &rm9k_perfcounter_irq, | 106 | set_irq_chip_and_handler(rm9000_perfcount_irq, &rm9k_perfcounter_irq, |
| 107 | handle_level_irq); | 107 | handle_percpu_irq); |
| 108 | } | 108 | } |
diff --git a/arch/mips/kernel/irq_cpu.c b/arch/mips/kernel/irq_cpu.c index 7b66e03b5899..0ee2567b780d 100644 --- a/arch/mips/kernel/irq_cpu.c +++ b/arch/mips/kernel/irq_cpu.c | |||
| @@ -116,5 +116,5 @@ void __init mips_cpu_irq_init(void) | |||
| 116 | 116 | ||
| 117 | for (i = irq_base + 2; i < irq_base + 8; i++) | 117 | for (i = irq_base + 2; i < irq_base + 8; i++) |
| 118 | set_irq_chip_and_handler(i, &mips_cpu_irq_controller, | 118 | set_irq_chip_and_handler(i, &mips_cpu_irq_controller, |
| 119 | handle_level_irq); | 119 | handle_percpu_irq); |
| 120 | } | 120 | } |
diff --git a/arch/mips/kernel/proc.c b/arch/mips/kernel/proc.c index efd2d1314123..6e6e947cce1e 100644 --- a/arch/mips/kernel/proc.c +++ b/arch/mips/kernel/proc.c | |||
| @@ -60,6 +60,8 @@ static int show_cpuinfo(struct seq_file *m, void *v) | |||
| 60 | cpu_has_dsp ? " dsp" : "", | 60 | cpu_has_dsp ? " dsp" : "", |
| 61 | cpu_has_mipsmt ? " mt" : "" | 61 | cpu_has_mipsmt ? " mt" : "" |
| 62 | ); | 62 | ); |
| 63 | seq_printf(m, "shadow register sets\t: %d\n", | ||
| 64 | cpu_data[n].srsets); | ||
| 63 | 65 | ||
| 64 | sprintf(fmt, "VCE%%c exceptions\t\t: %s\n", | 66 | sprintf(fmt, "VCE%%c exceptions\t\t: %s\n", |
| 65 | cpu_has_vce ? "%u" : "not available"); | 67 | cpu_has_vce ? "%u" : "not available"); |
diff --git a/arch/mips/kernel/scall64-n32.S b/arch/mips/kernel/scall64-n32.S index 118be24224f2..01993ec3368b 100644 --- a/arch/mips/kernel/scall64-n32.S +++ b/arch/mips/kernel/scall64-n32.S | |||
| @@ -293,7 +293,7 @@ EXPORT(sysn32_call_table) | |||
| 293 | PTR sys_ni_syscall /* 6170, was get_kernel_syms */ | 293 | PTR sys_ni_syscall /* 6170, was get_kernel_syms */ |
| 294 | PTR sys_ni_syscall /* was query_module */ | 294 | PTR sys_ni_syscall /* was query_module */ |
| 295 | PTR sys_quotactl | 295 | PTR sys_quotactl |
| 296 | PTR sys_nfsservctl | 296 | PTR compat_sys_nfsservctl |
| 297 | PTR sys_ni_syscall /* res. for getpmsg */ | 297 | PTR sys_ni_syscall /* res. for getpmsg */ |
| 298 | PTR sys_ni_syscall /* 6175 for putpmsg */ | 298 | PTR sys_ni_syscall /* 6175 for putpmsg */ |
| 299 | PTR sys_ni_syscall /* res. for afs_syscall */ | 299 | PTR sys_ni_syscall /* res. for afs_syscall */ |
diff --git a/arch/mips/kernel/traps.c b/arch/mips/kernel/traps.c index fa500787152d..23e73d0650a3 100644 --- a/arch/mips/kernel/traps.c +++ b/arch/mips/kernel/traps.c | |||
| @@ -1100,59 +1100,6 @@ void *set_except_vector(int n, void *addr) | |||
| 1100 | return (void *)old_handler; | 1100 | return (void *)old_handler; |
| 1101 | } | 1101 | } |
| 1102 | 1102 | ||
| 1103 | #ifdef CONFIG_CPU_MIPSR2_SRS | ||
| 1104 | /* | ||
| 1105 | * MIPSR2 shadow register set allocation | ||
| 1106 | * FIXME: SMP... | ||
| 1107 | */ | ||
| 1108 | |||
| 1109 | static struct shadow_registers { | ||
| 1110 | /* | ||
| 1111 | * Number of shadow register sets supported | ||
| 1112 | */ | ||
| 1113 | unsigned long sr_supported; | ||
| 1114 | /* | ||
| 1115 | * Bitmap of allocated shadow registers | ||
| 1116 | */ | ||
| 1117 | unsigned long sr_allocated; | ||
| 1118 | } shadow_registers; | ||
| 1119 | |||
| 1120 | static void mips_srs_init(void) | ||
| 1121 | { | ||
| 1122 | shadow_registers.sr_supported = ((read_c0_srsctl() >> 26) & 0x0f) + 1; | ||
| 1123 | printk(KERN_INFO "%ld MIPSR2 register sets available\n", | ||
| 1124 | shadow_registers.sr_supported); | ||
| 1125 | shadow_registers.sr_allocated = 1; /* Set 0 used by kernel */ | ||
| 1126 | } | ||
| 1127 | |||
| 1128 | int mips_srs_max(void) | ||
| 1129 | { | ||
| 1130 | return shadow_registers.sr_supported; | ||
| 1131 | } | ||
| 1132 | |||
| 1133 | int mips_srs_alloc(void) | ||
| 1134 | { | ||
| 1135 | struct shadow_registers *sr = &shadow_registers; | ||
| 1136 | int set; | ||
| 1137 | |||
| 1138 | again: | ||
| 1139 | set = find_first_zero_bit(&sr->sr_allocated, sr->sr_supported); | ||
| 1140 | if (set >= sr->sr_supported) | ||
| 1141 | return -1; | ||
| 1142 | |||
| 1143 | if (test_and_set_bit(set, &sr->sr_allocated)) | ||
| 1144 | goto again; | ||
| 1145 | |||
| 1146 | return set; | ||
| 1147 | } | ||
| 1148 | |||
| 1149 | void mips_srs_free(int set) | ||
| 1150 | { | ||
| 1151 | struct shadow_registers *sr = &shadow_registers; | ||
| 1152 | |||
| 1153 | clear_bit(set, &sr->sr_allocated); | ||
| 1154 | } | ||
| 1155 | |||
| 1156 | static asmlinkage void do_default_vi(void) | 1103 | static asmlinkage void do_default_vi(void) |
| 1157 | { | 1104 | { |
| 1158 | show_regs(get_irq_regs()); | 1105 | show_regs(get_irq_regs()); |
| @@ -1163,6 +1110,7 @@ static void *set_vi_srs_handler(int n, vi_handler_t addr, int srs) | |||
| 1163 | { | 1110 | { |
| 1164 | unsigned long handler; | 1111 | unsigned long handler; |
| 1165 | unsigned long old_handler = vi_handlers[n]; | 1112 | unsigned long old_handler = vi_handlers[n]; |
| 1113 | int srssets = current_cpu_data.srsets; | ||
| 1166 | u32 *w; | 1114 | u32 *w; |
| 1167 | unsigned char *b; | 1115 | unsigned char *b; |
| 1168 | 1116 | ||
| @@ -1178,7 +1126,7 @@ static void *set_vi_srs_handler(int n, vi_handler_t addr, int srs) | |||
| 1178 | 1126 | ||
| 1179 | b = (unsigned char *)(ebase + 0x200 + n*VECTORSPACING); | 1127 | b = (unsigned char *)(ebase + 0x200 + n*VECTORSPACING); |
| 1180 | 1128 | ||
| 1181 | if (srs >= mips_srs_max()) | 1129 | if (srs >= srssets) |
| 1182 | panic("Shadow register set %d not supported", srs); | 1130 | panic("Shadow register set %d not supported", srs); |
| 1183 | 1131 | ||
| 1184 | if (cpu_has_veic) { | 1132 | if (cpu_has_veic) { |
| @@ -1186,7 +1134,7 @@ static void *set_vi_srs_handler(int n, vi_handler_t addr, int srs) | |||
| 1186 | board_bind_eic_interrupt(n, srs); | 1134 | board_bind_eic_interrupt(n, srs); |
| 1187 | } else if (cpu_has_vint) { | 1135 | } else if (cpu_has_vint) { |
| 1188 | /* SRSMap is only defined if shadow sets are implemented */ | 1136 | /* SRSMap is only defined if shadow sets are implemented */ |
| 1189 | if (mips_srs_max() > 1) | 1137 | if (srssets > 1) |
| 1190 | change_c0_srsmap(0xf << n*4, srs << n*4); | 1138 | change_c0_srsmap(0xf << n*4, srs << n*4); |
| 1191 | } | 1139 | } |
| 1192 | 1140 | ||
| @@ -1253,14 +1201,6 @@ void *set_vi_handler(int n, vi_handler_t addr) | |||
| 1253 | return set_vi_srs_handler(n, addr, 0); | 1201 | return set_vi_srs_handler(n, addr, 0); |
| 1254 | } | 1202 | } |
| 1255 | 1203 | ||
| 1256 | #else | ||
| 1257 | |||
| 1258 | static inline void mips_srs_init(void) | ||
| 1259 | { | ||
| 1260 | } | ||
| 1261 | |||
| 1262 | #endif /* CONFIG_CPU_MIPSR2_SRS */ | ||
| 1263 | |||
| 1264 | /* | 1204 | /* |
| 1265 | * This is used by native signal handling | 1205 | * This is used by native signal handling |
| 1266 | */ | 1206 | */ |
| @@ -1503,8 +1443,6 @@ void __init trap_init(void) | |||
| 1503 | else | 1443 | else |
| 1504 | ebase = CAC_BASE; | 1444 | ebase = CAC_BASE; |
| 1505 | 1445 | ||
| 1506 | mips_srs_init(); | ||
| 1507 | |||
| 1508 | per_cpu_trap_init(); | 1446 | per_cpu_trap_init(); |
| 1509 | 1447 | ||
| 1510 | /* | 1448 | /* |
diff --git a/arch/mips/kernel/vpe.c b/arch/mips/kernel/vpe.c index 436a64ff3989..38bd33fa2a23 100644 --- a/arch/mips/kernel/vpe.c +++ b/arch/mips/kernel/vpe.c | |||
| @@ -1003,6 +1003,7 @@ static void cleanup_tc(struct tc *tc) | |||
| 1003 | write_tc_c0_tcstatus(tmp); | 1003 | write_tc_c0_tcstatus(tmp); |
| 1004 | 1004 | ||
| 1005 | write_tc_c0_tchalt(TCHALT_H); | 1005 | write_tc_c0_tchalt(TCHALT_H); |
| 1006 | mips_ihb(); | ||
| 1006 | 1007 | ||
| 1007 | /* bind it to anything other than VPE1 */ | 1008 | /* bind it to anything other than VPE1 */ |
| 1008 | // write_tc_c0_tcbind(read_tc_c0_tcbind() & ~TCBIND_CURVPE); // | TCBIND_CURVPE | 1009 | // write_tc_c0_tcbind(read_tc_c0_tcbind() & ~TCBIND_CURVPE); // | TCBIND_CURVPE |
| @@ -1235,9 +1236,12 @@ int vpe_free(vpe_handle vpe) | |||
| 1235 | settc(t->index); | 1236 | settc(t->index); |
| 1236 | write_vpe_c0_vpeconf0(read_vpe_c0_vpeconf0() & ~VPECONF0_VPA); | 1237 | write_vpe_c0_vpeconf0(read_vpe_c0_vpeconf0() & ~VPECONF0_VPA); |
| 1237 | 1238 | ||
| 1238 | /* mark the TC unallocated and halt'ed */ | 1239 | /* halt the TC */ |
| 1239 | write_tc_c0_tcstatus(read_tc_c0_tcstatus() & ~TCSTATUS_A); | ||
| 1240 | write_tc_c0_tchalt(TCHALT_H); | 1240 | write_tc_c0_tchalt(TCHALT_H); |
| 1241 | mips_ihb(); | ||
| 1242 | |||
| 1243 | /* mark the TC unallocated */ | ||
| 1244 | write_tc_c0_tcstatus(read_tc_c0_tcstatus() & ~TCSTATUS_A); | ||
| 1241 | 1245 | ||
| 1242 | v->state = VPE_STATE_UNUSED; | 1246 | v->state = VPE_STATE_UNUSED; |
| 1243 | 1247 | ||
| @@ -1533,14 +1537,16 @@ static int __init vpe_module_init(void) | |||
| 1533 | t->pvpe = get_vpe(0); /* set the parent vpe */ | 1537 | t->pvpe = get_vpe(0); /* set the parent vpe */ |
| 1534 | } | 1538 | } |
| 1535 | 1539 | ||
| 1540 | /* halt the TC */ | ||
| 1541 | write_tc_c0_tchalt(TCHALT_H); | ||
| 1542 | mips_ihb(); | ||
| 1543 | |||
| 1536 | tmp = read_tc_c0_tcstatus(); | 1544 | tmp = read_tc_c0_tcstatus(); |
| 1537 | 1545 | ||
| 1538 | /* mark not activated and not dynamically allocatable */ | 1546 | /* mark not activated and not dynamically allocatable */ |
| 1539 | tmp &= ~(TCSTATUS_A | TCSTATUS_DA); | 1547 | tmp &= ~(TCSTATUS_A | TCSTATUS_DA); |
| 1540 | tmp |= TCSTATUS_IXMT; /* interrupt exempt */ | 1548 | tmp |= TCSTATUS_IXMT; /* interrupt exempt */ |
| 1541 | write_tc_c0_tcstatus(tmp); | 1549 | write_tc_c0_tcstatus(tmp); |
| 1542 | |||
| 1543 | write_tc_c0_tchalt(TCHALT_H); | ||
| 1544 | } | 1550 | } |
| 1545 | } | 1551 | } |
| 1546 | 1552 | ||
diff --git a/arch/mips/lasat/interrupt.c b/arch/mips/lasat/interrupt.c index ba9692be3564..cfeab669782f 100644 --- a/arch/mips/lasat/interrupt.c +++ b/arch/mips/lasat/interrupt.c | |||
| @@ -19,17 +19,14 @@ | |||
| 19 | * Lasat boards. | 19 | * Lasat boards. |
| 20 | */ | 20 | */ |
| 21 | #include <linux/init.h> | 21 | #include <linux/init.h> |
| 22 | #include <linux/irq.h> | ||
| 23 | #include <linux/sched.h> | ||
| 24 | #include <linux/slab.h> | ||
| 25 | #include <linux/interrupt.h> | 22 | #include <linux/interrupt.h> |
| 26 | #include <linux/kernel_stat.h> | 23 | #include <linux/irq.h> |
| 27 | 24 | ||
| 28 | #include <asm/bootinfo.h> | 25 | #include <asm/bootinfo.h> |
| 29 | #include <asm/irq_cpu.h> | 26 | #include <asm/irq_cpu.h> |
| 30 | #include <asm/lasat/lasatint.h> | 27 | #include <asm/lasat/lasatint.h> |
| 31 | #include <asm/time.h> | 28 | |
| 32 | #include <asm/gdb-stub.h> | 29 | #include <irq.h> |
| 33 | 30 | ||
| 34 | static volatile int *lasat_int_status; | 31 | static volatile int *lasat_int_status; |
| 35 | static volatile int *lasat_int_mask; | 32 | static volatile int *lasat_int_mask; |
| @@ -97,12 +94,18 @@ asmlinkage void plat_irq_dispatch(void) | |||
| 97 | 94 | ||
| 98 | /* if int_status == 0, then the interrupt has already been cleared */ | 95 | /* if int_status == 0, then the interrupt has already been cleared */ |
| 99 | if (int_status) { | 96 | if (int_status) { |
| 100 | irq = LASATINT_BASE + ls1bit32(int_status); | 97 | irq = LASAT_IRQ_BASE + ls1bit32(int_status); |
| 101 | 98 | ||
| 102 | do_IRQ(irq); | 99 | do_IRQ(irq); |
| 103 | } | 100 | } |
| 104 | } | 101 | } |
| 105 | 102 | ||
| 103 | static struct irqaction cascade = { | ||
| 104 | .handler = no_action, | ||
| 105 | .mask = CPU_MASK_NONE, | ||
| 106 | .name = "cascade", | ||
| 107 | }; | ||
| 108 | |||
| 106 | void __init arch_init_irq(void) | 109 | void __init arch_init_irq(void) |
| 107 | { | 110 | { |
| 108 | int i; | 111 | int i; |
| @@ -127,6 +130,9 @@ void __init arch_init_irq(void) | |||
| 127 | } | 130 | } |
| 128 | 131 | ||
| 129 | mips_cpu_irq_init(); | 132 | mips_cpu_irq_init(); |
| 130 | for (i = LASATINT_BASE; i <= LASATINT_END; i++) | 133 | |
| 134 | for (i = LASAT_IRQ_BASE; i <= LASAT_IRQ_END; i++) | ||
| 131 | set_irq_chip_and_handler(i, &lasat_irq_type, handle_level_irq); | 135 | set_irq_chip_and_handler(i, &lasat_irq_type, handle_level_irq); |
| 136 | |||
| 137 | setup_irq(LASAT_CASCADE_IRQ, &cascade); | ||
| 132 | } | 138 | } |
diff --git a/arch/mips/mm/c-r4k.c b/arch/mips/mm/c-r4k.c index 6806d58211b2..9355f1c9325f 100644 --- a/arch/mips/mm/c-r4k.c +++ b/arch/mips/mm/c-r4k.c | |||
| @@ -7,6 +7,7 @@ | |||
| 7 | * Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Ralf Baechle (ralf@gnu.org) | 7 | * Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Ralf Baechle (ralf@gnu.org) |
| 8 | * Copyright (C) 1999, 2000 Silicon Graphics, Inc. | 8 | * Copyright (C) 1999, 2000 Silicon Graphics, Inc. |
| 9 | */ | 9 | */ |
| 10 | #include <linux/hardirq.h> | ||
| 10 | #include <linux/init.h> | 11 | #include <linux/init.h> |
| 11 | #include <linux/highmem.h> | 12 | #include <linux/highmem.h> |
| 12 | #include <linux/kernel.h> | 13 | #include <linux/kernel.h> |
| @@ -507,7 +508,11 @@ static inline void local_r4k_flush_data_cache_page(void * addr) | |||
| 507 | 508 | ||
| 508 | static void r4k_flush_data_cache_page(unsigned long addr) | 509 | static void r4k_flush_data_cache_page(unsigned long addr) |
| 509 | { | 510 | { |
| 510 | r4k_on_each_cpu(local_r4k_flush_data_cache_page, (void *) addr, 1, 1); | 511 | if (in_atomic()) |
| 512 | local_r4k_flush_data_cache_page((void *)addr); | ||
| 513 | else | ||
| 514 | r4k_on_each_cpu(local_r4k_flush_data_cache_page, (void *) addr, | ||
| 515 | 1, 1); | ||
| 511 | } | 516 | } |
| 512 | 517 | ||
| 513 | struct flush_icache_range_args { | 518 | struct flush_icache_range_args { |
diff --git a/arch/mips/mm/cerr-sb1.c b/arch/mips/mm/cerr-sb1.c index e7f539e3284b..1bd1f18ac23c 100644 --- a/arch/mips/mm/cerr-sb1.c +++ b/arch/mips/mm/cerr-sb1.c | |||
| @@ -154,7 +154,7 @@ static void check_bus_watcher(void) | |||
| 154 | if (status & ~(1UL << 31)) { | 154 | if (status & ~(1UL << 31)) { |
| 155 | l2_err = csr_in32(IOADDR(A_BUS_L2_ERRORS)); | 155 | l2_err = csr_in32(IOADDR(A_BUS_L2_ERRORS)); |
| 156 | #ifdef DUMP_L2_ECC_TAG_ON_ERROR | 156 | #ifdef DUMP_L2_ECC_TAG_ON_ERROR |
| 157 | l2_tag = in64(IO_SPACE_BASE | A_L2_ECC_TAG); | 157 | l2_tag = in64(IOADDR(A_L2_ECC_TAG)); |
| 158 | #endif | 158 | #endif |
| 159 | memio_err = csr_in32(IOADDR(A_BUS_MEM_IO_ERRORS)); | 159 | memio_err = csr_in32(IOADDR(A_BUS_MEM_IO_ERRORS)); |
| 160 | printk("Bus watcher error counters: %08x %08x\n", l2_err, memio_err); | 160 | printk("Bus watcher error counters: %08x %08x\n", l2_err, memio_err); |
| @@ -183,9 +183,9 @@ asmlinkage void sb1_cache_error(void) | |||
| 183 | #ifdef CONFIG_SIBYTE_BW_TRACE | 183 | #ifdef CONFIG_SIBYTE_BW_TRACE |
| 184 | /* Freeze the trace buffer now */ | 184 | /* Freeze the trace buffer now */ |
| 185 | #if defined(CONFIG_SIBYTE_BCM1x55) || defined(CONFIG_SIBYTE_BCM1x80) | 185 | #if defined(CONFIG_SIBYTE_BCM1x55) || defined(CONFIG_SIBYTE_BCM1x80) |
| 186 | csr_out32(M_BCM1480_SCD_TRACE_CFG_FREEZE, IO_SPACE_BASE | A_SCD_TRACE_CFG); | 186 | csr_out32(M_BCM1480_SCD_TRACE_CFG_FREEZE, IOADDR(A_SCD_TRACE_CFG)); |
| 187 | #else | 187 | #else |
| 188 | csr_out32(M_SCD_TRACE_CFG_FREEZE, IO_SPACE_BASE | A_SCD_TRACE_CFG); | 188 | csr_out32(M_SCD_TRACE_CFG_FREEZE, IOADDR(A_SCD_TRACE_CFG)); |
| 189 | #endif | 189 | #endif |
| 190 | printk("Trace buffer frozen\n"); | 190 | printk("Trace buffer frozen\n"); |
| 191 | #endif | 191 | #endif |
diff --git a/arch/mips/mm/init.c b/arch/mips/mm/init.c index 110ee7656b41..ec3b9e9f30f4 100644 --- a/arch/mips/mm/init.c +++ b/arch/mips/mm/init.c | |||
| @@ -426,7 +426,7 @@ void __init mem_init(void) | |||
| 426 | 426 | ||
| 427 | #ifdef CONFIG_HIGHMEM | 427 | #ifdef CONFIG_HIGHMEM |
| 428 | for (tmp = highstart_pfn; tmp < highend_pfn; tmp++) { | 428 | for (tmp = highstart_pfn; tmp < highend_pfn; tmp++) { |
| 429 | struct page *page = mem_map + tmp; | 429 | struct page *page = pfn_to_page(tmp); |
| 430 | 430 | ||
| 431 | if (!page_is_ram(tmp)) { | 431 | if (!page_is_ram(tmp)) { |
| 432 | SetPageReserved(page); | 432 | SetPageReserved(page); |
diff --git a/arch/mips/pci/fixup-sni.c b/arch/mips/pci/fixup-sni.c index a45bedd17233..5c8a79bb2661 100644 --- a/arch/mips/pci/fixup-sni.c +++ b/arch/mips/pci/fixup-sni.c | |||
| @@ -113,6 +113,16 @@ static char irq_tab_pcit[13][5] __initdata = { | |||
| 113 | { 0, INTA, INTB, INTC, INTD }, /* Slot 5 */ | 113 | { 0, INTA, INTB, INTC, INTD }, /* Slot 5 */ |
| 114 | }; | 114 | }; |
| 115 | 115 | ||
| 116 | static char irq_tab_pcit_cplus[13][5] __initdata = { | ||
| 117 | /* INTA INTB INTC INTD */ | ||
| 118 | { 0, 0, 0, 0, 0 }, /* HOST bridge */ | ||
| 119 | { 0, INTB, INTC, INTD, INTA }, /* PCI Slot 9 */ | ||
| 120 | { 0, 0, 0, 0, 0 }, /* PCI-EISA */ | ||
| 121 | { 0, 0, 0, 0, 0 }, /* Unused */ | ||
| 122 | { 0, INTA, INTB, INTC, INTD }, /* PCI-PCI bridge */ | ||
| 123 | { 0, INTB, INTC, INTD, INTA }, /* fixup */ | ||
| 124 | }; | ||
| 125 | |||
| 116 | static inline int is_rm300_revd(void) | 126 | static inline int is_rm300_revd(void) |
| 117 | { | 127 | { |
| 118 | unsigned char csmsr = *(volatile unsigned char *)PCIMT_CSMSR; | 128 | unsigned char csmsr = *(volatile unsigned char *)PCIMT_CSMSR; |
| @@ -123,8 +133,19 @@ static inline int is_rm300_revd(void) | |||
| 123 | int __init pcibios_map_irq(const struct pci_dev *dev, u8 slot, u8 pin) | 133 | int __init pcibios_map_irq(const struct pci_dev *dev, u8 slot, u8 pin) |
| 124 | { | 134 | { |
| 125 | switch (sni_brd_type) { | 135 | switch (sni_brd_type) { |
| 126 | case SNI_BRD_PCI_TOWER: | ||
| 127 | case SNI_BRD_PCI_TOWER_CPLUS: | 136 | case SNI_BRD_PCI_TOWER_CPLUS: |
| 137 | if (slot == 4) { | ||
| 138 | /* | ||
| 139 | * SNI messed up interrupt wiring for onboard | ||
| 140 | * PCI bus 1; we need to fix this up here | ||
| 141 | */ | ||
| 142 | while (dev && dev->bus->number != 1) | ||
| 143 | dev = dev->bus->self; | ||
| 144 | if (dev && dev->devfn >= PCI_DEVFN(4, 0)) | ||
| 145 | slot = 5; | ||
| 146 | } | ||
| 147 | return irq_tab_pcit_cplus[slot][pin]; | ||
| 148 | case SNI_BRD_PCI_TOWER: | ||
| 128 | return irq_tab_pcit[slot][pin]; | 149 | return irq_tab_pcit[slot][pin]; |
| 129 | 150 | ||
| 130 | case SNI_BRD_PCI_MTOWER: | 151 | case SNI_BRD_PCI_MTOWER: |
diff --git a/arch/mips/pci/pci-lasat.c b/arch/mips/pci/pci-lasat.c index 174f314933b5..e70ae3236e0b 100644 --- a/arch/mips/pci/pci-lasat.c +++ b/arch/mips/pci/pci-lasat.c | |||
| @@ -5,12 +5,14 @@ | |||
| 5 | * | 5 | * |
| 6 | * Copyright (C) 2000, 2001, 04 Keith M Wesolowski | 6 | * Copyright (C) 2000, 2001, 04 Keith M Wesolowski |
| 7 | */ | 7 | */ |
| 8 | #include <linux/kernel.h> | ||
| 9 | #include <linux/init.h> | 8 | #include <linux/init.h> |
| 9 | #include <linux/kernel.h> | ||
| 10 | #include <linux/pci.h> | 10 | #include <linux/pci.h> |
| 11 | #include <linux/types.h> | 11 | #include <linux/types.h> |
| 12 | |||
| 12 | #include <asm/bootinfo.h> | 13 | #include <asm/bootinfo.h> |
| 13 | #include <asm/lasat/lasatint.h> | 14 | |
| 15 | #include <irq.h> | ||
| 14 | 16 | ||
| 15 | extern struct pci_ops nile4_pci_ops; | 17 | extern struct pci_ops nile4_pci_ops; |
| 16 | extern struct pci_ops gt64xxx_pci0_ops; | 18 | extern struct pci_ops gt64xxx_pci0_ops; |
| @@ -55,15 +57,15 @@ static int __init lasat_pci_setup(void) | |||
| 55 | 57 | ||
| 56 | arch_initcall(lasat_pci_setup); | 58 | arch_initcall(lasat_pci_setup); |
| 57 | 59 | ||
| 58 | #define LASATINT_ETH1 (LASATINT_BASE + 0) | 60 | #define LASAT_IRQ_ETH1 (LASAT_IRQ_BASE + 0) |
| 59 | #define LASATINT_ETH0 (LASATINT_BASE + 1) | 61 | #define LASAT_IRQ_ETH0 (LASAT_IRQ_BASE + 1) |
| 60 | #define LASATINT_HDC (LASATINT_BASE + 2) | 62 | #define LASAT_IRQ_HDC (LASAT_IRQ_BASE + 2) |
| 61 | #define LASATINT_COMP (LASATINT_BASE + 3) | 63 | #define LASAT_IRQ_COMP (LASAT_IRQ_BASE + 3) |
| 62 | #define LASATINT_HDLC (LASATINT_BASE + 4) | 64 | #define LASAT_IRQ_HDLC (LASAT_IRQ_BASE + 4) |
| 63 | #define LASATINT_PCIA (LASATINT_BASE + 5) | 65 | #define LASAT_IRQ_PCIA (LASAT_IRQ_BASE + 5) |
| 64 | #define LASATINT_PCIB (LASATINT_BASE + 6) | 66 | #define LASAT_IRQ_PCIB (LASAT_IRQ_BASE + 6) |
| 65 | #define LASATINT_PCIC (LASATINT_BASE + 7) | 67 | #define LASAT_IRQ_PCIC (LASAT_IRQ_BASE + 7) |
| 66 | #define LASATINT_PCID (LASATINT_BASE + 8) | 68 | #define LASAT_IRQ_PCID (LASAT_IRQ_BASE + 8) |
| 67 | 69 | ||
| 68 | int __init pcibios_map_irq(const struct pci_dev *dev, u8 slot, u8 pin) | 70 | int __init pcibios_map_irq(const struct pci_dev *dev, u8 slot, u8 pin) |
| 69 | { | 71 | { |
| @@ -71,13 +73,13 @@ int __init pcibios_map_irq(const struct pci_dev *dev, u8 slot, u8 pin) | |||
| 71 | case 1: | 73 | case 1: |
| 72 | case 2: | 74 | case 2: |
| 73 | case 3: | 75 | case 3: |
| 74 | return LASATINT_PCIA + (((slot-1) + (pin-1)) % 4); | 76 | return LASAT_IRQ_PCIA + (((slot-1) + (pin-1)) % 4); |
| 75 | case 4: | 77 | case 4: |
| 76 | return LASATINT_ETH1; /* Ethernet 1 (LAN 2) */ | 78 | return LASAT_IRQ_ETH1; /* Ethernet 1 (LAN 2) */ |
| 77 | case 5: | 79 | case 5: |
| 78 | return LASATINT_ETH0; /* Ethernet 0 (LAN 1) */ | 80 | return LASAT_IRQ_ETH0; /* Ethernet 0 (LAN 1) */ |
| 79 | case 6: | 81 | case 6: |
| 80 | return LASATINT_HDC; /* IDE controller */ | 82 | return LASAT_IRQ_HDC; /* IDE controller */ |
| 81 | default: | 83 | default: |
| 82 | return 0xff; /* Illegal */ | 84 | return 0xff; /* Illegal */ |
| 83 | } | 85 | } |
diff --git a/arch/mips/pci/pci-vr41xx.c b/arch/mips/pci/pci-vr41xx.c index 240df9e33813..33c4f683d067 100644 --- a/arch/mips/pci/pci-vr41xx.c +++ b/arch/mips/pci/pci-vr41xx.c | |||
| @@ -154,6 +154,7 @@ static int __init vr41xx_pciu_init(void) | |||
| 154 | pciu_write(PCICLKSELREG, QUARTER_VTCLOCK); | 154 | pciu_write(PCICLKSELREG, QUARTER_VTCLOCK); |
| 155 | else { | 155 | else { |
| 156 | printk(KERN_ERR "PCI Clock is over 33MHz.\n"); | 156 | printk(KERN_ERR "PCI Clock is over 33MHz.\n"); |
| 157 | iounmap(pciu_base); | ||
| 157 | return -EINVAL; | 158 | return -EINVAL; |
| 158 | } | 159 | } |
| 159 | 160 | ||
diff --git a/arch/mips/qemu/Makefile b/arch/mips/qemu/Makefile index cec24c117f6e..2ba4ef34b4a7 100644 --- a/arch/mips/qemu/Makefile +++ b/arch/mips/qemu/Makefile | |||
| @@ -4,6 +4,7 @@ | |||
| 4 | 4 | ||
| 5 | obj-y = q-firmware.o q-irq.o q-mem.o q-setup.o q-reset.o | 5 | obj-y = q-firmware.o q-irq.o q-mem.o q-setup.o q-reset.o |
| 6 | 6 | ||
| 7 | obj-$(CONFIG_SMP) += q-smp.o | 7 | obj-$(CONFIG_EARLY_PRINTK) += q-console.o |
| 8 | obj-$(CONFIG_SMP) += q-smp.o | ||
| 8 | 9 | ||
| 9 | EXTRA_CFLAGS += -Werror | 10 | EXTRA_CFLAGS += -Werror |
diff --git a/arch/mips/qemu/q-console.c b/arch/mips/qemu/q-console.c new file mode 100644 index 000000000000..81101ae5017a --- /dev/null +++ b/arch/mips/qemu/q-console.c | |||
| @@ -0,0 +1,26 @@ | |||
| 1 | #include <linux/console.h> | ||
| 2 | #include <linux/init.h> | ||
| 3 | #include <linux/serial_reg.h> | ||
| 4 | #include <asm/io.h> | ||
| 5 | |||
| 6 | #define PORT(offset) (0x3f8 + (offset)) | ||
| 7 | |||
| 8 | static inline unsigned int serial_in(int offset) | ||
| 9 | { | ||
| 10 | return inb(PORT(offset)); | ||
| 11 | } | ||
| 12 | |||
| 13 | static inline void serial_out(int offset, int value) | ||
| 14 | { | ||
| 15 | outb(value, PORT(offset)); | ||
| 16 | } | ||
| 17 | |||
| 18 | int prom_putchar(char c) | ||
| 19 | { | ||
| 20 | while ((serial_in(UART_LSR) & UART_LSR_THRE) == 0) | ||
| 21 | ; | ||
| 22 | |||
| 23 | serial_out(UART_TX, c); | ||
| 24 | |||
| 25 | return 1; | ||
| 26 | } | ||
diff --git a/arch/mips/qemu/q-firmware.c b/arch/mips/qemu/q-firmware.c index c2239b417587..3ed43f416cd1 100644 --- a/arch/mips/qemu/q-firmware.c +++ b/arch/mips/qemu/q-firmware.c | |||
| @@ -2,6 +2,9 @@ | |||
| 2 | #include <linux/string.h> | 2 | #include <linux/string.h> |
| 3 | #include <asm/addrspace.h> | 3 | #include <asm/addrspace.h> |
| 4 | #include <asm/bootinfo.h> | 4 | #include <asm/bootinfo.h> |
| 5 | #include <asm/io.h> | ||
| 6 | |||
| 7 | #define QEMU_PORT_BASE 0xb4000000 | ||
| 5 | 8 | ||
| 6 | void __init prom_init(void) | 9 | void __init prom_init(void) |
| 7 | { | 10 | { |
| @@ -15,4 +18,7 @@ void __init prom_init(void) | |||
| 15 | } else { | 18 | } else { |
| 16 | add_memory_region(0x0<<20, 0x10<<20, BOOT_MEM_RAM); | 19 | add_memory_region(0x0<<20, 0x10<<20, BOOT_MEM_RAM); |
| 17 | } | 20 | } |
| 21 | |||
| 22 | |||
| 23 | set_io_port_base(QEMU_PORT_BASE); | ||
| 18 | } | 24 | } |
diff --git a/arch/mips/qemu/q-setup.c b/arch/mips/qemu/q-setup.c index 23d34c1917c0..969cedc8d8b9 100644 --- a/arch/mips/qemu/q-setup.c +++ b/arch/mips/qemu/q-setup.c | |||
| @@ -6,8 +6,6 @@ | |||
| 6 | 6 | ||
| 7 | extern void qemu_reboot_setup(void); | 7 | extern void qemu_reboot_setup(void); |
| 8 | 8 | ||
| 9 | #define QEMU_PORT_BASE 0xb4000000 | ||
| 10 | |||
| 11 | const char *get_system_type(void) | 9 | const char *get_system_type(void) |
| 12 | { | 10 | { |
| 13 | return "Qemu"; | 11 | return "Qemu"; |
| @@ -20,6 +18,5 @@ void __init plat_time_init(void) | |||
| 20 | 18 | ||
| 21 | void __init plat_mem_setup(void) | 19 | void __init plat_mem_setup(void) |
| 22 | { | 20 | { |
| 23 | set_io_port_base(QEMU_PORT_BASE); | ||
| 24 | qemu_reboot_setup(); | 21 | qemu_reboot_setup(); |
| 25 | } | 22 | } |
diff --git a/arch/mips/sibyte/bcm1480/irq.c b/arch/mips/sibyte/bcm1480/irq.c index e28d626255a3..db372a0f106d 100644 --- a/arch/mips/sibyte/bcm1480/irq.c +++ b/arch/mips/sibyte/bcm1480/irq.c | |||
| @@ -370,11 +370,11 @@ void __init arch_init_irq(void) | |||
| 370 | #endif | 370 | #endif |
| 371 | /* Setup uart 1 settings, mapper */ | 371 | /* Setup uart 1 settings, mapper */ |
| 372 | /* QQQ FIXME */ | 372 | /* QQQ FIXME */ |
| 373 | __raw_writeq(M_DUART_IMR_BRK, IO_SPACE_BASE + A_DUART_IMRREG(kgdb_port)); | 373 | __raw_writeq(M_DUART_IMR_BRK, IOADDR(A_DUART_IMRREG(kgdb_port))); |
| 374 | 374 | ||
| 375 | __raw_writeq(IMR_IP6_VAL, | 375 | __raw_writeq(IMR_IP6_VAL, |
| 376 | IO_SPACE_BASE + A_BCM1480_IMR_REGISTER(0, R_BCM1480_IMR_INTERRUPT_MAP_BASE_H) + | 376 | IOADDR(A_BCM1480_IMR_REGISTER(0, R_BCM1480_IMR_INTERRUPT_MAP_BASE_H) + |
| 377 | (kgdb_irq<<3)); | 377 | (kgdb_irq << 3))); |
| 378 | bcm1480_unmask_irq(0, kgdb_irq); | 378 | bcm1480_unmask_irq(0, kgdb_irq); |
| 379 | 379 | ||
| 380 | #ifdef CONFIG_GDB_CONSOLE | 380 | #ifdef CONFIG_GDB_CONSOLE |
| @@ -412,18 +412,6 @@ static void bcm1480_kgdb_interrupt(void) | |||
| 412 | 412 | ||
| 413 | extern void bcm1480_mailbox_interrupt(void); | 413 | extern void bcm1480_mailbox_interrupt(void); |
| 414 | 414 | ||
| 415 | static inline void dispatch_ip4(void) | ||
| 416 | { | ||
| 417 | int cpu = smp_processor_id(); | ||
| 418 | int irq = K_BCM1480_INT_TIMER_0 + cpu; | ||
| 419 | |||
| 420 | /* Reset the timer */ | ||
| 421 | __raw_writeq(M_SCD_TIMER_ENABLE|M_SCD_TIMER_MODE_CONTINUOUS, | ||
| 422 | IOADDR(A_SCD_TIMER_REGISTER(cpu, R_SCD_TIMER_CFG))); | ||
| 423 | |||
| 424 | do_IRQ(irq); | ||
| 425 | } | ||
| 426 | |||
| 427 | static inline void dispatch_ip2(void) | 415 | static inline void dispatch_ip2(void) |
| 428 | { | 416 | { |
| 429 | unsigned long long mask_h, mask_l; | 417 | unsigned long long mask_h, mask_l; |
| @@ -451,6 +439,7 @@ static inline void dispatch_ip2(void) | |||
| 451 | 439 | ||
| 452 | asmlinkage void plat_irq_dispatch(void) | 440 | asmlinkage void plat_irq_dispatch(void) |
| 453 | { | 441 | { |
| 442 | unsigned int cpu = smp_processor_id(); | ||
| 454 | unsigned int pending; | 443 | unsigned int pending; |
| 455 | 444 | ||
| 456 | #ifdef CONFIG_SIBYTE_BCM1480_PROF | 445 | #ifdef CONFIG_SIBYTE_BCM1480_PROF |
| @@ -467,7 +456,7 @@ asmlinkage void plat_irq_dispatch(void) | |||
| 467 | #endif | 456 | #endif |
| 468 | 457 | ||
| 469 | if (pending & CAUSEF_IP4) | 458 | if (pending & CAUSEF_IP4) |
| 470 | dispatch_ip4(); | 459 | do_IRQ(K_BCM1480_INT_TIMER_0 + cpu); |
| 471 | #ifdef CONFIG_SMP | 460 | #ifdef CONFIG_SMP |
| 472 | else if (pending & CAUSEF_IP3) | 461 | else if (pending & CAUSEF_IP3) |
| 473 | bcm1480_mailbox_interrupt(); | 462 | bcm1480_mailbox_interrupt(); |
diff --git a/arch/mips/sni/pcimt.c b/arch/mips/sni/pcimt.c index 4df070f2ff5d..834650f371e0 100644 --- a/arch/mips/sni/pcimt.c +++ b/arch/mips/sni/pcimt.c | |||
| @@ -244,7 +244,7 @@ static void pcimt_hwint1(void) | |||
| 244 | if (pend & IT_EISA) { | 244 | if (pend & IT_EISA) { |
| 245 | int irq; | 245 | int irq; |
| 246 | /* | 246 | /* |
| 247 | * Note: ASIC PCI's builtin interrupt achknowledge feature is | 247 | * Note: ASIC PCI's builtin interrupt acknowledge feature is |
| 248 | * broken. Using it may result in loss of some or all i8259 | 248 | * broken. Using it may result in loss of some or all i8259 |
| 249 | * interrupts, so don't use PCIMT_INT_ACKNOWLEDGE ... | 249 | * interrupts, so don't use PCIMT_INT_ACKNOWLEDGE ... |
| 250 | */ | 250 | */ |
diff --git a/arch/mips/vr41xx/common/icu.c b/arch/mips/vr41xx/common/icu.c index 1899601e5862..3f23d9fda662 100644 --- a/arch/mips/vr41xx/common/icu.c +++ b/arch/mips/vr41xx/common/icu.c | |||
| @@ -525,6 +525,7 @@ static inline int set_sysint1_assign(unsigned int irq, unsigned char assign) | |||
| 525 | intassign1 |= (uint16_t)assign << 9; | 525 | intassign1 |= (uint16_t)assign << 9; |
| 526 | break; | 526 | break; |
| 527 | default: | 527 | default: |
| 528 | spin_unlock_irq(&desc->lock); | ||
| 528 | return -EINVAL; | 529 | return -EINVAL; |
| 529 | } | 530 | } |
| 530 | 531 | ||
| @@ -592,6 +593,7 @@ static inline int set_sysint2_assign(unsigned int irq, unsigned char assign) | |||
| 592 | intassign3 |= (uint16_t)assign << 12; | 593 | intassign3 |= (uint16_t)assign << 12; |
| 593 | break; | 594 | break; |
| 594 | default: | 595 | default: |
| 596 | spin_unlock_irq(&desc->lock); | ||
| 595 | return -EINVAL; | 597 | return -EINVAL; |
| 596 | } | 598 | } |
| 597 | 599 | ||
diff --git a/arch/um/Makefile b/arch/um/Makefile index 768a5d14b755..31999bc1c8a4 100644 --- a/arch/um/Makefile +++ b/arch/um/Makefile | |||
| @@ -168,7 +168,7 @@ ifneq ($(KBUILD_SRC),) | |||
| 168 | $(Q)mkdir -p $(objtree)/include/asm-um | 168 | $(Q)mkdir -p $(objtree)/include/asm-um |
| 169 | $(Q)ln -fsn $(srctree)/include/asm-$(HEADER_ARCH) include/asm-um/arch | 169 | $(Q)ln -fsn $(srctree)/include/asm-$(HEADER_ARCH) include/asm-um/arch |
| 170 | else | 170 | else |
| 171 | $(Q)cd $(TOPDIR)/include/asm-um && ln -sf ../asm-$(HEADER_ARCH) arch | 171 | $(Q)cd $(TOPDIR)/include/asm-um && ln -fsn ../asm-$(SUBARCH) arch |
| 172 | endif | 172 | endif |
| 173 | 173 | ||
| 174 | $(objtree)/$(ARCH_DIR)/include: | 174 | $(objtree)/$(ARCH_DIR)/include: |
| @@ -180,7 +180,7 @@ $(ARCH_DIR)/include/sysdep: $(objtree)/$(ARCH_DIR)/include | |||
| 180 | ifneq ($(KBUILD_SRC),) | 180 | ifneq ($(KBUILD_SRC),) |
| 181 | $(Q)ln -fsn $(srctree)/$(ARCH_DIR)/include/sysdep-$(SUBARCH) $(ARCH_DIR)/include/sysdep | 181 | $(Q)ln -fsn $(srctree)/$(ARCH_DIR)/include/sysdep-$(SUBARCH) $(ARCH_DIR)/include/sysdep |
| 182 | else | 182 | else |
| 183 | $(Q)cd $(ARCH_DIR)/include && ln -sf sysdep-$(SUBARCH) sysdep | 183 | $(Q)cd $(ARCH_DIR)/include && ln -fsn sysdep-$(SUBARCH) sysdep |
| 184 | endif | 184 | endif |
| 185 | 185 | ||
| 186 | $(ARCH_DIR)/os: | 186 | $(ARCH_DIR)/os: |
| @@ -188,7 +188,7 @@ $(ARCH_DIR)/os: | |||
| 188 | ifneq ($(KBUILD_SRC),) | 188 | ifneq ($(KBUILD_SRC),) |
| 189 | $(Q)ln -fsn $(srctree)/$(ARCH_DIR)/os-$(OS) $(ARCH_DIR)/os | 189 | $(Q)ln -fsn $(srctree)/$(ARCH_DIR)/os-$(OS) $(ARCH_DIR)/os |
| 190 | else | 190 | else |
| 191 | $(Q)cd $(ARCH_DIR) && ln -sf os-$(OS) os | 191 | $(Q)cd $(ARCH_DIR) && ln -fsn os-$(OS) os |
| 192 | endif | 192 | endif |
| 193 | 193 | ||
| 194 | # Generated files | 194 | # Generated files |
diff --git a/arch/um/drivers/net_kern.c b/arch/um/drivers/net_kern.c index 8c01fa81a1ae..73681f14f9fc 100644 --- a/arch/um/drivers/net_kern.c +++ b/arch/um/drivers/net_kern.c | |||
| @@ -753,6 +753,7 @@ static struct mc_device net_mc = { | |||
| 753 | .remove = net_remove, | 753 | .remove = net_remove, |
| 754 | }; | 754 | }; |
| 755 | 755 | ||
| 756 | #ifdef CONFIG_INET | ||
| 756 | static int uml_inetaddr_event(struct notifier_block *this, unsigned long event, | 757 | static int uml_inetaddr_event(struct notifier_block *this, unsigned long event, |
| 757 | void *ptr) | 758 | void *ptr) |
| 758 | { | 759 | { |
| @@ -789,14 +790,13 @@ struct notifier_block uml_inetaddr_notifier = { | |||
| 789 | .notifier_call = uml_inetaddr_event, | 790 | .notifier_call = uml_inetaddr_event, |
| 790 | }; | 791 | }; |
| 791 | 792 | ||
| 792 | static int uml_net_init(void) | 793 | static void inet_register(void) |
| 793 | { | 794 | { |
| 794 | struct list_head *ele; | 795 | struct list_head *ele; |
| 795 | struct uml_net_private *lp; | 796 | struct uml_net_private *lp; |
| 796 | struct in_device *ip; | 797 | struct in_device *ip; |
| 797 | struct in_ifaddr *in; | 798 | struct in_ifaddr *in; |
| 798 | 799 | ||
| 799 | mconsole_register_dev(&net_mc); | ||
| 800 | register_inetaddr_notifier(¨_inetaddr_notifier); | 800 | register_inetaddr_notifier(¨_inetaddr_notifier); |
| 801 | 801 | ||
| 802 | /* Devices may have been opened already, so the uml_inetaddr_notifier | 802 | /* Devices may have been opened already, so the uml_inetaddr_notifier |
| @@ -816,7 +816,17 @@ static int uml_net_init(void) | |||
| 816 | } | 816 | } |
| 817 | } | 817 | } |
| 818 | spin_unlock(&opened_lock); | 818 | spin_unlock(&opened_lock); |
| 819 | } | ||
| 820 | #else | ||
| 821 | static inline void inet_register(void) | ||
| 822 | { | ||
| 823 | } | ||
| 824 | #endif | ||
| 819 | 825 | ||
| 826 | static int uml_net_init(void) | ||
| 827 | { | ||
| 828 | mconsole_register_dev(&net_mc); | ||
| 829 | inet_register(); | ||
| 820 | return 0; | 830 | return 0; |
| 821 | } | 831 | } |
| 822 | 832 | ||
diff --git a/arch/um/include/user.h b/arch/um/include/user.h index 99033ff28a78..1723fac6f40d 100644 --- a/arch/um/include/user.h +++ b/arch/um/include/user.h | |||
| @@ -1,11 +1,13 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * Copyright (C) 2000 Jeff Dike (jdike@karaya.com) | 2 | * Copyright (C) 2000 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com) |
| 3 | * Licensed under the GPL | 3 | * Licensed under the GPL |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #ifndef __USER_H__ | 6 | #ifndef __USER_H__ |
| 7 | #define __USER_H__ | 7 | #define __USER_H__ |
| 8 | 8 | ||
| 9 | #include "uml-config.h" | ||
| 10 | |||
| 9 | /* | 11 | /* |
| 10 | * The usual definition - copied here because the kernel provides its own, | 12 | * The usual definition - copied here because the kernel provides its own, |
| 11 | * fancier, type-safe, definition. Using that one would require | 13 | * fancier, type-safe, definition. Using that one would require |
| @@ -23,8 +25,17 @@ | |||
| 23 | 25 | ||
| 24 | extern void panic(const char *fmt, ...) | 26 | extern void panic(const char *fmt, ...) |
| 25 | __attribute__ ((format (printf, 1, 2))); | 27 | __attribute__ ((format (printf, 1, 2))); |
| 28 | |||
| 29 | #ifdef UML_CONFIG_PRINTK | ||
| 26 | extern int printk(const char *fmt, ...) | 30 | extern int printk(const char *fmt, ...) |
| 27 | __attribute__ ((format (printf, 1, 2))); | 31 | __attribute__ ((format (printf, 1, 2))); |
| 32 | #else | ||
| 33 | static inline int printk(const char *fmt, ...) | ||
| 34 | { | ||
| 35 | return 0; | ||
| 36 | } | ||
| 37 | #endif | ||
| 38 | |||
| 28 | extern void schedule(void); | 39 | extern void schedule(void); |
| 29 | extern int in_aton(char *str); | 40 | extern int in_aton(char *str); |
| 30 | extern int open_gdb_chan(void); | 41 | extern int open_gdb_chan(void); |
diff --git a/arch/um/kernel/irq.c b/arch/um/kernel/irq.c index 70c2d625b070..ba11ccd6a8a3 100644 --- a/arch/um/kernel/irq.c +++ b/arch/um/kernel/irq.c | |||
| @@ -347,14 +347,15 @@ int um_request_irq(unsigned int irq, int fd, int type, | |||
| 347 | { | 347 | { |
| 348 | int err; | 348 | int err; |
| 349 | 349 | ||
| 350 | err = request_irq(irq, handler, irqflags, devname, dev_id); | 350 | if (fd != -1) { |
| 351 | if (err) | ||
| 352 | return err; | ||
| 353 | |||
| 354 | if (fd != -1) | ||
| 355 | err = activate_fd(irq, fd, type, dev_id); | 351 | err = activate_fd(irq, fd, type, dev_id); |
| 356 | return err; | 352 | if (err) |
| 353 | return err; | ||
| 354 | } | ||
| 355 | |||
| 356 | return request_irq(irq, handler, irqflags, devname, dev_id); | ||
| 357 | } | 357 | } |
| 358 | |||
| 358 | EXPORT_SYMBOL(um_request_irq); | 359 | EXPORT_SYMBOL(um_request_irq); |
| 359 | EXPORT_SYMBOL(reactivate_fd); | 360 | EXPORT_SYMBOL(reactivate_fd); |
| 360 | 361 | ||
diff --git a/arch/um/kernel/skas/clone.c b/arch/um/kernel/skas/clone.c index d119f4f7d897..8d07a7acb909 100644 --- a/arch/um/kernel/skas/clone.c +++ b/arch/um/kernel/skas/clone.c | |||
| @@ -3,7 +3,6 @@ | |||
| 3 | #include <sys/mman.h> | 3 | #include <sys/mman.h> |
| 4 | #include <sys/time.h> | 4 | #include <sys/time.h> |
| 5 | #include <asm/unistd.h> | 5 | #include <asm/unistd.h> |
| 6 | #include <asm/page.h> | ||
| 7 | #include "as-layout.h" | 6 | #include "as-layout.h" |
| 8 | #include "ptrace_user.h" | 7 | #include "ptrace_user.h" |
| 9 | #include "skas.h" | 8 | #include "skas.h" |
diff --git a/arch/um/os-Linux/file.c b/arch/um/os-Linux/file.c index b542a3a021bf..f83462758627 100644 --- a/arch/um/os-Linux/file.c +++ b/arch/um/os-Linux/file.c | |||
| @@ -496,8 +496,7 @@ int os_rcv_fd(int fd, int *helper_pid_out) | |||
| 496 | n = recvmsg(fd, &msg, 0); | 496 | n = recvmsg(fd, &msg, 0); |
| 497 | if(n < 0) | 497 | if(n < 0) |
| 498 | return -errno; | 498 | return -errno; |
| 499 | 499 | else if(n != iov.iov_len) | |
| 500 | else if(n != sizeof(iov.iov_len)) | ||
| 501 | *helper_pid_out = -1; | 500 | *helper_pid_out = -1; |
| 502 | 501 | ||
| 503 | cmsg = CMSG_FIRSTHDR(&msg); | 502 | cmsg = CMSG_FIRSTHDR(&msg); |
diff --git a/arch/x86/Kconfig.i386 b/arch/x86/Kconfig index 7331efe891a7..368864dfe6eb 100644 --- a/arch/x86/Kconfig.i386 +++ b/arch/x86/Kconfig | |||
| @@ -1,18 +1,24 @@ | |||
| 1 | # | 1 | # x86 configuration |
| 2 | # For a description of the syntax of this configuration file, | 2 | mainmenu "Linux Kernel Configuration for x86" |
| 3 | # see Documentation/kbuild/kconfig-language.txt. | ||
| 4 | # | ||
| 5 | 3 | ||
| 6 | mainmenu "Linux Kernel Configuration" | 4 | # Select 32 or 64 bit |
| 5 | config 64BIT | ||
| 6 | bool "64-bit kernel" if ARCH = "x86" | ||
| 7 | default ARCH = "x86_64" | ||
| 8 | help | ||
| 9 | Say yes to build a 64-bit kernel - formerly known as x86_64 | ||
| 10 | Say no to build a 32-bit kernel - formerly known as i386 | ||
| 7 | 11 | ||
| 8 | config X86_32 | 12 | config X86_32 |
| 13 | def_bool !64BIT | ||
| 14 | |||
| 15 | config X86_64 | ||
| 16 | def_bool 64BIT | ||
| 17 | |||
| 18 | ### Arch settings | ||
| 19 | config X86 | ||
| 9 | bool | 20 | bool |
| 10 | default y | 21 | default y |
| 11 | help | ||
| 12 | This is Linux's home port. Linux was originally native to the Intel | ||
| 13 | 386, and runs on all the later x86 processors including the Intel | ||
| 14 | 486, 586, Pentiums, and various instruction-set-compatible chips by | ||
| 15 | AMD, Cyrix, and others. | ||
| 16 | 22 | ||
| 17 | config GENERIC_TIME | 23 | config GENERIC_TIME |
| 18 | bool | 24 | bool |
| @@ -33,7 +39,7 @@ config GENERIC_CLOCKEVENTS | |||
| 33 | config GENERIC_CLOCKEVENTS_BROADCAST | 39 | config GENERIC_CLOCKEVENTS_BROADCAST |
| 34 | bool | 40 | bool |
| 35 | default y | 41 | default y |
| 36 | depends on X86_LOCAL_APIC | 42 | depends on X86_64 || (X86_32 && X86_LOCAL_APIC) |
| 37 | 43 | ||
| 38 | config LOCKDEP_SUPPORT | 44 | config LOCKDEP_SUPPORT |
| 39 | bool | 45 | bool |
| @@ -47,10 +53,6 @@ config SEMAPHORE_SLEEPERS | |||
| 47 | bool | 53 | bool |
| 48 | default y | 54 | default y |
| 49 | 55 | ||
| 50 | config X86 | ||
| 51 | bool | ||
| 52 | default y | ||
| 53 | |||
| 54 | config MMU | 56 | config MMU |
| 55 | bool | 57 | bool |
| 56 | default y | 58 | default y |
| @@ -61,7 +63,7 @@ config ZONE_DMA | |||
| 61 | 63 | ||
| 62 | config QUICKLIST | 64 | config QUICKLIST |
| 63 | bool | 65 | bool |
| 64 | default y | 66 | default X86_32 |
| 65 | 67 | ||
| 66 | config SBUS | 68 | config SBUS |
| 67 | bool | 69 | bool |
| @@ -91,6 +93,76 @@ config DMI | |||
| 91 | bool | 93 | bool |
| 92 | default y | 94 | default y |
| 93 | 95 | ||
| 96 | config RWSEM_GENERIC_SPINLOCK | ||
| 97 | def_bool !X86_XADD | ||
| 98 | |||
| 99 | config RWSEM_XCHGADD_ALGORITHM | ||
| 100 | def_bool X86_XADD | ||
| 101 | |||
| 102 | config ARCH_HAS_ILOG2_U32 | ||
| 103 | def_bool n | ||
| 104 | |||
| 105 | config ARCH_HAS_ILOG2_U64 | ||
| 106 | def_bool n | ||
| 107 | |||
| 108 | config GENERIC_CALIBRATE_DELAY | ||
| 109 | def_bool y | ||
| 110 | |||
| 111 | config GENERIC_TIME_VSYSCALL | ||
| 112 | bool | ||
| 113 | default X86_64 | ||
| 114 | |||
| 115 | |||
| 116 | |||
| 117 | |||
| 118 | |||
| 119 | config ZONE_DMA32 | ||
| 120 | bool | ||
| 121 | default X86_64 | ||
| 122 | |||
| 123 | config ARCH_POPULATES_NODE_MAP | ||
| 124 | def_bool y | ||
| 125 | |||
| 126 | config AUDIT_ARCH | ||
| 127 | bool | ||
| 128 | default X86_64 | ||
| 129 | |||
| 130 | # Use the generic interrupt handling code in kernel/irq/: | ||
| 131 | config GENERIC_HARDIRQS | ||
| 132 | bool | ||
| 133 | default y | ||
| 134 | |||
| 135 | config GENERIC_IRQ_PROBE | ||
| 136 | bool | ||
| 137 | default y | ||
| 138 | |||
| 139 | config GENERIC_PENDING_IRQ | ||
| 140 | bool | ||
| 141 | depends on GENERIC_HARDIRQS && SMP | ||
| 142 | default y | ||
| 143 | |||
| 144 | config X86_SMP | ||
| 145 | bool | ||
| 146 | depends on X86_32 && SMP && !X86_VOYAGER | ||
| 147 | default y | ||
| 148 | |||
| 149 | config X86_HT | ||
| 150 | bool | ||
| 151 | depends on SMP && !(X86_VISWS || X86_VOYAGER || MK8) | ||
| 152 | default y | ||
| 153 | |||
| 154 | config X86_BIOS_REBOOT | ||
| 155 | bool | ||
| 156 | depends on X86_32 && !(X86_VISWS || X86_VOYAGER) | ||
| 157 | default y | ||
| 158 | |||
| 159 | config X86_TRAMPOLINE | ||
| 160 | bool | ||
| 161 | depends on X86_SMP || (X86_VOYAGER && SMP) | ||
| 162 | default y | ||
| 163 | |||
| 164 | config KTIME_SCALAR | ||
| 165 | def_bool X86_32 | ||
| 94 | source "init/Kconfig" | 166 | source "init/Kconfig" |
| 95 | 167 | ||
| 96 | menu "Processor type and features" | 168 | menu "Processor type and features" |
| @@ -137,6 +209,7 @@ config X86_PC | |||
| 137 | 209 | ||
| 138 | config X86_ELAN | 210 | config X86_ELAN |
| 139 | bool "AMD Elan" | 211 | bool "AMD Elan" |
| 212 | depends on X86_32 | ||
| 140 | help | 213 | help |
| 141 | Select this for an AMD Elan processor. | 214 | Select this for an AMD Elan processor. |
| 142 | 215 | ||
| @@ -146,6 +219,7 @@ config X86_ELAN | |||
| 146 | 219 | ||
| 147 | config X86_VOYAGER | 220 | config X86_VOYAGER |
| 148 | bool "Voyager (NCR)" | 221 | bool "Voyager (NCR)" |
| 222 | depends on X86_32 | ||
| 149 | select SMP if !BROKEN | 223 | select SMP if !BROKEN |
| 150 | help | 224 | help |
| 151 | Voyager is an MCA-based 32-way capable SMP architecture proprietary | 225 | Voyager is an MCA-based 32-way capable SMP architecture proprietary |
| @@ -160,6 +234,7 @@ config X86_NUMAQ | |||
| 160 | bool "NUMAQ (IBM/Sequent)" | 234 | bool "NUMAQ (IBM/Sequent)" |
| 161 | select SMP | 235 | select SMP |
| 162 | select NUMA | 236 | select NUMA |
| 237 | depends on X86_32 | ||
| 163 | help | 238 | help |
| 164 | This option is used for getting Linux to run on a (IBM/Sequent) NUMA | 239 | This option is used for getting Linux to run on a (IBM/Sequent) NUMA |
| 165 | multiquad box. This changes the way that processors are bootstrapped, | 240 | multiquad box. This changes the way that processors are bootstrapped, |
| @@ -169,7 +244,7 @@ config X86_NUMAQ | |||
| 169 | 244 | ||
| 170 | config X86_SUMMIT | 245 | config X86_SUMMIT |
| 171 | bool "Summit/EXA (IBM x440)" | 246 | bool "Summit/EXA (IBM x440)" |
| 172 | depends on SMP | 247 | depends on X86_32 && SMP |
| 173 | help | 248 | help |
| 174 | This option is needed for IBM systems that use the Summit/EXA chipset. | 249 | This option is needed for IBM systems that use the Summit/EXA chipset. |
| 175 | In particular, it is needed for the x440. | 250 | In particular, it is needed for the x440. |
| @@ -179,7 +254,7 @@ config X86_SUMMIT | |||
| 179 | 254 | ||
| 180 | config X86_BIGSMP | 255 | config X86_BIGSMP |
| 181 | bool "Support for other sub-arch SMP systems with more than 8 CPUs" | 256 | bool "Support for other sub-arch SMP systems with more than 8 CPUs" |
| 182 | depends on SMP | 257 | depends on X86_32 && SMP |
| 183 | help | 258 | help |
| 184 | This option is needed for the systems that have more than 8 CPUs | 259 | This option is needed for the systems that have more than 8 CPUs |
| 185 | and if the system is not of any sub-arch type above. | 260 | and if the system is not of any sub-arch type above. |
| @@ -188,6 +263,7 @@ config X86_BIGSMP | |||
| 188 | 263 | ||
| 189 | config X86_VISWS | 264 | config X86_VISWS |
| 190 | bool "SGI 320/540 (Visual Workstation)" | 265 | bool "SGI 320/540 (Visual Workstation)" |
| 266 | depends on X86_32 | ||
| 191 | help | 267 | help |
| 192 | The SGI Visual Workstation series is an IA32-based workstation | 268 | The SGI Visual Workstation series is an IA32-based workstation |
| 193 | based on SGI systems chips with some legacy PC hardware attached. | 269 | based on SGI systems chips with some legacy PC hardware attached. |
| @@ -199,6 +275,7 @@ config X86_VISWS | |||
| 199 | 275 | ||
| 200 | config X86_GENERICARCH | 276 | config X86_GENERICARCH |
| 201 | bool "Generic architecture (Summit, bigsmp, ES7000, default)" | 277 | bool "Generic architecture (Summit, bigsmp, ES7000, default)" |
| 278 | depends on X86_32 | ||
| 202 | help | 279 | help |
| 203 | This option compiles in the Summit, bigsmp, ES7000, default subarchitectures. | 280 | This option compiles in the Summit, bigsmp, ES7000, default subarchitectures. |
| 204 | It is intended for a generic binary kernel. | 281 | It is intended for a generic binary kernel. |
| @@ -206,18 +283,27 @@ config X86_GENERICARCH | |||
| 206 | 283 | ||
| 207 | config X86_ES7000 | 284 | config X86_ES7000 |
| 208 | bool "Support for Unisys ES7000 IA32 series" | 285 | bool "Support for Unisys ES7000 IA32 series" |
| 209 | depends on SMP | 286 | depends on X86_32 && SMP |
| 210 | help | 287 | help |
| 211 | Support for Unisys ES7000 systems. Say 'Y' here if this kernel is | 288 | Support for Unisys ES7000 systems. Say 'Y' here if this kernel is |
| 212 | supposed to run on an IA32-based Unisys ES7000 system. | 289 | supposed to run on an IA32-based Unisys ES7000 system. |
| 213 | Only choose this option if you have such a system, otherwise you | 290 | Only choose this option if you have such a system, otherwise you |
| 214 | should say N here. | 291 | should say N here. |
| 215 | 292 | ||
| 293 | config X86_VSMP | ||
| 294 | bool "Support for ScaleMP vSMP" | ||
| 295 | depends on X86_64 && PCI | ||
| 296 | help | ||
| 297 | Support for ScaleMP vSMP systems. Say 'Y' here if this kernel is | ||
| 298 | supposed to run on these EM64T-based machines. Only choose this option | ||
| 299 | if you have one of these machines. | ||
| 300 | |||
| 216 | endchoice | 301 | endchoice |
| 217 | 302 | ||
| 218 | config SCHED_NO_NO_OMIT_FRAME_POINTER | 303 | config SCHED_NO_NO_OMIT_FRAME_POINTER |
| 219 | bool "Single-depth WCHAN output" | 304 | bool "Single-depth WCHAN output" |
| 220 | default y | 305 | default y |
| 306 | depends on X86_32 | ||
| 221 | help | 307 | help |
| 222 | Calculate simpler /proc/<PID>/wchan values. If this option | 308 | Calculate simpler /proc/<PID>/wchan values. If this option |
| 223 | is disabled then wchan values will recurse back to the | 309 | is disabled then wchan values will recurse back to the |
| @@ -228,7 +314,7 @@ config SCHED_NO_NO_OMIT_FRAME_POINTER | |||
| 228 | 314 | ||
| 229 | config PARAVIRT | 315 | config PARAVIRT |
| 230 | bool | 316 | bool |
| 231 | depends on !(X86_VISWS || X86_VOYAGER) | 317 | depends on X86_32 && !(X86_VISWS || X86_VOYAGER) |
| 232 | help | 318 | help |
| 233 | This changes the kernel so it can modify itself when it is run | 319 | This changes the kernel so it can modify itself when it is run |
| 234 | under a hypervisor, potentially improving performance significantly | 320 | under a hypervisor, potentially improving performance significantly |
| @@ -237,6 +323,7 @@ config PARAVIRT | |||
| 237 | 323 | ||
| 238 | menuconfig PARAVIRT_GUEST | 324 | menuconfig PARAVIRT_GUEST |
| 239 | bool "Paravirtualized guest support" | 325 | bool "Paravirtualized guest support" |
| 326 | depends on X86_32 | ||
| 240 | help | 327 | help |
| 241 | Say Y here to get to see options related to running Linux under | 328 | Say Y here to get to see options related to running Linux under |
| 242 | various hypervisors. This option alone does not add any kernel code. | 329 | various hypervisors. This option alone does not add any kernel code. |
| @@ -264,7 +351,7 @@ endif | |||
| 264 | config ACPI_SRAT | 351 | config ACPI_SRAT |
| 265 | bool | 352 | bool |
| 266 | default y | 353 | default y |
| 267 | depends on ACPI && NUMA && (X86_SUMMIT || X86_GENERICARCH) | 354 | depends on X86_32 && ACPI && NUMA && (X86_SUMMIT || X86_GENERICARCH) |
| 268 | select ACPI_NUMA | 355 | select ACPI_NUMA |
| 269 | 356 | ||
| 270 | config HAVE_ARCH_PARSE_SRAT | 357 | config HAVE_ARCH_PARSE_SRAT |
| @@ -275,12 +362,12 @@ config HAVE_ARCH_PARSE_SRAT | |||
| 275 | config X86_SUMMIT_NUMA | 362 | config X86_SUMMIT_NUMA |
| 276 | bool | 363 | bool |
| 277 | default y | 364 | default y |
| 278 | depends on NUMA && (X86_SUMMIT || X86_GENERICARCH) | 365 | depends on X86_32 && NUMA && (X86_SUMMIT || X86_GENERICARCH) |
| 279 | 366 | ||
| 280 | config X86_CYCLONE_TIMER | 367 | config X86_CYCLONE_TIMER |
| 281 | bool | 368 | bool |
| 282 | default y | 369 | default y |
| 283 | depends on X86_SUMMIT || X86_GENERICARCH | 370 | depends on X86_32 && X86_SUMMIT || X86_GENERICARCH |
| 284 | 371 | ||
| 285 | config ES7000_CLUSTERED_APIC | 372 | config ES7000_CLUSTERED_APIC |
| 286 | bool | 373 | bool |
| @@ -290,21 +377,89 @@ config ES7000_CLUSTERED_APIC | |||
| 290 | source "arch/x86/Kconfig.cpu" | 377 | source "arch/x86/Kconfig.cpu" |
| 291 | 378 | ||
| 292 | config HPET_TIMER | 379 | config HPET_TIMER |
| 293 | bool "HPET Timer Support" | 380 | bool |
| 381 | prompt "HPET Timer Support" if X86_32 | ||
| 382 | default X86_64 | ||
| 294 | help | 383 | help |
| 295 | This enables the use of the HPET for the kernel's internal timer. | 384 | Use the IA-PC HPET (High Precision Event Timer) to manage |
| 296 | HPET is the next generation timer replacing legacy 8254s. | 385 | time in preference to the PIT and RTC, if a HPET is |
| 297 | You can safely choose Y here. However, HPET will only be | 386 | present. |
| 298 | activated if the platform and the BIOS support this feature. | 387 | HPET is the next generation timer replacing legacy 8254s. |
| 299 | Otherwise the 8254 will be used for timing services. | 388 | The HPET provides a stable time base on SMP |
| 389 | systems, unlike the TSC, but it is more expensive to access, | ||
| 390 | as it is off-chip. You can find the HPET spec at | ||
| 391 | <http://www.intel.com/hardwaredesign/hpetspec.htm>. | ||
| 392 | |||
| 393 | You can safely choose Y here. However, HPET will only be | ||
| 394 | activated if the platform and the BIOS support this feature. | ||
| 395 | Otherwise the 8254 will be used for timing services. | ||
| 300 | 396 | ||
| 301 | Choose N to continue using the legacy 8254 timer. | 397 | Choose N to continue using the legacy 8254 timer. |
| 302 | 398 | ||
| 303 | config HPET_EMULATE_RTC | 399 | config HPET_EMULATE_RTC |
| 304 | bool | 400 | bool |
| 305 | depends on HPET_TIMER && RTC=y | 401 | depends on HPET_TIMER && RTC=y |
| 306 | default y | 402 | default y |
| 307 | 403 | ||
| 404 | # Mark as embedded because too many people got it wrong. | ||
| 405 | # The code disables itself when not needed. | ||
| 406 | config GART_IOMMU | ||
| 407 | bool "GART IOMMU support" if EMBEDDED | ||
| 408 | default y | ||
| 409 | select SWIOTLB | ||
| 410 | select AGP | ||
| 411 | depends on X86_64 && PCI | ||
| 412 | help | ||
| 413 | Support for full DMA access of devices with 32bit memory access only | ||
| 414 | on systems with more than 3GB. This is usually needed for USB, | ||
| 415 | sound, many IDE/SATA chipsets and some other devices. | ||
| 416 | Provides a driver for the AMD Athlon64/Opteron/Turion/Sempron GART | ||
| 417 | based hardware IOMMU and a software bounce buffer based IOMMU used | ||
| 418 | on Intel systems and as fallback. | ||
| 419 | The code is only active when needed (enough memory and limited | ||
| 420 | device) unless CONFIG_IOMMU_DEBUG or iommu=force is specified | ||
| 421 | too. | ||
| 422 | |||
| 423 | config CALGARY_IOMMU | ||
| 424 | bool "IBM Calgary IOMMU support" | ||
| 425 | select SWIOTLB | ||
| 426 | depends on X86_64 && PCI && EXPERIMENTAL | ||
| 427 | help | ||
| 428 | Support for hardware IOMMUs in IBM's xSeries x366 and x460 | ||
| 429 | systems. Needed to run systems with more than 3GB of memory | ||
| 430 | properly with 32-bit PCI devices that do not support DAC | ||
| 431 | (Double Address Cycle). Calgary also supports bus level | ||
| 432 | isolation, where all DMAs pass through the IOMMU. This | ||
| 433 | prevents them from going anywhere except their intended | ||
| 434 | destination. This catches hard-to-find kernel bugs and | ||
| 435 | mis-behaving drivers and devices that do not use the DMA-API | ||
| 436 | properly to set up their DMA buffers. The IOMMU can be | ||
| 437 | turned off at boot time with the iommu=off parameter. | ||
| 438 | Normally the kernel will make the right choice by itself. | ||
| 439 | If unsure, say Y. | ||
| 440 | |||
| 441 | config CALGARY_IOMMU_ENABLED_BY_DEFAULT | ||
| 442 | bool "Should Calgary be enabled by default?" | ||
| 443 | default y | ||
| 444 | depends on CALGARY_IOMMU | ||
| 445 | help | ||
| 446 | Should Calgary be enabled by default? if you choose 'y', Calgary | ||
| 447 | will be used (if it exists). If you choose 'n', Calgary will not be | ||
| 448 | used even if it exists. If you choose 'n' and would like to use | ||
| 449 | Calgary anyway, pass 'iommu=calgary' on the kernel command line. | ||
| 450 | If unsure, say Y. | ||
| 451 | |||
| 452 | # need this always selected by IOMMU for the VIA workaround | ||
| 453 | config SWIOTLB | ||
| 454 | bool | ||
| 455 | help | ||
| 456 | Support for software bounce buffers used on x86-64 systems | ||
| 457 | which don't have a hardware IOMMU (e.g. the current generation | ||
| 458 | of Intel's x86-64 CPUs). Using this PCI devices which can only | ||
| 459 | access 32-bits of memory can be used on systems with more than | ||
| 460 | 3 GB of memory. If unsure, say Y. | ||
| 461 | |||
| 462 | |||
| 308 | config NR_CPUS | 463 | config NR_CPUS |
| 309 | int "Maximum number of CPUs (2-255)" | 464 | int "Maximum number of CPUs (2-255)" |
| 310 | range 2 255 | 465 | range 2 255 |
| @@ -321,7 +476,7 @@ config NR_CPUS | |||
| 321 | 476 | ||
| 322 | config SCHED_SMT | 477 | config SCHED_SMT |
| 323 | bool "SMT (Hyperthreading) scheduler support" | 478 | bool "SMT (Hyperthreading) scheduler support" |
| 324 | depends on X86_HT | 479 | depends on (X86_64 && SMP) || (X86_32 && X86_HT) |
| 325 | help | 480 | help |
| 326 | SMT scheduler support improves the CPU scheduler's decision making | 481 | SMT scheduler support improves the CPU scheduler's decision making |
| 327 | when dealing with Intel Pentium 4 chips with HyperThreading at a | 482 | when dealing with Intel Pentium 4 chips with HyperThreading at a |
| @@ -330,7 +485,7 @@ config SCHED_SMT | |||
| 330 | 485 | ||
| 331 | config SCHED_MC | 486 | config SCHED_MC |
| 332 | bool "Multi-core scheduler support" | 487 | bool "Multi-core scheduler support" |
| 333 | depends on X86_HT | 488 | depends on (X86_64 && SMP) || (X86_32 && X86_HT) |
| 334 | default y | 489 | default y |
| 335 | help | 490 | help |
| 336 | Multi-core scheduler support improves the CPU scheduler's decision | 491 | Multi-core scheduler support improves the CPU scheduler's decision |
| @@ -341,7 +496,7 @@ source "kernel/Kconfig.preempt" | |||
| 341 | 496 | ||
| 342 | config X86_UP_APIC | 497 | config X86_UP_APIC |
| 343 | bool "Local APIC support on uniprocessors" | 498 | bool "Local APIC support on uniprocessors" |
| 344 | depends on !SMP && !(X86_VISWS || X86_VOYAGER || X86_GENERICARCH) | 499 | depends on X86_32 && !SMP && !(X86_VISWS || X86_VOYAGER || X86_GENERICARCH) |
| 345 | help | 500 | help |
| 346 | A local APIC (Advanced Programmable Interrupt Controller) is an | 501 | A local APIC (Advanced Programmable Interrupt Controller) is an |
| 347 | integrated interrupt controller in the CPU. If you have a single-CPU | 502 | integrated interrupt controller in the CPU. If you have a single-CPU |
| @@ -366,17 +521,17 @@ config X86_UP_IOAPIC | |||
| 366 | 521 | ||
| 367 | config X86_LOCAL_APIC | 522 | config X86_LOCAL_APIC |
| 368 | bool | 523 | bool |
| 369 | depends on X86_UP_APIC || ((X86_VISWS || SMP) && !X86_VOYAGER) || X86_GENERICARCH | 524 | depends on X86_64 || (X86_32 && (X86_UP_APIC || ((X86_VISWS || SMP) && !X86_VOYAGER) || X86_GENERICARCH)) |
| 370 | default y | 525 | default y |
| 371 | 526 | ||
| 372 | config X86_IO_APIC | 527 | config X86_IO_APIC |
| 373 | bool | 528 | bool |
| 374 | depends on X86_UP_IOAPIC || (SMP && !(X86_VISWS || X86_VOYAGER)) || X86_GENERICARCH | 529 | depends on X86_64 || (X86_32 && (X86_UP_IOAPIC || (SMP && !(X86_VISWS || X86_VOYAGER)) || X86_GENERICARCH)) |
| 375 | default y | 530 | default y |
| 376 | 531 | ||
| 377 | config X86_VISWS_APIC | 532 | config X86_VISWS_APIC |
| 378 | bool | 533 | bool |
| 379 | depends on X86_VISWS | 534 | depends on X86_32 && X86_VISWS |
| 380 | default y | 535 | default y |
| 381 | 536 | ||
| 382 | config X86_MCE | 537 | config X86_MCE |
| @@ -396,9 +551,25 @@ config X86_MCE | |||
| 396 | to disable it. MCE support simply ignores non-MCE processors like | 551 | to disable it. MCE support simply ignores non-MCE processors like |
| 397 | the 386 and 486, so nearly everyone can say Y here. | 552 | the 386 and 486, so nearly everyone can say Y here. |
| 398 | 553 | ||
| 554 | config X86_MCE_INTEL | ||
| 555 | bool "Intel MCE features" | ||
| 556 | depends on X86_64 && X86_MCE && X86_LOCAL_APIC | ||
| 557 | default y | ||
| 558 | help | ||
| 559 | Additional support for intel specific MCE features such as | ||
| 560 | the thermal monitor. | ||
| 561 | |||
| 562 | config X86_MCE_AMD | ||
| 563 | bool "AMD MCE features" | ||
| 564 | depends on X86_64 && X86_MCE && X86_LOCAL_APIC | ||
| 565 | default y | ||
| 566 | help | ||
| 567 | Additional support for AMD specific MCE features such as | ||
| 568 | the DRAM Error Threshold. | ||
| 569 | |||
| 399 | config X86_MCE_NONFATAL | 570 | config X86_MCE_NONFATAL |
| 400 | tristate "Check for non-fatal errors on AMD Athlon/Duron / Intel Pentium 4" | 571 | tristate "Check for non-fatal errors on AMD Athlon/Duron / Intel Pentium 4" |
| 401 | depends on X86_MCE | 572 | depends on X86_32 && X86_MCE |
| 402 | help | 573 | help |
| 403 | Enabling this feature starts a timer that triggers every 5 seconds which | 574 | Enabling this feature starts a timer that triggers every 5 seconds which |
| 404 | will look at the machine check registers to see if anything happened. | 575 | will look at the machine check registers to see if anything happened. |
| @@ -411,14 +582,15 @@ config X86_MCE_NONFATAL | |||
| 411 | 582 | ||
| 412 | config X86_MCE_P4THERMAL | 583 | config X86_MCE_P4THERMAL |
| 413 | bool "check for P4 thermal throttling interrupt." | 584 | bool "check for P4 thermal throttling interrupt." |
| 414 | depends on X86_MCE && (X86_UP_APIC || SMP) && !X86_VISWS | 585 | depends on X86_32 && X86_MCE && (X86_UP_APIC || SMP) && !X86_VISWS |
| 415 | help | 586 | help |
| 416 | Enabling this feature will cause a message to be printed when the P4 | 587 | Enabling this feature will cause a message to be printed when the P4 |
| 417 | enters thermal throttling. | 588 | enters thermal throttling. |
| 418 | 589 | ||
| 419 | config VM86 | 590 | config VM86 |
| 420 | default y | ||
| 421 | bool "Enable VM86 support" if EMBEDDED | 591 | bool "Enable VM86 support" if EMBEDDED |
| 592 | default y | ||
| 593 | depends on X86_32 | ||
| 422 | help | 594 | help |
| 423 | This option is required by programs like DOSEMU to run 16-bit legacy | 595 | This option is required by programs like DOSEMU to run 16-bit legacy |
| 424 | code on X86 processors. It also may be needed by software like | 596 | code on X86 processors. It also may be needed by software like |
| @@ -427,6 +599,7 @@ config VM86 | |||
| 427 | 599 | ||
| 428 | config TOSHIBA | 600 | config TOSHIBA |
| 429 | tristate "Toshiba Laptop support" | 601 | tristate "Toshiba Laptop support" |
| 602 | depends on X86_32 | ||
| 430 | ---help--- | 603 | ---help--- |
| 431 | This adds a driver to safely access the System Management Mode of | 604 | This adds a driver to safely access the System Management Mode of |
| 432 | the CPU on Toshiba portables with a genuine Toshiba BIOS. It does | 605 | the CPU on Toshiba portables with a genuine Toshiba BIOS. It does |
| @@ -442,6 +615,7 @@ config TOSHIBA | |||
| 442 | 615 | ||
| 443 | config I8K | 616 | config I8K |
| 444 | tristate "Dell laptop support" | 617 | tristate "Dell laptop support" |
| 618 | depends on X86_32 | ||
| 445 | ---help--- | 619 | ---help--- |
| 446 | This adds a driver to safely access the System Management Mode | 620 | This adds a driver to safely access the System Management Mode |
| 447 | of the CPU on the Dell Inspiron 8000. The System Management Mode | 621 | of the CPU on the Dell Inspiron 8000. The System Management Mode |
| @@ -462,7 +636,7 @@ config I8K | |||
| 462 | 636 | ||
| 463 | config X86_REBOOTFIXUPS | 637 | config X86_REBOOTFIXUPS |
| 464 | bool "Enable X86 board specific fixups for reboot" | 638 | bool "Enable X86 board specific fixups for reboot" |
| 465 | depends on X86 | 639 | depends on X86_32 && X86 |
| 466 | default n | 640 | default n |
| 467 | ---help--- | 641 | ---help--- |
| 468 | This enables chipset and/or board specific fixups to be done | 642 | This enables chipset and/or board specific fixups to be done |
| @@ -517,12 +691,11 @@ config X86_CPUID | |||
| 517 | with major 203 and minors 0 to 31 for /dev/cpu/0/cpuid to | 691 | with major 203 and minors 0 to 31 for /dev/cpu/0/cpuid to |
| 518 | /dev/cpu/31/cpuid. | 692 | /dev/cpu/31/cpuid. |
| 519 | 693 | ||
| 520 | source "drivers/firmware/Kconfig" | ||
| 521 | |||
| 522 | choice | 694 | choice |
| 523 | prompt "High Memory Support" | 695 | prompt "High Memory Support" |
| 524 | default HIGHMEM4G if !X86_NUMAQ | 696 | default HIGHMEM4G if !X86_NUMAQ |
| 525 | default HIGHMEM64G if X86_NUMAQ | 697 | default HIGHMEM64G if X86_NUMAQ |
| 698 | depends on X86_32 | ||
| 526 | 699 | ||
| 527 | config NOHIGHMEM | 700 | config NOHIGHMEM |
| 528 | bool "off" | 701 | bool "off" |
| @@ -582,6 +755,7 @@ choice | |||
| 582 | depends on EXPERIMENTAL | 755 | depends on EXPERIMENTAL |
| 583 | prompt "Memory split" if EMBEDDED | 756 | prompt "Memory split" if EMBEDDED |
| 584 | default VMSPLIT_3G | 757 | default VMSPLIT_3G |
| 758 | depends on X86_32 | ||
| 585 | help | 759 | help |
| 586 | Select the desired split between kernel and user memory. | 760 | Select the desired split between kernel and user memory. |
| 587 | 761 | ||
| @@ -619,16 +793,17 @@ config PAGE_OFFSET | |||
| 619 | default 0x78000000 if VMSPLIT_2G_OPT | 793 | default 0x78000000 if VMSPLIT_2G_OPT |
| 620 | default 0x40000000 if VMSPLIT_1G | 794 | default 0x40000000 if VMSPLIT_1G |
| 621 | default 0xC0000000 | 795 | default 0xC0000000 |
| 796 | depends on X86_32 | ||
| 622 | 797 | ||
| 623 | config HIGHMEM | 798 | config HIGHMEM |
| 624 | bool | 799 | bool |
| 625 | depends on HIGHMEM64G || HIGHMEM4G | 800 | depends on X86_32 && (HIGHMEM64G || HIGHMEM4G) |
| 626 | default y | 801 | default y |
| 627 | 802 | ||
| 628 | config X86_PAE | 803 | config X86_PAE |
| 629 | bool "PAE (Physical Address Extension) Support" | 804 | bool "PAE (Physical Address Extension) Support" |
| 630 | default n | 805 | default n |
| 631 | depends on !HIGHMEM4G | 806 | depends on X86_32 && !HIGHMEM4G |
| 632 | select RESOURCES_64BIT | 807 | select RESOURCES_64BIT |
| 633 | help | 808 | help |
| 634 | PAE is required for NX support, and furthermore enables | 809 | PAE is required for NX support, and furthermore enables |
| @@ -639,46 +814,82 @@ config X86_PAE | |||
| 639 | # Common NUMA Features | 814 | # Common NUMA Features |
| 640 | config NUMA | 815 | config NUMA |
| 641 | bool "Numa Memory Allocation and Scheduler Support (EXPERIMENTAL)" | 816 | bool "Numa Memory Allocation and Scheduler Support (EXPERIMENTAL)" |
| 642 | depends on SMP && HIGHMEM64G && (X86_NUMAQ || (X86_SUMMIT || X86_GENERICARCH) && ACPI) && EXPERIMENTAL | 817 | depends on SMP |
| 818 | depends on X86_64 || (X86_32 && HIGHMEM64G && (X86_NUMAQ || (X86_SUMMIT || X86_GENERICARCH) && ACPI) && EXPERIMENTAL) | ||
| 643 | default n if X86_PC | 819 | default n if X86_PC |
| 644 | default y if (X86_NUMAQ || X86_SUMMIT) | 820 | default y if (X86_NUMAQ || X86_SUMMIT) |
| 645 | help | 821 | help |
| 646 | NUMA support for i386. This is currently highly experimental | 822 | Enable NUMA (Non Uniform Memory Access) support. |
| 647 | and should be only used for kernel development. It might also | 823 | The kernel will try to allocate memory used by a CPU on the |
| 648 | cause boot failures. | 824 | local memory controller of the CPU and add some more |
| 825 | NUMA awareness to the kernel. | ||
| 826 | |||
| 827 | For i386 this is currently highly experimental and should be only | ||
| 828 | used for kernel development. It might also cause boot failures. | ||
| 829 | For x86_64 this is recommended on all multiprocessor Opteron systems. | ||
| 830 | If the system is EM64T, you should say N unless your system is | ||
| 831 | EM64T NUMA. | ||
| 649 | 832 | ||
| 650 | comment "NUMA (Summit) requires SMP, 64GB highmem support, ACPI" | 833 | comment "NUMA (Summit) requires SMP, 64GB highmem support, ACPI" |
| 651 | depends on X86_SUMMIT && (!HIGHMEM64G || !ACPI) | 834 | depends on X86_32 && X86_SUMMIT && (!HIGHMEM64G || !ACPI) |
| 835 | |||
| 836 | config K8_NUMA | ||
| 837 | bool "Old style AMD Opteron NUMA detection" | ||
| 838 | depends on X86_64 && NUMA && PCI | ||
| 839 | default y | ||
| 840 | help | ||
| 841 | Enable K8 NUMA node topology detection. You should say Y here if | ||
| 842 | you have a multi processor AMD K8 system. This uses an old | ||
| 843 | method to read the NUMA configuration directly from the builtin | ||
| 844 | Northbridge of Opteron. It is recommended to use X86_64_ACPI_NUMA | ||
| 845 | instead, which also takes priority if both are compiled in. | ||
| 846 | |||
| 847 | config X86_64_ACPI_NUMA | ||
| 848 | bool "ACPI NUMA detection" | ||
| 849 | depends on X86_64 && NUMA && ACPI && PCI | ||
| 850 | select ACPI_NUMA | ||
| 851 | default y | ||
| 852 | help | ||
| 853 | Enable ACPI SRAT based node topology detection. | ||
| 854 | |||
| 855 | config NUMA_EMU | ||
| 856 | bool "NUMA emulation" | ||
| 857 | depends on X86_64 && NUMA | ||
| 858 | help | ||
| 859 | Enable NUMA emulation. A flat machine will be split | ||
| 860 | into virtual nodes when booted with "numa=fake=N", where N is the | ||
| 861 | number of nodes. This is only useful for debugging. | ||
| 652 | 862 | ||
| 653 | config NODES_SHIFT | 863 | config NODES_SHIFT |
| 654 | int | 864 | int |
| 865 | default "6" if X86_64 | ||
| 655 | default "4" if X86_NUMAQ | 866 | default "4" if X86_NUMAQ |
| 656 | default "3" | 867 | default "3" |
| 657 | depends on NEED_MULTIPLE_NODES | 868 | depends on NEED_MULTIPLE_NODES |
| 658 | 869 | ||
| 659 | config HAVE_ARCH_BOOTMEM_NODE | 870 | config HAVE_ARCH_BOOTMEM_NODE |
| 660 | bool | 871 | bool |
| 661 | depends on NUMA | 872 | depends on X86_32 && NUMA |
| 662 | default y | 873 | default y |
| 663 | 874 | ||
| 664 | config ARCH_HAVE_MEMORY_PRESENT | 875 | config ARCH_HAVE_MEMORY_PRESENT |
| 665 | bool | 876 | bool |
| 666 | depends on DISCONTIGMEM | 877 | depends on X86_32 && DISCONTIGMEM |
| 667 | default y | 878 | default y |
| 668 | 879 | ||
| 669 | config NEED_NODE_MEMMAP_SIZE | 880 | config NEED_NODE_MEMMAP_SIZE |
| 670 | bool | 881 | bool |
| 671 | depends on DISCONTIGMEM || SPARSEMEM | 882 | depends on X86_32 && (DISCONTIGMEM || SPARSEMEM) |
| 672 | default y | 883 | default y |
| 673 | 884 | ||
| 674 | config HAVE_ARCH_ALLOC_REMAP | 885 | config HAVE_ARCH_ALLOC_REMAP |
| 675 | bool | 886 | bool |
| 676 | depends on NUMA | 887 | depends on X86_32 && NUMA |
| 677 | default y | 888 | default y |
| 678 | 889 | ||
| 679 | config ARCH_FLATMEM_ENABLE | 890 | config ARCH_FLATMEM_ENABLE |
| 680 | def_bool y | 891 | def_bool y |
| 681 | depends on (ARCH_SELECT_MEMORY_MODEL && X86_PC) | 892 | depends on (X86_32 && ARCH_SELECT_MEMORY_MODEL && X86_PC) || (X86_64 && !NUMA) |
| 682 | 893 | ||
| 683 | config ARCH_DISCONTIGMEM_ENABLE | 894 | config ARCH_DISCONTIGMEM_ENABLE |
| 684 | def_bool y | 895 | def_bool y |
| @@ -690,21 +901,23 @@ config ARCH_DISCONTIGMEM_DEFAULT | |||
| 690 | 901 | ||
| 691 | config ARCH_SPARSEMEM_ENABLE | 902 | config ARCH_SPARSEMEM_ENABLE |
| 692 | def_bool y | 903 | def_bool y |
| 693 | depends on (NUMA || (X86_PC && EXPERIMENTAL)) | 904 | depends on NUMA || (EXPERIMENTAL && (X86_PC || X86_64)) |
| 694 | select SPARSEMEM_STATIC | 905 | select SPARSEMEM_STATIC if X86_32 |
| 906 | select SPARSEMEM_VMEMMAP_ENABLE if X86_64 | ||
| 695 | 907 | ||
| 696 | config ARCH_SELECT_MEMORY_MODEL | 908 | config ARCH_SELECT_MEMORY_MODEL |
| 697 | def_bool y | 909 | def_bool y |
| 698 | depends on ARCH_SPARSEMEM_ENABLE | 910 | depends on X86_32 && ARCH_SPARSEMEM_ENABLE |
| 699 | 911 | ||
| 700 | config ARCH_POPULATES_NODE_MAP | 912 | config ARCH_MEMORY_PROBE |
| 701 | def_bool y | 913 | def_bool X86_64 |
| 914 | depends on MEMORY_HOTPLUG | ||
| 702 | 915 | ||
| 703 | source "mm/Kconfig" | 916 | source "mm/Kconfig" |
| 704 | 917 | ||
| 705 | config HIGHPTE | 918 | config HIGHPTE |
| 706 | bool "Allocate 3rd-level pagetables from highmem" | 919 | bool "Allocate 3rd-level pagetables from highmem" |
| 707 | depends on HIGHMEM4G || HIGHMEM64G | 920 | depends on X86_32 && (HIGHMEM4G || HIGHMEM64G) |
| 708 | help | 921 | help |
| 709 | The VM uses one page table entry for each page of physical memory. | 922 | The VM uses one page table entry for each page of physical memory. |
| 710 | For systems with a lot of RAM, this can be wasteful of precious | 923 | For systems with a lot of RAM, this can be wasteful of precious |
| @@ -712,7 +925,8 @@ config HIGHPTE | |||
| 712 | entries in high memory. | 925 | entries in high memory. |
| 713 | 926 | ||
| 714 | config MATH_EMULATION | 927 | config MATH_EMULATION |
| 715 | bool "Math emulation" | 928 | bool |
| 929 | prompt "Math emulation" if X86_32 | ||
| 716 | ---help--- | 930 | ---help--- |
| 717 | Linux can emulate a math coprocessor (used for floating point | 931 | Linux can emulate a math coprocessor (used for floating point |
| 718 | operations) if you don't have one. 486DX and Pentium processors have | 932 | operations) if you don't have one. 486DX and Pentium processors have |
| @@ -772,7 +986,7 @@ config MTRR | |||
| 772 | 986 | ||
| 773 | config EFI | 987 | config EFI |
| 774 | bool "Boot from EFI support" | 988 | bool "Boot from EFI support" |
| 775 | depends on ACPI | 989 | depends on X86_32 && ACPI |
| 776 | default n | 990 | default n |
| 777 | ---help--- | 991 | ---help--- |
| 778 | This enables the kernel to boot on EFI platforms using | 992 | This enables the kernel to boot on EFI platforms using |
| @@ -789,18 +1003,18 @@ config EFI | |||
| 789 | kernel should continue to boot on existing non-EFI platforms. | 1003 | kernel should continue to boot on existing non-EFI platforms. |
| 790 | 1004 | ||
| 791 | config IRQBALANCE | 1005 | config IRQBALANCE |
| 792 | bool "Enable kernel irq balancing" | 1006 | bool "Enable kernel irq balancing" |
| 793 | depends on SMP && X86_IO_APIC | 1007 | depends on X86_32 && SMP && X86_IO_APIC |
| 794 | default y | 1008 | default y |
| 795 | help | 1009 | help |
| 796 | The default yes will allow the kernel to do irq load balancing. | 1010 | The default yes will allow the kernel to do irq load balancing. |
| 797 | Saying no will keep the kernel from doing irq load balancing. | 1011 | Saying no will keep the kernel from doing irq load balancing. |
| 798 | 1012 | ||
| 799 | # turning this on wastes a bunch of space. | 1013 | # turning this on wastes a bunch of space. |
| 800 | # Summit needs it only when NUMA is on | 1014 | # Summit needs it only when NUMA is on |
| 801 | config BOOT_IOREMAP | 1015 | config BOOT_IOREMAP |
| 802 | bool | 1016 | bool |
| 803 | depends on (((X86_SUMMIT || X86_GENERICARCH) && NUMA) || (X86 && EFI)) | 1017 | depends on X86_32 && (((X86_SUMMIT || X86_GENERICARCH) && NUMA) || (X86 && EFI)) |
| 804 | default y | 1018 | default y |
| 805 | 1019 | ||
| 806 | config SECCOMP | 1020 | config SECCOMP |
| @@ -820,6 +1034,30 @@ config SECCOMP | |||
| 820 | 1034 | ||
| 821 | If unsure, say Y. Only embedded should say N here. | 1035 | If unsure, say Y. Only embedded should say N here. |
| 822 | 1036 | ||
| 1037 | config CC_STACKPROTECTOR | ||
| 1038 | bool "Enable -fstack-protector buffer overflow detection (EXPERIMENTAL)" | ||
| 1039 | depends on X86_64 && EXPERIMENTAL | ||
| 1040 | help | ||
| 1041 | This option turns on the -fstack-protector GCC feature. This | ||
| 1042 | feature puts, at the beginning of critical functions, a canary | ||
| 1043 | value on the stack just before the return address, and validates | ||
| 1044 | the value just before actually returning. Stack based buffer | ||
| 1045 | overflows (that need to overwrite this return address) now also | ||
| 1046 | overwrite the canary, which gets detected and the attack is then | ||
| 1047 | neutralized via a kernel panic. | ||
| 1048 | |||
| 1049 | This feature requires gcc version 4.2 or above, or a distribution | ||
| 1050 | gcc with the feature backported. Older versions are automatically | ||
| 1051 | detected and for those versions, this configuration option is ignored. | ||
| 1052 | |||
| 1053 | config CC_STACKPROTECTOR_ALL | ||
| 1054 | bool "Use stack-protector for all functions" | ||
| 1055 | depends on CC_STACKPROTECTOR | ||
| 1056 | help | ||
| 1057 | Normally, GCC only inserts the canary value protection for | ||
| 1058 | functions that use large-ish on-stack buffers. By enabling | ||
| 1059 | this option, GCC will be asked to do this for ALL functions. | ||
| 1060 | |||
| 823 | source kernel/Kconfig.hz | 1061 | source kernel/Kconfig.hz |
| 824 | 1062 | ||
| 825 | config KEXEC | 1063 | config KEXEC |
| @@ -841,7 +1079,7 @@ config KEXEC | |||
| 841 | config CRASH_DUMP | 1079 | config CRASH_DUMP |
| 842 | bool "kernel crash dumps (EXPERIMENTAL)" | 1080 | bool "kernel crash dumps (EXPERIMENTAL)" |
| 843 | depends on EXPERIMENTAL | 1081 | depends on EXPERIMENTAL |
| 844 | depends on HIGHMEM | 1082 | depends on X86_64 || (X86_32 && HIGHMEM) |
| 845 | help | 1083 | help |
| 846 | Generate crash dump after being started by kexec. | 1084 | Generate crash dump after being started by kexec. |
| 847 | This should be normally only set in special crash dump kernels | 1085 | This should be normally only set in special crash dump kernels |
| @@ -856,6 +1094,7 @@ config CRASH_DUMP | |||
| 856 | config PHYSICAL_START | 1094 | config PHYSICAL_START |
| 857 | hex "Physical address where the kernel is loaded" if (EMBEDDED || CRASH_DUMP) | 1095 | hex "Physical address where the kernel is loaded" if (EMBEDDED || CRASH_DUMP) |
| 858 | default "0x1000000" if X86_NUMAQ | 1096 | default "0x1000000" if X86_NUMAQ |
| 1097 | default "0x200000" if X86_64 | ||
| 859 | default "0x100000" | 1098 | default "0x100000" |
| 860 | help | 1099 | help |
| 861 | This gives the physical address where the kernel is loaded. | 1100 | This gives the physical address where the kernel is loaded. |
| @@ -908,25 +1147,31 @@ config RELOCATABLE | |||
| 908 | must live at a different physical address than the primary | 1147 | must live at a different physical address than the primary |
| 909 | kernel. | 1148 | kernel. |
| 910 | 1149 | ||
| 1150 | Note: If CONFIG_RELOCATABLE=y, then the kernel runs from the address | ||
| 1151 | it has been loaded at and the compile time physical address | ||
| 1152 | (CONFIG_PHYSICAL_START) is ignored. | ||
| 1153 | |||
| 911 | config PHYSICAL_ALIGN | 1154 | config PHYSICAL_ALIGN |
| 912 | hex "Alignment value to which kernel should be aligned" | 1155 | hex |
| 913 | default "0x100000" | 1156 | prompt "Alignment value to which kernel should be aligned" if X86_32 |
| 1157 | default "0x100000" if X86_32 | ||
| 1158 | default "0x200000" if X86_64 | ||
| 914 | range 0x2000 0x400000 | 1159 | range 0x2000 0x400000 |
| 915 | help | 1160 | help |
| 916 | This value puts the alignment restrictions on physical address | 1161 | This value puts the alignment restrictions on physical address |
| 917 | where kernel is loaded and run from. Kernel is compiled for an | 1162 | where kernel is loaded and run from. Kernel is compiled for an |
| 918 | address which meets above alignment restriction. | 1163 | address which meets above alignment restriction. |
| 919 | 1164 | ||
| 920 | If bootloader loads the kernel at a non-aligned address and | 1165 | If bootloader loads the kernel at a non-aligned address and |
| 921 | CONFIG_RELOCATABLE is set, kernel will move itself to nearest | 1166 | CONFIG_RELOCATABLE is set, kernel will move itself to nearest |
| 922 | address aligned to above value and run from there. | 1167 | address aligned to above value and run from there. |
| 923 | 1168 | ||
| 924 | If bootloader loads the kernel at a non-aligned address and | 1169 | If bootloader loads the kernel at a non-aligned address and |
| 925 | CONFIG_RELOCATABLE is not set, kernel will ignore the run time | 1170 | CONFIG_RELOCATABLE is not set, kernel will ignore the run time |
| 926 | load address and decompress itself to the address it has been | 1171 | load address and decompress itself to the address it has been |
| 927 | compiled for and run from there. The address for which kernel is | 1172 | compiled for and run from there. The address for which kernel is |
| 928 | compiled already meets above alignment restrictions. Hence the | 1173 | compiled already meets above alignment restrictions. Hence the |
| 929 | end result is that kernel runs from a physical address meeting | 1174 | end result is that kernel runs from a physical address meeting |
| 930 | above alignment restrictions. | 1175 | above alignment restrictions. |
| 931 | 1176 | ||
| 932 | Don't change this unless you know what you are doing. | 1177 | Don't change this unless you know what you are doing. |
| @@ -938,10 +1183,13 @@ config HOTPLUG_CPU | |||
| 938 | Say Y here to experiment with turning CPUs off and on, and to | 1183 | Say Y here to experiment with turning CPUs off and on, and to |
| 939 | enable suspend on SMP systems. CPUs can be controlled through | 1184 | enable suspend on SMP systems. CPUs can be controlled through |
| 940 | /sys/devices/system/cpu. | 1185 | /sys/devices/system/cpu. |
| 1186 | Say N if you want to disable CPU hotplug and don't need to | ||
| 1187 | suspend. | ||
| 941 | 1188 | ||
| 942 | config COMPAT_VDSO | 1189 | config COMPAT_VDSO |
| 943 | bool "Compat VDSO support" | 1190 | bool "Compat VDSO support" |
| 944 | default y | 1191 | default y |
| 1192 | depends on X86_32 | ||
| 945 | help | 1193 | help |
| 946 | Map the VDSO to the predictable old-style address too. | 1194 | Map the VDSO to the predictable old-style address too. |
| 947 | ---help--- | 1195 | ---help--- |
| @@ -955,18 +1203,35 @@ endmenu | |||
| 955 | 1203 | ||
| 956 | config ARCH_ENABLE_MEMORY_HOTPLUG | 1204 | config ARCH_ENABLE_MEMORY_HOTPLUG |
| 957 | def_bool y | 1205 | def_bool y |
| 958 | depends on HIGHMEM | 1206 | depends on X86_64 || (X86_32 && HIGHMEM) |
| 1207 | |||
| 1208 | config MEMORY_HOTPLUG_RESERVE | ||
| 1209 | def_bool X86_64 | ||
| 1210 | depends on (MEMORY_HOTPLUG && DISCONTIGMEM) | ||
| 1211 | |||
| 1212 | config HAVE_ARCH_EARLY_PFN_TO_NID | ||
| 1213 | def_bool X86_64 | ||
| 1214 | depends on NUMA | ||
| 959 | 1215 | ||
| 960 | menu "Power management options (ACPI, APM)" | 1216 | config OUT_OF_LINE_PFN_TO_PAGE |
| 1217 | def_bool X86_64 | ||
| 1218 | depends on DISCONTIGMEM | ||
| 1219 | |||
| 1220 | menu "Power management options" | ||
| 961 | depends on !X86_VOYAGER | 1221 | depends on !X86_VOYAGER |
| 962 | 1222 | ||
| 963 | source kernel/power/Kconfig | 1223 | config ARCH_HIBERNATION_HEADER |
| 1224 | bool | ||
| 1225 | depends on X86_64 && HIBERNATION | ||
| 1226 | default y | ||
| 1227 | |||
| 1228 | source "kernel/power/Kconfig" | ||
| 964 | 1229 | ||
| 965 | source "drivers/acpi/Kconfig" | 1230 | source "drivers/acpi/Kconfig" |
| 966 | 1231 | ||
| 967 | menuconfig APM | 1232 | menuconfig APM |
| 968 | tristate "APM (Advanced Power Management) BIOS support" | 1233 | tristate "APM (Advanced Power Management) BIOS support" |
| 969 | depends on PM_SLEEP && !X86_VISWS | 1234 | depends on X86_32 && PM_SLEEP && !X86_VISWS |
| 970 | ---help--- | 1235 | ---help--- |
| 971 | APM is a BIOS specification for saving power using several different | 1236 | APM is a BIOS specification for saving power using several different |
| 972 | techniques. This is mostly useful for battery powered laptops with | 1237 | techniques. This is mostly useful for battery powered laptops with |
| @@ -1092,13 +1357,14 @@ config APM_REAL_MODE_POWER_OFF | |||
| 1092 | 1357 | ||
| 1093 | endif # APM | 1358 | endif # APM |
| 1094 | 1359 | ||
| 1095 | source "arch/x86/kernel/cpu/cpufreq/Kconfig_32" | 1360 | source "arch/x86/kernel/cpu/cpufreq/Kconfig" |
| 1096 | 1361 | ||
| 1097 | source "drivers/cpuidle/Kconfig" | 1362 | source "drivers/cpuidle/Kconfig" |
| 1098 | 1363 | ||
| 1099 | endmenu | 1364 | endmenu |
| 1100 | 1365 | ||
| 1101 | menu "Bus options (PCI, PCMCIA, EISA, MCA, ISA)" | 1366 | |
| 1367 | menu "Bus options (PCI etc.)" | ||
| 1102 | 1368 | ||
| 1103 | config PCI | 1369 | config PCI |
| 1104 | bool "PCI support" if !X86_VISWS | 1370 | bool "PCI support" if !X86_VISWS |
| @@ -1118,7 +1384,7 @@ config PCI | |||
| 1118 | 1384 | ||
| 1119 | choice | 1385 | choice |
| 1120 | prompt "PCI access mode" | 1386 | prompt "PCI access mode" |
| 1121 | depends on PCI && !X86_VISWS | 1387 | depends on X86_32 && PCI && !X86_VISWS |
| 1122 | default PCI_GOANY | 1388 | default PCI_GOANY |
| 1123 | ---help--- | 1389 | ---help--- |
| 1124 | On PCI systems, the BIOS can be used to detect the PCI devices and | 1390 | On PCI systems, the BIOS can be used to detect the PCI devices and |
| @@ -1151,17 +1417,18 @@ endchoice | |||
| 1151 | 1417 | ||
| 1152 | config PCI_BIOS | 1418 | config PCI_BIOS |
| 1153 | bool | 1419 | bool |
| 1154 | depends on !X86_VISWS && PCI && (PCI_GOBIOS || PCI_GOANY) | 1420 | depends on X86_32 && !X86_VISWS && PCI && (PCI_GOBIOS || PCI_GOANY) |
| 1155 | default y | 1421 | default y |
| 1156 | 1422 | ||
| 1423 | # x86-64 doesn't support PCI BIOS access from long mode so always go direct. | ||
| 1157 | config PCI_DIRECT | 1424 | config PCI_DIRECT |
| 1158 | bool | 1425 | bool |
| 1159 | depends on PCI && ((PCI_GODIRECT || PCI_GOANY) || X86_VISWS) | 1426 | depends on PCI && (X86_64 || (PCI_GODIRECT || PCI_GOANY) || X86_VISWS) |
| 1160 | default y | 1427 | default y |
| 1161 | 1428 | ||
| 1162 | config PCI_MMCONFIG | 1429 | config PCI_MMCONFIG |
| 1163 | bool | 1430 | bool |
| 1164 | depends on PCI && ACPI && (PCI_GOMMCONFIG || PCI_GOANY) | 1431 | depends on X86_32 && PCI && ACPI && (PCI_GOMMCONFIG || PCI_GOANY) |
| 1165 | default y | 1432 | default y |
| 1166 | 1433 | ||
| 1167 | config PCI_DOMAINS | 1434 | config PCI_DOMAINS |
| @@ -1169,14 +1436,52 @@ config PCI_DOMAINS | |||
| 1169 | depends on PCI | 1436 | depends on PCI |
| 1170 | default y | 1437 | default y |
| 1171 | 1438 | ||
| 1439 | config PCI_MMCONFIG | ||
| 1440 | bool "Support mmconfig PCI config space access" | ||
| 1441 | depends on X86_64 && PCI && ACPI | ||
| 1442 | |||
| 1443 | config DMAR | ||
| 1444 | bool "Support for DMA Remapping Devices (EXPERIMENTAL)" | ||
| 1445 | depends on X86_64 && PCI_MSI && ACPI && EXPERIMENTAL | ||
| 1446 | help | ||
| 1447 | DMA remapping (DMAR) devices support enables independent address | ||
| 1448 | translations for Direct Memory Access (DMA) from devices. | ||
| 1449 | These DMA remapping devices are reported via ACPI tables | ||
| 1450 | and include PCI device scope covered by these DMA | ||
| 1451 | remapping devices. | ||
| 1452 | |||
| 1453 | config DMAR_GFX_WA | ||
| 1454 | bool "Support for Graphics workaround" | ||
| 1455 | depends on DMAR | ||
| 1456 | default y | ||
| 1457 | help | ||
| 1458 | Current Graphics drivers tend to use physical address | ||
| 1459 | for DMA and avoid using DMA APIs. Setting this config | ||
| 1460 | option permits the IOMMU driver to set a unity map for | ||
| 1461 | all the OS-visible memory. Hence the driver can continue | ||
| 1462 | to use physical addresses for DMA. | ||
| 1463 | |||
| 1464 | config DMAR_FLOPPY_WA | ||
| 1465 | bool | ||
| 1466 | depends on DMAR | ||
| 1467 | default y | ||
| 1468 | help | ||
| 1469 | Floppy disk drivers are know to bypass DMA API calls | ||
| 1470 | thereby failing to work when IOMMU is enabled. This | ||
| 1471 | workaround will setup a 1:1 mapping for the first | ||
| 1472 | 16M to make floppy (an ISA device) work. | ||
| 1473 | |||
| 1172 | source "drivers/pci/pcie/Kconfig" | 1474 | source "drivers/pci/pcie/Kconfig" |
| 1173 | 1475 | ||
| 1174 | source "drivers/pci/Kconfig" | 1476 | source "drivers/pci/Kconfig" |
| 1175 | 1477 | ||
| 1478 | # x86_64 have no ISA slots, but do have ISA-style DMA. | ||
| 1176 | config ISA_DMA_API | 1479 | config ISA_DMA_API |
| 1177 | bool | 1480 | bool |
| 1178 | default y | 1481 | default y |
| 1179 | 1482 | ||
| 1483 | if X86_32 | ||
| 1484 | |||
| 1180 | config ISA | 1485 | config ISA |
| 1181 | bool "ISA support" | 1486 | bool "ISA support" |
| 1182 | depends on !(X86_VOYAGER || X86_VISWS) | 1487 | depends on !(X86_VOYAGER || X86_VISWS) |
| @@ -1248,9 +1553,11 @@ config GEODE_MFGPT_TIMER | |||
| 1248 | MFGPTs have a better resolution and max interval than the | 1553 | MFGPTs have a better resolution and max interval than the |
| 1249 | generic PIT, and are suitable for use as high-res timers. | 1554 | generic PIT, and are suitable for use as high-res timers. |
| 1250 | 1555 | ||
| 1556 | endif # X86_32 | ||
| 1557 | |||
| 1251 | config K8_NB | 1558 | config K8_NB |
| 1252 | def_bool y | 1559 | def_bool y |
| 1253 | depends on AGP_AMD64 | 1560 | depends on AGP_AMD64 || (X86_64 && (GART_IOMMU || (PCI && NUMA))) |
| 1254 | 1561 | ||
| 1255 | source "drivers/pcmcia/Kconfig" | 1562 | source "drivers/pcmcia/Kconfig" |
| 1256 | 1563 | ||
| @@ -1258,16 +1565,48 @@ source "drivers/pci/hotplug/Kconfig" | |||
| 1258 | 1565 | ||
| 1259 | endmenu | 1566 | endmenu |
| 1260 | 1567 | ||
| 1261 | menu "Executable file formats" | 1568 | |
| 1569 | menu "Executable file formats / Emulations" | ||
| 1262 | 1570 | ||
| 1263 | source "fs/Kconfig.binfmt" | 1571 | source "fs/Kconfig.binfmt" |
| 1264 | 1572 | ||
| 1573 | config IA32_EMULATION | ||
| 1574 | bool "IA32 Emulation" | ||
| 1575 | depends on X86_64 | ||
| 1576 | help | ||
| 1577 | Include code to run 32-bit programs under a 64-bit kernel. You should | ||
| 1578 | likely turn this on, unless you're 100% sure that you don't have any | ||
| 1579 | 32-bit programs left. | ||
| 1580 | |||
| 1581 | config IA32_AOUT | ||
| 1582 | tristate "IA32 a.out support" | ||
| 1583 | depends on IA32_EMULATION | ||
| 1584 | help | ||
| 1585 | Support old a.out binaries in the 32bit emulation. | ||
| 1586 | |||
| 1587 | config COMPAT | ||
| 1588 | bool | ||
| 1589 | depends on IA32_EMULATION | ||
| 1590 | default y | ||
| 1591 | |||
| 1592 | config COMPAT_FOR_U64_ALIGNMENT | ||
| 1593 | def_bool COMPAT | ||
| 1594 | depends on X86_64 | ||
| 1595 | |||
| 1596 | config SYSVIPC_COMPAT | ||
| 1597 | bool | ||
| 1598 | depends on X86_64 && COMPAT && SYSVIPC | ||
| 1599 | default y | ||
| 1600 | |||
| 1265 | endmenu | 1601 | endmenu |
| 1266 | 1602 | ||
| 1603 | |||
| 1267 | source "net/Kconfig" | 1604 | source "net/Kconfig" |
| 1268 | 1605 | ||
| 1269 | source "drivers/Kconfig" | 1606 | source "drivers/Kconfig" |
| 1270 | 1607 | ||
| 1608 | source "drivers/firmware/Kconfig" | ||
| 1609 | |||
| 1271 | source "fs/Kconfig" | 1610 | source "fs/Kconfig" |
| 1272 | 1611 | ||
| 1273 | source "kernel/Kconfig.instrumentation" | 1612 | source "kernel/Kconfig.instrumentation" |
| @@ -1279,43 +1618,3 @@ source "security/Kconfig" | |||
| 1279 | source "crypto/Kconfig" | 1618 | source "crypto/Kconfig" |
| 1280 | 1619 | ||
| 1281 | source "lib/Kconfig" | 1620 | source "lib/Kconfig" |
| 1282 | |||
| 1283 | # | ||
| 1284 | # Use the generic interrupt handling code in kernel/irq/: | ||
| 1285 | # | ||
| 1286 | config GENERIC_HARDIRQS | ||
| 1287 | bool | ||
| 1288 | default y | ||
| 1289 | |||
| 1290 | config GENERIC_IRQ_PROBE | ||
| 1291 | bool | ||
| 1292 | default y | ||
| 1293 | |||
| 1294 | config GENERIC_PENDING_IRQ | ||
| 1295 | bool | ||
| 1296 | depends on GENERIC_HARDIRQS && SMP | ||
| 1297 | default y | ||
| 1298 | |||
| 1299 | config X86_SMP | ||
| 1300 | bool | ||
| 1301 | depends on SMP && !X86_VOYAGER | ||
| 1302 | default y | ||
| 1303 | |||
| 1304 | config X86_HT | ||
| 1305 | bool | ||
| 1306 | depends on SMP && !(X86_VISWS || X86_VOYAGER) | ||
| 1307 | default y | ||
| 1308 | |||
| 1309 | config X86_BIOS_REBOOT | ||
| 1310 | bool | ||
| 1311 | depends on !(X86_VISWS || X86_VOYAGER) | ||
| 1312 | default y | ||
| 1313 | |||
| 1314 | config X86_TRAMPOLINE | ||
| 1315 | bool | ||
| 1316 | depends on X86_SMP || (X86_VOYAGER && SMP) | ||
| 1317 | default y | ||
| 1318 | |||
| 1319 | config KTIME_SCALAR | ||
| 1320 | bool | ||
| 1321 | default y | ||
diff --git a/arch/x86/Kconfig.cpu b/arch/x86/Kconfig.cpu index 0e2adadf5905..c30162202dc4 100644 --- a/arch/x86/Kconfig.cpu +++ b/arch/x86/Kconfig.cpu | |||
| @@ -3,11 +3,12 @@ if !X86_ELAN | |||
| 3 | 3 | ||
| 4 | choice | 4 | choice |
| 5 | prompt "Processor family" | 5 | prompt "Processor family" |
| 6 | default M686 | 6 | default M686 if X86_32 |
| 7 | default GENERIC_CPU if X86_64 | ||
| 7 | 8 | ||
| 8 | config M386 | 9 | config M386 |
| 9 | bool "386" | 10 | bool "386" |
| 10 | depends on !UML | 11 | depends on X86_32 && !UML |
| 11 | ---help--- | 12 | ---help--- |
| 12 | This is the processor type of your CPU. This information is used for | 13 | This is the processor type of your CPU. This information is used for |
| 13 | optimizing purposes. In order to compile a kernel that can run on | 14 | optimizing purposes. In order to compile a kernel that can run on |
| @@ -49,6 +50,7 @@ config M386 | |||
| 49 | 50 | ||
| 50 | config M486 | 51 | config M486 |
| 51 | bool "486" | 52 | bool "486" |
| 53 | depends on X86_32 | ||
| 52 | help | 54 | help |
| 53 | Select this for a 486 series processor, either Intel or one of the | 55 | Select this for a 486 series processor, either Intel or one of the |
| 54 | compatible processors from AMD, Cyrix, IBM, or Intel. Includes DX, | 56 | compatible processors from AMD, Cyrix, IBM, or Intel. Includes DX, |
| @@ -57,6 +59,7 @@ config M486 | |||
| 57 | 59 | ||
| 58 | config M586 | 60 | config M586 |
| 59 | bool "586/K5/5x86/6x86/6x86MX" | 61 | bool "586/K5/5x86/6x86/6x86MX" |
| 62 | depends on X86_32 | ||
| 60 | help | 63 | help |
| 61 | Select this for an 586 or 686 series processor such as the AMD K5, | 64 | Select this for an 586 or 686 series processor such as the AMD K5, |
| 62 | the Cyrix 5x86, 6x86 and 6x86MX. This choice does not | 65 | the Cyrix 5x86, 6x86 and 6x86MX. This choice does not |
| @@ -64,18 +67,21 @@ config M586 | |||
| 64 | 67 | ||
| 65 | config M586TSC | 68 | config M586TSC |
| 66 | bool "Pentium-Classic" | 69 | bool "Pentium-Classic" |
| 70 | depends on X86_32 | ||
| 67 | help | 71 | help |
| 68 | Select this for a Pentium Classic processor with the RDTSC (Read | 72 | Select this for a Pentium Classic processor with the RDTSC (Read |
| 69 | Time Stamp Counter) instruction for benchmarking. | 73 | Time Stamp Counter) instruction for benchmarking. |
| 70 | 74 | ||
| 71 | config M586MMX | 75 | config M586MMX |
| 72 | bool "Pentium-MMX" | 76 | bool "Pentium-MMX" |
| 77 | depends on X86_32 | ||
| 73 | help | 78 | help |
| 74 | Select this for a Pentium with the MMX graphics/multimedia | 79 | Select this for a Pentium with the MMX graphics/multimedia |
| 75 | extended instructions. | 80 | extended instructions. |
| 76 | 81 | ||
| 77 | config M686 | 82 | config M686 |
| 78 | bool "Pentium-Pro" | 83 | bool "Pentium-Pro" |
| 84 | depends on X86_32 | ||
| 79 | help | 85 | help |
| 80 | Select this for Intel Pentium Pro chips. This enables the use of | 86 | Select this for Intel Pentium Pro chips. This enables the use of |
| 81 | Pentium Pro extended instructions, and disables the init-time guard | 87 | Pentium Pro extended instructions, and disables the init-time guard |
| @@ -83,6 +89,7 @@ config M686 | |||
| 83 | 89 | ||
| 84 | config MPENTIUMII | 90 | config MPENTIUMII |
| 85 | bool "Pentium-II/Celeron(pre-Coppermine)" | 91 | bool "Pentium-II/Celeron(pre-Coppermine)" |
| 92 | depends on X86_32 | ||
| 86 | help | 93 | help |
| 87 | Select this for Intel chips based on the Pentium-II and | 94 | Select this for Intel chips based on the Pentium-II and |
| 88 | pre-Coppermine Celeron core. This option enables an unaligned | 95 | pre-Coppermine Celeron core. This option enables an unaligned |
| @@ -92,6 +99,7 @@ config MPENTIUMII | |||
| 92 | 99 | ||
| 93 | config MPENTIUMIII | 100 | config MPENTIUMIII |
| 94 | bool "Pentium-III/Celeron(Coppermine)/Pentium-III Xeon" | 101 | bool "Pentium-III/Celeron(Coppermine)/Pentium-III Xeon" |
| 102 | depends on X86_32 | ||
| 95 | help | 103 | help |
| 96 | Select this for Intel chips based on the Pentium-III and | 104 | Select this for Intel chips based on the Pentium-III and |
| 97 | Celeron-Coppermine core. This option enables use of some | 105 | Celeron-Coppermine core. This option enables use of some |
| @@ -100,19 +108,14 @@ config MPENTIUMIII | |||
| 100 | 108 | ||
| 101 | config MPENTIUMM | 109 | config MPENTIUMM |
| 102 | bool "Pentium M" | 110 | bool "Pentium M" |
| 111 | depends on X86_32 | ||
| 103 | help | 112 | help |
| 104 | Select this for Intel Pentium M (not Pentium-4 M) | 113 | Select this for Intel Pentium M (not Pentium-4 M) |
| 105 | notebook chips. | 114 | notebook chips. |
| 106 | 115 | ||
| 107 | config MCORE2 | ||
| 108 | bool "Core 2/newer Xeon" | ||
| 109 | help | ||
| 110 | Select this for Intel Core 2 and newer Core 2 Xeons (Xeon 51xx and 53xx) | ||
| 111 | CPUs. You can distinguish newer from older Xeons by the CPU family | ||
| 112 | in /proc/cpuinfo. Newer ones have 6 and older ones 15 (not a typo) | ||
| 113 | |||
| 114 | config MPENTIUM4 | 116 | config MPENTIUM4 |
| 115 | bool "Pentium-4/Celeron(P4-based)/Pentium-4 M/older Xeon" | 117 | bool "Pentium-4/Celeron(P4-based)/Pentium-4 M/older Xeon" |
| 118 | depends on X86_32 | ||
| 116 | help | 119 | help |
| 117 | Select this for Intel Pentium 4 chips. This includes the | 120 | Select this for Intel Pentium 4 chips. This includes the |
| 118 | Pentium 4, Pentium D, P4-based Celeron and Xeon, and | 121 | Pentium 4, Pentium D, P4-based Celeron and Xeon, and |
| @@ -148,6 +151,7 @@ config MPENTIUM4 | |||
| 148 | 151 | ||
| 149 | config MK6 | 152 | config MK6 |
| 150 | bool "K6/K6-II/K6-III" | 153 | bool "K6/K6-II/K6-III" |
| 154 | depends on X86_32 | ||
| 151 | help | 155 | help |
| 152 | Select this for an AMD K6-family processor. Enables use of | 156 | Select this for an AMD K6-family processor. Enables use of |
| 153 | some extended instructions, and passes appropriate optimization | 157 | some extended instructions, and passes appropriate optimization |
| @@ -155,6 +159,7 @@ config MK6 | |||
| 155 | 159 | ||
| 156 | config MK7 | 160 | config MK7 |
| 157 | bool "Athlon/Duron/K7" | 161 | bool "Athlon/Duron/K7" |
| 162 | depends on X86_32 | ||
| 158 | help | 163 | help |
| 159 | Select this for an AMD Athlon K7-family processor. Enables use of | 164 | Select this for an AMD Athlon K7-family processor. Enables use of |
| 160 | some extended instructions, and passes appropriate optimization | 165 | some extended instructions, and passes appropriate optimization |
| @@ -169,6 +174,7 @@ config MK8 | |||
| 169 | 174 | ||
| 170 | config MCRUSOE | 175 | config MCRUSOE |
| 171 | bool "Crusoe" | 176 | bool "Crusoe" |
| 177 | depends on X86_32 | ||
| 172 | help | 178 | help |
| 173 | Select this for a Transmeta Crusoe processor. Treats the processor | 179 | Select this for a Transmeta Crusoe processor. Treats the processor |
| 174 | like a 586 with TSC, and sets some GCC optimization flags (like a | 180 | like a 586 with TSC, and sets some GCC optimization flags (like a |
| @@ -176,11 +182,13 @@ config MCRUSOE | |||
| 176 | 182 | ||
| 177 | config MEFFICEON | 183 | config MEFFICEON |
| 178 | bool "Efficeon" | 184 | bool "Efficeon" |
| 185 | depends on X86_32 | ||
| 179 | help | 186 | help |
| 180 | Select this for a Transmeta Efficeon processor. | 187 | Select this for a Transmeta Efficeon processor. |
| 181 | 188 | ||
| 182 | config MWINCHIPC6 | 189 | config MWINCHIPC6 |
| 183 | bool "Winchip-C6" | 190 | bool "Winchip-C6" |
| 191 | depends on X86_32 | ||
| 184 | help | 192 | help |
| 185 | Select this for an IDT Winchip C6 chip. Linux and GCC | 193 | Select this for an IDT Winchip C6 chip. Linux and GCC |
| 186 | treat this chip as a 586TSC with some extended instructions | 194 | treat this chip as a 586TSC with some extended instructions |
| @@ -188,6 +196,7 @@ config MWINCHIPC6 | |||
| 188 | 196 | ||
| 189 | config MWINCHIP2 | 197 | config MWINCHIP2 |
| 190 | bool "Winchip-2" | 198 | bool "Winchip-2" |
| 199 | depends on X86_32 | ||
| 191 | help | 200 | help |
| 192 | Select this for an IDT Winchip-2. Linux and GCC | 201 | Select this for an IDT Winchip-2. Linux and GCC |
| 193 | treat this chip as a 586TSC with some extended instructions | 202 | treat this chip as a 586TSC with some extended instructions |
| @@ -195,6 +204,7 @@ config MWINCHIP2 | |||
| 195 | 204 | ||
| 196 | config MWINCHIP3D | 205 | config MWINCHIP3D |
| 197 | bool "Winchip-2A/Winchip-3" | 206 | bool "Winchip-2A/Winchip-3" |
| 207 | depends on X86_32 | ||
| 198 | help | 208 | help |
| 199 | Select this for an IDT Winchip-2A or 3. Linux and GCC | 209 | Select this for an IDT Winchip-2A or 3. Linux and GCC |
| 200 | treat this chip as a 586TSC with some extended instructions | 210 | treat this chip as a 586TSC with some extended instructions |
| @@ -204,16 +214,19 @@ config MWINCHIP3D | |||
| 204 | 214 | ||
| 205 | config MGEODEGX1 | 215 | config MGEODEGX1 |
| 206 | bool "GeodeGX1" | 216 | bool "GeodeGX1" |
| 217 | depends on X86_32 | ||
| 207 | help | 218 | help |
| 208 | Select this for a Geode GX1 (Cyrix MediaGX) chip. | 219 | Select this for a Geode GX1 (Cyrix MediaGX) chip. |
| 209 | 220 | ||
| 210 | config MGEODE_LX | 221 | config MGEODE_LX |
| 211 | bool "Geode GX/LX" | 222 | bool "Geode GX/LX" |
| 223 | depends on X86_32 | ||
| 212 | help | 224 | help |
| 213 | Select this for AMD Geode GX and LX processors. | 225 | Select this for AMD Geode GX and LX processors. |
| 214 | 226 | ||
| 215 | config MCYRIXIII | 227 | config MCYRIXIII |
| 216 | bool "CyrixIII/VIA-C3" | 228 | bool "CyrixIII/VIA-C3" |
| 229 | depends on X86_32 | ||
| 217 | help | 230 | help |
| 218 | Select this for a Cyrix III or C3 chip. Presently Linux and GCC | 231 | Select this for a Cyrix III or C3 chip. Presently Linux and GCC |
| 219 | treat this chip as a generic 586. Whilst the CPU is 686 class, | 232 | treat this chip as a generic 586. Whilst the CPU is 686 class, |
| @@ -225,6 +238,7 @@ config MCYRIXIII | |||
| 225 | 238 | ||
| 226 | config MVIAC3_2 | 239 | config MVIAC3_2 |
| 227 | bool "VIA C3-2 (Nehemiah)" | 240 | bool "VIA C3-2 (Nehemiah)" |
| 241 | depends on X86_32 | ||
| 228 | help | 242 | help |
| 229 | Select this for a VIA C3 "Nehemiah". Selecting this enables usage | 243 | Select this for a VIA C3 "Nehemiah". Selecting this enables usage |
| 230 | of SSE and tells gcc to treat the CPU as a 686. | 244 | of SSE and tells gcc to treat the CPU as a 686. |
| @@ -232,15 +246,42 @@ config MVIAC3_2 | |||
| 232 | 246 | ||
| 233 | config MVIAC7 | 247 | config MVIAC7 |
| 234 | bool "VIA C7" | 248 | bool "VIA C7" |
| 249 | depends on X86_32 | ||
| 235 | help | 250 | help |
| 236 | Select this for a VIA C7. Selecting this uses the correct cache | 251 | Select this for a VIA C7. Selecting this uses the correct cache |
| 237 | shift and tells gcc to treat the CPU as a 686. | 252 | shift and tells gcc to treat the CPU as a 686. |
| 238 | 253 | ||
| 254 | config MPSC | ||
| 255 | bool "Intel P4 / older Netburst based Xeon" | ||
| 256 | depends on X86_64 | ||
| 257 | help | ||
| 258 | Optimize for Intel Pentium 4, Pentium D and older Nocona/Dempsey | ||
| 259 | Xeon CPUs with Intel 64bit which is compatible with x86-64. | ||
| 260 | Note that the latest Xeons (Xeon 51xx and 53xx) are not based on the | ||
| 261 | Netburst core and shouldn't use this option. You can distinguish them | ||
| 262 | using the cpu family field | ||
| 263 | in /proc/cpuinfo. Family 15 is an older Xeon, Family 6 a newer one. | ||
| 264 | |||
| 265 | config MCORE2 | ||
| 266 | bool "Core 2/newer Xeon" | ||
| 267 | help | ||
| 268 | Select this for Intel Core 2 and newer Core 2 Xeons (Xeon 51xx and 53xx) | ||
| 269 | CPUs. You can distinguish newer from older Xeons by the CPU family | ||
| 270 | in /proc/cpuinfo. Newer ones have 6 and older ones 15 (not a typo) | ||
| 271 | |||
| 272 | config GENERIC_CPU | ||
| 273 | bool "Generic-x86-64" | ||
| 274 | depends on X86_64 | ||
| 275 | help | ||
| 276 | Generic x86-64 CPU. | ||
| 277 | Run equally well on all x86-64 CPUs. | ||
| 278 | |||
| 239 | endchoice | 279 | endchoice |
| 240 | 280 | ||
| 241 | config X86_GENERIC | 281 | config X86_GENERIC |
| 242 | bool "Generic x86 support" | 282 | bool "Generic x86 support" |
| 243 | help | 283 | depends on X86_32 |
| 284 | help | ||
| 244 | Instead of just including optimizations for the selected | 285 | Instead of just including optimizations for the selected |
| 245 | x86 variant (e.g. PII, Crusoe or Athlon), include some more | 286 | x86 variant (e.g. PII, Crusoe or Athlon), include some more |
| 246 | generic optimizations as well. This will make the kernel | 287 | generic optimizations as well. This will make the kernel |
| @@ -253,44 +294,31 @@ endif | |||
| 253 | 294 | ||
| 254 | # | 295 | # |
| 255 | # Define implied options from the CPU selection here | 296 | # Define implied options from the CPU selection here |
| 256 | # | 297 | config X86_L1_CACHE_BYTES |
| 298 | int | ||
| 299 | default "128" if GENERIC_CPU || MPSC | ||
| 300 | default "64" if MK8 || MCORE2 | ||
| 301 | depends on X86_64 | ||
| 302 | |||
| 303 | config X86_INTERNODE_CACHE_BYTES | ||
| 304 | int | ||
| 305 | default "4096" if X86_VSMP | ||
| 306 | default X86_L1_CACHE_BYTES if !X86_VSMP | ||
| 307 | depends on X86_64 | ||
| 308 | |||
| 257 | config X86_CMPXCHG | 309 | config X86_CMPXCHG |
| 258 | bool | 310 | def_bool X86_64 || (X86_32 && !M386) |
| 259 | depends on !M386 | ||
| 260 | default y | ||
| 261 | 311 | ||
| 262 | config X86_L1_CACHE_SHIFT | 312 | config X86_L1_CACHE_SHIFT |
| 263 | int | 313 | int |
| 264 | default "7" if MPENTIUM4 || X86_GENERIC | 314 | default "7" if MPENTIUM4 || X86_GENERIC || GENERIC_CPU || MPSC |
| 265 | default "4" if X86_ELAN || M486 || M386 || MGEODEGX1 | 315 | default "4" if X86_ELAN || M486 || M386 || MGEODEGX1 |
| 266 | default "5" if MWINCHIP3D || MWINCHIP2 || MWINCHIPC6 || MCRUSOE || MEFFICEON || MCYRIXIII || MK6 || MPENTIUMIII || MPENTIUMII || M686 || M586MMX || M586TSC || M586 || MVIAC3_2 || MGEODE_LX | 316 | default "5" if MWINCHIP3D || MWINCHIP2 || MWINCHIPC6 || MCRUSOE || MEFFICEON || MCYRIXIII || MK6 || MPENTIUMIII || MPENTIUMII || M686 || M586MMX || M586TSC || M586 || MVIAC3_2 || MGEODE_LX |
| 267 | default "6" if MK7 || MK8 || MPENTIUMM || MCORE2 || MVIAC7 | 317 | default "6" if MK7 || MK8 || MPENTIUMM || MCORE2 || MVIAC7 |
| 268 | 318 | ||
| 269 | config X86_XADD | 319 | config X86_XADD |
| 270 | bool | 320 | bool |
| 271 | depends on !M386 | 321 | depends on X86_32 && !M386 |
| 272 | default y | ||
| 273 | |||
| 274 | config RWSEM_GENERIC_SPINLOCK | ||
| 275 | bool | ||
| 276 | depends on !X86_XADD | ||
| 277 | default y | ||
| 278 | |||
| 279 | config RWSEM_XCHGADD_ALGORITHM | ||
| 280 | bool | ||
| 281 | depends on X86_XADD | ||
| 282 | default y | ||
| 283 | |||
| 284 | config ARCH_HAS_ILOG2_U32 | ||
| 285 | bool | ||
| 286 | default n | ||
| 287 | |||
| 288 | config ARCH_HAS_ILOG2_U64 | ||
| 289 | bool | ||
| 290 | default n | ||
| 291 | |||
| 292 | config GENERIC_CALIBRATE_DELAY | ||
| 293 | bool | ||
| 294 | default y | 322 | default y |
| 295 | 323 | ||
| 296 | config X86_PPRO_FENCE | 324 | config X86_PPRO_FENCE |
| @@ -305,22 +333,22 @@ config X86_F00F_BUG | |||
| 305 | 333 | ||
| 306 | config X86_WP_WORKS_OK | 334 | config X86_WP_WORKS_OK |
| 307 | bool | 335 | bool |
| 308 | depends on !M386 | 336 | depends on X86_32 && !M386 |
| 309 | default y | 337 | default y |
| 310 | 338 | ||
| 311 | config X86_INVLPG | 339 | config X86_INVLPG |
| 312 | bool | 340 | bool |
| 313 | depends on !M386 | 341 | depends on X86_32 && !M386 |
| 314 | default y | 342 | default y |
| 315 | 343 | ||
| 316 | config X86_BSWAP | 344 | config X86_BSWAP |
| 317 | bool | 345 | bool |
| 318 | depends on !M386 | 346 | depends on X86_32 && !M386 |
| 319 | default y | 347 | default y |
| 320 | 348 | ||
| 321 | config X86_POPAD_OK | 349 | config X86_POPAD_OK |
| 322 | bool | 350 | bool |
| 323 | depends on !M386 | 351 | depends on X86_32 && !M386 |
| 324 | default y | 352 | default y |
| 325 | 353 | ||
| 326 | config X86_ALIGNMENT_16 | 354 | config X86_ALIGNMENT_16 |
| @@ -330,7 +358,7 @@ config X86_ALIGNMENT_16 | |||
| 330 | 358 | ||
| 331 | config X86_GOOD_APIC | 359 | config X86_GOOD_APIC |
| 332 | bool | 360 | bool |
| 333 | depends on MK7 || MPENTIUM4 || MPENTIUMM || MPENTIUMIII || MPENTIUMII || M686 || M586MMX || MK8 || MEFFICEON || MCORE2 || MVIAC7 | 361 | depends on MK7 || MPENTIUM4 || MPENTIUMM || MPENTIUMIII || MPENTIUMII || M686 || M586MMX || MK8 || MEFFICEON || MCORE2 || MVIAC7 || X86_64 |
| 334 | default y | 362 | default y |
| 335 | 363 | ||
| 336 | config X86_INTEL_USERCOPY | 364 | config X86_INTEL_USERCOPY |
| @@ -355,7 +383,7 @@ config X86_OOSTORE | |||
| 355 | 383 | ||
| 356 | config X86_TSC | 384 | config X86_TSC |
| 357 | bool | 385 | bool |
| 358 | depends on (MWINCHIP3D || MWINCHIP2 || MCRUSOE || MEFFICEON || MCYRIXIII || MK7 || MK6 || MPENTIUM4 || MPENTIUMM || MPENTIUMIII || MPENTIUMII || M686 || M586MMX || M586TSC || MK8 || MVIAC3_2 || MVIAC7 || MGEODEGX1 || MGEODE_LX || MCORE2) && !X86_NUMAQ | 386 | depends on ((MWINCHIP3D || MWINCHIP2 || MCRUSOE || MEFFICEON || MCYRIXIII || MK7 || MK6 || MPENTIUM4 || MPENTIUMM || MPENTIUMIII || MPENTIUMII || M686 || M586MMX || M586TSC || MK8 || MVIAC3_2 || MVIAC7 || MGEODEGX1 || MGEODE_LX || MCORE2) && !X86_NUMAQ) || X86_64 |
| 359 | default y | 387 | default y |
| 360 | 388 | ||
| 361 | # this should be set for all -march=.. options where the compiler | 389 | # this should be set for all -march=.. options where the compiler |
| @@ -367,6 +395,7 @@ config X86_CMOV | |||
| 367 | 395 | ||
| 368 | config X86_MINIMUM_CPU_FAMILY | 396 | config X86_MINIMUM_CPU_FAMILY |
| 369 | int | 397 | int |
| 370 | default "4" if X86_XADD || X86_CMPXCHG || X86_BSWAP || X86_WP_WORKS_OK | 398 | default "64" if X86_64 |
| 399 | default "4" if X86_32 && (X86_XADD || X86_CMPXCHG || X86_BSWAP || X86_WP_WORKS_OK) | ||
| 371 | default "3" | 400 | default "3" |
| 372 | 401 | ||
diff --git a/arch/x86/Kconfig.x86_64 b/arch/x86/Kconfig.x86_64 deleted file mode 100644 index cc468ea61240..000000000000 --- a/arch/x86/Kconfig.x86_64 +++ /dev/null | |||
| @@ -1,839 +0,0 @@ | |||
| 1 | # | ||
| 2 | # For a description of the syntax of this configuration file, | ||
| 3 | # see Documentation/kbuild/kconfig-language.txt. | ||
| 4 | # | ||
| 5 | # Note: ISA is disabled and will hopefully never be enabled. | ||
| 6 | # If you managed to buy an ISA x86-64 box you'll have to fix all the | ||
| 7 | # ISA drivers you need yourself. | ||
| 8 | # | ||
| 9 | |||
| 10 | mainmenu "Linux Kernel Configuration" | ||
| 11 | |||
| 12 | config X86_64 | ||
| 13 | bool | ||
| 14 | default y | ||
| 15 | help | ||
| 16 | Port to the x86-64 architecture. x86-64 is a 64-bit extension to the | ||
| 17 | classical 32-bit x86 architecture. For details see | ||
| 18 | <http://www.x86-64.org/>. | ||
| 19 | |||
| 20 | config 64BIT | ||
| 21 | def_bool y | ||
| 22 | |||
| 23 | config X86 | ||
| 24 | bool | ||
| 25 | default y | ||
| 26 | |||
| 27 | config GENERIC_TIME | ||
| 28 | bool | ||
| 29 | default y | ||
| 30 | |||
| 31 | config GENERIC_TIME_VSYSCALL | ||
| 32 | bool | ||
| 33 | default y | ||
| 34 | |||
| 35 | config GENERIC_CMOS_UPDATE | ||
| 36 | bool | ||
| 37 | default y | ||
| 38 | |||
| 39 | config CLOCKSOURCE_WATCHDOG | ||
| 40 | bool | ||
| 41 | default y | ||
| 42 | |||
| 43 | config GENERIC_CLOCKEVENTS | ||
| 44 | bool | ||
| 45 | default y | ||
| 46 | |||
| 47 | config GENERIC_CLOCKEVENTS_BROADCAST | ||
| 48 | bool | ||
| 49 | default y | ||
| 50 | |||
| 51 | config ZONE_DMA32 | ||
| 52 | bool | ||
| 53 | default y | ||
| 54 | |||
| 55 | config LOCKDEP_SUPPORT | ||
| 56 | bool | ||
| 57 | default y | ||
| 58 | |||
| 59 | config STACKTRACE_SUPPORT | ||
| 60 | bool | ||
| 61 | default y | ||
| 62 | |||
| 63 | config SEMAPHORE_SLEEPERS | ||
| 64 | bool | ||
| 65 | default y | ||
| 66 | |||
| 67 | config MMU | ||
| 68 | bool | ||
| 69 | default y | ||
| 70 | |||
| 71 | config ZONE_DMA | ||
| 72 | bool | ||
| 73 | default y | ||
| 74 | |||
| 75 | config ISA | ||
| 76 | bool | ||
| 77 | |||
| 78 | config SBUS | ||
| 79 | bool | ||
| 80 | |||
| 81 | config RWSEM_GENERIC_SPINLOCK | ||
| 82 | bool | ||
| 83 | default y | ||
| 84 | |||
| 85 | config RWSEM_XCHGADD_ALGORITHM | ||
| 86 | bool | ||
| 87 | |||
| 88 | config GENERIC_HWEIGHT | ||
| 89 | bool | ||
| 90 | default y | ||
| 91 | |||
| 92 | config GENERIC_CALIBRATE_DELAY | ||
| 93 | bool | ||
| 94 | default y | ||
| 95 | |||
| 96 | config X86_CMPXCHG | ||
| 97 | bool | ||
| 98 | default y | ||
| 99 | |||
| 100 | config GENERIC_ISA_DMA | ||
| 101 | bool | ||
| 102 | default y | ||
| 103 | |||
| 104 | config GENERIC_IOMAP | ||
| 105 | bool | ||
| 106 | default y | ||
| 107 | |||
| 108 | config ARCH_MAY_HAVE_PC_FDC | ||
| 109 | bool | ||
| 110 | default y | ||
| 111 | |||
| 112 | config ARCH_POPULATES_NODE_MAP | ||
| 113 | def_bool y | ||
| 114 | |||
| 115 | config DMI | ||
| 116 | bool | ||
| 117 | default y | ||
| 118 | |||
| 119 | config AUDIT_ARCH | ||
| 120 | bool | ||
| 121 | default y | ||
| 122 | |||
| 123 | config GENERIC_BUG | ||
| 124 | bool | ||
| 125 | default y | ||
| 126 | depends on BUG | ||
| 127 | |||
| 128 | config ARCH_HAS_ILOG2_U32 | ||
| 129 | bool | ||
| 130 | default n | ||
| 131 | |||
| 132 | config ARCH_HAS_ILOG2_U64 | ||
| 133 | bool | ||
| 134 | default n | ||
| 135 | |||
| 136 | source "init/Kconfig" | ||
| 137 | |||
| 138 | |||
| 139 | menu "Processor type and features" | ||
| 140 | |||
| 141 | source "kernel/time/Kconfig" | ||
| 142 | |||
| 143 | choice | ||
| 144 | prompt "Subarchitecture Type" | ||
| 145 | default X86_PC | ||
| 146 | |||
| 147 | config X86_PC | ||
| 148 | bool "PC-compatible" | ||
| 149 | help | ||
| 150 | Choose this option if your computer is a standard PC or compatible. | ||
| 151 | |||
| 152 | config X86_VSMP | ||
| 153 | bool "Support for ScaleMP vSMP" | ||
| 154 | depends on PCI | ||
| 155 | help | ||
| 156 | Support for ScaleMP vSMP systems. Say 'Y' here if this kernel is | ||
| 157 | supposed to run on these EM64T-based machines. Only choose this option | ||
| 158 | if you have one of these machines. | ||
| 159 | |||
| 160 | endchoice | ||
| 161 | |||
| 162 | choice | ||
| 163 | prompt "Processor family" | ||
| 164 | default GENERIC_CPU | ||
| 165 | |||
| 166 | config MK8 | ||
| 167 | bool "AMD-Opteron/Athlon64" | ||
| 168 | help | ||
| 169 | Optimize for AMD Opteron/Athlon64/Hammer/K8 CPUs. | ||
| 170 | |||
| 171 | config MPSC | ||
| 172 | bool "Intel P4 / older Netburst based Xeon" | ||
| 173 | help | ||
| 174 | Optimize for Intel Pentium 4, Pentium D and older Nocona/Dempsey | ||
| 175 | Xeon CPUs with Intel 64bit which is compatible with x86-64. | ||
| 176 | Note that the latest Xeons (Xeon 51xx and 53xx) are not based on the | ||
| 177 | Netburst core and shouldn't use this option. You can distinguish them | ||
| 178 | using the cpu family field | ||
| 179 | in /proc/cpuinfo. Family 15 is an older Xeon, Family 6 a newer one. | ||
| 180 | |||
| 181 | config MCORE2 | ||
| 182 | bool "Intel Core2 / newer Xeon" | ||
| 183 | help | ||
| 184 | Optimize for Intel Core2 and newer Xeons (51xx) | ||
| 185 | You can distinguish the newer Xeons from the older ones using | ||
| 186 | the cpu family field in /proc/cpuinfo. 15 is an older Xeon | ||
| 187 | (use CONFIG_MPSC then), 6 is a newer one. | ||
| 188 | |||
| 189 | config GENERIC_CPU | ||
| 190 | bool "Generic-x86-64" | ||
| 191 | help | ||
| 192 | Generic x86-64 CPU. | ||
| 193 | Run equally well on all x86-64 CPUs. | ||
| 194 | |||
| 195 | endchoice | ||
| 196 | |||
| 197 | # | ||
| 198 | # Define implied options from the CPU selection here | ||
| 199 | # | ||
| 200 | config X86_L1_CACHE_BYTES | ||
| 201 | int | ||
| 202 | default "128" if GENERIC_CPU || MPSC | ||
| 203 | default "64" if MK8 || MCORE2 | ||
| 204 | |||
| 205 | config X86_L1_CACHE_SHIFT | ||
| 206 | int | ||
| 207 | default "7" if GENERIC_CPU || MPSC | ||
| 208 | default "6" if MK8 || MCORE2 | ||
| 209 | |||
| 210 | config X86_INTERNODE_CACHE_BYTES | ||
| 211 | int | ||
| 212 | default "4096" if X86_VSMP | ||
| 213 | default X86_L1_CACHE_BYTES if !X86_VSMP | ||
| 214 | |||
| 215 | config X86_TSC | ||
| 216 | bool | ||
| 217 | default y | ||
| 218 | |||
| 219 | config X86_GOOD_APIC | ||
| 220 | bool | ||
| 221 | default y | ||
| 222 | |||
| 223 | config MICROCODE | ||
| 224 | tristate "/dev/cpu/microcode - Intel CPU microcode support" | ||
| 225 | select FW_LOADER | ||
| 226 | ---help--- | ||
| 227 | If you say Y here the 'File systems' section, you will be | ||
| 228 | able to update the microcode on Intel processors. You will | ||
| 229 | obviously need the actual microcode binary data itself which is | ||
| 230 | not shipped with the Linux kernel. | ||
| 231 | |||
| 232 | For latest news and information on obtaining all the required | ||
| 233 | ingredients for this driver, check: | ||
| 234 | <http://www.urbanmyth.org/microcode/>. | ||
| 235 | |||
| 236 | To compile this driver as a module, choose M here: the | ||
| 237 | module will be called microcode. | ||
| 238 | If you use modprobe or kmod you may also want to add the line | ||
| 239 | 'alias char-major-10-184 microcode' to your /etc/modules.conf file. | ||
| 240 | |||
| 241 | config MICROCODE_OLD_INTERFACE | ||
| 242 | bool | ||
| 243 | depends on MICROCODE | ||
| 244 | default y | ||
| 245 | |||
| 246 | config X86_MSR | ||
| 247 | tristate "/dev/cpu/*/msr - Model-specific register support" | ||
| 248 | help | ||
| 249 | This device gives privileged processes access to the x86 | ||
| 250 | Model-Specific Registers (MSRs). It is a character device with | ||
| 251 | major 202 and minors 0 to 31 for /dev/cpu/0/msr to /dev/cpu/31/msr. | ||
| 252 | MSR accesses are directed to a specific CPU on multi-processor | ||
| 253 | systems. | ||
| 254 | |||
| 255 | config X86_CPUID | ||
| 256 | tristate "/dev/cpu/*/cpuid - CPU information support" | ||
| 257 | help | ||
| 258 | This device gives processes access to the x86 CPUID instruction to | ||
| 259 | be executed on a specific processor. It is a character device | ||
| 260 | with major 203 and minors 0 to 31 for /dev/cpu/0/cpuid to | ||
| 261 | /dev/cpu/31/cpuid. | ||
| 262 | |||
| 263 | config X86_HT | ||
| 264 | bool | ||
| 265 | depends on SMP && !MK8 | ||
| 266 | default y | ||
| 267 | |||
| 268 | config MATH_EMULATION | ||
| 269 | bool | ||
| 270 | |||
| 271 | config MCA | ||
| 272 | bool | ||
| 273 | |||
| 274 | config EISA | ||
| 275 | bool | ||
| 276 | |||
| 277 | config X86_IO_APIC | ||
| 278 | bool | ||
| 279 | default y | ||
| 280 | |||
| 281 | config X86_LOCAL_APIC | ||
| 282 | bool | ||
| 283 | default y | ||
| 284 | |||
| 285 | config MTRR | ||
| 286 | bool "MTRR (Memory Type Range Register) support" | ||
| 287 | ---help--- | ||
| 288 | On Intel P6 family processors (Pentium Pro, Pentium II and later) | ||
| 289 | the Memory Type Range Registers (MTRRs) may be used to control | ||
| 290 | processor access to memory ranges. This is most useful if you have | ||
| 291 | a video (VGA) card on a PCI or AGP bus. Enabling write-combining | ||
| 292 | allows bus write transfers to be combined into a larger transfer | ||
| 293 | before bursting over the PCI/AGP bus. This can increase performance | ||
| 294 | of image write operations 2.5 times or more. Saying Y here creates a | ||
| 295 | /proc/mtrr file which may be used to manipulate your processor's | ||
| 296 | MTRRs. Typically the X server should use this. | ||
| 297 | |||
| 298 | This code has a reasonably generic interface so that similar | ||
| 299 | control registers on other processors can be easily supported | ||
| 300 | as well. | ||
| 301 | |||
| 302 | Saying Y here also fixes a problem with buggy SMP BIOSes which only | ||
| 303 | set the MTRRs for the boot CPU and not for the secondary CPUs. This | ||
| 304 | can lead to all sorts of problems, so it's good to say Y here. | ||
| 305 | |||
| 306 | Just say Y here, all x86-64 machines support MTRRs. | ||
| 307 | |||
| 308 | See <file:Documentation/mtrr.txt> for more information. | ||
| 309 | |||
| 310 | config SMP | ||
| 311 | bool "Symmetric multi-processing support" | ||
| 312 | ---help--- | ||
| 313 | This enables support for systems with more than one CPU. If you have | ||
| 314 | a system with only one CPU, like most personal computers, say N. If | ||
| 315 | you have a system with more than one CPU, say Y. | ||
| 316 | |||
| 317 | If you say N here, the kernel will run on single and multiprocessor | ||
| 318 | machines, but will use only one CPU of a multiprocessor machine. If | ||
| 319 | you say Y here, the kernel will run on many, but not all, | ||
| 320 | singleprocessor machines. On a singleprocessor machine, the kernel | ||
| 321 | will run faster if you say N here. | ||
| 322 | |||
| 323 | If you don't know what to do here, say N. | ||
| 324 | |||
| 325 | config SCHED_SMT | ||
| 326 | bool "SMT (Hyperthreading) scheduler support" | ||
| 327 | depends on SMP | ||
| 328 | default n | ||
| 329 | help | ||
| 330 | SMT scheduler support improves the CPU scheduler's decision making | ||
| 331 | when dealing with Intel Pentium 4 chips with HyperThreading at a | ||
| 332 | cost of slightly increased overhead in some places. If unsure say | ||
| 333 | N here. | ||
| 334 | |||
| 335 | config SCHED_MC | ||
| 336 | bool "Multi-core scheduler support" | ||
| 337 | depends on SMP | ||
| 338 | default y | ||
| 339 | help | ||
| 340 | Multi-core scheduler support improves the CPU scheduler's decision | ||
| 341 | making when dealing with multi-core CPU chips at a cost of slightly | ||
| 342 | increased overhead in some places. If unsure say N here. | ||
| 343 | |||
| 344 | source "kernel/Kconfig.preempt" | ||
| 345 | |||
| 346 | config NUMA | ||
| 347 | bool "Non Uniform Memory Access (NUMA) Support" | ||
| 348 | depends on SMP | ||
| 349 | help | ||
| 350 | Enable NUMA (Non Uniform Memory Access) support. The kernel | ||
| 351 | will try to allocate memory used by a CPU on the local memory | ||
| 352 | controller of the CPU and add some more NUMA awareness to the kernel. | ||
| 353 | This code is recommended on all multiprocessor Opteron systems. | ||
| 354 | If the system is EM64T, you should say N unless your system is EM64T | ||
| 355 | NUMA. | ||
| 356 | |||
| 357 | config K8_NUMA | ||
| 358 | bool "Old style AMD Opteron NUMA detection" | ||
| 359 | depends on NUMA && PCI | ||
| 360 | default y | ||
| 361 | help | ||
| 362 | Enable K8 NUMA node topology detection. You should say Y here if | ||
| 363 | you have a multi processor AMD K8 system. This uses an old | ||
| 364 | method to read the NUMA configuration directly from the builtin | ||
| 365 | Northbridge of Opteron. It is recommended to use X86_64_ACPI_NUMA | ||
| 366 | instead, which also takes priority if both are compiled in. | ||
| 367 | |||
| 368 | config NODES_SHIFT | ||
| 369 | int | ||
| 370 | default "6" | ||
| 371 | depends on NEED_MULTIPLE_NODES | ||
| 372 | |||
| 373 | # Dummy CONFIG option to select ACPI_NUMA from drivers/acpi/Kconfig. | ||
| 374 | |||
| 375 | config X86_64_ACPI_NUMA | ||
| 376 | bool "ACPI NUMA detection" | ||
| 377 | depends on NUMA | ||
| 378 | select ACPI | ||
| 379 | select PCI | ||
| 380 | select ACPI_NUMA | ||
| 381 | default y | ||
| 382 | help | ||
| 383 | Enable ACPI SRAT based node topology detection. | ||
| 384 | |||
| 385 | config NUMA_EMU | ||
| 386 | bool "NUMA emulation" | ||
| 387 | depends on NUMA | ||
| 388 | help | ||
| 389 | Enable NUMA emulation. A flat machine will be split | ||
| 390 | into virtual nodes when booted with "numa=fake=N", where N is the | ||
| 391 | number of nodes. This is only useful for debugging. | ||
| 392 | |||
| 393 | config ARCH_DISCONTIGMEM_ENABLE | ||
| 394 | bool | ||
| 395 | depends on NUMA | ||
| 396 | default y | ||
| 397 | |||
| 398 | config ARCH_DISCONTIGMEM_DEFAULT | ||
| 399 | def_bool y | ||
| 400 | depends on NUMA | ||
| 401 | |||
| 402 | config ARCH_SPARSEMEM_ENABLE | ||
| 403 | def_bool y | ||
| 404 | depends on (NUMA || EXPERIMENTAL) | ||
| 405 | select SPARSEMEM_VMEMMAP_ENABLE | ||
| 406 | |||
| 407 | config ARCH_MEMORY_PROBE | ||
| 408 | def_bool y | ||
| 409 | depends on MEMORY_HOTPLUG | ||
| 410 | |||
| 411 | config ARCH_FLATMEM_ENABLE | ||
| 412 | def_bool y | ||
| 413 | depends on !NUMA | ||
| 414 | |||
| 415 | source "mm/Kconfig" | ||
| 416 | |||
| 417 | config MEMORY_HOTPLUG_RESERVE | ||
| 418 | def_bool y | ||
| 419 | depends on (MEMORY_HOTPLUG && DISCONTIGMEM) | ||
| 420 | |||
| 421 | config HAVE_ARCH_EARLY_PFN_TO_NID | ||
| 422 | def_bool y | ||
| 423 | depends on NUMA | ||
| 424 | |||
| 425 | config OUT_OF_LINE_PFN_TO_PAGE | ||
| 426 | def_bool y | ||
| 427 | depends on DISCONTIGMEM | ||
| 428 | |||
| 429 | config NR_CPUS | ||
| 430 | int "Maximum number of CPUs (2-255)" | ||
| 431 | range 2 255 | ||
| 432 | depends on SMP | ||
| 433 | default "8" | ||
| 434 | help | ||
| 435 | This allows you to specify the maximum number of CPUs which this | ||
| 436 | kernel will support. Current maximum is 255 CPUs due to | ||
| 437 | APIC addressing limits. Less depending on the hardware. | ||
| 438 | |||
| 439 | This is purely to save memory - each supported CPU requires | ||
| 440 | memory in the static kernel configuration. | ||
| 441 | |||
| 442 | config PHYSICAL_ALIGN | ||
| 443 | hex | ||
| 444 | default "0x200000" | ||
| 445 | |||
| 446 | config HOTPLUG_CPU | ||
| 447 | bool "Support for suspend on SMP and hot-pluggable CPUs (EXPERIMENTAL)" | ||
| 448 | depends on SMP && HOTPLUG && EXPERIMENTAL | ||
| 449 | help | ||
| 450 | Say Y here to experiment with turning CPUs off and on. CPUs | ||
| 451 | can be controlled through /sys/devices/system/cpu/cpu#. | ||
| 452 | This is also required for suspend/hibernation on SMP systems. | ||
| 453 | |||
| 454 | Say N if you want to disable CPU hotplug and don't need to | ||
| 455 | suspend. | ||
| 456 | |||
| 457 | config ARCH_ENABLE_MEMORY_HOTPLUG | ||
| 458 | def_bool y | ||
| 459 | |||
| 460 | config HPET_TIMER | ||
| 461 | bool | ||
| 462 | default y | ||
| 463 | help | ||
| 464 | Use the IA-PC HPET (High Precision Event Timer) to manage | ||
| 465 | time in preference to the PIT and RTC, if a HPET is | ||
| 466 | present. The HPET provides a stable time base on SMP | ||
| 467 | systems, unlike the TSC, but it is more expensive to access, | ||
| 468 | as it is off-chip. You can find the HPET spec at | ||
| 469 | <http://www.intel.com/hardwaredesign/hpetspec.htm>. | ||
| 470 | |||
| 471 | config HPET_EMULATE_RTC | ||
| 472 | bool | ||
| 473 | depends on HPET_TIMER && RTC=y | ||
| 474 | default y | ||
| 475 | |||
| 476 | # Mark as embedded because too many people got it wrong. | ||
| 477 | # The code disables itself when not needed. | ||
| 478 | config GART_IOMMU | ||
| 479 | bool "GART IOMMU support" if EMBEDDED | ||
| 480 | default y | ||
| 481 | select SWIOTLB | ||
| 482 | select AGP | ||
| 483 | depends on PCI | ||
| 484 | help | ||
| 485 | Support for full DMA access of devices with 32bit memory access only | ||
| 486 | on systems with more than 3GB. This is usually needed for USB, | ||
| 487 | sound, many IDE/SATA chipsets and some other devices. | ||
| 488 | Provides a driver for the AMD Athlon64/Opteron/Turion/Sempron GART | ||
| 489 | based hardware IOMMU and a software bounce buffer based IOMMU used | ||
| 490 | on Intel systems and as fallback. | ||
| 491 | The code is only active when needed (enough memory and limited | ||
| 492 | device) unless CONFIG_IOMMU_DEBUG or iommu=force is specified | ||
| 493 | too. | ||
| 494 | |||
| 495 | config CALGARY_IOMMU | ||
| 496 | bool "IBM Calgary IOMMU support" | ||
| 497 | select SWIOTLB | ||
| 498 | depends on PCI && EXPERIMENTAL | ||
| 499 | help | ||
| 500 | Support for hardware IOMMUs in IBM's xSeries x366 and x460 | ||
| 501 | systems. Needed to run systems with more than 3GB of memory | ||
| 502 | properly with 32-bit PCI devices that do not support DAC | ||
| 503 | (Double Address Cycle). Calgary also supports bus level | ||
| 504 | isolation, where all DMAs pass through the IOMMU. This | ||
| 505 | prevents them from going anywhere except their intended | ||
| 506 | destination. This catches hard-to-find kernel bugs and | ||
| 507 | mis-behaving drivers and devices that do not use the DMA-API | ||
| 508 | properly to set up their DMA buffers. The IOMMU can be | ||
| 509 | turned off at boot time with the iommu=off parameter. | ||
| 510 | Normally the kernel will make the right choice by itself. | ||
| 511 | If unsure, say Y. | ||
| 512 | |||
| 513 | config CALGARY_IOMMU_ENABLED_BY_DEFAULT | ||
| 514 | bool "Should Calgary be enabled by default?" | ||
| 515 | default y | ||
| 516 | depends on CALGARY_IOMMU | ||
| 517 | help | ||
| 518 | Should Calgary be enabled by default? if you choose 'y', Calgary | ||
| 519 | will be used (if it exists). If you choose 'n', Calgary will not be | ||
| 520 | used even if it exists. If you choose 'n' and would like to use | ||
| 521 | Calgary anyway, pass 'iommu=calgary' on the kernel command line. | ||
| 522 | If unsure, say Y. | ||
| 523 | |||
| 524 | # need this always selected by IOMMU for the VIA workaround | ||
| 525 | config SWIOTLB | ||
| 526 | bool | ||
| 527 | help | ||
| 528 | Support for software bounce buffers used on x86-64 systems | ||
| 529 | which don't have a hardware IOMMU (e.g. the current generation | ||
| 530 | of Intel's x86-64 CPUs). Using this PCI devices which can only | ||
| 531 | access 32-bits of memory can be used on systems with more than | ||
| 532 | 3 GB of memory. If unsure, say Y. | ||
| 533 | |||
| 534 | config X86_MCE | ||
| 535 | bool "Machine check support" if EMBEDDED | ||
| 536 | default y | ||
| 537 | help | ||
| 538 | Include a machine check error handler to report hardware errors. | ||
| 539 | This version will require the mcelog utility to decode some | ||
| 540 | machine check error logs. See | ||
| 541 | ftp://ftp.x86-64.org/pub/linux/tools/mcelog | ||
| 542 | |||
| 543 | config X86_MCE_INTEL | ||
| 544 | bool "Intel MCE features" | ||
| 545 | depends on X86_MCE && X86_LOCAL_APIC | ||
| 546 | default y | ||
| 547 | help | ||
| 548 | Additional support for intel specific MCE features such as | ||
| 549 | the thermal monitor. | ||
| 550 | |||
| 551 | config X86_MCE_AMD | ||
| 552 | bool "AMD MCE features" | ||
| 553 | depends on X86_MCE && X86_LOCAL_APIC | ||
| 554 | default y | ||
| 555 | help | ||
| 556 | Additional support for AMD specific MCE features such as | ||
| 557 | the DRAM Error Threshold. | ||
| 558 | |||
| 559 | config KEXEC | ||
| 560 | bool "kexec system call" | ||
| 561 | help | ||
| 562 | kexec is a system call that implements the ability to shutdown your | ||
| 563 | current kernel, and to start another kernel. It is like a reboot | ||
| 564 | but it is independent of the system firmware. And like a reboot | ||
| 565 | you can start any kernel with it, not just Linux. | ||
| 566 | |||
| 567 | The name comes from the similarity to the exec system call. | ||
| 568 | |||
| 569 | It is an ongoing process to be certain the hardware in a machine | ||
| 570 | is properly shutdown, so do not be surprised if this code does not | ||
| 571 | initially work for you. It may help to enable device hotplugging | ||
| 572 | support. As of this writing the exact hardware interface is | ||
| 573 | strongly in flux, so no good recommendation can be made. | ||
| 574 | |||
| 575 | config CRASH_DUMP | ||
| 576 | bool "kernel crash dumps (EXPERIMENTAL)" | ||
| 577 | depends on EXPERIMENTAL | ||
| 578 | help | ||
| 579 | Generate crash dump after being started by kexec. | ||
| 580 | This should be normally only set in special crash dump kernels | ||
| 581 | which are loaded in the main kernel with kexec-tools into | ||
| 582 | a specially reserved region and then later executed after | ||
| 583 | a crash by kdump/kexec. The crash dump kernel must be compiled | ||
| 584 | to a memory address not used by the main kernel or BIOS using | ||
| 585 | PHYSICAL_START, or it must be built as a relocatable image | ||
| 586 | (CONFIG_RELOCATABLE=y). | ||
| 587 | For more details see Documentation/kdump/kdump.txt | ||
| 588 | |||
| 589 | config RELOCATABLE | ||
| 590 | bool "Build a relocatable kernel (EXPERIMENTAL)" | ||
| 591 | depends on EXPERIMENTAL | ||
| 592 | help | ||
| 593 | Builds a relocatable kernel. This enables loading and running | ||
| 594 | a kernel binary from a different physical address than it has | ||
| 595 | been compiled for. | ||
| 596 | |||
| 597 | One use is for the kexec on panic case where the recovery kernel | ||
| 598 | must live at a different physical address than the primary | ||
| 599 | kernel. | ||
| 600 | |||
| 601 | Note: If CONFIG_RELOCATABLE=y, then the kernel runs from the address | ||
| 602 | it has been loaded at and the compile time physical address | ||
| 603 | (CONFIG_PHYSICAL_START) is ignored. | ||
| 604 | |||
| 605 | config PHYSICAL_START | ||
| 606 | hex "Physical address where the kernel is loaded" if (EMBEDDED || CRASH_DUMP) | ||
| 607 | default "0x200000" | ||
| 608 | help | ||
| 609 | This gives the physical address where the kernel is loaded. It | ||
| 610 | should be aligned to 2MB boundary. | ||
| 611 | |||
| 612 | If kernel is a not relocatable (CONFIG_RELOCATABLE=n) then | ||
| 613 | bzImage will decompress itself to above physical address and | ||
| 614 | run from there. Otherwise, bzImage will run from the address where | ||
| 615 | it has been loaded by the boot loader and will ignore above physical | ||
| 616 | address. | ||
| 617 | |||
| 618 | In normal kdump cases one does not have to set/change this option | ||
| 619 | as now bzImage can be compiled as a completely relocatable image | ||
| 620 | (CONFIG_RELOCATABLE=y) and be used to load and run from a different | ||
| 621 | address. This option is mainly useful for the folks who don't want | ||
| 622 | to use a bzImage for capturing the crash dump and want to use a | ||
| 623 | vmlinux instead. | ||
| 624 | |||
| 625 | So if you are using bzImage for capturing the crash dump, leave | ||
| 626 | the value here unchanged to 0x200000 and set CONFIG_RELOCATABLE=y. | ||
| 627 | Otherwise if you plan to use vmlinux for capturing the crash dump | ||
| 628 | change this value to start of the reserved region (Typically 16MB | ||
| 629 | 0x1000000). In other words, it can be set based on the "X" value as | ||
| 630 | specified in the "crashkernel=YM@XM" command line boot parameter | ||
| 631 | passed to the panic-ed kernel. Typically this parameter is set as | ||
| 632 | crashkernel=64M@16M. Please take a look at | ||
| 633 | Documentation/kdump/kdump.txt for more details about crash dumps. | ||
| 634 | |||
| 635 | Usage of bzImage for capturing the crash dump is advantageous as | ||
| 636 | one does not have to build two kernels. Same kernel can be used | ||
| 637 | as production kernel and capture kernel. | ||
| 638 | |||
| 639 | Don't change this unless you know what you are doing. | ||
| 640 | |||
| 641 | config SECCOMP | ||
| 642 | bool "Enable seccomp to safely compute untrusted bytecode" | ||
| 643 | depends on PROC_FS | ||
| 644 | default y | ||
| 645 | help | ||
| 646 | This kernel feature is useful for number crunching applications | ||
| 647 | that may need to compute untrusted bytecode during their | ||
| 648 | execution. By using pipes or other transports made available to | ||
| 649 | the process as file descriptors supporting the read/write | ||
| 650 | syscalls, it's possible to isolate those applications in | ||
| 651 | their own address space using seccomp. Once seccomp is | ||
| 652 | enabled via /proc/<pid>/seccomp, it cannot be disabled | ||
| 653 | and the task is only allowed to execute a few safe syscalls | ||
| 654 | defined by each seccomp mode. | ||
| 655 | |||
| 656 | If unsure, say Y. Only embedded should say N here. | ||
| 657 | |||
| 658 | config CC_STACKPROTECTOR | ||
| 659 | bool "Enable -fstack-protector buffer overflow detection (EXPERIMENTAL)" | ||
| 660 | depends on EXPERIMENTAL | ||
| 661 | help | ||
| 662 | This option turns on the -fstack-protector GCC feature. This | ||
| 663 | feature puts, at the beginning of critical functions, a canary | ||
| 664 | value on the stack just before the return address, and validates | ||
| 665 | the value just before actually returning. Stack based buffer | ||
| 666 | overflows (that need to overwrite this return address) now also | ||
| 667 | overwrite the canary, which gets detected and the attack is then | ||
| 668 | neutralized via a kernel panic. | ||
| 669 | |||
| 670 | This feature requires gcc version 4.2 or above, or a distribution | ||
| 671 | gcc with the feature backported. Older versions are automatically | ||
| 672 | detected and for those versions, this configuration option is ignored. | ||
| 673 | |||
| 674 | config CC_STACKPROTECTOR_ALL | ||
| 675 | bool "Use stack-protector for all functions" | ||
| 676 | depends on CC_STACKPROTECTOR | ||
| 677 | help | ||
| 678 | Normally, GCC only inserts the canary value protection for | ||
| 679 | functions that use large-ish on-stack buffers. By enabling | ||
| 680 | this option, GCC will be asked to do this for ALL functions. | ||
| 681 | |||
| 682 | source kernel/Kconfig.hz | ||
| 683 | |||
| 684 | config K8_NB | ||
| 685 | def_bool y | ||
| 686 | depends on AGP_AMD64 || GART_IOMMU || (PCI && NUMA) | ||
| 687 | |||
| 688 | endmenu | ||
| 689 | |||
| 690 | # | ||
| 691 | # Use the generic interrupt handling code in kernel/irq/: | ||
| 692 | # | ||
| 693 | config GENERIC_HARDIRQS | ||
| 694 | bool | ||
| 695 | default y | ||
| 696 | |||
| 697 | config GENERIC_IRQ_PROBE | ||
| 698 | bool | ||
| 699 | default y | ||
| 700 | |||
| 701 | # we have no ISA slots, but we do have ISA-style DMA. | ||
| 702 | config ISA_DMA_API | ||
| 703 | bool | ||
| 704 | default y | ||
| 705 | |||
| 706 | config GENERIC_PENDING_IRQ | ||
| 707 | bool | ||
| 708 | depends on GENERIC_HARDIRQS && SMP | ||
| 709 | default y | ||
| 710 | |||
| 711 | menu "Power management options" | ||
| 712 | |||
| 713 | source kernel/power/Kconfig | ||
| 714 | |||
| 715 | config ARCH_HIBERNATION_HEADER | ||
| 716 | bool | ||
| 717 | depends on HIBERNATION | ||
| 718 | default y | ||
| 719 | |||
| 720 | source "drivers/acpi/Kconfig" | ||
| 721 | |||
| 722 | source "arch/x86/kernel/cpu/cpufreq/Kconfig_64" | ||
| 723 | |||
| 724 | source "drivers/cpuidle/Kconfig" | ||
| 725 | |||
| 726 | endmenu | ||
| 727 | |||
| 728 | menu "Bus options (PCI etc.)" | ||
| 729 | |||
| 730 | config PCI | ||
| 731 | bool "PCI support" | ||
| 732 | select ARCH_SUPPORTS_MSI if (X86_LOCAL_APIC && X86_IO_APIC) | ||
| 733 | |||
| 734 | # x86-64 doesn't support PCI BIOS access from long mode so always go direct. | ||
| 735 | config PCI_DIRECT | ||
| 736 | bool | ||
| 737 | depends on PCI | ||
| 738 | default y | ||
| 739 | |||
| 740 | config PCI_MMCONFIG | ||
| 741 | bool "Support mmconfig PCI config space access" | ||
| 742 | depends on PCI && ACPI | ||
| 743 | |||
| 744 | config PCI_DOMAINS | ||
| 745 | bool | ||
| 746 | depends on PCI | ||
| 747 | default y | ||
| 748 | |||
| 749 | config DMAR | ||
| 750 | bool "Support for DMA Remapping Devices (EXPERIMENTAL)" | ||
| 751 | depends on PCI_MSI && ACPI && EXPERIMENTAL | ||
| 752 | help | ||
| 753 | DMA remapping (DMAR) devices support enables independent address | ||
| 754 | translations for Direct Memory Access (DMA) from devices. | ||
| 755 | These DMA remapping devices are reported via ACPI tables | ||
| 756 | and include PCI device scope covered by these DMA | ||
| 757 | remapping devices. | ||
| 758 | |||
| 759 | config DMAR_GFX_WA | ||
| 760 | bool "Support for Graphics workaround" | ||
| 761 | depends on DMAR | ||
| 762 | default y | ||
| 763 | help | ||
| 764 | Current Graphics drivers tend to use physical address | ||
| 765 | for DMA and avoid using DMA APIs. Setting this config | ||
| 766 | option permits the IOMMU driver to set a unity map for | ||
| 767 | all the OS-visible memory. Hence the driver can continue | ||
| 768 | to use physical addresses for DMA. | ||
| 769 | |||
| 770 | config DMAR_FLOPPY_WA | ||
| 771 | bool | ||
| 772 | depends on DMAR | ||
| 773 | default y | ||
| 774 | help | ||
| 775 | Floppy disk drivers are know to bypass DMA API calls | ||
| 776 | thereby failing to work when IOMMU is enabled. This | ||
| 777 | workaround will setup a 1:1 mapping for the first | ||
| 778 | 16M to make floppy (an ISA device) work. | ||
| 779 | |||
| 780 | source "drivers/pci/pcie/Kconfig" | ||
| 781 | |||
| 782 | source "drivers/pci/Kconfig" | ||
| 783 | |||
| 784 | source "drivers/pcmcia/Kconfig" | ||
| 785 | |||
| 786 | source "drivers/pci/hotplug/Kconfig" | ||
| 787 | |||
| 788 | endmenu | ||
| 789 | |||
| 790 | |||
| 791 | menu "Executable file formats / Emulations" | ||
| 792 | |||
| 793 | source "fs/Kconfig.binfmt" | ||
| 794 | |||
| 795 | config IA32_EMULATION | ||
| 796 | bool "IA32 Emulation" | ||
| 797 | help | ||
| 798 | Include code to run 32-bit programs under a 64-bit kernel. You should | ||
| 799 | likely turn this on, unless you're 100% sure that you don't have any | ||
| 800 | 32-bit programs left. | ||
| 801 | |||
| 802 | config IA32_AOUT | ||
| 803 | tristate "IA32 a.out support" | ||
| 804 | depends on IA32_EMULATION | ||
| 805 | help | ||
| 806 | Support old a.out binaries in the 32bit emulation. | ||
| 807 | |||
| 808 | config COMPAT | ||
| 809 | bool | ||
| 810 | depends on IA32_EMULATION | ||
| 811 | default y | ||
| 812 | |||
| 813 | config COMPAT_FOR_U64_ALIGNMENT | ||
| 814 | def_bool COMPAT | ||
| 815 | |||
| 816 | config SYSVIPC_COMPAT | ||
| 817 | bool | ||
| 818 | depends on COMPAT && SYSVIPC | ||
| 819 | default y | ||
| 820 | |||
| 821 | endmenu | ||
| 822 | |||
| 823 | source "net/Kconfig" | ||
| 824 | |||
| 825 | source drivers/Kconfig | ||
| 826 | |||
| 827 | source "drivers/firmware/Kconfig" | ||
| 828 | |||
| 829 | source fs/Kconfig | ||
| 830 | |||
| 831 | source "kernel/Kconfig.instrumentation" | ||
| 832 | |||
| 833 | source "arch/x86/Kconfig.debug" | ||
| 834 | |||
| 835 | source "security/Kconfig" | ||
| 836 | |||
| 837 | source "crypto/Kconfig" | ||
| 838 | |||
| 839 | source "lib/Kconfig" | ||
diff --git a/arch/x86/Makefile b/arch/x86/Makefile index 309597386a77..116b03a45636 100644 --- a/arch/x86/Makefile +++ b/arch/x86/Makefile | |||
| @@ -1,12 +1,16 @@ | |||
| 1 | # Unified Makefile for i386 and x86_64 | 1 | # Unified Makefile for i386 and x86_64 |
| 2 | 2 | ||
| 3 | # select defconfig based on actual architecture | 3 | # select defconfig based on actual architecture |
| 4 | KBUILD_DEFCONFIG := $(ARCH)_defconfig | 4 | ifeq ($(ARCH),x86) |
| 5 | KBUILD_DEFCONFIG := i386_defconfig | ||
| 6 | else | ||
| 7 | KBUILD_DEFCONFIG := $(ARCH)_defconfig | ||
| 8 | endif | ||
| 5 | 9 | ||
| 6 | # # No need to remake these files | 10 | # No need to remake these files |
| 7 | $(srctree)/arch/x86/Makefile%: ; | 11 | $(srctree)/arch/x86/Makefile%: ; |
| 8 | 12 | ||
| 9 | ifeq ($(ARCH),i386) | 13 | ifeq ($(CONFIG_X86_32),y) |
| 10 | include $(srctree)/arch/x86/Makefile_32 | 14 | include $(srctree)/arch/x86/Makefile_32 |
| 11 | else | 15 | else |
| 12 | include $(srctree)/arch/x86/Makefile_64 | 16 | include $(srctree)/arch/x86/Makefile_64 |
diff --git a/arch/x86/Makefile_32 b/arch/x86/Makefile_32 index 346ac0766875..50394da2f6c1 100644 --- a/arch/x86/Makefile_32 +++ b/arch/x86/Makefile_32 | |||
| @@ -160,7 +160,7 @@ archclean: | |||
| 160 | $(Q)$(MAKE) $(clean)=arch/x86/boot | 160 | $(Q)$(MAKE) $(clean)=arch/x86/boot |
| 161 | 161 | ||
| 162 | define archhelp | 162 | define archhelp |
| 163 | echo '* bzImage - Compressed kernel image (arch/$(ARCH)/boot/bzImage)' | 163 | echo '* bzImage - Compressed kernel image (arch/x86/boot/bzImage)' |
| 164 | echo ' install - Install kernel using' | 164 | echo ' install - Install kernel using' |
| 165 | echo ' (your) ~/bin/installkernel or' | 165 | echo ' (your) ~/bin/installkernel or' |
| 166 | echo ' (distribution) /sbin/installkernel or' | 166 | echo ' (distribution) /sbin/installkernel or' |
| @@ -170,6 +170,6 @@ define archhelp | |||
| 170 | echo ' isoimage - Create a boot CD-ROM image' | 170 | echo ' isoimage - Create a boot CD-ROM image' |
| 171 | endef | 171 | endef |
| 172 | 172 | ||
| 173 | CLEAN_FILES += arch/$(ARCH)/boot/fdimage \ | 173 | CLEAN_FILES += arch/x86/boot/fdimage \ |
| 174 | arch/$(ARCH)/boot/image.iso \ | 174 | arch/x86/boot/image.iso \ |
| 175 | arch/$(ARCH)/boot/mtools.conf | 175 | arch/x86/boot/mtools.conf |
diff --git a/arch/x86/Makefile_64 b/arch/x86/Makefile_64 index 57e714a47af7..a804860022e6 100644 --- a/arch/x86/Makefile_64 +++ b/arch/x86/Makefile_64 | |||
| @@ -127,7 +127,7 @@ archclean: | |||
| 127 | $(Q)$(MAKE) $(clean)=$(boot) | 127 | $(Q)$(MAKE) $(clean)=$(boot) |
| 128 | 128 | ||
| 129 | define archhelp | 129 | define archhelp |
| 130 | echo '* bzImage - Compressed kernel image (arch/$(ARCH)/boot/bzImage)' | 130 | echo '* bzImage - Compressed kernel image (arch/x86/boot/bzImage)' |
| 131 | echo ' install - Install kernel using' | 131 | echo ' install - Install kernel using' |
| 132 | echo ' (your) ~/bin/installkernel or' | 132 | echo ' (your) ~/bin/installkernel or' |
| 133 | echo ' (distribution) /sbin/installkernel or' | 133 | echo ' (distribution) /sbin/installkernel or' |
| @@ -137,8 +137,8 @@ define archhelp | |||
| 137 | echo ' isoimage - Create a boot CD-ROM image' | 137 | echo ' isoimage - Create a boot CD-ROM image' |
| 138 | endef | 138 | endef |
| 139 | 139 | ||
| 140 | CLEAN_FILES += arch/$(ARCH)/boot/fdimage \ | 140 | CLEAN_FILES += arch/x86/boot/fdimage \ |
| 141 | arch/$(ARCH)/boot/image.iso \ | 141 | arch/x86/boot/image.iso \ |
| 142 | arch/$(ARCH)/boot/mtools.conf | 142 | arch/x86/boot/mtools.conf |
| 143 | 143 | ||
| 144 | 144 | ||
diff --git a/arch/x86/boot/Makefile b/arch/x86/boot/Makefile index 89dbf970e058..7a3116ccf387 100644 --- a/arch/x86/boot/Makefile +++ b/arch/x86/boot/Makefile | |||
| @@ -49,10 +49,10 @@ HOSTCFLAGS_build.o := $(LINUXINCLUDE) | |||
| 49 | 49 | ||
| 50 | # How to compile the 16-bit code. Note we always compile for -march=i386, | 50 | # How to compile the 16-bit code. Note we always compile for -march=i386, |
| 51 | # that way we can complain to the user if the CPU is insufficient. | 51 | # that way we can complain to the user if the CPU is insufficient. |
| 52 | cflags-i386 := | 52 | cflags-$(CONFIG_X86_32) := |
| 53 | cflags-x86_64 := -m32 | 53 | cflags-$(CONFIG_X86_64) := -m32 |
| 54 | KBUILD_CFLAGS := $(LINUXINCLUDE) -g -Os -D_SETUP -D__KERNEL__ \ | 54 | KBUILD_CFLAGS := $(LINUXINCLUDE) -g -Os -D_SETUP -D__KERNEL__ \ |
| 55 | $(cflags-$(ARCH)) \ | 55 | $(cflags-y) \ |
| 56 | -Wall -Wstrict-prototypes \ | 56 | -Wall -Wstrict-prototypes \ |
| 57 | -march=i386 -mregparm=3 \ | 57 | -march=i386 -mregparm=3 \ |
| 58 | -include $(srctree)/$(src)/code16gcc.h \ | 58 | -include $(srctree)/$(src)/code16gcc.h \ |
diff --git a/arch/x86/boot/cpucheck.c b/arch/x86/boot/cpucheck.c index e655a89c5510..769065bd23d7 100644 --- a/arch/x86/boot/cpucheck.c +++ b/arch/x86/boot/cpucheck.c | |||
| @@ -42,13 +42,7 @@ static struct cpu_features cpu; | |||
| 42 | static u32 cpu_vendor[3]; | 42 | static u32 cpu_vendor[3]; |
| 43 | static u32 err_flags[NCAPINTS]; | 43 | static u32 err_flags[NCAPINTS]; |
| 44 | 44 | ||
| 45 | #ifdef CONFIG_X86_64 | ||
| 46 | static const int req_level = 64; | ||
| 47 | #elif defined(CONFIG_X86_MINIMUM_CPU_FAMILY) | ||
| 48 | static const int req_level = CONFIG_X86_MINIMUM_CPU_FAMILY; | 45 | static const int req_level = CONFIG_X86_MINIMUM_CPU_FAMILY; |
| 49 | #else | ||
| 50 | static const int req_level = 3; | ||
| 51 | #endif | ||
| 52 | 46 | ||
| 53 | static const u32 req_flags[NCAPINTS] = | 47 | static const u32 req_flags[NCAPINTS] = |
| 54 | { | 48 | { |
diff --git a/arch/x86/kernel/Makefile_32 b/arch/x86/kernel/Makefile_32 index b9d679820306..a7bc93c27662 100644 --- a/arch/x86/kernel/Makefile_32 +++ b/arch/x86/kernel/Makefile_32 | |||
| @@ -3,6 +3,7 @@ | |||
| 3 | # | 3 | # |
| 4 | 4 | ||
| 5 | extra-y := head_32.o init_task.o vmlinux.lds | 5 | extra-y := head_32.o init_task.o vmlinux.lds |
| 6 | CPPFLAGS_vmlinux.lds += -Ui386 | ||
| 6 | 7 | ||
| 7 | obj-y := process_32.o signal_32.o entry_32.o traps_32.o irq_32.o \ | 8 | obj-y := process_32.o signal_32.o entry_32.o traps_32.o irq_32.o \ |
| 8 | ptrace_32.o time_32.o ioport_32.o ldt_32.o setup_32.o i8259_32.o sys_i386_32.o \ | 9 | ptrace_32.o time_32.o ioport_32.o ldt_32.o setup_32.o i8259_32.o sys_i386_32.o \ |
| @@ -60,7 +61,7 @@ quiet_cmd_syscall = SYSCALL $@ | |||
| 60 | cmd_syscall = $(CC) -m elf_i386 -nostdlib $(SYSCFLAGS_$(@F)) \ | 61 | cmd_syscall = $(CC) -m elf_i386 -nostdlib $(SYSCFLAGS_$(@F)) \ |
| 61 | -Wl,-T,$(filter-out FORCE,$^) -o $@ | 62 | -Wl,-T,$(filter-out FORCE,$^) -o $@ |
| 62 | 63 | ||
| 63 | export CPPFLAGS_vsyscall_32.lds += -P -C -U$(ARCH) | 64 | export CPPFLAGS_vsyscall_32.lds += -P -C -Ui386 |
| 64 | 65 | ||
| 65 | vsyscall-flags = -shared -s -Wl,-soname=linux-gate.so.1 \ | 66 | vsyscall-flags = -shared -s -Wl,-soname=linux-gate.so.1 \ |
| 66 | $(call ld-option, -Wl$(comma)--hash-style=sysv) | 67 | $(call ld-option, -Wl$(comma)--hash-style=sysv) |
diff --git a/arch/x86/kernel/Makefile_64 b/arch/x86/kernel/Makefile_64 index 24671c3838b3..5a88890d8ee9 100644 --- a/arch/x86/kernel/Makefile_64 +++ b/arch/x86/kernel/Makefile_64 | |||
| @@ -3,7 +3,9 @@ | |||
| 3 | # | 3 | # |
| 4 | 4 | ||
| 5 | extra-y := head_64.o head64.o init_task.o vmlinux.lds | 5 | extra-y := head_64.o head64.o init_task.o vmlinux.lds |
| 6 | CPPFLAGS_vmlinux.lds += -Ux86_64 | ||
| 6 | EXTRA_AFLAGS := -traditional | 7 | EXTRA_AFLAGS := -traditional |
| 8 | |||
| 7 | obj-y := process_64.o signal_64.o entry_64.o traps_64.o irq_64.o \ | 9 | obj-y := process_64.o signal_64.o entry_64.o traps_64.o irq_64.o \ |
| 8 | ptrace_64.o time_64.o ioport_64.o ldt_64.o setup_64.o i8259_64.o sys_x86_64.o \ | 10 | ptrace_64.o time_64.o ioport_64.o ldt_64.o setup_64.o i8259_64.o sys_x86_64.o \ |
| 9 | x8664_ksyms_64.o i387_64.o syscall_64.o vsyscall_64.o \ | 11 | x8664_ksyms_64.o i387_64.o syscall_64.o vsyscall_64.o \ |
diff --git a/arch/x86/kernel/acpi/boot.c b/arch/x86/kernel/acpi/boot.c index 289247d974c6..0ca27c7b0e8d 100644 --- a/arch/x86/kernel/acpi/boot.c +++ b/arch/x86/kernel/acpi/boot.c | |||
| @@ -637,6 +637,38 @@ static int __init acpi_parse_hpet(struct acpi_table_header *table) | |||
| 637 | } | 637 | } |
| 638 | 638 | ||
| 639 | hpet_address = hpet_tbl->address.address; | 639 | hpet_address = hpet_tbl->address.address; |
| 640 | |||
| 641 | /* | ||
| 642 | * Some broken BIOSes advertise HPET at 0x0. We really do not | ||
| 643 | * want to allocate a resource there. | ||
| 644 | */ | ||
| 645 | if (!hpet_address) { | ||
| 646 | printk(KERN_WARNING PREFIX | ||
| 647 | "HPET id: %#x base: %#lx is invalid\n", | ||
| 648 | hpet_tbl->id, hpet_address); | ||
| 649 | return 0; | ||
| 650 | } | ||
| 651 | #ifdef CONFIG_X86_64 | ||
| 652 | /* | ||
| 653 | * Some even more broken BIOSes advertise HPET at | ||
| 654 | * 0xfed0000000000000 instead of 0xfed00000. Fix it up and add | ||
| 655 | * some noise: | ||
| 656 | */ | ||
| 657 | if (hpet_address == 0xfed0000000000000UL) { | ||
| 658 | if (!hpet_force_user) { | ||
| 659 | printk(KERN_WARNING PREFIX "HPET id: %#x " | ||
| 660 | "base: 0xfed0000000000000 is bogus\n " | ||
| 661 | "try hpet=force on the kernel command line to " | ||
| 662 | "fix it up to 0xfed00000.\n", hpet_tbl->id); | ||
| 663 | hpet_address = 0; | ||
| 664 | return 0; | ||
| 665 | } | ||
| 666 | printk(KERN_WARNING PREFIX | ||
| 667 | "HPET id: %#x base: 0xfed0000000000000 fixed up " | ||
| 668 | "to 0xfed00000.\n", hpet_tbl->id); | ||
| 669 | hpet_address >>= 32; | ||
| 670 | } | ||
| 671 | #endif | ||
| 640 | printk(KERN_INFO PREFIX "HPET id: %#x base: %#lx\n", | 672 | printk(KERN_INFO PREFIX "HPET id: %#x base: %#lx\n", |
| 641 | hpet_tbl->id, hpet_address); | 673 | hpet_tbl->id, hpet_address); |
| 642 | 674 | ||
diff --git a/arch/x86/kernel/cpu/cpufreq/Kconfig_32 b/arch/x86/kernel/cpu/cpufreq/Kconfig index d8c6f132dc7a..151eda0a23fc 100644 --- a/arch/x86/kernel/cpu/cpufreq/Kconfig_32 +++ b/arch/x86/kernel/cpu/cpufreq/Kconfig | |||
| @@ -19,6 +19,9 @@ config X86_ACPI_CPUFREQ | |||
| 19 | Processor Performance States. | 19 | Processor Performance States. |
| 20 | This driver also supports Intel Enhanced Speedstep. | 20 | This driver also supports Intel Enhanced Speedstep. |
| 21 | 21 | ||
| 22 | To compile this driver as a module, choose M here: the | ||
| 23 | module will be called acpi-cpufreq. | ||
| 24 | |||
| 22 | For details, take a look at <file:Documentation/cpu-freq/>. | 25 | For details, take a look at <file:Documentation/cpu-freq/>. |
| 23 | 26 | ||
| 24 | If in doubt, say N. | 27 | If in doubt, say N. |
| @@ -26,7 +29,7 @@ config X86_ACPI_CPUFREQ | |||
| 26 | config ELAN_CPUFREQ | 29 | config ELAN_CPUFREQ |
| 27 | tristate "AMD Elan SC400 and SC410" | 30 | tristate "AMD Elan SC400 and SC410" |
| 28 | select CPU_FREQ_TABLE | 31 | select CPU_FREQ_TABLE |
| 29 | depends on X86_ELAN | 32 | depends on X86_32 && X86_ELAN |
| 30 | ---help--- | 33 | ---help--- |
| 31 | This adds the CPUFreq driver for AMD Elan SC400 and SC410 | 34 | This adds the CPUFreq driver for AMD Elan SC400 and SC410 |
| 32 | processors. | 35 | processors. |
| @@ -42,7 +45,7 @@ config ELAN_CPUFREQ | |||
| 42 | config SC520_CPUFREQ | 45 | config SC520_CPUFREQ |
| 43 | tristate "AMD Elan SC520" | 46 | tristate "AMD Elan SC520" |
| 44 | select CPU_FREQ_TABLE | 47 | select CPU_FREQ_TABLE |
| 45 | depends on X86_ELAN | 48 | depends on X86_32 && X86_ELAN |
| 46 | ---help--- | 49 | ---help--- |
| 47 | This adds the CPUFreq driver for AMD Elan SC520 processor. | 50 | This adds the CPUFreq driver for AMD Elan SC520 processor. |
| 48 | 51 | ||
| @@ -54,6 +57,7 @@ config SC520_CPUFREQ | |||
| 54 | config X86_POWERNOW_K6 | 57 | config X86_POWERNOW_K6 |
| 55 | tristate "AMD Mobile K6-2/K6-3 PowerNow!" | 58 | tristate "AMD Mobile K6-2/K6-3 PowerNow!" |
| 56 | select CPU_FREQ_TABLE | 59 | select CPU_FREQ_TABLE |
| 60 | depends on X86_32 | ||
| 57 | help | 61 | help |
| 58 | This adds the CPUFreq driver for mobile AMD K6-2+ and mobile | 62 | This adds the CPUFreq driver for mobile AMD K6-2+ and mobile |
| 59 | AMD K6-3+ processors. | 63 | AMD K6-3+ processors. |
| @@ -65,6 +69,7 @@ config X86_POWERNOW_K6 | |||
| 65 | config X86_POWERNOW_K7 | 69 | config X86_POWERNOW_K7 |
| 66 | tristate "AMD Mobile Athlon/Duron PowerNow!" | 70 | tristate "AMD Mobile Athlon/Duron PowerNow!" |
| 67 | select CPU_FREQ_TABLE | 71 | select CPU_FREQ_TABLE |
| 72 | depends on X86_32 | ||
| 68 | help | 73 | help |
| 69 | This adds the CPUFreq driver for mobile AMD K7 mobile processors. | 74 | This adds the CPUFreq driver for mobile AMD K7 mobile processors. |
| 70 | 75 | ||
| @@ -76,23 +81,27 @@ config X86_POWERNOW_K7_ACPI | |||
| 76 | bool | 81 | bool |
| 77 | depends on X86_POWERNOW_K7 && ACPI_PROCESSOR | 82 | depends on X86_POWERNOW_K7 && ACPI_PROCESSOR |
| 78 | depends on !(X86_POWERNOW_K7 = y && ACPI_PROCESSOR = m) | 83 | depends on !(X86_POWERNOW_K7 = y && ACPI_PROCESSOR = m) |
| 84 | depends on X86_32 | ||
| 79 | default y | 85 | default y |
| 80 | 86 | ||
| 81 | config X86_POWERNOW_K8 | 87 | config X86_POWERNOW_K8 |
| 82 | tristate "AMD Opteron/Athlon64 PowerNow!" | 88 | tristate "AMD Opteron/Athlon64 PowerNow!" |
| 83 | select CPU_FREQ_TABLE | 89 | select CPU_FREQ_TABLE |
| 84 | depends on EXPERIMENTAL | ||
| 85 | help | 90 | help |
| 86 | This adds the CPUFreq driver for mobile AMD Opteron/Athlon64 processors. | 91 | This adds the CPUFreq driver for mobile AMD Opteron/Athlon64 processors. |
| 87 | 92 | ||
| 93 | To compile this driver as a module, choose M here: the | ||
| 94 | module will be called powernow-k8. | ||
| 95 | |||
| 88 | For details, take a look at <file:Documentation/cpu-freq/>. | 96 | For details, take a look at <file:Documentation/cpu-freq/>. |
| 89 | 97 | ||
| 90 | If in doubt, say N. | 98 | If in doubt, say N. |
| 91 | 99 | ||
| 92 | config X86_POWERNOW_K8_ACPI | 100 | config X86_POWERNOW_K8_ACPI |
| 93 | bool "ACPI Support" | 101 | bool |
| 94 | select ACPI_PROCESSOR | 102 | prompt "ACPI Support" if X86_32 |
| 95 | depends on ACPI && X86_POWERNOW_K8 | 103 | depends on ACPI && X86_POWERNOW_K8 && ACPI_PROCESSOR |
| 104 | depends on !(X86_POWERNOW_K8 = y && ACPI_PROCESSOR = m) | ||
| 96 | default y | 105 | default y |
| 97 | help | 106 | help |
| 98 | This provides access to the K8s Processor Performance States via ACPI. | 107 | This provides access to the K8s Processor Performance States via ACPI. |
| @@ -104,7 +113,7 @@ config X86_POWERNOW_K8_ACPI | |||
| 104 | 113 | ||
| 105 | config X86_GX_SUSPMOD | 114 | config X86_GX_SUSPMOD |
| 106 | tristate "Cyrix MediaGX/NatSemi Geode Suspend Modulation" | 115 | tristate "Cyrix MediaGX/NatSemi Geode Suspend Modulation" |
| 107 | depends on PCI | 116 | depends on X86_32 && PCI |
| 108 | help | 117 | help |
| 109 | This add the CPUFreq driver for NatSemi Geode processors which | 118 | This add the CPUFreq driver for NatSemi Geode processors which |
| 110 | support suspend modulation. | 119 | support suspend modulation. |
| @@ -114,15 +123,20 @@ config X86_GX_SUSPMOD | |||
| 114 | If in doubt, say N. | 123 | If in doubt, say N. |
| 115 | 124 | ||
| 116 | config X86_SPEEDSTEP_CENTRINO | 125 | config X86_SPEEDSTEP_CENTRINO |
| 117 | tristate "Intel Enhanced SpeedStep" | 126 | tristate "Intel Enhanced SpeedStep (deprecated)" |
| 118 | select CPU_FREQ_TABLE | 127 | select CPU_FREQ_TABLE |
| 119 | select X86_SPEEDSTEP_CENTRINO_TABLE | 128 | select X86_SPEEDSTEP_CENTRINO_TABLE if X86_32 |
| 129 | depends on X86_32 || (X86_64 && ACPI_PROCESSOR) | ||
| 120 | help | 130 | help |
| 131 | This is deprecated and this functionality is now merged into | ||
| 132 | acpi_cpufreq (X86_ACPI_CPUFREQ). Use that driver instead of | ||
| 133 | speedstep_centrino. | ||
| 121 | This adds the CPUFreq driver for Enhanced SpeedStep enabled | 134 | This adds the CPUFreq driver for Enhanced SpeedStep enabled |
| 122 | mobile CPUs. This means Intel Pentium M (Centrino) CPUs. However, | 135 | mobile CPUs. This means Intel Pentium M (Centrino) CPUs |
| 123 | you also need to say Y to "Use ACPI tables to decode..." below | 136 | or 64bit enabled Intel Xeons. |
| 124 | [which might imply enabling ACPI] if you want to use this driver | 137 | |
| 125 | on non-Banias CPUs. | 138 | To compile this driver as a module, choose M here: the |
| 139 | module will be called speedstep-centrino. | ||
| 126 | 140 | ||
| 127 | For details, take a look at <file:Documentation/cpu-freq/>. | 141 | For details, take a look at <file:Documentation/cpu-freq/>. |
| 128 | 142 | ||
| @@ -130,7 +144,7 @@ config X86_SPEEDSTEP_CENTRINO | |||
| 130 | 144 | ||
| 131 | config X86_SPEEDSTEP_CENTRINO_TABLE | 145 | config X86_SPEEDSTEP_CENTRINO_TABLE |
| 132 | bool "Built-in tables for Banias CPUs" | 146 | bool "Built-in tables for Banias CPUs" |
| 133 | depends on X86_SPEEDSTEP_CENTRINO | 147 | depends on X86_32 && X86_SPEEDSTEP_CENTRINO |
| 134 | default y | 148 | default y |
| 135 | help | 149 | help |
| 136 | Use built-in tables for Banias CPUs if ACPI encoding | 150 | Use built-in tables for Banias CPUs if ACPI encoding |
| @@ -141,6 +155,7 @@ config X86_SPEEDSTEP_CENTRINO_TABLE | |||
| 141 | config X86_SPEEDSTEP_ICH | 155 | config X86_SPEEDSTEP_ICH |
| 142 | tristate "Intel Speedstep on ICH-M chipsets (ioport interface)" | 156 | tristate "Intel Speedstep on ICH-M chipsets (ioport interface)" |
| 143 | select CPU_FREQ_TABLE | 157 | select CPU_FREQ_TABLE |
| 158 | depends on X86_32 | ||
| 144 | help | 159 | help |
| 145 | This adds the CPUFreq driver for certain mobile Intel Pentium III | 160 | This adds the CPUFreq driver for certain mobile Intel Pentium III |
| 146 | (Coppermine), all mobile Intel Pentium III-M (Tualatin) and all | 161 | (Coppermine), all mobile Intel Pentium III-M (Tualatin) and all |
| @@ -154,7 +169,7 @@ config X86_SPEEDSTEP_ICH | |||
| 154 | config X86_SPEEDSTEP_SMI | 169 | config X86_SPEEDSTEP_SMI |
| 155 | tristate "Intel SpeedStep on 440BX/ZX/MX chipsets (SMI interface)" | 170 | tristate "Intel SpeedStep on 440BX/ZX/MX chipsets (SMI interface)" |
| 156 | select CPU_FREQ_TABLE | 171 | select CPU_FREQ_TABLE |
| 157 | depends on EXPERIMENTAL | 172 | depends on X86_32 && EXPERIMENTAL |
| 158 | help | 173 | help |
| 159 | This adds the CPUFreq driver for certain mobile Intel Pentium III | 174 | This adds the CPUFreq driver for certain mobile Intel Pentium III |
| 160 | (Coppermine), all mobile Intel Pentium III-M (Tualatin) | 175 | (Coppermine), all mobile Intel Pentium III-M (Tualatin) |
| @@ -169,15 +184,24 @@ config X86_P4_CLOCKMOD | |||
| 169 | select CPU_FREQ_TABLE | 184 | select CPU_FREQ_TABLE |
| 170 | help | 185 | help |
| 171 | This adds the CPUFreq driver for Intel Pentium 4 / XEON | 186 | This adds the CPUFreq driver for Intel Pentium 4 / XEON |
| 172 | processors. | 187 | processors. When enabled it will lower CPU temperature by skipping |
| 188 | clocks. | ||
| 189 | |||
| 190 | This driver should be only used in exceptional | ||
| 191 | circumstances when very low power is needed because it causes severe | ||
| 192 | slowdowns and noticeable latencies. Normally Speedstep should be used | ||
| 193 | instead. | ||
| 194 | |||
| 195 | To compile this driver as a module, choose M here: the | ||
| 196 | module will be called p4-clockmod. | ||
| 173 | 197 | ||
| 174 | For details, take a look at <file:Documentation/cpu-freq/>. | 198 | For details, take a look at <file:Documentation/cpu-freq/>. |
| 175 | 199 | ||
| 176 | If in doubt, say N. | 200 | Unless you are absolutely sure say N. |
| 177 | 201 | ||
| 178 | config X86_CPUFREQ_NFORCE2 | 202 | config X86_CPUFREQ_NFORCE2 |
| 179 | tristate "nVidia nForce2 FSB changing" | 203 | tristate "nVidia nForce2 FSB changing" |
| 180 | depends on EXPERIMENTAL | 204 | depends on X86_32 && EXPERIMENTAL |
| 181 | help | 205 | help |
| 182 | This adds the CPUFreq driver for FSB changing on nVidia nForce2 | 206 | This adds the CPUFreq driver for FSB changing on nVidia nForce2 |
| 183 | platforms. | 207 | platforms. |
| @@ -188,6 +212,7 @@ config X86_CPUFREQ_NFORCE2 | |||
| 188 | 212 | ||
| 189 | config X86_LONGRUN | 213 | config X86_LONGRUN |
| 190 | tristate "Transmeta LongRun" | 214 | tristate "Transmeta LongRun" |
| 215 | depends on X86_32 | ||
| 191 | help | 216 | help |
| 192 | This adds the CPUFreq driver for Transmeta Crusoe and Efficeon processors | 217 | This adds the CPUFreq driver for Transmeta Crusoe and Efficeon processors |
| 193 | which support LongRun. | 218 | which support LongRun. |
| @@ -199,7 +224,7 @@ config X86_LONGRUN | |||
| 199 | config X86_LONGHAUL | 224 | config X86_LONGHAUL |
| 200 | tristate "VIA Cyrix III Longhaul" | 225 | tristate "VIA Cyrix III Longhaul" |
| 201 | select CPU_FREQ_TABLE | 226 | select CPU_FREQ_TABLE |
| 202 | depends on ACPI_PROCESSOR | 227 | depends on X86_32 && ACPI_PROCESSOR |
| 203 | help | 228 | help |
| 204 | This adds the CPUFreq driver for VIA Samuel/CyrixIII, | 229 | This adds the CPUFreq driver for VIA Samuel/CyrixIII, |
| 205 | VIA Cyrix Samuel/C3, VIA Cyrix Ezra and VIA Cyrix Ezra-T | 230 | VIA Cyrix Samuel/C3, VIA Cyrix Ezra and VIA Cyrix Ezra-T |
| @@ -212,7 +237,7 @@ config X86_LONGHAUL | |||
| 212 | config X86_E_POWERSAVER | 237 | config X86_E_POWERSAVER |
| 213 | tristate "VIA C7 Enhanced PowerSaver (EXPERIMENTAL)" | 238 | tristate "VIA C7 Enhanced PowerSaver (EXPERIMENTAL)" |
| 214 | select CPU_FREQ_TABLE | 239 | select CPU_FREQ_TABLE |
| 215 | depends on EXPERIMENTAL | 240 | depends on X86_32 && EXPERIMENTAL |
| 216 | help | 241 | help |
| 217 | This adds the CPUFreq driver for VIA C7 processors. | 242 | This adds the CPUFreq driver for VIA C7 processors. |
| 218 | 243 | ||
| @@ -233,11 +258,11 @@ config X86_ACPI_CPUFREQ_PROC_INTF | |||
| 233 | 258 | ||
| 234 | config X86_SPEEDSTEP_LIB | 259 | config X86_SPEEDSTEP_LIB |
| 235 | tristate | 260 | tristate |
| 236 | default X86_SPEEDSTEP_ICH || X86_SPEEDSTEP_SMI || X86_P4_CLOCKMOD | 261 | default (X86_SPEEDSTEP_ICH || X86_SPEEDSTEP_SMI || X86_P4_CLOCKMOD) |
| 237 | 262 | ||
| 238 | config X86_SPEEDSTEP_RELAXED_CAP_CHECK | 263 | config X86_SPEEDSTEP_RELAXED_CAP_CHECK |
| 239 | bool "Relaxed speedstep capability checks" | 264 | bool "Relaxed speedstep capability checks" |
| 240 | depends on (X86_SPEEDSTEP_SMI || X86_SPEEDSTEP_ICH) | 265 | depends on X86_32 && (X86_SPEEDSTEP_SMI || X86_SPEEDSTEP_ICH) |
| 241 | help | 266 | help |
| 242 | Don't perform all checks for a speedstep capable system which would | 267 | Don't perform all checks for a speedstep capable system which would |
| 243 | normally be done. Some ancient or strange systems, though speedstep | 268 | normally be done. Some ancient or strange systems, though speedstep |
diff --git a/arch/x86/kernel/cpu/cpufreq/Kconfig_64 b/arch/x86/kernel/cpu/cpufreq/Kconfig_64 deleted file mode 100644 index 9c9699fdcf52..000000000000 --- a/arch/x86/kernel/cpu/cpufreq/Kconfig_64 +++ /dev/null | |||
| @@ -1,108 +0,0 @@ | |||
| 1 | # | ||
| 2 | # CPU Frequency scaling | ||
| 3 | # | ||
| 4 | |||
| 5 | menu "CPU Frequency scaling" | ||
| 6 | |||
| 7 | source "drivers/cpufreq/Kconfig" | ||
| 8 | |||
| 9 | if CPU_FREQ | ||
| 10 | |||
| 11 | comment "CPUFreq processor drivers" | ||
| 12 | |||
| 13 | config X86_POWERNOW_K8 | ||
| 14 | tristate "AMD Opteron/Athlon64 PowerNow!" | ||
| 15 | select CPU_FREQ_TABLE | ||
| 16 | help | ||
| 17 | This adds the CPUFreq driver for mobile AMD Opteron/Athlon64 processors. | ||
| 18 | |||
| 19 | To compile this driver as a module, choose M here: the | ||
| 20 | module will be called powernow-k8. | ||
| 21 | |||
| 22 | For details, take a look at <file:Documentation/cpu-freq/>. | ||
| 23 | |||
| 24 | If in doubt, say N. | ||
| 25 | |||
| 26 | config X86_POWERNOW_K8_ACPI | ||
| 27 | bool | ||
| 28 | depends on X86_POWERNOW_K8 && ACPI_PROCESSOR | ||
| 29 | depends on !(X86_POWERNOW_K8 = y && ACPI_PROCESSOR = m) | ||
| 30 | default y | ||
| 31 | |||
| 32 | config X86_SPEEDSTEP_CENTRINO | ||
| 33 | tristate "Intel Enhanced SpeedStep (deprecated)" | ||
| 34 | select CPU_FREQ_TABLE | ||
| 35 | depends on ACPI_PROCESSOR | ||
| 36 | help | ||
| 37 | This is deprecated and this functionality is now merged into | ||
| 38 | acpi_cpufreq (X86_ACPI_CPUFREQ). Use that driver instead of | ||
| 39 | speedstep_centrino. | ||
| 40 | This adds the CPUFreq driver for Enhanced SpeedStep enabled | ||
| 41 | mobile CPUs. This means Intel Pentium M (Centrino) CPUs | ||
| 42 | or 64bit enabled Intel Xeons. | ||
| 43 | |||
| 44 | To compile this driver as a module, choose M here: the | ||
| 45 | module will be called speedstep-centrino. | ||
| 46 | |||
| 47 | For details, take a look at <file:Documentation/cpu-freq/>. | ||
| 48 | |||
| 49 | If in doubt, say N. | ||
| 50 | |||
| 51 | config X86_ACPI_CPUFREQ | ||
| 52 | tristate "ACPI Processor P-States driver" | ||
| 53 | select CPU_FREQ_TABLE | ||
| 54 | depends on ACPI_PROCESSOR | ||
| 55 | help | ||
| 56 | This driver adds a CPUFreq driver which utilizes the ACPI | ||
| 57 | Processor Performance States. | ||
| 58 | This driver also supports Intel Enhanced Speedstep. | ||
| 59 | |||
| 60 | To compile this driver as a module, choose M here: the | ||
| 61 | module will be called acpi-cpufreq. | ||
| 62 | |||
| 63 | For details, take a look at <file:Documentation/cpu-freq/>. | ||
| 64 | |||
| 65 | If in doubt, say N. | ||
| 66 | |||
| 67 | comment "shared options" | ||
| 68 | |||
| 69 | config X86_ACPI_CPUFREQ_PROC_INTF | ||
| 70 | bool "/proc/acpi/processor/../performance interface (deprecated)" | ||
| 71 | depends on PROC_FS | ||
| 72 | depends on X86_ACPI_CPUFREQ || X86_POWERNOW_K8_ACPI | ||
| 73 | help | ||
| 74 | This enables the deprecated /proc/acpi/processor/../performance | ||
| 75 | interface. While it is helpful for debugging, the generic, | ||
| 76 | cross-architecture cpufreq interfaces should be used. | ||
| 77 | |||
| 78 | If in doubt, say N. | ||
| 79 | |||
| 80 | config X86_P4_CLOCKMOD | ||
| 81 | tristate "Intel Pentium 4 clock modulation" | ||
| 82 | depends on EMBEDDED | ||
| 83 | select CPU_FREQ_TABLE | ||
| 84 | help | ||
| 85 | This adds the clock modulation driver for Intel Pentium 4 / XEON | ||
| 86 | processors. When enabled it will lower CPU temperature by skipping | ||
| 87 | clocks. | ||
| 88 | |||
| 89 | This driver should be only used in exceptional | ||
| 90 | circumstances when very low power is needed because it causes severe | ||
| 91 | slowdowns and noticeable latencies. Normally Speedstep should be used | ||
| 92 | instead. | ||
| 93 | |||
| 94 | To compile this driver as a module, choose M here: the | ||
| 95 | module will be called p4-clockmod. | ||
| 96 | |||
| 97 | For details, take a look at <file:Documentation/cpu-freq/>. | ||
| 98 | |||
| 99 | Unless you are absolutely sure say N. | ||
| 100 | |||
| 101 | |||
| 102 | config X86_SPEEDSTEP_LIB | ||
| 103 | tristate | ||
| 104 | default X86_P4_CLOCKMOD | ||
| 105 | |||
| 106 | endif | ||
| 107 | |||
| 108 | endmenu | ||
diff --git a/arch/x86/kernel/cpu/cpufreq/powernow-k8.c b/arch/x86/kernel/cpu/cpufreq/powernow-k8.c index 9c36a53676b7..99e1ef9939be 100644 --- a/arch/x86/kernel/cpu/cpufreq/powernow-k8.c +++ b/arch/x86/kernel/cpu/cpufreq/powernow-k8.c | |||
| @@ -46,7 +46,7 @@ | |||
| 46 | 46 | ||
| 47 | #define PFX "powernow-k8: " | 47 | #define PFX "powernow-k8: " |
| 48 | #define BFX PFX "BIOS error: " | 48 | #define BFX PFX "BIOS error: " |
| 49 | #define VERSION "version 2.00.00" | 49 | #define VERSION "version 2.20.00" |
| 50 | #include "powernow-k8.h" | 50 | #include "powernow-k8.h" |
| 51 | 51 | ||
| 52 | /* serialize freq changes */ | 52 | /* serialize freq changes */ |
| @@ -73,33 +73,11 @@ static u32 find_khz_freq_from_fid(u32 fid) | |||
| 73 | return 1000 * find_freq_from_fid(fid); | 73 | return 1000 * find_freq_from_fid(fid); |
| 74 | } | 74 | } |
| 75 | 75 | ||
| 76 | /* Return a frequency in MHz, given an input fid and did */ | 76 | static u32 find_khz_freq_from_pstate(struct cpufreq_frequency_table *data, u32 pstate) |
| 77 | static u32 find_freq_from_fiddid(u32 fid, u32 did) | ||
| 78 | { | 77 | { |
| 79 | if (current_cpu_data.x86 == 0x10) | 78 | return data[pstate].frequency; |
| 80 | return 100 * (fid + 0x10) >> did; | ||
| 81 | else | ||
| 82 | return 100 * (fid + 0x8) >> did; | ||
| 83 | } | ||
| 84 | |||
| 85 | static u32 find_khz_freq_from_fiddid(u32 fid, u32 did) | ||
| 86 | { | ||
| 87 | return 1000 * find_freq_from_fiddid(fid, did); | ||
| 88 | } | ||
| 89 | |||
| 90 | static u32 find_fid_from_pstate(u32 pstate) | ||
| 91 | { | ||
| 92 | u32 hi, lo; | ||
| 93 | rdmsr(MSR_PSTATE_DEF_BASE + pstate, lo, hi); | ||
| 94 | return lo & HW_PSTATE_FID_MASK; | ||
| 95 | } | 79 | } |
| 96 | 80 | ||
| 97 | static u32 find_did_from_pstate(u32 pstate) | ||
| 98 | { | ||
| 99 | u32 hi, lo; | ||
| 100 | rdmsr(MSR_PSTATE_DEF_BASE + pstate, lo, hi); | ||
| 101 | return (lo & HW_PSTATE_DID_MASK) >> HW_PSTATE_DID_SHIFT; | ||
| 102 | } | ||
| 103 | 81 | ||
| 104 | /* Return the vco fid for an input fid | 82 | /* Return the vco fid for an input fid |
| 105 | * | 83 | * |
| @@ -142,9 +120,7 @@ static int query_current_values_with_pending_wait(struct powernow_k8_data *data) | |||
| 142 | if (cpu_family == CPU_HW_PSTATE) { | 120 | if (cpu_family == CPU_HW_PSTATE) { |
| 143 | rdmsr(MSR_PSTATE_STATUS, lo, hi); | 121 | rdmsr(MSR_PSTATE_STATUS, lo, hi); |
| 144 | i = lo & HW_PSTATE_MASK; | 122 | i = lo & HW_PSTATE_MASK; |
| 145 | rdmsr(MSR_PSTATE_DEF_BASE + i, lo, hi); | 123 | data->currpstate = i; |
| 146 | data->currfid = lo & HW_PSTATE_FID_MASK; | ||
| 147 | data->currdid = (lo & HW_PSTATE_DID_MASK) >> HW_PSTATE_DID_SHIFT; | ||
| 148 | return 0; | 124 | return 0; |
| 149 | } | 125 | } |
| 150 | do { | 126 | do { |
| @@ -295,7 +271,7 @@ static int decrease_vid_code_by_step(struct powernow_k8_data *data, u32 reqvid, | |||
| 295 | static int transition_pstate(struct powernow_k8_data *data, u32 pstate) | 271 | static int transition_pstate(struct powernow_k8_data *data, u32 pstate) |
| 296 | { | 272 | { |
| 297 | wrmsr(MSR_PSTATE_CTRL, pstate, 0); | 273 | wrmsr(MSR_PSTATE_CTRL, pstate, 0); |
| 298 | data->currfid = find_fid_from_pstate(pstate); | 274 | data->currpstate = pstate; |
| 299 | return 0; | 275 | return 0; |
| 300 | } | 276 | } |
| 301 | 277 | ||
| @@ -845,17 +821,20 @@ err_out: | |||
| 845 | static int fill_powernow_table_pstate(struct powernow_k8_data *data, struct cpufreq_frequency_table *powernow_table) | 821 | static int fill_powernow_table_pstate(struct powernow_k8_data *data, struct cpufreq_frequency_table *powernow_table) |
| 846 | { | 822 | { |
| 847 | int i; | 823 | int i; |
| 824 | u32 hi = 0, lo = 0; | ||
| 825 | rdmsr(MSR_PSTATE_CUR_LIMIT, hi, lo); | ||
| 826 | data->max_hw_pstate = (hi & HW_PSTATE_MAX_MASK) >> HW_PSTATE_MAX_SHIFT; | ||
| 848 | 827 | ||
| 849 | for (i = 0; i < data->acpi_data.state_count; i++) { | 828 | for (i = 0; i < data->acpi_data.state_count; i++) { |
| 850 | u32 index; | 829 | u32 index; |
| 851 | u32 hi = 0, lo = 0; | 830 | u32 hi = 0, lo = 0; |
| 852 | u32 fid; | ||
| 853 | u32 did; | ||
| 854 | 831 | ||
| 855 | index = data->acpi_data.states[i].control & HW_PSTATE_MASK; | 832 | index = data->acpi_data.states[i].control & HW_PSTATE_MASK; |
| 856 | if (index > MAX_HW_PSTATE) { | 833 | if (index > data->max_hw_pstate) { |
| 857 | printk(KERN_ERR PFX "invalid pstate %d - bad value %d.\n", i, index); | 834 | printk(KERN_ERR PFX "invalid pstate %d - bad value %d.\n", i, index); |
| 858 | printk(KERN_ERR PFX "Please report to BIOS manufacturer\n"); | 835 | printk(KERN_ERR PFX "Please report to BIOS manufacturer\n"); |
| 836 | powernow_table[i].frequency = CPUFREQ_ENTRY_INVALID; | ||
| 837 | continue; | ||
| 859 | } | 838 | } |
| 860 | rdmsr(MSR_PSTATE_DEF_BASE + index, lo, hi); | 839 | rdmsr(MSR_PSTATE_DEF_BASE + index, lo, hi); |
| 861 | if (!(hi & HW_PSTATE_VALID_MASK)) { | 840 | if (!(hi & HW_PSTATE_VALID_MASK)) { |
| @@ -864,22 +843,9 @@ static int fill_powernow_table_pstate(struct powernow_k8_data *data, struct cpuf | |||
| 864 | continue; | 843 | continue; |
| 865 | } | 844 | } |
| 866 | 845 | ||
| 867 | fid = lo & HW_PSTATE_FID_MASK; | 846 | powernow_table[i].index = index; |
| 868 | did = (lo & HW_PSTATE_DID_MASK) >> HW_PSTATE_DID_SHIFT; | ||
| 869 | 847 | ||
| 870 | dprintk(" %d : fid 0x%x, did 0x%x\n", index, fid, did); | 848 | powernow_table[i].frequency = data->acpi_data.states[i].core_frequency * 1000; |
| 871 | |||
| 872 | powernow_table[i].index = index | (fid << HW_FID_INDEX_SHIFT) | (did << HW_DID_INDEX_SHIFT); | ||
| 873 | |||
| 874 | powernow_table[i].frequency = find_khz_freq_from_fiddid(fid, did); | ||
| 875 | |||
| 876 | if (powernow_table[i].frequency != (data->acpi_data.states[i].core_frequency * 1000)) { | ||
| 877 | printk(KERN_INFO PFX "invalid freq entries %u kHz vs. %u kHz\n", | ||
| 878 | powernow_table[i].frequency, | ||
| 879 | (unsigned int) (data->acpi_data.states[i].core_frequency * 1000)); | ||
| 880 | powernow_table[i].frequency = CPUFREQ_ENTRY_INVALID; | ||
| 881 | continue; | ||
| 882 | } | ||
| 883 | } | 849 | } |
| 884 | return 0; | 850 | return 0; |
| 885 | } | 851 | } |
| @@ -1020,22 +986,18 @@ static int transition_frequency_fidvid(struct powernow_k8_data *data, unsigned i | |||
| 1020 | /* Take a frequency, and issue the hardware pstate transition command */ | 986 | /* Take a frequency, and issue the hardware pstate transition command */ |
| 1021 | static int transition_frequency_pstate(struct powernow_k8_data *data, unsigned int index) | 987 | static int transition_frequency_pstate(struct powernow_k8_data *data, unsigned int index) |
| 1022 | { | 988 | { |
| 1023 | u32 fid = 0; | ||
| 1024 | u32 did = 0; | ||
| 1025 | u32 pstate = 0; | 989 | u32 pstate = 0; |
| 1026 | int res, i; | 990 | int res, i; |
| 1027 | struct cpufreq_freqs freqs; | 991 | struct cpufreq_freqs freqs; |
| 1028 | 992 | ||
| 1029 | dprintk("cpu %d transition to index %u\n", smp_processor_id(), index); | 993 | dprintk("cpu %d transition to index %u\n", smp_processor_id(), index); |
| 1030 | 994 | ||
| 1031 | /* get fid did for hardware pstate transition */ | 995 | /* get MSR index for hardware pstate transition */ |
| 1032 | pstate = index & HW_PSTATE_MASK; | 996 | pstate = index & HW_PSTATE_MASK; |
| 1033 | if (pstate > MAX_HW_PSTATE) | 997 | if (pstate > data->max_hw_pstate) |
| 1034 | return 0; | 998 | return 0; |
| 1035 | fid = (index & HW_FID_INDEX_MASK) >> HW_FID_INDEX_SHIFT; | 999 | freqs.old = find_khz_freq_from_pstate(data->powernow_table, data->currpstate); |
| 1036 | did = (index & HW_DID_INDEX_MASK) >> HW_DID_INDEX_SHIFT; | 1000 | freqs.new = find_khz_freq_from_pstate(data->powernow_table, pstate); |
| 1037 | freqs.old = find_khz_freq_from_fiddid(data->currfid, data->currdid); | ||
| 1038 | freqs.new = find_khz_freq_from_fiddid(fid, did); | ||
| 1039 | 1001 | ||
| 1040 | for_each_cpu_mask(i, *(data->available_cores)) { | 1002 | for_each_cpu_mask(i, *(data->available_cores)) { |
| 1041 | freqs.cpu = i; | 1003 | freqs.cpu = i; |
| @@ -1043,9 +1005,7 @@ static int transition_frequency_pstate(struct powernow_k8_data *data, unsigned i | |||
| 1043 | } | 1005 | } |
| 1044 | 1006 | ||
| 1045 | res = transition_pstate(data, pstate); | 1007 | res = transition_pstate(data, pstate); |
| 1046 | data->currfid = find_fid_from_pstate(pstate); | 1008 | freqs.new = find_khz_freq_from_pstate(data->powernow_table, pstate); |
| 1047 | data->currdid = find_did_from_pstate(pstate); | ||
| 1048 | freqs.new = find_khz_freq_from_fiddid(data->currfid, data->currdid); | ||
| 1049 | 1009 | ||
| 1050 | for_each_cpu_mask(i, *(data->available_cores)) { | 1010 | for_each_cpu_mask(i, *(data->available_cores)) { |
| 1051 | freqs.cpu = i; | 1011 | freqs.cpu = i; |
| @@ -1090,10 +1050,7 @@ static int powernowk8_target(struct cpufreq_policy *pol, unsigned targfreq, unsi | |||
| 1090 | if (query_current_values_with_pending_wait(data)) | 1050 | if (query_current_values_with_pending_wait(data)) |
| 1091 | goto err_out; | 1051 | goto err_out; |
| 1092 | 1052 | ||
| 1093 | if (cpu_family == CPU_HW_PSTATE) | 1053 | if (cpu_family != CPU_HW_PSTATE) { |
| 1094 | dprintk("targ: curr fid 0x%x, did 0x%x\n", | ||
| 1095 | data->currfid, data->currdid); | ||
| 1096 | else { | ||
| 1097 | dprintk("targ: curr fid 0x%x, vid 0x%x\n", | 1054 | dprintk("targ: curr fid 0x%x, vid 0x%x\n", |
| 1098 | data->currfid, data->currvid); | 1055 | data->currfid, data->currvid); |
| 1099 | 1056 | ||
| @@ -1124,7 +1081,7 @@ static int powernowk8_target(struct cpufreq_policy *pol, unsigned targfreq, unsi | |||
| 1124 | mutex_unlock(&fidvid_mutex); | 1081 | mutex_unlock(&fidvid_mutex); |
| 1125 | 1082 | ||
| 1126 | if (cpu_family == CPU_HW_PSTATE) | 1083 | if (cpu_family == CPU_HW_PSTATE) |
| 1127 | pol->cur = find_khz_freq_from_fiddid(data->currfid, data->currdid); | 1084 | pol->cur = find_khz_freq_from_pstate(data->powernow_table, newstate); |
| 1128 | else | 1085 | else |
| 1129 | pol->cur = find_khz_freq_from_fid(data->currfid); | 1086 | pol->cur = find_khz_freq_from_fid(data->currfid); |
| 1130 | ret = 0; | 1087 | ret = 0; |
| @@ -1223,7 +1180,7 @@ static int __cpuinit powernowk8_cpu_init(struct cpufreq_policy *pol) | |||
| 1223 | + (3 * (1 << data->irt) * 10)) * 1000; | 1180 | + (3 * (1 << data->irt) * 10)) * 1000; |
| 1224 | 1181 | ||
| 1225 | if (cpu_family == CPU_HW_PSTATE) | 1182 | if (cpu_family == CPU_HW_PSTATE) |
| 1226 | pol->cur = find_khz_freq_from_fiddid(data->currfid, data->currdid); | 1183 | pol->cur = find_khz_freq_from_pstate(data->powernow_table, data->currpstate); |
| 1227 | else | 1184 | else |
| 1228 | pol->cur = find_khz_freq_from_fid(data->currfid); | 1185 | pol->cur = find_khz_freq_from_fid(data->currfid); |
| 1229 | dprintk("policy current frequency %d kHz\n", pol->cur); | 1186 | dprintk("policy current frequency %d kHz\n", pol->cur); |
| @@ -1240,8 +1197,7 @@ static int __cpuinit powernowk8_cpu_init(struct cpufreq_policy *pol) | |||
| 1240 | cpufreq_frequency_table_get_attr(data->powernow_table, pol->cpu); | 1197 | cpufreq_frequency_table_get_attr(data->powernow_table, pol->cpu); |
| 1241 | 1198 | ||
| 1242 | if (cpu_family == CPU_HW_PSTATE) | 1199 | if (cpu_family == CPU_HW_PSTATE) |
| 1243 | dprintk("cpu_init done, current fid 0x%x, did 0x%x\n", | 1200 | dprintk("cpu_init done, current pstate 0x%x\n", data->currpstate); |
| 1244 | data->currfid, data->currdid); | ||
| 1245 | else | 1201 | else |
| 1246 | dprintk("cpu_init done, current fid 0x%x, vid 0x%x\n", | 1202 | dprintk("cpu_init done, current fid 0x%x, vid 0x%x\n", |
| 1247 | data->currfid, data->currvid); | 1203 | data->currfid, data->currvid); |
| @@ -1297,7 +1253,7 @@ static unsigned int powernowk8_get (unsigned int cpu) | |||
| 1297 | goto out; | 1253 | goto out; |
| 1298 | 1254 | ||
| 1299 | if (cpu_family == CPU_HW_PSTATE) | 1255 | if (cpu_family == CPU_HW_PSTATE) |
| 1300 | khz = find_khz_freq_from_fiddid(data->currfid, data->currdid); | 1256 | khz = find_khz_freq_from_pstate(data->powernow_table, data->currpstate); |
| 1301 | else | 1257 | else |
| 1302 | khz = find_khz_freq_from_fid(data->currfid); | 1258 | khz = find_khz_freq_from_fid(data->currfid); |
| 1303 | 1259 | ||
diff --git a/arch/x86/kernel/cpu/cpufreq/powernow-k8.h b/arch/x86/kernel/cpu/cpufreq/powernow-k8.h index 7c4f6e0faed4..afd2b520d35c 100644 --- a/arch/x86/kernel/cpu/cpufreq/powernow-k8.h +++ b/arch/x86/kernel/cpu/cpufreq/powernow-k8.h | |||
| @@ -10,6 +10,7 @@ struct powernow_k8_data { | |||
| 10 | 10 | ||
| 11 | u32 numps; /* number of p-states */ | 11 | u32 numps; /* number of p-states */ |
| 12 | u32 batps; /* number of p-states supported on battery */ | 12 | u32 batps; /* number of p-states supported on battery */ |
| 13 | u32 max_hw_pstate; /* maximum legal hardware pstate */ | ||
| 13 | 14 | ||
| 14 | /* these values are constant when the PSB is used to determine | 15 | /* these values are constant when the PSB is used to determine |
| 15 | * vid/fid pairings, but are modified during the ->target() call | 16 | * vid/fid pairings, but are modified during the ->target() call |
| @@ -21,8 +22,8 @@ struct powernow_k8_data { | |||
| 21 | u32 plllock; /* pll lock time, units 1 us */ | 22 | u32 plllock; /* pll lock time, units 1 us */ |
| 22 | u32 exttype; /* extended interface = 1 */ | 23 | u32 exttype; /* extended interface = 1 */ |
| 23 | 24 | ||
| 24 | /* keep track of the current fid / vid or did */ | 25 | /* keep track of the current fid / vid or pstate */ |
| 25 | u32 currvid, currfid, currdid; | 26 | u32 currvid, currfid, currpstate; |
| 26 | 27 | ||
| 27 | /* the powernow_table includes all frequency and vid/fid pairings: | 28 | /* the powernow_table includes all frequency and vid/fid pairings: |
| 28 | * fid are the lower 8 bits of the index, vid are the upper 8 bits. | 29 | * fid are the lower 8 bits of the index, vid are the upper 8 bits. |
| @@ -87,23 +88,14 @@ struct powernow_k8_data { | |||
| 87 | 88 | ||
| 88 | /* Hardware Pstate _PSS and MSR definitions */ | 89 | /* Hardware Pstate _PSS and MSR definitions */ |
| 89 | #define USE_HW_PSTATE 0x00000080 | 90 | #define USE_HW_PSTATE 0x00000080 |
| 90 | #define HW_PSTATE_FID_MASK 0x0000003f | ||
| 91 | #define HW_PSTATE_DID_MASK 0x000001c0 | ||
| 92 | #define HW_PSTATE_DID_SHIFT 6 | ||
| 93 | #define HW_PSTATE_MASK 0x00000007 | 91 | #define HW_PSTATE_MASK 0x00000007 |
| 94 | #define HW_PSTATE_VALID_MASK 0x80000000 | 92 | #define HW_PSTATE_VALID_MASK 0x80000000 |
| 95 | #define HW_FID_INDEX_SHIFT 8 | 93 | #define HW_PSTATE_MAX_MASK 0x000000f0 |
| 96 | #define HW_FID_INDEX_MASK 0x0000ff00 | 94 | #define HW_PSTATE_MAX_SHIFT 4 |
| 97 | #define HW_DID_INDEX_SHIFT 16 | ||
| 98 | #define HW_DID_INDEX_MASK 0x00ff0000 | ||
| 99 | #define HW_WATTS_MASK 0xff | ||
| 100 | #define HW_PWR_DVR_MASK 0x300 | ||
| 101 | #define HW_PWR_DVR_SHIFT 8 | ||
| 102 | #define HW_PWR_MAX_MULT 3 | ||
| 103 | #define MAX_HW_PSTATE 8 /* hw pstate supports up to 8 */ | ||
| 104 | #define MSR_PSTATE_DEF_BASE 0xc0010064 /* base of Pstate MSRs */ | 95 | #define MSR_PSTATE_DEF_BASE 0xc0010064 /* base of Pstate MSRs */ |
| 105 | #define MSR_PSTATE_STATUS 0xc0010063 /* Pstate Status MSR */ | 96 | #define MSR_PSTATE_STATUS 0xc0010063 /* Pstate Status MSR */ |
| 106 | #define MSR_PSTATE_CTRL 0xc0010062 /* Pstate control MSR */ | 97 | #define MSR_PSTATE_CTRL 0xc0010062 /* Pstate control MSR */ |
| 98 | #define MSR_PSTATE_CUR_LIMIT 0xc0010061 /* pstate current limit MSR */ | ||
| 107 | 99 | ||
| 108 | /* define the two driver architectures */ | 100 | /* define the two driver architectures */ |
| 109 | #define CPU_OPTERON 0 | 101 | #define CPU_OPTERON 0 |
diff --git a/arch/x86/kernel/cpu/mcheck/mce_64.c b/arch/x86/kernel/cpu/mcheck/mce_64.c index b9f802e35209..4b21d29fb5aa 100644 --- a/arch/x86/kernel/cpu/mcheck/mce_64.c +++ b/arch/x86/kernel/cpu/mcheck/mce_64.c | |||
| @@ -802,13 +802,15 @@ static struct sysdev_attribute *mce_attributes[] = { | |||
| 802 | NULL | 802 | NULL |
| 803 | }; | 803 | }; |
| 804 | 804 | ||
| 805 | static cpumask_t mce_device_initialized = CPU_MASK_NONE; | ||
| 806 | |||
| 805 | /* Per cpu sysdev init. All of the cpus still share the same ctl bank */ | 807 | /* Per cpu sysdev init. All of the cpus still share the same ctl bank */ |
| 806 | static __cpuinit int mce_create_device(unsigned int cpu) | 808 | static __cpuinit int mce_create_device(unsigned int cpu) |
| 807 | { | 809 | { |
| 808 | int err; | 810 | int err; |
| 809 | int i; | 811 | int i; |
| 810 | 812 | ||
| 811 | if (!mce_available(&cpu_data(cpu))) | 813 | if (!mce_available(&boot_cpu_data)) |
| 812 | return -EIO; | 814 | return -EIO; |
| 813 | 815 | ||
| 814 | memset(&per_cpu(device_mce, cpu).kobj, 0, sizeof(struct kobject)); | 816 | memset(&per_cpu(device_mce, cpu).kobj, 0, sizeof(struct kobject)); |
| @@ -825,6 +827,7 @@ static __cpuinit int mce_create_device(unsigned int cpu) | |||
| 825 | if (err) | 827 | if (err) |
| 826 | goto error; | 828 | goto error; |
| 827 | } | 829 | } |
| 830 | cpu_set(cpu, mce_device_initialized); | ||
| 828 | 831 | ||
| 829 | return 0; | 832 | return 0; |
| 830 | error: | 833 | error: |
| @@ -841,10 +844,14 @@ static void mce_remove_device(unsigned int cpu) | |||
| 841 | { | 844 | { |
| 842 | int i; | 845 | int i; |
| 843 | 846 | ||
| 847 | if (!cpu_isset(cpu, mce_device_initialized)) | ||
| 848 | return; | ||
| 849 | |||
| 844 | for (i = 0; mce_attributes[i]; i++) | 850 | for (i = 0; mce_attributes[i]; i++) |
| 845 | sysdev_remove_file(&per_cpu(device_mce,cpu), | 851 | sysdev_remove_file(&per_cpu(device_mce,cpu), |
| 846 | mce_attributes[i]); | 852 | mce_attributes[i]); |
| 847 | sysdev_unregister(&per_cpu(device_mce,cpu)); | 853 | sysdev_unregister(&per_cpu(device_mce,cpu)); |
| 854 | cpu_clear(cpu, mce_device_initialized); | ||
| 848 | } | 855 | } |
| 849 | 856 | ||
| 850 | /* Get notified when a cpu comes on/off. Be hotplug friendly. */ | 857 | /* Get notified when a cpu comes on/off. Be hotplug friendly. */ |
| @@ -852,21 +859,18 @@ static int | |||
| 852 | mce_cpu_callback(struct notifier_block *nfb, unsigned long action, void *hcpu) | 859 | mce_cpu_callback(struct notifier_block *nfb, unsigned long action, void *hcpu) |
| 853 | { | 860 | { |
| 854 | unsigned int cpu = (unsigned long)hcpu; | 861 | unsigned int cpu = (unsigned long)hcpu; |
| 855 | int err = 0; | ||
| 856 | 862 | ||
| 857 | switch (action) { | 863 | switch (action) { |
| 858 | case CPU_UP_PREPARE: | 864 | case CPU_ONLINE: |
| 859 | case CPU_UP_PREPARE_FROZEN: | 865 | case CPU_ONLINE_FROZEN: |
| 860 | err = mce_create_device(cpu); | 866 | mce_create_device(cpu); |
| 861 | break; | 867 | break; |
| 862 | case CPU_UP_CANCELED: | ||
| 863 | case CPU_UP_CANCELED_FROZEN: | ||
| 864 | case CPU_DEAD: | 868 | case CPU_DEAD: |
| 865 | case CPU_DEAD_FROZEN: | 869 | case CPU_DEAD_FROZEN: |
| 866 | mce_remove_device(cpu); | 870 | mce_remove_device(cpu); |
| 867 | break; | 871 | break; |
| 868 | } | 872 | } |
| 869 | return err ? NOTIFY_BAD : NOTIFY_OK; | 873 | return NOTIFY_OK; |
| 870 | } | 874 | } |
| 871 | 875 | ||
| 872 | static struct notifier_block mce_cpu_notifier = { | 876 | static struct notifier_block mce_cpu_notifier = { |
diff --git a/arch/x86/kernel/cpu/proc.c b/arch/x86/kernel/cpu/proc.c index 066f8c6af4df..3900e46d66db 100644 --- a/arch/x86/kernel/cpu/proc.c +++ b/arch/x86/kernel/cpu/proc.c | |||
| @@ -89,8 +89,6 @@ static int show_cpuinfo(struct seq_file *m, void *v) | |||
| 89 | int fpu_exception; | 89 | int fpu_exception; |
| 90 | 90 | ||
| 91 | #ifdef CONFIG_SMP | 91 | #ifdef CONFIG_SMP |
| 92 | if (!cpu_online(n)) | ||
| 93 | return 0; | ||
| 94 | n = c->cpu_index; | 92 | n = c->cpu_index; |
| 95 | #endif | 93 | #endif |
| 96 | seq_printf(m, "processor\t: %d\n" | 94 | seq_printf(m, "processor\t: %d\n" |
| @@ -177,14 +175,14 @@ static int show_cpuinfo(struct seq_file *m, void *v) | |||
| 177 | static void *c_start(struct seq_file *m, loff_t *pos) | 175 | static void *c_start(struct seq_file *m, loff_t *pos) |
| 178 | { | 176 | { |
| 179 | if (*pos == 0) /* just in case, cpu 0 is not the first */ | 177 | if (*pos == 0) /* just in case, cpu 0 is not the first */ |
| 180 | *pos = first_cpu(cpu_possible_map); | 178 | *pos = first_cpu(cpu_online_map); |
| 181 | if ((*pos) < NR_CPUS && cpu_possible(*pos)) | 179 | if ((*pos) < NR_CPUS && cpu_online(*pos)) |
| 182 | return &cpu_data(*pos); | 180 | return &cpu_data(*pos); |
| 183 | return NULL; | 181 | return NULL; |
| 184 | } | 182 | } |
| 185 | static void *c_next(struct seq_file *m, void *v, loff_t *pos) | 183 | static void *c_next(struct seq_file *m, void *v, loff_t *pos) |
| 186 | { | 184 | { |
| 187 | *pos = next_cpu(*pos, cpu_possible_map); | 185 | *pos = next_cpu(*pos, cpu_online_map); |
| 188 | return c_start(m, pos); | 186 | return c_start(m, pos); |
| 189 | } | 187 | } |
| 190 | static void c_stop(struct seq_file *m, void *v) | 188 | static void c_stop(struct seq_file *m, void *v) |
diff --git a/arch/x86/kernel/reboot_fixups_32.c b/arch/x86/kernel/reboot_fixups_32.c index 1a07bbea7be3..f452726c0fe2 100644 --- a/arch/x86/kernel/reboot_fixups_32.c +++ b/arch/x86/kernel/reboot_fixups_32.c | |||
| @@ -39,6 +39,7 @@ struct device_fixup { | |||
| 39 | static struct device_fixup fixups_table[] = { | 39 | static struct device_fixup fixups_table[] = { |
| 40 | { PCI_VENDOR_ID_CYRIX, PCI_DEVICE_ID_CYRIX_5530_LEGACY, cs5530a_warm_reset }, | 40 | { PCI_VENDOR_ID_CYRIX, PCI_DEVICE_ID_CYRIX_5530_LEGACY, cs5530a_warm_reset }, |
| 41 | { PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_CS5536_ISA, cs5536_warm_reset }, | 41 | { PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_CS5536_ISA, cs5536_warm_reset }, |
| 42 | { PCI_VENDOR_ID_NS, PCI_DEVICE_ID_NS_SC1100_BRIDGE, cs5530a_warm_reset }, | ||
| 42 | }; | 43 | }; |
| 43 | 44 | ||
| 44 | /* | 45 | /* |
diff --git a/arch/x86/kernel/setup_64.c b/arch/x86/kernel/setup_64.c index 238633d3d09a..30d94d1d5f5f 100644 --- a/arch/x86/kernel/setup_64.c +++ b/arch/x86/kernel/setup_64.c | |||
| @@ -892,7 +892,6 @@ void __cpuinit early_identify_cpu(struct cpuinfo_x86 *c) | |||
| 892 | 892 | ||
| 893 | #ifdef CONFIG_SMP | 893 | #ifdef CONFIG_SMP |
| 894 | c->phys_proc_id = (cpuid_ebx(1) >> 24) & 0xff; | 894 | c->phys_proc_id = (cpuid_ebx(1) >> 24) & 0xff; |
| 895 | c->cpu_index = 0; | ||
| 896 | #endif | 895 | #endif |
| 897 | } | 896 | } |
| 898 | 897 | ||
| @@ -1078,8 +1077,6 @@ static int show_cpuinfo(struct seq_file *m, void *v) | |||
| 1078 | 1077 | ||
| 1079 | 1078 | ||
| 1080 | #ifdef CONFIG_SMP | 1079 | #ifdef CONFIG_SMP |
| 1081 | if (!cpu_online(c->cpu_index)) | ||
| 1082 | return 0; | ||
| 1083 | cpu = c->cpu_index; | 1080 | cpu = c->cpu_index; |
| 1084 | #endif | 1081 | #endif |
| 1085 | 1082 | ||
| @@ -1171,15 +1168,15 @@ static int show_cpuinfo(struct seq_file *m, void *v) | |||
| 1171 | static void *c_start(struct seq_file *m, loff_t *pos) | 1168 | static void *c_start(struct seq_file *m, loff_t *pos) |
| 1172 | { | 1169 | { |
| 1173 | if (*pos == 0) /* just in case, cpu 0 is not the first */ | 1170 | if (*pos == 0) /* just in case, cpu 0 is not the first */ |
| 1174 | *pos = first_cpu(cpu_possible_map); | 1171 | *pos = first_cpu(cpu_online_map); |
| 1175 | if ((*pos) < NR_CPUS && cpu_possible(*pos)) | 1172 | if ((*pos) < NR_CPUS && cpu_online(*pos)) |
| 1176 | return &cpu_data(*pos); | 1173 | return &cpu_data(*pos); |
| 1177 | return NULL; | 1174 | return NULL; |
| 1178 | } | 1175 | } |
| 1179 | 1176 | ||
| 1180 | static void *c_next(struct seq_file *m, void *v, loff_t *pos) | 1177 | static void *c_next(struct seq_file *m, void *v, loff_t *pos) |
| 1181 | { | 1178 | { |
| 1182 | *pos = next_cpu(*pos, cpu_possible_map); | 1179 | *pos = next_cpu(*pos, cpu_online_map); |
| 1183 | return c_start(m, pos); | 1180 | return c_start(m, pos); |
| 1184 | } | 1181 | } |
| 1185 | 1182 | ||
diff --git a/arch/x86/kernel/time_64.c b/arch/x86/kernel/time_64.c index c821edc32216..368b1942b39a 100644 --- a/arch/x86/kernel/time_64.c +++ b/arch/x86/kernel/time_64.c | |||
| @@ -82,18 +82,15 @@ static int set_rtc_mmss(unsigned long nowtime) | |||
| 82 | int retval = 0; | 82 | int retval = 0; |
| 83 | int real_seconds, real_minutes, cmos_minutes; | 83 | int real_seconds, real_minutes, cmos_minutes; |
| 84 | unsigned char control, freq_select; | 84 | unsigned char control, freq_select; |
| 85 | unsigned long flags; | ||
| 85 | 86 | ||
| 86 | /* | 87 | /* |
| 87 | * IRQs are disabled when we're called from the timer interrupt, | 88 | * set_rtc_mmss is called when irqs are enabled, so disable irqs here |
| 88 | * no need for spin_lock_irqsave() | ||
| 89 | */ | 89 | */ |
| 90 | 90 | spin_lock_irqsave(&rtc_lock, flags); | |
| 91 | spin_lock(&rtc_lock); | ||
| 92 | |||
| 93 | /* | 91 | /* |
| 94 | * Tell the clock it's being set and stop it. | 92 | * Tell the clock it's being set and stop it. |
| 95 | */ | 93 | */ |
| 96 | |||
| 97 | control = CMOS_READ(RTC_CONTROL); | 94 | control = CMOS_READ(RTC_CONTROL); |
| 98 | CMOS_WRITE(control | RTC_SET, RTC_CONTROL); | 95 | CMOS_WRITE(control | RTC_SET, RTC_CONTROL); |
| 99 | 96 | ||
| @@ -138,7 +135,7 @@ static int set_rtc_mmss(unsigned long nowtime) | |||
| 138 | CMOS_WRITE(control, RTC_CONTROL); | 135 | CMOS_WRITE(control, RTC_CONTROL); |
| 139 | CMOS_WRITE(freq_select, RTC_FREQ_SELECT); | 136 | CMOS_WRITE(freq_select, RTC_FREQ_SELECT); |
| 140 | 137 | ||
| 141 | spin_unlock(&rtc_lock); | 138 | spin_unlock_irqrestore(&rtc_lock, flags); |
| 142 | 139 | ||
| 143 | return retval; | 140 | return retval; |
| 144 | } | 141 | } |
| @@ -164,21 +161,27 @@ unsigned long read_persistent_clock(void) | |||
| 164 | unsigned century = 0; | 161 | unsigned century = 0; |
| 165 | 162 | ||
| 166 | spin_lock_irqsave(&rtc_lock, flags); | 163 | spin_lock_irqsave(&rtc_lock, flags); |
| 164 | /* | ||
| 165 | * if UIP is clear, then we have >= 244 microseconds before RTC | ||
| 166 | * registers will be updated. Spec sheet says that this is the | ||
| 167 | * reliable way to read RTC - registers invalid (off bus) during update | ||
| 168 | */ | ||
| 169 | while ((CMOS_READ(RTC_FREQ_SELECT) & RTC_UIP)) | ||
| 170 | cpu_relax(); | ||
| 167 | 171 | ||
| 168 | do { | 172 | |
| 169 | sec = CMOS_READ(RTC_SECONDS); | 173 | /* now read all RTC registers while stable with interrupts disabled */ |
| 170 | min = CMOS_READ(RTC_MINUTES); | 174 | sec = CMOS_READ(RTC_SECONDS); |
| 171 | hour = CMOS_READ(RTC_HOURS); | 175 | min = CMOS_READ(RTC_MINUTES); |
| 172 | day = CMOS_READ(RTC_DAY_OF_MONTH); | 176 | hour = CMOS_READ(RTC_HOURS); |
| 173 | mon = CMOS_READ(RTC_MONTH); | 177 | day = CMOS_READ(RTC_DAY_OF_MONTH); |
| 174 | year = CMOS_READ(RTC_YEAR); | 178 | mon = CMOS_READ(RTC_MONTH); |
| 179 | year = CMOS_READ(RTC_YEAR); | ||
| 175 | #ifdef CONFIG_ACPI | 180 | #ifdef CONFIG_ACPI |
| 176 | if (acpi_gbl_FADT.header.revision >= FADT2_REVISION_ID && | 181 | if (acpi_gbl_FADT.header.revision >= FADT2_REVISION_ID && |
| 177 | acpi_gbl_FADT.century) | 182 | acpi_gbl_FADT.century) |
| 178 | century = CMOS_READ(acpi_gbl_FADT.century); | 183 | century = CMOS_READ(acpi_gbl_FADT.century); |
| 179 | #endif | 184 | #endif |
| 180 | } while (sec != CMOS_READ(RTC_SECONDS)); | ||
| 181 | |||
| 182 | spin_unlock_irqrestore(&rtc_lock, flags); | 185 | spin_unlock_irqrestore(&rtc_lock, flags); |
| 183 | 186 | ||
| 184 | /* | 187 | /* |
diff --git a/arch/x86/lib/delay_32.c b/arch/x86/lib/delay_32.c index 952e7a89c2ac..aad9d95469dc 100644 --- a/arch/x86/lib/delay_32.c +++ b/arch/x86/lib/delay_32.c | |||
| @@ -12,6 +12,7 @@ | |||
| 12 | 12 | ||
| 13 | #include <linux/module.h> | 13 | #include <linux/module.h> |
| 14 | #include <linux/sched.h> | 14 | #include <linux/sched.h> |
| 15 | #include <linux/preempt.h> | ||
| 15 | #include <linux/delay.h> | 16 | #include <linux/delay.h> |
| 16 | 17 | ||
| 17 | #include <asm/processor.h> | 18 | #include <asm/processor.h> |
| @@ -42,11 +43,13 @@ static void delay_tsc(unsigned long loops) | |||
| 42 | { | 43 | { |
| 43 | unsigned long bclock, now; | 44 | unsigned long bclock, now; |
| 44 | 45 | ||
| 46 | preempt_disable(); /* TSC's are per-cpu */ | ||
| 45 | rdtscl(bclock); | 47 | rdtscl(bclock); |
| 46 | do { | 48 | do { |
| 47 | rep_nop(); | 49 | rep_nop(); |
| 48 | rdtscl(now); | 50 | rdtscl(now); |
| 49 | } while ((now-bclock) < loops); | 51 | } while ((now-bclock) < loops); |
| 52 | preempt_enable(); | ||
| 50 | } | 53 | } |
| 51 | 54 | ||
| 52 | /* | 55 | /* |
diff --git a/arch/x86/lib/delay_64.c b/arch/x86/lib/delay_64.c index 0ebbfb9e7c7f..45cdd3fbd91c 100644 --- a/arch/x86/lib/delay_64.c +++ b/arch/x86/lib/delay_64.c | |||
| @@ -10,7 +10,9 @@ | |||
| 10 | 10 | ||
| 11 | #include <linux/module.h> | 11 | #include <linux/module.h> |
| 12 | #include <linux/sched.h> | 12 | #include <linux/sched.h> |
| 13 | #include <linux/preempt.h> | ||
| 13 | #include <linux/delay.h> | 14 | #include <linux/delay.h> |
| 15 | |||
| 14 | #include <asm/delay.h> | 16 | #include <asm/delay.h> |
| 15 | #include <asm/msr.h> | 17 | #include <asm/msr.h> |
| 16 | 18 | ||
| @@ -27,14 +29,15 @@ int read_current_timer(unsigned long *timer_value) | |||
| 27 | void __delay(unsigned long loops) | 29 | void __delay(unsigned long loops) |
| 28 | { | 30 | { |
| 29 | unsigned bclock, now; | 31 | unsigned bclock, now; |
| 30 | 32 | ||
| 33 | preempt_disable(); /* TSC's are pre-cpu */ | ||
| 31 | rdtscl(bclock); | 34 | rdtscl(bclock); |
| 32 | do | 35 | do { |
| 33 | { | ||
| 34 | rep_nop(); | 36 | rep_nop(); |
| 35 | rdtscl(now); | 37 | rdtscl(now); |
| 36 | } | 38 | } |
| 37 | while((now-bclock) < loops); | 39 | while ((now-bclock) < loops); |
| 40 | preempt_enable(); | ||
| 38 | } | 41 | } |
| 39 | EXPORT_SYMBOL(__delay); | 42 | EXPORT_SYMBOL(__delay); |
| 40 | 43 | ||
diff --git a/arch/x86/mach-voyager/voyager_cat.c b/arch/x86/mach-voyager/voyager_cat.c index 26a2d4c54b68..2132ca652df1 100644 --- a/arch/x86/mach-voyager/voyager_cat.c +++ b/arch/x86/mach-voyager/voyager_cat.c | |||
| @@ -568,7 +568,7 @@ static voyager_module_t *voyager_initial_module; | |||
| 568 | * boot cpu *after* all memory initialisation has been done (so we can | 568 | * boot cpu *after* all memory initialisation has been done (so we can |
| 569 | * use kmalloc) but before smp initialisation, so we can probe the SMP | 569 | * use kmalloc) but before smp initialisation, so we can probe the SMP |
| 570 | * configuration and pick up necessary information. */ | 570 | * configuration and pick up necessary information. */ |
| 571 | void | 571 | void __init |
| 572 | voyager_cat_init(void) | 572 | voyager_cat_init(void) |
| 573 | { | 573 | { |
| 574 | voyager_module_t **modpp = &voyager_initial_module; | 574 | voyager_module_t **modpp = &voyager_initial_module; |
diff --git a/arch/x86/mach-voyager/voyager_smp.c b/arch/x86/mach-voyager/voyager_smp.c index 69371434b0cf..88124dd35406 100644 --- a/arch/x86/mach-voyager/voyager_smp.c +++ b/arch/x86/mach-voyager/voyager_smp.c | |||
| @@ -1900,7 +1900,7 @@ voyager_smp_prepare_cpus(unsigned int max_cpus) | |||
| 1900 | smp_boot_cpus(); | 1900 | smp_boot_cpus(); |
| 1901 | } | 1901 | } |
| 1902 | 1902 | ||
| 1903 | static void __devinit voyager_smp_prepare_boot_cpu(void) | 1903 | static void __cpuinit voyager_smp_prepare_boot_cpu(void) |
| 1904 | { | 1904 | { |
| 1905 | init_gdt(smp_processor_id()); | 1905 | init_gdt(smp_processor_id()); |
| 1906 | switch_to_new_gdt(); | 1906 | switch_to_new_gdt(); |
| @@ -1911,7 +1911,7 @@ static void __devinit voyager_smp_prepare_boot_cpu(void) | |||
| 1911 | cpu_set(smp_processor_id(), cpu_present_map); | 1911 | cpu_set(smp_processor_id(), cpu_present_map); |
| 1912 | } | 1912 | } |
| 1913 | 1913 | ||
| 1914 | static int __devinit | 1914 | static int __cpuinit |
| 1915 | voyager_cpu_up(unsigned int cpu) | 1915 | voyager_cpu_up(unsigned int cpu) |
| 1916 | { | 1916 | { |
| 1917 | /* This only works at boot for x86. See "rewrite" above. */ | 1917 | /* This only works at boot for x86. See "rewrite" above. */ |
diff --git a/arch/x86/pci/acpi.c b/arch/x86/pci/acpi.c index 2d88f7c6d6ac..7e35078673a4 100644 --- a/arch/x86/pci/acpi.c +++ b/arch/x86/pci/acpi.c | |||
| @@ -77,6 +77,9 @@ count_resource(struct acpi_resource *acpi_res, void *data) | |||
| 77 | struct acpi_resource_address64 addr; | 77 | struct acpi_resource_address64 addr; |
| 78 | acpi_status status; | 78 | acpi_status status; |
| 79 | 79 | ||
| 80 | if (info->res_num >= PCI_BUS_NUM_RESOURCES) | ||
| 81 | return AE_OK; | ||
| 82 | |||
| 80 | status = resource_to_addr(acpi_res, &addr); | 83 | status = resource_to_addr(acpi_res, &addr); |
| 81 | if (ACPI_SUCCESS(status)) | 84 | if (ACPI_SUCCESS(status)) |
| 82 | info->res_num++; | 85 | info->res_num++; |
| @@ -93,6 +96,9 @@ setup_resource(struct acpi_resource *acpi_res, void *data) | |||
| 93 | unsigned long flags; | 96 | unsigned long flags; |
| 94 | struct resource *root; | 97 | struct resource *root; |
| 95 | 98 | ||
| 99 | if (info->res_num >= PCI_BUS_NUM_RESOURCES) | ||
| 100 | return AE_OK; | ||
| 101 | |||
| 96 | status = resource_to_addr(acpi_res, &addr); | 102 | status = resource_to_addr(acpi_res, &addr); |
| 97 | if (!ACPI_SUCCESS(status)) | 103 | if (!ACPI_SUCCESS(status)) |
| 98 | return AE_OK; | 104 | return AE_OK; |
diff --git a/arch/x86/vdso/Makefile b/arch/x86/vdso/Makefile index 7a2ba4583939..e7bff0fbac23 100644 --- a/arch/x86/vdso/Makefile +++ b/arch/x86/vdso/Makefile | |||
| @@ -20,7 +20,7 @@ quiet_cmd_syscall = SYSCALL $@ | |||
| 20 | cmd_syscall = $(CC) -m elf_x86_64 -nostdlib $(SYSCFLAGS_$(@F)) \ | 20 | cmd_syscall = $(CC) -m elf_x86_64 -nostdlib $(SYSCFLAGS_$(@F)) \ |
| 21 | -Wl,-T,$(filter-out FORCE,$^) -o $@ | 21 | -Wl,-T,$(filter-out FORCE,$^) -o $@ |
| 22 | 22 | ||
| 23 | export CPPFLAGS_vdso.lds += -P -C -U$(ARCH) | 23 | export CPPFLAGS_vdso.lds += -P -C |
| 24 | 24 | ||
| 25 | vdso-flags = -fPIC -shared -Wl,-soname=linux-vdso.so.1 \ | 25 | vdso-flags = -fPIC -shared -Wl,-soname=linux-vdso.so.1 \ |
| 26 | $(call ld-option, -Wl$(comma)--hash-style=sysv) \ | 26 | $(call ld-option, -Wl$(comma)--hash-style=sysv) \ |
diff --git a/arch/x86/vdso/vgetcpu.c b/arch/x86/vdso/vgetcpu.c index 91f6e85d0fc2..3b1ae1abfba9 100644 --- a/arch/x86/vdso/vgetcpu.c +++ b/arch/x86/vdso/vgetcpu.c | |||
| @@ -13,32 +13,17 @@ | |||
| 13 | #include <asm/vgtod.h> | 13 | #include <asm/vgtod.h> |
| 14 | #include "vextern.h" | 14 | #include "vextern.h" |
| 15 | 15 | ||
| 16 | long __vdso_getcpu(unsigned *cpu, unsigned *node, struct getcpu_cache *tcache) | 16 | long __vdso_getcpu(unsigned *cpu, unsigned *node, struct getcpu_cache *unused) |
| 17 | { | 17 | { |
| 18 | unsigned int dummy, p; | 18 | unsigned int dummy, p; |
| 19 | unsigned long j = 0; | ||
| 20 | 19 | ||
| 21 | /* Fast cache - only recompute value once per jiffies and avoid | 20 | if (*vdso_vgetcpu_mode == VGETCPU_RDTSCP) { |
| 22 | relatively costly rdtscp/cpuid otherwise. | ||
| 23 | This works because the scheduler usually keeps the process | ||
| 24 | on the same CPU and this syscall doesn't guarantee its | ||
| 25 | results anyways. | ||
| 26 | We do this here because otherwise user space would do it on | ||
| 27 | its own in a likely inferior way (no access to jiffies). | ||
| 28 | If you don't like it pass NULL. */ | ||
| 29 | if (tcache && tcache->blob[0] == (j = *vdso_jiffies)) { | ||
| 30 | p = tcache->blob[1]; | ||
| 31 | } else if (*vdso_vgetcpu_mode == VGETCPU_RDTSCP) { | ||
| 32 | /* Load per CPU data from RDTSCP */ | 21 | /* Load per CPU data from RDTSCP */ |
| 33 | rdtscp(dummy, dummy, p); | 22 | rdtscp(dummy, dummy, p); |
| 34 | } else { | 23 | } else { |
| 35 | /* Load per CPU data from GDT */ | 24 | /* Load per CPU data from GDT */ |
| 36 | asm("lsl %1,%0" : "=r" (p) : "r" (__PER_CPU_SEG)); | 25 | asm("lsl %1,%0" : "=r" (p) : "r" (__PER_CPU_SEG)); |
| 37 | } | 26 | } |
| 38 | if (tcache) { | ||
| 39 | tcache->blob[0] = j; | ||
| 40 | tcache->blob[1] = p; | ||
| 41 | } | ||
| 42 | if (cpu) | 27 | if (cpu) |
| 43 | *cpu = p & 0xfff; | 28 | *cpu = p & 0xfff; |
| 44 | if (node) | 29 | if (node) |
diff --git a/drivers/acpi/Kconfig b/drivers/acpi/Kconfig index ce9dead0f499..087a7028ae84 100644 --- a/drivers/acpi/Kconfig +++ b/drivers/acpi/Kconfig | |||
| @@ -50,6 +50,7 @@ config ACPI_SLEEP | |||
| 50 | config ACPI_PROCFS | 50 | config ACPI_PROCFS |
| 51 | bool "Deprecated /proc/acpi files" | 51 | bool "Deprecated /proc/acpi files" |
| 52 | depends on PROC_FS | 52 | depends on PROC_FS |
| 53 | default y | ||
| 53 | ---help--- | 54 | ---help--- |
| 54 | For backwards compatibility, this option allows | 55 | For backwards compatibility, this option allows |
| 55 | deprecated /proc/acpi/ files to exist, even when | 56 | deprecated /proc/acpi/ files to exist, even when |
diff --git a/drivers/acpi/ac.c b/drivers/acpi/ac.c index e03de37a750d..30238f6ff232 100644 --- a/drivers/acpi/ac.c +++ b/drivers/acpi/ac.c | |||
| @@ -27,8 +27,10 @@ | |||
| 27 | #include <linux/module.h> | 27 | #include <linux/module.h> |
| 28 | #include <linux/init.h> | 28 | #include <linux/init.h> |
| 29 | #include <linux/types.h> | 29 | #include <linux/types.h> |
| 30 | #ifdef CONFIG_ACPI_PROCFS | ||
| 30 | #include <linux/proc_fs.h> | 31 | #include <linux/proc_fs.h> |
| 31 | #include <linux/seq_file.h> | 32 | #include <linux/seq_file.h> |
| 33 | #endif | ||
| 32 | #include <linux/power_supply.h> | 34 | #include <linux/power_supply.h> |
| 33 | #include <acpi/acpi_bus.h> | 35 | #include <acpi/acpi_bus.h> |
| 34 | #include <acpi/acpi_drivers.h> | 36 | #include <acpi/acpi_drivers.h> |
| @@ -49,12 +51,15 @@ MODULE_AUTHOR("Paul Diefenbaugh"); | |||
| 49 | MODULE_DESCRIPTION("ACPI AC Adapter Driver"); | 51 | MODULE_DESCRIPTION("ACPI AC Adapter Driver"); |
| 50 | MODULE_LICENSE("GPL"); | 52 | MODULE_LICENSE("GPL"); |
| 51 | 53 | ||
| 54 | #ifdef CONFIG_ACPI_PROCFS | ||
| 52 | extern struct proc_dir_entry *acpi_lock_ac_dir(void); | 55 | extern struct proc_dir_entry *acpi_lock_ac_dir(void); |
| 53 | extern void *acpi_unlock_ac_dir(struct proc_dir_entry *acpi_ac_dir); | 56 | extern void *acpi_unlock_ac_dir(struct proc_dir_entry *acpi_ac_dir); |
| 57 | static int acpi_ac_open_fs(struct inode *inode, struct file *file); | ||
| 58 | #endif | ||
| 54 | 59 | ||
| 55 | static int acpi_ac_add(struct acpi_device *device); | 60 | static int acpi_ac_add(struct acpi_device *device); |
| 56 | static int acpi_ac_remove(struct acpi_device *device, int type); | 61 | static int acpi_ac_remove(struct acpi_device *device, int type); |
| 57 | static int acpi_ac_open_fs(struct inode *inode, struct file *file); | 62 | static int acpi_ac_resume(struct acpi_device *device); |
| 58 | 63 | ||
| 59 | const static struct acpi_device_id ac_device_ids[] = { | 64 | const static struct acpi_device_id ac_device_ids[] = { |
| 60 | {"ACPI0003", 0}, | 65 | {"ACPI0003", 0}, |
| @@ -69,6 +74,7 @@ static struct acpi_driver acpi_ac_driver = { | |||
| 69 | .ops = { | 74 | .ops = { |
| 70 | .add = acpi_ac_add, | 75 | .add = acpi_ac_add, |
| 71 | .remove = acpi_ac_remove, | 76 | .remove = acpi_ac_remove, |
| 77 | .resume = acpi_ac_resume, | ||
| 72 | }, | 78 | }, |
| 73 | }; | 79 | }; |
| 74 | 80 | ||
| @@ -80,12 +86,15 @@ struct acpi_ac { | |||
| 80 | 86 | ||
| 81 | #define to_acpi_ac(x) container_of(x, struct acpi_ac, charger); | 87 | #define to_acpi_ac(x) container_of(x, struct acpi_ac, charger); |
| 82 | 88 | ||
| 89 | #ifdef CONFIG_ACPI_PROCFS | ||
| 83 | static const struct file_operations acpi_ac_fops = { | 90 | static const struct file_operations acpi_ac_fops = { |
| 84 | .open = acpi_ac_open_fs, | 91 | .open = acpi_ac_open_fs, |
| 85 | .read = seq_read, | 92 | .read = seq_read, |
| 86 | .llseek = seq_lseek, | 93 | .llseek = seq_lseek, |
| 87 | .release = single_release, | 94 | .release = single_release, |
| 88 | }; | 95 | }; |
| 96 | #endif | ||
| 97 | |||
| 89 | static int get_ac_property(struct power_supply *psy, | 98 | static int get_ac_property(struct power_supply *psy, |
| 90 | enum power_supply_property psp, | 99 | enum power_supply_property psp, |
| 91 | union power_supply_propval *val) | 100 | union power_supply_propval *val) |
| @@ -127,6 +136,7 @@ static int acpi_ac_get_state(struct acpi_ac *ac) | |||
| 127 | return 0; | 136 | return 0; |
| 128 | } | 137 | } |
| 129 | 138 | ||
| 139 | #ifdef CONFIG_ACPI_PROCFS | ||
| 130 | /* -------------------------------------------------------------------------- | 140 | /* -------------------------------------------------------------------------- |
| 131 | FS Interface (/proc) | 141 | FS Interface (/proc) |
| 132 | -------------------------------------------------------------------------- */ | 142 | -------------------------------------------------------------------------- */ |
| @@ -206,6 +216,7 @@ static int acpi_ac_remove_fs(struct acpi_device *device) | |||
| 206 | 216 | ||
| 207 | return 0; | 217 | return 0; |
| 208 | } | 218 | } |
| 219 | #endif | ||
| 209 | 220 | ||
| 210 | /* -------------------------------------------------------------------------- | 221 | /* -------------------------------------------------------------------------- |
| 211 | Driver Model | 222 | Driver Model |
| @@ -264,7 +275,9 @@ static int acpi_ac_add(struct acpi_device *device) | |||
| 264 | if (result) | 275 | if (result) |
| 265 | goto end; | 276 | goto end; |
| 266 | 277 | ||
| 278 | #ifdef CONFIG_ACPI_PROCFS | ||
| 267 | result = acpi_ac_add_fs(device); | 279 | result = acpi_ac_add_fs(device); |
| 280 | #endif | ||
| 268 | if (result) | 281 | if (result) |
| 269 | goto end; | 282 | goto end; |
| 270 | ac->charger.name = acpi_device_bid(device); | 283 | ac->charger.name = acpi_device_bid(device); |
| @@ -287,13 +300,30 @@ static int acpi_ac_add(struct acpi_device *device) | |||
| 287 | 300 | ||
| 288 | end: | 301 | end: |
| 289 | if (result) { | 302 | if (result) { |
| 303 | #ifdef CONFIG_ACPI_PROCFS | ||
| 290 | acpi_ac_remove_fs(device); | 304 | acpi_ac_remove_fs(device); |
| 305 | #endif | ||
| 291 | kfree(ac); | 306 | kfree(ac); |
| 292 | } | 307 | } |
| 293 | 308 | ||
| 294 | return result; | 309 | return result; |
| 295 | } | 310 | } |
| 296 | 311 | ||
| 312 | static int acpi_ac_resume(struct acpi_device *device) | ||
| 313 | { | ||
| 314 | struct acpi_ac *ac; | ||
| 315 | unsigned old_state; | ||
| 316 | if (!device || !acpi_driver_data(device)) | ||
| 317 | return -EINVAL; | ||
| 318 | ac = acpi_driver_data(device); | ||
| 319 | old_state = ac->state; | ||
| 320 | if (acpi_ac_get_state(ac)) | ||
| 321 | return 0; | ||
| 322 | if (old_state != ac->state) | ||
| 323 | kobject_uevent(&ac->charger.dev->kobj, KOBJ_CHANGE); | ||
| 324 | return 0; | ||
| 325 | } | ||
| 326 | |||
| 297 | static int acpi_ac_remove(struct acpi_device *device, int type) | 327 | static int acpi_ac_remove(struct acpi_device *device, int type) |
| 298 | { | 328 | { |
| 299 | acpi_status status = AE_OK; | 329 | acpi_status status = AE_OK; |
| @@ -309,7 +339,9 @@ static int acpi_ac_remove(struct acpi_device *device, int type) | |||
| 309 | ACPI_ALL_NOTIFY, acpi_ac_notify); | 339 | ACPI_ALL_NOTIFY, acpi_ac_notify); |
| 310 | if (ac->charger.dev) | 340 | if (ac->charger.dev) |
| 311 | power_supply_unregister(&ac->charger); | 341 | power_supply_unregister(&ac->charger); |
| 342 | #ifdef CONFIG_ACPI_PROCFS | ||
| 312 | acpi_ac_remove_fs(device); | 343 | acpi_ac_remove_fs(device); |
| 344 | #endif | ||
| 313 | 345 | ||
| 314 | kfree(ac); | 346 | kfree(ac); |
| 315 | 347 | ||
| @@ -323,13 +355,17 @@ static int __init acpi_ac_init(void) | |||
| 323 | if (acpi_disabled) | 355 | if (acpi_disabled) |
| 324 | return -ENODEV; | 356 | return -ENODEV; |
| 325 | 357 | ||
| 358 | #ifdef CONFIG_ACPI_PROCFS | ||
| 326 | acpi_ac_dir = acpi_lock_ac_dir(); | 359 | acpi_ac_dir = acpi_lock_ac_dir(); |
| 327 | if (!acpi_ac_dir) | 360 | if (!acpi_ac_dir) |
| 328 | return -ENODEV; | 361 | return -ENODEV; |
| 362 | #endif | ||
| 329 | 363 | ||
| 330 | result = acpi_bus_register_driver(&acpi_ac_driver); | 364 | result = acpi_bus_register_driver(&acpi_ac_driver); |
| 331 | if (result < 0) { | 365 | if (result < 0) { |
| 366 | #ifdef CONFIG_ACPI_PROCFS | ||
| 332 | acpi_unlock_ac_dir(acpi_ac_dir); | 367 | acpi_unlock_ac_dir(acpi_ac_dir); |
| 368 | #endif | ||
| 333 | return -ENODEV; | 369 | return -ENODEV; |
| 334 | } | 370 | } |
| 335 | 371 | ||
| @@ -341,7 +377,9 @@ static void __exit acpi_ac_exit(void) | |||
| 341 | 377 | ||
| 342 | acpi_bus_unregister_driver(&acpi_ac_driver); | 378 | acpi_bus_unregister_driver(&acpi_ac_driver); |
| 343 | 379 | ||
| 380 | #ifdef CONFIG_ACPI_PROCFS | ||
| 344 | acpi_unlock_ac_dir(acpi_ac_dir); | 381 | acpi_unlock_ac_dir(acpi_ac_dir); |
| 382 | #endif | ||
| 345 | 383 | ||
| 346 | return; | 384 | return; |
| 347 | } | 385 | } |
diff --git a/drivers/acpi/toshiba_acpi.c b/drivers/acpi/toshiba_acpi.c index a736ef7bdee4..9e8c20c6a0b7 100644 --- a/drivers/acpi/toshiba_acpi.c +++ b/drivers/acpi/toshiba_acpi.c | |||
| @@ -591,9 +591,12 @@ static int __init toshiba_acpi_init(void) | |||
| 591 | NULL, | 591 | NULL, |
| 592 | &toshiba_backlight_data); | 592 | &toshiba_backlight_data); |
| 593 | if (IS_ERR(toshiba_backlight_device)) { | 593 | if (IS_ERR(toshiba_backlight_device)) { |
| 594 | int ret = PTR_ERR(toshiba_backlight_device); | ||
| 595 | |||
| 594 | printk(KERN_ERR "Could not register toshiba backlight device\n"); | 596 | printk(KERN_ERR "Could not register toshiba backlight device\n"); |
| 595 | toshiba_backlight_device = NULL; | 597 | toshiba_backlight_device = NULL; |
| 596 | toshiba_acpi_exit(); | 598 | toshiba_acpi_exit(); |
| 599 | return ret; | ||
| 597 | } | 600 | } |
| 598 | toshiba_backlight_device->props.max_brightness = HCI_LCD_BRIGHTNESS_LEVELS - 1; | 601 | toshiba_backlight_device->props.max_brightness = HCI_LCD_BRIGHTNESS_LEVELS - 1; |
| 599 | 602 | ||
diff --git a/drivers/block/paride/pf.c b/drivers/block/paride/pf.c index ceffa6034e20..e7fe6ca97dd8 100644 --- a/drivers/block/paride/pf.c +++ b/drivers/block/paride/pf.c | |||
| @@ -488,13 +488,11 @@ static int pf_atapi(struct pf_unit *pf, char *cmd, int dlen, char *buf, char *fu | |||
| 488 | return r; | 488 | return r; |
| 489 | } | 489 | } |
| 490 | 490 | ||
| 491 | #define DBMSG(msg) ((verbose>1)?(msg):NULL) | ||
| 492 | |||
| 493 | static void pf_lock(struct pf_unit *pf, int func) | 491 | static void pf_lock(struct pf_unit *pf, int func) |
| 494 | { | 492 | { |
| 495 | char lo_cmd[12] = { ATAPI_LOCK, pf->lun << 5, 0, 0, func, 0, 0, 0, 0, 0, 0, 0 }; | 493 | char lo_cmd[12] = { ATAPI_LOCK, pf->lun << 5, 0, 0, func, 0, 0, 0, 0, 0, 0, 0 }; |
| 496 | 494 | ||
| 497 | pf_atapi(pf, lo_cmd, 0, pf_scratch, func ? "unlock" : "lock"); | 495 | pf_atapi(pf, lo_cmd, 0, pf_scratch, func ? "lock" : "unlock"); |
| 498 | } | 496 | } |
| 499 | 497 | ||
| 500 | static void pf_eject(struct pf_unit *pf) | 498 | static void pf_eject(struct pf_unit *pf) |
| @@ -555,7 +553,7 @@ static void pf_mode_sense(struct pf_unit *pf) | |||
| 555 | { ATAPI_MODE_SENSE, pf->lun << 5, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0 }; | 553 | { ATAPI_MODE_SENSE, pf->lun << 5, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0 }; |
| 556 | char buf[8]; | 554 | char buf[8]; |
| 557 | 555 | ||
| 558 | pf_atapi(pf, ms_cmd, 8, buf, DBMSG("mode sense")); | 556 | pf_atapi(pf, ms_cmd, 8, buf, "mode sense"); |
| 559 | pf->media_status = PF_RW; | 557 | pf->media_status = PF_RW; |
| 560 | if (buf[3] & 0x80) | 558 | if (buf[3] & 0x80) |
| 561 | pf->media_status = PF_RO; | 559 | pf->media_status = PF_RO; |
| @@ -591,7 +589,7 @@ static void pf_get_capacity(struct pf_unit *pf) | |||
| 591 | char buf[8]; | 589 | char buf[8]; |
| 592 | int bs; | 590 | int bs; |
| 593 | 591 | ||
| 594 | if (pf_atapi(pf, rc_cmd, 8, buf, DBMSG("get capacity"))) { | 592 | if (pf_atapi(pf, rc_cmd, 8, buf, "get capacity")) { |
| 595 | pf->media_status = PF_NM; | 593 | pf->media_status = PF_NM; |
| 596 | return; | 594 | return; |
| 597 | } | 595 | } |
| @@ -804,13 +802,18 @@ static int pf_next_buf(void) | |||
| 804 | pf_buf += 512; | 802 | pf_buf += 512; |
| 805 | pf_block++; | 803 | pf_block++; |
| 806 | if (!pf_run) | 804 | if (!pf_run) |
| 807 | return 0; | ||
| 808 | if (!pf_count) | ||
| 809 | return 1; | 805 | return 1; |
| 810 | spin_lock_irqsave(&pf_spin_lock, saved_flags); | 806 | if (!pf_count) { |
| 811 | pf_end_request(1); | 807 | spin_lock_irqsave(&pf_spin_lock, saved_flags); |
| 812 | spin_unlock_irqrestore(&pf_spin_lock, saved_flags); | 808 | pf_end_request(1); |
| 813 | return 1; | 809 | pf_req = elv_next_request(pf_queue); |
| 810 | spin_unlock_irqrestore(&pf_spin_lock, saved_flags); | ||
| 811 | if (!pf_req) | ||
| 812 | return 1; | ||
| 813 | pf_count = pf_req->current_nr_sectors; | ||
| 814 | pf_buf = pf_req->buffer; | ||
| 815 | } | ||
| 816 | return 0; | ||
| 814 | } | 817 | } |
| 815 | 818 | ||
| 816 | static inline void next_request(int success) | 819 | static inline void next_request(int success) |
diff --git a/drivers/block/rd.c b/drivers/block/rd.c index 47f8ac6cce57..82f4eecc8699 100644 --- a/drivers/block/rd.c +++ b/drivers/block/rd.c | |||
| @@ -189,6 +189,18 @@ static int ramdisk_set_page_dirty(struct page *page) | |||
| 189 | return 0; | 189 | return 0; |
| 190 | } | 190 | } |
| 191 | 191 | ||
| 192 | /* | ||
| 193 | * releasepage is called by pagevec_strip/try_to_release_page if | ||
| 194 | * buffers_heads_over_limit is true. Without a releasepage function | ||
| 195 | * try_to_free_buffers is called instead. That can unset the dirty | ||
| 196 | * bit of our ram disk pages, which will be eventually freed, even | ||
| 197 | * if the page is still in use. | ||
| 198 | */ | ||
| 199 | static int ramdisk_releasepage(struct page *page, gfp_t dummy) | ||
| 200 | { | ||
| 201 | return 0; | ||
| 202 | } | ||
| 203 | |||
| 192 | static const struct address_space_operations ramdisk_aops = { | 204 | static const struct address_space_operations ramdisk_aops = { |
| 193 | .readpage = ramdisk_readpage, | 205 | .readpage = ramdisk_readpage, |
| 194 | .prepare_write = ramdisk_prepare_write, | 206 | .prepare_write = ramdisk_prepare_write, |
| @@ -196,6 +208,7 @@ static const struct address_space_operations ramdisk_aops = { | |||
| 196 | .writepage = ramdisk_writepage, | 208 | .writepage = ramdisk_writepage, |
| 197 | .set_page_dirty = ramdisk_set_page_dirty, | 209 | .set_page_dirty = ramdisk_set_page_dirty, |
| 198 | .writepages = ramdisk_writepages, | 210 | .writepages = ramdisk_writepages, |
| 211 | .releasepage = ramdisk_releasepage, | ||
| 199 | }; | 212 | }; |
| 200 | 213 | ||
| 201 | static int rd_blkdev_pagecache_IO(int rw, struct bio_vec *vec, sector_t sector, | 214 | static int rd_blkdev_pagecache_IO(int rw, struct bio_vec *vec, sector_t sector, |
diff --git a/drivers/char/pcmcia/cm4000_cs.c b/drivers/char/pcmcia/cm4000_cs.c index cc5d77797def..02518da6a386 100644 --- a/drivers/char/pcmcia/cm4000_cs.c +++ b/drivers/char/pcmcia/cm4000_cs.c | |||
| @@ -47,7 +47,7 @@ | |||
| 47 | /* #define ATR_CSUM */ | 47 | /* #define ATR_CSUM */ |
| 48 | 48 | ||
| 49 | #ifdef PCMCIA_DEBUG | 49 | #ifdef PCMCIA_DEBUG |
| 50 | #define reader_to_dev(x) (&handle_to_dev(x->p_dev->handle)) | 50 | #define reader_to_dev(x) (&handle_to_dev(x->p_dev)) |
| 51 | static int pc_debug = PCMCIA_DEBUG; | 51 | static int pc_debug = PCMCIA_DEBUG; |
| 52 | module_param(pc_debug, int, 0600); | 52 | module_param(pc_debug, int, 0600); |
| 53 | #define DEBUGP(n, rdr, x, args...) do { \ | 53 | #define DEBUGP(n, rdr, x, args...) do { \ |
diff --git a/drivers/char/pcmcia/cm4040_cs.c b/drivers/char/pcmcia/cm4040_cs.c index a0b9c8728d56..5f291bf739a6 100644 --- a/drivers/char/pcmcia/cm4040_cs.c +++ b/drivers/char/pcmcia/cm4040_cs.c | |||
| @@ -41,7 +41,7 @@ | |||
| 41 | 41 | ||
| 42 | 42 | ||
| 43 | #ifdef PCMCIA_DEBUG | 43 | #ifdef PCMCIA_DEBUG |
| 44 | #define reader_to_dev(x) (&handle_to_dev(x->p_dev->handle)) | 44 | #define reader_to_dev(x) (&handle_to_dev(x->p_dev)) |
| 45 | static int pc_debug = PCMCIA_DEBUG; | 45 | static int pc_debug = PCMCIA_DEBUG; |
| 46 | module_param(pc_debug, int, 0600); | 46 | module_param(pc_debug, int, 0600); |
| 47 | #define DEBUGP(n, rdr, x, args...) do { \ | 47 | #define DEBUGP(n, rdr, x, args...) do { \ |
diff --git a/drivers/char/random.c b/drivers/char/random.c index 1756b1f7cb72..5fee05661823 100644 --- a/drivers/char/random.c +++ b/drivers/char/random.c | |||
| @@ -1494,7 +1494,7 @@ __u32 secure_tcpv6_sequence_number(__be32 *saddr, __be32 *daddr, | |||
| 1494 | seq = twothirdsMD4Transform((const __u32 *)daddr, hash) & HASH_MASK; | 1494 | seq = twothirdsMD4Transform((const __u32 *)daddr, hash) & HASH_MASK; |
| 1495 | seq += keyptr->count; | 1495 | seq += keyptr->count; |
| 1496 | 1496 | ||
| 1497 | seq += ktime_get_real().tv64; | 1497 | seq += ktime_to_ns(ktime_get_real()); |
| 1498 | 1498 | ||
| 1499 | return seq; | 1499 | return seq; |
| 1500 | } | 1500 | } |
| @@ -1556,7 +1556,7 @@ __u32 secure_tcp_sequence_number(__be32 saddr, __be32 daddr, | |||
| 1556 | * overlaps less than one time per MSL (2 minutes). | 1556 | * overlaps less than one time per MSL (2 minutes). |
| 1557 | * Choosing a clock of 64 ns period is OK. (period of 274 s) | 1557 | * Choosing a clock of 64 ns period is OK. (period of 274 s) |
| 1558 | */ | 1558 | */ |
| 1559 | seq += ktime_get_real().tv64 >> 6; | 1559 | seq += ktime_to_ns(ktime_get_real()) >> 6; |
| 1560 | #if 0 | 1560 | #if 0 |
| 1561 | printk("init_seq(%lx, %lx, %d, %d) = %d\n", | 1561 | printk("init_seq(%lx, %lx, %d, %d) = %d\n", |
| 1562 | saddr, daddr, sport, dport, seq); | 1562 | saddr, daddr, sport, dport, seq); |
| @@ -1616,7 +1616,7 @@ u64 secure_dccp_sequence_number(__be32 saddr, __be32 daddr, | |||
| 1616 | seq = half_md4_transform(hash, keyptr->secret); | 1616 | seq = half_md4_transform(hash, keyptr->secret); |
| 1617 | seq |= ((u64)keyptr->count) << (32 - HASH_BITS); | 1617 | seq |= ((u64)keyptr->count) << (32 - HASH_BITS); |
| 1618 | 1618 | ||
| 1619 | seq += ktime_get_real().tv64; | 1619 | seq += ktime_to_ns(ktime_get_real()); |
| 1620 | seq &= (1ull << 48) - 1; | 1620 | seq &= (1ull << 48) - 1; |
| 1621 | #if 0 | 1621 | #if 0 |
| 1622 | printk("dccp init_seq(%lx, %lx, %d, %d) = %d\n", | 1622 | printk("dccp init_seq(%lx, %lx, %d, %d) = %d\n", |
diff --git a/drivers/char/rtc.c b/drivers/char/rtc.c index ec6b65ec69ea..0c66b802736a 100644 --- a/drivers/char/rtc.c +++ b/drivers/char/rtc.c | |||
| @@ -918,6 +918,31 @@ static const struct file_operations rtc_proc_fops = { | |||
| 918 | }; | 918 | }; |
| 919 | #endif | 919 | #endif |
| 920 | 920 | ||
| 921 | static resource_size_t rtc_size; | ||
| 922 | |||
| 923 | static struct resource * __init rtc_request_region(resource_size_t size) | ||
| 924 | { | ||
| 925 | struct resource *r; | ||
| 926 | |||
| 927 | if (RTC_IOMAPPED) | ||
| 928 | r = request_region(RTC_PORT(0), size, "rtc"); | ||
| 929 | else | ||
| 930 | r = request_mem_region(RTC_PORT(0), size, "rtc"); | ||
| 931 | |||
| 932 | if (r) | ||
| 933 | rtc_size = size; | ||
| 934 | |||
| 935 | return r; | ||
| 936 | } | ||
| 937 | |||
| 938 | static void rtc_release_region(void) | ||
| 939 | { | ||
| 940 | if (RTC_IOMAPPED) | ||
| 941 | release_region(RTC_PORT(0), rtc_size); | ||
| 942 | else | ||
| 943 | release_mem_region(RTC_PORT(0), rtc_size); | ||
| 944 | } | ||
| 945 | |||
| 921 | static int __init rtc_init(void) | 946 | static int __init rtc_init(void) |
| 922 | { | 947 | { |
| 923 | #ifdef CONFIG_PROC_FS | 948 | #ifdef CONFIG_PROC_FS |
| @@ -968,10 +993,17 @@ found: | |||
| 968 | } | 993 | } |
| 969 | no_irq: | 994 | no_irq: |
| 970 | #else | 995 | #else |
| 971 | if (RTC_IOMAPPED) | 996 | r = rtc_request_region(RTC_IO_EXTENT); |
| 972 | r = request_region(RTC_PORT(0), RTC_IO_EXTENT, "rtc"); | 997 | |
| 973 | else | 998 | /* |
| 974 | r = request_mem_region(RTC_PORT(0), RTC_IO_EXTENT, "rtc"); | 999 | * If we've already requested a smaller range (for example, because |
| 1000 | * PNPBIOS or ACPI told us how the device is configured), the request | ||
| 1001 | * above might fail because it's too big. | ||
| 1002 | * | ||
| 1003 | * If so, request just the range we actually use. | ||
| 1004 | */ | ||
| 1005 | if (!r) | ||
| 1006 | r = rtc_request_region(RTC_IO_EXTENT_USED); | ||
| 975 | if (!r) { | 1007 | if (!r) { |
| 976 | #ifdef RTC_IRQ | 1008 | #ifdef RTC_IRQ |
| 977 | rtc_has_irq = 0; | 1009 | rtc_has_irq = 0; |
| @@ -992,10 +1024,7 @@ no_irq: | |||
| 992 | /* Yeah right, seeing as irq 8 doesn't even hit the bus. */ | 1024 | /* Yeah right, seeing as irq 8 doesn't even hit the bus. */ |
| 993 | rtc_has_irq = 0; | 1025 | rtc_has_irq = 0; |
| 994 | printk(KERN_ERR "rtc: IRQ %d is not free.\n", RTC_IRQ); | 1026 | printk(KERN_ERR "rtc: IRQ %d is not free.\n", RTC_IRQ); |
| 995 | if (RTC_IOMAPPED) | 1027 | rtc_release_region(); |
| 996 | release_region(RTC_PORT(0), RTC_IO_EXTENT); | ||
| 997 | else | ||
| 998 | release_mem_region(RTC_PORT(0), RTC_IO_EXTENT); | ||
| 999 | return -EIO; | 1028 | return -EIO; |
| 1000 | } | 1029 | } |
| 1001 | hpet_rtc_timer_init(); | 1030 | hpet_rtc_timer_init(); |
| @@ -1009,7 +1038,7 @@ no_irq: | |||
| 1009 | free_irq(RTC_IRQ, NULL); | 1038 | free_irq(RTC_IRQ, NULL); |
| 1010 | rtc_has_irq = 0; | 1039 | rtc_has_irq = 0; |
| 1011 | #endif | 1040 | #endif |
| 1012 | release_region(RTC_PORT(0), RTC_IO_EXTENT); | 1041 | rtc_release_region(); |
| 1013 | return -ENODEV; | 1042 | return -ENODEV; |
| 1014 | } | 1043 | } |
| 1015 | 1044 | ||
| @@ -1091,10 +1120,7 @@ static void __exit rtc_exit (void) | |||
| 1091 | if (rtc_has_irq) | 1120 | if (rtc_has_irq) |
| 1092 | free_irq (rtc_irq, &rtc_port); | 1121 | free_irq (rtc_irq, &rtc_port); |
| 1093 | #else | 1122 | #else |
| 1094 | if (RTC_IOMAPPED) | 1123 | rtc_release_region(); |
| 1095 | release_region(RTC_PORT(0), RTC_IO_EXTENT); | ||
| 1096 | else | ||
| 1097 | release_mem_region(RTC_PORT(0), RTC_IO_EXTENT); | ||
| 1098 | #ifdef RTC_IRQ | 1124 | #ifdef RTC_IRQ |
| 1099 | if (rtc_has_irq) | 1125 | if (rtc_has_irq) |
| 1100 | free_irq (RTC_IRQ, NULL); | 1126 | free_irq (RTC_IRQ, NULL); |
diff --git a/drivers/cpufreq/cpufreq_conservative.c b/drivers/cpufreq/cpufreq_conservative.c index 4bd33ce8a6f3..1bba99747f5b 100644 --- a/drivers/cpufreq/cpufreq_conservative.c +++ b/drivers/cpufreq/cpufreq_conservative.c | |||
| @@ -37,17 +37,17 @@ | |||
| 37 | #define DEF_FREQUENCY_UP_THRESHOLD (80) | 37 | #define DEF_FREQUENCY_UP_THRESHOLD (80) |
| 38 | #define DEF_FREQUENCY_DOWN_THRESHOLD (20) | 38 | #define DEF_FREQUENCY_DOWN_THRESHOLD (20) |
| 39 | 39 | ||
| 40 | /* | 40 | /* |
| 41 | * The polling frequency of this governor depends on the capability of | 41 | * The polling frequency of this governor depends on the capability of |
| 42 | * the processor. Default polling frequency is 1000 times the transition | 42 | * the processor. Default polling frequency is 1000 times the transition |
| 43 | * latency of the processor. The governor will work on any processor with | 43 | * latency of the processor. The governor will work on any processor with |
| 44 | * transition latency <= 10mS, using appropriate sampling | 44 | * transition latency <= 10mS, using appropriate sampling |
| 45 | * rate. | 45 | * rate. |
| 46 | * For CPUs with transition latency > 10mS (mostly drivers | 46 | * For CPUs with transition latency > 10mS (mostly drivers |
| 47 | * with CPUFREQ_ETERNAL), this governor will not work. | 47 | * with CPUFREQ_ETERNAL), this governor will not work. |
| 48 | * All times here are in uS. | 48 | * All times here are in uS. |
| 49 | */ | 49 | */ |
| 50 | static unsigned int def_sampling_rate; | 50 | static unsigned int def_sampling_rate; |
| 51 | #define MIN_SAMPLING_RATE_RATIO (2) | 51 | #define MIN_SAMPLING_RATE_RATIO (2) |
| 52 | /* for correct statistics, we need at least 10 ticks between each measure */ | 52 | /* for correct statistics, we need at least 10 ticks between each measure */ |
| 53 | #define MIN_STAT_SAMPLING_RATE \ | 53 | #define MIN_STAT_SAMPLING_RATE \ |
| @@ -63,12 +63,12 @@ static unsigned int def_sampling_rate; | |||
| 63 | static void do_dbs_timer(struct work_struct *work); | 63 | static void do_dbs_timer(struct work_struct *work); |
| 64 | 64 | ||
| 65 | struct cpu_dbs_info_s { | 65 | struct cpu_dbs_info_s { |
| 66 | struct cpufreq_policy *cur_policy; | 66 | struct cpufreq_policy *cur_policy; |
| 67 | unsigned int prev_cpu_idle_up; | 67 | unsigned int prev_cpu_idle_up; |
| 68 | unsigned int prev_cpu_idle_down; | 68 | unsigned int prev_cpu_idle_down; |
| 69 | unsigned int enable; | 69 | unsigned int enable; |
| 70 | unsigned int down_skip; | 70 | unsigned int down_skip; |
| 71 | unsigned int requested_freq; | 71 | unsigned int requested_freq; |
| 72 | }; | 72 | }; |
| 73 | static DEFINE_PER_CPU(struct cpu_dbs_info_s, cpu_dbs_info); | 73 | static DEFINE_PER_CPU(struct cpu_dbs_info_s, cpu_dbs_info); |
| 74 | 74 | ||
| @@ -82,24 +82,24 @@ static unsigned int dbs_enable; /* number of CPUs using this policy */ | |||
| 82 | * cpu_hotplug lock should be taken before that. Note that cpu_hotplug lock | 82 | * cpu_hotplug lock should be taken before that. Note that cpu_hotplug lock |
| 83 | * is recursive for the same process. -Venki | 83 | * is recursive for the same process. -Venki |
| 84 | */ | 84 | */ |
| 85 | static DEFINE_MUTEX (dbs_mutex); | 85 | static DEFINE_MUTEX (dbs_mutex); |
| 86 | static DECLARE_DELAYED_WORK(dbs_work, do_dbs_timer); | 86 | static DECLARE_DELAYED_WORK(dbs_work, do_dbs_timer); |
| 87 | 87 | ||
| 88 | struct dbs_tuners { | 88 | struct dbs_tuners { |
| 89 | unsigned int sampling_rate; | 89 | unsigned int sampling_rate; |
| 90 | unsigned int sampling_down_factor; | 90 | unsigned int sampling_down_factor; |
| 91 | unsigned int up_threshold; | 91 | unsigned int up_threshold; |
| 92 | unsigned int down_threshold; | 92 | unsigned int down_threshold; |
| 93 | unsigned int ignore_nice; | 93 | unsigned int ignore_nice; |
| 94 | unsigned int freq_step; | 94 | unsigned int freq_step; |
| 95 | }; | 95 | }; |
| 96 | 96 | ||
| 97 | static struct dbs_tuners dbs_tuners_ins = { | 97 | static struct dbs_tuners dbs_tuners_ins = { |
| 98 | .up_threshold = DEF_FREQUENCY_UP_THRESHOLD, | 98 | .up_threshold = DEF_FREQUENCY_UP_THRESHOLD, |
| 99 | .down_threshold = DEF_FREQUENCY_DOWN_THRESHOLD, | 99 | .down_threshold = DEF_FREQUENCY_DOWN_THRESHOLD, |
| 100 | .sampling_down_factor = DEF_SAMPLING_DOWN_FACTOR, | 100 | .sampling_down_factor = DEF_SAMPLING_DOWN_FACTOR, |
| 101 | .ignore_nice = 0, | 101 | .ignore_nice = 0, |
| 102 | .freq_step = 5, | 102 | .freq_step = 5, |
| 103 | }; | 103 | }; |
| 104 | 104 | ||
| 105 | static inline unsigned int get_cpu_idle_time(unsigned int cpu) | 105 | static inline unsigned int get_cpu_idle_time(unsigned int cpu) |
| @@ -109,13 +109,34 @@ static inline unsigned int get_cpu_idle_time(unsigned int cpu) | |||
| 109 | if (dbs_tuners_ins.ignore_nice) | 109 | if (dbs_tuners_ins.ignore_nice) |
| 110 | add_nice = kstat_cpu(cpu).cpustat.nice; | 110 | add_nice = kstat_cpu(cpu).cpustat.nice; |
| 111 | 111 | ||
| 112 | ret = kstat_cpu(cpu).cpustat.idle + | 112 | ret = kstat_cpu(cpu).cpustat.idle + |
| 113 | kstat_cpu(cpu).cpustat.iowait + | 113 | kstat_cpu(cpu).cpustat.iowait + |
| 114 | add_nice; | 114 | add_nice; |
| 115 | 115 | ||
| 116 | return ret; | 116 | return ret; |
| 117 | } | 117 | } |
| 118 | 118 | ||
| 119 | /* keep track of frequency transitions */ | ||
| 120 | static int | ||
| 121 | dbs_cpufreq_notifier(struct notifier_block *nb, unsigned long val, | ||
| 122 | void *data) | ||
| 123 | { | ||
| 124 | struct cpufreq_freqs *freq = data; | ||
| 125 | struct cpu_dbs_info_s *this_dbs_info = &per_cpu(cpu_dbs_info, | ||
| 126 | freq->cpu); | ||
| 127 | |||
| 128 | if (!this_dbs_info->enable) | ||
| 129 | return 0; | ||
| 130 | |||
| 131 | this_dbs_info->requested_freq = freq->new; | ||
| 132 | |||
| 133 | return 0; | ||
| 134 | } | ||
| 135 | |||
| 136 | static struct notifier_block dbs_cpufreq_notifier_block = { | ||
| 137 | .notifier_call = dbs_cpufreq_notifier | ||
| 138 | }; | ||
| 139 | |||
| 119 | /************************** sysfs interface ************************/ | 140 | /************************** sysfs interface ************************/ |
| 120 | static ssize_t show_sampling_rate_max(struct cpufreq_policy *policy, char *buf) | 141 | static ssize_t show_sampling_rate_max(struct cpufreq_policy *policy, char *buf) |
| 121 | { | 142 | { |
| @@ -127,8 +148,8 @@ static ssize_t show_sampling_rate_min(struct cpufreq_policy *policy, char *buf) | |||
| 127 | return sprintf (buf, "%u\n", MIN_SAMPLING_RATE); | 148 | return sprintf (buf, "%u\n", MIN_SAMPLING_RATE); |
| 128 | } | 149 | } |
| 129 | 150 | ||
| 130 | #define define_one_ro(_name) \ | 151 | #define define_one_ro(_name) \ |
| 131 | static struct freq_attr _name = \ | 152 | static struct freq_attr _name = \ |
| 132 | __ATTR(_name, 0444, show_##_name, NULL) | 153 | __ATTR(_name, 0444, show_##_name, NULL) |
| 133 | 154 | ||
| 134 | define_one_ro(sampling_rate_max); | 155 | define_one_ro(sampling_rate_max); |
| @@ -148,7 +169,7 @@ show_one(down_threshold, down_threshold); | |||
| 148 | show_one(ignore_nice_load, ignore_nice); | 169 | show_one(ignore_nice_load, ignore_nice); |
| 149 | show_one(freq_step, freq_step); | 170 | show_one(freq_step, freq_step); |
| 150 | 171 | ||
| 151 | static ssize_t store_sampling_down_factor(struct cpufreq_policy *unused, | 172 | static ssize_t store_sampling_down_factor(struct cpufreq_policy *unused, |
| 152 | const char *buf, size_t count) | 173 | const char *buf, size_t count) |
| 153 | { | 174 | { |
| 154 | unsigned int input; | 175 | unsigned int input; |
| @@ -164,7 +185,7 @@ static ssize_t store_sampling_down_factor(struct cpufreq_policy *unused, | |||
| 164 | return count; | 185 | return count; |
| 165 | } | 186 | } |
| 166 | 187 | ||
| 167 | static ssize_t store_sampling_rate(struct cpufreq_policy *unused, | 188 | static ssize_t store_sampling_rate(struct cpufreq_policy *unused, |
| 168 | const char *buf, size_t count) | 189 | const char *buf, size_t count) |
| 169 | { | 190 | { |
| 170 | unsigned int input; | 191 | unsigned int input; |
| @@ -183,7 +204,7 @@ static ssize_t store_sampling_rate(struct cpufreq_policy *unused, | |||
| 183 | return count; | 204 | return count; |
| 184 | } | 205 | } |
| 185 | 206 | ||
| 186 | static ssize_t store_up_threshold(struct cpufreq_policy *unused, | 207 | static ssize_t store_up_threshold(struct cpufreq_policy *unused, |
| 187 | const char *buf, size_t count) | 208 | const char *buf, size_t count) |
| 188 | { | 209 | { |
| 189 | unsigned int input; | 210 | unsigned int input; |
| @@ -202,7 +223,7 @@ static ssize_t store_up_threshold(struct cpufreq_policy *unused, | |||
| 202 | return count; | 223 | return count; |
| 203 | } | 224 | } |
| 204 | 225 | ||
| 205 | static ssize_t store_down_threshold(struct cpufreq_policy *unused, | 226 | static ssize_t store_down_threshold(struct cpufreq_policy *unused, |
| 206 | const char *buf, size_t count) | 227 | const char *buf, size_t count) |
| 207 | { | 228 | { |
| 208 | unsigned int input; | 229 | unsigned int input; |
| @@ -228,16 +249,16 @@ static ssize_t store_ignore_nice_load(struct cpufreq_policy *policy, | |||
| 228 | int ret; | 249 | int ret; |
| 229 | 250 | ||
| 230 | unsigned int j; | 251 | unsigned int j; |
| 231 | 252 | ||
| 232 | ret = sscanf (buf, "%u", &input); | 253 | ret = sscanf(buf, "%u", &input); |
| 233 | if ( ret != 1 ) | 254 | if (ret != 1) |
| 234 | return -EINVAL; | 255 | return -EINVAL; |
| 235 | 256 | ||
| 236 | if ( input > 1 ) | 257 | if (input > 1) |
| 237 | input = 1; | 258 | input = 1; |
| 238 | 259 | ||
| 239 | mutex_lock(&dbs_mutex); | 260 | mutex_lock(&dbs_mutex); |
| 240 | if ( input == dbs_tuners_ins.ignore_nice ) { /* nothing to do */ | 261 | if (input == dbs_tuners_ins.ignore_nice) { /* nothing to do */ |
| 241 | mutex_unlock(&dbs_mutex); | 262 | mutex_unlock(&dbs_mutex); |
| 242 | return count; | 263 | return count; |
| 243 | } | 264 | } |
| @@ -261,14 +282,14 @@ static ssize_t store_freq_step(struct cpufreq_policy *policy, | |||
| 261 | unsigned int input; | 282 | unsigned int input; |
| 262 | int ret; | 283 | int ret; |
| 263 | 284 | ||
| 264 | ret = sscanf (buf, "%u", &input); | 285 | ret = sscanf(buf, "%u", &input); |
| 265 | 286 | ||
| 266 | if ( ret != 1 ) | 287 | if (ret != 1) |
| 267 | return -EINVAL; | 288 | return -EINVAL; |
| 268 | 289 | ||
| 269 | if ( input > 100 ) | 290 | if (input > 100) |
| 270 | input = 100; | 291 | input = 100; |
| 271 | 292 | ||
| 272 | /* no need to test here if freq_step is zero as the user might actually | 293 | /* no need to test here if freq_step is zero as the user might actually |
| 273 | * want this, they would be crazy though :) */ | 294 | * want this, they would be crazy though :) */ |
| 274 | mutex_lock(&dbs_mutex); | 295 | mutex_lock(&dbs_mutex); |
| @@ -322,18 +343,18 @@ static void dbs_check_cpu(int cpu) | |||
| 322 | 343 | ||
| 323 | policy = this_dbs_info->cur_policy; | 344 | policy = this_dbs_info->cur_policy; |
| 324 | 345 | ||
| 325 | /* | 346 | /* |
| 326 | * The default safe range is 20% to 80% | 347 | * The default safe range is 20% to 80% |
| 327 | * Every sampling_rate, we check | 348 | * Every sampling_rate, we check |
| 328 | * - If current idle time is less than 20%, then we try to | 349 | * - If current idle time is less than 20%, then we try to |
| 329 | * increase frequency | 350 | * increase frequency |
| 330 | * Every sampling_rate*sampling_down_factor, we check | 351 | * Every sampling_rate*sampling_down_factor, we check |
| 331 | * - If current idle time is more than 80%, then we try to | 352 | * - If current idle time is more than 80%, then we try to |
| 332 | * decrease frequency | 353 | * decrease frequency |
| 333 | * | 354 | * |
| 334 | * Any frequency increase takes it to the maximum frequency. | 355 | * Any frequency increase takes it to the maximum frequency. |
| 335 | * Frequency reduction happens at minimum steps of | 356 | * Frequency reduction happens at minimum steps of |
| 336 | * 5% (default) of max_frequency | 357 | * 5% (default) of max_frequency |
| 337 | */ | 358 | */ |
| 338 | 359 | ||
| 339 | /* Check for frequency increase */ | 360 | /* Check for frequency increase */ |
| @@ -361,13 +382,13 @@ static void dbs_check_cpu(int cpu) | |||
| 361 | /* if we are already at full speed then break out early */ | 382 | /* if we are already at full speed then break out early */ |
| 362 | if (this_dbs_info->requested_freq == policy->max) | 383 | if (this_dbs_info->requested_freq == policy->max) |
| 363 | return; | 384 | return; |
| 364 | 385 | ||
| 365 | freq_step = (dbs_tuners_ins.freq_step * policy->max) / 100; | 386 | freq_step = (dbs_tuners_ins.freq_step * policy->max) / 100; |
| 366 | 387 | ||
| 367 | /* max freq cannot be less than 100. But who knows.... */ | 388 | /* max freq cannot be less than 100. But who knows.... */ |
| 368 | if (unlikely(freq_step == 0)) | 389 | if (unlikely(freq_step == 0)) |
| 369 | freq_step = 5; | 390 | freq_step = 5; |
| 370 | 391 | ||
| 371 | this_dbs_info->requested_freq += freq_step; | 392 | this_dbs_info->requested_freq += freq_step; |
| 372 | if (this_dbs_info->requested_freq > policy->max) | 393 | if (this_dbs_info->requested_freq > policy->max) |
| 373 | this_dbs_info->requested_freq = policy->max; | 394 | this_dbs_info->requested_freq = policy->max; |
| @@ -427,15 +448,15 @@ static void dbs_check_cpu(int cpu) | |||
| 427 | } | 448 | } |
| 428 | 449 | ||
| 429 | static void do_dbs_timer(struct work_struct *work) | 450 | static void do_dbs_timer(struct work_struct *work) |
| 430 | { | 451 | { |
| 431 | int i; | 452 | int i; |
| 432 | mutex_lock(&dbs_mutex); | 453 | mutex_lock(&dbs_mutex); |
| 433 | for_each_online_cpu(i) | 454 | for_each_online_cpu(i) |
| 434 | dbs_check_cpu(i); | 455 | dbs_check_cpu(i); |
| 435 | schedule_delayed_work(&dbs_work, | 456 | schedule_delayed_work(&dbs_work, |
| 436 | usecs_to_jiffies(dbs_tuners_ins.sampling_rate)); | 457 | usecs_to_jiffies(dbs_tuners_ins.sampling_rate)); |
| 437 | mutex_unlock(&dbs_mutex); | 458 | mutex_unlock(&dbs_mutex); |
| 438 | } | 459 | } |
| 439 | 460 | ||
| 440 | static inline void dbs_timer_init(void) | 461 | static inline void dbs_timer_init(void) |
| 441 | { | 462 | { |
| @@ -462,13 +483,12 @@ static int cpufreq_governor_dbs(struct cpufreq_policy *policy, | |||
| 462 | 483 | ||
| 463 | switch (event) { | 484 | switch (event) { |
| 464 | case CPUFREQ_GOV_START: | 485 | case CPUFREQ_GOV_START: |
| 465 | if ((!cpu_online(cpu)) || | 486 | if ((!cpu_online(cpu)) || (!policy->cur)) |
| 466 | (!policy->cur)) | ||
| 467 | return -EINVAL; | 487 | return -EINVAL; |
| 468 | 488 | ||
| 469 | if (this_dbs_info->enable) /* Already enabled */ | 489 | if (this_dbs_info->enable) /* Already enabled */ |
| 470 | break; | 490 | break; |
| 471 | 491 | ||
| 472 | mutex_lock(&dbs_mutex); | 492 | mutex_lock(&dbs_mutex); |
| 473 | 493 | ||
| 474 | rc = sysfs_create_group(&policy->kobj, &dbs_attr_group); | 494 | rc = sysfs_create_group(&policy->kobj, &dbs_attr_group); |
| @@ -481,7 +501,7 @@ static int cpufreq_governor_dbs(struct cpufreq_policy *policy, | |||
| 481 | struct cpu_dbs_info_s *j_dbs_info; | 501 | struct cpu_dbs_info_s *j_dbs_info; |
| 482 | j_dbs_info = &per_cpu(cpu_dbs_info, j); | 502 | j_dbs_info = &per_cpu(cpu_dbs_info, j); |
| 483 | j_dbs_info->cur_policy = policy; | 503 | j_dbs_info->cur_policy = policy; |
| 484 | 504 | ||
| 485 | j_dbs_info->prev_cpu_idle_up = get_cpu_idle_time(cpu); | 505 | j_dbs_info->prev_cpu_idle_up = get_cpu_idle_time(cpu); |
| 486 | j_dbs_info->prev_cpu_idle_down | 506 | j_dbs_info->prev_cpu_idle_down |
| 487 | = j_dbs_info->prev_cpu_idle_up; | 507 | = j_dbs_info->prev_cpu_idle_up; |
| @@ -511,8 +531,11 @@ static int cpufreq_governor_dbs(struct cpufreq_policy *policy, | |||
| 511 | dbs_tuners_ins.sampling_rate = def_sampling_rate; | 531 | dbs_tuners_ins.sampling_rate = def_sampling_rate; |
| 512 | 532 | ||
| 513 | dbs_timer_init(); | 533 | dbs_timer_init(); |
| 534 | cpufreq_register_notifier( | ||
| 535 | &dbs_cpufreq_notifier_block, | ||
| 536 | CPUFREQ_TRANSITION_NOTIFIER); | ||
| 514 | } | 537 | } |
| 515 | 538 | ||
| 516 | mutex_unlock(&dbs_mutex); | 539 | mutex_unlock(&dbs_mutex); |
| 517 | break; | 540 | break; |
| 518 | 541 | ||
| @@ -525,9 +548,13 @@ static int cpufreq_governor_dbs(struct cpufreq_policy *policy, | |||
| 525 | * Stop the timerschedule work, when this governor | 548 | * Stop the timerschedule work, when this governor |
| 526 | * is used for first time | 549 | * is used for first time |
| 527 | */ | 550 | */ |
| 528 | if (dbs_enable == 0) | 551 | if (dbs_enable == 0) { |
| 529 | dbs_timer_exit(); | 552 | dbs_timer_exit(); |
| 530 | 553 | cpufreq_unregister_notifier( | |
| 554 | &dbs_cpufreq_notifier_block, | ||
| 555 | CPUFREQ_TRANSITION_NOTIFIER); | ||
| 556 | } | ||
| 557 | |||
| 531 | mutex_unlock(&dbs_mutex); | 558 | mutex_unlock(&dbs_mutex); |
| 532 | 559 | ||
| 533 | break; | 560 | break; |
| @@ -537,11 +564,11 @@ static int cpufreq_governor_dbs(struct cpufreq_policy *policy, | |||
| 537 | if (policy->max < this_dbs_info->cur_policy->cur) | 564 | if (policy->max < this_dbs_info->cur_policy->cur) |
| 538 | __cpufreq_driver_target( | 565 | __cpufreq_driver_target( |
| 539 | this_dbs_info->cur_policy, | 566 | this_dbs_info->cur_policy, |
| 540 | policy->max, CPUFREQ_RELATION_H); | 567 | policy->max, CPUFREQ_RELATION_H); |
| 541 | else if (policy->min > this_dbs_info->cur_policy->cur) | 568 | else if (policy->min > this_dbs_info->cur_policy->cur) |
| 542 | __cpufreq_driver_target( | 569 | __cpufreq_driver_target( |
| 543 | this_dbs_info->cur_policy, | 570 | this_dbs_info->cur_policy, |
| 544 | policy->min, CPUFREQ_RELATION_L); | 571 | policy->min, CPUFREQ_RELATION_L); |
| 545 | mutex_unlock(&dbs_mutex); | 572 | mutex_unlock(&dbs_mutex); |
| 546 | break; | 573 | break; |
| 547 | } | 574 | } |
diff --git a/drivers/crypto/geode-aes.c b/drivers/crypto/geode-aes.c index f9a34abbf4fa..711e246e1ef0 100644 --- a/drivers/crypto/geode-aes.c +++ b/drivers/crypto/geode-aes.c | |||
| @@ -110,8 +110,7 @@ geode_aes_crypt(struct geode_aes_op *op) | |||
| 110 | * we don't need to worry | 110 | * we don't need to worry |
| 111 | */ | 111 | */ |
| 112 | 112 | ||
| 113 | if (op->src == op->dst) | 113 | flags |= (AES_CTRL_DCA | AES_CTRL_SCA); |
| 114 | flags |= (AES_CTRL_DCA | AES_CTRL_SCA); | ||
| 115 | 114 | ||
| 116 | if (op->dir == AES_DIR_ENCRYPT) | 115 | if (op->dir == AES_DIR_ENCRYPT) |
| 117 | flags |= AES_CTRL_ENCRYPT; | 116 | flags |= AES_CTRL_ENCRYPT; |
diff --git a/drivers/dma/dmaengine.c b/drivers/dma/dmaengine.c index 82489923af09..d59b2f417306 100644 --- a/drivers/dma/dmaengine.c +++ b/drivers/dma/dmaengine.c | |||
| @@ -182,10 +182,9 @@ static void dma_client_chan_alloc(struct dma_client *client) | |||
| 182 | /* we are done once this client rejects | 182 | /* we are done once this client rejects |
| 183 | * an available resource | 183 | * an available resource |
| 184 | */ | 184 | */ |
| 185 | if (ack == DMA_ACK) { | 185 | if (ack == DMA_ACK) |
| 186 | dma_chan_get(chan); | 186 | dma_chan_get(chan); |
| 187 | kref_get(&device->refcount); | 187 | else if (ack == DMA_NAK) |
| 188 | } else if (ack == DMA_NAK) | ||
| 189 | return; | 188 | return; |
| 190 | } | 189 | } |
| 191 | } | 190 | } |
| @@ -272,11 +271,8 @@ static void dma_clients_notify_removed(struct dma_chan *chan) | |||
| 272 | /* client was holding resources for this channel so | 271 | /* client was holding resources for this channel so |
| 273 | * free it | 272 | * free it |
| 274 | */ | 273 | */ |
| 275 | if (ack == DMA_ACK) { | 274 | if (ack == DMA_ACK) |
| 276 | dma_chan_put(chan); | 275 | dma_chan_put(chan); |
| 277 | kref_put(&chan->device->refcount, | ||
| 278 | dma_async_device_cleanup); | ||
| 279 | } | ||
| 280 | } | 276 | } |
| 281 | 277 | ||
| 282 | mutex_unlock(&dma_list_mutex); | 278 | mutex_unlock(&dma_list_mutex); |
| @@ -316,11 +312,8 @@ void dma_async_client_unregister(struct dma_client *client) | |||
| 316 | ack = client->event_callback(client, chan, | 312 | ack = client->event_callback(client, chan, |
| 317 | DMA_RESOURCE_REMOVED); | 313 | DMA_RESOURCE_REMOVED); |
| 318 | 314 | ||
| 319 | if (ack == DMA_ACK) { | 315 | if (ack == DMA_ACK) |
| 320 | dma_chan_put(chan); | 316 | dma_chan_put(chan); |
| 321 | kref_put(&chan->device->refcount, | ||
| 322 | dma_async_device_cleanup); | ||
| 323 | } | ||
| 324 | } | 317 | } |
| 325 | 318 | ||
| 326 | list_del(&client->global_node); | 319 | list_del(&client->global_node); |
| @@ -397,6 +390,8 @@ int dma_async_device_register(struct dma_device *device) | |||
| 397 | goto err_out; | 390 | goto err_out; |
| 398 | } | 391 | } |
| 399 | 392 | ||
| 393 | /* One for the channel, one of the class device */ | ||
| 394 | kref_get(&device->refcount); | ||
| 400 | kref_get(&device->refcount); | 395 | kref_get(&device->refcount); |
| 401 | kref_init(&chan->refcount); | 396 | kref_init(&chan->refcount); |
| 402 | chan->slow_ref = 0; | 397 | chan->slow_ref = 0; |
diff --git a/drivers/dma/ioat.c b/drivers/dma/ioat.c index f204c39fb412..16e0fd8facfb 100644 --- a/drivers/dma/ioat.c +++ b/drivers/dma/ioat.c | |||
| @@ -39,10 +39,14 @@ MODULE_LICENSE("GPL"); | |||
| 39 | MODULE_AUTHOR("Intel Corporation"); | 39 | MODULE_AUTHOR("Intel Corporation"); |
| 40 | 40 | ||
| 41 | static struct pci_device_id ioat_pci_tbl[] = { | 41 | static struct pci_device_id ioat_pci_tbl[] = { |
| 42 | /* I/OAT v1 platforms */ | ||
| 42 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_IOAT) }, | 43 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_IOAT) }, |
| 43 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_IOAT_CNB) }, | 44 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_IOAT_CNB) }, |
| 44 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_IOAT_SCNB) }, | 45 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_IOAT_SCNB) }, |
| 45 | { PCI_DEVICE(PCI_VENDOR_ID_UNISYS, PCI_DEVICE_ID_UNISYS_DMA_DIRECTOR) }, | 46 | { PCI_DEVICE(PCI_VENDOR_ID_UNISYS, PCI_DEVICE_ID_UNISYS_DMA_DIRECTOR) }, |
| 47 | |||
| 48 | /* I/OAT v2 platforms */ | ||
| 49 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_IOAT_SNB) }, | ||
| 46 | { 0, } | 50 | { 0, } |
| 47 | }; | 51 | }; |
| 48 | 52 | ||
| @@ -74,10 +78,17 @@ static int ioat_setup_functionality(struct pci_dev *pdev, void __iomem *iobase) | |||
| 74 | if (device->dma && ioat_dca_enabled) | 78 | if (device->dma && ioat_dca_enabled) |
| 75 | device->dca = ioat_dca_init(pdev, iobase); | 79 | device->dca = ioat_dca_init(pdev, iobase); |
| 76 | break; | 80 | break; |
| 81 | case IOAT_VER_2_0: | ||
| 82 | device->dma = ioat_dma_probe(pdev, iobase); | ||
| 83 | if (device->dma && ioat_dca_enabled) | ||
| 84 | device->dca = ioat2_dca_init(pdev, iobase); | ||
| 85 | break; | ||
| 77 | default: | 86 | default: |
| 78 | err = -ENODEV; | 87 | err = -ENODEV; |
| 79 | break; | 88 | break; |
| 80 | } | 89 | } |
| 90 | if (!device->dma) | ||
| 91 | err = -ENODEV; | ||
| 81 | return err; | 92 | return err; |
| 82 | } | 93 | } |
| 83 | 94 | ||
diff --git a/drivers/dma/ioat_dca.c b/drivers/dma/ioat_dca.c index ba985715b803..0fa8a98051a8 100644 --- a/drivers/dma/ioat_dca.c +++ b/drivers/dma/ioat_dca.c | |||
| @@ -261,3 +261,167 @@ struct dca_provider *ioat_dca_init(struct pci_dev *pdev, void __iomem *iobase) | |||
| 261 | return dca; | 261 | return dca; |
| 262 | } | 262 | } |
| 263 | 263 | ||
| 264 | |||
| 265 | static int ioat2_dca_add_requester(struct dca_provider *dca, struct device *dev) | ||
| 266 | { | ||
| 267 | struct ioat_dca_priv *ioatdca = dca_priv(dca); | ||
| 268 | struct pci_dev *pdev; | ||
| 269 | int i; | ||
| 270 | u16 id; | ||
| 271 | u16 global_req_table; | ||
| 272 | |||
| 273 | /* This implementation only supports PCI-Express */ | ||
| 274 | if (dev->bus != &pci_bus_type) | ||
| 275 | return -ENODEV; | ||
| 276 | pdev = to_pci_dev(dev); | ||
| 277 | id = dcaid_from_pcidev(pdev); | ||
| 278 | |||
| 279 | if (ioatdca->requester_count == ioatdca->max_requesters) | ||
| 280 | return -ENODEV; | ||
| 281 | |||
| 282 | for (i = 0; i < ioatdca->max_requesters; i++) { | ||
| 283 | if (ioatdca->req_slots[i].pdev == NULL) { | ||
| 284 | /* found an empty slot */ | ||
| 285 | ioatdca->requester_count++; | ||
| 286 | ioatdca->req_slots[i].pdev = pdev; | ||
| 287 | ioatdca->req_slots[i].rid = id; | ||
| 288 | global_req_table = | ||
| 289 | readw(ioatdca->dca_base + IOAT_DCA_GREQID_OFFSET); | ||
| 290 | writel(id | IOAT_DCA_GREQID_VALID, | ||
| 291 | ioatdca->iobase + global_req_table + (i * 4)); | ||
| 292 | return i; | ||
| 293 | } | ||
| 294 | } | ||
| 295 | /* Error, ioatdma->requester_count is out of whack */ | ||
| 296 | return -EFAULT; | ||
| 297 | } | ||
| 298 | |||
| 299 | static int ioat2_dca_remove_requester(struct dca_provider *dca, | ||
| 300 | struct device *dev) | ||
| 301 | { | ||
| 302 | struct ioat_dca_priv *ioatdca = dca_priv(dca); | ||
| 303 | struct pci_dev *pdev; | ||
| 304 | int i; | ||
| 305 | u16 global_req_table; | ||
| 306 | |||
| 307 | /* This implementation only supports PCI-Express */ | ||
| 308 | if (dev->bus != &pci_bus_type) | ||
| 309 | return -ENODEV; | ||
| 310 | pdev = to_pci_dev(dev); | ||
| 311 | |||
| 312 | for (i = 0; i < ioatdca->max_requesters; i++) { | ||
| 313 | if (ioatdca->req_slots[i].pdev == pdev) { | ||
| 314 | global_req_table = | ||
| 315 | readw(ioatdca->dca_base + IOAT_DCA_GREQID_OFFSET); | ||
| 316 | writel(0, ioatdca->iobase + global_req_table + (i * 4)); | ||
| 317 | ioatdca->req_slots[i].pdev = NULL; | ||
| 318 | ioatdca->req_slots[i].rid = 0; | ||
| 319 | ioatdca->requester_count--; | ||
| 320 | return i; | ||
| 321 | } | ||
| 322 | } | ||
| 323 | return -ENODEV; | ||
| 324 | } | ||
| 325 | |||
| 326 | static u8 ioat2_dca_get_tag(struct dca_provider *dca, int cpu) | ||
| 327 | { | ||
| 328 | u8 tag; | ||
| 329 | |||
| 330 | tag = ioat_dca_get_tag(dca, cpu); | ||
| 331 | tag = (~tag) & 0x1F; | ||
| 332 | return tag; | ||
| 333 | } | ||
| 334 | |||
| 335 | static struct dca_ops ioat2_dca_ops = { | ||
| 336 | .add_requester = ioat2_dca_add_requester, | ||
| 337 | .remove_requester = ioat2_dca_remove_requester, | ||
| 338 | .get_tag = ioat2_dca_get_tag, | ||
| 339 | }; | ||
| 340 | |||
| 341 | static int ioat2_dca_count_dca_slots(void *iobase, u16 dca_offset) | ||
| 342 | { | ||
| 343 | int slots = 0; | ||
| 344 | u32 req; | ||
| 345 | u16 global_req_table; | ||
| 346 | |||
| 347 | global_req_table = readw(iobase + dca_offset + IOAT_DCA_GREQID_OFFSET); | ||
| 348 | if (global_req_table == 0) | ||
| 349 | return 0; | ||
| 350 | do { | ||
| 351 | req = readl(iobase + global_req_table + (slots * sizeof(u32))); | ||
| 352 | slots++; | ||
| 353 | } while ((req & IOAT_DCA_GREQID_LASTID) == 0); | ||
| 354 | |||
| 355 | return slots; | ||
| 356 | } | ||
| 357 | |||
| 358 | struct dca_provider *ioat2_dca_init(struct pci_dev *pdev, void __iomem *iobase) | ||
| 359 | { | ||
| 360 | struct dca_provider *dca; | ||
| 361 | struct ioat_dca_priv *ioatdca; | ||
| 362 | int slots; | ||
| 363 | int i; | ||
| 364 | int err; | ||
| 365 | u32 tag_map; | ||
| 366 | u16 dca_offset; | ||
| 367 | u16 csi_fsb_control; | ||
| 368 | u16 pcie_control; | ||
| 369 | u8 bit; | ||
| 370 | |||
| 371 | if (!system_has_dca_enabled(pdev)) | ||
| 372 | return NULL; | ||
| 373 | |||
| 374 | dca_offset = readw(iobase + IOAT_DCAOFFSET_OFFSET); | ||
| 375 | if (dca_offset == 0) | ||
| 376 | return NULL; | ||
| 377 | |||
| 378 | slots = ioat2_dca_count_dca_slots(iobase, dca_offset); | ||
| 379 | if (slots == 0) | ||
| 380 | return NULL; | ||
| 381 | |||
| 382 | dca = alloc_dca_provider(&ioat2_dca_ops, | ||
| 383 | sizeof(*ioatdca) | ||
| 384 | + (sizeof(struct ioat_dca_slot) * slots)); | ||
| 385 | if (!dca) | ||
| 386 | return NULL; | ||
| 387 | |||
| 388 | ioatdca = dca_priv(dca); | ||
| 389 | ioatdca->iobase = iobase; | ||
| 390 | ioatdca->dca_base = iobase + dca_offset; | ||
| 391 | ioatdca->max_requesters = slots; | ||
| 392 | |||
| 393 | /* some bios might not know to turn these on */ | ||
| 394 | csi_fsb_control = readw(ioatdca->dca_base + IOAT_FSB_CAP_ENABLE_OFFSET); | ||
| 395 | if ((csi_fsb_control & IOAT_FSB_CAP_ENABLE_PREFETCH) == 0) { | ||
| 396 | csi_fsb_control |= IOAT_FSB_CAP_ENABLE_PREFETCH; | ||
| 397 | writew(csi_fsb_control, | ||
| 398 | ioatdca->dca_base + IOAT_FSB_CAP_ENABLE_OFFSET); | ||
| 399 | } | ||
| 400 | pcie_control = readw(ioatdca->dca_base + IOAT_PCI_CAP_ENABLE_OFFSET); | ||
| 401 | if ((pcie_control & IOAT_PCI_CAP_ENABLE_MEMWR) == 0) { | ||
| 402 | pcie_control |= IOAT_PCI_CAP_ENABLE_MEMWR; | ||
| 403 | writew(pcie_control, | ||
| 404 | ioatdca->dca_base + IOAT_PCI_CAP_ENABLE_OFFSET); | ||
| 405 | } | ||
| 406 | |||
| 407 | |||
| 408 | /* TODO version, compatibility and configuration checks */ | ||
| 409 | |||
| 410 | /* copy out the APIC to DCA tag map */ | ||
| 411 | tag_map = readl(ioatdca->dca_base + IOAT_APICID_TAG_MAP_OFFSET); | ||
| 412 | for (i = 0; i < 5; i++) { | ||
| 413 | bit = (tag_map >> (4 * i)) & 0x0f; | ||
| 414 | if (bit < 8) | ||
| 415 | ioatdca->tag_map[i] = bit | DCA_TAG_MAP_VALID; | ||
| 416 | else | ||
| 417 | ioatdca->tag_map[i] = 0; | ||
| 418 | } | ||
| 419 | |||
| 420 | err = register_dca_provider(dca, &pdev->dev); | ||
| 421 | if (err) { | ||
| 422 | free_dca_provider(dca); | ||
| 423 | return NULL; | ||
| 424 | } | ||
| 425 | |||
| 426 | return dca; | ||
| 427 | } | ||
diff --git a/drivers/dma/ioat_dma.c b/drivers/dma/ioat_dma.c index 7e4a785c2dff..c1c2dcc6fc2e 100644 --- a/drivers/dma/ioat_dma.c +++ b/drivers/dma/ioat_dma.c | |||
| @@ -36,18 +36,24 @@ | |||
| 36 | #include "ioatdma_registers.h" | 36 | #include "ioatdma_registers.h" |
| 37 | #include "ioatdma_hw.h" | 37 | #include "ioatdma_hw.h" |
| 38 | 38 | ||
| 39 | #define INITIAL_IOAT_DESC_COUNT 128 | ||
| 40 | |||
| 41 | #define to_ioat_chan(chan) container_of(chan, struct ioat_dma_chan, common) | 39 | #define to_ioat_chan(chan) container_of(chan, struct ioat_dma_chan, common) |
| 42 | #define to_ioatdma_device(dev) container_of(dev, struct ioatdma_device, common) | 40 | #define to_ioatdma_device(dev) container_of(dev, struct ioatdma_device, common) |
| 43 | #define to_ioat_desc(lh) container_of(lh, struct ioat_desc_sw, node) | 41 | #define to_ioat_desc(lh) container_of(lh, struct ioat_desc_sw, node) |
| 44 | #define tx_to_ioat_desc(tx) container_of(tx, struct ioat_desc_sw, async_tx) | 42 | #define tx_to_ioat_desc(tx) container_of(tx, struct ioat_desc_sw, async_tx) |
| 45 | 43 | ||
| 44 | static int ioat_pending_level = 4; | ||
| 45 | module_param(ioat_pending_level, int, 0644); | ||
| 46 | MODULE_PARM_DESC(ioat_pending_level, | ||
| 47 | "high-water mark for pushing ioat descriptors (default: 4)"); | ||
| 48 | |||
| 46 | /* internal functions */ | 49 | /* internal functions */ |
| 47 | static void ioat_dma_start_null_desc(struct ioat_dma_chan *ioat_chan); | 50 | static void ioat_dma_start_null_desc(struct ioat_dma_chan *ioat_chan); |
| 48 | static void ioat_dma_memcpy_cleanup(struct ioat_dma_chan *ioat_chan); | 51 | static void ioat_dma_memcpy_cleanup(struct ioat_dma_chan *ioat_chan); |
| 52 | |||
| 53 | static struct ioat_desc_sw * | ||
| 54 | ioat1_dma_get_next_descriptor(struct ioat_dma_chan *ioat_chan); | ||
| 49 | static struct ioat_desc_sw * | 55 | static struct ioat_desc_sw * |
| 50 | ioat_dma_get_next_descriptor(struct ioat_dma_chan *ioat_chan); | 56 | ioat2_dma_get_next_descriptor(struct ioat_dma_chan *ioat_chan); |
| 51 | 57 | ||
| 52 | static inline struct ioat_dma_chan *ioat_lookup_chan_by_index( | 58 | static inline struct ioat_dma_chan *ioat_lookup_chan_by_index( |
| 53 | struct ioatdma_device *device, | 59 | struct ioatdma_device *device, |
| @@ -130,6 +136,12 @@ static int ioat_dma_enumerate_channels(struct ioatdma_device *device) | |||
| 130 | ioat_chan->device = device; | 136 | ioat_chan->device = device; |
| 131 | ioat_chan->reg_base = device->reg_base + (0x80 * (i + 1)); | 137 | ioat_chan->reg_base = device->reg_base + (0x80 * (i + 1)); |
| 132 | ioat_chan->xfercap = xfercap; | 138 | ioat_chan->xfercap = xfercap; |
| 139 | ioat_chan->desccount = 0; | ||
| 140 | if (ioat_chan->device->version != IOAT_VER_1_2) { | ||
| 141 | writel(IOAT_DCACTRL_CMPL_WRITE_ENABLE | ||
| 142 | | IOAT_DMA_DCA_ANY_CPU, | ||
| 143 | ioat_chan->reg_base + IOAT_DCACTRL_OFFSET); | ||
| 144 | } | ||
| 133 | spin_lock_init(&ioat_chan->cleanup_lock); | 145 | spin_lock_init(&ioat_chan->cleanup_lock); |
| 134 | spin_lock_init(&ioat_chan->desc_lock); | 146 | spin_lock_init(&ioat_chan->desc_lock); |
| 135 | INIT_LIST_HEAD(&ioat_chan->free_desc); | 147 | INIT_LIST_HEAD(&ioat_chan->free_desc); |
| @@ -161,13 +173,17 @@ static void ioat_set_dest(dma_addr_t addr, | |||
| 161 | tx_to_ioat_desc(tx)->dst = addr; | 173 | tx_to_ioat_desc(tx)->dst = addr; |
| 162 | } | 174 | } |
| 163 | 175 | ||
| 164 | static dma_cookie_t ioat_tx_submit(struct dma_async_tx_descriptor *tx) | 176 | static inline void __ioat1_dma_memcpy_issue_pending( |
| 177 | struct ioat_dma_chan *ioat_chan); | ||
| 178 | static inline void __ioat2_dma_memcpy_issue_pending( | ||
| 179 | struct ioat_dma_chan *ioat_chan); | ||
| 180 | |||
| 181 | static dma_cookie_t ioat1_tx_submit(struct dma_async_tx_descriptor *tx) | ||
| 165 | { | 182 | { |
| 166 | struct ioat_dma_chan *ioat_chan = to_ioat_chan(tx->chan); | 183 | struct ioat_dma_chan *ioat_chan = to_ioat_chan(tx->chan); |
| 167 | struct ioat_desc_sw *first = tx_to_ioat_desc(tx); | 184 | struct ioat_desc_sw *first = tx_to_ioat_desc(tx); |
| 168 | struct ioat_desc_sw *prev, *new; | 185 | struct ioat_desc_sw *prev, *new; |
| 169 | struct ioat_dma_descriptor *hw; | 186 | struct ioat_dma_descriptor *hw; |
| 170 | int append = 0; | ||
| 171 | dma_cookie_t cookie; | 187 | dma_cookie_t cookie; |
| 172 | LIST_HEAD(new_chain); | 188 | LIST_HEAD(new_chain); |
| 173 | u32 copy; | 189 | u32 copy; |
| @@ -209,7 +225,7 @@ static dma_cookie_t ioat_tx_submit(struct dma_async_tx_descriptor *tx) | |||
| 209 | list_add_tail(&new->node, &new_chain); | 225 | list_add_tail(&new->node, &new_chain); |
| 210 | desc_count++; | 226 | desc_count++; |
| 211 | prev = new; | 227 | prev = new; |
| 212 | } while (len && (new = ioat_dma_get_next_descriptor(ioat_chan))); | 228 | } while (len && (new = ioat1_dma_get_next_descriptor(ioat_chan))); |
| 213 | 229 | ||
| 214 | hw->ctl = IOAT_DMA_DESCRIPTOR_CTL_CP_STS; | 230 | hw->ctl = IOAT_DMA_DESCRIPTOR_CTL_CP_STS; |
| 215 | if (new->async_tx.callback) { | 231 | if (new->async_tx.callback) { |
| @@ -246,20 +262,98 @@ static dma_cookie_t ioat_tx_submit(struct dma_async_tx_descriptor *tx) | |||
| 246 | first->async_tx.phys; | 262 | first->async_tx.phys; |
| 247 | __list_splice(&new_chain, ioat_chan->used_desc.prev); | 263 | __list_splice(&new_chain, ioat_chan->used_desc.prev); |
| 248 | 264 | ||
| 265 | ioat_chan->dmacount += desc_count; | ||
| 249 | ioat_chan->pending += desc_count; | 266 | ioat_chan->pending += desc_count; |
| 250 | if (ioat_chan->pending >= 4) { | 267 | if (ioat_chan->pending >= ioat_pending_level) |
| 251 | append = 1; | 268 | __ioat1_dma_memcpy_issue_pending(ioat_chan); |
| 252 | ioat_chan->pending = 0; | ||
| 253 | } | ||
| 254 | spin_unlock_bh(&ioat_chan->desc_lock); | 269 | spin_unlock_bh(&ioat_chan->desc_lock); |
| 255 | 270 | ||
| 256 | if (append) | 271 | return cookie; |
| 257 | writeb(IOAT_CHANCMD_APPEND, | 272 | } |
| 258 | ioat_chan->reg_base + IOAT_CHANCMD_OFFSET); | 273 | |
| 274 | static dma_cookie_t ioat2_tx_submit(struct dma_async_tx_descriptor *tx) | ||
| 275 | { | ||
| 276 | struct ioat_dma_chan *ioat_chan = to_ioat_chan(tx->chan); | ||
| 277 | struct ioat_desc_sw *first = tx_to_ioat_desc(tx); | ||
| 278 | struct ioat_desc_sw *new; | ||
| 279 | struct ioat_dma_descriptor *hw; | ||
| 280 | dma_cookie_t cookie; | ||
| 281 | u32 copy; | ||
| 282 | size_t len; | ||
| 283 | dma_addr_t src, dst; | ||
| 284 | int orig_ack; | ||
| 285 | unsigned int desc_count = 0; | ||
| 286 | |||
| 287 | /* src and dest and len are stored in the initial descriptor */ | ||
| 288 | len = first->len; | ||
| 289 | src = first->src; | ||
| 290 | dst = first->dst; | ||
| 291 | orig_ack = first->async_tx.ack; | ||
| 292 | new = first; | ||
| 293 | |||
| 294 | /* ioat_chan->desc_lock is still in force in version 2 path */ | ||
| 295 | |||
| 296 | do { | ||
| 297 | copy = min((u32) len, ioat_chan->xfercap); | ||
| 298 | |||
| 299 | new->async_tx.ack = 1; | ||
| 300 | |||
| 301 | hw = new->hw; | ||
| 302 | hw->size = copy; | ||
| 303 | hw->ctl = 0; | ||
| 304 | hw->src_addr = src; | ||
| 305 | hw->dst_addr = dst; | ||
| 306 | |||
| 307 | len -= copy; | ||
| 308 | dst += copy; | ||
| 309 | src += copy; | ||
| 310 | desc_count++; | ||
| 311 | } while (len && (new = ioat2_dma_get_next_descriptor(ioat_chan))); | ||
| 312 | |||
| 313 | hw->ctl = IOAT_DMA_DESCRIPTOR_CTL_CP_STS; | ||
| 314 | if (new->async_tx.callback) { | ||
| 315 | hw->ctl |= IOAT_DMA_DESCRIPTOR_CTL_INT_GN; | ||
| 316 | if (first != new) { | ||
| 317 | /* move callback into to last desc */ | ||
| 318 | new->async_tx.callback = first->async_tx.callback; | ||
| 319 | new->async_tx.callback_param | ||
| 320 | = first->async_tx.callback_param; | ||
| 321 | first->async_tx.callback = NULL; | ||
| 322 | first->async_tx.callback_param = NULL; | ||
| 323 | } | ||
| 324 | } | ||
| 325 | |||
| 326 | new->tx_cnt = desc_count; | ||
| 327 | new->async_tx.ack = orig_ack; /* client is in control of this ack */ | ||
| 328 | |||
| 329 | /* store the original values for use in later cleanup */ | ||
| 330 | if (new != first) { | ||
| 331 | new->src = first->src; | ||
| 332 | new->dst = first->dst; | ||
| 333 | new->len = first->len; | ||
| 334 | } | ||
| 335 | |||
| 336 | /* cookie incr and addition to used_list must be atomic */ | ||
| 337 | cookie = ioat_chan->common.cookie; | ||
| 338 | cookie++; | ||
| 339 | if (cookie < 0) | ||
| 340 | cookie = 1; | ||
| 341 | ioat_chan->common.cookie = new->async_tx.cookie = cookie; | ||
| 342 | |||
| 343 | ioat_chan->dmacount += desc_count; | ||
| 344 | ioat_chan->pending += desc_count; | ||
| 345 | if (ioat_chan->pending >= ioat_pending_level) | ||
| 346 | __ioat2_dma_memcpy_issue_pending(ioat_chan); | ||
| 347 | spin_unlock_bh(&ioat_chan->desc_lock); | ||
| 259 | 348 | ||
| 260 | return cookie; | 349 | return cookie; |
| 261 | } | 350 | } |
| 262 | 351 | ||
| 352 | /** | ||
| 353 | * ioat_dma_alloc_descriptor - allocate and return a sw and hw descriptor pair | ||
| 354 | * @ioat_chan: the channel supplying the memory pool for the descriptors | ||
| 355 | * @flags: allocation flags | ||
| 356 | */ | ||
| 263 | static struct ioat_desc_sw *ioat_dma_alloc_descriptor( | 357 | static struct ioat_desc_sw *ioat_dma_alloc_descriptor( |
| 264 | struct ioat_dma_chan *ioat_chan, | 358 | struct ioat_dma_chan *ioat_chan, |
| 265 | gfp_t flags) | 359 | gfp_t flags) |
| @@ -284,15 +378,57 @@ static struct ioat_desc_sw *ioat_dma_alloc_descriptor( | |||
| 284 | dma_async_tx_descriptor_init(&desc_sw->async_tx, &ioat_chan->common); | 378 | dma_async_tx_descriptor_init(&desc_sw->async_tx, &ioat_chan->common); |
| 285 | desc_sw->async_tx.tx_set_src = ioat_set_src; | 379 | desc_sw->async_tx.tx_set_src = ioat_set_src; |
| 286 | desc_sw->async_tx.tx_set_dest = ioat_set_dest; | 380 | desc_sw->async_tx.tx_set_dest = ioat_set_dest; |
| 287 | desc_sw->async_tx.tx_submit = ioat_tx_submit; | 381 | switch (ioat_chan->device->version) { |
| 382 | case IOAT_VER_1_2: | ||
| 383 | desc_sw->async_tx.tx_submit = ioat1_tx_submit; | ||
| 384 | break; | ||
| 385 | case IOAT_VER_2_0: | ||
| 386 | desc_sw->async_tx.tx_submit = ioat2_tx_submit; | ||
| 387 | break; | ||
| 388 | } | ||
| 288 | INIT_LIST_HEAD(&desc_sw->async_tx.tx_list); | 389 | INIT_LIST_HEAD(&desc_sw->async_tx.tx_list); |
| 390 | |||
| 289 | desc_sw->hw = desc; | 391 | desc_sw->hw = desc; |
| 290 | desc_sw->async_tx.phys = phys; | 392 | desc_sw->async_tx.phys = phys; |
| 291 | 393 | ||
| 292 | return desc_sw; | 394 | return desc_sw; |
| 293 | } | 395 | } |
| 294 | 396 | ||
| 295 | /* returns the actual number of allocated descriptors */ | 397 | static int ioat_initial_desc_count = 256; |
| 398 | module_param(ioat_initial_desc_count, int, 0644); | ||
| 399 | MODULE_PARM_DESC(ioat_initial_desc_count, | ||
| 400 | "initial descriptors per channel (default: 256)"); | ||
| 401 | |||
| 402 | /** | ||
| 403 | * ioat2_dma_massage_chan_desc - link the descriptors into a circle | ||
| 404 | * @ioat_chan: the channel to be massaged | ||
| 405 | */ | ||
| 406 | static void ioat2_dma_massage_chan_desc(struct ioat_dma_chan *ioat_chan) | ||
| 407 | { | ||
| 408 | struct ioat_desc_sw *desc, *_desc; | ||
| 409 | |||
| 410 | /* setup used_desc */ | ||
| 411 | ioat_chan->used_desc.next = ioat_chan->free_desc.next; | ||
| 412 | ioat_chan->used_desc.prev = NULL; | ||
| 413 | |||
| 414 | /* pull free_desc out of the circle so that every node is a hw | ||
| 415 | * descriptor, but leave it pointing to the list | ||
| 416 | */ | ||
| 417 | ioat_chan->free_desc.prev->next = ioat_chan->free_desc.next; | ||
| 418 | ioat_chan->free_desc.next->prev = ioat_chan->free_desc.prev; | ||
| 419 | |||
| 420 | /* circle link the hw descriptors */ | ||
| 421 | desc = to_ioat_desc(ioat_chan->free_desc.next); | ||
| 422 | desc->hw->next = to_ioat_desc(desc->node.next)->async_tx.phys; | ||
| 423 | list_for_each_entry_safe(desc, _desc, ioat_chan->free_desc.next, node) { | ||
| 424 | desc->hw->next = to_ioat_desc(desc->node.next)->async_tx.phys; | ||
| 425 | } | ||
| 426 | } | ||
| 427 | |||
| 428 | /** | ||
| 429 | * ioat_dma_alloc_chan_resources - returns the number of allocated descriptors | ||
| 430 | * @chan: the channel to be filled out | ||
| 431 | */ | ||
| 296 | static int ioat_dma_alloc_chan_resources(struct dma_chan *chan) | 432 | static int ioat_dma_alloc_chan_resources(struct dma_chan *chan) |
| 297 | { | 433 | { |
| 298 | struct ioat_dma_chan *ioat_chan = to_ioat_chan(chan); | 434 | struct ioat_dma_chan *ioat_chan = to_ioat_chan(chan); |
| @@ -304,7 +440,7 @@ static int ioat_dma_alloc_chan_resources(struct dma_chan *chan) | |||
| 304 | 440 | ||
| 305 | /* have we already been set up? */ | 441 | /* have we already been set up? */ |
| 306 | if (!list_empty(&ioat_chan->free_desc)) | 442 | if (!list_empty(&ioat_chan->free_desc)) |
| 307 | return INITIAL_IOAT_DESC_COUNT; | 443 | return ioat_chan->desccount; |
| 308 | 444 | ||
| 309 | /* Setup register to interrupt and write completion status on error */ | 445 | /* Setup register to interrupt and write completion status on error */ |
| 310 | chanctrl = IOAT_CHANCTRL_ERR_INT_EN | | 446 | chanctrl = IOAT_CHANCTRL_ERR_INT_EN | |
| @@ -320,7 +456,7 @@ static int ioat_dma_alloc_chan_resources(struct dma_chan *chan) | |||
| 320 | } | 456 | } |
| 321 | 457 | ||
| 322 | /* Allocate descriptors */ | 458 | /* Allocate descriptors */ |
| 323 | for (i = 0; i < INITIAL_IOAT_DESC_COUNT; i++) { | 459 | for (i = 0; i < ioat_initial_desc_count; i++) { |
| 324 | desc = ioat_dma_alloc_descriptor(ioat_chan, GFP_KERNEL); | 460 | desc = ioat_dma_alloc_descriptor(ioat_chan, GFP_KERNEL); |
| 325 | if (!desc) { | 461 | if (!desc) { |
| 326 | dev_err(&ioat_chan->device->pdev->dev, | 462 | dev_err(&ioat_chan->device->pdev->dev, |
| @@ -330,7 +466,10 @@ static int ioat_dma_alloc_chan_resources(struct dma_chan *chan) | |||
| 330 | list_add_tail(&desc->node, &tmp_list); | 466 | list_add_tail(&desc->node, &tmp_list); |
| 331 | } | 467 | } |
| 332 | spin_lock_bh(&ioat_chan->desc_lock); | 468 | spin_lock_bh(&ioat_chan->desc_lock); |
| 469 | ioat_chan->desccount = i; | ||
| 333 | list_splice(&tmp_list, &ioat_chan->free_desc); | 470 | list_splice(&tmp_list, &ioat_chan->free_desc); |
| 471 | if (ioat_chan->device->version != IOAT_VER_1_2) | ||
| 472 | ioat2_dma_massage_chan_desc(ioat_chan); | ||
| 334 | spin_unlock_bh(&ioat_chan->desc_lock); | 473 | spin_unlock_bh(&ioat_chan->desc_lock); |
| 335 | 474 | ||
| 336 | /* allocate a completion writeback area */ | 475 | /* allocate a completion writeback area */ |
| @@ -347,10 +486,14 @@ static int ioat_dma_alloc_chan_resources(struct dma_chan *chan) | |||
| 347 | ioat_chan->reg_base + IOAT_CHANCMP_OFFSET_HIGH); | 486 | ioat_chan->reg_base + IOAT_CHANCMP_OFFSET_HIGH); |
| 348 | 487 | ||
| 349 | tasklet_enable(&ioat_chan->cleanup_task); | 488 | tasklet_enable(&ioat_chan->cleanup_task); |
| 350 | ioat_dma_start_null_desc(ioat_chan); | 489 | ioat_dma_start_null_desc(ioat_chan); /* give chain to dma device */ |
| 351 | return i; | 490 | return ioat_chan->desccount; |
| 352 | } | 491 | } |
| 353 | 492 | ||
| 493 | /** | ||
| 494 | * ioat_dma_free_chan_resources - release all the descriptors | ||
| 495 | * @chan: the channel to be cleaned | ||
| 496 | */ | ||
| 354 | static void ioat_dma_free_chan_resources(struct dma_chan *chan) | 497 | static void ioat_dma_free_chan_resources(struct dma_chan *chan) |
| 355 | { | 498 | { |
| 356 | struct ioat_dma_chan *ioat_chan = to_ioat_chan(chan); | 499 | struct ioat_dma_chan *ioat_chan = to_ioat_chan(chan); |
| @@ -364,22 +507,45 @@ static void ioat_dma_free_chan_resources(struct dma_chan *chan) | |||
| 364 | /* Delay 100ms after reset to allow internal DMA logic to quiesce | 507 | /* Delay 100ms after reset to allow internal DMA logic to quiesce |
| 365 | * before removing DMA descriptor resources. | 508 | * before removing DMA descriptor resources. |
| 366 | */ | 509 | */ |
| 367 | writeb(IOAT_CHANCMD_RESET, ioat_chan->reg_base + IOAT_CHANCMD_OFFSET); | 510 | writeb(IOAT_CHANCMD_RESET, |
| 511 | ioat_chan->reg_base | ||
| 512 | + IOAT_CHANCMD_OFFSET(ioat_chan->device->version)); | ||
| 368 | mdelay(100); | 513 | mdelay(100); |
| 369 | 514 | ||
| 370 | spin_lock_bh(&ioat_chan->desc_lock); | 515 | spin_lock_bh(&ioat_chan->desc_lock); |
| 371 | list_for_each_entry_safe(desc, _desc, &ioat_chan->used_desc, node) { | 516 | switch (ioat_chan->device->version) { |
| 372 | in_use_descs++; | 517 | case IOAT_VER_1_2: |
| 373 | list_del(&desc->node); | 518 | list_for_each_entry_safe(desc, _desc, |
| 374 | pci_pool_free(ioatdma_device->dma_pool, desc->hw, | 519 | &ioat_chan->used_desc, node) { |
| 375 | desc->async_tx.phys); | 520 | in_use_descs++; |
| 376 | kfree(desc); | 521 | list_del(&desc->node); |
| 377 | } | 522 | pci_pool_free(ioatdma_device->dma_pool, desc->hw, |
| 378 | list_for_each_entry_safe(desc, _desc, &ioat_chan->free_desc, node) { | 523 | desc->async_tx.phys); |
| 379 | list_del(&desc->node); | 524 | kfree(desc); |
| 525 | } | ||
| 526 | list_for_each_entry_safe(desc, _desc, | ||
| 527 | &ioat_chan->free_desc, node) { | ||
| 528 | list_del(&desc->node); | ||
| 529 | pci_pool_free(ioatdma_device->dma_pool, desc->hw, | ||
| 530 | desc->async_tx.phys); | ||
| 531 | kfree(desc); | ||
| 532 | } | ||
| 533 | break; | ||
| 534 | case IOAT_VER_2_0: | ||
| 535 | list_for_each_entry_safe(desc, _desc, | ||
| 536 | ioat_chan->free_desc.next, node) { | ||
| 537 | list_del(&desc->node); | ||
| 538 | pci_pool_free(ioatdma_device->dma_pool, desc->hw, | ||
| 539 | desc->async_tx.phys); | ||
| 540 | kfree(desc); | ||
| 541 | } | ||
| 542 | desc = to_ioat_desc(ioat_chan->free_desc.next); | ||
| 380 | pci_pool_free(ioatdma_device->dma_pool, desc->hw, | 543 | pci_pool_free(ioatdma_device->dma_pool, desc->hw, |
| 381 | desc->async_tx.phys); | 544 | desc->async_tx.phys); |
| 382 | kfree(desc); | 545 | kfree(desc); |
| 546 | INIT_LIST_HEAD(&ioat_chan->free_desc); | ||
| 547 | INIT_LIST_HEAD(&ioat_chan->used_desc); | ||
| 548 | break; | ||
| 383 | } | 549 | } |
| 384 | spin_unlock_bh(&ioat_chan->desc_lock); | 550 | spin_unlock_bh(&ioat_chan->desc_lock); |
| 385 | 551 | ||
| @@ -395,6 +561,7 @@ static void ioat_dma_free_chan_resources(struct dma_chan *chan) | |||
| 395 | 561 | ||
| 396 | ioat_chan->last_completion = ioat_chan->completion_addr = 0; | 562 | ioat_chan->last_completion = ioat_chan->completion_addr = 0; |
| 397 | ioat_chan->pending = 0; | 563 | ioat_chan->pending = 0; |
| 564 | ioat_chan->dmacount = 0; | ||
| 398 | } | 565 | } |
| 399 | 566 | ||
| 400 | /** | 567 | /** |
| @@ -406,7 +573,7 @@ static void ioat_dma_free_chan_resources(struct dma_chan *chan) | |||
| 406 | * has run out. | 573 | * has run out. |
| 407 | */ | 574 | */ |
| 408 | static struct ioat_desc_sw * | 575 | static struct ioat_desc_sw * |
| 409 | ioat_dma_get_next_descriptor(struct ioat_dma_chan *ioat_chan) | 576 | ioat1_dma_get_next_descriptor(struct ioat_dma_chan *ioat_chan) |
| 410 | { | 577 | { |
| 411 | struct ioat_desc_sw *new = NULL; | 578 | struct ioat_desc_sw *new = NULL; |
| 412 | 579 | ||
| @@ -425,7 +592,82 @@ ioat_dma_get_next_descriptor(struct ioat_dma_chan *ioat_chan) | |||
| 425 | return new; | 592 | return new; |
| 426 | } | 593 | } |
| 427 | 594 | ||
| 428 | static struct dma_async_tx_descriptor *ioat_dma_prep_memcpy( | 595 | static struct ioat_desc_sw * |
| 596 | ioat2_dma_get_next_descriptor(struct ioat_dma_chan *ioat_chan) | ||
| 597 | { | ||
| 598 | struct ioat_desc_sw *new = NULL; | ||
| 599 | |||
| 600 | /* | ||
| 601 | * used.prev points to where to start processing | ||
| 602 | * used.next points to next free descriptor | ||
| 603 | * if used.prev == NULL, there are none waiting to be processed | ||
| 604 | * if used.next == used.prev.prev, there is only one free descriptor, | ||
| 605 | * and we need to use it to as a noop descriptor before | ||
| 606 | * linking in a new set of descriptors, since the device | ||
| 607 | * has probably already read the pointer to it | ||
| 608 | */ | ||
| 609 | if (ioat_chan->used_desc.prev && | ||
| 610 | ioat_chan->used_desc.next == ioat_chan->used_desc.prev->prev) { | ||
| 611 | |||
| 612 | struct ioat_desc_sw *desc = NULL; | ||
| 613 | struct ioat_desc_sw *noop_desc = NULL; | ||
| 614 | int i; | ||
| 615 | |||
| 616 | /* set up the noop descriptor */ | ||
| 617 | noop_desc = to_ioat_desc(ioat_chan->used_desc.next); | ||
| 618 | noop_desc->hw->size = 0; | ||
| 619 | noop_desc->hw->ctl = IOAT_DMA_DESCRIPTOR_NUL; | ||
| 620 | noop_desc->hw->src_addr = 0; | ||
| 621 | noop_desc->hw->dst_addr = 0; | ||
| 622 | |||
| 623 | ioat_chan->used_desc.next = ioat_chan->used_desc.next->next; | ||
| 624 | ioat_chan->pending++; | ||
| 625 | ioat_chan->dmacount++; | ||
| 626 | |||
| 627 | /* get a few more descriptors */ | ||
| 628 | for (i = 16; i; i--) { | ||
| 629 | desc = ioat_dma_alloc_descriptor(ioat_chan, GFP_ATOMIC); | ||
| 630 | BUG_ON(!desc); | ||
| 631 | list_add_tail(&desc->node, ioat_chan->used_desc.next); | ||
| 632 | |||
| 633 | desc->hw->next | ||
| 634 | = to_ioat_desc(desc->node.next)->async_tx.phys; | ||
| 635 | to_ioat_desc(desc->node.prev)->hw->next | ||
| 636 | = desc->async_tx.phys; | ||
| 637 | ioat_chan->desccount++; | ||
| 638 | } | ||
| 639 | |||
| 640 | ioat_chan->used_desc.next = noop_desc->node.next; | ||
| 641 | } | ||
| 642 | new = to_ioat_desc(ioat_chan->used_desc.next); | ||
| 643 | prefetch(new); | ||
| 644 | ioat_chan->used_desc.next = new->node.next; | ||
| 645 | |||
| 646 | if (ioat_chan->used_desc.prev == NULL) | ||
| 647 | ioat_chan->used_desc.prev = &new->node; | ||
| 648 | |||
| 649 | prefetch(new->hw); | ||
| 650 | return new; | ||
| 651 | } | ||
| 652 | |||
| 653 | static struct ioat_desc_sw *ioat_dma_get_next_descriptor( | ||
| 654 | struct ioat_dma_chan *ioat_chan) | ||
| 655 | { | ||
| 656 | if (!ioat_chan) | ||
| 657 | return NULL; | ||
| 658 | |||
| 659 | switch (ioat_chan->device->version) { | ||
| 660 | case IOAT_VER_1_2: | ||
| 661 | return ioat1_dma_get_next_descriptor(ioat_chan); | ||
| 662 | break; | ||
| 663 | case IOAT_VER_2_0: | ||
| 664 | return ioat2_dma_get_next_descriptor(ioat_chan); | ||
| 665 | break; | ||
| 666 | } | ||
| 667 | return NULL; | ||
| 668 | } | ||
| 669 | |||
| 670 | static struct dma_async_tx_descriptor *ioat1_dma_prep_memcpy( | ||
| 429 | struct dma_chan *chan, | 671 | struct dma_chan *chan, |
| 430 | size_t len, | 672 | size_t len, |
| 431 | int int_en) | 673 | int int_en) |
| @@ -441,19 +683,62 @@ static struct dma_async_tx_descriptor *ioat_dma_prep_memcpy( | |||
| 441 | return new ? &new->async_tx : NULL; | 683 | return new ? &new->async_tx : NULL; |
| 442 | } | 684 | } |
| 443 | 685 | ||
| 686 | static struct dma_async_tx_descriptor *ioat2_dma_prep_memcpy( | ||
| 687 | struct dma_chan *chan, | ||
| 688 | size_t len, | ||
| 689 | int int_en) | ||
| 690 | { | ||
| 691 | struct ioat_dma_chan *ioat_chan = to_ioat_chan(chan); | ||
| 692 | struct ioat_desc_sw *new; | ||
| 693 | |||
| 694 | spin_lock_bh(&ioat_chan->desc_lock); | ||
| 695 | new = ioat2_dma_get_next_descriptor(ioat_chan); | ||
| 696 | new->len = len; | ||
| 697 | |||
| 698 | /* leave ioat_chan->desc_lock set in version 2 path */ | ||
| 699 | return new ? &new->async_tx : NULL; | ||
| 700 | } | ||
| 701 | |||
| 702 | |||
| 444 | /** | 703 | /** |
| 445 | * ioat_dma_memcpy_issue_pending - push potentially unrecognized appended | 704 | * ioat_dma_memcpy_issue_pending - push potentially unrecognized appended |
| 446 | * descriptors to hw | 705 | * descriptors to hw |
| 447 | * @chan: DMA channel handle | 706 | * @chan: DMA channel handle |
| 448 | */ | 707 | */ |
| 449 | static void ioat_dma_memcpy_issue_pending(struct dma_chan *chan) | 708 | static inline void __ioat1_dma_memcpy_issue_pending( |
| 709 | struct ioat_dma_chan *ioat_chan) | ||
| 710 | { | ||
| 711 | ioat_chan->pending = 0; | ||
| 712 | writeb(IOAT_CHANCMD_APPEND, ioat_chan->reg_base + IOAT1_CHANCMD_OFFSET); | ||
| 713 | } | ||
| 714 | |||
| 715 | static void ioat1_dma_memcpy_issue_pending(struct dma_chan *chan) | ||
| 450 | { | 716 | { |
| 451 | struct ioat_dma_chan *ioat_chan = to_ioat_chan(chan); | 717 | struct ioat_dma_chan *ioat_chan = to_ioat_chan(chan); |
| 452 | 718 | ||
| 453 | if (ioat_chan->pending != 0) { | 719 | if (ioat_chan->pending != 0) { |
| 454 | ioat_chan->pending = 0; | 720 | spin_lock_bh(&ioat_chan->desc_lock); |
| 455 | writeb(IOAT_CHANCMD_APPEND, | 721 | __ioat1_dma_memcpy_issue_pending(ioat_chan); |
| 456 | ioat_chan->reg_base + IOAT_CHANCMD_OFFSET); | 722 | spin_unlock_bh(&ioat_chan->desc_lock); |
| 723 | } | ||
| 724 | } | ||
| 725 | |||
| 726 | static inline void __ioat2_dma_memcpy_issue_pending( | ||
| 727 | struct ioat_dma_chan *ioat_chan) | ||
| 728 | { | ||
| 729 | ioat_chan->pending = 0; | ||
| 730 | writew(ioat_chan->dmacount, | ||
| 731 | ioat_chan->reg_base + IOAT_CHAN_DMACOUNT_OFFSET); | ||
| 732 | } | ||
| 733 | |||
| 734 | static void ioat2_dma_memcpy_issue_pending(struct dma_chan *chan) | ||
| 735 | { | ||
| 736 | struct ioat_dma_chan *ioat_chan = to_ioat_chan(chan); | ||
| 737 | |||
| 738 | if (ioat_chan->pending != 0) { | ||
| 739 | spin_lock_bh(&ioat_chan->desc_lock); | ||
| 740 | __ioat2_dma_memcpy_issue_pending(ioat_chan); | ||
| 741 | spin_unlock_bh(&ioat_chan->desc_lock); | ||
| 457 | } | 742 | } |
| 458 | } | 743 | } |
| 459 | 744 | ||
| @@ -465,11 +750,17 @@ static void ioat_dma_cleanup_tasklet(unsigned long data) | |||
| 465 | chan->reg_base + IOAT_CHANCTRL_OFFSET); | 750 | chan->reg_base + IOAT_CHANCTRL_OFFSET); |
| 466 | } | 751 | } |
| 467 | 752 | ||
| 753 | /** | ||
| 754 | * ioat_dma_memcpy_cleanup - cleanup up finished descriptors | ||
| 755 | * @chan: ioat channel to be cleaned up | ||
| 756 | */ | ||
| 468 | static void ioat_dma_memcpy_cleanup(struct ioat_dma_chan *ioat_chan) | 757 | static void ioat_dma_memcpy_cleanup(struct ioat_dma_chan *ioat_chan) |
| 469 | { | 758 | { |
| 470 | unsigned long phys_complete; | 759 | unsigned long phys_complete; |
| 471 | struct ioat_desc_sw *desc, *_desc; | 760 | struct ioat_desc_sw *desc, *_desc; |
| 472 | dma_cookie_t cookie = 0; | 761 | dma_cookie_t cookie = 0; |
| 762 | unsigned long desc_phys; | ||
| 763 | struct ioat_desc_sw *latest_desc; | ||
| 473 | 764 | ||
| 474 | prefetch(ioat_chan->completion_virt); | 765 | prefetch(ioat_chan->completion_virt); |
| 475 | 766 | ||
| @@ -507,56 +798,115 @@ static void ioat_dma_memcpy_cleanup(struct ioat_dma_chan *ioat_chan) | |||
| 507 | 798 | ||
| 508 | cookie = 0; | 799 | cookie = 0; |
| 509 | spin_lock_bh(&ioat_chan->desc_lock); | 800 | spin_lock_bh(&ioat_chan->desc_lock); |
| 510 | list_for_each_entry_safe(desc, _desc, &ioat_chan->used_desc, node) { | 801 | switch (ioat_chan->device->version) { |
| 511 | 802 | case IOAT_VER_1_2: | |
| 512 | /* | 803 | list_for_each_entry_safe(desc, _desc, |
| 513 | * Incoming DMA requests may use multiple descriptors, due to | 804 | &ioat_chan->used_desc, node) { |
| 514 | * exceeding xfercap, perhaps. If so, only the last one will | ||
| 515 | * have a cookie, and require unmapping. | ||
| 516 | */ | ||
| 517 | if (desc->async_tx.cookie) { | ||
| 518 | cookie = desc->async_tx.cookie; | ||
| 519 | 805 | ||
| 520 | /* | 806 | /* |
| 521 | * yes we are unmapping both _page and _single alloc'd | 807 | * Incoming DMA requests may use multiple descriptors, |
| 522 | * regions with unmap_page. Is this *really* that bad? | 808 | * due to exceeding xfercap, perhaps. If so, only the |
| 809 | * last one will have a cookie, and require unmapping. | ||
| 523 | */ | 810 | */ |
| 524 | pci_unmap_page(ioat_chan->device->pdev, | 811 | if (desc->async_tx.cookie) { |
| 525 | pci_unmap_addr(desc, dst), | 812 | cookie = desc->async_tx.cookie; |
| 526 | pci_unmap_len(desc, len), | 813 | |
| 527 | PCI_DMA_FROMDEVICE); | 814 | /* |
| 528 | pci_unmap_page(ioat_chan->device->pdev, | 815 | * yes we are unmapping both _page and _single |
| 529 | pci_unmap_addr(desc, src), | 816 | * alloc'd regions with unmap_page. Is this |
| 530 | pci_unmap_len(desc, len), | 817 | * *really* that bad? |
| 531 | PCI_DMA_TODEVICE); | 818 | */ |
| 532 | if (desc->async_tx.callback) { | 819 | pci_unmap_page(ioat_chan->device->pdev, |
| 533 | desc->async_tx.callback( | 820 | pci_unmap_addr(desc, dst), |
| 534 | desc->async_tx.callback_param); | 821 | pci_unmap_len(desc, len), |
| 535 | desc->async_tx.callback = NULL; | 822 | PCI_DMA_FROMDEVICE); |
| 823 | pci_unmap_page(ioat_chan->device->pdev, | ||
| 824 | pci_unmap_addr(desc, src), | ||
| 825 | pci_unmap_len(desc, len), | ||
| 826 | PCI_DMA_TODEVICE); | ||
| 827 | |||
| 828 | if (desc->async_tx.callback) { | ||
| 829 | desc->async_tx.callback(desc->async_tx.callback_param); | ||
| 830 | desc->async_tx.callback = NULL; | ||
| 831 | } | ||
| 536 | } | 832 | } |
| 537 | } | ||
| 538 | 833 | ||
| 539 | if (desc->async_tx.phys != phys_complete) { | 834 | if (desc->async_tx.phys != phys_complete) { |
| 540 | /* | 835 | /* |
| 541 | * a completed entry, but not the last, so cleanup | 836 | * a completed entry, but not the last, so clean |
| 542 | * if the client is done with the descriptor | 837 | * up if the client is done with the descriptor |
| 543 | */ | 838 | */ |
| 544 | if (desc->async_tx.ack) { | 839 | if (desc->async_tx.ack) { |
| 545 | list_del(&desc->node); | 840 | list_del(&desc->node); |
| 546 | list_add_tail(&desc->node, | 841 | list_add_tail(&desc->node, |
| 547 | &ioat_chan->free_desc); | 842 | &ioat_chan->free_desc); |
| 548 | } else | 843 | } else |
| 844 | desc->async_tx.cookie = 0; | ||
| 845 | } else { | ||
| 846 | /* | ||
| 847 | * last used desc. Do not remove, so we can | ||
| 848 | * append from it, but don't look at it next | ||
| 849 | * time, either | ||
| 850 | */ | ||
| 549 | desc->async_tx.cookie = 0; | 851 | desc->async_tx.cookie = 0; |
| 550 | } else { | ||
| 551 | /* | ||
| 552 | * last used desc. Do not remove, so we can append from | ||
| 553 | * it, but don't look at it next time, either | ||
| 554 | */ | ||
| 555 | desc->async_tx.cookie = 0; | ||
| 556 | 852 | ||
| 557 | /* TODO check status bits? */ | 853 | /* TODO check status bits? */ |
| 854 | break; | ||
| 855 | } | ||
| 856 | } | ||
| 857 | break; | ||
| 858 | case IOAT_VER_2_0: | ||
| 859 | /* has some other thread has already cleaned up? */ | ||
| 860 | if (ioat_chan->used_desc.prev == NULL) | ||
| 558 | break; | 861 | break; |
| 862 | |||
| 863 | /* work backwards to find latest finished desc */ | ||
| 864 | desc = to_ioat_desc(ioat_chan->used_desc.next); | ||
| 865 | latest_desc = NULL; | ||
| 866 | do { | ||
| 867 | desc = to_ioat_desc(desc->node.prev); | ||
| 868 | desc_phys = (unsigned long)desc->async_tx.phys | ||
| 869 | & IOAT_CHANSTS_COMPLETED_DESCRIPTOR_ADDR; | ||
| 870 | if (desc_phys == phys_complete) { | ||
| 871 | latest_desc = desc; | ||
| 872 | break; | ||
| 873 | } | ||
| 874 | } while (&desc->node != ioat_chan->used_desc.prev); | ||
| 875 | |||
| 876 | if (latest_desc != NULL) { | ||
| 877 | |||
| 878 | /* work forwards to clear finished descriptors */ | ||
| 879 | for (desc = to_ioat_desc(ioat_chan->used_desc.prev); | ||
| 880 | &desc->node != latest_desc->node.next && | ||
| 881 | &desc->node != ioat_chan->used_desc.next; | ||
| 882 | desc = to_ioat_desc(desc->node.next)) { | ||
| 883 | if (desc->async_tx.cookie) { | ||
| 884 | cookie = desc->async_tx.cookie; | ||
| 885 | desc->async_tx.cookie = 0; | ||
| 886 | |||
| 887 | pci_unmap_page(ioat_chan->device->pdev, | ||
| 888 | pci_unmap_addr(desc, dst), | ||
| 889 | pci_unmap_len(desc, len), | ||
| 890 | PCI_DMA_FROMDEVICE); | ||
| 891 | pci_unmap_page(ioat_chan->device->pdev, | ||
| 892 | pci_unmap_addr(desc, src), | ||
| 893 | pci_unmap_len(desc, len), | ||
| 894 | PCI_DMA_TODEVICE); | ||
| 895 | |||
| 896 | if (desc->async_tx.callback) { | ||
| 897 | desc->async_tx.callback(desc->async_tx.callback_param); | ||
| 898 | desc->async_tx.callback = NULL; | ||
| 899 | } | ||
| 900 | } | ||
| 901 | } | ||
| 902 | |||
| 903 | /* move used.prev up beyond those that are finished */ | ||
| 904 | if (&desc->node == ioat_chan->used_desc.next) | ||
| 905 | ioat_chan->used_desc.prev = NULL; | ||
| 906 | else | ||
| 907 | ioat_chan->used_desc.prev = &desc->node; | ||
| 559 | } | 908 | } |
| 909 | break; | ||
| 560 | } | 910 | } |
| 561 | 911 | ||
| 562 | spin_unlock_bh(&ioat_chan->desc_lock); | 912 | spin_unlock_bh(&ioat_chan->desc_lock); |
| @@ -621,8 +971,6 @@ static enum dma_status ioat_dma_is_complete(struct dma_chan *chan, | |||
| 621 | return dma_async_is_complete(cookie, last_complete, last_used); | 971 | return dma_async_is_complete(cookie, last_complete, last_used); |
| 622 | } | 972 | } |
| 623 | 973 | ||
| 624 | /* PCI API */ | ||
| 625 | |||
| 626 | static void ioat_dma_start_null_desc(struct ioat_dma_chan *ioat_chan) | 974 | static void ioat_dma_start_null_desc(struct ioat_dma_chan *ioat_chan) |
| 627 | { | 975 | { |
| 628 | struct ioat_desc_sw *desc; | 976 | struct ioat_desc_sw *desc; |
| @@ -633,21 +981,34 @@ static void ioat_dma_start_null_desc(struct ioat_dma_chan *ioat_chan) | |||
| 633 | desc->hw->ctl = IOAT_DMA_DESCRIPTOR_NUL | 981 | desc->hw->ctl = IOAT_DMA_DESCRIPTOR_NUL |
| 634 | | IOAT_DMA_DESCRIPTOR_CTL_INT_GN | 982 | | IOAT_DMA_DESCRIPTOR_CTL_INT_GN |
| 635 | | IOAT_DMA_DESCRIPTOR_CTL_CP_STS; | 983 | | IOAT_DMA_DESCRIPTOR_CTL_CP_STS; |
| 636 | desc->hw->next = 0; | ||
| 637 | desc->hw->size = 0; | 984 | desc->hw->size = 0; |
| 638 | desc->hw->src_addr = 0; | 985 | desc->hw->src_addr = 0; |
| 639 | desc->hw->dst_addr = 0; | 986 | desc->hw->dst_addr = 0; |
| 640 | desc->async_tx.ack = 1; | 987 | desc->async_tx.ack = 1; |
| 641 | 988 | switch (ioat_chan->device->version) { | |
| 642 | list_add_tail(&desc->node, &ioat_chan->used_desc); | 989 | case IOAT_VER_1_2: |
| 990 | desc->hw->next = 0; | ||
| 991 | list_add_tail(&desc->node, &ioat_chan->used_desc); | ||
| 992 | |||
| 993 | writel(((u64) desc->async_tx.phys) & 0x00000000FFFFFFFF, | ||
| 994 | ioat_chan->reg_base + IOAT1_CHAINADDR_OFFSET_LOW); | ||
| 995 | writel(((u64) desc->async_tx.phys) >> 32, | ||
| 996 | ioat_chan->reg_base + IOAT1_CHAINADDR_OFFSET_HIGH); | ||
| 997 | |||
| 998 | writeb(IOAT_CHANCMD_START, ioat_chan->reg_base | ||
| 999 | + IOAT_CHANCMD_OFFSET(ioat_chan->device->version)); | ||
| 1000 | break; | ||
| 1001 | case IOAT_VER_2_0: | ||
| 1002 | writel(((u64) desc->async_tx.phys) & 0x00000000FFFFFFFF, | ||
| 1003 | ioat_chan->reg_base + IOAT2_CHAINADDR_OFFSET_LOW); | ||
| 1004 | writel(((u64) desc->async_tx.phys) >> 32, | ||
| 1005 | ioat_chan->reg_base + IOAT2_CHAINADDR_OFFSET_HIGH); | ||
| 1006 | |||
| 1007 | ioat_chan->dmacount++; | ||
| 1008 | __ioat2_dma_memcpy_issue_pending(ioat_chan); | ||
| 1009 | break; | ||
| 1010 | } | ||
| 643 | spin_unlock_bh(&ioat_chan->desc_lock); | 1011 | spin_unlock_bh(&ioat_chan->desc_lock); |
| 644 | |||
| 645 | writel(((u64) desc->async_tx.phys) & 0x00000000FFFFFFFF, | ||
| 646 | ioat_chan->reg_base + IOAT_CHAINADDR_OFFSET_LOW); | ||
| 647 | writel(((u64) desc->async_tx.phys) >> 32, | ||
| 648 | ioat_chan->reg_base + IOAT_CHAINADDR_OFFSET_HIGH); | ||
| 649 | |||
| 650 | writeb(IOAT_CHANCMD_START, ioat_chan->reg_base + IOAT_CHANCMD_OFFSET); | ||
| 651 | } | 1012 | } |
| 652 | 1013 | ||
| 653 | /* | 1014 | /* |
| @@ -693,14 +1054,14 @@ static int ioat_dma_self_test(struct ioatdma_device *device) | |||
| 693 | dma_chan = container_of(device->common.channels.next, | 1054 | dma_chan = container_of(device->common.channels.next, |
| 694 | struct dma_chan, | 1055 | struct dma_chan, |
| 695 | device_node); | 1056 | device_node); |
| 696 | if (ioat_dma_alloc_chan_resources(dma_chan) < 1) { | 1057 | if (device->common.device_alloc_chan_resources(dma_chan) < 1) { |
| 697 | dev_err(&device->pdev->dev, | 1058 | dev_err(&device->pdev->dev, |
| 698 | "selftest cannot allocate chan resource\n"); | 1059 | "selftest cannot allocate chan resource\n"); |
| 699 | err = -ENODEV; | 1060 | err = -ENODEV; |
| 700 | goto out; | 1061 | goto out; |
| 701 | } | 1062 | } |
| 702 | 1063 | ||
| 703 | tx = ioat_dma_prep_memcpy(dma_chan, IOAT_TEST_SIZE, 0); | 1064 | tx = device->common.device_prep_dma_memcpy(dma_chan, IOAT_TEST_SIZE, 0); |
| 704 | if (!tx) { | 1065 | if (!tx) { |
| 705 | dev_err(&device->pdev->dev, | 1066 | dev_err(&device->pdev->dev, |
| 706 | "Self-test prep failed, disabling\n"); | 1067 | "Self-test prep failed, disabling\n"); |
| @@ -710,24 +1071,25 @@ static int ioat_dma_self_test(struct ioatdma_device *device) | |||
| 710 | 1071 | ||
| 711 | async_tx_ack(tx); | 1072 | async_tx_ack(tx); |
| 712 | addr = dma_map_single(dma_chan->device->dev, src, IOAT_TEST_SIZE, | 1073 | addr = dma_map_single(dma_chan->device->dev, src, IOAT_TEST_SIZE, |
| 713 | DMA_TO_DEVICE); | 1074 | DMA_TO_DEVICE); |
| 714 | ioat_set_src(addr, tx, 0); | 1075 | tx->tx_set_src(addr, tx, 0); |
| 715 | addr = dma_map_single(dma_chan->device->dev, dest, IOAT_TEST_SIZE, | 1076 | addr = dma_map_single(dma_chan->device->dev, dest, IOAT_TEST_SIZE, |
| 716 | DMA_FROM_DEVICE); | 1077 | DMA_FROM_DEVICE); |
| 717 | ioat_set_dest(addr, tx, 0); | 1078 | tx->tx_set_dest(addr, tx, 0); |
| 718 | tx->callback = ioat_dma_test_callback; | 1079 | tx->callback = ioat_dma_test_callback; |
| 719 | tx->callback_param = (void *)0x8086; | 1080 | tx->callback_param = (void *)0x8086; |
| 720 | cookie = ioat_tx_submit(tx); | 1081 | cookie = tx->tx_submit(tx); |
| 721 | if (cookie < 0) { | 1082 | if (cookie < 0) { |
| 722 | dev_err(&device->pdev->dev, | 1083 | dev_err(&device->pdev->dev, |
| 723 | "Self-test setup failed, disabling\n"); | 1084 | "Self-test setup failed, disabling\n"); |
| 724 | err = -ENODEV; | 1085 | err = -ENODEV; |
| 725 | goto free_resources; | 1086 | goto free_resources; |
| 726 | } | 1087 | } |
| 727 | ioat_dma_memcpy_issue_pending(dma_chan); | 1088 | device->common.device_issue_pending(dma_chan); |
| 728 | msleep(1); | 1089 | msleep(1); |
| 729 | 1090 | ||
| 730 | if (ioat_dma_is_complete(dma_chan, cookie, NULL, NULL) != DMA_SUCCESS) { | 1091 | if (device->common.device_is_tx_complete(dma_chan, cookie, NULL, NULL) |
| 1092 | != DMA_SUCCESS) { | ||
| 731 | dev_err(&device->pdev->dev, | 1093 | dev_err(&device->pdev->dev, |
| 732 | "Self-test copy timed out, disabling\n"); | 1094 | "Self-test copy timed out, disabling\n"); |
| 733 | err = -ENODEV; | 1095 | err = -ENODEV; |
| @@ -741,7 +1103,7 @@ static int ioat_dma_self_test(struct ioatdma_device *device) | |||
| 741 | } | 1103 | } |
| 742 | 1104 | ||
| 743 | free_resources: | 1105 | free_resources: |
| 744 | ioat_dma_free_chan_resources(dma_chan); | 1106 | device->common.device_free_chan_resources(dma_chan); |
| 745 | out: | 1107 | out: |
| 746 | kfree(src); | 1108 | kfree(src); |
| 747 | kfree(dest); | 1109 | kfree(dest); |
| @@ -941,16 +1303,28 @@ struct ioatdma_device *ioat_dma_probe(struct pci_dev *pdev, | |||
| 941 | INIT_LIST_HEAD(&device->common.channels); | 1303 | INIT_LIST_HEAD(&device->common.channels); |
| 942 | ioat_dma_enumerate_channels(device); | 1304 | ioat_dma_enumerate_channels(device); |
| 943 | 1305 | ||
| 944 | dma_cap_set(DMA_MEMCPY, device->common.cap_mask); | ||
| 945 | device->common.device_alloc_chan_resources = | 1306 | device->common.device_alloc_chan_resources = |
| 946 | ioat_dma_alloc_chan_resources; | 1307 | ioat_dma_alloc_chan_resources; |
| 947 | device->common.device_free_chan_resources = | 1308 | device->common.device_free_chan_resources = |
| 948 | ioat_dma_free_chan_resources; | 1309 | ioat_dma_free_chan_resources; |
| 949 | device->common.device_prep_dma_memcpy = ioat_dma_prep_memcpy; | 1310 | device->common.dev = &pdev->dev; |
| 1311 | |||
| 1312 | dma_cap_set(DMA_MEMCPY, device->common.cap_mask); | ||
| 950 | device->common.device_is_tx_complete = ioat_dma_is_complete; | 1313 | device->common.device_is_tx_complete = ioat_dma_is_complete; |
| 951 | device->common.device_issue_pending = ioat_dma_memcpy_issue_pending; | ||
| 952 | device->common.device_dependency_added = ioat_dma_dependency_added; | 1314 | device->common.device_dependency_added = ioat_dma_dependency_added; |
| 953 | device->common.dev = &pdev->dev; | 1315 | switch (device->version) { |
| 1316 | case IOAT_VER_1_2: | ||
| 1317 | device->common.device_prep_dma_memcpy = ioat1_dma_prep_memcpy; | ||
| 1318 | device->common.device_issue_pending = | ||
| 1319 | ioat1_dma_memcpy_issue_pending; | ||
| 1320 | break; | ||
| 1321 | case IOAT_VER_2_0: | ||
| 1322 | device->common.device_prep_dma_memcpy = ioat2_dma_prep_memcpy; | ||
| 1323 | device->common.device_issue_pending = | ||
| 1324 | ioat2_dma_memcpy_issue_pending; | ||
| 1325 | break; | ||
| 1326 | } | ||
| 1327 | |||
| 954 | dev_err(&device->pdev->dev, | 1328 | dev_err(&device->pdev->dev, |
| 955 | "Intel(R) I/OAT DMA Engine found," | 1329 | "Intel(R) I/OAT DMA Engine found," |
| 956 | " %d channels, device version 0x%02x, driver version %s\n", | 1330 | " %d channels, device version 0x%02x, driver version %s\n", |
diff --git a/drivers/dma/ioatdma.h b/drivers/dma/ioatdma.h index 5f9881e7b0ed..b668234ef654 100644 --- a/drivers/dma/ioatdma.h +++ b/drivers/dma/ioatdma.h | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * Copyright(c) 2004 - 2006 Intel Corporation. All rights reserved. | 2 | * Copyright(c) 2004 - 2007 Intel Corporation. All rights reserved. |
| 3 | * | 3 | * |
| 4 | * This program is free software; you can redistribute it and/or modify it | 4 | * This program is free software; you can redistribute it and/or modify it |
| 5 | * under the terms of the GNU General Public License as published by the Free | 5 | * under the terms of the GNU General Public License as published by the Free |
| @@ -28,7 +28,7 @@ | |||
| 28 | #include <linux/cache.h> | 28 | #include <linux/cache.h> |
| 29 | #include <linux/pci_ids.h> | 29 | #include <linux/pci_ids.h> |
| 30 | 30 | ||
| 31 | #define IOAT_DMA_VERSION "1.26" | 31 | #define IOAT_DMA_VERSION "2.04" |
| 32 | 32 | ||
| 33 | enum ioat_interrupt { | 33 | enum ioat_interrupt { |
| 34 | none = 0, | 34 | none = 0, |
| @@ -39,6 +39,8 @@ enum ioat_interrupt { | |||
| 39 | }; | 39 | }; |
| 40 | 40 | ||
| 41 | #define IOAT_LOW_COMPLETION_MASK 0xffffffc0 | 41 | #define IOAT_LOW_COMPLETION_MASK 0xffffffc0 |
| 42 | #define IOAT_DMA_DCA_ANY_CPU ~0 | ||
| 43 | |||
| 42 | 44 | ||
| 43 | /** | 45 | /** |
| 44 | * struct ioatdma_device - internal representation of a IOAT device | 46 | * struct ioatdma_device - internal representation of a IOAT device |
| @@ -47,6 +49,9 @@ enum ioat_interrupt { | |||
| 47 | * @dma_pool: for allocating DMA descriptors | 49 | * @dma_pool: for allocating DMA descriptors |
| 48 | * @common: embedded struct dma_device | 50 | * @common: embedded struct dma_device |
| 49 | * @version: version of ioatdma device | 51 | * @version: version of ioatdma device |
| 52 | * @irq_mode: which style irq to use | ||
| 53 | * @msix_entries: irq handlers | ||
| 54 | * @idx: per channel data | ||
| 50 | */ | 55 | */ |
| 51 | 56 | ||
| 52 | struct ioatdma_device { | 57 | struct ioatdma_device { |
| @@ -63,23 +68,7 @@ struct ioatdma_device { | |||
| 63 | 68 | ||
| 64 | /** | 69 | /** |
| 65 | * struct ioat_dma_chan - internal representation of a DMA channel | 70 | * struct ioat_dma_chan - internal representation of a DMA channel |
| 66 | * @device: | ||
| 67 | * @reg_base: | ||
| 68 | * @sw_in_use: | ||
| 69 | * @completion: | ||
| 70 | * @completion_low: | ||
| 71 | * @completion_high: | ||
| 72 | * @completed_cookie: last cookie seen completed on cleanup | ||
| 73 | * @cookie: value of last cookie given to client | ||
| 74 | * @last_completion: | ||
| 75 | * @xfercap: | ||
| 76 | * @desc_lock: | ||
| 77 | * @free_desc: | ||
| 78 | * @used_desc: | ||
| 79 | * @resource: | ||
| 80 | * @device_node: | ||
| 81 | */ | 71 | */ |
| 82 | |||
| 83 | struct ioat_dma_chan { | 72 | struct ioat_dma_chan { |
| 84 | 73 | ||
| 85 | void __iomem *reg_base; | 74 | void __iomem *reg_base; |
| @@ -95,6 +84,8 @@ struct ioat_dma_chan { | |||
| 95 | struct list_head used_desc; | 84 | struct list_head used_desc; |
| 96 | 85 | ||
| 97 | int pending; | 86 | int pending; |
| 87 | int dmacount; | ||
| 88 | int desccount; | ||
| 98 | 89 | ||
| 99 | struct ioatdma_device *device; | 90 | struct ioatdma_device *device; |
| 100 | struct dma_chan common; | 91 | struct dma_chan common; |
| @@ -134,12 +125,13 @@ struct ioat_desc_sw { | |||
| 134 | struct ioatdma_device *ioat_dma_probe(struct pci_dev *pdev, | 125 | struct ioatdma_device *ioat_dma_probe(struct pci_dev *pdev, |
| 135 | void __iomem *iobase); | 126 | void __iomem *iobase); |
| 136 | void ioat_dma_remove(struct ioatdma_device *device); | 127 | void ioat_dma_remove(struct ioatdma_device *device); |
| 137 | struct dca_provider *ioat_dca_init(struct pci_dev *pdev, | 128 | struct dca_provider *ioat_dca_init(struct pci_dev *pdev, void __iomem *iobase); |
| 138 | void __iomem *iobase); | 129 | struct dca_provider *ioat2_dca_init(struct pci_dev *pdev, void __iomem *iobase); |
| 139 | #else | 130 | #else |
| 140 | #define ioat_dma_probe(pdev, iobase) NULL | 131 | #define ioat_dma_probe(pdev, iobase) NULL |
| 141 | #define ioat_dma_remove(device) do { } while (0) | 132 | #define ioat_dma_remove(device) do { } while (0) |
| 142 | #define ioat_dca_init(pdev, iobase) NULL | 133 | #define ioat_dca_init(pdev, iobase) NULL |
| 134 | #define ioat2_dca_init(pdev, iobase) NULL | ||
| 143 | #endif | 135 | #endif |
| 144 | 136 | ||
| 145 | #endif /* IOATDMA_H */ | 137 | #endif /* IOATDMA_H */ |
diff --git a/drivers/dma/ioatdma_hw.h b/drivers/dma/ioatdma_hw.h index 9e7434e1551f..dd470fa91d86 100644 --- a/drivers/dma/ioatdma_hw.h +++ b/drivers/dma/ioatdma_hw.h | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * Copyright(c) 2004 - 2006 Intel Corporation. All rights reserved. | 2 | * Copyright(c) 2004 - 2007 Intel Corporation. All rights reserved. |
| 3 | * | 3 | * |
| 4 | * This program is free software; you can redistribute it and/or modify it | 4 | * This program is free software; you can redistribute it and/or modify it |
| 5 | * under the terms of the GNU General Public License as published by the Free | 5 | * under the terms of the GNU General Public License as published by the Free |
| @@ -22,12 +22,19 @@ | |||
| 22 | #define _IOAT_HW_H_ | 22 | #define _IOAT_HW_H_ |
| 23 | 23 | ||
| 24 | /* PCI Configuration Space Values */ | 24 | /* PCI Configuration Space Values */ |
| 25 | #define IOAT_PCI_VID 0x8086 | 25 | #define IOAT_PCI_VID 0x8086 |
| 26 | #define IOAT_PCI_DID 0x1A38 | 26 | |
| 27 | #define IOAT_PCI_RID 0x00 | 27 | /* CB device ID's */ |
| 28 | #define IOAT_PCI_SVID 0x8086 | 28 | #define IOAT_PCI_DID_5000 0x1A38 |
| 29 | #define IOAT_PCI_SID 0x8086 | 29 | #define IOAT_PCI_DID_CNB 0x360B |
| 30 | #define IOAT_VER_1_2 0x12 /* Version 1.2 */ | 30 | #define IOAT_PCI_DID_SCNB 0x65FF |
| 31 | #define IOAT_PCI_DID_SNB 0x402F | ||
| 32 | |||
| 33 | #define IOAT_PCI_RID 0x00 | ||
| 34 | #define IOAT_PCI_SVID 0x8086 | ||
| 35 | #define IOAT_PCI_SID 0x8086 | ||
| 36 | #define IOAT_VER_1_2 0x12 /* Version 1.2 */ | ||
| 37 | #define IOAT_VER_2_0 0x20 /* Version 2.0 */ | ||
| 31 | 38 | ||
| 32 | struct ioat_dma_descriptor { | 39 | struct ioat_dma_descriptor { |
| 33 | uint32_t size; | 40 | uint32_t size; |
| @@ -47,6 +54,16 @@ struct ioat_dma_descriptor { | |||
| 47 | #define IOAT_DMA_DESCRIPTOR_CTL_CP_STS 0x00000008 | 54 | #define IOAT_DMA_DESCRIPTOR_CTL_CP_STS 0x00000008 |
| 48 | #define IOAT_DMA_DESCRIPTOR_CTL_FRAME 0x00000010 | 55 | #define IOAT_DMA_DESCRIPTOR_CTL_FRAME 0x00000010 |
| 49 | #define IOAT_DMA_DESCRIPTOR_NUL 0x00000020 | 56 | #define IOAT_DMA_DESCRIPTOR_NUL 0x00000020 |
| 50 | #define IOAT_DMA_DESCRIPTOR_OPCODE 0xFF000000 | 57 | #define IOAT_DMA_DESCRIPTOR_CTL_SP_BRK 0x00000040 |
| 58 | #define IOAT_DMA_DESCRIPTOR_CTL_DP_BRK 0x00000080 | ||
| 59 | #define IOAT_DMA_DESCRIPTOR_CTL_BNDL 0x00000100 | ||
| 60 | #define IOAT_DMA_DESCRIPTOR_CTL_DCA 0x00000200 | ||
| 61 | #define IOAT_DMA_DESCRIPTOR_CTL_BUFHINT 0x00000400 | ||
| 62 | |||
| 63 | #define IOAT_DMA_DESCRIPTOR_CTL_OPCODE_CONTEXT 0xFF000000 | ||
| 64 | #define IOAT_DMA_DESCRIPTOR_CTL_OPCODE_DMA 0x00000000 | ||
| 65 | |||
| 66 | #define IOAT_DMA_DESCRIPTOR_CTL_CONTEXT_DCA 0x00000001 | ||
| 67 | #define IOAT_DMA_DESCRIPTOR_CTL_OPCODE_MASK 0xFF000000 | ||
| 51 | 68 | ||
| 52 | #endif | 69 | #endif |
diff --git a/drivers/dma/ioatdma_registers.h b/drivers/dma/ioatdma_registers.h index baaab5ea146a..9832d7ebd931 100644 --- a/drivers/dma/ioatdma_registers.h +++ b/drivers/dma/ioatdma_registers.h | |||
| @@ -42,26 +42,25 @@ | |||
| 42 | #define IOAT_INTRCTRL_MASTER_INT_EN 0x01 /* Master Interrupt Enable */ | 42 | #define IOAT_INTRCTRL_MASTER_INT_EN 0x01 /* Master Interrupt Enable */ |
| 43 | #define IOAT_INTRCTRL_INT_STATUS 0x02 /* ATTNSTATUS -or- Channel Int */ | 43 | #define IOAT_INTRCTRL_INT_STATUS 0x02 /* ATTNSTATUS -or- Channel Int */ |
| 44 | #define IOAT_INTRCTRL_INT 0x04 /* INT_STATUS -and- MASTER_INT_EN */ | 44 | #define IOAT_INTRCTRL_INT 0x04 /* INT_STATUS -and- MASTER_INT_EN */ |
| 45 | #define IOAT_INTRCTRL_MSIX_VECTOR_CONTROL 0x08 /* Enable all MSI-X vectors */ | 45 | #define IOAT_INTRCTRL_MSIX_VECTOR_CONTROL 0x08 /* Enable all MSI-X vectors */ |
| 46 | 46 | ||
| 47 | #define IOAT_ATTNSTATUS_OFFSET 0x04 /* Each bit is a channel */ | 47 | #define IOAT_ATTNSTATUS_OFFSET 0x04 /* Each bit is a channel */ |
| 48 | 48 | ||
| 49 | #define IOAT_VER_OFFSET 0x08 /* 8-bit */ | 49 | #define IOAT_VER_OFFSET 0x08 /* 8-bit */ |
| 50 | #define IOAT_VER_MAJOR_MASK 0xF0 | 50 | #define IOAT_VER_MAJOR_MASK 0xF0 |
| 51 | #define IOAT_VER_MINOR_MASK 0x0F | 51 | #define IOAT_VER_MINOR_MASK 0x0F |
| 52 | #define GET_IOAT_VER_MAJOR(x) ((x) & IOAT_VER_MAJOR_MASK) | 52 | #define GET_IOAT_VER_MAJOR(x) (((x) & IOAT_VER_MAJOR_MASK) >> 4) |
| 53 | #define GET_IOAT_VER_MINOR(x) ((x) & IOAT_VER_MINOR_MASK) | 53 | #define GET_IOAT_VER_MINOR(x) ((x) & IOAT_VER_MINOR_MASK) |
| 54 | 54 | ||
| 55 | #define IOAT_PERPORTOFFSET_OFFSET 0x0A /* 16-bit */ | 55 | #define IOAT_PERPORTOFFSET_OFFSET 0x0A /* 16-bit */ |
| 56 | 56 | ||
| 57 | #define IOAT_INTRDELAY_OFFSET 0x0C /* 16-bit */ | 57 | #define IOAT_INTRDELAY_OFFSET 0x0C /* 16-bit */ |
| 58 | #define IOAT_INTRDELAY_INT_DELAY_MASK 0x3FFF /* Interrupt Delay Time */ | 58 | #define IOAT_INTRDELAY_INT_DELAY_MASK 0x3FFF /* Interrupt Delay Time */ |
| 59 | #define IOAT_INTRDELAY_COALESE_SUPPORT 0x8000 /* Interrupt Coalesing Supported */ | 59 | #define IOAT_INTRDELAY_COALESE_SUPPORT 0x8000 /* Interrupt Coalescing Supported */ |
| 60 | 60 | ||
| 61 | #define IOAT_DEVICE_STATUS_OFFSET 0x0E /* 16-bit */ | 61 | #define IOAT_DEVICE_STATUS_OFFSET 0x0E /* 16-bit */ |
| 62 | #define IOAT_DEVICE_STATUS_DEGRADED_MODE 0x0001 | 62 | #define IOAT_DEVICE_STATUS_DEGRADED_MODE 0x0001 |
| 63 | 63 | ||
| 64 | |||
| 65 | #define IOAT_CHANNEL_MMIO_SIZE 0x80 /* Each Channel MMIO space is this size */ | 64 | #define IOAT_CHANNEL_MMIO_SIZE 0x80 /* Each Channel MMIO space is this size */ |
| 66 | 65 | ||
| 67 | /* DMA Channel Registers */ | 66 | /* DMA Channel Registers */ |
| @@ -74,25 +73,101 @@ | |||
| 74 | #define IOAT_CHANCTRL_ERR_COMPLETION_EN 0x0004 | 73 | #define IOAT_CHANCTRL_ERR_COMPLETION_EN 0x0004 |
| 75 | #define IOAT_CHANCTRL_INT_DISABLE 0x0001 | 74 | #define IOAT_CHANCTRL_INT_DISABLE 0x0001 |
| 76 | 75 | ||
| 77 | #define IOAT_DMA_COMP_OFFSET 0x02 /* 16-bit DMA channel compatability */ | 76 | #define IOAT_DMA_COMP_OFFSET 0x02 /* 16-bit DMA channel compatibility */ |
| 78 | #define IOAT_DMA_COMP_V1 0x0001 /* Compatability with DMA version 1 */ | 77 | #define IOAT_DMA_COMP_V1 0x0001 /* Compatibility with DMA version 1 */ |
| 79 | 78 | #define IOAT_DMA_COMP_V2 0x0002 /* Compatibility with DMA version 2 */ | |
| 80 | #define IOAT_CHANSTS_OFFSET 0x04 /* 64-bit Channel Status Register */ | 79 | |
| 81 | #define IOAT_CHANSTS_OFFSET_LOW 0x04 | 80 | |
| 82 | #define IOAT_CHANSTS_OFFSET_HIGH 0x08 | 81 | #define IOAT1_CHANSTS_OFFSET 0x04 /* 64-bit Channel Status Register */ |
| 83 | #define IOAT_CHANSTS_COMPLETED_DESCRIPTOR_ADDR 0xFFFFFFFFFFFFFFC0UL | 82 | #define IOAT2_CHANSTS_OFFSET 0x08 /* 64-bit Channel Status Register */ |
| 83 | #define IOAT_CHANSTS_OFFSET(ver) ((ver) < IOAT_VER_2_0 \ | ||
| 84 | ? IOAT1_CHANSTS_OFFSET : IOAT2_CHANSTS_OFFSET) | ||
| 85 | #define IOAT1_CHANSTS_OFFSET_LOW 0x04 | ||
| 86 | #define IOAT2_CHANSTS_OFFSET_LOW 0x08 | ||
| 87 | #define IOAT_CHANSTS_OFFSET_LOW(ver) ((ver) < IOAT_VER_2_0 \ | ||
| 88 | ? IOAT1_CHANSTS_OFFSET_LOW : IOAT2_CHANSTS_OFFSET_LOW) | ||
| 89 | #define IOAT1_CHANSTS_OFFSET_HIGH 0x08 | ||
| 90 | #define IOAT2_CHANSTS_OFFSET_HIGH 0x0C | ||
| 91 | #define IOAT_CHANSTS_OFFSET_HIGH(ver) ((ver) < IOAT_VER_2_0 \ | ||
| 92 | ? IOAT1_CHANSTS_OFFSET_HIGH : IOAT2_CHANSTS_OFFSET_HIGH) | ||
| 93 | #define IOAT_CHANSTS_COMPLETED_DESCRIPTOR_ADDR ~0x3F | ||
| 84 | #define IOAT_CHANSTS_SOFT_ERR 0x0000000000000010 | 94 | #define IOAT_CHANSTS_SOFT_ERR 0x0000000000000010 |
| 95 | #define IOAT_CHANSTS_UNAFFILIATED_ERR 0x0000000000000008 | ||
| 85 | #define IOAT_CHANSTS_DMA_TRANSFER_STATUS 0x0000000000000007 | 96 | #define IOAT_CHANSTS_DMA_TRANSFER_STATUS 0x0000000000000007 |
| 86 | #define IOAT_CHANSTS_DMA_TRANSFER_STATUS_ACTIVE 0x0 | 97 | #define IOAT_CHANSTS_DMA_TRANSFER_STATUS_ACTIVE 0x0 |
| 87 | #define IOAT_CHANSTS_DMA_TRANSFER_STATUS_DONE 0x1 | 98 | #define IOAT_CHANSTS_DMA_TRANSFER_STATUS_DONE 0x1 |
| 88 | #define IOAT_CHANSTS_DMA_TRANSFER_STATUS_SUSPENDED 0x2 | 99 | #define IOAT_CHANSTS_DMA_TRANSFER_STATUS_SUSPENDED 0x2 |
| 89 | #define IOAT_CHANSTS_DMA_TRANSFER_STATUS_HALTED 0x3 | 100 | #define IOAT_CHANSTS_DMA_TRANSFER_STATUS_HALTED 0x3 |
| 90 | 101 | ||
| 91 | #define IOAT_CHAINADDR_OFFSET 0x0C /* 64-bit Descriptor Chain Address Register */ | ||
| 92 | #define IOAT_CHAINADDR_OFFSET_LOW 0x0C | ||
| 93 | #define IOAT_CHAINADDR_OFFSET_HIGH 0x10 | ||
| 94 | 102 | ||
| 95 | #define IOAT_CHANCMD_OFFSET 0x14 /* 8-bit DMA Channel Command Register */ | 103 | |
| 104 | #define IOAT_CHAN_DMACOUNT_OFFSET 0x06 /* 16-bit DMA Count register */ | ||
| 105 | |||
| 106 | #define IOAT_DCACTRL_OFFSET 0x30 /* 32 bit Direct Cache Access Control Register */ | ||
| 107 | #define IOAT_DCACTRL_CMPL_WRITE_ENABLE 0x10000 | ||
| 108 | #define IOAT_DCACTRL_TARGET_CPU_MASK 0xFFFF /* APIC ID */ | ||
| 109 | |||
| 110 | /* CB DCA Memory Space Registers */ | ||
| 111 | #define IOAT_DCAOFFSET_OFFSET 0x14 | ||
| 112 | /* CB_BAR + IOAT_DCAOFFSET value */ | ||
| 113 | #define IOAT_DCA_VER_OFFSET 0x00 | ||
| 114 | #define IOAT_DCA_VER_MAJOR_MASK 0xF0 | ||
| 115 | #define IOAT_DCA_VER_MINOR_MASK 0x0F | ||
| 116 | |||
| 117 | #define IOAT_DCA_COMP_OFFSET 0x02 | ||
| 118 | #define IOAT_DCA_COMP_V1 0x1 | ||
| 119 | |||
| 120 | #define IOAT_FSB_CAPABILITY_OFFSET 0x04 | ||
| 121 | #define IOAT_FSB_CAPABILITY_PREFETCH 0x1 | ||
| 122 | |||
| 123 | #define IOAT_PCI_CAPABILITY_OFFSET 0x06 | ||
| 124 | #define IOAT_PCI_CAPABILITY_MEMWR 0x1 | ||
| 125 | |||
| 126 | #define IOAT_FSB_CAP_ENABLE_OFFSET 0x08 | ||
| 127 | #define IOAT_FSB_CAP_ENABLE_PREFETCH 0x1 | ||
| 128 | |||
| 129 | #define IOAT_PCI_CAP_ENABLE_OFFSET 0x0A | ||
| 130 | #define IOAT_PCI_CAP_ENABLE_MEMWR 0x1 | ||
| 131 | |||
| 132 | #define IOAT_APICID_TAG_MAP_OFFSET 0x0C | ||
| 133 | #define IOAT_APICID_TAG_MAP_TAG0 0x0000000F | ||
| 134 | #define IOAT_APICID_TAG_MAP_TAG0_SHIFT 0 | ||
| 135 | #define IOAT_APICID_TAG_MAP_TAG1 0x000000F0 | ||
| 136 | #define IOAT_APICID_TAG_MAP_TAG1_SHIFT 4 | ||
| 137 | #define IOAT_APICID_TAG_MAP_TAG2 0x00000F00 | ||
| 138 | #define IOAT_APICID_TAG_MAP_TAG2_SHIFT 8 | ||
| 139 | #define IOAT_APICID_TAG_MAP_TAG3 0x0000F000 | ||
| 140 | #define IOAT_APICID_TAG_MAP_TAG3_SHIFT 12 | ||
| 141 | #define IOAT_APICID_TAG_MAP_TAG4 0x000F0000 | ||
| 142 | #define IOAT_APICID_TAG_MAP_TAG4_SHIFT 16 | ||
| 143 | #define IOAT_APICID_TAG_CB2_VALID 0x8080808080 | ||
| 144 | |||
| 145 | #define IOAT_DCA_GREQID_OFFSET 0x10 | ||
| 146 | #define IOAT_DCA_GREQID_SIZE 0x04 | ||
| 147 | #define IOAT_DCA_GREQID_MASK 0xFFFF | ||
| 148 | #define IOAT_DCA_GREQID_IGNOREFUN 0x10000000 | ||
| 149 | #define IOAT_DCA_GREQID_VALID 0x20000000 | ||
| 150 | #define IOAT_DCA_GREQID_LASTID 0x80000000 | ||
| 151 | |||
| 152 | |||
| 153 | |||
| 154 | #define IOAT1_CHAINADDR_OFFSET 0x0C /* 64-bit Descriptor Chain Address Register */ | ||
| 155 | #define IOAT2_CHAINADDR_OFFSET 0x10 /* 64-bit Descriptor Chain Address Register */ | ||
| 156 | #define IOAT_CHAINADDR_OFFSET(ver) ((ver) < IOAT_VER_2_0 \ | ||
| 157 | ? IOAT1_CHAINADDR_OFFSET : IOAT2_CHAINADDR_OFFSET) | ||
| 158 | #define IOAT1_CHAINADDR_OFFSET_LOW 0x0C | ||
| 159 | #define IOAT2_CHAINADDR_OFFSET_LOW 0x10 | ||
| 160 | #define IOAT_CHAINADDR_OFFSET_LOW(ver) ((ver) < IOAT_VER_2_0 \ | ||
| 161 | ? IOAT1_CHAINADDR_OFFSET_LOW : IOAT2_CHAINADDR_OFFSET_LOW) | ||
| 162 | #define IOAT1_CHAINADDR_OFFSET_HIGH 0x10 | ||
| 163 | #define IOAT2_CHAINADDR_OFFSET_HIGH 0x14 | ||
| 164 | #define IOAT_CHAINADDR_OFFSET_HIGH(ver) ((ver) < IOAT_VER_2_0 \ | ||
| 165 | ? IOAT1_CHAINADDR_OFFSET_HIGH : IOAT2_CHAINADDR_OFFSET_HIGH) | ||
| 166 | |||
| 167 | #define IOAT1_CHANCMD_OFFSET 0x14 /* 8-bit DMA Channel Command Register */ | ||
| 168 | #define IOAT2_CHANCMD_OFFSET 0x04 /* 8-bit DMA Channel Command Register */ | ||
| 169 | #define IOAT_CHANCMD_OFFSET(ver) ((ver) < IOAT_VER_2_0 \ | ||
| 170 | ? IOAT1_CHANCMD_OFFSET : IOAT2_CHANCMD_OFFSET) | ||
| 96 | #define IOAT_CHANCMD_RESET 0x20 | 171 | #define IOAT_CHANCMD_RESET 0x20 |
| 97 | #define IOAT_CHANCMD_RESUME 0x10 | 172 | #define IOAT_CHANCMD_RESUME 0x10 |
| 98 | #define IOAT_CHANCMD_ABORT 0x08 | 173 | #define IOAT_CHANCMD_ABORT 0x08 |
| @@ -124,6 +199,7 @@ | |||
| 124 | #define IOAT_CHANERR_COMPLETION_ADDR_ERR 0x1000 | 199 | #define IOAT_CHANERR_COMPLETION_ADDR_ERR 0x1000 |
| 125 | #define IOAT_CHANERR_INT_CONFIGURATION_ERR 0x2000 | 200 | #define IOAT_CHANERR_INT_CONFIGURATION_ERR 0x2000 |
| 126 | #define IOAT_CHANERR_SOFT_ERR 0x4000 | 201 | #define IOAT_CHANERR_SOFT_ERR 0x4000 |
| 202 | #define IOAT_CHANERR_UNAFFILIATED_ERR 0x8000 | ||
| 127 | 203 | ||
| 128 | #define IOAT_CHANERR_MASK_OFFSET 0x2C /* 32-bit Channel Error Register */ | 204 | #define IOAT_CHANERR_MASK_OFFSET 0x2C /* 32-bit Channel Error Register */ |
| 129 | 205 | ||
diff --git a/drivers/edac/i5000_edac.c b/drivers/edac/i5000_edac.c index 96f7e63e3996..a1f24c42d5ff 100644 --- a/drivers/edac/i5000_edac.c +++ b/drivers/edac/i5000_edac.c | |||
| @@ -1462,7 +1462,7 @@ MODULE_DEVICE_TABLE(pci, i5000_pci_tbl); | |||
| 1462 | * | 1462 | * |
| 1463 | */ | 1463 | */ |
| 1464 | static struct pci_driver i5000_driver = { | 1464 | static struct pci_driver i5000_driver = { |
| 1465 | .name = __stringify(KBUILD_BASENAME), | 1465 | .name = KBUILD_BASENAME, |
| 1466 | .probe = i5000_init_one, | 1466 | .probe = i5000_init_one, |
| 1467 | .remove = __devexit_p(i5000_remove_one), | 1467 | .remove = __devexit_p(i5000_remove_one), |
| 1468 | .id_table = i5000_pci_tbl, | 1468 | .id_table = i5000_pci_tbl, |
diff --git a/drivers/i2c/busses/i2c-pasemi.c b/drivers/i2c/busses/i2c-pasemi.c index 58e32714afb5..ca18e0be4901 100644 --- a/drivers/i2c/busses/i2c-pasemi.c +++ b/drivers/i2c/busses/i2c-pasemi.c | |||
| @@ -51,6 +51,7 @@ struct pasemi_smbus { | |||
| 51 | #define MRXFIFO_DATA_M 0x000000ff | 51 | #define MRXFIFO_DATA_M 0x000000ff |
| 52 | 52 | ||
| 53 | #define SMSTA_XEN 0x08000000 | 53 | #define SMSTA_XEN 0x08000000 |
| 54 | #define SMSTA_MTN 0x00200000 | ||
| 54 | 55 | ||
| 55 | #define CTL_MRR 0x00000400 | 56 | #define CTL_MRR 0x00000400 |
| 56 | #define CTL_MTR 0x00000200 | 57 | #define CTL_MTR 0x00000200 |
| @@ -98,6 +99,10 @@ static unsigned int pasemi_smb_waitready(struct pasemi_smbus *smbus) | |||
| 98 | status = reg_read(smbus, REG_SMSTA); | 99 | status = reg_read(smbus, REG_SMSTA); |
| 99 | } | 100 | } |
| 100 | 101 | ||
| 102 | /* Got NACK? */ | ||
| 103 | if (status & SMSTA_MTN) | ||
| 104 | return -ENXIO; | ||
| 105 | |||
| 101 | if (timeout < 0) { | 106 | if (timeout < 0) { |
| 102 | dev_warn(&smbus->dev->dev, "Timeout, status 0x%08x\n", status); | 107 | dev_warn(&smbus->dev->dev, "Timeout, status 0x%08x\n", status); |
| 103 | reg_write(smbus, REG_SMSTA, status); | 108 | reg_write(smbus, REG_SMSTA, status); |
| @@ -364,7 +369,7 @@ static int __devinit pasemi_smb_probe(struct pci_dev *dev, | |||
| 364 | smbus->adapter.algo = &smbus_algorithm; | 369 | smbus->adapter.algo = &smbus_algorithm; |
| 365 | smbus->adapter.algo_data = smbus; | 370 | smbus->adapter.algo_data = smbus; |
| 366 | 371 | ||
| 367 | /* set up the driverfs linkage to our parent device */ | 372 | /* set up the sysfs linkage to our parent device */ |
| 368 | smbus->adapter.dev.parent = &dev->dev; | 373 | smbus->adapter.dev.parent = &dev->dev; |
| 369 | 374 | ||
| 370 | reg_write(smbus, REG_CTL, (CTL_MTR | CTL_MRR | | 375 | reg_write(smbus, REG_CTL, (CTL_MTR | CTL_MRR | |
diff --git a/drivers/i2c/chips/eeprom.c b/drivers/i2c/chips/eeprom.c index d3da1fb05b9b..1a7eeebac506 100644 --- a/drivers/i2c/chips/eeprom.c +++ b/drivers/i2c/chips/eeprom.c | |||
| @@ -128,13 +128,20 @@ static ssize_t eeprom_read(struct kobject *kobj, struct bin_attribute *bin_attr, | |||
| 128 | for (slice = off >> 5; slice <= (off + count - 1) >> 5; slice++) | 128 | for (slice = off >> 5; slice <= (off + count - 1) >> 5; slice++) |
| 129 | eeprom_update_client(client, slice); | 129 | eeprom_update_client(client, slice); |
| 130 | 130 | ||
| 131 | /* Hide Vaio security settings to regular users (16 first bytes) */ | 131 | /* Hide Vaio private settings to regular users: |
| 132 | if (data->nature == VAIO && off < 16 && !capable(CAP_SYS_ADMIN)) { | 132 | - BIOS passwords: bytes 0x00 to 0x0f |
| 133 | size_t in_row1 = 16 - off; | 133 | - UUID: bytes 0x10 to 0x1f |
| 134 | in_row1 = min(in_row1, count); | 134 | - Serial number: 0xc0 to 0xdf */ |
| 135 | memset(buf, 0, in_row1); | 135 | if (data->nature == VAIO && !capable(CAP_SYS_ADMIN)) { |
| 136 | if (count - in_row1 > 0) | 136 | int i; |
| 137 | memcpy(buf + in_row1, &data->data[16], count - in_row1); | 137 | |
| 138 | for (i = 0; i < count; i++) { | ||
| 139 | if ((off + i <= 0x1f) || | ||
| 140 | (off + i >= 0xc0 && off + i <= 0xdf)) | ||
| 141 | buf[i] = 0; | ||
| 142 | else | ||
| 143 | buf[i] = data->data[off + i]; | ||
| 144 | } | ||
| 138 | } else { | 145 | } else { |
| 139 | memcpy(buf, &data->data[off], count); | 146 | memcpy(buf, &data->data[off], count); |
| 140 | } | 147 | } |
| @@ -197,14 +204,18 @@ static int eeprom_detect(struct i2c_adapter *adapter, int address, int kind) | |||
| 197 | goto exit_kfree; | 204 | goto exit_kfree; |
| 198 | 205 | ||
| 199 | /* Detect the Vaio nature of EEPROMs. | 206 | /* Detect the Vaio nature of EEPROMs. |
| 200 | We use the "PCG-" prefix as the signature. */ | 207 | We use the "PCG-" or "VGN-" prefix as the signature. */ |
| 201 | if (address == 0x57) { | 208 | if (address == 0x57) { |
| 202 | if (i2c_smbus_read_byte_data(new_client, 0x80) == 'P' | 209 | char name[4]; |
| 203 | && i2c_smbus_read_byte(new_client) == 'C' | 210 | |
| 204 | && i2c_smbus_read_byte(new_client) == 'G' | 211 | name[0] = i2c_smbus_read_byte_data(new_client, 0x80); |
| 205 | && i2c_smbus_read_byte(new_client) == '-') { | 212 | name[1] = i2c_smbus_read_byte(new_client); |
| 213 | name[2] = i2c_smbus_read_byte(new_client); | ||
| 214 | name[3] = i2c_smbus_read_byte(new_client); | ||
| 215 | |||
| 216 | if (!memcmp(name, "PCG-", 4) || !memcmp(name, "VGN-", 4)) { | ||
| 206 | dev_info(&new_client->dev, "Vaio EEPROM detected, " | 217 | dev_info(&new_client->dev, "Vaio EEPROM detected, " |
| 207 | "enabling password protection\n"); | 218 | "enabling privacy protection\n"); |
| 208 | data->nature = VAIO; | 219 | data->nature = VAIO; |
| 209 | } | 220 | } |
| 210 | } | 221 | } |
diff --git a/drivers/i2c/i2c-core.c b/drivers/i2c/i2c-core.c index 1a4e8dc03b36..b5e13e405e72 100644 --- a/drivers/i2c/i2c-core.c +++ b/drivers/i2c/i2c-core.c | |||
| @@ -673,7 +673,7 @@ static int __i2c_check_addr(struct i2c_adapter *adapter, unsigned int addr) | |||
| 673 | return 0; | 673 | return 0; |
| 674 | } | 674 | } |
| 675 | 675 | ||
| 676 | int i2c_check_addr(struct i2c_adapter *adapter, int addr) | 676 | static int i2c_check_addr(struct i2c_adapter *adapter, int addr) |
| 677 | { | 677 | { |
| 678 | int rval; | 678 | int rval; |
| 679 | 679 | ||
| @@ -683,7 +683,6 @@ int i2c_check_addr(struct i2c_adapter *adapter, int addr) | |||
| 683 | 683 | ||
| 684 | return rval; | 684 | return rval; |
| 685 | } | 685 | } |
| 686 | EXPORT_SYMBOL(i2c_check_addr); | ||
| 687 | 686 | ||
| 688 | int i2c_attach_client(struct i2c_client *client) | 687 | int i2c_attach_client(struct i2c_client *client) |
| 689 | { | 688 | { |
diff --git a/drivers/i2c/i2c-dev.c b/drivers/i2c/i2c-dev.c index 5a15e50748de..c21ae20ae362 100644 --- a/drivers/i2c/i2c-dev.c +++ b/drivers/i2c/i2c-dev.c | |||
| @@ -38,6 +38,15 @@ | |||
| 38 | 38 | ||
| 39 | static struct i2c_driver i2cdev_driver; | 39 | static struct i2c_driver i2cdev_driver; |
| 40 | 40 | ||
| 41 | /* | ||
| 42 | * An i2c_dev represents an i2c_adapter ... an I2C or SMBus master, not a | ||
| 43 | * slave (i2c_client) with which messages will be exchanged. It's coupled | ||
| 44 | * with a character special file which is accessed by user mode drivers. | ||
| 45 | * | ||
| 46 | * The list of i2c_dev structures is parallel to the i2c_adapter lists | ||
| 47 | * maintained by the driver model, and is updated using notifications | ||
| 48 | * delivered to the i2cdev_driver. | ||
| 49 | */ | ||
| 41 | struct i2c_dev { | 50 | struct i2c_dev { |
| 42 | struct list_head list; | 51 | struct list_head list; |
| 43 | struct i2c_adapter *adap; | 52 | struct i2c_adapter *adap; |
| @@ -103,6 +112,25 @@ static ssize_t show_adapter_name(struct device *dev, | |||
| 103 | } | 112 | } |
| 104 | static DEVICE_ATTR(name, S_IRUGO, show_adapter_name, NULL); | 113 | static DEVICE_ATTR(name, S_IRUGO, show_adapter_name, NULL); |
| 105 | 114 | ||
| 115 | /* ------------------------------------------------------------------------- */ | ||
| 116 | |||
| 117 | /* | ||
| 118 | * After opening an instance of this character special file, a file | ||
| 119 | * descriptor starts out associated only with an i2c_adapter (and bus). | ||
| 120 | * | ||
| 121 | * Using the I2C_RDWR ioctl(), you can then *immediately* issue i2c_msg | ||
| 122 | * traffic to any devices on the bus used by that adapter. That's because | ||
| 123 | * the i2c_msg vectors embed all the addressing information they need, and | ||
| 124 | * are submitted directly to an i2c_adapter. However, SMBus-only adapters | ||
| 125 | * don't support that interface. | ||
| 126 | * | ||
| 127 | * To use read()/write() system calls on that file descriptor, or to use | ||
| 128 | * SMBus interfaces (and work with SMBus-only hosts!), you must first issue | ||
| 129 | * an I2C_SLAVE (or I2C_SLAVE_FORCE) ioctl. That configures an anonymous | ||
| 130 | * (never registered) i2c_client so it holds the addressing information | ||
| 131 | * needed by those system calls and by this SMBus interface. | ||
| 132 | */ | ||
| 133 | |||
| 106 | static ssize_t i2cdev_read (struct file *file, char __user *buf, size_t count, | 134 | static ssize_t i2cdev_read (struct file *file, char __user *buf, size_t count, |
| 107 | loff_t *offset) | 135 | loff_t *offset) |
| 108 | { | 136 | { |
| @@ -154,6 +182,29 @@ static ssize_t i2cdev_write (struct file *file, const char __user *buf, size_t c | |||
| 154 | return ret; | 182 | return ret; |
| 155 | } | 183 | } |
| 156 | 184 | ||
| 185 | /* This address checking function differs from the one in i2c-core | ||
| 186 | in that it considers an address with a registered device, but no | ||
| 187 | bounded driver, as NOT busy. */ | ||
| 188 | static int i2cdev_check_addr(struct i2c_adapter *adapter, unsigned int addr) | ||
| 189 | { | ||
| 190 | struct list_head *item; | ||
| 191 | struct i2c_client *client; | ||
| 192 | int res = 0; | ||
| 193 | |||
| 194 | mutex_lock(&adapter->clist_lock); | ||
| 195 | list_for_each(item, &adapter->clients) { | ||
| 196 | client = list_entry(item, struct i2c_client, list); | ||
| 197 | if (client->addr == addr) { | ||
| 198 | if (client->driver) | ||
| 199 | res = -EBUSY; | ||
| 200 | break; | ||
| 201 | } | ||
| 202 | } | ||
| 203 | mutex_unlock(&adapter->clist_lock); | ||
| 204 | |||
| 205 | return res; | ||
| 206 | } | ||
| 207 | |||
| 157 | static int i2cdev_ioctl(struct inode *inode, struct file *file, | 208 | static int i2cdev_ioctl(struct inode *inode, struct file *file, |
| 158 | unsigned int cmd, unsigned long arg) | 209 | unsigned int cmd, unsigned long arg) |
| 159 | { | 210 | { |
| @@ -172,11 +223,22 @@ static int i2cdev_ioctl(struct inode *inode, struct file *file, | |||
| 172 | switch ( cmd ) { | 223 | switch ( cmd ) { |
| 173 | case I2C_SLAVE: | 224 | case I2C_SLAVE: |
| 174 | case I2C_SLAVE_FORCE: | 225 | case I2C_SLAVE_FORCE: |
| 226 | /* NOTE: devices set up to work with "new style" drivers | ||
| 227 | * can't use I2C_SLAVE, even when the device node is not | ||
| 228 | * bound to a driver. Only I2C_SLAVE_FORCE will work. | ||
| 229 | * | ||
| 230 | * Setting the PEC flag here won't affect kernel drivers, | ||
| 231 | * which will be using the i2c_client node registered with | ||
| 232 | * the driver model core. Likewise, when that client has | ||
| 233 | * the PEC flag already set, the i2c-dev driver won't see | ||
| 234 | * (or use) this setting. | ||
| 235 | */ | ||
| 175 | if ((arg > 0x3ff) || | 236 | if ((arg > 0x3ff) || |
| 176 | (((client->flags & I2C_M_TEN) == 0) && arg > 0x7f)) | 237 | (((client->flags & I2C_M_TEN) == 0) && arg > 0x7f)) |
| 177 | return -EINVAL; | 238 | return -EINVAL; |
| 178 | if ((cmd == I2C_SLAVE) && i2c_check_addr(client->adapter,arg)) | 239 | if (cmd == I2C_SLAVE && i2cdev_check_addr(client->adapter, arg)) |
| 179 | return -EBUSY; | 240 | return -EBUSY; |
| 241 | /* REVISIT: address could become busy later */ | ||
| 180 | client->addr = arg; | 242 | client->addr = arg; |
| 181 | return 0; | 243 | return 0; |
| 182 | case I2C_TENBIT: | 244 | case I2C_TENBIT: |
| @@ -386,6 +448,13 @@ static int i2cdev_open(struct inode *inode, struct file *file) | |||
| 386 | if (!adap) | 448 | if (!adap) |
| 387 | return -ENODEV; | 449 | return -ENODEV; |
| 388 | 450 | ||
| 451 | /* This creates an anonymous i2c_client, which may later be | ||
| 452 | * pointed to some address using I2C_SLAVE or I2C_SLAVE_FORCE. | ||
| 453 | * | ||
| 454 | * This client is ** NEVER REGISTERED ** with the driver model | ||
| 455 | * or I2C core code!! It just holds private copies of addressing | ||
| 456 | * information and maybe a PEC flag. | ||
| 457 | */ | ||
| 389 | client = kzalloc(sizeof(*client), GFP_KERNEL); | 458 | client = kzalloc(sizeof(*client), GFP_KERNEL); |
| 390 | if (!client) { | 459 | if (!client) { |
| 391 | i2c_put_adapter(adap); | 460 | i2c_put_adapter(adap); |
| @@ -394,7 +463,6 @@ static int i2cdev_open(struct inode *inode, struct file *file) | |||
| 394 | snprintf(client->name, I2C_NAME_SIZE, "i2c-dev %d", adap->nr); | 463 | snprintf(client->name, I2C_NAME_SIZE, "i2c-dev %d", adap->nr); |
| 395 | client->driver = &i2cdev_driver; | 464 | client->driver = &i2cdev_driver; |
| 396 | 465 | ||
| 397 | /* registered with adapter, passed as client to user */ | ||
| 398 | client->adapter = adap; | 466 | client->adapter = adap; |
| 399 | file->private_data = client; | 467 | file->private_data = client; |
| 400 | 468 | ||
| @@ -422,6 +490,14 @@ static const struct file_operations i2cdev_fops = { | |||
| 422 | .release = i2cdev_release, | 490 | .release = i2cdev_release, |
| 423 | }; | 491 | }; |
| 424 | 492 | ||
| 493 | /* ------------------------------------------------------------------------- */ | ||
| 494 | |||
| 495 | /* | ||
| 496 | * The legacy "i2cdev_driver" is used primarily to get notifications when | ||
| 497 | * I2C adapters are added or removed, so that each one gets an i2c_dev | ||
| 498 | * and is thus made available to userspace driver code. | ||
| 499 | */ | ||
| 500 | |||
| 425 | static struct class *i2c_dev_class; | 501 | static struct class *i2c_dev_class; |
| 426 | 502 | ||
| 427 | static int i2cdev_attach_adapter(struct i2c_adapter *adap) | 503 | static int i2cdev_attach_adapter(struct i2c_adapter *adap) |
| @@ -486,6 +562,12 @@ static struct i2c_driver i2cdev_driver = { | |||
| 486 | .detach_client = i2cdev_detach_client, | 562 | .detach_client = i2cdev_detach_client, |
| 487 | }; | 563 | }; |
| 488 | 564 | ||
| 565 | /* ------------------------------------------------------------------------- */ | ||
| 566 | |||
| 567 | /* | ||
| 568 | * module load/unload record keeping | ||
| 569 | */ | ||
| 570 | |||
| 489 | static int __init i2c_dev_init(void) | 571 | static int __init i2c_dev_init(void) |
| 490 | { | 572 | { |
| 491 | int res; | 573 | int res; |
diff --git a/drivers/ide/Kconfig b/drivers/ide/Kconfig index d1e8df187222..e445fe6e4ba9 100644 --- a/drivers/ide/Kconfig +++ b/drivers/ide/Kconfig | |||
| @@ -203,10 +203,6 @@ config BLK_DEV_IDECD | |||
| 203 | CD-ROM drive, you can say N to all other CD-ROM options, but be sure | 203 | CD-ROM drive, you can say N to all other CD-ROM options, but be sure |
| 204 | to say Y or M to "ISO 9660 CD-ROM file system support". | 204 | to say Y or M to "ISO 9660 CD-ROM file system support". |
| 205 | 205 | ||
| 206 | Note that older versions of LILO (LInux LOader) cannot properly deal | ||
| 207 | with IDE/ATAPI CD-ROMs, so install LILO 16 or higher, available from | ||
| 208 | <http://lilo.go.dyndns.org/>. | ||
| 209 | |||
| 210 | To compile this driver as a module, choose M here: the | 206 | To compile this driver as a module, choose M here: the |
| 211 | module will be called ide-cd. | 207 | module will be called ide-cd. |
| 212 | 208 | ||
diff --git a/drivers/ide/cris/ide-cris.c b/drivers/ide/cris/ide-cris.c index e196aefa2070..7f5bc2ee6c7e 100644 --- a/drivers/ide/cris/ide-cris.c +++ b/drivers/ide/cris/ide-cris.c | |||
| @@ -748,8 +748,7 @@ static void cris_set_dma_mode(ide_drive_t *drive, const u8 speed) | |||
| 748 | hold = ATA_DMA2_HOLD; | 748 | hold = ATA_DMA2_HOLD; |
| 749 | break; | 749 | break; |
| 750 | default: | 750 | default: |
| 751 | BUG(); | 751 | return; |
| 752 | break; | ||
| 753 | } | 752 | } |
| 754 | 753 | ||
| 755 | if (speed >= XFER_UDMA_0) | 754 | if (speed >= XFER_UDMA_0) |
diff --git a/drivers/ide/ide-io.c b/drivers/ide/ide-io.c index 755011827afa..db22d1ff4e55 100644 --- a/drivers/ide/ide-io.c +++ b/drivers/ide/ide-io.c | |||
| @@ -885,7 +885,6 @@ static ide_startstop_t execute_drive_cmd (ide_drive_t *drive, | |||
| 885 | return do_rw_taskfile(drive, args); | 885 | return do_rw_taskfile(drive, args); |
| 886 | } else if (rq->cmd_type == REQ_TYPE_ATA_TASK) { | 886 | } else if (rq->cmd_type == REQ_TYPE_ATA_TASK) { |
| 887 | u8 *args = rq->buffer; | 887 | u8 *args = rq->buffer; |
| 888 | u8 sel; | ||
| 889 | 888 | ||
| 890 | if (!args) | 889 | if (!args) |
| 891 | goto done; | 890 | goto done; |
| @@ -903,10 +902,7 @@ static ide_startstop_t execute_drive_cmd (ide_drive_t *drive, | |||
| 903 | hwif->OUTB(args[3], IDE_SECTOR_REG); | 902 | hwif->OUTB(args[3], IDE_SECTOR_REG); |
| 904 | hwif->OUTB(args[4], IDE_LCYL_REG); | 903 | hwif->OUTB(args[4], IDE_LCYL_REG); |
| 905 | hwif->OUTB(args[5], IDE_HCYL_REG); | 904 | hwif->OUTB(args[5], IDE_HCYL_REG); |
| 906 | sel = (args[6] & ~0x10); | 905 | hwif->OUTB((args[6] & 0xEF)|drive->select.all, IDE_SELECT_REG); |
| 907 | if (drive->select.b.unit) | ||
| 908 | sel |= 0x10; | ||
| 909 | hwif->OUTB(sel, IDE_SELECT_REG); | ||
| 910 | ide_cmd(drive, args[0], args[2], &drive_cmd_intr); | 906 | ide_cmd(drive, args[0], args[2], &drive_cmd_intr); |
| 911 | return ide_started; | 907 | return ide_started; |
| 912 | } else if (rq->cmd_type == REQ_TYPE_ATA_CMD) { | 908 | } else if (rq->cmd_type == REQ_TYPE_ATA_CMD) { |
diff --git a/drivers/ide/ide-lib.c b/drivers/ide/ide-lib.c index af86433baede..1609b8604f56 100644 --- a/drivers/ide/ide-lib.c +++ b/drivers/ide/ide-lib.c | |||
| @@ -514,6 +514,7 @@ static u8 ide_dump_ata_status(ide_drive_t *drive, const char *msg, u8 stat) | |||
| 514 | if (drive->addressing == 1) { | 514 | if (drive->addressing == 1) { |
| 515 | __u64 sectors = 0; | 515 | __u64 sectors = 0; |
| 516 | u32 low = 0, high = 0; | 516 | u32 low = 0, high = 0; |
| 517 | hwif->OUTB(drive->ctl&~0x80, IDE_CONTROL_REG); | ||
| 517 | low = ide_read_24(drive); | 518 | low = ide_read_24(drive); |
| 518 | hwif->OUTB(drive->ctl|0x80, IDE_CONTROL_REG); | 519 | hwif->OUTB(drive->ctl|0x80, IDE_CONTROL_REG); |
| 519 | high = ide_read_24(drive); | 520 | high = ide_read_24(drive); |
diff --git a/drivers/ide/pci/cmd64x.c b/drivers/ide/pci/cmd64x.c index ea0143ef5fe5..51fca441c294 100644 --- a/drivers/ide/pci/cmd64x.c +++ b/drivers/ide/pci/cmd64x.c | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * linux/drivers/ide/pci/cmd64x.c Version 1.50 May 10, 2007 | 2 | * linux/drivers/ide/pci/cmd64x.c Version 1.51 Nov 8, 2007 |
| 3 | * | 3 | * |
| 4 | * cmd64x.c: Enable interrupts at initialization time on Ultra/PCI machines. | 4 | * cmd64x.c: Enable interrupts at initialization time on Ultra/PCI machines. |
| 5 | * Due to massive hardware bugs, UltraDMA is only supported | 5 | * Due to massive hardware bugs, UltraDMA is only supported |
| @@ -339,7 +339,8 @@ static int cmd648_ide_dma_end (ide_drive_t *drive) | |||
| 339 | u8 mrdmode = inb(hwif->dma_master + 0x01); | 339 | u8 mrdmode = inb(hwif->dma_master + 0x01); |
| 340 | 340 | ||
| 341 | /* clear the interrupt bit */ | 341 | /* clear the interrupt bit */ |
| 342 | outb(mrdmode | irq_mask, hwif->dma_master + 0x01); | 342 | outb((mrdmode & ~(MRDMODE_INTR_CH0 | MRDMODE_INTR_CH1)) | irq_mask, |
| 343 | hwif->dma_master + 0x01); | ||
| 343 | 344 | ||
| 344 | return err; | 345 | return err; |
| 345 | } | 346 | } |
diff --git a/drivers/ide/pci/cs5530.c b/drivers/ide/pci/cs5530.c index 599408952bd4..547690395eee 100644 --- a/drivers/ide/pci/cs5530.c +++ b/drivers/ide/pci/cs5530.c | |||
| @@ -117,8 +117,7 @@ static void cs5530_set_dma_mode(ide_drive_t *drive, const u8 mode) | |||
| 117 | case XFER_MW_DMA_1: timings = 0x00012121; break; | 117 | case XFER_MW_DMA_1: timings = 0x00012121; break; |
| 118 | case XFER_MW_DMA_2: timings = 0x00002020; break; | 118 | case XFER_MW_DMA_2: timings = 0x00002020; break; |
| 119 | default: | 119 | default: |
| 120 | BUG(); | 120 | return; |
| 121 | break; | ||
| 122 | } | 121 | } |
| 123 | basereg = CS5530_BASEREG(drive->hwif); | 122 | basereg = CS5530_BASEREG(drive->hwif); |
| 124 | reg = inl(basereg + 4); /* get drive0 config register */ | 123 | reg = inl(basereg + 4); /* get drive0 config register */ |
diff --git a/drivers/ide/pci/it821x.c b/drivers/ide/pci/it821x.c index 5c9975435319..99b7d763b6c7 100644 --- a/drivers/ide/pci/it821x.c +++ b/drivers/ide/pci/it821x.c | |||
| @@ -653,8 +653,7 @@ static const struct ide_port_info it821x_chipsets[] __devinitdata = { | |||
| 653 | 653 | ||
| 654 | static int __devinit it821x_init_one(struct pci_dev *dev, const struct pci_device_id *id) | 654 | static int __devinit it821x_init_one(struct pci_dev *dev, const struct pci_device_id *id) |
| 655 | { | 655 | { |
| 656 | ide_setup_pci_device(dev, &it821x_chipsets[id->driver_data]); | 656 | return ide_setup_pci_device(dev, &it821x_chipsets[id->driver_data]); |
| 657 | return 0; | ||
| 658 | } | 657 | } |
| 659 | 658 | ||
| 660 | static const struct pci_device_id it821x_pci_tbl[] = { | 659 | static const struct pci_device_id it821x_pci_tbl[] = { |
diff --git a/drivers/ide/pci/jmicron.c b/drivers/ide/pci/jmicron.c index bdf64d997708..0083eaf89c77 100644 --- a/drivers/ide/pci/jmicron.c +++ b/drivers/ide/pci/jmicron.c | |||
| @@ -139,8 +139,7 @@ static const struct ide_port_info jmicron_chipset __devinitdata = { | |||
| 139 | 139 | ||
| 140 | static int __devinit jmicron_init_one(struct pci_dev *dev, const struct pci_device_id *id) | 140 | static int __devinit jmicron_init_one(struct pci_dev *dev, const struct pci_device_id *id) |
| 141 | { | 141 | { |
| 142 | ide_setup_pci_device(dev, &jmicron_chipset); | 142 | return ide_setup_pci_device(dev, &jmicron_chipset); |
| 143 | return 0; | ||
| 144 | } | 143 | } |
| 145 | 144 | ||
| 146 | /* All JMB PATA controllers have and will continue to have the same | 145 | /* All JMB PATA controllers have and will continue to have the same |
diff --git a/drivers/ide/pci/sc1200.c b/drivers/ide/pci/sc1200.c index 0a7b3202066d..707d5ff66b03 100644 --- a/drivers/ide/pci/sc1200.c +++ b/drivers/ide/pci/sc1200.c | |||
| @@ -186,8 +186,7 @@ static void sc1200_set_dma_mode(ide_drive_t *drive, const u8 mode) | |||
| 186 | } | 186 | } |
| 187 | break; | 187 | break; |
| 188 | default: | 188 | default: |
| 189 | BUG(); | 189 | return; |
| 190 | break; | ||
| 191 | } | 190 | } |
| 192 | 191 | ||
| 193 | if (unit == 0) { /* are we configuring drive0? */ | 192 | if (unit == 0) { /* are we configuring drive0? */ |
diff --git a/drivers/ide/pci/sis5513.c b/drivers/ide/pci/sis5513.c index 6b7bb53acefd..f6e2ab3dd166 100644 --- a/drivers/ide/pci/sis5513.c +++ b/drivers/ide/pci/sis5513.c | |||
| @@ -356,7 +356,6 @@ static void sis_set_dma_mode(ide_drive_t *drive, const u8 speed) | |||
| 356 | sis_program_timings(drive, speed); | 356 | sis_program_timings(drive, speed); |
| 357 | break; | 357 | break; |
| 358 | default: | 358 | default: |
| 359 | BUG(); | ||
| 360 | break; | 359 | break; |
| 361 | } | 360 | } |
| 362 | } | 361 | } |
diff --git a/drivers/ide/ppc/pmac.c b/drivers/ide/ppc/pmac.c index 816b5311dad6..5afdfef7264c 100644 --- a/drivers/ide/ppc/pmac.c +++ b/drivers/ide/ppc/pmac.c | |||
| @@ -1138,6 +1138,7 @@ pmac_ide_setup_device(pmac_ide_hwif_t *pmif, ide_hwif_t *hwif) | |||
| 1138 | hwif->drives[0].autotune = IDE_TUNE_AUTO; | 1138 | hwif->drives[0].autotune = IDE_TUNE_AUTO; |
| 1139 | hwif->drives[1].autotune = IDE_TUNE_AUTO; | 1139 | hwif->drives[1].autotune = IDE_TUNE_AUTO; |
| 1140 | hwif->host_flags = IDE_HFLAG_SET_PIO_MODE_KEEP_DMA | | 1140 | hwif->host_flags = IDE_HFLAG_SET_PIO_MODE_KEEP_DMA | |
| 1141 | IDE_HFLAG_PIO_NO_DOWNGRADE | | ||
| 1141 | IDE_HFLAG_POST_SET_MODE; | 1142 | IDE_HFLAG_POST_SET_MODE; |
| 1142 | hwif->pio_mask = ATA_PIO4; | 1143 | hwif->pio_mask = ATA_PIO4; |
| 1143 | hwif->set_pio_mode = pmac_ide_set_pio_mode; | 1144 | hwif->set_pio_mode = pmac_ide_set_pio_mode; |
diff --git a/drivers/ide/setup-pci.c b/drivers/ide/setup-pci.c index 02d14bf85ab2..25fd09053220 100644 --- a/drivers/ide/setup-pci.c +++ b/drivers/ide/setup-pci.c | |||
| @@ -7,11 +7,6 @@ | |||
| 7 | * May be copied or modified under the terms of the GNU General Public License | 7 | * May be copied or modified under the terms of the GNU General Public License |
| 8 | */ | 8 | */ |
| 9 | 9 | ||
| 10 | /* | ||
| 11 | * This module provides support for automatic detection and | ||
| 12 | * configuration of all PCI IDE interfaces present in a system. | ||
| 13 | */ | ||
| 14 | |||
| 15 | #include <linux/module.h> | 10 | #include <linux/module.h> |
| 16 | #include <linux/types.h> | 11 | #include <linux/types.h> |
| 17 | #include <linux/kernel.h> | 12 | #include <linux/kernel.h> |
diff --git a/drivers/infiniband/hw/cxgb3/iwch_provider.c b/drivers/infiniband/hw/cxgb3/iwch_provider.c index f0c777589374..b5436ca92e68 100644 --- a/drivers/infiniband/hw/cxgb3/iwch_provider.c +++ b/drivers/infiniband/hw/cxgb3/iwch_provider.c | |||
| @@ -1000,6 +1000,7 @@ static int iwch_query_device(struct ib_device *ibdev, | |||
| 1000 | props->max_sge = dev->attr.max_sge_per_wr; | 1000 | props->max_sge = dev->attr.max_sge_per_wr; |
| 1001 | props->max_sge_rd = 1; | 1001 | props->max_sge_rd = 1; |
| 1002 | props->max_qp_rd_atom = dev->attr.max_rdma_reads_per_qp; | 1002 | props->max_qp_rd_atom = dev->attr.max_rdma_reads_per_qp; |
| 1003 | props->max_qp_init_rd_atom = dev->attr.max_rdma_reads_per_qp; | ||
| 1003 | props->max_cq = dev->attr.max_cqs; | 1004 | props->max_cq = dev->attr.max_cqs; |
| 1004 | props->max_cqe = dev->attr.max_cqes_per_cq; | 1005 | props->max_cqe = dev->attr.max_cqes_per_cq; |
| 1005 | props->max_mr = dev->attr.max_mem_regs; | 1006 | props->max_mr = dev->attr.max_mem_regs; |
diff --git a/drivers/infiniband/hw/ehca/ehca_av.c b/drivers/infiniband/hw/ehca/ehca_av.c index 97d108634c58..453eb995c1d4 100644 --- a/drivers/infiniband/hw/ehca/ehca_av.c +++ b/drivers/infiniband/hw/ehca/ehca_av.c | |||
| @@ -50,6 +50,38 @@ | |||
| 50 | 50 | ||
| 51 | static struct kmem_cache *av_cache; | 51 | static struct kmem_cache *av_cache; |
| 52 | 52 | ||
| 53 | int ehca_calc_ipd(struct ehca_shca *shca, int port, | ||
| 54 | enum ib_rate path_rate, u32 *ipd) | ||
| 55 | { | ||
| 56 | int path = ib_rate_to_mult(path_rate); | ||
| 57 | int link, ret; | ||
| 58 | struct ib_port_attr pa; | ||
| 59 | |||
| 60 | if (path_rate == IB_RATE_PORT_CURRENT) { | ||
| 61 | *ipd = 0; | ||
| 62 | return 0; | ||
| 63 | } | ||
| 64 | |||
| 65 | if (unlikely(path < 0)) { | ||
| 66 | ehca_err(&shca->ib_device, "Invalid static rate! path_rate=%x", | ||
| 67 | path_rate); | ||
| 68 | return -EINVAL; | ||
| 69 | } | ||
| 70 | |||
| 71 | ret = ehca_query_port(&shca->ib_device, port, &pa); | ||
| 72 | if (unlikely(ret < 0)) { | ||
| 73 | ehca_err(&shca->ib_device, "Failed to query port ret=%i", ret); | ||
| 74 | return ret; | ||
| 75 | } | ||
| 76 | |||
| 77 | link = ib_width_enum_to_int(pa.active_width) * pa.active_speed; | ||
| 78 | |||
| 79 | /* IPD = round((link / path) - 1) */ | ||
| 80 | *ipd = ((link + (path >> 1)) / path) - 1; | ||
| 81 | |||
| 82 | return 0; | ||
| 83 | } | ||
| 84 | |||
| 53 | struct ib_ah *ehca_create_ah(struct ib_pd *pd, struct ib_ah_attr *ah_attr) | 85 | struct ib_ah *ehca_create_ah(struct ib_pd *pd, struct ib_ah_attr *ah_attr) |
| 54 | { | 86 | { |
| 55 | int ret; | 87 | int ret; |
| @@ -69,15 +101,13 @@ struct ib_ah *ehca_create_ah(struct ib_pd *pd, struct ib_ah_attr *ah_attr) | |||
| 69 | av->av.slid_path_bits = ah_attr->src_path_bits; | 101 | av->av.slid_path_bits = ah_attr->src_path_bits; |
| 70 | 102 | ||
| 71 | if (ehca_static_rate < 0) { | 103 | if (ehca_static_rate < 0) { |
| 72 | int ah_mult = ib_rate_to_mult(ah_attr->static_rate); | 104 | u32 ipd; |
| 73 | int ehca_mult = | 105 | if (ehca_calc_ipd(shca, ah_attr->port_num, |
| 74 | ib_rate_to_mult(shca->sport[ah_attr->port_num].rate ); | 106 | ah_attr->static_rate, &ipd)) { |
| 75 | 107 | ret = -EINVAL; | |
| 76 | if (ah_mult >= ehca_mult) | 108 | goto create_ah_exit1; |
| 77 | av->av.ipd = 0; | 109 | } |
| 78 | else | 110 | av->av.ipd = ipd; |
| 79 | av->av.ipd = (ah_mult > 0) ? | ||
| 80 | ((ehca_mult - 1) / ah_mult) : 0; | ||
| 81 | } else | 111 | } else |
| 82 | av->av.ipd = ehca_static_rate; | 112 | av->av.ipd = ehca_static_rate; |
| 83 | 113 | ||
diff --git a/drivers/infiniband/hw/ehca/ehca_classes.h b/drivers/infiniband/hw/ehca/ehca_classes.h index 2d660ae189e5..87f12d4312a7 100644 --- a/drivers/infiniband/hw/ehca/ehca_classes.h +++ b/drivers/infiniband/hw/ehca/ehca_classes.h | |||
| @@ -95,7 +95,6 @@ struct ehca_sma_attr { | |||
| 95 | struct ehca_sport { | 95 | struct ehca_sport { |
| 96 | struct ib_cq *ibcq_aqp1; | 96 | struct ib_cq *ibcq_aqp1; |
| 97 | struct ib_qp *ibqp_aqp1; | 97 | struct ib_qp *ibqp_aqp1; |
| 98 | enum ib_rate rate; | ||
| 99 | enum ib_port_state port_state; | 98 | enum ib_port_state port_state; |
| 100 | struct ehca_sma_attr saved_attr; | 99 | struct ehca_sma_attr saved_attr; |
| 101 | }; | 100 | }; |
diff --git a/drivers/infiniband/hw/ehca/ehca_hca.c b/drivers/infiniband/hw/ehca/ehca_hca.c index 15806d140461..5bd7b591987e 100644 --- a/drivers/infiniband/hw/ehca/ehca_hca.c +++ b/drivers/infiniband/hw/ehca/ehca_hca.c | |||
| @@ -151,7 +151,6 @@ int ehca_query_port(struct ib_device *ibdev, | |||
| 151 | } | 151 | } |
| 152 | 152 | ||
| 153 | memset(props, 0, sizeof(struct ib_port_attr)); | 153 | memset(props, 0, sizeof(struct ib_port_attr)); |
| 154 | props->state = rblock->state; | ||
| 155 | 154 | ||
| 156 | switch (rblock->max_mtu) { | 155 | switch (rblock->max_mtu) { |
| 157 | case 0x1: | 156 | case 0x1: |
| @@ -188,11 +187,20 @@ int ehca_query_port(struct ib_device *ibdev, | |||
| 188 | props->subnet_timeout = rblock->subnet_timeout; | 187 | props->subnet_timeout = rblock->subnet_timeout; |
| 189 | props->init_type_reply = rblock->init_type_reply; | 188 | props->init_type_reply = rblock->init_type_reply; |
| 190 | 189 | ||
| 191 | props->active_width = IB_WIDTH_12X; | 190 | if (rblock->state && rblock->phys_width) { |
| 192 | props->active_speed = 0x1; | 191 | props->phys_state = rblock->phys_pstate; |
| 193 | 192 | props->state = rblock->phys_state; | |
| 194 | /* at the moment (logical) link state is always LINK_UP */ | 193 | props->active_width = rblock->phys_width; |
| 195 | props->phys_state = 0x5; | 194 | props->active_speed = rblock->phys_speed; |
| 195 | } else { | ||
| 196 | /* old firmware releases don't report physical | ||
| 197 | * port info, so use default values | ||
| 198 | */ | ||
| 199 | props->phys_state = 5; | ||
| 200 | props->state = rblock->state; | ||
| 201 | props->active_width = IB_WIDTH_12X; | ||
| 202 | props->active_speed = 0x1; | ||
| 203 | } | ||
| 196 | 204 | ||
| 197 | query_port1: | 205 | query_port1: |
| 198 | ehca_free_fw_ctrlblock(rblock); | 206 | ehca_free_fw_ctrlblock(rblock); |
diff --git a/drivers/infiniband/hw/ehca/ehca_iverbs.h b/drivers/infiniband/hw/ehca/ehca_iverbs.h index dce503bb7d6b..5485799cdc8d 100644 --- a/drivers/infiniband/hw/ehca/ehca_iverbs.h +++ b/drivers/infiniband/hw/ehca/ehca_iverbs.h | |||
| @@ -189,6 +189,9 @@ int ehca_mmap(struct ib_ucontext *context, struct vm_area_struct *vma); | |||
| 189 | 189 | ||
| 190 | void ehca_poll_eqs(unsigned long data); | 190 | void ehca_poll_eqs(unsigned long data); |
| 191 | 191 | ||
| 192 | int ehca_calc_ipd(struct ehca_shca *shca, int port, | ||
| 193 | enum ib_rate path_rate, u32 *ipd); | ||
| 194 | |||
| 192 | #ifdef CONFIG_PPC_64K_PAGES | 195 | #ifdef CONFIG_PPC_64K_PAGES |
| 193 | void *ehca_alloc_fw_ctrlblock(gfp_t flags); | 196 | void *ehca_alloc_fw_ctrlblock(gfp_t flags); |
| 194 | void ehca_free_fw_ctrlblock(void *ptr); | 197 | void ehca_free_fw_ctrlblock(void *ptr); |
diff --git a/drivers/infiniband/hw/ehca/ehca_main.c b/drivers/infiniband/hw/ehca/ehca_main.c index c6cd38c5321f..90d4334179bf 100644 --- a/drivers/infiniband/hw/ehca/ehca_main.c +++ b/drivers/infiniband/hw/ehca/ehca_main.c | |||
| @@ -327,9 +327,6 @@ static int ehca_sense_attributes(struct ehca_shca *shca) | |||
| 327 | shca->hw_level = ehca_hw_level; | 327 | shca->hw_level = ehca_hw_level; |
| 328 | ehca_gen_dbg(" ... hardware level=%x", shca->hw_level); | 328 | ehca_gen_dbg(" ... hardware level=%x", shca->hw_level); |
| 329 | 329 | ||
| 330 | shca->sport[0].rate = IB_RATE_30_GBPS; | ||
| 331 | shca->sport[1].rate = IB_RATE_30_GBPS; | ||
| 332 | |||
| 333 | shca->hca_cap = rblock->hca_cap_indicators; | 330 | shca->hca_cap = rblock->hca_cap_indicators; |
| 334 | ehca_gen_dbg(" ... HCA capabilities:"); | 331 | ehca_gen_dbg(" ... HCA capabilities:"); |
| 335 | for (i = 0; i < ARRAY_SIZE(hca_cap_descr); i++) | 332 | for (i = 0; i < ARRAY_SIZE(hca_cap_descr); i++) |
diff --git a/drivers/infiniband/hw/ehca/ehca_qp.c b/drivers/infiniband/hw/ehca/ehca_qp.c index de182648b282..2e3e6547cb78 100644 --- a/drivers/infiniband/hw/ehca/ehca_qp.c +++ b/drivers/infiniband/hw/ehca/ehca_qp.c | |||
| @@ -1196,10 +1196,6 @@ static int internal_modify_qp(struct ib_qp *ibqp, | |||
| 1196 | update_mask |= EHCA_BMASK_SET(MQPCB_MASK_QKEY, 1); | 1196 | update_mask |= EHCA_BMASK_SET(MQPCB_MASK_QKEY, 1); |
| 1197 | } | 1197 | } |
| 1198 | if (attr_mask & IB_QP_AV) { | 1198 | if (attr_mask & IB_QP_AV) { |
| 1199 | int ah_mult = ib_rate_to_mult(attr->ah_attr.static_rate); | ||
| 1200 | int ehca_mult = ib_rate_to_mult(shca->sport[my_qp-> | ||
| 1201 | init_attr.port_num].rate); | ||
| 1202 | |||
| 1203 | mqpcb->dlid = attr->ah_attr.dlid; | 1199 | mqpcb->dlid = attr->ah_attr.dlid; |
| 1204 | update_mask |= EHCA_BMASK_SET(MQPCB_MASK_DLID, 1); | 1200 | update_mask |= EHCA_BMASK_SET(MQPCB_MASK_DLID, 1); |
| 1205 | mqpcb->source_path_bits = attr->ah_attr.src_path_bits; | 1201 | mqpcb->source_path_bits = attr->ah_attr.src_path_bits; |
| @@ -1207,11 +1203,12 @@ static int internal_modify_qp(struct ib_qp *ibqp, | |||
| 1207 | mqpcb->service_level = attr->ah_attr.sl; | 1203 | mqpcb->service_level = attr->ah_attr.sl; |
| 1208 | update_mask |= EHCA_BMASK_SET(MQPCB_MASK_SERVICE_LEVEL, 1); | 1204 | update_mask |= EHCA_BMASK_SET(MQPCB_MASK_SERVICE_LEVEL, 1); |
| 1209 | 1205 | ||
| 1210 | if (ah_mult < ehca_mult) | 1206 | if (ehca_calc_ipd(shca, my_qp->init_attr.port_num, |
| 1211 | mqpcb->max_static_rate = (ah_mult > 0) ? | 1207 | attr->ah_attr.static_rate, |
| 1212 | ((ehca_mult - 1) / ah_mult) : 0; | 1208 | &mqpcb->max_static_rate)) { |
| 1213 | else | 1209 | ret = -EINVAL; |
| 1214 | mqpcb->max_static_rate = 0; | 1210 | goto modify_qp_exit2; |
| 1211 | } | ||
| 1215 | update_mask |= EHCA_BMASK_SET(MQPCB_MASK_MAX_STATIC_RATE, 1); | 1212 | update_mask |= EHCA_BMASK_SET(MQPCB_MASK_MAX_STATIC_RATE, 1); |
| 1216 | 1213 | ||
| 1217 | /* | 1214 | /* |
| @@ -1280,10 +1277,6 @@ static int internal_modify_qp(struct ib_qp *ibqp, | |||
| 1280 | (MQPCB_MASK_RDMA_ATOMIC_OUTST_DEST_QP, 1); | 1277 | (MQPCB_MASK_RDMA_ATOMIC_OUTST_DEST_QP, 1); |
| 1281 | } | 1278 | } |
| 1282 | if (attr_mask & IB_QP_ALT_PATH) { | 1279 | if (attr_mask & IB_QP_ALT_PATH) { |
| 1283 | int ah_mult = ib_rate_to_mult(attr->alt_ah_attr.static_rate); | ||
| 1284 | int ehca_mult = ib_rate_to_mult( | ||
| 1285 | shca->sport[my_qp->init_attr.port_num].rate); | ||
| 1286 | |||
| 1287 | if (attr->alt_port_num < 1 | 1280 | if (attr->alt_port_num < 1 |
| 1288 | || attr->alt_port_num > shca->num_ports) { | 1281 | || attr->alt_port_num > shca->num_ports) { |
| 1289 | ret = -EINVAL; | 1282 | ret = -EINVAL; |
| @@ -1309,10 +1302,12 @@ static int internal_modify_qp(struct ib_qp *ibqp, | |||
| 1309 | mqpcb->source_path_bits_al = attr->alt_ah_attr.src_path_bits; | 1302 | mqpcb->source_path_bits_al = attr->alt_ah_attr.src_path_bits; |
| 1310 | mqpcb->service_level_al = attr->alt_ah_attr.sl; | 1303 | mqpcb->service_level_al = attr->alt_ah_attr.sl; |
| 1311 | 1304 | ||
| 1312 | if (ah_mult > 0 && ah_mult < ehca_mult) | 1305 | if (ehca_calc_ipd(shca, my_qp->init_attr.port_num, |
| 1313 | mqpcb->max_static_rate_al = (ehca_mult - 1) / ah_mult; | 1306 | attr->alt_ah_attr.static_rate, |
| 1314 | else | 1307 | &mqpcb->max_static_rate_al)) { |
| 1315 | mqpcb->max_static_rate_al = 0; | 1308 | ret = -EINVAL; |
| 1309 | goto modify_qp_exit2; | ||
| 1310 | } | ||
| 1316 | 1311 | ||
| 1317 | /* OpenIB doesn't support alternate retry counts - copy them */ | 1312 | /* OpenIB doesn't support alternate retry counts - copy them */ |
| 1318 | mqpcb->retry_count_al = mqpcb->retry_count; | 1313 | mqpcb->retry_count_al = mqpcb->retry_count; |
diff --git a/drivers/infiniband/hw/ehca/hipz_hw.h b/drivers/infiniband/hw/ehca/hipz_hw.h index d9739e554515..485b8400359e 100644 --- a/drivers/infiniband/hw/ehca/hipz_hw.h +++ b/drivers/infiniband/hw/ehca/hipz_hw.h | |||
| @@ -402,7 +402,11 @@ struct hipz_query_port { | |||
| 402 | u64 max_msg_sz; | 402 | u64 max_msg_sz; |
| 403 | u32 max_mtu; | 403 | u32 max_mtu; |
| 404 | u32 vl_cap; | 404 | u32 vl_cap; |
| 405 | u8 reserved2[1900]; | 405 | u32 phys_pstate; |
| 406 | u32 phys_state; | ||
| 407 | u32 phys_speed; | ||
| 408 | u32 phys_width; | ||
| 409 | u8 reserved2[1884]; | ||
| 406 | u64 guid_entries[255]; | 410 | u64 guid_entries[255]; |
| 407 | } __attribute__ ((packed)); | 411 | } __attribute__ ((packed)); |
| 408 | 412 | ||
diff --git a/drivers/infiniband/hw/ipath/ipath_cq.c b/drivers/infiniband/hw/ipath/ipath_cq.c index 645ed71fd797..08d8ae148cd0 100644 --- a/drivers/infiniband/hw/ipath/ipath_cq.c +++ b/drivers/infiniband/hw/ipath/ipath_cq.c | |||
| @@ -404,7 +404,7 @@ int ipath_resize_cq(struct ib_cq *ibcq, int cqe, struct ib_udata *udata) | |||
| 404 | 404 | ||
| 405 | ret = ib_copy_to_udata(udata, &offset, sizeof(offset)); | 405 | ret = ib_copy_to_udata(udata, &offset, sizeof(offset)); |
| 406 | if (ret) | 406 | if (ret) |
| 407 | goto bail; | 407 | goto bail_free; |
| 408 | } | 408 | } |
| 409 | 409 | ||
| 410 | spin_lock_irq(&cq->lock); | 410 | spin_lock_irq(&cq->lock); |
| @@ -424,10 +424,8 @@ int ipath_resize_cq(struct ib_cq *ibcq, int cqe, struct ib_udata *udata) | |||
| 424 | else | 424 | else |
| 425 | n = head - tail; | 425 | n = head - tail; |
| 426 | if (unlikely((u32)cqe < n)) { | 426 | if (unlikely((u32)cqe < n)) { |
| 427 | spin_unlock_irq(&cq->lock); | ||
| 428 | vfree(wc); | ||
| 429 | ret = -EOVERFLOW; | 427 | ret = -EOVERFLOW; |
| 430 | goto bail; | 428 | goto bail_unlock; |
| 431 | } | 429 | } |
| 432 | for (n = 0; tail != head; n++) { | 430 | for (n = 0; tail != head; n++) { |
| 433 | if (cq->ip) | 431 | if (cq->ip) |
| @@ -459,7 +457,12 @@ int ipath_resize_cq(struct ib_cq *ibcq, int cqe, struct ib_udata *udata) | |||
| 459 | } | 457 | } |
| 460 | 458 | ||
| 461 | ret = 0; | 459 | ret = 0; |
| 460 | goto bail; | ||
| 462 | 461 | ||
| 462 | bail_unlock: | ||
| 463 | spin_unlock_irq(&cq->lock); | ||
| 464 | bail_free: | ||
| 465 | vfree(wc); | ||
| 463 | bail: | 466 | bail: |
| 464 | return ret; | 467 | return ret; |
| 465 | } | 468 | } |
diff --git a/drivers/infiniband/hw/ipath/ipath_rc.c b/drivers/infiniband/hw/ipath/ipath_rc.c index 5c29b2bfea17..120a61b03bc4 100644 --- a/drivers/infiniband/hw/ipath/ipath_rc.c +++ b/drivers/infiniband/hw/ipath/ipath_rc.c | |||
| @@ -959,8 +959,9 @@ static int do_rc_ack(struct ipath_qp *qp, u32 aeth, u32 psn, int opcode, | |||
| 959 | /* If this is a partial ACK, reset the retransmit timer. */ | 959 | /* If this is a partial ACK, reset the retransmit timer. */ |
| 960 | if (qp->s_last != qp->s_tail) { | 960 | if (qp->s_last != qp->s_tail) { |
| 961 | spin_lock(&dev->pending_lock); | 961 | spin_lock(&dev->pending_lock); |
| 962 | list_add_tail(&qp->timerwait, | 962 | if (list_empty(&qp->timerwait)) |
| 963 | &dev->pending[dev->pending_index]); | 963 | list_add_tail(&qp->timerwait, |
| 964 | &dev->pending[dev->pending_index]); | ||
| 964 | spin_unlock(&dev->pending_lock); | 965 | spin_unlock(&dev->pending_lock); |
| 965 | /* | 966 | /* |
| 966 | * If we get a partial ACK for a resent operation, | 967 | * If we get a partial ACK for a resent operation, |
diff --git a/drivers/isdn/sc/card.h b/drivers/isdn/sc/card.h index 5992f63c383e..0120bcf88311 100644 --- a/drivers/isdn/sc/card.h +++ b/drivers/isdn/sc/card.h | |||
| @@ -109,7 +109,7 @@ void memcpy_fromshmem(int card, void *dest, const void *src, size_t n); | |||
| 109 | int get_card_from_id(int driver); | 109 | int get_card_from_id(int driver); |
| 110 | int indicate_status(int card, int event, ulong Channel, char *Data); | 110 | int indicate_status(int card, int event, ulong Channel, char *Data); |
| 111 | irqreturn_t interrupt_handler(int interrupt, void *cardptr); | 111 | irqreturn_t interrupt_handler(int interrupt, void *cardptr); |
| 112 | int sndpkt(int devId, int channel, struct sk_buff *data); | 112 | int sndpkt(int devId, int channel, int ack, struct sk_buff *data); |
| 113 | void rcvpkt(int card, RspMessage *rcvmsg); | 113 | void rcvpkt(int card, RspMessage *rcvmsg); |
| 114 | int command(isdn_ctrl *cmd); | 114 | int command(isdn_ctrl *cmd); |
| 115 | int reset(int card); | 115 | int reset(int card); |
diff --git a/drivers/isdn/sc/packet.c b/drivers/isdn/sc/packet.c index 92016a2608e9..5ff6ae868440 100644 --- a/drivers/isdn/sc/packet.c +++ b/drivers/isdn/sc/packet.c | |||
| @@ -20,7 +20,7 @@ | |||
| 20 | #include "message.h" | 20 | #include "message.h" |
| 21 | #include "card.h" | 21 | #include "card.h" |
| 22 | 22 | ||
| 23 | int sndpkt(int devId, int channel, struct sk_buff *data) | 23 | int sndpkt(int devId, int channel, int ack, struct sk_buff *data) |
| 24 | { | 24 | { |
| 25 | LLData ReqLnkWrite; | 25 | LLData ReqLnkWrite; |
| 26 | int status; | 26 | int status; |
diff --git a/drivers/isdn/sc/shmem.c b/drivers/isdn/sc/shmem.c index e0331e0094f1..712220cef139 100644 --- a/drivers/isdn/sc/shmem.c +++ b/drivers/isdn/sc/shmem.c | |||
| @@ -50,7 +50,7 @@ void memcpy_toshmem(int card, void *dest, const void *src, size_t n) | |||
| 50 | 50 | ||
| 51 | outb(((sc_adapter[card]->shmem_magic + ch * SRAM_PAGESIZE) >> 14) | 0x80, | 51 | outb(((sc_adapter[card]->shmem_magic + ch * SRAM_PAGESIZE) >> 14) | 0x80, |
| 52 | sc_adapter[card]->ioport[sc_adapter[card]->shmem_pgport]); | 52 | sc_adapter[card]->ioport[sc_adapter[card]->shmem_pgport]); |
| 53 | memcpy_toio(sc_adapter[card]->rambase + dest_rem, src, n); | 53 | memcpy_toio((void __iomem *)(sc_adapter[card]->rambase + dest_rem), src, n); |
| 54 | spin_unlock_irqrestore(&sc_adapter[card]->lock, flags); | 54 | spin_unlock_irqrestore(&sc_adapter[card]->lock, flags); |
| 55 | pr_debug("%s: set page to %#x\n",sc_adapter[card]->devicename, | 55 | pr_debug("%s: set page to %#x\n",sc_adapter[card]->devicename, |
| 56 | ((sc_adapter[card]->shmem_magic + ch * SRAM_PAGESIZE)>>14)|0x80); | 56 | ((sc_adapter[card]->shmem_magic + ch * SRAM_PAGESIZE)>>14)|0x80); |
diff --git a/drivers/lguest/lguest_user.c b/drivers/lguest/lguest_user.c index 9d716fa42cad..3b92a61ba8d2 100644 --- a/drivers/lguest/lguest_user.c +++ b/drivers/lguest/lguest_user.c | |||
| @@ -184,7 +184,7 @@ static int initialize(struct file *file, const unsigned long __user *input) | |||
| 184 | free_regs: | 184 | free_regs: |
| 185 | free_page(lg->regs_page); | 185 | free_page(lg->regs_page); |
| 186 | release_guest: | 186 | release_guest: |
| 187 | memset(lg, 0, sizeof(*lg)); | 187 | kfree(lg); |
| 188 | unlock: | 188 | unlock: |
| 189 | mutex_unlock(&lguest_lock); | 189 | mutex_unlock(&lguest_lock); |
| 190 | return err; | 190 | return err; |
diff --git a/drivers/md/raid5.c b/drivers/md/raid5.c index 1cfc984cc7b7..a5aad8cad843 100644 --- a/drivers/md/raid5.c +++ b/drivers/md/raid5.c | |||
| @@ -688,7 +688,8 @@ ops_run_prexor(struct stripe_head *sh, struct dma_async_tx_descriptor *tx) | |||
| 688 | } | 688 | } |
| 689 | 689 | ||
| 690 | static struct dma_async_tx_descriptor * | 690 | static struct dma_async_tx_descriptor * |
| 691 | ops_run_biodrain(struct stripe_head *sh, struct dma_async_tx_descriptor *tx) | 691 | ops_run_biodrain(struct stripe_head *sh, struct dma_async_tx_descriptor *tx, |
| 692 | unsigned long pending) | ||
| 692 | { | 693 | { |
| 693 | int disks = sh->disks; | 694 | int disks = sh->disks; |
| 694 | int pd_idx = sh->pd_idx, i; | 695 | int pd_idx = sh->pd_idx, i; |
| @@ -696,7 +697,7 @@ ops_run_biodrain(struct stripe_head *sh, struct dma_async_tx_descriptor *tx) | |||
| 696 | /* check if prexor is active which means only process blocks | 697 | /* check if prexor is active which means only process blocks |
| 697 | * that are part of a read-modify-write (Wantprexor) | 698 | * that are part of a read-modify-write (Wantprexor) |
| 698 | */ | 699 | */ |
| 699 | int prexor = test_bit(STRIPE_OP_PREXOR, &sh->ops.pending); | 700 | int prexor = test_bit(STRIPE_OP_PREXOR, &pending); |
| 700 | 701 | ||
| 701 | pr_debug("%s: stripe %llu\n", __FUNCTION__, | 702 | pr_debug("%s: stripe %llu\n", __FUNCTION__, |
| 702 | (unsigned long long)sh->sector); | 703 | (unsigned long long)sh->sector); |
| @@ -773,7 +774,8 @@ static void ops_complete_write(void *stripe_head_ref) | |||
| 773 | } | 774 | } |
| 774 | 775 | ||
| 775 | static void | 776 | static void |
| 776 | ops_run_postxor(struct stripe_head *sh, struct dma_async_tx_descriptor *tx) | 777 | ops_run_postxor(struct stripe_head *sh, struct dma_async_tx_descriptor *tx, |
| 778 | unsigned long pending) | ||
| 777 | { | 779 | { |
| 778 | /* kernel stack size limits the total number of disks */ | 780 | /* kernel stack size limits the total number of disks */ |
| 779 | int disks = sh->disks; | 781 | int disks = sh->disks; |
| @@ -781,7 +783,7 @@ ops_run_postxor(struct stripe_head *sh, struct dma_async_tx_descriptor *tx) | |||
| 781 | 783 | ||
| 782 | int count = 0, pd_idx = sh->pd_idx, i; | 784 | int count = 0, pd_idx = sh->pd_idx, i; |
| 783 | struct page *xor_dest; | 785 | struct page *xor_dest; |
| 784 | int prexor = test_bit(STRIPE_OP_PREXOR, &sh->ops.pending); | 786 | int prexor = test_bit(STRIPE_OP_PREXOR, &pending); |
| 785 | unsigned long flags; | 787 | unsigned long flags; |
| 786 | dma_async_tx_callback callback; | 788 | dma_async_tx_callback callback; |
| 787 | 789 | ||
| @@ -808,7 +810,7 @@ ops_run_postxor(struct stripe_head *sh, struct dma_async_tx_descriptor *tx) | |||
| 808 | } | 810 | } |
| 809 | 811 | ||
| 810 | /* check whether this postxor is part of a write */ | 812 | /* check whether this postxor is part of a write */ |
| 811 | callback = test_bit(STRIPE_OP_BIODRAIN, &sh->ops.pending) ? | 813 | callback = test_bit(STRIPE_OP_BIODRAIN, &pending) ? |
| 812 | ops_complete_write : ops_complete_postxor; | 814 | ops_complete_write : ops_complete_postxor; |
| 813 | 815 | ||
| 814 | /* 1/ if we prexor'd then the dest is reused as a source | 816 | /* 1/ if we prexor'd then the dest is reused as a source |
| @@ -896,12 +898,12 @@ static void raid5_run_ops(struct stripe_head *sh, unsigned long pending) | |||
| 896 | tx = ops_run_prexor(sh, tx); | 898 | tx = ops_run_prexor(sh, tx); |
| 897 | 899 | ||
| 898 | if (test_bit(STRIPE_OP_BIODRAIN, &pending)) { | 900 | if (test_bit(STRIPE_OP_BIODRAIN, &pending)) { |
| 899 | tx = ops_run_biodrain(sh, tx); | 901 | tx = ops_run_biodrain(sh, tx, pending); |
| 900 | overlap_clear++; | 902 | overlap_clear++; |
| 901 | } | 903 | } |
| 902 | 904 | ||
| 903 | if (test_bit(STRIPE_OP_POSTXOR, &pending)) | 905 | if (test_bit(STRIPE_OP_POSTXOR, &pending)) |
| 904 | ops_run_postxor(sh, tx); | 906 | ops_run_postxor(sh, tx, pending); |
| 905 | 907 | ||
| 906 | if (test_bit(STRIPE_OP_CHECK, &pending)) | 908 | if (test_bit(STRIPE_OP_CHECK, &pending)) |
| 907 | ops_run_check(sh); | 909 | ops_run_check(sh); |
diff --git a/drivers/misc/ioc4.c b/drivers/misc/ioc4.c index 6a5a05d1f392..05172d2613d6 100644 --- a/drivers/misc/ioc4.c +++ b/drivers/misc/ioc4.c | |||
| @@ -244,10 +244,11 @@ ioc4_variant(struct ioc4_driver_data *idd) | |||
| 244 | idd->idd_pdev->bus->number == pdev->bus->number && | 244 | idd->idd_pdev->bus->number == pdev->bus->number && |
| 245 | 3 == PCI_SLOT(pdev->devfn)) | 245 | 3 == PCI_SLOT(pdev->devfn)) |
| 246 | found = 1; | 246 | found = 1; |
| 247 | pci_dev_put(pdev); | ||
| 248 | } while (pdev && !found); | 247 | } while (pdev && !found); |
| 249 | if (NULL != pdev) | 248 | if (NULL != pdev) { |
| 249 | pci_dev_put(pdev); | ||
| 250 | return IOC4_VARIANT_IO9; | 250 | return IOC4_VARIANT_IO9; |
| 251 | } | ||
| 251 | 252 | ||
| 252 | /* IO10: Look for a Vitesse VSC 7174 at the same bus and slot 3. */ | 253 | /* IO10: Look for a Vitesse VSC 7174 at the same bus and slot 3. */ |
| 253 | pdev = NULL; | 254 | pdev = NULL; |
| @@ -258,10 +259,11 @@ ioc4_variant(struct ioc4_driver_data *idd) | |||
| 258 | idd->idd_pdev->bus->number == pdev->bus->number && | 259 | idd->idd_pdev->bus->number == pdev->bus->number && |
| 259 | 3 == PCI_SLOT(pdev->devfn)) | 260 | 3 == PCI_SLOT(pdev->devfn)) |
| 260 | found = 1; | 261 | found = 1; |
| 261 | pci_dev_put(pdev); | ||
| 262 | } while (pdev && !found); | 262 | } while (pdev && !found); |
| 263 | if (NULL != pdev) | 263 | if (NULL != pdev) { |
| 264 | pci_dev_put(pdev); | ||
| 264 | return IOC4_VARIANT_IO10; | 265 | return IOC4_VARIANT_IO10; |
| 266 | } | ||
| 265 | 267 | ||
| 266 | /* PCI-RT: No SCSI/SATA controller will be present */ | 268 | /* PCI-RT: No SCSI/SATA controller will be present */ |
| 267 | return IOC4_VARIANT_PCI_RT; | 269 | return IOC4_VARIANT_PCI_RT; |
diff --git a/drivers/net/arm/ep93xx_eth.c b/drivers/net/arm/ep93xx_eth.c index 7f016f3d5bf0..91a6590d107b 100644 --- a/drivers/net/arm/ep93xx_eth.c +++ b/drivers/net/arm/ep93xx_eth.c | |||
| @@ -417,7 +417,7 @@ static irqreturn_t ep93xx_irq(int irq, void *dev_id) | |||
| 417 | 417 | ||
| 418 | if (status & REG_INTSTS_RX) { | 418 | if (status & REG_INTSTS_RX) { |
| 419 | spin_lock(&ep->rx_lock); | 419 | spin_lock(&ep->rx_lock); |
| 420 | if (likely(__netif_rx_schedule_prep(dev, &ep->napi))) { | 420 | if (likely(netif_rx_schedule_prep(dev, &ep->napi))) { |
| 421 | wrl(ep, REG_INTEN, REG_INTEN_TX); | 421 | wrl(ep, REG_INTEN, REG_INTEN_TX); |
| 422 | __netif_rx_schedule(dev, &ep->napi); | 422 | __netif_rx_schedule(dev, &ep->napi); |
| 423 | } | 423 | } |
diff --git a/drivers/net/bonding/bond_main.c b/drivers/net/bonding/bond_main.c index a198404a3e36..423298c84a1d 100644 --- a/drivers/net/bonding/bond_main.c +++ b/drivers/net/bonding/bond_main.c | |||
| @@ -1847,9 +1847,9 @@ int bond_release(struct net_device *bond_dev, struct net_device *slave_dev) | |||
| 1847 | */ | 1847 | */ |
| 1848 | void bond_destroy(struct bonding *bond) | 1848 | void bond_destroy(struct bonding *bond) |
| 1849 | { | 1849 | { |
| 1850 | unregister_netdevice(bond->dev); | ||
| 1851 | bond_deinit(bond->dev); | 1850 | bond_deinit(bond->dev); |
| 1852 | bond_destroy_sysfs_entry(bond); | 1851 | bond_destroy_sysfs_entry(bond); |
| 1852 | unregister_netdevice(bond->dev); | ||
| 1853 | } | 1853 | } |
| 1854 | 1854 | ||
| 1855 | /* | 1855 | /* |
| @@ -4475,8 +4475,8 @@ static void bond_free_all(void) | |||
| 4475 | bond_mc_list_destroy(bond); | 4475 | bond_mc_list_destroy(bond); |
| 4476 | /* Release the bonded slaves */ | 4476 | /* Release the bonded slaves */ |
| 4477 | bond_release_all(bond_dev); | 4477 | bond_release_all(bond_dev); |
| 4478 | unregister_netdevice(bond_dev); | ||
| 4479 | bond_deinit(bond_dev); | 4478 | bond_deinit(bond_dev); |
| 4479 | unregister_netdevice(bond_dev); | ||
| 4480 | } | 4480 | } |
| 4481 | 4481 | ||
| 4482 | #ifdef CONFIG_PROC_FS | 4482 | #ifdef CONFIG_PROC_FS |
diff --git a/drivers/net/chelsio/sge.c b/drivers/net/chelsio/sge.c index ffa7e649a6ef..443666292a5c 100644 --- a/drivers/net/chelsio/sge.c +++ b/drivers/net/chelsio/sge.c | |||
| @@ -1379,11 +1379,11 @@ static void sge_rx(struct sge *sge, struct freelQ *fl, unsigned int len) | |||
| 1379 | } | 1379 | } |
| 1380 | __skb_pull(skb, sizeof(*p)); | 1380 | __skb_pull(skb, sizeof(*p)); |
| 1381 | 1381 | ||
| 1382 | skb->dev->last_rx = jiffies; | ||
| 1383 | st = per_cpu_ptr(sge->port_stats[p->iff], smp_processor_id()); | 1382 | st = per_cpu_ptr(sge->port_stats[p->iff], smp_processor_id()); |
| 1384 | st->rx_packets++; | 1383 | st->rx_packets++; |
| 1385 | 1384 | ||
| 1386 | skb->protocol = eth_type_trans(skb, adapter->port[p->iff].dev); | 1385 | skb->protocol = eth_type_trans(skb, adapter->port[p->iff].dev); |
| 1386 | skb->dev->last_rx = jiffies; | ||
| 1387 | if ((adapter->flags & RX_CSUM_ENABLED) && p->csum == 0xffff && | 1387 | if ((adapter->flags & RX_CSUM_ENABLED) && p->csum == 0xffff && |
| 1388 | skb->protocol == htons(ETH_P_IP) && | 1388 | skb->protocol == htons(ETH_P_IP) && |
| 1389 | (skb->data[9] == IPPROTO_TCP || skb->data[9] == IPPROTO_UDP)) { | 1389 | (skb->data[9] == IPPROTO_TCP || skb->data[9] == IPPROTO_UDP)) { |
diff --git a/drivers/net/cris/eth_v10.c b/drivers/net/cris/eth_v10.c index edd6828f0a78..917b7b46f1a7 100644 --- a/drivers/net/cris/eth_v10.c +++ b/drivers/net/cris/eth_v10.c | |||
| @@ -250,6 +250,7 @@ | |||
| 250 | #include <asm/system.h> | 250 | #include <asm/system.h> |
| 251 | #include <asm/ethernet.h> | 251 | #include <asm/ethernet.h> |
| 252 | #include <asm/cache.h> | 252 | #include <asm/cache.h> |
| 253 | #include <asm/arch/io_interface_mux.h> | ||
| 253 | 254 | ||
| 254 | //#define ETHDEBUG | 255 | //#define ETHDEBUG |
| 255 | #define D(x) | 256 | #define D(x) |
| @@ -279,6 +280,9 @@ struct net_local { | |||
| 279 | * by this lock as well. | 280 | * by this lock as well. |
| 280 | */ | 281 | */ |
| 281 | spinlock_t lock; | 282 | spinlock_t lock; |
| 283 | |||
| 284 | spinlock_t led_lock; /* Protect LED state */ | ||
| 285 | spinlock_t transceiver_lock; /* Protect transceiver state. */ | ||
| 282 | }; | 286 | }; |
| 283 | 287 | ||
| 284 | typedef struct etrax_eth_descr | 288 | typedef struct etrax_eth_descr |
| @@ -295,8 +299,6 @@ struct transceiver_ops | |||
| 295 | void (*check_duplex)(struct net_device* dev); | 299 | void (*check_duplex)(struct net_device* dev); |
| 296 | }; | 300 | }; |
| 297 | 301 | ||
| 298 | struct transceiver_ops* transceiver; | ||
| 299 | |||
| 300 | /* Duplex settings */ | 302 | /* Duplex settings */ |
| 301 | enum duplex | 303 | enum duplex |
| 302 | { | 304 | { |
| @@ -307,7 +309,7 @@ enum duplex | |||
| 307 | 309 | ||
| 308 | /* Dma descriptors etc. */ | 310 | /* Dma descriptors etc. */ |
| 309 | 311 | ||
| 310 | #define MAX_MEDIA_DATA_SIZE 1518 | 312 | #define MAX_MEDIA_DATA_SIZE 1522 |
| 311 | 313 | ||
| 312 | #define MIN_PACKET_LEN 46 | 314 | #define MIN_PACKET_LEN 46 |
| 313 | #define ETHER_HEAD_LEN 14 | 315 | #define ETHER_HEAD_LEN 14 |
| @@ -332,8 +334,8 @@ enum duplex | |||
| 332 | 334 | ||
| 333 | /*Intel LXT972A specific*/ | 335 | /*Intel LXT972A specific*/ |
| 334 | #define MDIO_INT_STATUS_REG_2 0x0011 | 336 | #define MDIO_INT_STATUS_REG_2 0x0011 |
| 335 | #define MDIO_INT_FULL_DUPLEX_IND ( 1 << 9 ) | 337 | #define MDIO_INT_FULL_DUPLEX_IND (1 << 9) |
| 336 | #define MDIO_INT_SPEED ( 1 << 14 ) | 338 | #define MDIO_INT_SPEED (1 << 14) |
| 337 | 339 | ||
| 338 | /* Network flash constants */ | 340 | /* Network flash constants */ |
| 339 | #define NET_FLASH_TIME (HZ/50) /* 20 ms */ | 341 | #define NET_FLASH_TIME (HZ/50) /* 20 ms */ |
| @@ -344,8 +346,8 @@ enum duplex | |||
| 344 | #define NO_NETWORK_ACTIVITY 0 | 346 | #define NO_NETWORK_ACTIVITY 0 |
| 345 | #define NETWORK_ACTIVITY 1 | 347 | #define NETWORK_ACTIVITY 1 |
| 346 | 348 | ||
| 347 | #define NBR_OF_RX_DESC 64 | 349 | #define NBR_OF_RX_DESC 32 |
| 348 | #define NBR_OF_TX_DESC 256 | 350 | #define NBR_OF_TX_DESC 16 |
| 349 | 351 | ||
| 350 | /* Large packets are sent directly to upper layers while small packets are */ | 352 | /* Large packets are sent directly to upper layers while small packets are */ |
| 351 | /* copied (to reduce memory waste). The following constant decides the breakpoint */ | 353 | /* copied (to reduce memory waste). The following constant decides the breakpoint */ |
| @@ -367,7 +369,6 @@ enum duplex | |||
| 367 | static etrax_eth_descr *myNextRxDesc; /* Points to the next descriptor to | 369 | static etrax_eth_descr *myNextRxDesc; /* Points to the next descriptor to |
| 368 | to be processed */ | 370 | to be processed */ |
| 369 | static etrax_eth_descr *myLastRxDesc; /* The last processed descriptor */ | 371 | static etrax_eth_descr *myLastRxDesc; /* The last processed descriptor */ |
| 370 | static etrax_eth_descr *myPrevRxDesc; /* The descriptor right before myNextRxDesc */ | ||
| 371 | 372 | ||
| 372 | static etrax_eth_descr RxDescList[NBR_OF_RX_DESC] __attribute__ ((aligned(32))); | 373 | static etrax_eth_descr RxDescList[NBR_OF_RX_DESC] __attribute__ ((aligned(32))); |
| 373 | 374 | ||
| @@ -377,7 +378,6 @@ static etrax_eth_descr* myNextTxDesc; /* Next descriptor to use */ | |||
| 377 | static etrax_eth_descr TxDescList[NBR_OF_TX_DESC] __attribute__ ((aligned(32))); | 378 | static etrax_eth_descr TxDescList[NBR_OF_TX_DESC] __attribute__ ((aligned(32))); |
| 378 | 379 | ||
| 379 | static unsigned int network_rec_config_shadow = 0; | 380 | static unsigned int network_rec_config_shadow = 0; |
| 380 | static unsigned int mdio_phy_addr; /* Transciever address */ | ||
| 381 | 381 | ||
| 382 | static unsigned int network_tr_ctrl_shadow = 0; | 382 | static unsigned int network_tr_ctrl_shadow = 0; |
| 383 | 383 | ||
| @@ -411,7 +411,7 @@ static int e100_set_config(struct net_device* dev, struct ifmap* map); | |||
| 411 | static void e100_tx_timeout(struct net_device *dev); | 411 | static void e100_tx_timeout(struct net_device *dev); |
| 412 | static struct net_device_stats *e100_get_stats(struct net_device *dev); | 412 | static struct net_device_stats *e100_get_stats(struct net_device *dev); |
| 413 | static void set_multicast_list(struct net_device *dev); | 413 | static void set_multicast_list(struct net_device *dev); |
| 414 | static void e100_hardware_send_packet(char *buf, int length); | 414 | static void e100_hardware_send_packet(struct net_local* np, char *buf, int length); |
| 415 | static void update_rx_stats(struct net_device_stats *); | 415 | static void update_rx_stats(struct net_device_stats *); |
| 416 | static void update_tx_stats(struct net_device_stats *); | 416 | static void update_tx_stats(struct net_device_stats *); |
| 417 | static int e100_probe_transceiver(struct net_device* dev); | 417 | static int e100_probe_transceiver(struct net_device* dev); |
| @@ -434,7 +434,10 @@ static void e100_clear_network_leds(unsigned long dummy); | |||
| 434 | static void e100_set_network_leds(int active); | 434 | static void e100_set_network_leds(int active); |
| 435 | 435 | ||
| 436 | static const struct ethtool_ops e100_ethtool_ops; | 436 | static const struct ethtool_ops e100_ethtool_ops; |
| 437 | 437 | #if defined(CONFIG_ETRAX_NO_PHY) | |
| 438 | static void dummy_check_speed(struct net_device* dev); | ||
| 439 | static void dummy_check_duplex(struct net_device* dev); | ||
| 440 | #else | ||
| 438 | static void broadcom_check_speed(struct net_device* dev); | 441 | static void broadcom_check_speed(struct net_device* dev); |
| 439 | static void broadcom_check_duplex(struct net_device* dev); | 442 | static void broadcom_check_duplex(struct net_device* dev); |
| 440 | static void tdk_check_speed(struct net_device* dev); | 443 | static void tdk_check_speed(struct net_device* dev); |
| @@ -443,16 +446,28 @@ static void intel_check_speed(struct net_device* dev); | |||
| 443 | static void intel_check_duplex(struct net_device* dev); | 446 | static void intel_check_duplex(struct net_device* dev); |
| 444 | static void generic_check_speed(struct net_device* dev); | 447 | static void generic_check_speed(struct net_device* dev); |
| 445 | static void generic_check_duplex(struct net_device* dev); | 448 | static void generic_check_duplex(struct net_device* dev); |
| 449 | #endif | ||
| 450 | #ifdef CONFIG_NET_POLL_CONTROLLER | ||
| 451 | static void e100_netpoll(struct net_device* dev); | ||
| 452 | #endif | ||
| 453 | |||
| 454 | static int autoneg_normal = 1; | ||
| 446 | 455 | ||
| 447 | struct transceiver_ops transceivers[] = | 456 | struct transceiver_ops transceivers[] = |
| 448 | { | 457 | { |
| 458 | #if defined(CONFIG_ETRAX_NO_PHY) | ||
| 459 | {0x0000, dummy_check_speed, dummy_check_duplex} /* Dummy */ | ||
| 460 | #else | ||
| 449 | {0x1018, broadcom_check_speed, broadcom_check_duplex}, /* Broadcom */ | 461 | {0x1018, broadcom_check_speed, broadcom_check_duplex}, /* Broadcom */ |
| 450 | {0xC039, tdk_check_speed, tdk_check_duplex}, /* TDK 2120 */ | 462 | {0xC039, tdk_check_speed, tdk_check_duplex}, /* TDK 2120 */ |
| 451 | {0x039C, tdk_check_speed, tdk_check_duplex}, /* TDK 2120C */ | 463 | {0x039C, tdk_check_speed, tdk_check_duplex}, /* TDK 2120C */ |
| 452 | {0x04de, intel_check_speed, intel_check_duplex}, /* Intel LXT972A*/ | 464 | {0x04de, intel_check_speed, intel_check_duplex}, /* Intel LXT972A*/ |
| 453 | {0x0000, generic_check_speed, generic_check_duplex} /* Generic, must be last */ | 465 | {0x0000, generic_check_speed, generic_check_duplex} /* Generic, must be last */ |
| 466 | #endif | ||
| 454 | }; | 467 | }; |
| 455 | 468 | ||
| 469 | struct transceiver_ops* transceiver = &transceivers[0]; | ||
| 470 | |||
| 456 | #define tx_done(dev) (*R_DMA_CH0_CMD == 0) | 471 | #define tx_done(dev) (*R_DMA_CH0_CMD == 0) |
| 457 | 472 | ||
| 458 | /* | 473 | /* |
| @@ -471,14 +486,22 @@ etrax_ethernet_init(void) | |||
| 471 | int i, err; | 486 | int i, err; |
| 472 | 487 | ||
| 473 | printk(KERN_INFO | 488 | printk(KERN_INFO |
| 474 | "ETRAX 100LX 10/100MBit ethernet v2.0 (c) 2000-2003 Axis Communications AB\n"); | 489 | "ETRAX 100LX 10/100MBit ethernet v2.0 (c) 1998-2007 Axis Communications AB\n"); |
| 475 | 490 | ||
| 476 | dev = alloc_etherdev(sizeof(struct net_local)); | 491 | if (cris_request_io_interface(if_eth, cardname)) { |
| 477 | np = dev->priv; | 492 | printk(KERN_CRIT "etrax_ethernet_init failed to get IO interface\n"); |
| 493 | return -EBUSY; | ||
| 494 | } | ||
| 478 | 495 | ||
| 496 | dev = alloc_etherdev(sizeof(struct net_local)); | ||
| 479 | if (!dev) | 497 | if (!dev) |
| 480 | return -ENOMEM; | 498 | return -ENOMEM; |
| 481 | 499 | ||
| 500 | np = netdev_priv(dev); | ||
| 501 | |||
| 502 | /* we do our own locking */ | ||
| 503 | dev->features |= NETIF_F_LLTX; | ||
| 504 | |||
| 482 | dev->base_addr = (unsigned int)R_NETWORK_SA_0; /* just to have something to show */ | 505 | dev->base_addr = (unsigned int)R_NETWORK_SA_0; /* just to have something to show */ |
| 483 | 506 | ||
| 484 | /* now setup our etrax specific stuff */ | 507 | /* now setup our etrax specific stuff */ |
| @@ -498,14 +521,22 @@ etrax_ethernet_init(void) | |||
| 498 | dev->do_ioctl = e100_ioctl; | 521 | dev->do_ioctl = e100_ioctl; |
| 499 | dev->set_config = e100_set_config; | 522 | dev->set_config = e100_set_config; |
| 500 | dev->tx_timeout = e100_tx_timeout; | 523 | dev->tx_timeout = e100_tx_timeout; |
| 524 | #ifdef CONFIG_NET_POLL_CONTROLLER | ||
| 525 | dev->poll_controller = e100_netpoll; | ||
| 526 | #endif | ||
| 527 | |||
| 528 | spin_lock_init(&np->lock); | ||
| 529 | spin_lock_init(&np->led_lock); | ||
| 530 | spin_lock_init(&np->transceiver_lock); | ||
| 501 | 531 | ||
| 502 | /* Initialise the list of Etrax DMA-descriptors */ | 532 | /* Initialise the list of Etrax DMA-descriptors */ |
| 503 | 533 | ||
| 504 | /* Initialise receive descriptors */ | 534 | /* Initialise receive descriptors */ |
| 505 | 535 | ||
| 506 | for (i = 0; i < NBR_OF_RX_DESC; i++) { | 536 | for (i = 0; i < NBR_OF_RX_DESC; i++) { |
| 507 | /* Allocate two extra cachelines to make sure that buffer used by DMA | 537 | /* Allocate two extra cachelines to make sure that buffer used |
| 508 | * does not share cacheline with any other data (to avoid cache bug) | 538 | * by DMA does not share cacheline with any other data (to |
| 539 | * avoid cache bug) | ||
| 509 | */ | 540 | */ |
| 510 | RxDescList[i].skb = dev_alloc_skb(MAX_MEDIA_DATA_SIZE + 2 * L1_CACHE_BYTES); | 541 | RxDescList[i].skb = dev_alloc_skb(MAX_MEDIA_DATA_SIZE + 2 * L1_CACHE_BYTES); |
| 511 | if (!RxDescList[i].skb) | 542 | if (!RxDescList[i].skb) |
| @@ -541,7 +572,6 @@ etrax_ethernet_init(void) | |||
| 541 | 572 | ||
| 542 | myNextRxDesc = &RxDescList[0]; | 573 | myNextRxDesc = &RxDescList[0]; |
| 543 | myLastRxDesc = &RxDescList[NBR_OF_RX_DESC - 1]; | 574 | myLastRxDesc = &RxDescList[NBR_OF_RX_DESC - 1]; |
| 544 | myPrevRxDesc = &RxDescList[NBR_OF_RX_DESC - 1]; | ||
| 545 | myFirstTxDesc = &TxDescList[0]; | 575 | myFirstTxDesc = &TxDescList[0]; |
| 546 | myNextTxDesc = &TxDescList[0]; | 576 | myNextTxDesc = &TxDescList[0]; |
| 547 | myLastTxDesc = &TxDescList[NBR_OF_TX_DESC - 1]; | 577 | myLastTxDesc = &TxDescList[NBR_OF_TX_DESC - 1]; |
| @@ -562,10 +592,11 @@ etrax_ethernet_init(void) | |||
| 562 | current_speed = 10; | 592 | current_speed = 10; |
| 563 | current_speed_selection = 0; /* Auto */ | 593 | current_speed_selection = 0; /* Auto */ |
| 564 | speed_timer.expires = jiffies + NET_LINK_UP_CHECK_INTERVAL; | 594 | speed_timer.expires = jiffies + NET_LINK_UP_CHECK_INTERVAL; |
| 565 | duplex_timer.data = (unsigned long)dev; | 595 | speed_timer.data = (unsigned long)dev; |
| 566 | speed_timer.function = e100_check_speed; | 596 | speed_timer.function = e100_check_speed; |
| 567 | 597 | ||
| 568 | clear_led_timer.function = e100_clear_network_leds; | 598 | clear_led_timer.function = e100_clear_network_leds; |
| 599 | clear_led_timer.data = (unsigned long)dev; | ||
| 569 | 600 | ||
| 570 | full_duplex = 0; | 601 | full_duplex = 0; |
| 571 | current_duplex = autoneg; | 602 | current_duplex = autoneg; |
| @@ -574,7 +605,6 @@ etrax_ethernet_init(void) | |||
| 574 | duplex_timer.function = e100_check_duplex; | 605 | duplex_timer.function = e100_check_duplex; |
| 575 | 606 | ||
| 576 | /* Initialize mii interface */ | 607 | /* Initialize mii interface */ |
| 577 | np->mii_if.phy_id = mdio_phy_addr; | ||
| 578 | np->mii_if.phy_id_mask = 0x1f; | 608 | np->mii_if.phy_id_mask = 0x1f; |
| 579 | np->mii_if.reg_num_mask = 0x1f; | 609 | np->mii_if.reg_num_mask = 0x1f; |
| 580 | np->mii_if.dev = dev; | 610 | np->mii_if.dev = dev; |
| @@ -585,6 +615,9 @@ etrax_ethernet_init(void) | |||
| 585 | /* unwanted addresses are matched */ | 615 | /* unwanted addresses are matched */ |
| 586 | *R_NETWORK_GA_0 = 0x00000000; | 616 | *R_NETWORK_GA_0 = 0x00000000; |
| 587 | *R_NETWORK_GA_1 = 0x00000000; | 617 | *R_NETWORK_GA_1 = 0x00000000; |
| 618 | |||
| 619 | /* Initialize next time the led can flash */ | ||
| 620 | led_next_time = jiffies; | ||
| 588 | return 0; | 621 | return 0; |
| 589 | } | 622 | } |
| 590 | 623 | ||
| @@ -595,9 +628,9 @@ etrax_ethernet_init(void) | |||
| 595 | static int | 628 | static int |
| 596 | e100_set_mac_address(struct net_device *dev, void *p) | 629 | e100_set_mac_address(struct net_device *dev, void *p) |
| 597 | { | 630 | { |
| 598 | struct net_local *np = (struct net_local *)dev->priv; | 631 | struct net_local *np = netdev_priv(dev); |
| 599 | struct sockaddr *addr = p; | 632 | struct sockaddr *addr = p; |
| 600 | int i; | 633 | DECLARE_MAC_BUF(mac); |
| 601 | 634 | ||
| 602 | spin_lock(&np->lock); /* preemption protection */ | 635 | spin_lock(&np->lock); /* preemption protection */ |
| 603 | 636 | ||
| @@ -686,6 +719,25 @@ e100_open(struct net_device *dev) | |||
| 686 | goto grace_exit2; | 719 | goto grace_exit2; |
| 687 | } | 720 | } |
| 688 | 721 | ||
| 722 | /* | ||
| 723 | * Always allocate the DMA channels after the IRQ, | ||
| 724 | * and clean up on failure. | ||
| 725 | */ | ||
| 726 | |||
| 727 | if (cris_request_dma(NETWORK_TX_DMA_NBR, | ||
| 728 | cardname, | ||
| 729 | DMA_VERBOSE_ON_ERROR, | ||
| 730 | dma_eth)) { | ||
| 731 | goto grace_exit3; | ||
| 732 | } | ||
| 733 | |||
| 734 | if (cris_request_dma(NETWORK_RX_DMA_NBR, | ||
| 735 | cardname, | ||
| 736 | DMA_VERBOSE_ON_ERROR, | ||
| 737 | dma_eth)) { | ||
| 738 | goto grace_exit4; | ||
| 739 | } | ||
| 740 | |||
| 689 | /* give the HW an idea of what MAC address we want */ | 741 | /* give the HW an idea of what MAC address we want */ |
| 690 | 742 | ||
| 691 | *R_NETWORK_SA_0 = dev->dev_addr[0] | (dev->dev_addr[1] << 8) | | 743 | *R_NETWORK_SA_0 = dev->dev_addr[0] | (dev->dev_addr[1] << 8) | |
| @@ -700,6 +752,7 @@ e100_open(struct net_device *dev) | |||
| 700 | 752 | ||
| 701 | *R_NETWORK_REC_CONFIG = 0xd; /* broadcast rec, individ. rec, ma0 enabled */ | 753 | *R_NETWORK_REC_CONFIG = 0xd; /* broadcast rec, individ. rec, ma0 enabled */ |
| 702 | #else | 754 | #else |
| 755 | SETS(network_rec_config_shadow, R_NETWORK_REC_CONFIG, max_size, size1522); | ||
| 703 | SETS(network_rec_config_shadow, R_NETWORK_REC_CONFIG, broadcast, receive); | 756 | SETS(network_rec_config_shadow, R_NETWORK_REC_CONFIG, broadcast, receive); |
| 704 | SETS(network_rec_config_shadow, R_NETWORK_REC_CONFIG, ma0, enable); | 757 | SETS(network_rec_config_shadow, R_NETWORK_REC_CONFIG, ma0, enable); |
| 705 | SETF(network_rec_config_shadow, R_NETWORK_REC_CONFIG, duplex, full_duplex); | 758 | SETF(network_rec_config_shadow, R_NETWORK_REC_CONFIG, duplex, full_duplex); |
| @@ -719,8 +772,7 @@ e100_open(struct net_device *dev) | |||
| 719 | SETS(network_tr_ctrl_shadow, R_NETWORK_TR_CTRL, crc, enable); | 772 | SETS(network_tr_ctrl_shadow, R_NETWORK_TR_CTRL, crc, enable); |
| 720 | *R_NETWORK_TR_CTRL = network_tr_ctrl_shadow; | 773 | *R_NETWORK_TR_CTRL = network_tr_ctrl_shadow; |
| 721 | 774 | ||
| 722 | save_flags(flags); | 775 | local_irq_save(flags); |
| 723 | cli(); | ||
| 724 | 776 | ||
| 725 | /* enable the irq's for ethernet DMA */ | 777 | /* enable the irq's for ethernet DMA */ |
| 726 | 778 | ||
| @@ -752,12 +804,13 @@ e100_open(struct net_device *dev) | |||
| 752 | 804 | ||
| 753 | *R_DMA_CH0_FIRST = 0; | 805 | *R_DMA_CH0_FIRST = 0; |
| 754 | *R_DMA_CH0_DESCR = virt_to_phys(myLastTxDesc); | 806 | *R_DMA_CH0_DESCR = virt_to_phys(myLastTxDesc); |
| 807 | netif_start_queue(dev); | ||
| 755 | 808 | ||
| 756 | restore_flags(flags); | 809 | local_irq_restore(flags); |
| 757 | 810 | ||
| 758 | /* Probe for transceiver */ | 811 | /* Probe for transceiver */ |
| 759 | if (e100_probe_transceiver(dev)) | 812 | if (e100_probe_transceiver(dev)) |
| 760 | goto grace_exit3; | 813 | goto grace_exit5; |
| 761 | 814 | ||
| 762 | /* Start duplex/speed timers */ | 815 | /* Start duplex/speed timers */ |
| 763 | add_timer(&speed_timer); | 816 | add_timer(&speed_timer); |
| @@ -766,10 +819,14 @@ e100_open(struct net_device *dev) | |||
| 766 | /* We are now ready to accept transmit requeusts from | 819 | /* We are now ready to accept transmit requeusts from |
| 767 | * the queueing layer of the networking. | 820 | * the queueing layer of the networking. |
| 768 | */ | 821 | */ |
| 769 | netif_start_queue(dev); | 822 | netif_carrier_on(dev); |
| 770 | 823 | ||
| 771 | return 0; | 824 | return 0; |
| 772 | 825 | ||
| 826 | grace_exit5: | ||
| 827 | cris_free_dma(NETWORK_RX_DMA_NBR, cardname); | ||
| 828 | grace_exit4: | ||
| 829 | cris_free_dma(NETWORK_TX_DMA_NBR, cardname); | ||
| 773 | grace_exit3: | 830 | grace_exit3: |
| 774 | free_irq(NETWORK_STATUS_IRQ_NBR, (void *)dev); | 831 | free_irq(NETWORK_STATUS_IRQ_NBR, (void *)dev); |
| 775 | grace_exit2: | 832 | grace_exit2: |
| @@ -780,12 +837,20 @@ grace_exit0: | |||
| 780 | return -EAGAIN; | 837 | return -EAGAIN; |
| 781 | } | 838 | } |
| 782 | 839 | ||
| 783 | 840 | #if defined(CONFIG_ETRAX_NO_PHY) | |
| 841 | static void | ||
| 842 | dummy_check_speed(struct net_device* dev) | ||
| 843 | { | ||
| 844 | current_speed = 100; | ||
| 845 | } | ||
| 846 | #else | ||
| 784 | static void | 847 | static void |
| 785 | generic_check_speed(struct net_device* dev) | 848 | generic_check_speed(struct net_device* dev) |
| 786 | { | 849 | { |
| 787 | unsigned long data; | 850 | unsigned long data; |
| 788 | data = e100_get_mdio_reg(dev, mdio_phy_addr, MII_ADVERTISE); | 851 | struct net_local *np = netdev_priv(dev); |
| 852 | |||
| 853 | data = e100_get_mdio_reg(dev, np->mii_if.phy_id, MII_ADVERTISE); | ||
| 789 | if ((data & ADVERTISE_100FULL) || | 854 | if ((data & ADVERTISE_100FULL) || |
| 790 | (data & ADVERTISE_100HALF)) | 855 | (data & ADVERTISE_100HALF)) |
| 791 | current_speed = 100; | 856 | current_speed = 100; |
| @@ -797,7 +862,10 @@ static void | |||
| 797 | tdk_check_speed(struct net_device* dev) | 862 | tdk_check_speed(struct net_device* dev) |
| 798 | { | 863 | { |
| 799 | unsigned long data; | 864 | unsigned long data; |
| 800 | data = e100_get_mdio_reg(dev, mdio_phy_addr, MDIO_TDK_DIAGNOSTIC_REG); | 865 | struct net_local *np = netdev_priv(dev); |
| 866 | |||
| 867 | data = e100_get_mdio_reg(dev, np->mii_if.phy_id, | ||
| 868 | MDIO_TDK_DIAGNOSTIC_REG); | ||
| 801 | current_speed = (data & MDIO_TDK_DIAGNOSTIC_RATE ? 100 : 10); | 869 | current_speed = (data & MDIO_TDK_DIAGNOSTIC_RATE ? 100 : 10); |
| 802 | } | 870 | } |
| 803 | 871 | ||
| @@ -805,7 +873,10 @@ static void | |||
| 805 | broadcom_check_speed(struct net_device* dev) | 873 | broadcom_check_speed(struct net_device* dev) |
| 806 | { | 874 | { |
| 807 | unsigned long data; | 875 | unsigned long data; |
| 808 | data = e100_get_mdio_reg(dev, mdio_phy_addr, MDIO_AUX_CTRL_STATUS_REG); | 876 | struct net_local *np = netdev_priv(dev); |
| 877 | |||
| 878 | data = e100_get_mdio_reg(dev, np->mii_if.phy_id, | ||
| 879 | MDIO_AUX_CTRL_STATUS_REG); | ||
| 809 | current_speed = (data & MDIO_BC_SPEED ? 100 : 10); | 880 | current_speed = (data & MDIO_BC_SPEED ? 100 : 10); |
| 810 | } | 881 | } |
| 811 | 882 | ||
| @@ -813,46 +884,62 @@ static void | |||
| 813 | intel_check_speed(struct net_device* dev) | 884 | intel_check_speed(struct net_device* dev) |
| 814 | { | 885 | { |
| 815 | unsigned long data; | 886 | unsigned long data; |
| 816 | data = e100_get_mdio_reg(dev, mdio_phy_addr, MDIO_INT_STATUS_REG_2); | 887 | struct net_local *np = netdev_priv(dev); |
| 888 | |||
| 889 | data = e100_get_mdio_reg(dev, np->mii_if.phy_id, | ||
| 890 | MDIO_INT_STATUS_REG_2); | ||
| 817 | current_speed = (data & MDIO_INT_SPEED ? 100 : 10); | 891 | current_speed = (data & MDIO_INT_SPEED ? 100 : 10); |
| 818 | } | 892 | } |
| 819 | 893 | #endif | |
| 820 | static void | 894 | static void |
| 821 | e100_check_speed(unsigned long priv) | 895 | e100_check_speed(unsigned long priv) |
| 822 | { | 896 | { |
| 823 | struct net_device* dev = (struct net_device*)priv; | 897 | struct net_device* dev = (struct net_device*)priv; |
| 898 | struct net_local *np = netdev_priv(dev); | ||
| 824 | static int led_initiated = 0; | 899 | static int led_initiated = 0; |
| 825 | unsigned long data; | 900 | unsigned long data; |
| 826 | int old_speed = current_speed; | 901 | int old_speed = current_speed; |
| 827 | 902 | ||
| 828 | data = e100_get_mdio_reg(dev, mdio_phy_addr, MII_BMSR); | 903 | spin_lock(&np->transceiver_lock); |
| 904 | |||
| 905 | data = e100_get_mdio_reg(dev, np->mii_if.phy_id, MII_BMSR); | ||
| 829 | if (!(data & BMSR_LSTATUS)) { | 906 | if (!(data & BMSR_LSTATUS)) { |
| 830 | current_speed = 0; | 907 | current_speed = 0; |
| 831 | } else { | 908 | } else { |
| 832 | transceiver->check_speed(dev); | 909 | transceiver->check_speed(dev); |
| 833 | } | 910 | } |
| 834 | 911 | ||
| 912 | spin_lock(&np->led_lock); | ||
| 835 | if ((old_speed != current_speed) || !led_initiated) { | 913 | if ((old_speed != current_speed) || !led_initiated) { |
| 836 | led_initiated = 1; | 914 | led_initiated = 1; |
| 837 | e100_set_network_leds(NO_NETWORK_ACTIVITY); | 915 | e100_set_network_leds(NO_NETWORK_ACTIVITY); |
| 916 | if (current_speed) | ||
| 917 | netif_carrier_on(dev); | ||
| 918 | else | ||
| 919 | netif_carrier_off(dev); | ||
| 838 | } | 920 | } |
| 921 | spin_unlock(&np->led_lock); | ||
| 839 | 922 | ||
| 840 | /* Reinitialize the timer. */ | 923 | /* Reinitialize the timer. */ |
| 841 | speed_timer.expires = jiffies + NET_LINK_UP_CHECK_INTERVAL; | 924 | speed_timer.expires = jiffies + NET_LINK_UP_CHECK_INTERVAL; |
| 842 | add_timer(&speed_timer); | 925 | add_timer(&speed_timer); |
| 926 | |||
| 927 | spin_unlock(&np->transceiver_lock); | ||
| 843 | } | 928 | } |
| 844 | 929 | ||
| 845 | static void | 930 | static void |
| 846 | e100_negotiate(struct net_device* dev) | 931 | e100_negotiate(struct net_device* dev) |
| 847 | { | 932 | { |
| 848 | unsigned short data = e100_get_mdio_reg(dev, mdio_phy_addr, MII_ADVERTISE); | 933 | struct net_local *np = netdev_priv(dev); |
| 934 | unsigned short data = e100_get_mdio_reg(dev, np->mii_if.phy_id, | ||
| 935 | MII_ADVERTISE); | ||
| 849 | 936 | ||
| 850 | /* Discard old speed and duplex settings */ | 937 | /* Discard old speed and duplex settings */ |
| 851 | data &= ~(ADVERTISE_100HALF | ADVERTISE_100FULL | | 938 | data &= ~(ADVERTISE_100HALF | ADVERTISE_100FULL | |
| 852 | ADVERTISE_10HALF | ADVERTISE_10FULL); | 939 | ADVERTISE_10HALF | ADVERTISE_10FULL); |
| 853 | 940 | ||
| 854 | switch (current_speed_selection) { | 941 | switch (current_speed_selection) { |
| 855 | case 10 : | 942 | case 10: |
| 856 | if (current_duplex == full) | 943 | if (current_duplex == full) |
| 857 | data |= ADVERTISE_10FULL; | 944 | data |= ADVERTISE_10FULL; |
| 858 | else if (current_duplex == half) | 945 | else if (current_duplex == half) |
| @@ -861,7 +948,7 @@ e100_negotiate(struct net_device* dev) | |||
| 861 | data |= ADVERTISE_10HALF | ADVERTISE_10FULL; | 948 | data |= ADVERTISE_10HALF | ADVERTISE_10FULL; |
| 862 | break; | 949 | break; |
| 863 | 950 | ||
| 864 | case 100 : | 951 | case 100: |
| 865 | if (current_duplex == full) | 952 | if (current_duplex == full) |
| 866 | data |= ADVERTISE_100FULL; | 953 | data |= ADVERTISE_100FULL; |
| 867 | else if (current_duplex == half) | 954 | else if (current_duplex == half) |
| @@ -870,7 +957,7 @@ e100_negotiate(struct net_device* dev) | |||
| 870 | data |= ADVERTISE_100HALF | ADVERTISE_100FULL; | 957 | data |= ADVERTISE_100HALF | ADVERTISE_100FULL; |
| 871 | break; | 958 | break; |
| 872 | 959 | ||
| 873 | case 0 : /* Auto */ | 960 | case 0: /* Auto */ |
| 874 | if (current_duplex == full) | 961 | if (current_duplex == full) |
| 875 | data |= ADVERTISE_100FULL | ADVERTISE_10FULL; | 962 | data |= ADVERTISE_100FULL | ADVERTISE_10FULL; |
| 876 | else if (current_duplex == half) | 963 | else if (current_duplex == half) |
| @@ -880,35 +967,44 @@ e100_negotiate(struct net_device* dev) | |||
| 880 | ADVERTISE_100HALF | ADVERTISE_100FULL; | 967 | ADVERTISE_100HALF | ADVERTISE_100FULL; |
| 881 | break; | 968 | break; |
| 882 | 969 | ||
| 883 | default : /* assume autoneg speed and duplex */ | 970 | default: /* assume autoneg speed and duplex */ |
| 884 | data |= ADVERTISE_10HALF | ADVERTISE_10FULL | | 971 | data |= ADVERTISE_10HALF | ADVERTISE_10FULL | |
| 885 | ADVERTISE_100HALF | ADVERTISE_100FULL; | 972 | ADVERTISE_100HALF | ADVERTISE_100FULL; |
| 973 | break; | ||
| 886 | } | 974 | } |
| 887 | 975 | ||
| 888 | e100_set_mdio_reg(dev, mdio_phy_addr, MII_ADVERTISE, data); | 976 | e100_set_mdio_reg(dev, np->mii_if.phy_id, MII_ADVERTISE, data); |
| 889 | 977 | ||
| 890 | /* Renegotiate with link partner */ | 978 | /* Renegotiate with link partner */ |
| 891 | data = e100_get_mdio_reg(dev, mdio_phy_addr, MII_BMCR); | 979 | if (autoneg_normal) { |
| 980 | data = e100_get_mdio_reg(dev, np->mii_if.phy_id, MII_BMCR); | ||
| 892 | data |= BMCR_ANENABLE | BMCR_ANRESTART; | 981 | data |= BMCR_ANENABLE | BMCR_ANRESTART; |
| 893 | 982 | } | |
| 894 | e100_set_mdio_reg(dev, mdio_phy_addr, MII_BMCR, data); | 983 | e100_set_mdio_reg(dev, np->mii_if.phy_id, MII_BMCR, data); |
| 895 | } | 984 | } |
| 896 | 985 | ||
| 897 | static void | 986 | static void |
| 898 | e100_set_speed(struct net_device* dev, unsigned long speed) | 987 | e100_set_speed(struct net_device* dev, unsigned long speed) |
| 899 | { | 988 | { |
| 989 | struct net_local *np = netdev_priv(dev); | ||
| 990 | |||
| 991 | spin_lock(&np->transceiver_lock); | ||
| 900 | if (speed != current_speed_selection) { | 992 | if (speed != current_speed_selection) { |
| 901 | current_speed_selection = speed; | 993 | current_speed_selection = speed; |
| 902 | e100_negotiate(dev); | 994 | e100_negotiate(dev); |
| 903 | } | 995 | } |
| 996 | spin_unlock(&np->transceiver_lock); | ||
| 904 | } | 997 | } |
| 905 | 998 | ||
| 906 | static void | 999 | static void |
| 907 | e100_check_duplex(unsigned long priv) | 1000 | e100_check_duplex(unsigned long priv) |
| 908 | { | 1001 | { |
| 909 | struct net_device *dev = (struct net_device *)priv; | 1002 | struct net_device *dev = (struct net_device *)priv; |
| 910 | struct net_local *np = (struct net_local *)dev->priv; | 1003 | struct net_local *np = netdev_priv(dev); |
| 911 | int old_duplex = full_duplex; | 1004 | int old_duplex; |
| 1005 | |||
| 1006 | spin_lock(&np->transceiver_lock); | ||
| 1007 | old_duplex = full_duplex; | ||
| 912 | transceiver->check_duplex(dev); | 1008 | transceiver->check_duplex(dev); |
| 913 | if (old_duplex != full_duplex) { | 1009 | if (old_duplex != full_duplex) { |
| 914 | /* Duplex changed */ | 1010 | /* Duplex changed */ |
| @@ -920,13 +1016,22 @@ e100_check_duplex(unsigned long priv) | |||
| 920 | duplex_timer.expires = jiffies + NET_DUPLEX_CHECK_INTERVAL; | 1016 | duplex_timer.expires = jiffies + NET_DUPLEX_CHECK_INTERVAL; |
| 921 | add_timer(&duplex_timer); | 1017 | add_timer(&duplex_timer); |
| 922 | np->mii_if.full_duplex = full_duplex; | 1018 | np->mii_if.full_duplex = full_duplex; |
| 1019 | spin_unlock(&np->transceiver_lock); | ||
| 923 | } | 1020 | } |
| 924 | 1021 | #if defined(CONFIG_ETRAX_NO_PHY) | |
| 1022 | static void | ||
| 1023 | dummy_check_duplex(struct net_device* dev) | ||
| 1024 | { | ||
| 1025 | full_duplex = 1; | ||
| 1026 | } | ||
| 1027 | #else | ||
| 925 | static void | 1028 | static void |
| 926 | generic_check_duplex(struct net_device* dev) | 1029 | generic_check_duplex(struct net_device* dev) |
| 927 | { | 1030 | { |
| 928 | unsigned long data; | 1031 | unsigned long data; |
| 929 | data = e100_get_mdio_reg(dev, mdio_phy_addr, MII_ADVERTISE); | 1032 | struct net_local *np = netdev_priv(dev); |
| 1033 | |||
| 1034 | data = e100_get_mdio_reg(dev, np->mii_if.phy_id, MII_ADVERTISE); | ||
| 930 | if ((data & ADVERTISE_10FULL) || | 1035 | if ((data & ADVERTISE_10FULL) || |
| 931 | (data & ADVERTISE_100FULL)) | 1036 | (data & ADVERTISE_100FULL)) |
| 932 | full_duplex = 1; | 1037 | full_duplex = 1; |
| @@ -938,7 +1043,10 @@ static void | |||
| 938 | tdk_check_duplex(struct net_device* dev) | 1043 | tdk_check_duplex(struct net_device* dev) |
| 939 | { | 1044 | { |
| 940 | unsigned long data; | 1045 | unsigned long data; |
| 941 | data = e100_get_mdio_reg(dev, mdio_phy_addr, MDIO_TDK_DIAGNOSTIC_REG); | 1046 | struct net_local *np = netdev_priv(dev); |
| 1047 | |||
| 1048 | data = e100_get_mdio_reg(dev, np->mii_if.phy_id, | ||
| 1049 | MDIO_TDK_DIAGNOSTIC_REG); | ||
| 942 | full_duplex = (data & MDIO_TDK_DIAGNOSTIC_DPLX) ? 1 : 0; | 1050 | full_duplex = (data & MDIO_TDK_DIAGNOSTIC_DPLX) ? 1 : 0; |
| 943 | } | 1051 | } |
| 944 | 1052 | ||
| @@ -946,7 +1054,10 @@ static void | |||
| 946 | broadcom_check_duplex(struct net_device* dev) | 1054 | broadcom_check_duplex(struct net_device* dev) |
| 947 | { | 1055 | { |
| 948 | unsigned long data; | 1056 | unsigned long data; |
| 949 | data = e100_get_mdio_reg(dev, mdio_phy_addr, MDIO_AUX_CTRL_STATUS_REG); | 1057 | struct net_local *np = netdev_priv(dev); |
| 1058 | |||
| 1059 | data = e100_get_mdio_reg(dev, np->mii_if.phy_id, | ||
| 1060 | MDIO_AUX_CTRL_STATUS_REG); | ||
| 950 | full_duplex = (data & MDIO_BC_FULL_DUPLEX_IND) ? 1 : 0; | 1061 | full_duplex = (data & MDIO_BC_FULL_DUPLEX_IND) ? 1 : 0; |
| 951 | } | 1062 | } |
| 952 | 1063 | ||
| @@ -954,38 +1065,55 @@ static void | |||
| 954 | intel_check_duplex(struct net_device* dev) | 1065 | intel_check_duplex(struct net_device* dev) |
| 955 | { | 1066 | { |
| 956 | unsigned long data; | 1067 | unsigned long data; |
| 957 | data = e100_get_mdio_reg(dev, mdio_phy_addr, MDIO_INT_STATUS_REG_2); | 1068 | struct net_local *np = netdev_priv(dev); |
| 1069 | |||
| 1070 | data = e100_get_mdio_reg(dev, np->mii_if.phy_id, | ||
| 1071 | MDIO_INT_STATUS_REG_2); | ||
| 958 | full_duplex = (data & MDIO_INT_FULL_DUPLEX_IND) ? 1 : 0; | 1072 | full_duplex = (data & MDIO_INT_FULL_DUPLEX_IND) ? 1 : 0; |
| 959 | } | 1073 | } |
| 960 | 1074 | #endif | |
| 961 | static void | 1075 | static void |
| 962 | e100_set_duplex(struct net_device* dev, enum duplex new_duplex) | 1076 | e100_set_duplex(struct net_device* dev, enum duplex new_duplex) |
| 963 | { | 1077 | { |
| 1078 | struct net_local *np = netdev_priv(dev); | ||
| 1079 | |||
| 1080 | spin_lock(&np->transceiver_lock); | ||
| 964 | if (new_duplex != current_duplex) { | 1081 | if (new_duplex != current_duplex) { |
| 965 | current_duplex = new_duplex; | 1082 | current_duplex = new_duplex; |
| 966 | e100_negotiate(dev); | 1083 | e100_negotiate(dev); |
| 967 | } | 1084 | } |
| 1085 | spin_unlock(&np->transceiver_lock); | ||
| 968 | } | 1086 | } |
| 969 | 1087 | ||
| 970 | static int | 1088 | static int |
| 971 | e100_probe_transceiver(struct net_device* dev) | 1089 | e100_probe_transceiver(struct net_device* dev) |
| 972 | { | 1090 | { |
| 1091 | int ret = 0; | ||
| 1092 | |||
| 1093 | #if !defined(CONFIG_ETRAX_NO_PHY) | ||
| 973 | unsigned int phyid_high; | 1094 | unsigned int phyid_high; |
| 974 | unsigned int phyid_low; | 1095 | unsigned int phyid_low; |
| 975 | unsigned int oui; | 1096 | unsigned int oui; |
| 976 | struct transceiver_ops* ops = NULL; | 1097 | struct transceiver_ops* ops = NULL; |
| 1098 | struct net_local *np = netdev_priv(dev); | ||
| 1099 | |||
| 1100 | spin_lock(&np->transceiver_lock); | ||
| 977 | 1101 | ||
| 978 | /* Probe MDIO physical address */ | 1102 | /* Probe MDIO physical address */ |
| 979 | for (mdio_phy_addr = 0; mdio_phy_addr <= 31; mdio_phy_addr++) { | 1103 | for (np->mii_if.phy_id = 0; np->mii_if.phy_id <= 31; |
| 980 | if (e100_get_mdio_reg(dev, mdio_phy_addr, MII_BMSR) != 0xffff) | 1104 | np->mii_if.phy_id++) { |
| 1105 | if (e100_get_mdio_reg(dev, | ||
| 1106 | np->mii_if.phy_id, MII_BMSR) != 0xffff) | ||
| 981 | break; | 1107 | break; |
| 982 | } | 1108 | } |
| 983 | if (mdio_phy_addr == 32) | 1109 | if (np->mii_if.phy_id == 32) { |
| 984 | return -ENODEV; | 1110 | ret = -ENODEV; |
| 1111 | goto out; | ||
| 1112 | } | ||
| 985 | 1113 | ||
| 986 | /* Get manufacturer */ | 1114 | /* Get manufacturer */ |
| 987 | phyid_high = e100_get_mdio_reg(dev, mdio_phy_addr, MII_PHYSID1); | 1115 | phyid_high = e100_get_mdio_reg(dev, np->mii_if.phy_id, MII_PHYSID1); |
| 988 | phyid_low = e100_get_mdio_reg(dev, mdio_phy_addr, MII_PHYSID2); | 1116 | phyid_low = e100_get_mdio_reg(dev, np->mii_if.phy_id, MII_PHYSID2); |
| 989 | oui = (phyid_high << 6) | (phyid_low >> 10); | 1117 | oui = (phyid_high << 6) | (phyid_low >> 10); |
| 990 | 1118 | ||
| 991 | for (ops = &transceivers[0]; ops->oui; ops++) { | 1119 | for (ops = &transceivers[0]; ops->oui; ops++) { |
| @@ -993,8 +1121,10 @@ e100_probe_transceiver(struct net_device* dev) | |||
| 993 | break; | 1121 | break; |
| 994 | } | 1122 | } |
| 995 | transceiver = ops; | 1123 | transceiver = ops; |
| 996 | 1124 | out: | |
| 997 | return 0; | 1125 | spin_unlock(&np->transceiver_lock); |
| 1126 | #endif | ||
| 1127 | return ret; | ||
| 998 | } | 1128 | } |
| 999 | 1129 | ||
| 1000 | static int | 1130 | static int |
| @@ -1088,13 +1218,14 @@ e100_receive_mdio_bit() | |||
| 1088 | static void | 1218 | static void |
| 1089 | e100_reset_transceiver(struct net_device* dev) | 1219 | e100_reset_transceiver(struct net_device* dev) |
| 1090 | { | 1220 | { |
| 1221 | struct net_local *np = netdev_priv(dev); | ||
| 1091 | unsigned short cmd; | 1222 | unsigned short cmd; |
| 1092 | unsigned short data; | 1223 | unsigned short data; |
| 1093 | int bitCounter; | 1224 | int bitCounter; |
| 1094 | 1225 | ||
| 1095 | data = e100_get_mdio_reg(dev, mdio_phy_addr, MII_BMCR); | 1226 | data = e100_get_mdio_reg(dev, np->mii_if.phy_id, MII_BMCR); |
| 1096 | 1227 | ||
| 1097 | cmd = (MDIO_START << 14) | (MDIO_WRITE << 12) | (mdio_phy_addr << 7) | (MII_BMCR << 2); | 1228 | cmd = (MDIO_START << 14) | (MDIO_WRITE << 12) | (np->mii_if.phy_id << 7) | (MII_BMCR << 2); |
| 1098 | 1229 | ||
| 1099 | e100_send_mdio_cmd(cmd, 1); | 1230 | e100_send_mdio_cmd(cmd, 1); |
| 1100 | 1231 | ||
| @@ -1112,7 +1243,7 @@ e100_reset_transceiver(struct net_device* dev) | |||
| 1112 | static void | 1243 | static void |
| 1113 | e100_tx_timeout(struct net_device *dev) | 1244 | e100_tx_timeout(struct net_device *dev) |
| 1114 | { | 1245 | { |
| 1115 | struct net_local *np = (struct net_local *)dev->priv; | 1246 | struct net_local *np = netdev_priv(dev); |
| 1116 | unsigned long flags; | 1247 | unsigned long flags; |
| 1117 | 1248 | ||
| 1118 | spin_lock_irqsave(&np->lock, flags); | 1249 | spin_lock_irqsave(&np->lock, flags); |
| @@ -1134,8 +1265,7 @@ e100_tx_timeout(struct net_device *dev) | |||
| 1134 | e100_reset_transceiver(dev); | 1265 | e100_reset_transceiver(dev); |
| 1135 | 1266 | ||
| 1136 | /* and get rid of the packets that never got an interrupt */ | 1267 | /* and get rid of the packets that never got an interrupt */ |
| 1137 | while (myFirstTxDesc != myNextTxDesc) | 1268 | while (myFirstTxDesc != myNextTxDesc) { |
| 1138 | { | ||
| 1139 | dev_kfree_skb(myFirstTxDesc->skb); | 1269 | dev_kfree_skb(myFirstTxDesc->skb); |
| 1140 | myFirstTxDesc->skb = 0; | 1270 | myFirstTxDesc->skb = 0; |
| 1141 | myFirstTxDesc = phys_to_virt(myFirstTxDesc->descr.next); | 1271 | myFirstTxDesc = phys_to_virt(myFirstTxDesc->descr.next); |
| @@ -1161,7 +1291,7 @@ e100_tx_timeout(struct net_device *dev) | |||
| 1161 | static int | 1291 | static int |
| 1162 | e100_send_packet(struct sk_buff *skb, struct net_device *dev) | 1292 | e100_send_packet(struct sk_buff *skb, struct net_device *dev) |
| 1163 | { | 1293 | { |
| 1164 | struct net_local *np = (struct net_local *)dev->priv; | 1294 | struct net_local *np = netdev_priv(dev); |
| 1165 | unsigned char *buf = skb->data; | 1295 | unsigned char *buf = skb->data; |
| 1166 | unsigned long flags; | 1296 | unsigned long flags; |
| 1167 | 1297 | ||
| @@ -1174,7 +1304,7 @@ e100_send_packet(struct sk_buff *skb, struct net_device *dev) | |||
| 1174 | 1304 | ||
| 1175 | dev->trans_start = jiffies; | 1305 | dev->trans_start = jiffies; |
| 1176 | 1306 | ||
| 1177 | e100_hardware_send_packet(buf, skb->len); | 1307 | e100_hardware_send_packet(np, buf, skb->len); |
| 1178 | 1308 | ||
| 1179 | myNextTxDesc = phys_to_virt(myNextTxDesc->descr.next); | 1309 | myNextTxDesc = phys_to_virt(myNextTxDesc->descr.next); |
| 1180 | 1310 | ||
| @@ -1197,13 +1327,15 @@ static irqreturn_t | |||
| 1197 | e100rxtx_interrupt(int irq, void *dev_id) | 1327 | e100rxtx_interrupt(int irq, void *dev_id) |
| 1198 | { | 1328 | { |
| 1199 | struct net_device *dev = (struct net_device *)dev_id; | 1329 | struct net_device *dev = (struct net_device *)dev_id; |
| 1200 | struct net_local *np = (struct net_local *)dev->priv; | 1330 | struct net_local *np = netdev_priv(dev); |
| 1201 | unsigned long irqbits = *R_IRQ_MASK2_RD; | 1331 | unsigned long irqbits; |
| 1202 | 1332 | ||
| 1203 | /* Disable RX/TX IRQs to avoid reentrancy */ | 1333 | /* |
| 1204 | *R_IRQ_MASK2_CLR = | 1334 | * Note that both rx and tx interrupts are blocked at this point, |
| 1205 | IO_STATE(R_IRQ_MASK2_CLR, dma0_eop, clr) | | 1335 | * regardless of which got us here. |
| 1206 | IO_STATE(R_IRQ_MASK2_CLR, dma1_eop, clr); | 1336 | */ |
| 1337 | |||
| 1338 | irqbits = *R_IRQ_MASK2_RD; | ||
| 1207 | 1339 | ||
| 1208 | /* Handle received packets */ | 1340 | /* Handle received packets */ |
| 1209 | if (irqbits & IO_STATE(R_IRQ_MASK2_RD, dma1_eop, active)) { | 1341 | if (irqbits & IO_STATE(R_IRQ_MASK2_RD, dma1_eop, active)) { |
| @@ -1219,7 +1351,7 @@ e100rxtx_interrupt(int irq, void *dev_id) | |||
| 1219 | * allocate a new buffer to put a packet in. | 1351 | * allocate a new buffer to put a packet in. |
| 1220 | */ | 1352 | */ |
| 1221 | e100_rx(dev); | 1353 | e100_rx(dev); |
| 1222 | ((struct net_local *)dev->priv)->stats.rx_packets++; | 1354 | np->stats.rx_packets++; |
| 1223 | /* restart/continue on the channel, for safety */ | 1355 | /* restart/continue on the channel, for safety */ |
| 1224 | *R_DMA_CH1_CMD = IO_STATE(R_DMA_CH1_CMD, cmd, restart); | 1356 | *R_DMA_CH1_CMD = IO_STATE(R_DMA_CH1_CMD, cmd, restart); |
| 1225 | /* clear dma channel 1 eop/descr irq bits */ | 1357 | /* clear dma channel 1 eop/descr irq bits */ |
| @@ -1233,9 +1365,8 @@ e100rxtx_interrupt(int irq, void *dev_id) | |||
| 1233 | } | 1365 | } |
| 1234 | 1366 | ||
| 1235 | /* Report any packets that have been sent */ | 1367 | /* Report any packets that have been sent */ |
| 1236 | while (myFirstTxDesc != phys_to_virt(*R_DMA_CH0_FIRST) && | 1368 | while (virt_to_phys(myFirstTxDesc) != *R_DMA_CH0_FIRST && |
| 1237 | myFirstTxDesc != myNextTxDesc) | 1369 | (netif_queue_stopped(dev) || myFirstTxDesc != myNextTxDesc)) { |
| 1238 | { | ||
| 1239 | np->stats.tx_bytes += myFirstTxDesc->skb->len; | 1370 | np->stats.tx_bytes += myFirstTxDesc->skb->len; |
| 1240 | np->stats.tx_packets++; | 1371 | np->stats.tx_packets++; |
| 1241 | 1372 | ||
| @@ -1244,19 +1375,15 @@ e100rxtx_interrupt(int irq, void *dev_id) | |||
| 1244 | dev_kfree_skb_irq(myFirstTxDesc->skb); | 1375 | dev_kfree_skb_irq(myFirstTxDesc->skb); |
| 1245 | myFirstTxDesc->skb = 0; | 1376 | myFirstTxDesc->skb = 0; |
| 1246 | myFirstTxDesc = phys_to_virt(myFirstTxDesc->descr.next); | 1377 | myFirstTxDesc = phys_to_virt(myFirstTxDesc->descr.next); |
| 1378 | /* Wake up queue. */ | ||
| 1379 | netif_wake_queue(dev); | ||
| 1247 | } | 1380 | } |
| 1248 | 1381 | ||
| 1249 | if (irqbits & IO_STATE(R_IRQ_MASK2_RD, dma0_eop, active)) { | 1382 | if (irqbits & IO_STATE(R_IRQ_MASK2_RD, dma0_eop, active)) { |
| 1250 | /* acknowledge the eop interrupt and wake up queue */ | 1383 | /* acknowledge the eop interrupt. */ |
| 1251 | *R_DMA_CH0_CLR_INTR = IO_STATE(R_DMA_CH0_CLR_INTR, clr_eop, do); | 1384 | *R_DMA_CH0_CLR_INTR = IO_STATE(R_DMA_CH0_CLR_INTR, clr_eop, do); |
| 1252 | netif_wake_queue(dev); | ||
| 1253 | } | 1385 | } |
| 1254 | 1386 | ||
| 1255 | /* Enable RX/TX IRQs again */ | ||
| 1256 | *R_IRQ_MASK2_SET = | ||
| 1257 | IO_STATE(R_IRQ_MASK2_SET, dma0_eop, set) | | ||
| 1258 | IO_STATE(R_IRQ_MASK2_SET, dma1_eop, set); | ||
| 1259 | |||
| 1260 | return IRQ_HANDLED; | 1387 | return IRQ_HANDLED; |
| 1261 | } | 1388 | } |
| 1262 | 1389 | ||
| @@ -1264,7 +1391,7 @@ static irqreturn_t | |||
| 1264 | e100nw_interrupt(int irq, void *dev_id) | 1391 | e100nw_interrupt(int irq, void *dev_id) |
| 1265 | { | 1392 | { |
| 1266 | struct net_device *dev = (struct net_device *)dev_id; | 1393 | struct net_device *dev = (struct net_device *)dev_id; |
| 1267 | struct net_local *np = (struct net_local *)dev->priv; | 1394 | struct net_local *np = netdev_priv(dev); |
| 1268 | unsigned long irqbits = *R_IRQ_MASK0_RD; | 1395 | unsigned long irqbits = *R_IRQ_MASK0_RD; |
| 1269 | 1396 | ||
| 1270 | /* check for underrun irq */ | 1397 | /* check for underrun irq */ |
| @@ -1286,7 +1413,6 @@ e100nw_interrupt(int irq, void *dev_id) | |||
| 1286 | SETS(network_tr_ctrl_shadow, R_NETWORK_TR_CTRL, clr_error, clr); | 1413 | SETS(network_tr_ctrl_shadow, R_NETWORK_TR_CTRL, clr_error, clr); |
| 1287 | *R_NETWORK_TR_CTRL = network_tr_ctrl_shadow; | 1414 | *R_NETWORK_TR_CTRL = network_tr_ctrl_shadow; |
| 1288 | SETS(network_tr_ctrl_shadow, R_NETWORK_TR_CTRL, clr_error, nop); | 1415 | SETS(network_tr_ctrl_shadow, R_NETWORK_TR_CTRL, clr_error, nop); |
| 1289 | *R_NETWORK_TR_CTRL = IO_STATE(R_NETWORK_TR_CTRL, clr_error, clr); | ||
| 1290 | np->stats.tx_errors++; | 1416 | np->stats.tx_errors++; |
| 1291 | D(printk("ethernet excessive collisions!\n")); | 1417 | D(printk("ethernet excessive collisions!\n")); |
| 1292 | } | 1418 | } |
| @@ -1299,12 +1425,13 @@ e100_rx(struct net_device *dev) | |||
| 1299 | { | 1425 | { |
| 1300 | struct sk_buff *skb; | 1426 | struct sk_buff *skb; |
| 1301 | int length = 0; | 1427 | int length = 0; |
| 1302 | struct net_local *np = (struct net_local *)dev->priv; | 1428 | struct net_local *np = netdev_priv(dev); |
| 1303 | unsigned char *skb_data_ptr; | 1429 | unsigned char *skb_data_ptr; |
| 1304 | #ifdef ETHDEBUG | 1430 | #ifdef ETHDEBUG |
| 1305 | int i; | 1431 | int i; |
| 1306 | #endif | 1432 | #endif |
| 1307 | 1433 | etrax_eth_descr *prevRxDesc; /* The descriptor right before myNextRxDesc */ | |
| 1434 | spin_lock(&np->led_lock); | ||
| 1308 | if (!led_active && time_after(jiffies, led_next_time)) { | 1435 | if (!led_active && time_after(jiffies, led_next_time)) { |
| 1309 | /* light the network leds depending on the current speed. */ | 1436 | /* light the network leds depending on the current speed. */ |
| 1310 | e100_set_network_leds(NETWORK_ACTIVITY); | 1437 | e100_set_network_leds(NETWORK_ACTIVITY); |
| @@ -1314,9 +1441,10 @@ e100_rx(struct net_device *dev) | |||
| 1314 | led_active = 1; | 1441 | led_active = 1; |
| 1315 | mod_timer(&clear_led_timer, jiffies + HZ/10); | 1442 | mod_timer(&clear_led_timer, jiffies + HZ/10); |
| 1316 | } | 1443 | } |
| 1444 | spin_unlock(&np->led_lock); | ||
| 1317 | 1445 | ||
| 1318 | length = myNextRxDesc->descr.hw_len - 4; | 1446 | length = myNextRxDesc->descr.hw_len - 4; |
| 1319 | ((struct net_local *)dev->priv)->stats.rx_bytes += length; | 1447 | np->stats.rx_bytes += length; |
| 1320 | 1448 | ||
| 1321 | #ifdef ETHDEBUG | 1449 | #ifdef ETHDEBUG |
| 1322 | printk("Got a packet of length %d:\n", length); | 1450 | printk("Got a packet of length %d:\n", length); |
| @@ -1336,7 +1464,7 @@ e100_rx(struct net_device *dev) | |||
| 1336 | if (!skb) { | 1464 | if (!skb) { |
| 1337 | np->stats.rx_errors++; | 1465 | np->stats.rx_errors++; |
| 1338 | printk(KERN_NOTICE "%s: Memory squeeze, dropping packet.\n", dev->name); | 1466 | printk(KERN_NOTICE "%s: Memory squeeze, dropping packet.\n", dev->name); |
| 1339 | return; | 1467 | goto update_nextrxdesc; |
| 1340 | } | 1468 | } |
| 1341 | 1469 | ||
| 1342 | skb_put(skb, length - ETHER_HEAD_LEN); /* allocate room for the packet body */ | 1470 | skb_put(skb, length - ETHER_HEAD_LEN); /* allocate room for the packet body */ |
| @@ -1354,15 +1482,15 @@ e100_rx(struct net_device *dev) | |||
| 1354 | else { | 1482 | else { |
| 1355 | /* Large packet, send directly to upper layers and allocate new | 1483 | /* Large packet, send directly to upper layers and allocate new |
| 1356 | * memory (aligned to cache line boundary to avoid bug). | 1484 | * memory (aligned to cache line boundary to avoid bug). |
| 1357 | * Before sending the skb to upper layers we must make sure that | 1485 | * Before sending the skb to upper layers we must make sure |
| 1358 | * skb->data points to the aligned start of the packet. | 1486 | * that skb->data points to the aligned start of the packet. |
| 1359 | */ | 1487 | */ |
| 1360 | int align; | 1488 | int align; |
| 1361 | struct sk_buff *new_skb = dev_alloc_skb(MAX_MEDIA_DATA_SIZE + 2 * L1_CACHE_BYTES); | 1489 | struct sk_buff *new_skb = dev_alloc_skb(MAX_MEDIA_DATA_SIZE + 2 * L1_CACHE_BYTES); |
| 1362 | if (!new_skb) { | 1490 | if (!new_skb) { |
| 1363 | np->stats.rx_errors++; | 1491 | np->stats.rx_errors++; |
| 1364 | printk(KERN_NOTICE "%s: Memory squeeze, dropping packet.\n", dev->name); | 1492 | printk(KERN_NOTICE "%s: Memory squeeze, dropping packet.\n", dev->name); |
| 1365 | return; | 1493 | goto update_nextrxdesc; |
| 1366 | } | 1494 | } |
| 1367 | skb = myNextRxDesc->skb; | 1495 | skb = myNextRxDesc->skb; |
| 1368 | align = (int)phys_to_virt(myNextRxDesc->descr.buf) - (int)skb->data; | 1496 | align = (int)phys_to_virt(myNextRxDesc->descr.buf) - (int)skb->data; |
| @@ -1377,9 +1505,10 @@ e100_rx(struct net_device *dev) | |||
| 1377 | /* Send the packet to the upper layers */ | 1505 | /* Send the packet to the upper layers */ |
| 1378 | netif_rx(skb); | 1506 | netif_rx(skb); |
| 1379 | 1507 | ||
| 1508 | update_nextrxdesc: | ||
| 1380 | /* Prepare for next packet */ | 1509 | /* Prepare for next packet */ |
| 1381 | myNextRxDesc->descr.status = 0; | 1510 | myNextRxDesc->descr.status = 0; |
| 1382 | myPrevRxDesc = myNextRxDesc; | 1511 | prevRxDesc = myNextRxDesc; |
| 1383 | myNextRxDesc = phys_to_virt(myNextRxDesc->descr.next); | 1512 | myNextRxDesc = phys_to_virt(myNextRxDesc->descr.next); |
| 1384 | 1513 | ||
| 1385 | rx_queue_len++; | 1514 | rx_queue_len++; |
| @@ -1387,9 +1516,9 @@ e100_rx(struct net_device *dev) | |||
| 1387 | /* Check if descriptors should be returned */ | 1516 | /* Check if descriptors should be returned */ |
| 1388 | if (rx_queue_len == RX_QUEUE_THRESHOLD) { | 1517 | if (rx_queue_len == RX_QUEUE_THRESHOLD) { |
| 1389 | flush_etrax_cache(); | 1518 | flush_etrax_cache(); |
| 1390 | myPrevRxDesc->descr.ctrl |= d_eol; | 1519 | prevRxDesc->descr.ctrl |= d_eol; |
| 1391 | myLastRxDesc->descr.ctrl &= ~d_eol; | 1520 | myLastRxDesc->descr.ctrl &= ~d_eol; |
| 1392 | myLastRxDesc = myPrevRxDesc; | 1521 | myLastRxDesc = prevRxDesc; |
| 1393 | rx_queue_len = 0; | 1522 | rx_queue_len = 0; |
| 1394 | } | 1523 | } |
| 1395 | } | 1524 | } |
| @@ -1398,7 +1527,7 @@ e100_rx(struct net_device *dev) | |||
| 1398 | static int | 1527 | static int |
| 1399 | e100_close(struct net_device *dev) | 1528 | e100_close(struct net_device *dev) |
| 1400 | { | 1529 | { |
| 1401 | struct net_local *np = (struct net_local *)dev->priv; | 1530 | struct net_local *np = netdev_priv(dev); |
| 1402 | 1531 | ||
| 1403 | printk(KERN_INFO "Closing %s.\n", dev->name); | 1532 | printk(KERN_INFO "Closing %s.\n", dev->name); |
| 1404 | 1533 | ||
| @@ -1426,6 +1555,9 @@ e100_close(struct net_device *dev) | |||
| 1426 | free_irq(NETWORK_DMA_TX_IRQ_NBR, (void *)dev); | 1555 | free_irq(NETWORK_DMA_TX_IRQ_NBR, (void *)dev); |
| 1427 | free_irq(NETWORK_STATUS_IRQ_NBR, (void *)dev); | 1556 | free_irq(NETWORK_STATUS_IRQ_NBR, (void *)dev); |
| 1428 | 1557 | ||
| 1558 | cris_free_dma(NETWORK_TX_DMA_NBR, cardname); | ||
| 1559 | cris_free_dma(NETWORK_RX_DMA_NBR, cardname); | ||
| 1560 | |||
| 1429 | /* Update the statistics here. */ | 1561 | /* Update the statistics here. */ |
| 1430 | 1562 | ||
| 1431 | update_rx_stats(&np->stats); | 1563 | update_rx_stats(&np->stats); |
| @@ -1443,18 +1575,11 @@ e100_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd) | |||
| 1443 | { | 1575 | { |
| 1444 | struct mii_ioctl_data *data = if_mii(ifr); | 1576 | struct mii_ioctl_data *data = if_mii(ifr); |
| 1445 | struct net_local *np = netdev_priv(dev); | 1577 | struct net_local *np = netdev_priv(dev); |
| 1578 | int rc = 0; | ||
| 1579 | int old_autoneg; | ||
| 1446 | 1580 | ||
| 1447 | spin_lock(&np->lock); /* Preempt protection */ | 1581 | spin_lock(&np->lock); /* Preempt protection */ |
| 1448 | switch (cmd) { | 1582 | switch (cmd) { |
| 1449 | case SIOCGMIIPHY: /* Get PHY address */ | ||
| 1450 | data->phy_id = mdio_phy_addr; | ||
| 1451 | break; | ||
| 1452 | case SIOCGMIIREG: /* Read MII register */ | ||
| 1453 | data->val_out = e100_get_mdio_reg(dev, mdio_phy_addr, data->reg_num); | ||
| 1454 | break; | ||
| 1455 | case SIOCSMIIREG: /* Write MII register */ | ||
| 1456 | e100_set_mdio_reg(dev, mdio_phy_addr, data->reg_num, data->val_in); | ||
| 1457 | break; | ||
| 1458 | /* The ioctls below should be considered obsolete but are */ | 1583 | /* The ioctls below should be considered obsolete but are */ |
| 1459 | /* still present for compatability with old scripts/apps */ | 1584 | /* still present for compatability with old scripts/apps */ |
| 1460 | case SET_ETH_SPEED_10: /* 10 Mbps */ | 1585 | case SET_ETH_SPEED_10: /* 10 Mbps */ |
| @@ -1463,60 +1588,47 @@ e100_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd) | |||
| 1463 | case SET_ETH_SPEED_100: /* 100 Mbps */ | 1588 | case SET_ETH_SPEED_100: /* 100 Mbps */ |
| 1464 | e100_set_speed(dev, 100); | 1589 | e100_set_speed(dev, 100); |
| 1465 | break; | 1590 | break; |
| 1466 | case SET_ETH_SPEED_AUTO: /* Auto negotiate speed */ | 1591 | case SET_ETH_SPEED_AUTO: /* Auto-negotiate speed */ |
| 1467 | e100_set_speed(dev, 0); | 1592 | e100_set_speed(dev, 0); |
| 1468 | break; | 1593 | break; |
| 1469 | case SET_ETH_DUPLEX_HALF: /* Half duplex. */ | 1594 | case SET_ETH_DUPLEX_HALF: /* Half duplex */ |
| 1470 | e100_set_duplex(dev, half); | 1595 | e100_set_duplex(dev, half); |
| 1471 | break; | 1596 | break; |
| 1472 | case SET_ETH_DUPLEX_FULL: /* Full duplex. */ | 1597 | case SET_ETH_DUPLEX_FULL: /* Full duplex */ |
| 1473 | e100_set_duplex(dev, full); | 1598 | e100_set_duplex(dev, full); |
| 1474 | break; | 1599 | break; |
| 1475 | case SET_ETH_DUPLEX_AUTO: /* Autonegotiate duplex*/ | 1600 | case SET_ETH_DUPLEX_AUTO: /* Auto-negotiate duplex */ |
| 1476 | e100_set_duplex(dev, autoneg); | 1601 | e100_set_duplex(dev, autoneg); |
| 1477 | break; | 1602 | break; |
| 1603 | case SET_ETH_AUTONEG: | ||
| 1604 | old_autoneg = autoneg_normal; | ||
| 1605 | autoneg_normal = *(int*)data; | ||
| 1606 | if (autoneg_normal != old_autoneg) | ||
| 1607 | e100_negotiate(dev); | ||
| 1608 | break; | ||
| 1478 | default: | 1609 | default: |
| 1479 | return -EINVAL; | 1610 | rc = generic_mii_ioctl(&np->mii_if, if_mii(ifr), |
| 1611 | cmd, NULL); | ||
| 1612 | break; | ||
| 1480 | } | 1613 | } |
| 1481 | spin_unlock(&np->lock); | 1614 | spin_unlock(&np->lock); |
| 1482 | return 0; | 1615 | return rc; |
| 1483 | } | 1616 | } |
| 1484 | 1617 | ||
| 1485 | static int e100_set_settings(struct net_device *dev, | 1618 | static int e100_get_settings(struct net_device *dev, |
| 1486 | struct ethtool_cmd *ecmd) | 1619 | struct ethtool_cmd *cmd) |
| 1487 | { | 1620 | { |
| 1488 | ecmd->supported = SUPPORTED_Autoneg | SUPPORTED_TP | SUPPORTED_MII | | 1621 | struct net_local *np = netdev_priv(dev); |
| 1489 | SUPPORTED_10baseT_Half | SUPPORTED_10baseT_Full | | 1622 | int err; |
| 1490 | SUPPORTED_100baseT_Half | SUPPORTED_100baseT_Full; | ||
| 1491 | ecmd->port = PORT_TP; | ||
| 1492 | ecmd->transceiver = XCVR_EXTERNAL; | ||
| 1493 | ecmd->phy_address = mdio_phy_addr; | ||
| 1494 | ecmd->speed = current_speed; | ||
| 1495 | ecmd->duplex = full_duplex ? DUPLEX_FULL : DUPLEX_HALF; | ||
| 1496 | ecmd->advertising = ADVERTISED_TP; | ||
| 1497 | 1623 | ||
| 1498 | if (current_duplex == autoneg && current_speed_selection == 0) | 1624 | spin_lock_irq(&np->lock); |
| 1499 | ecmd->advertising |= ADVERTISED_Autoneg; | 1625 | err = mii_ethtool_gset(&np->mii_if, cmd); |
| 1500 | else { | 1626 | spin_unlock_irq(&np->lock); |
| 1501 | ecmd->advertising |= | ||
| 1502 | ADVERTISED_10baseT_Half | ADVERTISED_10baseT_Full | | ||
| 1503 | ADVERTISED_100baseT_Half | ADVERTISED_100baseT_Full; | ||
| 1504 | if (current_speed_selection == 10) | ||
| 1505 | ecmd->advertising &= ~(ADVERTISED_100baseT_Half | | ||
| 1506 | ADVERTISED_100baseT_Full); | ||
| 1507 | else if (current_speed_selection == 100) | ||
| 1508 | ecmd->advertising &= ~(ADVERTISED_10baseT_Half | | ||
| 1509 | ADVERTISED_10baseT_Full); | ||
| 1510 | if (current_duplex == half) | ||
| 1511 | ecmd->advertising &= ~(ADVERTISED_10baseT_Full | | ||
| 1512 | ADVERTISED_100baseT_Full); | ||
| 1513 | else if (current_duplex == full) | ||
| 1514 | ecmd->advertising &= ~(ADVERTISED_10baseT_Half | | ||
| 1515 | ADVERTISED_100baseT_Half); | ||
| 1516 | } | ||
| 1517 | 1627 | ||
| 1518 | ecmd->autoneg = AUTONEG_ENABLE; | 1628 | /* The PHY may support 1000baseT, but the Etrax100 does not. */ |
| 1519 | return 0; | 1629 | cmd->supported &= ~(SUPPORTED_1000baseT_Half |
| 1630 | | SUPPORTED_1000baseT_Full); | ||
| 1631 | return err; | ||
| 1520 | } | 1632 | } |
| 1521 | 1633 | ||
| 1522 | static int e100_set_settings(struct net_device *dev, | 1634 | static int e100_set_settings(struct net_device *dev, |
| @@ -1560,7 +1672,8 @@ static const struct ethtool_ops e100_ethtool_ops = { | |||
| 1560 | static int | 1672 | static int |
| 1561 | e100_set_config(struct net_device *dev, struct ifmap *map) | 1673 | e100_set_config(struct net_device *dev, struct ifmap *map) |
| 1562 | { | 1674 | { |
| 1563 | struct net_local *np = (struct net_local *)dev->priv; | 1675 | struct net_local *np = netdev_priv(dev); |
| 1676 | |||
| 1564 | spin_lock(&np->lock); /* Preempt protection */ | 1677 | spin_lock(&np->lock); /* Preempt protection */ |
| 1565 | 1678 | ||
| 1566 | switch(map->port) { | 1679 | switch(map->port) { |
| @@ -1612,7 +1725,6 @@ update_tx_stats(struct net_device_stats *es) | |||
| 1612 | es->collisions += | 1725 | es->collisions += |
| 1613 | IO_EXTRACT(R_TR_COUNTERS, single_col, r) + | 1726 | IO_EXTRACT(R_TR_COUNTERS, single_col, r) + |
| 1614 | IO_EXTRACT(R_TR_COUNTERS, multiple_col, r); | 1727 | IO_EXTRACT(R_TR_COUNTERS, multiple_col, r); |
| 1615 | es->tx_errors += IO_EXTRACT(R_TR_COUNTERS, deferred, r); | ||
| 1616 | } | 1728 | } |
| 1617 | 1729 | ||
| 1618 | /* | 1730 | /* |
| @@ -1622,8 +1734,9 @@ update_tx_stats(struct net_device_stats *es) | |||
| 1622 | static struct net_device_stats * | 1734 | static struct net_device_stats * |
| 1623 | e100_get_stats(struct net_device *dev) | 1735 | e100_get_stats(struct net_device *dev) |
| 1624 | { | 1736 | { |
| 1625 | struct net_local *lp = (struct net_local *)dev->priv; | 1737 | struct net_local *lp = netdev_priv(dev); |
| 1626 | unsigned long flags; | 1738 | unsigned long flags; |
| 1739 | |||
| 1627 | spin_lock_irqsave(&lp->lock, flags); | 1740 | spin_lock_irqsave(&lp->lock, flags); |
| 1628 | 1741 | ||
| 1629 | update_rx_stats(&lp->stats); | 1742 | update_rx_stats(&lp->stats); |
| @@ -1643,13 +1756,13 @@ e100_get_stats(struct net_device *dev) | |||
| 1643 | static void | 1756 | static void |
| 1644 | set_multicast_list(struct net_device *dev) | 1757 | set_multicast_list(struct net_device *dev) |
| 1645 | { | 1758 | { |
| 1646 | struct net_local *lp = (struct net_local *)dev->priv; | 1759 | struct net_local *lp = netdev_priv(dev); |
| 1647 | int num_addr = dev->mc_count; | 1760 | int num_addr = dev->mc_count; |
| 1648 | unsigned long int lo_bits; | 1761 | unsigned long int lo_bits; |
| 1649 | unsigned long int hi_bits; | 1762 | unsigned long int hi_bits; |
| 1763 | |||
| 1650 | spin_lock(&lp->lock); | 1764 | spin_lock(&lp->lock); |
| 1651 | if (dev->flags & IFF_PROMISC) | 1765 | if (dev->flags & IFF_PROMISC) { |
| 1652 | { | ||
| 1653 | /* promiscuous mode */ | 1766 | /* promiscuous mode */ |
| 1654 | lo_bits = 0xfffffffful; | 1767 | lo_bits = 0xfffffffful; |
| 1655 | hi_bits = 0xfffffffful; | 1768 | hi_bits = 0xfffffffful; |
| @@ -1679,9 +1792,10 @@ set_multicast_list(struct net_device *dev) | |||
| 1679 | struct dev_mc_list *dmi = dev->mc_list; | 1792 | struct dev_mc_list *dmi = dev->mc_list; |
| 1680 | int i; | 1793 | int i; |
| 1681 | char *baddr; | 1794 | char *baddr; |
| 1795 | |||
| 1682 | lo_bits = 0x00000000ul; | 1796 | lo_bits = 0x00000000ul; |
| 1683 | hi_bits = 0x00000000ul; | 1797 | hi_bits = 0x00000000ul; |
| 1684 | for (i=0; i<num_addr; i++) { | 1798 | for (i = 0; i < num_addr; i++) { |
| 1685 | /* Calculate the hash index for the GA registers */ | 1799 | /* Calculate the hash index for the GA registers */ |
| 1686 | 1800 | ||
| 1687 | hash_ix = 0; | 1801 | hash_ix = 0; |
| @@ -1708,8 +1822,7 @@ set_multicast_list(struct net_device *dev) | |||
| 1708 | 1822 | ||
| 1709 | if (hash_ix >= 32) { | 1823 | if (hash_ix >= 32) { |
| 1710 | hi_bits |= (1 << (hash_ix-32)); | 1824 | hi_bits |= (1 << (hash_ix-32)); |
| 1711 | } | 1825 | } else { |
| 1712 | else { | ||
| 1713 | lo_bits |= (1 << hash_ix); | 1826 | lo_bits |= (1 << hash_ix); |
| 1714 | } | 1827 | } |
| 1715 | dmi = dmi->next; | 1828 | dmi = dmi->next; |
| @@ -1724,10 +1837,11 @@ set_multicast_list(struct net_device *dev) | |||
| 1724 | } | 1837 | } |
| 1725 | 1838 | ||
| 1726 | void | 1839 | void |
| 1727 | e100_hardware_send_packet(char *buf, int length) | 1840 | e100_hardware_send_packet(struct net_local *np, char *buf, int length) |
| 1728 | { | 1841 | { |
| 1729 | D(printk("e100 send pack, buf 0x%x len %d\n", buf, length)); | 1842 | D(printk("e100 send pack, buf 0x%x len %d\n", buf, length)); |
| 1730 | 1843 | ||
| 1844 | spin_lock(&np->led_lock); | ||
| 1731 | if (!led_active && time_after(jiffies, led_next_time)) { | 1845 | if (!led_active && time_after(jiffies, led_next_time)) { |
| 1732 | /* light the network leds depending on the current speed. */ | 1846 | /* light the network leds depending on the current speed. */ |
| 1733 | e100_set_network_leds(NETWORK_ACTIVITY); | 1847 | e100_set_network_leds(NETWORK_ACTIVITY); |
| @@ -1737,6 +1851,7 @@ e100_hardware_send_packet(char *buf, int length) | |||
| 1737 | led_active = 1; | 1851 | led_active = 1; |
| 1738 | mod_timer(&clear_led_timer, jiffies + HZ/10); | 1852 | mod_timer(&clear_led_timer, jiffies + HZ/10); |
| 1739 | } | 1853 | } |
| 1854 | spin_unlock(&np->led_lock); | ||
| 1740 | 1855 | ||
| 1741 | /* configure the tx dma descriptor */ | 1856 | /* configure the tx dma descriptor */ |
| 1742 | myNextTxDesc->descr.sw_len = length; | 1857 | myNextTxDesc->descr.sw_len = length; |
| @@ -1754,6 +1869,11 @@ e100_hardware_send_packet(char *buf, int length) | |||
| 1754 | static void | 1869 | static void |
| 1755 | e100_clear_network_leds(unsigned long dummy) | 1870 | e100_clear_network_leds(unsigned long dummy) |
| 1756 | { | 1871 | { |
| 1872 | struct net_device *dev = (struct net_device *)dummy; | ||
| 1873 | struct net_local *np = netdev_priv(dev); | ||
| 1874 | |||
| 1875 | spin_lock(&np->led_lock); | ||
| 1876 | |||
| 1757 | if (led_active && time_after(jiffies, led_next_time)) { | 1877 | if (led_active && time_after(jiffies, led_next_time)) { |
| 1758 | e100_set_network_leds(NO_NETWORK_ACTIVITY); | 1878 | e100_set_network_leds(NO_NETWORK_ACTIVITY); |
| 1759 | 1879 | ||
| @@ -1761,6 +1881,8 @@ e100_clear_network_leds(unsigned long dummy) | |||
| 1761 | led_next_time = jiffies + NET_FLASH_PAUSE; | 1881 | led_next_time = jiffies + NET_FLASH_PAUSE; |
| 1762 | led_active = 0; | 1882 | led_active = 0; |
| 1763 | } | 1883 | } |
| 1884 | |||
| 1885 | spin_unlock(&np->led_lock); | ||
| 1764 | } | 1886 | } |
| 1765 | 1887 | ||
| 1766 | static void | 1888 | static void |
| @@ -1781,19 +1903,25 @@ e100_set_network_leds(int active) | |||
| 1781 | #else | 1903 | #else |
| 1782 | LED_NETWORK_SET(LED_OFF); | 1904 | LED_NETWORK_SET(LED_OFF); |
| 1783 | #endif | 1905 | #endif |
| 1784 | } | 1906 | } else if (light_leds) { |
| 1785 | else if (light_leds) { | ||
| 1786 | if (current_speed == 10) { | 1907 | if (current_speed == 10) { |
| 1787 | LED_NETWORK_SET(LED_ORANGE); | 1908 | LED_NETWORK_SET(LED_ORANGE); |
| 1788 | } else { | 1909 | } else { |
| 1789 | LED_NETWORK_SET(LED_GREEN); | 1910 | LED_NETWORK_SET(LED_GREEN); |
| 1790 | } | 1911 | } |
| 1791 | } | 1912 | } else { |
| 1792 | else { | ||
| 1793 | LED_NETWORK_SET(LED_OFF); | 1913 | LED_NETWORK_SET(LED_OFF); |
| 1794 | } | 1914 | } |
| 1795 | } | 1915 | } |
| 1796 | 1916 | ||
| 1917 | #ifdef CONFIG_NET_POLL_CONTROLLER | ||
| 1918 | static void | ||
| 1919 | e100_netpoll(struct net_device* netdev) | ||
| 1920 | { | ||
| 1921 | e100rxtx_interrupt(NETWORK_DMA_TX_IRQ_NBR, netdev, NULL); | ||
| 1922 | } | ||
| 1923 | #endif | ||
| 1924 | |||
| 1797 | static int | 1925 | static int |
| 1798 | etrax_init_module(void) | 1926 | etrax_init_module(void) |
| 1799 | { | 1927 | { |
diff --git a/drivers/net/e1000/e1000_main.c b/drivers/net/e1000/e1000_main.c index 72deff0d4d90..cf39473ef90a 100644 --- a/drivers/net/e1000/e1000_main.c +++ b/drivers/net/e1000/e1000_main.c | |||
| @@ -4804,6 +4804,7 @@ e1000_mii_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd) | |||
| 4804 | spin_unlock_irqrestore(&adapter->stats_lock, flags); | 4804 | spin_unlock_irqrestore(&adapter->stats_lock, flags); |
| 4805 | return -EIO; | 4805 | return -EIO; |
| 4806 | } | 4806 | } |
| 4807 | spin_unlock_irqrestore(&adapter->stats_lock, flags); | ||
| 4807 | if (adapter->hw.media_type == e1000_media_type_copper) { | 4808 | if (adapter->hw.media_type == e1000_media_type_copper) { |
| 4808 | switch (data->reg_num) { | 4809 | switch (data->reg_num) { |
| 4809 | case PHY_CTRL: | 4810 | case PHY_CTRL: |
| @@ -4824,12 +4825,8 @@ e1000_mii_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd) | |||
| 4824 | DUPLEX_HALF; | 4825 | DUPLEX_HALF; |
| 4825 | retval = e1000_set_spd_dplx(adapter, | 4826 | retval = e1000_set_spd_dplx(adapter, |
| 4826 | spddplx); | 4827 | spddplx); |
| 4827 | if (retval) { | 4828 | if (retval) |
| 4828 | spin_unlock_irqrestore( | ||
| 4829 | &adapter->stats_lock, | ||
| 4830 | flags); | ||
| 4831 | return retval; | 4829 | return retval; |
| 4832 | } | ||
| 4833 | } | 4830 | } |
| 4834 | if (netif_running(adapter->netdev)) | 4831 | if (netif_running(adapter->netdev)) |
| 4835 | e1000_reinit_locked(adapter); | 4832 | e1000_reinit_locked(adapter); |
| @@ -4838,11 +4835,8 @@ e1000_mii_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd) | |||
| 4838 | break; | 4835 | break; |
| 4839 | case M88E1000_PHY_SPEC_CTRL: | 4836 | case M88E1000_PHY_SPEC_CTRL: |
| 4840 | case M88E1000_EXT_PHY_SPEC_CTRL: | 4837 | case M88E1000_EXT_PHY_SPEC_CTRL: |
| 4841 | if (e1000_phy_reset(&adapter->hw)) { | 4838 | if (e1000_phy_reset(&adapter->hw)) |
| 4842 | spin_unlock_irqrestore( | ||
| 4843 | &adapter->stats_lock, flags); | ||
| 4844 | return -EIO; | 4839 | return -EIO; |
| 4845 | } | ||
| 4846 | break; | 4840 | break; |
| 4847 | } | 4841 | } |
| 4848 | } else { | 4842 | } else { |
| @@ -4857,7 +4851,6 @@ e1000_mii_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd) | |||
| 4857 | break; | 4851 | break; |
| 4858 | } | 4852 | } |
| 4859 | } | 4853 | } |
| 4860 | spin_unlock_irqrestore(&adapter->stats_lock, flags); | ||
| 4861 | break; | 4854 | break; |
| 4862 | default: | 4855 | default: |
| 4863 | return -EOPNOTSUPP; | 4856 | return -EOPNOTSUPP; |
diff --git a/drivers/net/fs_enet/Kconfig b/drivers/net/fs_enet/Kconfig index 2765e49e07df..562ea68ed99b 100644 --- a/drivers/net/fs_enet/Kconfig +++ b/drivers/net/fs_enet/Kconfig | |||
| @@ -2,6 +2,7 @@ config FS_ENET | |||
| 2 | tristate "Freescale Ethernet Driver" | 2 | tristate "Freescale Ethernet Driver" |
| 3 | depends on CPM1 || CPM2 | 3 | depends on CPM1 || CPM2 |
| 4 | select MII | 4 | select MII |
| 5 | select PHYLIB | ||
| 5 | 6 | ||
| 6 | config FS_ENET_HAS_SCC | 7 | config FS_ENET_HAS_SCC |
| 7 | bool "Chip has an SCC usable for ethernet" | 8 | bool "Chip has an SCC usable for ethernet" |
| @@ -11,11 +12,19 @@ config FS_ENET_HAS_SCC | |||
| 11 | config FS_ENET_HAS_FCC | 12 | config FS_ENET_HAS_FCC |
| 12 | bool "Chip has an FCC usable for ethernet" | 13 | bool "Chip has an FCC usable for ethernet" |
| 13 | depends on FS_ENET && CPM2 | 14 | depends on FS_ENET && CPM2 |
| 14 | select MDIO_BITBANG | ||
| 15 | default y | 15 | default y |
| 16 | 16 | ||
| 17 | config FS_ENET_HAS_FEC | 17 | config FS_ENET_HAS_FEC |
| 18 | bool "Chip has an FEC usable for ethernet" | 18 | bool "Chip has an FEC usable for ethernet" |
| 19 | depends on FS_ENET && CPM1 | 19 | depends on FS_ENET && CPM1 |
| 20 | select FS_ENET_MDIO_FEC | ||
| 20 | default y | 21 | default y |
| 21 | 22 | ||
| 23 | config FS_ENET_MDIO_FEC | ||
| 24 | tristate "MDIO driver for FEC" | ||
| 25 | depends on FS_ENET && CPM1 | ||
| 26 | |||
| 27 | config FS_ENET_MDIO_FCC | ||
| 28 | tristate "MDIO driver for FCC" | ||
| 29 | depends on FS_ENET && CPM2 | ||
| 30 | select MDIO_BITBANG | ||
diff --git a/drivers/net/fs_enet/Makefile b/drivers/net/fs_enet/Makefile index 02d4dc18ba69..1ffbe0756a0c 100644 --- a/drivers/net/fs_enet/Makefile +++ b/drivers/net/fs_enet/Makefile | |||
| @@ -4,7 +4,16 @@ | |||
| 4 | 4 | ||
| 5 | obj-$(CONFIG_FS_ENET) += fs_enet.o | 5 | obj-$(CONFIG_FS_ENET) += fs_enet.o |
| 6 | 6 | ||
| 7 | obj-$(CONFIG_8xx) += mac-fec.o mac-scc.o mii-fec.o | 7 | fs_enet-$(CONFIG_FS_ENET_HAS_SCC) += mac-scc.o |
| 8 | obj-$(CONFIG_CPM2) += mac-fcc.o mii-bitbang.o | 8 | fs_enet-$(CONFIG_FS_ENET_HAS_FEC) += mac-fec.o |
| 9 | fs_enet-$(CONFIG_FS_ENET_HAS_FCC) += mac-fcc.o | ||
| 9 | 10 | ||
| 10 | fs_enet-objs := fs_enet-main.o | 11 | ifeq ($(CONFIG_PPC_CPM_NEW_BINDING),y) |
| 12 | obj-$(CONFIG_FS_ENET_MDIO_FEC) += mii-fec.o | ||
| 13 | obj-$(CONFIG_FS_ENET_MDIO_FCC) += mii-bitbang.o | ||
| 14 | else | ||
| 15 | fs_enet-$(CONFIG_FS_ENET_MDIO_FEC) += mii-fec.o | ||
| 16 | fs_enet-$(CONFIG_FS_ENET_MDIO_FCC) += mii-bitbang.o | ||
| 17 | endif | ||
| 18 | |||
| 19 | fs_enet-objs := fs_enet-main.o $(fs_enet-m) | ||
diff --git a/drivers/net/mlx4/alloc.c b/drivers/net/mlx4/alloc.c index f8d63d39f592..b226e019bc8b 100644 --- a/drivers/net/mlx4/alloc.c +++ b/drivers/net/mlx4/alloc.c | |||
| @@ -171,9 +171,10 @@ void mlx4_buf_free(struct mlx4_dev *dev, int size, struct mlx4_buf *buf) | |||
| 171 | buf->u.direct.map); | 171 | buf->u.direct.map); |
| 172 | else { | 172 | else { |
| 173 | for (i = 0; i < buf->nbufs; ++i) | 173 | for (i = 0; i < buf->nbufs; ++i) |
| 174 | dma_free_coherent(&dev->pdev->dev, PAGE_SIZE, | 174 | if (buf->u.page_list[i].buf) |
| 175 | buf->u.page_list[i].buf, | 175 | dma_free_coherent(&dev->pdev->dev, PAGE_SIZE, |
| 176 | buf->u.page_list[i].map); | 176 | buf->u.page_list[i].buf, |
| 177 | buf->u.page_list[i].map); | ||
| 177 | kfree(buf->u.page_list); | 178 | kfree(buf->u.page_list); |
| 178 | } | 179 | } |
| 179 | } | 180 | } |
diff --git a/drivers/net/mlx4/qp.c b/drivers/net/mlx4/qp.c index cc4b1be18219..42b47639c81c 100644 --- a/drivers/net/mlx4/qp.c +++ b/drivers/net/mlx4/qp.c | |||
| @@ -240,7 +240,7 @@ void mlx4_qp_free(struct mlx4_dev *dev, struct mlx4_qp *qp) | |||
| 240 | mlx4_table_put(dev, &qp_table->auxc_table, qp->qpn); | 240 | mlx4_table_put(dev, &qp_table->auxc_table, qp->qpn); |
| 241 | mlx4_table_put(dev, &qp_table->qp_table, qp->qpn); | 241 | mlx4_table_put(dev, &qp_table->qp_table, qp->qpn); |
| 242 | 242 | ||
| 243 | if (qp->qpn < dev->caps.sqp_start + 8) | 243 | if (qp->qpn >= dev->caps.sqp_start + 8) |
| 244 | mlx4_bitmap_free(&qp_table->bitmap, qp->qpn); | 244 | mlx4_bitmap_free(&qp_table->bitmap, qp->qpn); |
| 245 | } | 245 | } |
| 246 | EXPORT_SYMBOL_GPL(mlx4_qp_free); | 246 | EXPORT_SYMBOL_GPL(mlx4_qp_free); |
diff --git a/drivers/net/netx-eth.c b/drivers/net/netx-eth.c index eb0aff787dfd..5267e031daa0 100644 --- a/drivers/net/netx-eth.c +++ b/drivers/net/netx-eth.c | |||
| @@ -128,8 +128,8 @@ netx_eth_hard_start_xmit(struct sk_buff *skb, struct net_device *ndev) | |||
| 128 | FIFO_PTR_FRAMELEN(len)); | 128 | FIFO_PTR_FRAMELEN(len)); |
| 129 | 129 | ||
| 130 | ndev->trans_start = jiffies; | 130 | ndev->trans_start = jiffies; |
| 131 | dev->stats.tx_packets++; | 131 | ndev->stats.tx_packets++; |
| 132 | dev->stats.tx_bytes += skb->len; | 132 | ndev->stats.tx_bytes += skb->len; |
| 133 | 133 | ||
| 134 | netif_stop_queue(ndev); | 134 | netif_stop_queue(ndev); |
| 135 | spin_unlock_irq(&priv->lock); | 135 | spin_unlock_irq(&priv->lock); |
| @@ -155,7 +155,7 @@ static void netx_eth_receive(struct net_device *ndev) | |||
| 155 | if (unlikely(skb == NULL)) { | 155 | if (unlikely(skb == NULL)) { |
| 156 | printk(KERN_NOTICE "%s: Low memory, packet dropped.\n", | 156 | printk(KERN_NOTICE "%s: Low memory, packet dropped.\n", |
| 157 | ndev->name); | 157 | ndev->name); |
| 158 | dev->stats.rx_dropped++; | 158 | ndev->stats.rx_dropped++; |
| 159 | return; | 159 | return; |
| 160 | } | 160 | } |
| 161 | 161 | ||
diff --git a/drivers/net/s2io.c b/drivers/net/s2io.c index b8c0e7b4ca1c..632666706247 100644 --- a/drivers/net/s2io.c +++ b/drivers/net/s2io.c | |||
| @@ -84,7 +84,7 @@ | |||
| 84 | #include "s2io.h" | 84 | #include "s2io.h" |
| 85 | #include "s2io-regs.h" | 85 | #include "s2io-regs.h" |
| 86 | 86 | ||
| 87 | #define DRV_VERSION "2.0.26.5" | 87 | #define DRV_VERSION "2.0.26.6" |
| 88 | 88 | ||
| 89 | /* S2io Driver name & version. */ | 89 | /* S2io Driver name & version. */ |
| 90 | static char s2io_driver_name[] = "Neterion"; | 90 | static char s2io_driver_name[] = "Neterion"; |
| @@ -3775,6 +3775,40 @@ static int __devinit s2io_test_msi(struct s2io_nic *sp) | |||
| 3775 | 3775 | ||
| 3776 | return err; | 3776 | return err; |
| 3777 | } | 3777 | } |
| 3778 | |||
| 3779 | static void remove_msix_isr(struct s2io_nic *sp) | ||
| 3780 | { | ||
| 3781 | int i; | ||
| 3782 | u16 msi_control; | ||
| 3783 | |||
| 3784 | for (i = 0; i < MAX_REQUESTED_MSI_X; i++) { | ||
| 3785 | if (sp->s2io_entries[i].in_use == | ||
| 3786 | MSIX_REGISTERED_SUCCESS) { | ||
| 3787 | int vector = sp->entries[i].vector; | ||
| 3788 | void *arg = sp->s2io_entries[i].arg; | ||
| 3789 | free_irq(vector, arg); | ||
| 3790 | } | ||
| 3791 | } | ||
| 3792 | |||
| 3793 | kfree(sp->entries); | ||
| 3794 | kfree(sp->s2io_entries); | ||
| 3795 | sp->entries = NULL; | ||
| 3796 | sp->s2io_entries = NULL; | ||
| 3797 | |||
| 3798 | pci_read_config_word(sp->pdev, 0x42, &msi_control); | ||
| 3799 | msi_control &= 0xFFFE; /* Disable MSI */ | ||
| 3800 | pci_write_config_word(sp->pdev, 0x42, msi_control); | ||
| 3801 | |||
| 3802 | pci_disable_msix(sp->pdev); | ||
| 3803 | } | ||
| 3804 | |||
| 3805 | static void remove_inta_isr(struct s2io_nic *sp) | ||
| 3806 | { | ||
| 3807 | struct net_device *dev = sp->dev; | ||
| 3808 | |||
| 3809 | free_irq(sp->pdev->irq, dev); | ||
| 3810 | } | ||
| 3811 | |||
| 3778 | /* ********************************************************* * | 3812 | /* ********************************************************* * |
| 3779 | * Functions defined below concern the OS part of the driver * | 3813 | * Functions defined below concern the OS part of the driver * |
| 3780 | * ********************************************************* */ | 3814 | * ********************************************************* */ |
| @@ -3809,28 +3843,9 @@ static int s2io_open(struct net_device *dev) | |||
| 3809 | int ret = s2io_enable_msi_x(sp); | 3843 | int ret = s2io_enable_msi_x(sp); |
| 3810 | 3844 | ||
| 3811 | if (!ret) { | 3845 | if (!ret) { |
| 3812 | u16 msi_control; | ||
| 3813 | |||
| 3814 | ret = s2io_test_msi(sp); | 3846 | ret = s2io_test_msi(sp); |
| 3815 | |||
| 3816 | /* rollback MSI-X, will re-enable during add_isr() */ | 3847 | /* rollback MSI-X, will re-enable during add_isr() */ |
| 3817 | kfree(sp->entries); | 3848 | remove_msix_isr(sp); |
| 3818 | sp->mac_control.stats_info->sw_stat.mem_freed += | ||
| 3819 | (MAX_REQUESTED_MSI_X * | ||
| 3820 | sizeof(struct msix_entry)); | ||
| 3821 | kfree(sp->s2io_entries); | ||
| 3822 | sp->mac_control.stats_info->sw_stat.mem_freed += | ||
| 3823 | (MAX_REQUESTED_MSI_X * | ||
| 3824 | sizeof(struct s2io_msix_entry)); | ||
| 3825 | sp->entries = NULL; | ||
| 3826 | sp->s2io_entries = NULL; | ||
| 3827 | |||
| 3828 | pci_read_config_word(sp->pdev, 0x42, &msi_control); | ||
| 3829 | msi_control &= 0xFFFE; /* Disable MSI */ | ||
| 3830 | pci_write_config_word(sp->pdev, 0x42, msi_control); | ||
| 3831 | |||
| 3832 | pci_disable_msix(sp->pdev); | ||
| 3833 | |||
| 3834 | } | 3849 | } |
| 3835 | if (ret) { | 3850 | if (ret) { |
| 3836 | 3851 | ||
| @@ -6719,15 +6734,22 @@ static int s2io_add_isr(struct s2io_nic * sp) | |||
| 6719 | } | 6734 | } |
| 6720 | } | 6735 | } |
| 6721 | if (err) { | 6736 | if (err) { |
| 6737 | remove_msix_isr(sp); | ||
| 6722 | DBG_PRINT(ERR_DBG,"%s:MSI-X-%d registration " | 6738 | DBG_PRINT(ERR_DBG,"%s:MSI-X-%d registration " |
| 6723 | "failed\n", dev->name, i); | 6739 | "failed\n", dev->name, i); |
| 6724 | DBG_PRINT(ERR_DBG, "Returned: %d\n", err); | 6740 | DBG_PRINT(ERR_DBG, "%s: defaulting to INTA\n", |
| 6725 | return -1; | 6741 | dev->name); |
| 6742 | sp->config.intr_type = INTA; | ||
| 6743 | break; | ||
| 6726 | } | 6744 | } |
| 6727 | sp->s2io_entries[i].in_use = MSIX_REGISTERED_SUCCESS; | 6745 | sp->s2io_entries[i].in_use = MSIX_REGISTERED_SUCCESS; |
| 6728 | } | 6746 | } |
| 6729 | printk("MSI-X-TX %d entries enabled\n",msix_tx_cnt); | 6747 | if (!err) { |
| 6730 | printk("MSI-X-RX %d entries enabled\n",msix_rx_cnt); | 6748 | printk(KERN_INFO "MSI-X-TX %d entries enabled\n", |
| 6749 | msix_tx_cnt); | ||
| 6750 | printk(KERN_INFO "MSI-X-RX %d entries enabled\n", | ||
| 6751 | msix_rx_cnt); | ||
| 6752 | } | ||
| 6731 | } | 6753 | } |
| 6732 | if (sp->config.intr_type == INTA) { | 6754 | if (sp->config.intr_type == INTA) { |
| 6733 | err = request_irq((int) sp->pdev->irq, s2io_isr, IRQF_SHARED, | 6755 | err = request_irq((int) sp->pdev->irq, s2io_isr, IRQF_SHARED, |
| @@ -6742,40 +6764,10 @@ static int s2io_add_isr(struct s2io_nic * sp) | |||
| 6742 | } | 6764 | } |
| 6743 | static void s2io_rem_isr(struct s2io_nic * sp) | 6765 | static void s2io_rem_isr(struct s2io_nic * sp) |
| 6744 | { | 6766 | { |
| 6745 | struct net_device *dev = sp->dev; | 6767 | if (sp->config.intr_type == MSI_X) |
| 6746 | struct swStat *stats = &sp->mac_control.stats_info->sw_stat; | 6768 | remove_msix_isr(sp); |
| 6747 | 6769 | else | |
| 6748 | if (sp->config.intr_type == MSI_X) { | 6770 | remove_inta_isr(sp); |
| 6749 | int i; | ||
| 6750 | u16 msi_control; | ||
| 6751 | |||
| 6752 | for (i=1; (sp->s2io_entries[i].in_use == | ||
| 6753 | MSIX_REGISTERED_SUCCESS); i++) { | ||
| 6754 | int vector = sp->entries[i].vector; | ||
| 6755 | void *arg = sp->s2io_entries[i].arg; | ||
| 6756 | |||
| 6757 | synchronize_irq(vector); | ||
| 6758 | free_irq(vector, arg); | ||
| 6759 | } | ||
| 6760 | |||
| 6761 | kfree(sp->entries); | ||
| 6762 | stats->mem_freed += | ||
| 6763 | (MAX_REQUESTED_MSI_X * sizeof(struct msix_entry)); | ||
| 6764 | kfree(sp->s2io_entries); | ||
| 6765 | stats->mem_freed += | ||
| 6766 | (MAX_REQUESTED_MSI_X * sizeof(struct s2io_msix_entry)); | ||
| 6767 | sp->entries = NULL; | ||
| 6768 | sp->s2io_entries = NULL; | ||
| 6769 | |||
| 6770 | pci_read_config_word(sp->pdev, 0x42, &msi_control); | ||
| 6771 | msi_control &= 0xFFFE; /* Disable MSI */ | ||
| 6772 | pci_write_config_word(sp->pdev, 0x42, msi_control); | ||
| 6773 | |||
| 6774 | pci_disable_msix(sp->pdev); | ||
| 6775 | } else { | ||
| 6776 | synchronize_irq(sp->pdev->irq); | ||
| 6777 | free_irq(sp->pdev->irq, dev); | ||
| 6778 | } | ||
| 6779 | } | 6771 | } |
| 6780 | 6772 | ||
| 6781 | static void do_s2io_card_down(struct s2io_nic * sp, int do_io) | 6773 | static void do_s2io_card_down(struct s2io_nic * sp, int do_io) |
diff --git a/drivers/net/skge.c b/drivers/net/skge.c index b9961dc47606..6d62250fba07 100644 --- a/drivers/net/skge.c +++ b/drivers/net/skge.c | |||
| @@ -2512,31 +2512,32 @@ static int skge_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd) | |||
| 2512 | return err; | 2512 | return err; |
| 2513 | } | 2513 | } |
| 2514 | 2514 | ||
| 2515 | /* Assign Ram Buffer allocation to queue */ | 2515 | static void skge_ramset(struct skge_hw *hw, u16 q, u32 start, size_t len) |
| 2516 | static void skge_ramset(struct skge_hw *hw, u16 q, u32 start, u32 space) | ||
| 2517 | { | 2516 | { |
| 2518 | u32 end; | 2517 | u32 end; |
| 2519 | 2518 | ||
| 2520 | /* convert from K bytes to qwords used for hw register */ | 2519 | start /= 8; |
| 2521 | start *= 1024/8; | 2520 | len /= 8; |
| 2522 | space *= 1024/8; | 2521 | end = start + len - 1; |
| 2523 | end = start + space - 1; | ||
| 2524 | 2522 | ||
| 2525 | skge_write8(hw, RB_ADDR(q, RB_CTRL), RB_RST_CLR); | 2523 | skge_write8(hw, RB_ADDR(q, RB_CTRL), RB_RST_CLR); |
| 2526 | skge_write32(hw, RB_ADDR(q, RB_START), start); | 2524 | skge_write32(hw, RB_ADDR(q, RB_START), start); |
| 2527 | skge_write32(hw, RB_ADDR(q, RB_END), end); | ||
| 2528 | skge_write32(hw, RB_ADDR(q, RB_WP), start); | 2525 | skge_write32(hw, RB_ADDR(q, RB_WP), start); |
| 2529 | skge_write32(hw, RB_ADDR(q, RB_RP), start); | 2526 | skge_write32(hw, RB_ADDR(q, RB_RP), start); |
| 2527 | skge_write32(hw, RB_ADDR(q, RB_END), end); | ||
| 2530 | 2528 | ||
| 2531 | if (q == Q_R1 || q == Q_R2) { | 2529 | if (q == Q_R1 || q == Q_R2) { |
| 2532 | u32 tp = space - space/4; | ||
| 2533 | |||
| 2534 | /* Set thresholds on receive queue's */ | 2530 | /* Set thresholds on receive queue's */ |
| 2535 | skge_write32(hw, RB_ADDR(q, RB_RX_UTPP), tp); | 2531 | skge_write32(hw, RB_ADDR(q, RB_RX_UTPP), |
| 2536 | skge_write32(hw, RB_ADDR(q, RB_RX_LTPP), space/4); | 2532 | start + (2*len)/3); |
| 2537 | } else if (hw->chip_id != CHIP_ID_GENESIS) | 2533 | skge_write32(hw, RB_ADDR(q, RB_RX_LTPP), |
| 2538 | /* Genesis Tx Fifo is too small for normal store/forward */ | 2534 | start + (len/3)); |
| 2535 | } else { | ||
| 2536 | /* Enable store & forward on Tx queue's because | ||
| 2537 | * Tx FIFO is only 4K on Genesis and 1K on Yukon | ||
| 2538 | */ | ||
| 2539 | skge_write8(hw, RB_ADDR(q, RB_CTRL), RB_ENA_STFWD); | 2539 | skge_write8(hw, RB_ADDR(q, RB_CTRL), RB_ENA_STFWD); |
| 2540 | } | ||
| 2540 | 2541 | ||
| 2541 | skge_write8(hw, RB_ADDR(q, RB_CTRL), RB_ENA_OP_MD); | 2542 | skge_write8(hw, RB_ADDR(q, RB_CTRL), RB_ENA_OP_MD); |
| 2542 | } | 2543 | } |
| @@ -2564,7 +2565,7 @@ static int skge_up(struct net_device *dev) | |||
| 2564 | struct skge_port *skge = netdev_priv(dev); | 2565 | struct skge_port *skge = netdev_priv(dev); |
| 2565 | struct skge_hw *hw = skge->hw; | 2566 | struct skge_hw *hw = skge->hw; |
| 2566 | int port = skge->port; | 2567 | int port = skge->port; |
| 2567 | u32 ramaddr, ramsize, rxspace; | 2568 | u32 chunk, ram_addr; |
| 2568 | size_t rx_size, tx_size; | 2569 | size_t rx_size, tx_size; |
| 2569 | int err; | 2570 | int err; |
| 2570 | 2571 | ||
| @@ -2619,15 +2620,14 @@ static int skge_up(struct net_device *dev) | |||
| 2619 | spin_unlock_bh(&hw->phy_lock); | 2620 | spin_unlock_bh(&hw->phy_lock); |
| 2620 | 2621 | ||
| 2621 | /* Configure RAMbuffers */ | 2622 | /* Configure RAMbuffers */ |
| 2622 | ramsize = (hw->ram_size - hw->ram_offset) / hw->ports; | 2623 | chunk = hw->ram_size / ((hw->ports + 1)*2); |
| 2623 | ramaddr = hw->ram_offset + port * ramsize; | 2624 | ram_addr = hw->ram_offset + 2 * chunk * port; |
| 2624 | rxspace = 8 + (2*(ramsize - 16))/3; | ||
| 2625 | |||
| 2626 | skge_ramset(hw, rxqaddr[port], ramaddr, rxspace); | ||
| 2627 | skge_ramset(hw, txqaddr[port], ramaddr + rxspace, ramsize - rxspace); | ||
| 2628 | 2625 | ||
| 2626 | skge_ramset(hw, rxqaddr[port], ram_addr, chunk); | ||
| 2629 | skge_qset(skge, rxqaddr[port], skge->rx_ring.to_clean); | 2627 | skge_qset(skge, rxqaddr[port], skge->rx_ring.to_clean); |
| 2628 | |||
| 2630 | BUG_ON(skge->tx_ring.to_use != skge->tx_ring.to_clean); | 2629 | BUG_ON(skge->tx_ring.to_use != skge->tx_ring.to_clean); |
| 2630 | skge_ramset(hw, txqaddr[port], ram_addr+chunk, chunk); | ||
| 2631 | skge_qset(skge, txqaddr[port], skge->tx_ring.to_use); | 2631 | skge_qset(skge, txqaddr[port], skge->tx_ring.to_use); |
| 2632 | 2632 | ||
| 2633 | /* Start receiver BMU */ | 2633 | /* Start receiver BMU */ |
| @@ -3591,12 +3591,15 @@ static int skge_reset(struct skge_hw *hw) | |||
| 3591 | if (hw->chip_id == CHIP_ID_GENESIS) { | 3591 | if (hw->chip_id == CHIP_ID_GENESIS) { |
| 3592 | if (t8 == 3) { | 3592 | if (t8 == 3) { |
| 3593 | /* special case: 4 x 64k x 36, offset = 0x80000 */ | 3593 | /* special case: 4 x 64k x 36, offset = 0x80000 */ |
| 3594 | hw->ram_size = 1024; | 3594 | hw->ram_size = 0x100000; |
| 3595 | hw->ram_offset = 512; | 3595 | hw->ram_offset = 0x80000; |
| 3596 | } else | 3596 | } else |
| 3597 | hw->ram_size = t8 * 512; | 3597 | hw->ram_size = t8 * 512; |
| 3598 | } else /* Yukon */ | 3598 | } |
| 3599 | hw->ram_size = t8 ? t8 * 4 : 128; | 3599 | else if (t8 == 0) |
| 3600 | hw->ram_size = 0x20000; | ||
| 3601 | else | ||
| 3602 | hw->ram_size = t8 * 4096; | ||
| 3600 | 3603 | ||
| 3601 | hw->intr_mask = IS_HW_ERR; | 3604 | hw->intr_mask = IS_HW_ERR; |
| 3602 | 3605 | ||
diff --git a/drivers/net/sunhme.c b/drivers/net/sunhme.c index c20a3bd21bb2..9cc13dd8a821 100644 --- a/drivers/net/sunhme.c +++ b/drivers/net/sunhme.c | |||
| @@ -1281,7 +1281,7 @@ static void happy_meal_init_rings(struct happy_meal *hp) | |||
| 1281 | skb->dev = dev; | 1281 | skb->dev = dev; |
| 1282 | 1282 | ||
| 1283 | /* Because we reserve afterwards. */ | 1283 | /* Because we reserve afterwards. */ |
| 1284 | skb_put(skb, (ETH_FRAME_LEN + RX_OFFSET)); | 1284 | skb_put(skb, (ETH_FRAME_LEN + RX_OFFSET + 4)); |
| 1285 | hme_write_rxd(hp, &hb->happy_meal_rxd[i], | 1285 | hme_write_rxd(hp, &hb->happy_meal_rxd[i], |
| 1286 | (RXFLAG_OWN | ((RX_BUF_ALLOC_SIZE - RX_OFFSET) << 16)), | 1286 | (RXFLAG_OWN | ((RX_BUF_ALLOC_SIZE - RX_OFFSET) << 16)), |
| 1287 | hme_dma_map(hp, skb->data, RX_BUF_ALLOC_SIZE, DMA_FROMDEVICE)); | 1287 | hme_dma_map(hp, skb->data, RX_BUF_ALLOC_SIZE, DMA_FROMDEVICE)); |
| @@ -1700,6 +1700,11 @@ static int happy_meal_init(struct happy_meal *hp) | |||
| 1700 | HMD(("tx old[%08x] and rx [%08x] ON!\n", | 1700 | HMD(("tx old[%08x] and rx [%08x] ON!\n", |
| 1701 | hme_read32(hp, bregs + BMAC_TXCFG), | 1701 | hme_read32(hp, bregs + BMAC_TXCFG), |
| 1702 | hme_read32(hp, bregs + BMAC_RXCFG))); | 1702 | hme_read32(hp, bregs + BMAC_RXCFG))); |
| 1703 | |||
| 1704 | /* Set larger TX/RX size to allow for 802.1q */ | ||
| 1705 | hme_write32(hp, bregs + BMAC_TXMAX, ETH_FRAME_LEN + 8); | ||
| 1706 | hme_write32(hp, bregs + BMAC_RXMAX, ETH_FRAME_LEN + 8); | ||
| 1707 | |||
| 1703 | hme_write32(hp, bregs + BMAC_TXCFG, | 1708 | hme_write32(hp, bregs + BMAC_TXCFG, |
| 1704 | hme_read32(hp, bregs + BMAC_TXCFG) | BIGMAC_TXCFG_ENABLE); | 1709 | hme_read32(hp, bregs + BMAC_TXCFG) | BIGMAC_TXCFG_ENABLE); |
| 1705 | hme_write32(hp, bregs + BMAC_RXCFG, | 1710 | hme_write32(hp, bregs + BMAC_RXCFG, |
| @@ -2039,7 +2044,7 @@ static void happy_meal_rx(struct happy_meal *hp, struct net_device *dev) | |||
| 2039 | hme_dma_unmap(hp, dma_addr, RX_BUF_ALLOC_SIZE, DMA_FROMDEVICE); | 2044 | hme_dma_unmap(hp, dma_addr, RX_BUF_ALLOC_SIZE, DMA_FROMDEVICE); |
| 2040 | hp->rx_skbs[elem] = new_skb; | 2045 | hp->rx_skbs[elem] = new_skb; |
| 2041 | new_skb->dev = dev; | 2046 | new_skb->dev = dev; |
| 2042 | skb_put(new_skb, (ETH_FRAME_LEN + RX_OFFSET)); | 2047 | skb_put(new_skb, (ETH_FRAME_LEN + RX_OFFSET + 4)); |
| 2043 | hme_write_rxd(hp, this, | 2048 | hme_write_rxd(hp, this, |
| 2044 | (RXFLAG_OWN|((RX_BUF_ALLOC_SIZE-RX_OFFSET)<<16)), | 2049 | (RXFLAG_OWN|((RX_BUF_ALLOC_SIZE-RX_OFFSET)<<16)), |
| 2045 | hme_dma_map(hp, new_skb->data, RX_BUF_ALLOC_SIZE, DMA_FROMDEVICE)); | 2050 | hme_dma_map(hp, new_skb->data, RX_BUF_ALLOC_SIZE, DMA_FROMDEVICE)); |
| @@ -2809,8 +2814,8 @@ static int __devinit happy_meal_sbus_probe_one(struct sbus_dev *sdev, int is_qfe | |||
| 2809 | dev->watchdog_timeo = 5*HZ; | 2814 | dev->watchdog_timeo = 5*HZ; |
| 2810 | dev->ethtool_ops = &hme_ethtool_ops; | 2815 | dev->ethtool_ops = &hme_ethtool_ops; |
| 2811 | 2816 | ||
| 2812 | /* Happy Meal can do it all... except VLAN. */ | 2817 | /* Happy Meal can do it all... */ |
| 2813 | dev->features |= NETIF_F_SG | NETIF_F_HW_CSUM | NETIF_F_VLAN_CHALLENGED; | 2818 | dev->features |= NETIF_F_SG | NETIF_F_HW_CSUM; |
| 2814 | 2819 | ||
| 2815 | dev->irq = sdev->irqs[0]; | 2820 | dev->irq = sdev->irqs[0]; |
| 2816 | 2821 | ||
| @@ -3143,8 +3148,8 @@ static int __devinit happy_meal_pci_probe(struct pci_dev *pdev, | |||
| 3143 | dev->irq = pdev->irq; | 3148 | dev->irq = pdev->irq; |
| 3144 | dev->dma = 0; | 3149 | dev->dma = 0; |
| 3145 | 3150 | ||
| 3146 | /* Happy Meal can do it all... except VLAN. */ | 3151 | /* Happy Meal can do it all... */ |
| 3147 | dev->features |= NETIF_F_SG | NETIF_F_HW_CSUM | NETIF_F_VLAN_CHALLENGED; | 3152 | dev->features |= NETIF_F_SG | NETIF_F_HW_CSUM; |
| 3148 | 3153 | ||
| 3149 | #if defined(CONFIG_SBUS) && defined(CONFIG_PCI) | 3154 | #if defined(CONFIG_SBUS) && defined(CONFIG_PCI) |
| 3150 | /* Hook up PCI register/dma accessors. */ | 3155 | /* Hook up PCI register/dma accessors. */ |
diff --git a/drivers/net/via-velocity.c b/drivers/net/via-velocity.c index 5c4a92de9a07..450e29d7a9f3 100644 --- a/drivers/net/via-velocity.c +++ b/drivers/net/via-velocity.c | |||
| @@ -1963,6 +1963,11 @@ static int velocity_change_mtu(struct net_device *dev, int new_mtu) | |||
| 1963 | return -EINVAL; | 1963 | return -EINVAL; |
| 1964 | } | 1964 | } |
| 1965 | 1965 | ||
| 1966 | if (!netif_running(dev)) { | ||
| 1967 | dev->mtu = new_mtu; | ||
| 1968 | return 0; | ||
| 1969 | } | ||
| 1970 | |||
| 1966 | if (new_mtu != oldmtu) { | 1971 | if (new_mtu != oldmtu) { |
| 1967 | spin_lock_irqsave(&vptr->lock, flags); | 1972 | spin_lock_irqsave(&vptr->lock, flags); |
| 1968 | 1973 | ||
diff --git a/drivers/net/wireless/iwlwifi/iwl-3945-rs.c b/drivers/net/wireless/iwlwifi/iwl-3945-rs.c index 262ab0b55824..c48b1b537d2b 100644 --- a/drivers/net/wireless/iwlwifi/iwl-3945-rs.c +++ b/drivers/net/wireless/iwlwifi/iwl-3945-rs.c | |||
| @@ -71,19 +71,19 @@ struct iwl_rate_scale_priv { | |||
| 71 | }; | 71 | }; |
| 72 | 72 | ||
| 73 | static s32 iwl_expected_tpt_g[IWL_RATE_COUNT] = { | 73 | static s32 iwl_expected_tpt_g[IWL_RATE_COUNT] = { |
| 74 | 0, 0, 76, 104, 130, 168, 191, 202, 7, 13, 35, 58 | 74 | 7, 13, 35, 58, 0, 0, 76, 104, 130, 168, 191, 202 |
| 75 | }; | 75 | }; |
| 76 | 76 | ||
| 77 | static s32 iwl_expected_tpt_g_prot[IWL_RATE_COUNT] = { | 77 | static s32 iwl_expected_tpt_g_prot[IWL_RATE_COUNT] = { |
| 78 | 0, 0, 0, 80, 93, 113, 123, 125, 7, 13, 35, 58 | 78 | 7, 13, 35, 58, 0, 0, 0, 80, 93, 113, 123, 125 |
| 79 | }; | 79 | }; |
| 80 | 80 | ||
| 81 | static s32 iwl_expected_tpt_a[IWL_RATE_COUNT] = { | 81 | static s32 iwl_expected_tpt_a[IWL_RATE_COUNT] = { |
| 82 | 40, 57, 72, 98, 121, 154, 177, 186, 0, 0, 0, 0 | 82 | 0, 0, 0, 0, 40, 57, 72, 98, 121, 154, 177, 186 |
| 83 | }; | 83 | }; |
| 84 | 84 | ||
| 85 | static s32 iwl_expected_tpt_b[IWL_RATE_COUNT] = { | 85 | static s32 iwl_expected_tpt_b[IWL_RATE_COUNT] = { |
| 86 | 0, 0, 0, 0, 0, 0, 0, 0, 7, 13, 35, 58 | 86 | 7, 13, 35, 58, 0, 0, 0, 0, 0, 0, 0, 0 |
| 87 | }; | 87 | }; |
| 88 | 88 | ||
| 89 | struct iwl_tpt_entry { | 89 | struct iwl_tpt_entry { |
| @@ -350,6 +350,10 @@ static void rs_rate_init(void *priv_rate, void *priv_sta, | |||
| 350 | 350 | ||
| 351 | sta->last_txrate = sta->txrate; | 351 | sta->last_txrate = sta->txrate; |
| 352 | 352 | ||
| 353 | /* For MODE_IEEE80211A mode it start at IWL_FIRST_OFDM_RATE */ | ||
| 354 | if (local->hw.conf.phymode == MODE_IEEE80211A) | ||
| 355 | sta->last_txrate += IWL_FIRST_OFDM_RATE; | ||
| 356 | |||
| 353 | IWL_DEBUG_RATE("leave\n"); | 357 | IWL_DEBUG_RATE("leave\n"); |
| 354 | } | 358 | } |
| 355 | 359 | ||
| @@ -417,6 +421,33 @@ static void rs_free_sta(void *priv, void *priv_sta) | |||
| 417 | IWL_DEBUG_RATE("leave\n"); | 421 | IWL_DEBUG_RATE("leave\n"); |
| 418 | } | 422 | } |
| 419 | 423 | ||
| 424 | |||
| 425 | /* | ||
| 426 | * get ieee prev rate from rate scale table. | ||
| 427 | * for A and B mode we need to overright prev | ||
| 428 | * value | ||
| 429 | */ | ||
| 430 | static int rs_adjust_next_rate(struct iwl_priv *priv, int rate) | ||
| 431 | { | ||
| 432 | int next_rate = iwl_get_prev_ieee_rate(rate); | ||
| 433 | |||
| 434 | switch (priv->phymode) { | ||
| 435 | case MODE_IEEE80211A: | ||
| 436 | if (rate == IWL_RATE_12M_INDEX) | ||
| 437 | next_rate = IWL_RATE_9M_INDEX; | ||
| 438 | else if (rate == IWL_RATE_6M_INDEX) | ||
| 439 | next_rate = IWL_RATE_6M_INDEX; | ||
| 440 | break; | ||
| 441 | case MODE_IEEE80211B: | ||
| 442 | if (rate == IWL_RATE_11M_INDEX_TABLE) | ||
| 443 | next_rate = IWL_RATE_5M_INDEX_TABLE; | ||
| 444 | break; | ||
| 445 | default: | ||
| 446 | break; | ||
| 447 | } | ||
| 448 | |||
| 449 | return next_rate; | ||
| 450 | } | ||
| 420 | /** | 451 | /** |
| 421 | * rs_tx_status - Update rate control values based on Tx results | 452 | * rs_tx_status - Update rate control values based on Tx results |
| 422 | * | 453 | * |
| @@ -479,7 +510,8 @@ static void rs_tx_status(void *priv_rate, | |||
| 479 | last_index = scale_rate_index; | 510 | last_index = scale_rate_index; |
| 480 | } else { | 511 | } else { |
| 481 | current_count = priv->retry_rate; | 512 | current_count = priv->retry_rate; |
| 482 | last_index = iwl_get_prev_ieee_rate(scale_rate_index); | 513 | last_index = rs_adjust_next_rate(priv, |
| 514 | scale_rate_index); | ||
| 483 | } | 515 | } |
| 484 | 516 | ||
| 485 | /* Update this rate accounting for as many retries | 517 | /* Update this rate accounting for as many retries |
| @@ -494,9 +526,10 @@ static void rs_tx_status(void *priv_rate, | |||
| 494 | 526 | ||
| 495 | if (retries) | 527 | if (retries) |
| 496 | scale_rate_index = | 528 | scale_rate_index = |
| 497 | iwl_get_prev_ieee_rate(scale_rate_index); | 529 | rs_adjust_next_rate(priv, scale_rate_index); |
| 498 | } | 530 | } |
| 499 | 531 | ||
| 532 | |||
| 500 | /* Update the last index window with success/failure based on ACK */ | 533 | /* Update the last index window with success/failure based on ACK */ |
| 501 | IWL_DEBUG_RATE("Update rate %d with %s.\n", | 534 | IWL_DEBUG_RATE("Update rate %d with %s.\n", |
| 502 | last_index, | 535 | last_index, |
| @@ -672,7 +705,10 @@ static struct ieee80211_rate *rs_get_rate(void *priv_rate, | |||
| 672 | } | 705 | } |
| 673 | 706 | ||
| 674 | rate_mask = sta->supp_rates; | 707 | rate_mask = sta->supp_rates; |
| 675 | index = min(sta->txrate & 0xffff, IWL_RATE_COUNT - 1); | 708 | index = min(sta->last_txrate & 0xffff, IWL_RATE_COUNT - 1); |
| 709 | |||
| 710 | if (priv->phymode == (u8) MODE_IEEE80211A) | ||
| 711 | rate_mask = rate_mask << IWL_FIRST_OFDM_RATE; | ||
| 676 | 712 | ||
| 677 | rs_priv = (void *)sta->rate_ctrl_priv; | 713 | rs_priv = (void *)sta->rate_ctrl_priv; |
| 678 | 714 | ||
| @@ -801,7 +837,11 @@ static struct ieee80211_rate *rs_get_rate(void *priv_rate, | |||
| 801 | out: | 837 | out: |
| 802 | 838 | ||
| 803 | sta->last_txrate = index; | 839 | sta->last_txrate = index; |
| 804 | sta->txrate = sta->last_txrate; | 840 | if (priv->phymode == (u8) MODE_IEEE80211A) |
| 841 | sta->txrate = sta->last_txrate - IWL_FIRST_OFDM_RATE; | ||
| 842 | else | ||
| 843 | sta->txrate = sta->last_txrate; | ||
| 844 | |||
| 805 | sta_info_put(sta); | 845 | sta_info_put(sta); |
| 806 | 846 | ||
| 807 | IWL_DEBUG_RATE("leave: %d\n", index); | 847 | IWL_DEBUG_RATE("leave: %d\n", index); |
diff --git a/drivers/net/wireless/iwlwifi/iwl-3945-rs.h b/drivers/net/wireless/iwlwifi/iwl-3945-rs.h index b926738e0ea1..bec4d3ffca1d 100644 --- a/drivers/net/wireless/iwlwifi/iwl-3945-rs.h +++ b/drivers/net/wireless/iwlwifi/iwl-3945-rs.h | |||
| @@ -36,10 +36,17 @@ struct iwl_rate_info { | |||
| 36 | u8 next_rs; /* next rate used in rs algo */ | 36 | u8 next_rs; /* next rate used in rs algo */ |
| 37 | u8 prev_rs_tgg; /* previous rate used in TGG rs algo */ | 37 | u8 prev_rs_tgg; /* previous rate used in TGG rs algo */ |
| 38 | u8 next_rs_tgg; /* next rate used in TGG rs algo */ | 38 | u8 next_rs_tgg; /* next rate used in TGG rs algo */ |
| 39 | u8 table_rs_index; /* index in rate scale table cmd */ | ||
| 40 | u8 prev_table_rs; /* prev in rate table cmd */ | ||
| 41 | |||
| 39 | }; | 42 | }; |
| 40 | 43 | ||
| 41 | enum { | 44 | enum { |
| 42 | IWL_RATE_6M_INDEX = 0, | 45 | IWL_RATE_1M_INDEX = 0, |
| 46 | IWL_RATE_2M_INDEX, | ||
| 47 | IWL_RATE_5M_INDEX, | ||
| 48 | IWL_RATE_11M_INDEX, | ||
| 49 | IWL_RATE_6M_INDEX, | ||
| 43 | IWL_RATE_9M_INDEX, | 50 | IWL_RATE_9M_INDEX, |
| 44 | IWL_RATE_12M_INDEX, | 51 | IWL_RATE_12M_INDEX, |
| 45 | IWL_RATE_18M_INDEX, | 52 | IWL_RATE_18M_INDEX, |
| @@ -47,16 +54,28 @@ enum { | |||
| 47 | IWL_RATE_36M_INDEX, | 54 | IWL_RATE_36M_INDEX, |
| 48 | IWL_RATE_48M_INDEX, | 55 | IWL_RATE_48M_INDEX, |
| 49 | IWL_RATE_54M_INDEX, | 56 | IWL_RATE_54M_INDEX, |
| 50 | IWL_RATE_1M_INDEX, | ||
| 51 | IWL_RATE_2M_INDEX, | ||
| 52 | IWL_RATE_5M_INDEX, | ||
| 53 | IWL_RATE_11M_INDEX, | ||
| 54 | IWL_RATE_COUNT, | 57 | IWL_RATE_COUNT, |
| 55 | IWL_RATE_INVM_INDEX, | 58 | IWL_RATE_INVM_INDEX, |
| 56 | IWL_RATE_INVALID = IWL_RATE_INVM_INDEX | 59 | IWL_RATE_INVALID = IWL_RATE_INVM_INDEX |
| 57 | }; | 60 | }; |
| 58 | 61 | ||
| 59 | enum { | 62 | enum { |
| 63 | IWL_RATE_6M_INDEX_TABLE = 0, | ||
| 64 | IWL_RATE_9M_INDEX_TABLE, | ||
| 65 | IWL_RATE_12M_INDEX_TABLE, | ||
| 66 | IWL_RATE_18M_INDEX_TABLE, | ||
| 67 | IWL_RATE_24M_INDEX_TABLE, | ||
| 68 | IWL_RATE_36M_INDEX_TABLE, | ||
| 69 | IWL_RATE_48M_INDEX_TABLE, | ||
| 70 | IWL_RATE_54M_INDEX_TABLE, | ||
| 71 | IWL_RATE_1M_INDEX_TABLE, | ||
| 72 | IWL_RATE_2M_INDEX_TABLE, | ||
| 73 | IWL_RATE_5M_INDEX_TABLE, | ||
| 74 | IWL_RATE_11M_INDEX_TABLE, | ||
| 75 | IWL_RATE_INVM_INDEX_TABLE = IWL_RATE_INVM_INDEX, | ||
| 76 | }; | ||
| 77 | |||
| 78 | enum { | ||
| 60 | IWL_FIRST_OFDM_RATE = IWL_RATE_6M_INDEX, | 79 | IWL_FIRST_OFDM_RATE = IWL_RATE_6M_INDEX, |
| 61 | IWL_LAST_OFDM_RATE = IWL_RATE_54M_INDEX, | 80 | IWL_LAST_OFDM_RATE = IWL_RATE_54M_INDEX, |
| 62 | IWL_FIRST_CCK_RATE = IWL_RATE_1M_INDEX, | 81 | IWL_FIRST_CCK_RATE = IWL_RATE_1M_INDEX, |
diff --git a/drivers/net/wireless/iwlwifi/iwl-3945.c b/drivers/net/wireless/iwlwifi/iwl-3945.c index 19bcb01e2784..3a45fe99a83e 100644 --- a/drivers/net/wireless/iwlwifi/iwl-3945.c +++ b/drivers/net/wireless/iwlwifi/iwl-3945.c | |||
| @@ -54,7 +54,9 @@ | |||
| 54 | IWL_RATE_##rp##M_INDEX, \ | 54 | IWL_RATE_##rp##M_INDEX, \ |
| 55 | IWL_RATE_##rn##M_INDEX, \ | 55 | IWL_RATE_##rn##M_INDEX, \ |
| 56 | IWL_RATE_##pp##M_INDEX, \ | 56 | IWL_RATE_##pp##M_INDEX, \ |
| 57 | IWL_RATE_##np##M_INDEX } | 57 | IWL_RATE_##np##M_INDEX, \ |
| 58 | IWL_RATE_##r##M_INDEX_TABLE, \ | ||
| 59 | IWL_RATE_##ip##M_INDEX_TABLE } | ||
| 58 | 60 | ||
| 59 | /* | 61 | /* |
| 60 | * Parameter order: | 62 | * Parameter order: |
| @@ -65,6 +67,10 @@ | |||
| 65 | * | 67 | * |
| 66 | */ | 68 | */ |
| 67 | const struct iwl_rate_info iwl_rates[IWL_RATE_COUNT] = { | 69 | const struct iwl_rate_info iwl_rates[IWL_RATE_COUNT] = { |
| 70 | IWL_DECLARE_RATE_INFO(1, INV, 2, INV, 2, INV, 2), /* 1mbps */ | ||
| 71 | IWL_DECLARE_RATE_INFO(2, 1, 5, 1, 5, 1, 5), /* 2mbps */ | ||
| 72 | IWL_DECLARE_RATE_INFO(5, 2, 6, 2, 11, 2, 11), /*5.5mbps */ | ||
| 73 | IWL_DECLARE_RATE_INFO(11, 9, 12, 5, 12, 5, 18), /* 11mbps */ | ||
| 68 | IWL_DECLARE_RATE_INFO(6, 5, 9, 5, 11, 5, 11), /* 6mbps */ | 74 | IWL_DECLARE_RATE_INFO(6, 5, 9, 5, 11, 5, 11), /* 6mbps */ |
| 69 | IWL_DECLARE_RATE_INFO(9, 6, 11, 5, 11, 5, 11), /* 9mbps */ | 75 | IWL_DECLARE_RATE_INFO(9, 6, 11, 5, 11, 5, 11), /* 9mbps */ |
| 70 | IWL_DECLARE_RATE_INFO(12, 11, 18, 11, 18, 11, 18), /* 12mbps */ | 76 | IWL_DECLARE_RATE_INFO(12, 11, 18, 11, 18, 11, 18), /* 12mbps */ |
| @@ -73,10 +79,6 @@ const struct iwl_rate_info iwl_rates[IWL_RATE_COUNT] = { | |||
| 73 | IWL_DECLARE_RATE_INFO(36, 24, 48, 24, 48, 24, 48), /* 36mbps */ | 79 | IWL_DECLARE_RATE_INFO(36, 24, 48, 24, 48, 24, 48), /* 36mbps */ |
| 74 | IWL_DECLARE_RATE_INFO(48, 36, 54, 36, 54, 36, 54), /* 48mbps */ | 80 | IWL_DECLARE_RATE_INFO(48, 36, 54, 36, 54, 36, 54), /* 48mbps */ |
| 75 | IWL_DECLARE_RATE_INFO(54, 48, INV, 48, INV, 48, INV),/* 54mbps */ | 81 | IWL_DECLARE_RATE_INFO(54, 48, INV, 48, INV, 48, INV),/* 54mbps */ |
| 76 | IWL_DECLARE_RATE_INFO(1, INV, 2, INV, 2, INV, 2), /* 1mbps */ | ||
| 77 | IWL_DECLARE_RATE_INFO(2, 1, 5, 1, 5, 1, 5), /* 2mbps */ | ||
| 78 | IWL_DECLARE_RATE_INFO(5, 2, 6, 2, 11, 2, 11), /*5.5mbps */ | ||
| 79 | IWL_DECLARE_RATE_INFO(11, 9, 12, 5, 12, 5, 18), /* 11mbps */ | ||
| 80 | }; | 82 | }; |
| 81 | 83 | ||
| 82 | /* 1 = enable the iwl_disable_events() function */ | 84 | /* 1 = enable the iwl_disable_events() function */ |
| @@ -662,10 +664,11 @@ void iwl_hw_build_tx_cmd_rate(struct iwl_priv *priv, | |||
| 662 | cmd->cmd.tx.tx_flags = tx_flags; | 664 | cmd->cmd.tx.tx_flags = tx_flags; |
| 663 | 665 | ||
| 664 | /* OFDM */ | 666 | /* OFDM */ |
| 665 | cmd->cmd.tx.supp_rates[0] = rate_mask & IWL_OFDM_RATES_MASK; | 667 | cmd->cmd.tx.supp_rates[0] = |
| 668 | ((rate_mask & IWL_OFDM_RATES_MASK) >> IWL_FIRST_OFDM_RATE) & 0xFF; | ||
| 666 | 669 | ||
| 667 | /* CCK */ | 670 | /* CCK */ |
| 668 | cmd->cmd.tx.supp_rates[1] = (rate_mask >> 8) & 0xF; | 671 | cmd->cmd.tx.supp_rates[1] = (rate_mask & 0xF); |
| 669 | 672 | ||
| 670 | IWL_DEBUG_RATE("Tx sta id: %d, rate: %d (plcp), flags: 0x%4X " | 673 | IWL_DEBUG_RATE("Tx sta id: %d, rate: %d (plcp), flags: 0x%4X " |
| 671 | "cck/ofdm mask: 0x%x/0x%x\n", sta_id, | 674 | "cck/ofdm mask: 0x%x/0x%x\n", sta_id, |
| @@ -1432,7 +1435,7 @@ static void iwl_hw_reg_set_scan_power(struct iwl_priv *priv, u32 scan_tbl_index, | |||
| 1432 | /* use this channel group's 6Mbit clipping/saturation pwr, | 1435 | /* use this channel group's 6Mbit clipping/saturation pwr, |
| 1433 | * but cap at regulatory scan power restriction (set during init | 1436 | * but cap at regulatory scan power restriction (set during init |
| 1434 | * based on eeprom channel data) for this channel. */ | 1437 | * based on eeprom channel data) for this channel. */ |
| 1435 | power = min(ch_info->scan_power, clip_pwrs[IWL_RATE_6M_INDEX]); | 1438 | power = min(ch_info->scan_power, clip_pwrs[IWL_RATE_6M_INDEX_TABLE]); |
| 1436 | 1439 | ||
| 1437 | /* further limit to user's max power preference. | 1440 | /* further limit to user's max power preference. |
| 1438 | * FIXME: Other spectrum management power limitations do not | 1441 | * FIXME: Other spectrum management power limitations do not |
| @@ -1447,7 +1450,7 @@ static void iwl_hw_reg_set_scan_power(struct iwl_priv *priv, u32 scan_tbl_index, | |||
| 1447 | * *index*. */ | 1450 | * *index*. */ |
| 1448 | power_index = ch_info->power_info[rate_index].power_table_index | 1451 | power_index = ch_info->power_info[rate_index].power_table_index |
| 1449 | - (power - ch_info->power_info | 1452 | - (power - ch_info->power_info |
| 1450 | [IWL_RATE_6M_INDEX].requested_power) * 2; | 1453 | [IWL_RATE_6M_INDEX_TABLE].requested_power) * 2; |
| 1451 | 1454 | ||
| 1452 | /* store reference index that we use when adjusting *all* scan | 1455 | /* store reference index that we use when adjusting *all* scan |
| 1453 | * powers. So we can accommodate user (all channel) or spectrum | 1456 | * powers. So we can accommodate user (all channel) or spectrum |
| @@ -1476,7 +1479,7 @@ static void iwl_hw_reg_set_scan_power(struct iwl_priv *priv, u32 scan_tbl_index, | |||
| 1476 | */ | 1479 | */ |
| 1477 | int iwl_hw_reg_send_txpower(struct iwl_priv *priv) | 1480 | int iwl_hw_reg_send_txpower(struct iwl_priv *priv) |
| 1478 | { | 1481 | { |
| 1479 | int rate_idx; | 1482 | int rate_idx, i; |
| 1480 | const struct iwl_channel_info *ch_info = NULL; | 1483 | const struct iwl_channel_info *ch_info = NULL; |
| 1481 | struct iwl_txpowertable_cmd txpower = { | 1484 | struct iwl_txpowertable_cmd txpower = { |
| 1482 | .channel = priv->active_rxon.channel, | 1485 | .channel = priv->active_rxon.channel, |
| @@ -1500,20 +1503,36 @@ int iwl_hw_reg_send_txpower(struct iwl_priv *priv) | |||
| 1500 | } | 1503 | } |
| 1501 | 1504 | ||
| 1502 | /* fill cmd with power settings for all rates for current channel */ | 1505 | /* fill cmd with power settings for all rates for current channel */ |
| 1503 | for (rate_idx = 0; rate_idx < IWL_RATE_COUNT; rate_idx++) { | 1506 | /* Fill OFDM rate */ |
| 1504 | txpower.power[rate_idx].tpc = ch_info->power_info[rate_idx].tpc; | 1507 | for (rate_idx = IWL_FIRST_OFDM_RATE, i = 0; |
| 1505 | txpower.power[rate_idx].rate = iwl_rates[rate_idx].plcp; | 1508 | rate_idx <= IWL_LAST_OFDM_RATE; rate_idx++, i++) { |
| 1509 | |||
| 1510 | txpower.power[i].tpc = ch_info->power_info[i].tpc; | ||
| 1511 | txpower.power[i].rate = iwl_rates[rate_idx].plcp; | ||
| 1506 | 1512 | ||
| 1507 | IWL_DEBUG_POWER("ch %d:%d rf %d dsp %3d rate code 0x%02x\n", | 1513 | IWL_DEBUG_POWER("ch %d:%d rf %d dsp %3d rate code 0x%02x\n", |
| 1508 | le16_to_cpu(txpower.channel), | 1514 | le16_to_cpu(txpower.channel), |
| 1509 | txpower.band, | 1515 | txpower.band, |
| 1510 | txpower.power[rate_idx].tpc.tx_gain, | 1516 | txpower.power[i].tpc.tx_gain, |
| 1511 | txpower.power[rate_idx].tpc.dsp_atten, | 1517 | txpower.power[i].tpc.dsp_atten, |
| 1512 | txpower.power[rate_idx].rate); | 1518 | txpower.power[i].rate); |
| 1519 | } | ||
| 1520 | /* Fill CCK rates */ | ||
| 1521 | for (rate_idx = IWL_FIRST_CCK_RATE; | ||
| 1522 | rate_idx <= IWL_LAST_CCK_RATE; rate_idx++, i++) { | ||
| 1523 | txpower.power[i].tpc = ch_info->power_info[i].tpc; | ||
| 1524 | txpower.power[i].rate = iwl_rates[rate_idx].plcp; | ||
| 1525 | |||
| 1526 | IWL_DEBUG_POWER("ch %d:%d rf %d dsp %3d rate code 0x%02x\n", | ||
| 1527 | le16_to_cpu(txpower.channel), | ||
| 1528 | txpower.band, | ||
| 1529 | txpower.power[i].tpc.tx_gain, | ||
| 1530 | txpower.power[i].tpc.dsp_atten, | ||
| 1531 | txpower.power[i].rate); | ||
| 1513 | } | 1532 | } |
| 1514 | 1533 | ||
| 1515 | return iwl_send_cmd_pdu(priv, REPLY_TX_PWR_TABLE_CMD, | 1534 | return iwl_send_cmd_pdu(priv, REPLY_TX_PWR_TABLE_CMD, |
| 1516 | sizeof(struct iwl_txpowertable_cmd), &txpower); | 1535 | sizeof(struct iwl_txpowertable_cmd), &txpower); |
| 1517 | 1536 | ||
| 1518 | } | 1537 | } |
| 1519 | 1538 | ||
| @@ -1549,7 +1568,7 @@ static int iwl_hw_reg_set_new_power(struct iwl_priv *priv, | |||
| 1549 | power_info = ch_info->power_info; | 1568 | power_info = ch_info->power_info; |
| 1550 | 1569 | ||
| 1551 | /* update OFDM Txpower settings */ | 1570 | /* update OFDM Txpower settings */ |
| 1552 | for (i = IWL_FIRST_OFDM_RATE; i <= IWL_LAST_OFDM_RATE; | 1571 | for (i = IWL_RATE_6M_INDEX_TABLE; i <= IWL_RATE_54M_INDEX_TABLE; |
| 1553 | i++, ++power_info) { | 1572 | i++, ++power_info) { |
| 1554 | int delta_idx; | 1573 | int delta_idx; |
| 1555 | 1574 | ||
| @@ -1573,14 +1592,14 @@ static int iwl_hw_reg_set_new_power(struct iwl_priv *priv, | |||
| 1573 | * ... all CCK power settings for a given channel are the *same*. */ | 1592 | * ... all CCK power settings for a given channel are the *same*. */ |
| 1574 | if (power_changed) { | 1593 | if (power_changed) { |
| 1575 | power = | 1594 | power = |
| 1576 | ch_info->power_info[IWL_RATE_12M_INDEX]. | 1595 | ch_info->power_info[IWL_RATE_12M_INDEX_TABLE]. |
| 1577 | requested_power + IWL_CCK_FROM_OFDM_POWER_DIFF; | 1596 | requested_power + IWL_CCK_FROM_OFDM_POWER_DIFF; |
| 1578 | 1597 | ||
| 1579 | /* do all CCK rates' iwl_channel_power_info structures */ | 1598 | /* do all CCK rates' iwl_channel_power_info structures */ |
| 1580 | for (i = IWL_FIRST_CCK_RATE; i <= IWL_LAST_CCK_RATE; i++) { | 1599 | for (i = IWL_RATE_1M_INDEX_TABLE; i <= IWL_RATE_11M_INDEX_TABLE; i++) { |
| 1581 | power_info->requested_power = power; | 1600 | power_info->requested_power = power; |
| 1582 | power_info->base_power_index = | 1601 | power_info->base_power_index = |
| 1583 | ch_info->power_info[IWL_RATE_12M_INDEX]. | 1602 | ch_info->power_info[IWL_RATE_12M_INDEX_TABLE]. |
| 1584 | base_power_index + IWL_CCK_FROM_OFDM_INDEX_DIFF; | 1603 | base_power_index + IWL_CCK_FROM_OFDM_INDEX_DIFF; |
| 1585 | ++power_info; | 1604 | ++power_info; |
| 1586 | } | 1605 | } |
| @@ -1674,7 +1693,7 @@ static int iwl_hw_reg_comp_txpower_temp(struct iwl_priv *priv) | |||
| 1674 | for (scan_tbl_index = 0; | 1693 | for (scan_tbl_index = 0; |
| 1675 | scan_tbl_index < IWL_NUM_SCAN_RATES; scan_tbl_index++) { | 1694 | scan_tbl_index < IWL_NUM_SCAN_RATES; scan_tbl_index++) { |
| 1676 | s32 actual_index = (scan_tbl_index == 0) ? | 1695 | s32 actual_index = (scan_tbl_index == 0) ? |
| 1677 | IWL_RATE_1M_INDEX : IWL_RATE_6M_INDEX; | 1696 | IWL_RATE_1M_INDEX_TABLE : IWL_RATE_6M_INDEX_TABLE; |
| 1678 | iwl_hw_reg_set_scan_power(priv, scan_tbl_index, | 1697 | iwl_hw_reg_set_scan_power(priv, scan_tbl_index, |
| 1679 | actual_index, clip_pwrs, | 1698 | actual_index, clip_pwrs, |
| 1680 | ch_info, a_band); | 1699 | ch_info, a_band); |
| @@ -1905,19 +1924,19 @@ static void iwl_hw_reg_init_channel_groups(struct iwl_priv *priv) | |||
| 1905 | for (rate_index = 0; | 1924 | for (rate_index = 0; |
| 1906 | rate_index < IWL_RATE_COUNT; rate_index++, clip_pwrs++) { | 1925 | rate_index < IWL_RATE_COUNT; rate_index++, clip_pwrs++) { |
| 1907 | switch (rate_index) { | 1926 | switch (rate_index) { |
| 1908 | case IWL_RATE_36M_INDEX: | 1927 | case IWL_RATE_36M_INDEX_TABLE: |
| 1909 | if (i == 0) /* B/G */ | 1928 | if (i == 0) /* B/G */ |
| 1910 | *clip_pwrs = satur_pwr; | 1929 | *clip_pwrs = satur_pwr; |
| 1911 | else /* A */ | 1930 | else /* A */ |
| 1912 | *clip_pwrs = satur_pwr - 5; | 1931 | *clip_pwrs = satur_pwr - 5; |
| 1913 | break; | 1932 | break; |
| 1914 | case IWL_RATE_48M_INDEX: | 1933 | case IWL_RATE_48M_INDEX_TABLE: |
| 1915 | if (i == 0) | 1934 | if (i == 0) |
| 1916 | *clip_pwrs = satur_pwr - 7; | 1935 | *clip_pwrs = satur_pwr - 7; |
| 1917 | else | 1936 | else |
| 1918 | *clip_pwrs = satur_pwr - 10; | 1937 | *clip_pwrs = satur_pwr - 10; |
| 1919 | break; | 1938 | break; |
| 1920 | case IWL_RATE_54M_INDEX: | 1939 | case IWL_RATE_54M_INDEX_TABLE: |
| 1921 | if (i == 0) | 1940 | if (i == 0) |
| 1922 | *clip_pwrs = satur_pwr - 9; | 1941 | *clip_pwrs = satur_pwr - 9; |
| 1923 | else | 1942 | else |
| @@ -2031,7 +2050,7 @@ int iwl3945_txpower_set_from_eeprom(struct iwl_priv *priv) | |||
| 2031 | } | 2050 | } |
| 2032 | 2051 | ||
| 2033 | /* set tx power for CCK rates, based on OFDM 12 Mbit settings*/ | 2052 | /* set tx power for CCK rates, based on OFDM 12 Mbit settings*/ |
| 2034 | pwr_info = &ch_info->power_info[IWL_RATE_12M_INDEX]; | 2053 | pwr_info = &ch_info->power_info[IWL_RATE_12M_INDEX_TABLE]; |
| 2035 | power = pwr_info->requested_power + | 2054 | power = pwr_info->requested_power + |
| 2036 | IWL_CCK_FROM_OFDM_POWER_DIFF; | 2055 | IWL_CCK_FROM_OFDM_POWER_DIFF; |
| 2037 | pwr_index = pwr_info->power_table_index + | 2056 | pwr_index = pwr_info->power_table_index + |
| @@ -2047,9 +2066,9 @@ int iwl3945_txpower_set_from_eeprom(struct iwl_priv *priv) | |||
| 2047 | /* fill each CCK rate's iwl_channel_power_info structure | 2066 | /* fill each CCK rate's iwl_channel_power_info structure |
| 2048 | * NOTE: All CCK-rate Txpwrs are the same for a given chnl! | 2067 | * NOTE: All CCK-rate Txpwrs are the same for a given chnl! |
| 2049 | * NOTE: CCK rates start at end of OFDM rates! */ | 2068 | * NOTE: CCK rates start at end of OFDM rates! */ |
| 2050 | for (rate_index = IWL_OFDM_RATES; | 2069 | for (rate_index = 0; |
| 2051 | rate_index < IWL_RATE_COUNT; rate_index++) { | 2070 | rate_index < IWL_CCK_RATES; rate_index++) { |
| 2052 | pwr_info = &ch_info->power_info[rate_index]; | 2071 | pwr_info = &ch_info->power_info[rate_index+IWL_OFDM_RATES]; |
| 2053 | pwr_info->requested_power = power; | 2072 | pwr_info->requested_power = power; |
| 2054 | pwr_info->power_table_index = pwr_index; | 2073 | pwr_info->power_table_index = pwr_index; |
| 2055 | pwr_info->base_power_index = base_pwr_index; | 2074 | pwr_info->base_power_index = base_pwr_index; |
| @@ -2061,7 +2080,7 @@ int iwl3945_txpower_set_from_eeprom(struct iwl_priv *priv) | |||
| 2061 | for (scan_tbl_index = 0; | 2080 | for (scan_tbl_index = 0; |
| 2062 | scan_tbl_index < IWL_NUM_SCAN_RATES; scan_tbl_index++) { | 2081 | scan_tbl_index < IWL_NUM_SCAN_RATES; scan_tbl_index++) { |
| 2063 | s32 actual_index = (scan_tbl_index == 0) ? | 2082 | s32 actual_index = (scan_tbl_index == 0) ? |
| 2064 | IWL_RATE_1M_INDEX : IWL_RATE_6M_INDEX; | 2083 | IWL_RATE_1M_INDEX_TABLE : IWL_RATE_6M_INDEX_TABLE; |
| 2065 | iwl_hw_reg_set_scan_power(priv, scan_tbl_index, | 2084 | iwl_hw_reg_set_scan_power(priv, scan_tbl_index, |
| 2066 | actual_index, clip_pwrs, ch_info, a_band); | 2085 | actual_index, clip_pwrs, ch_info, a_band); |
| 2067 | } | 2086 | } |
| @@ -2139,17 +2158,20 @@ int iwl_hw_get_rx_read(struct iwl_priv *priv) | |||
| 2139 | */ | 2158 | */ |
| 2140 | int iwl3945_init_hw_rate_table(struct iwl_priv *priv) | 2159 | int iwl3945_init_hw_rate_table(struct iwl_priv *priv) |
| 2141 | { | 2160 | { |
| 2142 | int rc, i; | 2161 | int rc, i, index, prev_index; |
| 2143 | struct iwl_rate_scaling_cmd rate_cmd = { | 2162 | struct iwl_rate_scaling_cmd rate_cmd = { |
| 2144 | .reserved = {0, 0, 0}, | 2163 | .reserved = {0, 0, 0}, |
| 2145 | }; | 2164 | }; |
| 2146 | struct iwl_rate_scaling_info *table = rate_cmd.table; | 2165 | struct iwl_rate_scaling_info *table = rate_cmd.table; |
| 2147 | 2166 | ||
| 2148 | for (i = 0; i < ARRAY_SIZE(iwl_rates); i++) { | 2167 | for (i = 0; i < ARRAY_SIZE(iwl_rates); i++) { |
| 2149 | table[i].rate_n_flags = | 2168 | index = iwl_rates[i].table_rs_index; |
| 2169 | |||
| 2170 | table[index].rate_n_flags = | ||
| 2150 | iwl_hw_set_rate_n_flags(iwl_rates[i].plcp, 0); | 2171 | iwl_hw_set_rate_n_flags(iwl_rates[i].plcp, 0); |
| 2151 | table[i].try_cnt = priv->retry_rate; | 2172 | table[index].try_cnt = priv->retry_rate; |
| 2152 | table[i].next_rate_index = iwl_get_prev_ieee_rate(i); | 2173 | prev_index = iwl_get_prev_ieee_rate(i); |
| 2174 | table[index].next_rate_index = iwl_rates[prev_index].table_rs_index; | ||
| 2153 | } | 2175 | } |
| 2154 | 2176 | ||
| 2155 | switch (priv->phymode) { | 2177 | switch (priv->phymode) { |
| @@ -2157,26 +2179,26 @@ int iwl3945_init_hw_rate_table(struct iwl_priv *priv) | |||
| 2157 | IWL_DEBUG_RATE("Select A mode rate scale\n"); | 2179 | IWL_DEBUG_RATE("Select A mode rate scale\n"); |
| 2158 | /* If one of the following CCK rates is used, | 2180 | /* If one of the following CCK rates is used, |
| 2159 | * have it fall back to the 6M OFDM rate */ | 2181 | * have it fall back to the 6M OFDM rate */ |
| 2160 | for (i = IWL_FIRST_CCK_RATE; i <= IWL_LAST_CCK_RATE; i++) | 2182 | for (i = IWL_RATE_1M_INDEX_TABLE; i <= IWL_RATE_11M_INDEX_TABLE; i++) |
| 2161 | table[i].next_rate_index = IWL_FIRST_OFDM_RATE; | 2183 | table[i].next_rate_index = iwl_rates[IWL_FIRST_OFDM_RATE].table_rs_index; |
| 2162 | 2184 | ||
| 2163 | /* Don't fall back to CCK rates */ | 2185 | /* Don't fall back to CCK rates */ |
| 2164 | table[IWL_RATE_12M_INDEX].next_rate_index = IWL_RATE_9M_INDEX; | 2186 | table[IWL_RATE_12M_INDEX_TABLE].next_rate_index = IWL_RATE_9M_INDEX_TABLE; |
| 2165 | 2187 | ||
| 2166 | /* Don't drop out of OFDM rates */ | 2188 | /* Don't drop out of OFDM rates */ |
| 2167 | table[IWL_FIRST_OFDM_RATE].next_rate_index = | 2189 | table[IWL_RATE_6M_INDEX_TABLE].next_rate_index = |
| 2168 | IWL_FIRST_OFDM_RATE; | 2190 | iwl_rates[IWL_FIRST_OFDM_RATE].table_rs_index; |
| 2169 | break; | 2191 | break; |
| 2170 | 2192 | ||
| 2171 | case MODE_IEEE80211B: | 2193 | case MODE_IEEE80211B: |
| 2172 | IWL_DEBUG_RATE("Select B mode rate scale\n"); | 2194 | IWL_DEBUG_RATE("Select B mode rate scale\n"); |
| 2173 | /* If an OFDM rate is used, have it fall back to the | 2195 | /* If an OFDM rate is used, have it fall back to the |
| 2174 | * 1M CCK rates */ | 2196 | * 1M CCK rates */ |
| 2175 | for (i = IWL_FIRST_OFDM_RATE; i <= IWL_LAST_OFDM_RATE; i++) | 2197 | for (i = IWL_RATE_6M_INDEX_TABLE; i <= IWL_RATE_54M_INDEX_TABLE; i++) |
| 2176 | table[i].next_rate_index = IWL_FIRST_CCK_RATE; | 2198 | table[i].next_rate_index = iwl_rates[IWL_FIRST_CCK_RATE].table_rs_index; |
| 2177 | 2199 | ||
| 2178 | /* CCK shouldn't fall back to OFDM... */ | 2200 | /* CCK shouldn't fall back to OFDM... */ |
| 2179 | table[IWL_RATE_11M_INDEX].next_rate_index = IWL_RATE_5M_INDEX; | 2201 | table[IWL_RATE_11M_INDEX_TABLE].next_rate_index = IWL_RATE_5M_INDEX_TABLE; |
| 2180 | break; | 2202 | break; |
| 2181 | 2203 | ||
| 2182 | default: | 2204 | default: |
| @@ -2248,22 +2270,12 @@ unsigned int iwl_hw_get_beacon_cmd(struct iwl_priv *priv, | |||
| 2248 | tx_beacon_cmd->tx.tx_flags = (TX_CMD_FLG_SEQ_CTL_MSK | | 2270 | tx_beacon_cmd->tx.tx_flags = (TX_CMD_FLG_SEQ_CTL_MSK | |
| 2249 | TX_CMD_FLG_TSF_MSK); | 2271 | TX_CMD_FLG_TSF_MSK); |
| 2250 | 2272 | ||
| 2251 | /* supp_rates[0] == OFDM */ | 2273 | /* supp_rates[0] == OFDM start at IWL_FIRST_OFDM_RATE*/ |
| 2252 | tx_beacon_cmd->tx.supp_rates[0] = IWL_OFDM_BASIC_RATES_MASK; | 2274 | tx_beacon_cmd->tx.supp_rates[0] = |
| 2253 | 2275 | (IWL_OFDM_BASIC_RATES_MASK >> IWL_FIRST_OFDM_RATE) & 0xFF; | |
| 2254 | /* supp_rates[1] == CCK | 2276 | |
| 2255 | * | ||
| 2256 | * NOTE: IWL_*_RATES_MASK are not in the order that supp_rates | ||
| 2257 | * expects so we have to shift them around. | ||
| 2258 | * | ||
| 2259 | * supp_rates expects: | ||
| 2260 | * CCK rates are bit0..3 | ||
| 2261 | * | ||
| 2262 | * However IWL_*_RATES_MASK has: | ||
| 2263 | * CCK rates are bit8..11 | ||
| 2264 | */ | ||
| 2265 | tx_beacon_cmd->tx.supp_rates[1] = | 2277 | tx_beacon_cmd->tx.supp_rates[1] = |
| 2266 | (IWL_CCK_BASIC_RATES_MASK >> 8) & 0xF; | 2278 | (IWL_CCK_BASIC_RATES_MASK & 0xF); |
| 2267 | 2279 | ||
| 2268 | return (sizeof(struct iwl_tx_beacon_cmd) + frame_size); | 2280 | return (sizeof(struct iwl_tx_beacon_cmd) + frame_size); |
| 2269 | } | 2281 | } |
diff --git a/drivers/net/wireless/iwlwifi/iwl3945-base.c b/drivers/net/wireless/iwlwifi/iwl3945-base.c index be7c9f42a340..465da4f67ce7 100644 --- a/drivers/net/wireless/iwlwifi/iwl3945-base.c +++ b/drivers/net/wireless/iwlwifi/iwl3945-base.c | |||
| @@ -4850,7 +4850,7 @@ static irqreturn_t iwl_isr(int irq, void *data) | |||
| 4850 | if ((inta == 0xFFFFFFFF) || ((inta & 0xFFFFFFF0) == 0xa5a5a5a0)) { | 4850 | if ((inta == 0xFFFFFFFF) || ((inta & 0xFFFFFFF0) == 0xa5a5a5a0)) { |
| 4851 | /* Hardware disappeared */ | 4851 | /* Hardware disappeared */ |
| 4852 | IWL_WARNING("HARDWARE GONE?? INTA == 0x%080x\n", inta); | 4852 | IWL_WARNING("HARDWARE GONE?? INTA == 0x%080x\n", inta); |
| 4853 | goto none; | 4853 | goto unplugged; |
| 4854 | } | 4854 | } |
| 4855 | 4855 | ||
| 4856 | IWL_DEBUG_ISR("ISR inta 0x%08x, enabled 0x%08x, fh 0x%08x\n", | 4856 | IWL_DEBUG_ISR("ISR inta 0x%08x, enabled 0x%08x, fh 0x%08x\n", |
| @@ -4858,6 +4858,7 @@ static irqreturn_t iwl_isr(int irq, void *data) | |||
| 4858 | 4858 | ||
| 4859 | /* iwl_irq_tasklet() will service interrupts and re-enable them */ | 4859 | /* iwl_irq_tasklet() will service interrupts and re-enable them */ |
| 4860 | tasklet_schedule(&priv->irq_tasklet); | 4860 | tasklet_schedule(&priv->irq_tasklet); |
| 4861 | unplugged: | ||
| 4861 | spin_unlock(&priv->lock); | 4862 | spin_unlock(&priv->lock); |
| 4862 | 4863 | ||
| 4863 | return IRQ_HANDLED; | 4864 | return IRQ_HANDLED; |
| @@ -5331,13 +5332,13 @@ static int iwl_init_geos(struct iwl_priv *priv) | |||
| 5331 | /* 5.2GHz channels start after the 2.4GHz channels */ | 5332 | /* 5.2GHz channels start after the 2.4GHz channels */ |
| 5332 | modes[A].mode = MODE_IEEE80211A; | 5333 | modes[A].mode = MODE_IEEE80211A; |
| 5333 | modes[A].channels = &channels[ARRAY_SIZE(iwl_eeprom_band_1)]; | 5334 | modes[A].channels = &channels[ARRAY_SIZE(iwl_eeprom_band_1)]; |
| 5334 | modes[A].rates = rates; | 5335 | modes[A].rates = &rates[4]; |
| 5335 | modes[A].num_rates = 8; /* just OFDM */ | 5336 | modes[A].num_rates = 8; /* just OFDM */ |
| 5336 | modes[A].num_channels = 0; | 5337 | modes[A].num_channels = 0; |
| 5337 | 5338 | ||
| 5338 | modes[B].mode = MODE_IEEE80211B; | 5339 | modes[B].mode = MODE_IEEE80211B; |
| 5339 | modes[B].channels = channels; | 5340 | modes[B].channels = channels; |
| 5340 | modes[B].rates = &rates[8]; | 5341 | modes[B].rates = rates; |
| 5341 | modes[B].num_rates = 4; /* just CCK */ | 5342 | modes[B].num_rates = 4; /* just CCK */ |
| 5342 | modes[B].num_channels = 0; | 5343 | modes[B].num_channels = 0; |
| 5343 | 5344 | ||
diff --git a/drivers/net/wireless/iwlwifi/iwl4965-base.c b/drivers/net/wireless/iwlwifi/iwl4965-base.c index 6757c6c1b25a..9918780f5e86 100644 --- a/drivers/net/wireless/iwlwifi/iwl4965-base.c +++ b/drivers/net/wireless/iwlwifi/iwl4965-base.c | |||
| @@ -5156,9 +5156,10 @@ static irqreturn_t iwl_isr(int irq, void *data) | |||
| 5156 | } | 5156 | } |
| 5157 | 5157 | ||
| 5158 | if ((inta == 0xFFFFFFFF) || ((inta & 0xFFFFFFF0) == 0xa5a5a5a0)) { | 5158 | if ((inta == 0xFFFFFFFF) || ((inta & 0xFFFFFFF0) == 0xa5a5a5a0)) { |
| 5159 | /* Hardware disappeared */ | 5159 | /* Hardware disappeared. It might have already raised |
| 5160 | * an interrupt */ | ||
| 5160 | IWL_WARNING("HARDWARE GONE?? INTA == 0x%080x\n", inta); | 5161 | IWL_WARNING("HARDWARE GONE?? INTA == 0x%080x\n", inta); |
| 5161 | goto none; | 5162 | goto unplugged; |
| 5162 | } | 5163 | } |
| 5163 | 5164 | ||
| 5164 | IWL_DEBUG_ISR("ISR inta 0x%08x, enabled 0x%08x, fh 0x%08x\n", | 5165 | IWL_DEBUG_ISR("ISR inta 0x%08x, enabled 0x%08x, fh 0x%08x\n", |
| @@ -5166,8 +5167,9 @@ static irqreturn_t iwl_isr(int irq, void *data) | |||
| 5166 | 5167 | ||
| 5167 | /* iwl_irq_tasklet() will service interrupts and re-enable them */ | 5168 | /* iwl_irq_tasklet() will service interrupts and re-enable them */ |
| 5168 | tasklet_schedule(&priv->irq_tasklet); | 5169 | tasklet_schedule(&priv->irq_tasklet); |
| 5169 | spin_unlock(&priv->lock); | ||
| 5170 | 5170 | ||
| 5171 | unplugged: | ||
| 5172 | spin_unlock(&priv->lock); | ||
| 5171 | return IRQ_HANDLED; | 5173 | return IRQ_HANDLED; |
| 5172 | 5174 | ||
| 5173 | none: | 5175 | none: |
diff --git a/drivers/net/wireless/rt2x00/rt2500pci.c b/drivers/net/wireless/rt2x00/rt2500pci.c index ff2d63267b19..702321c30164 100644 --- a/drivers/net/wireless/rt2x00/rt2500pci.c +++ b/drivers/net/wireless/rt2x00/rt2500pci.c | |||
| @@ -620,7 +620,7 @@ static void rt2500pci_link_tuner(struct rt2x00_dev *rt2x00dev) | |||
| 620 | * up to version C the link tuning should halt after 20 | 620 | * up to version C the link tuning should halt after 20 |
| 621 | * seconds. | 621 | * seconds. |
| 622 | */ | 622 | */ |
| 623 | if (rt2x00_get_rev(&rt2x00dev->chip) < RT2560_VERSION_D && | 623 | if (rt2x00_rev(&rt2x00dev->chip) < RT2560_VERSION_D && |
| 624 | rt2x00dev->link.count > 20) | 624 | rt2x00dev->link.count > 20) |
| 625 | return; | 625 | return; |
| 626 | 626 | ||
| @@ -630,7 +630,7 @@ static void rt2500pci_link_tuner(struct rt2x00_dev *rt2x00dev) | |||
| 630 | * Chipset versions C and lower should directly continue | 630 | * Chipset versions C and lower should directly continue |
| 631 | * to the dynamic CCA tuning. | 631 | * to the dynamic CCA tuning. |
| 632 | */ | 632 | */ |
| 633 | if (rt2x00_get_rev(&rt2x00dev->chip) < RT2560_VERSION_D) | 633 | if (rt2x00_rev(&rt2x00dev->chip) < RT2560_VERSION_D) |
| 634 | goto dynamic_cca_tune; | 634 | goto dynamic_cca_tune; |
| 635 | 635 | ||
| 636 | /* | 636 | /* |
diff --git a/drivers/net/wireless/rt2x00/rt2500usb.c b/drivers/net/wireless/rt2x00/rt2500usb.c index 7cdc80a122bb..277a020b35e9 100644 --- a/drivers/net/wireless/rt2x00/rt2500usb.c +++ b/drivers/net/wireless/rt2x00/rt2500usb.c | |||
| @@ -753,7 +753,7 @@ static int rt2500usb_init_registers(struct rt2x00_dev *rt2x00dev) | |||
| 753 | rt2x00_set_field16(®, MAC_CSR1_HOST_READY, 1); | 753 | rt2x00_set_field16(®, MAC_CSR1_HOST_READY, 1); |
| 754 | rt2500usb_register_write(rt2x00dev, MAC_CSR1, reg); | 754 | rt2500usb_register_write(rt2x00dev, MAC_CSR1, reg); |
| 755 | 755 | ||
| 756 | if (rt2x00_get_rev(&rt2x00dev->chip) >= RT2570_VERSION_C) { | 756 | if (rt2x00_rev(&rt2x00dev->chip) >= RT2570_VERSION_C) { |
| 757 | rt2500usb_register_read(rt2x00dev, PHY_CSR2, ®); | 757 | rt2500usb_register_read(rt2x00dev, PHY_CSR2, ®); |
| 758 | reg &= ~0x0002; | 758 | reg &= ~0x0002; |
| 759 | } else { | 759 | } else { |
| @@ -1257,7 +1257,7 @@ static int rt2500usb_init_eeprom(struct rt2x00_dev *rt2x00dev) | |||
| 1257 | rt2500usb_register_read(rt2x00dev, MAC_CSR0, ®); | 1257 | rt2500usb_register_read(rt2x00dev, MAC_CSR0, ®); |
| 1258 | rt2x00_set_chip(rt2x00dev, RT2570, value, reg); | 1258 | rt2x00_set_chip(rt2x00dev, RT2570, value, reg); |
| 1259 | 1259 | ||
| 1260 | if (rt2x00_rev(&rt2x00dev->chip, 0xffff0)) { | 1260 | if (!rt2x00_check_rev(&rt2x00dev->chip, 0)) { |
| 1261 | ERROR(rt2x00dev, "Invalid RT chipset detected.\n"); | 1261 | ERROR(rt2x00dev, "Invalid RT chipset detected.\n"); |
| 1262 | return -ENODEV; | 1262 | return -ENODEV; |
| 1263 | } | 1263 | } |
diff --git a/drivers/net/wireless/rt2x00/rt2x00.h b/drivers/net/wireless/rt2x00/rt2x00.h index 9845e584b731..d1ad5251a77a 100644 --- a/drivers/net/wireless/rt2x00/rt2x00.h +++ b/drivers/net/wireless/rt2x00/rt2x00.h | |||
| @@ -751,14 +751,16 @@ static inline char rt2x00_rf(const struct rt2x00_chip *chipset, const u16 chip) | |||
| 751 | return (chipset->rf == chip); | 751 | return (chipset->rf == chip); |
| 752 | } | 752 | } |
| 753 | 753 | ||
| 754 | static inline u16 rt2x00_get_rev(const struct rt2x00_chip *chipset) | 754 | static inline u16 rt2x00_rev(const struct rt2x00_chip *chipset) |
| 755 | { | 755 | { |
| 756 | return chipset->rev; | 756 | return chipset->rev; |
| 757 | } | 757 | } |
| 758 | 758 | ||
| 759 | static inline u16 rt2x00_rev(const struct rt2x00_chip *chipset, const u32 mask) | 759 | static inline u16 rt2x00_check_rev(const struct rt2x00_chip *chipset, |
| 760 | const u32 rev) | ||
| 760 | { | 761 | { |
| 761 | return chipset->rev & mask; | 762 | return (((chipset->rev & 0xffff0) == rev) && |
| 763 | !!(chipset->rev & 0x0000f)); | ||
| 762 | } | 764 | } |
| 763 | 765 | ||
| 764 | /* | 766 | /* |
diff --git a/drivers/net/wireless/rt2x00/rt73usb.c b/drivers/net/wireless/rt2x00/rt73usb.c index 46c8c0840a65..dc640bf6b5eb 100644 --- a/drivers/net/wireless/rt2x00/rt73usb.c +++ b/drivers/net/wireless/rt2x00/rt73usb.c | |||
| @@ -1486,7 +1486,7 @@ static int rt73usb_init_eeprom(struct rt2x00_dev *rt2x00dev) | |||
| 1486 | rt73usb_register_read(rt2x00dev, MAC_CSR0, ®); | 1486 | rt73usb_register_read(rt2x00dev, MAC_CSR0, ®); |
| 1487 | rt2x00_set_chip(rt2x00dev, RT2571, value, reg); | 1487 | rt2x00_set_chip(rt2x00dev, RT2571, value, reg); |
| 1488 | 1488 | ||
| 1489 | if (!rt2x00_rev(&rt2x00dev->chip, 0x25730)) { | 1489 | if (!rt2x00_check_rev(&rt2x00dev->chip, 0x25730)) { |
| 1490 | ERROR(rt2x00dev, "Invalid RT chipset detected.\n"); | 1490 | ERROR(rt2x00dev, "Invalid RT chipset detected.\n"); |
| 1491 | return -ENODEV; | 1491 | return -ENODEV; |
| 1492 | } | 1492 | } |
diff --git a/drivers/oprofile/cpu_buffer.c b/drivers/oprofile/cpu_buffer.c index a83c3db7d18f..c93d3d2640ab 100644 --- a/drivers/oprofile/cpu_buffer.c +++ b/drivers/oprofile/cpu_buffer.c | |||
| @@ -64,6 +64,8 @@ int alloc_cpu_buffers(void) | |||
| 64 | b->head_pos = 0; | 64 | b->head_pos = 0; |
| 65 | b->sample_received = 0; | 65 | b->sample_received = 0; |
| 66 | b->sample_lost_overflow = 0; | 66 | b->sample_lost_overflow = 0; |
| 67 | b->backtrace_aborted = 0; | ||
| 68 | b->sample_invalid_eip = 0; | ||
| 67 | b->cpu = i; | 69 | b->cpu = i; |
| 68 | INIT_DELAYED_WORK(&b->work, wq_sync_buffer); | 70 | INIT_DELAYED_WORK(&b->work, wq_sync_buffer); |
| 69 | } | 71 | } |
| @@ -175,6 +177,11 @@ static int log_sample(struct oprofile_cpu_buffer * cpu_buf, unsigned long pc, | |||
| 175 | 177 | ||
| 176 | cpu_buf->sample_received++; | 178 | cpu_buf->sample_received++; |
| 177 | 179 | ||
| 180 | if (pc == ESCAPE_CODE) { | ||
| 181 | cpu_buf->sample_invalid_eip++; | ||
| 182 | return 0; | ||
| 183 | } | ||
| 184 | |||
| 178 | if (nr_available_slots(cpu_buf) < 3) { | 185 | if (nr_available_slots(cpu_buf) < 3) { |
| 179 | cpu_buf->sample_lost_overflow++; | 186 | cpu_buf->sample_lost_overflow++; |
| 180 | return 0; | 187 | return 0; |
diff --git a/drivers/oprofile/cpu_buffer.h b/drivers/oprofile/cpu_buffer.h index 49900d9e3235..c66c025abe75 100644 --- a/drivers/oprofile/cpu_buffer.h +++ b/drivers/oprofile/cpu_buffer.h | |||
| @@ -42,6 +42,7 @@ struct oprofile_cpu_buffer { | |||
| 42 | unsigned long sample_received; | 42 | unsigned long sample_received; |
| 43 | unsigned long sample_lost_overflow; | 43 | unsigned long sample_lost_overflow; |
| 44 | unsigned long backtrace_aborted; | 44 | unsigned long backtrace_aborted; |
| 45 | unsigned long sample_invalid_eip; | ||
| 45 | int cpu; | 46 | int cpu; |
| 46 | struct delayed_work work; | 47 | struct delayed_work work; |
| 47 | } ____cacheline_aligned; | 48 | } ____cacheline_aligned; |
diff --git a/drivers/oprofile/oprofile_stats.c b/drivers/oprofile/oprofile_stats.c index f0acb661c253..d1f6d776e9e4 100644 --- a/drivers/oprofile/oprofile_stats.c +++ b/drivers/oprofile/oprofile_stats.c | |||
| @@ -26,6 +26,8 @@ void oprofile_reset_stats(void) | |||
| 26 | cpu_buf = &cpu_buffer[i]; | 26 | cpu_buf = &cpu_buffer[i]; |
| 27 | cpu_buf->sample_received = 0; | 27 | cpu_buf->sample_received = 0; |
| 28 | cpu_buf->sample_lost_overflow = 0; | 28 | cpu_buf->sample_lost_overflow = 0; |
| 29 | cpu_buf->backtrace_aborted = 0; | ||
| 30 | cpu_buf->sample_invalid_eip = 0; | ||
| 29 | } | 31 | } |
| 30 | 32 | ||
| 31 | atomic_set(&oprofile_stats.sample_lost_no_mm, 0); | 33 | atomic_set(&oprofile_stats.sample_lost_no_mm, 0); |
| @@ -61,6 +63,8 @@ void oprofile_create_stats_files(struct super_block * sb, struct dentry * root) | |||
| 61 | &cpu_buf->sample_lost_overflow); | 63 | &cpu_buf->sample_lost_overflow); |
| 62 | oprofilefs_create_ro_ulong(sb, cpudir, "backtrace_aborted", | 64 | oprofilefs_create_ro_ulong(sb, cpudir, "backtrace_aborted", |
| 63 | &cpu_buf->backtrace_aborted); | 65 | &cpu_buf->backtrace_aborted); |
| 66 | oprofilefs_create_ro_ulong(sb, cpudir, "sample_invalid_eip", | ||
| 67 | &cpu_buf->sample_invalid_eip); | ||
| 64 | } | 68 | } |
| 65 | 69 | ||
| 66 | oprofilefs_create_ro_atomic(sb, dir, "sample_lost_no_mm", | 70 | oprofilefs_create_ro_atomic(sb, dir, "sample_lost_no_mm", |
diff --git a/drivers/rtc/Kconfig b/drivers/rtc/Kconfig index cbde770eb121..e5cdc0294aaa 100644 --- a/drivers/rtc/Kconfig +++ b/drivers/rtc/Kconfig | |||
| @@ -36,7 +36,9 @@ config RTC_HCTOSYS_DEVICE | |||
| 36 | help | 36 | help |
| 37 | The RTC device that will be used to (re)initialize the system | 37 | The RTC device that will be used to (re)initialize the system |
| 38 | clock, usually rtc0. Initialization is done when the system | 38 | clock, usually rtc0. Initialization is done when the system |
| 39 | starts up, and when it resumes from a low power state. | 39 | starts up, and when it resumes from a low power state. This |
| 40 | device should record time in UTC, since the kernel won't do | ||
| 41 | timezone correction. | ||
| 40 | 42 | ||
| 41 | The driver for this RTC device must be loaded before late_initcall | 43 | The driver for this RTC device must be loaded before late_initcall |
| 42 | functions run, so it must usually be statically linked. | 44 | functions run, so it must usually be statically linked. |
| @@ -133,8 +135,8 @@ config RTC_DRV_DS1307 | |||
| 133 | 135 | ||
| 134 | The first seven registers on these chips hold an RTC, and other | 136 | The first seven registers on these chips hold an RTC, and other |
| 135 | registers may add features such as NVRAM, a trickle charger for | 137 | registers may add features such as NVRAM, a trickle charger for |
| 136 | the RTC/NVRAM backup power, and alarms. This driver may not | 138 | the RTC/NVRAM backup power, and alarms. NVRAM is visible in |
| 137 | expose all those available chip features. | 139 | sysfs, but other chip features may not be available. |
| 138 | 140 | ||
| 139 | This driver can also be built as a module. If so, the module | 141 | This driver can also be built as a module. If so, the module |
| 140 | will be called rtc-ds1307. | 142 | will be called rtc-ds1307. |
diff --git a/drivers/rtc/hctosys.c b/drivers/rtc/hctosys.c index 178527252c6a..33c0e98243ee 100644 --- a/drivers/rtc/hctosys.c +++ b/drivers/rtc/hctosys.c | |||
| @@ -47,8 +47,8 @@ static int __init rtc_hctosys(void) | |||
| 47 | do_settimeofday(&tv); | 47 | do_settimeofday(&tv); |
| 48 | 48 | ||
| 49 | dev_info(rtc->dev.parent, | 49 | dev_info(rtc->dev.parent, |
| 50 | "setting the system clock to " | 50 | "setting system clock to " |
| 51 | "%d-%02d-%02d %02d:%02d:%02d (%u)\n", | 51 | "%d-%02d-%02d %02d:%02d:%02d UTC (%u)\n", |
| 52 | tm.tm_year + 1900, tm.tm_mon + 1, tm.tm_mday, | 52 | tm.tm_year + 1900, tm.tm_mon + 1, tm.tm_mday, |
| 53 | tm.tm_hour, tm.tm_min, tm.tm_sec, | 53 | tm.tm_hour, tm.tm_min, tm.tm_sec, |
| 54 | (unsigned int) tv.tv_sec); | 54 | (unsigned int) tv.tv_sec); |
diff --git a/drivers/rtc/rtc-ds1307.c b/drivers/rtc/rtc-ds1307.c index db6f3f0d8982..bc1c7fe94ad3 100644 --- a/drivers/rtc/rtc-ds1307.c +++ b/drivers/rtc/rtc-ds1307.c | |||
| @@ -89,6 +89,7 @@ enum ds_type { | |||
| 89 | 89 | ||
| 90 | struct ds1307 { | 90 | struct ds1307 { |
| 91 | u8 reg_addr; | 91 | u8 reg_addr; |
| 92 | bool has_nvram; | ||
| 92 | u8 regs[8]; | 93 | u8 regs[8]; |
| 93 | enum ds_type type; | 94 | enum ds_type type; |
| 94 | struct i2c_msg msg[2]; | 95 | struct i2c_msg msg[2]; |
| @@ -242,6 +243,87 @@ static const struct rtc_class_ops ds13xx_rtc_ops = { | |||
| 242 | .set_time = ds1307_set_time, | 243 | .set_time = ds1307_set_time, |
| 243 | }; | 244 | }; |
| 244 | 245 | ||
| 246 | /*----------------------------------------------------------------------*/ | ||
| 247 | |||
| 248 | #define NVRAM_SIZE 56 | ||
| 249 | |||
| 250 | static ssize_t | ||
| 251 | ds1307_nvram_read(struct kobject *kobj, struct bin_attribute *attr, | ||
| 252 | char *buf, loff_t off, size_t count) | ||
| 253 | { | ||
| 254 | struct i2c_client *client; | ||
| 255 | struct ds1307 *ds1307; | ||
| 256 | struct i2c_msg msg[2]; | ||
| 257 | int result; | ||
| 258 | |||
| 259 | client = to_i2c_client(container_of(kobj, struct device, kobj)); | ||
| 260 | ds1307 = i2c_get_clientdata(client); | ||
| 261 | |||
| 262 | if (unlikely(off >= NVRAM_SIZE)) | ||
| 263 | return 0; | ||
| 264 | if ((off + count) > NVRAM_SIZE) | ||
| 265 | count = NVRAM_SIZE - off; | ||
| 266 | if (unlikely(!count)) | ||
| 267 | return count; | ||
| 268 | |||
| 269 | msg[0].addr = client->addr; | ||
| 270 | msg[0].flags = 0; | ||
| 271 | msg[0].len = 1; | ||
| 272 | msg[0].buf = buf; | ||
| 273 | |||
| 274 | buf[0] = 8 + off; | ||
| 275 | |||
| 276 | msg[1].addr = client->addr; | ||
| 277 | msg[1].flags = I2C_M_RD; | ||
| 278 | msg[1].len = count; | ||
| 279 | msg[1].buf = buf; | ||
| 280 | |||
| 281 | result = i2c_transfer(to_i2c_adapter(client->dev.parent), msg, 2); | ||
| 282 | if (result != 2) { | ||
| 283 | dev_err(&client->dev, "%s error %d\n", "nvram read", result); | ||
| 284 | return -EIO; | ||
| 285 | } | ||
| 286 | return count; | ||
| 287 | } | ||
| 288 | |||
| 289 | static ssize_t | ||
| 290 | ds1307_nvram_write(struct kobject *kobj, struct bin_attribute *attr, | ||
| 291 | char *buf, loff_t off, size_t count) | ||
| 292 | { | ||
| 293 | struct i2c_client *client; | ||
| 294 | u8 buffer[NVRAM_SIZE + 1]; | ||
| 295 | int ret; | ||
| 296 | |||
| 297 | client = to_i2c_client(container_of(kobj, struct device, kobj)); | ||
| 298 | |||
| 299 | if (unlikely(off >= NVRAM_SIZE)) | ||
| 300 | return -EFBIG; | ||
| 301 | if ((off + count) > NVRAM_SIZE) | ||
| 302 | count = NVRAM_SIZE - off; | ||
| 303 | if (unlikely(!count)) | ||
| 304 | return count; | ||
| 305 | |||
| 306 | buffer[0] = 8 + off; | ||
| 307 | memcpy(buffer + 1, buf, count); | ||
| 308 | |||
| 309 | ret = i2c_master_send(client, buffer, count + 1); | ||
| 310 | return (ret < 0) ? ret : (ret - 1); | ||
| 311 | } | ||
| 312 | |||
| 313 | static struct bin_attribute nvram = { | ||
| 314 | .attr = { | ||
| 315 | .name = "nvram", | ||
| 316 | .mode = S_IRUGO | S_IWUSR, | ||
| 317 | .owner = THIS_MODULE, | ||
| 318 | }, | ||
| 319 | |||
| 320 | .read = ds1307_nvram_read, | ||
| 321 | .write = ds1307_nvram_write, | ||
| 322 | .size = NVRAM_SIZE, | ||
| 323 | }; | ||
| 324 | |||
| 325 | /*----------------------------------------------------------------------*/ | ||
| 326 | |||
| 245 | static struct i2c_driver ds1307_driver; | 327 | static struct i2c_driver ds1307_driver; |
| 246 | 328 | ||
| 247 | static int __devinit ds1307_probe(struct i2c_client *client) | 329 | static int __devinit ds1307_probe(struct i2c_client *client) |
| @@ -413,6 +495,14 @@ read_rtc: | |||
| 413 | goto exit_free; | 495 | goto exit_free; |
| 414 | } | 496 | } |
| 415 | 497 | ||
| 498 | if (chip->nvram56) { | ||
| 499 | err = sysfs_create_bin_file(&client->dev.kobj, &nvram); | ||
| 500 | if (err == 0) { | ||
| 501 | ds1307->has_nvram = true; | ||
| 502 | dev_info(&client->dev, "56 bytes nvram\n"); | ||
| 503 | } | ||
| 504 | } | ||
| 505 | |||
| 416 | return 0; | 506 | return 0; |
| 417 | 507 | ||
| 418 | exit_bad: | 508 | exit_bad: |
| @@ -432,6 +522,9 @@ static int __devexit ds1307_remove(struct i2c_client *client) | |||
| 432 | { | 522 | { |
| 433 | struct ds1307 *ds1307 = i2c_get_clientdata(client); | 523 | struct ds1307 *ds1307 = i2c_get_clientdata(client); |
| 434 | 524 | ||
| 525 | if (ds1307->has_nvram) | ||
| 526 | sysfs_remove_bin_file(&client->dev.kobj, &nvram); | ||
| 527 | |||
| 435 | rtc_device_unregister(ds1307->rtc); | 528 | rtc_device_unregister(ds1307->rtc); |
| 436 | kfree(ds1307); | 529 | kfree(ds1307); |
| 437 | return 0; | 530 | return 0; |
diff --git a/drivers/rtc/rtc-ds1553.c b/drivers/rtc/rtc-ds1553.c index bb53c09bad16..d9e848dcd450 100644 --- a/drivers/rtc/rtc-ds1553.c +++ b/drivers/rtc/rtc-ds1553.c | |||
| @@ -291,7 +291,7 @@ static ssize_t ds1553_nvram_write(struct kobject *kobj, | |||
| 291 | static struct bin_attribute ds1553_nvram_attr = { | 291 | static struct bin_attribute ds1553_nvram_attr = { |
| 292 | .attr = { | 292 | .attr = { |
| 293 | .name = "nvram", | 293 | .name = "nvram", |
| 294 | .mode = S_IRUGO | S_IWUGO, | 294 | .mode = S_IRUGO | S_IWUSR, |
| 295 | }, | 295 | }, |
| 296 | .size = RTC_OFFSET, | 296 | .size = RTC_OFFSET, |
| 297 | .read = ds1553_nvram_read, | 297 | .read = ds1553_nvram_read, |
diff --git a/drivers/rtc/rtc-ds1742.c b/drivers/rtc/rtc-ds1742.c index c535b78698e2..2e73f0b183b2 100644 --- a/drivers/rtc/rtc-ds1742.c +++ b/drivers/rtc/rtc-ds1742.c | |||
| @@ -160,10 +160,13 @@ static ssize_t ds1742_nvram_write(struct kobject *kobj, | |||
| 160 | static struct bin_attribute ds1742_nvram_attr = { | 160 | static struct bin_attribute ds1742_nvram_attr = { |
| 161 | .attr = { | 161 | .attr = { |
| 162 | .name = "nvram", | 162 | .name = "nvram", |
| 163 | .mode = S_IRUGO | S_IWUGO, | 163 | .mode = S_IRUGO | S_IWUSR, |
| 164 | }, | 164 | }, |
| 165 | .read = ds1742_nvram_read, | 165 | .read = ds1742_nvram_read, |
| 166 | .write = ds1742_nvram_write, | 166 | .write = ds1742_nvram_write, |
| 167 | /* REVISIT: size in sysfs won't match actual size... if it's | ||
| 168 | * not a constant, each RTC should have its own attribute. | ||
| 169 | */ | ||
| 167 | }; | 170 | }; |
| 168 | 171 | ||
| 169 | static int __devinit ds1742_rtc_probe(struct platform_device *pdev) | 172 | static int __devinit ds1742_rtc_probe(struct platform_device *pdev) |
diff --git a/drivers/rtc/rtc-m48t59.c b/drivers/rtc/rtc-m48t59.c index 2bad1637330a..cd0bbc0e8038 100644 --- a/drivers/rtc/rtc-m48t59.c +++ b/drivers/rtc/rtc-m48t59.c | |||
| @@ -353,11 +353,12 @@ static ssize_t m48t59_nvram_write(struct kobject *kobj, | |||
| 353 | static struct bin_attribute m48t59_nvram_attr = { | 353 | static struct bin_attribute m48t59_nvram_attr = { |
| 354 | .attr = { | 354 | .attr = { |
| 355 | .name = "nvram", | 355 | .name = "nvram", |
| 356 | .mode = S_IRUGO | S_IWUGO, | 356 | .mode = S_IRUGO | S_IWUSR, |
| 357 | .owner = THIS_MODULE, | 357 | .owner = THIS_MODULE, |
| 358 | }, | 358 | }, |
| 359 | .read = m48t59_nvram_read, | 359 | .read = m48t59_nvram_read, |
| 360 | .write = m48t59_nvram_write, | 360 | .write = m48t59_nvram_write, |
| 361 | .size = M48T59_NVRAM_SIZE, | ||
| 361 | }; | 362 | }; |
| 362 | 363 | ||
| 363 | static int __devinit m48t59_rtc_probe(struct platform_device *pdev) | 364 | static int __devinit m48t59_rtc_probe(struct platform_device *pdev) |
diff --git a/drivers/rtc/rtc-stk17ta8.c b/drivers/rtc/rtc-stk17ta8.c index 8288b6b2bf2b..a265da7c6ff8 100644 --- a/drivers/rtc/rtc-stk17ta8.c +++ b/drivers/rtc/rtc-stk17ta8.c | |||
| @@ -291,7 +291,7 @@ static ssize_t stk17ta8_nvram_write(struct kobject *kobj, | |||
| 291 | static struct bin_attribute stk17ta8_nvram_attr = { | 291 | static struct bin_attribute stk17ta8_nvram_attr = { |
| 292 | .attr = { | 292 | .attr = { |
| 293 | .name = "nvram", | 293 | .name = "nvram", |
| 294 | .mode = S_IRUGO | S_IWUGO, | 294 | .mode = S_IRUGO | S_IWUSR, |
| 295 | .owner = THIS_MODULE, | 295 | .owner = THIS_MODULE, |
| 296 | }, | 296 | }, |
| 297 | .size = RTC_OFFSET, | 297 | .size = RTC_OFFSET, |
diff --git a/drivers/scsi/aic94xx/aic94xx_sds.c b/drivers/scsi/aic94xx/aic94xx_sds.c index 5b0932f61473..06509bff71f7 100644 --- a/drivers/scsi/aic94xx/aic94xx_sds.c +++ b/drivers/scsi/aic94xx/aic94xx_sds.c | |||
| @@ -377,7 +377,7 @@ out: | |||
| 377 | 377 | ||
| 378 | #define FLASH_RESET 0xF0 | 378 | #define FLASH_RESET 0xF0 |
| 379 | 379 | ||
| 380 | #define FLASH_SIZE 0x200000 | 380 | #define ASD_FLASH_SIZE 0x200000 |
| 381 | #define FLASH_DIR_COOKIE "*** ADAPTEC FLASH DIRECTORY *** " | 381 | #define FLASH_DIR_COOKIE "*** ADAPTEC FLASH DIRECTORY *** " |
| 382 | #define FLASH_NEXT_ENTRY_OFFS 0x2000 | 382 | #define FLASH_NEXT_ENTRY_OFFS 0x2000 |
| 383 | #define FLASH_MAX_DIR_ENTRIES 32 | 383 | #define FLASH_MAX_DIR_ENTRIES 32 |
| @@ -609,7 +609,7 @@ static int asd_find_flash_dir(struct asd_ha_struct *asd_ha, | |||
| 609 | struct asd_flash_dir *flash_dir) | 609 | struct asd_flash_dir *flash_dir) |
| 610 | { | 610 | { |
| 611 | u32 v; | 611 | u32 v; |
| 612 | for (v = 0; v < FLASH_SIZE; v += FLASH_NEXT_ENTRY_OFFS) { | 612 | for (v = 0; v < ASD_FLASH_SIZE; v += FLASH_NEXT_ENTRY_OFFS) { |
| 613 | asd_read_flash_seg(asd_ha, flash_dir, v, | 613 | asd_read_flash_seg(asd_ha, flash_dir, v, |
| 614 | sizeof(FLASH_DIR_COOKIE)-1); | 614 | sizeof(FLASH_DIR_COOKIE)-1); |
| 615 | if (memcmp(flash_dir->cookie, FLASH_DIR_COOKIE, | 615 | if (memcmp(flash_dir->cookie, FLASH_DIR_COOKIE, |
diff --git a/drivers/serial/8250_pnp.c b/drivers/serial/8250_pnp.c index 926f58a674a1..1de098e75497 100644 --- a/drivers/serial/8250_pnp.c +++ b/drivers/serial/8250_pnp.c | |||
| @@ -69,6 +69,8 @@ static const struct pnp_device_id pnp_dev_table[] = { | |||
| 69 | { "CTL3001", 0 }, | 69 | { "CTL3001", 0 }, |
| 70 | /* Creative Labs Modem Blaster 28.8 DSVD PnP Voice */ | 70 | /* Creative Labs Modem Blaster 28.8 DSVD PnP Voice */ |
| 71 | { "CTL3011", 0 }, | 71 | { "CTL3011", 0 }, |
| 72 | /* Davicom ISA 33.6K Modem */ | ||
| 73 | { "DAV0336", 0 }, | ||
| 72 | /* Creative */ | 74 | /* Creative */ |
| 73 | /* Creative Modem Blaster Flash56 DI5601-1 */ | 75 | /* Creative Modem Blaster Flash56 DI5601-1 */ |
| 74 | { "DMB1032", 0 }, | 76 | { "DMB1032", 0 }, |
| @@ -345,6 +347,11 @@ static const struct pnp_device_id pnp_dev_table[] = { | |||
| 345 | /* Fujitsu Wacom Tablet PC devices */ | 347 | /* Fujitsu Wacom Tablet PC devices */ |
| 346 | { "FUJ02E5", 0 }, | 348 | { "FUJ02E5", 0 }, |
| 347 | { "FUJ02E6", 0 }, | 349 | { "FUJ02E6", 0 }, |
| 350 | /* | ||
| 351 | * LG C1 EXPRESS DUAL (C1-PB11A3) touch screen (actually a FUJ02E6 in | ||
| 352 | * disguise) | ||
| 353 | */ | ||
| 354 | { "LTS0001", 0 }, | ||
| 348 | /* Rockwell's (PORALiNK) 33600 INT PNP */ | 355 | /* Rockwell's (PORALiNK) 33600 INT PNP */ |
| 349 | { "WCI0003", 0 }, | 356 | { "WCI0003", 0 }, |
| 350 | /* Unkown PnP modems */ | 357 | /* Unkown PnP modems */ |
| @@ -432,7 +439,8 @@ serial_pnp_probe(struct pnp_dev *dev, const struct pnp_device_id *dev_id) | |||
| 432 | } | 439 | } |
| 433 | 440 | ||
| 434 | memset(&port, 0, sizeof(struct uart_port)); | 441 | memset(&port, 0, sizeof(struct uart_port)); |
| 435 | port.irq = pnp_irq(dev, 0); | 442 | if (pnp_irq_valid(dev, 0)) |
| 443 | port.irq = pnp_irq(dev, 0); | ||
| 436 | if (pnp_port_valid(dev, 0)) { | 444 | if (pnp_port_valid(dev, 0)) { |
| 437 | port.iobase = pnp_port_start(dev, 0); | 445 | port.iobase = pnp_port_start(dev, 0); |
| 438 | port.iotype = UPIO_PORT; | 446 | port.iotype = UPIO_PORT; |
diff --git a/drivers/serial/atmel_serial.c b/drivers/serial/atmel_serial.c index 4d6b3c56d20e..111da57f5334 100644 --- a/drivers/serial/atmel_serial.c +++ b/drivers/serial/atmel_serial.c | |||
| @@ -204,8 +204,6 @@ static u_int atmel_get_mctrl(struct uart_port *port) | |||
| 204 | */ | 204 | */ |
| 205 | static void atmel_stop_tx(struct uart_port *port) | 205 | static void atmel_stop_tx(struct uart_port *port) |
| 206 | { | 206 | { |
| 207 | struct atmel_uart_port *atmel_port = (struct atmel_uart_port *) port; | ||
| 208 | |||
| 209 | UART_PUT_IDR(port, ATMEL_US_TXRDY); | 207 | UART_PUT_IDR(port, ATMEL_US_TXRDY); |
| 210 | } | 208 | } |
| 211 | 209 | ||
| @@ -214,8 +212,6 @@ static void atmel_stop_tx(struct uart_port *port) | |||
| 214 | */ | 212 | */ |
| 215 | static void atmel_start_tx(struct uart_port *port) | 213 | static void atmel_start_tx(struct uart_port *port) |
| 216 | { | 214 | { |
| 217 | struct atmel_uart_port *atmel_port = (struct atmel_uart_port *) port; | ||
| 218 | |||
| 219 | UART_PUT_IER(port, ATMEL_US_TXRDY); | 215 | UART_PUT_IER(port, ATMEL_US_TXRDY); |
| 220 | } | 216 | } |
| 221 | 217 | ||
| @@ -224,8 +220,6 @@ static void atmel_start_tx(struct uart_port *port) | |||
| 224 | */ | 220 | */ |
| 225 | static void atmel_stop_rx(struct uart_port *port) | 221 | static void atmel_stop_rx(struct uart_port *port) |
| 226 | { | 222 | { |
| 227 | struct atmel_uart_port *atmel_port = (struct atmel_uart_port *) port; | ||
| 228 | |||
| 229 | UART_PUT_IDR(port, ATMEL_US_RXRDY); | 223 | UART_PUT_IDR(port, ATMEL_US_RXRDY); |
| 230 | } | 224 | } |
| 231 | 225 | ||
| @@ -409,7 +403,6 @@ static irqreturn_t atmel_interrupt(int irq, void *dev_id) | |||
| 409 | */ | 403 | */ |
| 410 | static int atmel_startup(struct uart_port *port) | 404 | static int atmel_startup(struct uart_port *port) |
| 411 | { | 405 | { |
| 412 | struct atmel_uart_port *atmel_port = (struct atmel_uart_port *) port; | ||
| 413 | int retval; | 406 | int retval; |
| 414 | 407 | ||
| 415 | /* | 408 | /* |
| @@ -456,8 +449,6 @@ static int atmel_startup(struct uart_port *port) | |||
| 456 | */ | 449 | */ |
| 457 | static void atmel_shutdown(struct uart_port *port) | 450 | static void atmel_shutdown(struct uart_port *port) |
| 458 | { | 451 | { |
| 459 | struct atmel_uart_port *atmel_port = (struct atmel_uart_port *) port; | ||
| 460 | |||
| 461 | /* | 452 | /* |
| 462 | * Disable all interrupts, port and break condition. | 453 | * Disable all interrupts, port and break condition. |
| 463 | */ | 454 | */ |
diff --git a/drivers/serial/crisv10.c b/drivers/serial/crisv10.c index f523cdf4b02b..a4e23cf47906 100644 --- a/drivers/serial/crisv10.c +++ b/drivers/serial/crisv10.c | |||
| @@ -1,426 +1,10 @@ | |||
| 1 | /* $Id: serial.c,v 1.25 2004/09/29 10:33:49 starvik Exp $ | 1 | /* |
| 2 | * | ||
| 3 | * Serial port driver for the ETRAX 100LX chip | 2 | * Serial port driver for the ETRAX 100LX chip |
| 4 | * | 3 | * |
| 5 | * Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003 Axis Communications AB | 4 | * Copyright (C) 1998-2007 Axis Communications AB |
| 6 | * | 5 | * |
| 7 | * Many, many authors. Based once upon a time on serial.c for 16x50. | 6 | * Many, many authors. Based once upon a time on serial.c for 16x50. |
| 8 | * | 7 | * |
| 9 | * $Log: serial.c,v $ | ||
| 10 | * Revision 1.25 2004/09/29 10:33:49 starvik | ||
| 11 | * Resolved a dealock when printing debug from kernel. | ||
| 12 | * | ||
| 13 | * Revision 1.24 2004/08/27 23:25:59 johana | ||
| 14 | * rs_set_termios() must call change_speed() if c_iflag has changed or | ||
| 15 | * automatic XOFF handling will be enabled and transmitter will stop | ||
| 16 | * if 0x13 is received. | ||
| 17 | * | ||
| 18 | * Revision 1.23 2004/08/24 06:57:13 starvik | ||
| 19 | * More whitespace cleanup | ||
| 20 | * | ||
| 21 | * Revision 1.22 2004/08/24 06:12:20 starvik | ||
| 22 | * Whitespace cleanup | ||
| 23 | * | ||
| 24 | * Revision 1.20 2004/05/24 12:00:20 starvik | ||
| 25 | * Big merge of stuff from Linux 2.4 (e.g. manual mode for the serial port). | ||
| 26 | * | ||
| 27 | * Revision 1.19 2004/05/17 13:12:15 starvik | ||
| 28 | * Kernel console hook | ||
| 29 | * Big merge from Linux 2.4 still pending. | ||
| 30 | * | ||
| 31 | * Revision 1.18 2003/10/28 07:18:30 starvik | ||
| 32 | * Compiles with debug info | ||
| 33 | * | ||
| 34 | * Revision 1.17 2003/07/04 08:27:37 starvik | ||
| 35 | * Merge of Linux 2.5.74 | ||
| 36 | * | ||
| 37 | * Revision 1.16 2003/06/13 10:05:19 johana | ||
| 38 | * Help the user to avoid trouble by: | ||
| 39 | * Forcing mixed mode for status/control lines if not all pins are used. | ||
| 40 | * | ||
| 41 | * Revision 1.15 2003/06/13 09:43:01 johana | ||
| 42 | * Merged in the following changes from os/linux/arch/cris/drivers/serial.c | ||
| 43 | * + some minor changes to reduce diff. | ||
| 44 | * | ||
| 45 | * Revision 1.49 2003/05/30 11:31:54 johana | ||
| 46 | * Merged in change-branch--serial9bit that adds CMSPAR support for sticky | ||
| 47 | * parity (mark/space) | ||
| 48 | * | ||
| 49 | * Revision 1.48 2003/05/30 11:03:57 johana | ||
| 50 | * Implemented rs_send_xchar() by disabling the DMA and writing manually. | ||
| 51 | * Added e100_disable_txdma_channel() and e100_enable_txdma_channel(). | ||
| 52 | * Fixed rs_throttle() and rs_unthrottle() to properly call rs_send_xchar | ||
| 53 | * instead of setting info->x_char and check the CRTSCTS flag before | ||
| 54 | * controlling the rts pin. | ||
| 55 | * | ||
| 56 | * Revision 1.14 2003/04/09 08:12:44 pkj | ||
| 57 | * Corrected typo changes made upstream. | ||
| 58 | * | ||
| 59 | * Revision 1.13 2003/04/09 05:20:47 starvik | ||
| 60 | * Merge of Linux 2.5.67 | ||
| 61 | * | ||
| 62 | * Revision 1.11 2003/01/22 06:48:37 starvik | ||
| 63 | * Fixed warnings issued by GCC 3.2.1 | ||
| 64 | * | ||
| 65 | * Revision 1.9 2002/12/13 09:07:47 starvik | ||
| 66 | * Alert user that RX_TIMEOUT_TICKS==0 doesn't work | ||
| 67 | * | ||
| 68 | * Revision 1.8 2002/12/11 13:13:57 starvik | ||
| 69 | * Added arch/ to v10 specific includes | ||
| 70 | * Added fix from Linux 2.4 in serial.c (flush_to_flip_buffer) | ||
| 71 | * | ||
| 72 | * Revision 1.7 2002/12/06 07:13:57 starvik | ||
| 73 | * Corrected work queue stuff | ||
| 74 | * Removed CONFIG_ETRAX_SERIAL_FLUSH_DMA_FAST | ||
| 75 | * | ||
| 76 | * Revision 1.6 2002/11/21 07:17:46 starvik | ||
| 77 | * Change static inline to extern inline where otherwise outlined with gcc-3.2 | ||
| 78 | * | ||
| 79 | * Revision 1.5 2002/11/14 15:59:49 starvik | ||
| 80 | * Linux 2.5 port of the latest serial driver from 2.4. The work queue stuff | ||
| 81 | * probably doesn't work yet. | ||
| 82 | * | ||
| 83 | * Revision 1.42 2002/11/05 09:08:47 johana | ||
| 84 | * Better implementation of rs_stop() and rs_start() that uses the XOFF | ||
| 85 | * register to start/stop transmission. | ||
| 86 | * change_speed() also initilises XOFF register correctly so that | ||
| 87 | * auto_xoff is enabled when IXON flag is set by user. | ||
| 88 | * This gives fast XOFF response times. | ||
| 89 | * | ||
| 90 | * Revision 1.41 2002/11/04 18:40:57 johana | ||
| 91 | * Implemented rs_stop() and rs_start(). | ||
| 92 | * Simple tests using hwtestserial indicates that this should be enough | ||
| 93 | * to make it work. | ||
| 94 | * | ||
| 95 | * Revision 1.40 2002/10/14 05:33:18 starvik | ||
| 96 | * RS-485 uses fast timers even if SERIAL_FAST_TIMER is disabled | ||
| 97 | * | ||
| 98 | * Revision 1.39 2002/09/30 21:00:57 johana | ||
| 99 | * Support for CONFIG_ETRAX_SERx_DTR_RI_DSR_CD_MIXED where the status and | ||
| 100 | * control pins can be mixed between PA and PB. | ||
| 101 | * If no serial port uses MIXED old solution is used | ||
| 102 | * (saves a few bytes and cycles). | ||
| 103 | * control_pins struct uses masks instead of bit numbers. | ||
| 104 | * Corrected dummy values and polarity in line_info() so | ||
| 105 | * /proc/tty/driver/serial is now correct. | ||
| 106 | * (the E100_xxx_GET() macros is really active low - perhaps not obvious) | ||
| 107 | * | ||
| 108 | * Revision 1.38 2002/08/23 11:01:36 starvik | ||
| 109 | * Check that serial port is enabled in all interrupt handlers to avoid | ||
| 110 | * restarts of DMA channels not assigned to serial ports | ||
| 111 | * | ||
| 112 | * Revision 1.37 2002/08/13 13:02:37 bjornw | ||
| 113 | * Removed some warnings because of unused code | ||
| 114 | * | ||
| 115 | * Revision 1.36 2002/08/08 12:50:01 starvik | ||
| 116 | * Serial interrupt is shared with synchronous serial port driver | ||
| 117 | * | ||
| 118 | * Revision 1.35 2002/06/03 10:40:49 starvik | ||
| 119 | * Increased RS-485 RTS toggle timer to 2 characters | ||
| 120 | * | ||
| 121 | * Revision 1.34 2002/05/28 18:59:36 johana | ||
| 122 | * Whitespace and comment fixing to be more like etrax100ser.c 1.71. | ||
| 123 | * | ||
| 124 | * Revision 1.33 2002/05/28 17:55:43 johana | ||
| 125 | * RS-485 uses FAST_TIMER if enabled, and starts a short (one char time) | ||
| 126 | * timer from tranismit_chars (interrupt context). | ||
| 127 | * The timer toggles RTS in interrupt context when expired giving minimum | ||
| 128 | * latencies. | ||
| 129 | * | ||
| 130 | * Revision 1.32 2002/05/22 13:58:00 johana | ||
| 131 | * Renamed rs_write() to raw_write() and made it inline. | ||
| 132 | * New rs_write() handles RS-485 if configured and enabled | ||
| 133 | * (moved code from e100_write_rs485()). | ||
| 134 | * RS-485 ioctl's uses copy_from_user() instead of verify_area(). | ||
| 135 | * | ||
| 136 | * Revision 1.31 2002/04/22 11:20:03 johana | ||
| 137 | * Updated copyright years. | ||
| 138 | * | ||
| 139 | * Revision 1.30 2002/04/22 09:39:12 johana | ||
| 140 | * RS-485 support compiles. | ||
| 141 | * | ||
| 142 | * Revision 1.29 2002/01/14 16:10:01 pkj | ||
| 143 | * Allocate the receive buffers dynamically. The static 4kB buffer was | ||
| 144 | * too small for the peaks. This means that we can get rid of the extra | ||
| 145 | * buffer and the copying to it. It also means we require less memory | ||
| 146 | * under normal operations, but can use more when needed (there is a | ||
| 147 | * cap at 64kB for safety reasons). If there is no memory available | ||
| 148 | * we panic(), and die a horrible death... | ||
| 149 | * | ||
| 150 | * Revision 1.28 2001/12/18 15:04:53 johana | ||
| 151 | * Cleaned up write_rs485() - now it works correctly without padding extra | ||
| 152 | * char. | ||
| 153 | * Added sane default initialisation of rs485. | ||
| 154 | * Added #ifdef around dummy variables. | ||
| 155 | * | ||
| 156 | * Revision 1.27 2001/11/29 17:00:41 pkj | ||
| 157 | * 2kB seems to be too small a buffer when using 921600 bps, | ||
| 158 | * so increase it to 4kB (this was already done for the elinux | ||
| 159 | * version of the serial driver). | ||
| 160 | * | ||
| 161 | * Revision 1.26 2001/11/19 14:20:41 pkj | ||
| 162 | * Minor changes to comments and unused code. | ||
| 163 | * | ||
| 164 | * Revision 1.25 2001/11/12 20:03:43 pkj | ||
| 165 | * Fixed compiler warnings. | ||
| 166 | * | ||
| 167 | * Revision 1.24 2001/11/12 15:10:05 pkj | ||
| 168 | * Total redesign of the receiving part of the serial driver. | ||
| 169 | * Uses eight chained descriptors to write to a 4kB buffer. | ||
| 170 | * This data is then serialised into a 2kB buffer. From there it | ||
| 171 | * is copied into the TTY's flip buffers when they become available. | ||
| 172 | * A lot of copying, and the sizes of the buffers might need to be | ||
| 173 | * tweaked, but all in all it should work better than the previous | ||
| 174 | * version, without the need to modify the TTY code in any way. | ||
| 175 | * Also note that erroneous bytes are now correctly marked in the | ||
| 176 | * flag buffers (instead of always marking the first byte). | ||
| 177 | * | ||
| 178 | * Revision 1.23 2001/10/30 17:53:26 pkj | ||
| 179 | * * Set info->uses_dma to 0 when a port is closed. | ||
| 180 | * * Mark the timer1 interrupt as a fast one (SA_INTERRUPT). | ||
| 181 | * * Call start_flush_timer() in start_receive() if | ||
| 182 | * CONFIG_ETRAX_SERIAL_FLUSH_DMA_FAST is defined. | ||
| 183 | * | ||
| 184 | * Revision 1.22 2001/10/30 17:44:03 pkj | ||
| 185 | * Use %lu for received and transmitted counters in line_info(). | ||
| 186 | * | ||
| 187 | * Revision 1.21 2001/10/30 17:40:34 pkj | ||
| 188 | * Clean-up. The only change to functionality is that | ||
| 189 | * CONFIG_ETRAX_SERIAL_RX_TIMEOUT_TICKS(=5) is used instead of | ||
| 190 | * MAX_FLUSH_TIME(=8). | ||
| 191 | * | ||
| 192 | * Revision 1.20 2001/10/30 15:24:49 johana | ||
| 193 | * Added char_time stuff from 2.0 driver. | ||
| 194 | * | ||
| 195 | * Revision 1.19 2001/10/30 15:23:03 johana | ||
| 196 | * Merged with 1.13.2 branch + fixed indentation | ||
| 197 | * and changed CONFIG_ETRAX100_XYS to CONFIG_ETRAX_XYZ | ||
| 198 | * | ||
| 199 | * Revision 1.18 2001/09/24 09:27:22 pkj | ||
| 200 | * Completed ext_baud_table[] in cflag_to_baud() and cflag_to_etrax_baud(). | ||
| 201 | * | ||
| 202 | * Revision 1.17 2001/08/24 11:32:49 ronny | ||
| 203 | * More fixes for the CONFIG_ETRAX_SERIAL_PORT0 define. | ||
| 204 | * | ||
| 205 | * Revision 1.16 2001/08/24 07:56:22 ronny | ||
| 206 | * Added config ifdefs around ser0 irq requests. | ||
| 207 | * | ||
| 208 | * Revision 1.15 2001/08/16 09:10:31 bjarne | ||
| 209 | * serial.c - corrected the initialization of rs_table, the wrong defines | ||
| 210 | * where used. | ||
| 211 | * Corrected a test in timed_flush_handler. | ||
| 212 | * Changed configured to enabled. | ||
| 213 | * serial.h - Changed configured to enabled. | ||
| 214 | * | ||
| 215 | * Revision 1.14 2001/08/15 07:31:23 bjarne | ||
| 216 | * Introduced two new members to the e100_serial struct. | ||
| 217 | * configured - Will be set to 1 if the port has been configured in .config | ||
| 218 | * uses_dma - Should be set to 1 if the port uses DMA. Currently it is set | ||
| 219 | * to 1 | ||
| 220 | * when a port is opened. This is used to limit the DMA interrupt | ||
| 221 | * routines to only manipulate DMA channels actually used by the | ||
| 222 | * serial driver. | ||
| 223 | * | ||
| 224 | * Revision 1.13.2.2 2001/10/17 13:57:13 starvik | ||
| 225 | * Receiver was broken by the break fixes | ||
| 226 | * | ||
| 227 | * Revision 1.13.2.1 2001/07/20 13:57:39 ronny | ||
| 228 | * Merge with new stuff from etrax100ser.c. Works but haven't checked stuff | ||
| 229 | * like break handling. | ||
| 230 | * | ||
| 231 | * Revision 1.13 2001/05/09 12:40:31 johana | ||
| 232 | * Use DMA_NBR and IRQ_NBR defines from dma.h and irq.h | ||
| 233 | * | ||
| 234 | * Revision 1.12 2001/04/19 12:23:07 bjornw | ||
| 235 | * CONFIG_RS485 -> CONFIG_ETRAX_RS485 | ||
| 236 | * | ||
| 237 | * Revision 1.11 2001/04/05 14:29:48 markusl | ||
| 238 | * Updated according to review remarks i.e. | ||
| 239 | * -Use correct types in port structure to avoid compiler warnings | ||
| 240 | * -Try to use IO_* macros whenever possible | ||
| 241 | * -Open should never return -EBUSY | ||
| 242 | * | ||
| 243 | * Revision 1.10 2001/03/05 13:14:07 bjornw | ||
| 244 | * Another spelling fix | ||
| 245 | * | ||
| 246 | * Revision 1.9 2001/02/23 13:46:38 bjornw | ||
| 247 | * Spellling check | ||
| 248 | * | ||
| 249 | * Revision 1.8 2001/01/23 14:56:35 markusl | ||
| 250 | * Made use of ser1 optional | ||
| 251 | * Needed by USB | ||
| 252 | * | ||
| 253 | * Revision 1.7 2001/01/19 16:14:48 perf | ||
| 254 | * Added kernel options for serial ports 234. | ||
| 255 | * Changed option names from CONFIG_ETRAX100_XYZ to CONFIG_ETRAX_XYZ. | ||
| 256 | * | ||
| 257 | * Revision 1.6 2000/11/22 16:36:09 bjornw | ||
| 258 | * Please marketing by using the correct case when spelling Etrax. | ||
| 259 | * | ||
| 260 | * Revision 1.5 2000/11/21 16:43:37 bjornw | ||
| 261 | * Fixed so it compiles under CONFIG_SVINTO_SIM | ||
| 262 | * | ||
| 263 | * Revision 1.4 2000/11/15 17:34:12 bjornw | ||
| 264 | * Added a timeout timer for flushing input channels. The interrupt-based | ||
| 265 | * fast flush system should be easy to merge with this later (works the same | ||
| 266 | * way, only with an irq instead of a system timer_list) | ||
| 267 | * | ||
| 268 | * Revision 1.3 2000/11/13 17:19:57 bjornw | ||
| 269 | * * Incredibly, this almost complete rewrite of serial.c worked (at least | ||
| 270 | * for output) the first time. | ||
| 271 | * | ||
| 272 | * Items worth noticing: | ||
| 273 | * | ||
| 274 | * No Etrax100 port 1 workarounds (does only compile on 2.4 anyway now) | ||
| 275 | * RS485 is not ported (why can't it be done in userspace as on x86 ?) | ||
| 276 | * Statistics done through async_icount - if any more stats are needed, | ||
| 277 | * that's the place to put them or in an arch-dep version of it. | ||
| 278 | * timeout_interrupt and the other fast timeout stuff not ported yet | ||
| 279 | * There be dragons in this 3k+ line driver | ||
| 280 | * | ||
| 281 | * Revision 1.2 2000/11/10 16:50:28 bjornw | ||
| 282 | * First shot at a 2.4 port, does not compile totally yet | ||
| 283 | * | ||
| 284 | * Revision 1.1 2000/11/10 16:47:32 bjornw | ||
| 285 | * Added verbatim copy of rev 1.49 etrax100ser.c from elinux | ||
| 286 | * | ||
| 287 | * Revision 1.49 2000/10/30 15:47:14 tobiasa | ||
| 288 | * Changed version number. | ||
| 289 | * | ||
| 290 | * Revision 1.48 2000/10/25 11:02:43 johana | ||
| 291 | * Changed %ul to %lu in printf's | ||
| 292 | * | ||
| 293 | * Revision 1.47 2000/10/18 15:06:53 pkj | ||
| 294 | * Compile correctly with CONFIG_ETRAX_SERIAL_FLUSH_DMA_FAST and | ||
| 295 | * CONFIG_ETRAX_SERIAL_PROC_ENTRY together. | ||
| 296 | * Some clean-up of the /proc/serial file. | ||
| 297 | * | ||
| 298 | * Revision 1.46 2000/10/16 12:59:40 johana | ||
| 299 | * Added CONFIG_ETRAX_SERIAL_PROC_ENTRY for statistics and debug info. | ||
| 300 | * | ||
| 301 | * Revision 1.45 2000/10/13 17:10:59 pkj | ||
| 302 | * Do not flush DMAs while flipping TTY buffers. | ||
| 303 | * | ||
| 304 | * Revision 1.44 2000/10/13 16:34:29 pkj | ||
| 305 | * Added a delay in ser_interrupt() for 2.3ms when an error is detected. | ||
| 306 | * We do not know why this delay is required yet, but without it the | ||
| 307 | * irmaflash program does not work (this was the program that needed | ||
| 308 | * the ser_interrupt() to be needed in the first place). This should not | ||
| 309 | * affect normal use of the serial ports. | ||
| 310 | * | ||
| 311 | * Revision 1.43 2000/10/13 16:30:44 pkj | ||
| 312 | * New version of the fast flush of serial buffers code. This time | ||
| 313 | * it is localized to the serial driver and uses a fast timer to | ||
| 314 | * do the work. | ||
| 315 | * | ||
| 316 | * Revision 1.42 2000/10/13 14:54:26 bennyo | ||
| 317 | * Fix for switching RTS when using rs485 | ||
| 318 | * | ||
| 319 | * Revision 1.41 2000/10/12 11:43:44 pkj | ||
| 320 | * Cleaned up a number of comments. | ||
| 321 | * | ||
| 322 | * Revision 1.40 2000/10/10 11:58:39 johana | ||
| 323 | * Made RS485 support generic for all ports. | ||
| 324 | * Toggle rts in interrupt if no delay wanted. | ||
| 325 | * WARNING: No true transmitter empty check?? | ||
| 326 | * Set d_wait bit when sending data so interrupt is delayed until | ||
| 327 | * fifo flushed. (Fix tcdrain() problem) | ||
| 328 | * | ||
| 329 | * Revision 1.39 2000/10/04 16:08:02 bjornw | ||
| 330 | * * Use virt_to_phys etc. for DMA addresses | ||
| 331 | * * Removed CONFIG_FLUSH_DMA_FAST hacks | ||
| 332 | * * Indentation fix | ||
| 333 | * | ||
| 334 | * Revision 1.38 2000/10/02 12:27:10 mattias | ||
| 335 | * * added variable used when using fast flush on serial dma. | ||
| 336 | * (CONFIG_FLUSH_DMA_FAST) | ||
| 337 | * | ||
| 338 | * Revision 1.37 2000/09/27 09:44:24 pkj | ||
| 339 | * Uncomment definition of SERIAL_HANDLE_EARLY_ERRORS. | ||
| 340 | * | ||
| 341 | * Revision 1.36 2000/09/20 13:12:52 johana | ||
| 342 | * Support for CONFIG_ETRAX_SERIAL_RX_TIMEOUT_TICKS: | ||
| 343 | * Number of timer ticks between flush of receive fifo (1 tick = 10ms). | ||
| 344 | * Try 0-3 for low latency applications. Approx 5 for high load | ||
| 345 | * applications (e.g. PPP). Maybe this should be more adaptive some day... | ||
| 346 | * | ||
| 347 | * Revision 1.35 2000/09/20 10:36:08 johana | ||
| 348 | * Typo in get_lsr_info() | ||
| 349 | * | ||
| 350 | * Revision 1.34 2000/09/20 10:29:59 johana | ||
| 351 | * Let rs_chars_in_buffer() check fifo content as well. | ||
| 352 | * get_lsr_info() might work now (not tested). | ||
| 353 | * Easier to change the port to debug. | ||
| 354 | * | ||
| 355 | * Revision 1.33 2000/09/13 07:52:11 torbjore | ||
| 356 | * Support RS485 | ||
| 357 | * | ||
| 358 | * Revision 1.32 2000/08/31 14:45:37 bjornw | ||
| 359 | * After sending a break we need to reset the transmit DMA channel | ||
| 360 | * | ||
| 361 | * Revision 1.31 2000/06/21 12:13:29 johana | ||
| 362 | * Fixed wait for all chars sent when closing port. | ||
| 363 | * (Used to always take 1 second!) | ||
| 364 | * Added shadows for directions of status/ctrl signals. | ||
| 365 | * | ||
| 366 | * Revision 1.30 2000/05/29 16:27:55 bjornw | ||
| 367 | * Simulator ifdef moved a bit | ||
| 368 | * | ||
| 369 | * Revision 1.29 2000/05/09 09:40:30 mattias | ||
| 370 | * * Added description of dma registers used in timeout_interrupt | ||
| 371 | * * Removed old code | ||
| 372 | * | ||
| 373 | * Revision 1.28 2000/05/08 16:38:58 mattias | ||
| 374 | * * Bugfix for flushing fifo in timeout_interrupt | ||
| 375 | * Problem occurs when bluetooth stack waits for a small number of bytes | ||
| 376 | * containing an event acknowledging free buffers in bluetooth HW | ||
| 377 | * As before, data was stuck in fifo until more data came on uart and | ||
| 378 | * flushed it up to the stack. | ||
| 379 | * | ||
| 380 | * Revision 1.27 2000/05/02 09:52:28 jonasd | ||
| 381 | * Added fix for peculiar etrax behaviour when eop is forced on an empty | ||
| 382 | * fifo. This is used when flashing the IRMA chip. Disabled by default. | ||
| 383 | * | ||
| 384 | * Revision 1.26 2000/03/29 15:32:02 bjornw | ||
| 385 | * 2.0.34 updates | ||
| 386 | * | ||
| 387 | * Revision 1.25 2000/02/16 16:59:36 bjornw | ||
| 388 | * * Receive DMA directly into the flip-buffer, eliminating an intermediary | ||
| 389 | * receive buffer and a memcpy. Will avoid some overruns. | ||
| 390 | * * Error message on debug port if an overrun or flip buffer overrun occurs. | ||
| 391 | * * Just use the first byte in the flag flip buffer for errors. | ||
| 392 | * * Check for timeout on the serial ports only each 5/100 s, not 1/100. | ||
| 393 | * | ||
| 394 | * Revision 1.24 2000/02/09 18:02:28 bjornw | ||
| 395 | * * Clear serial errors (overrun, framing, parity) correctly. Before, the | ||
| 396 | * receiver would get stuck if an error occurred and we did not restart | ||
| 397 | * the input DMA. | ||
| 398 | * * Cosmetics (indentation, some code made into inlines) | ||
| 399 | * * Some more debug options | ||
| 400 | * * Actually shut down the serial port (DMA irq, DMA reset, receiver stop) | ||
| 401 | * when the last open is closed. Corresponding fixes in startup(). | ||
| 402 | * * rs_close() "tx FIFO wait" code moved into right place, bug & -> && fixed | ||
| 403 | * and make a special case out of port 1 (R_DMA_CHx_STATUS is broken for that) | ||
| 404 | * * e100_disable_rx/enable_rx just disables/enables the receiver, not RTS | ||
| 405 | * | ||
| 406 | * Revision 1.23 2000/01/24 17:46:19 johana | ||
| 407 | * Wait for flush of DMA/FIFO when closing port. | ||
| 408 | * | ||
| 409 | * Revision 1.22 2000/01/20 18:10:23 johana | ||
| 410 | * Added TIOCMGET ioctl to return modem status. | ||
| 411 | * Implemented modem status/control that works with the extra signals | ||
| 412 | * (DTR, DSR, RI,CD) as well. | ||
| 413 | * 3 different modes supported: | ||
| 414 | * ser0 on PB (Bundy), ser1 on PB (Lisa) and ser2 on PA (Bundy) | ||
| 415 | * Fixed DEF_TX value that caused the serial transmitter pin (txd) to go to 0 when | ||
| 416 | * closing the last filehandle, NASTY!. | ||
| 417 | * Added break generation, not tested though! | ||
| 418 | * Use IRQF_SHARED when request_irq() for ser2 and ser3 (shared with) par0 and par1. | ||
| 419 | * You can't use them at the same time (yet..), but you can hopefully switch | ||
| 420 | * between ser2/par0, ser3/par1 with the same kernel config. | ||
| 421 | * Replaced some magic constants with defines | ||
| 422 | * | ||
| 423 | * | ||
| 424 | */ | 8 | */ |
| 425 | 9 | ||
| 426 | static char *serial_version = "$Revision: 1.25 $"; | 10 | static char *serial_version = "$Revision: 1.25 $"; |
| @@ -446,6 +30,7 @@ static char *serial_version = "$Revision: 1.25 $"; | |||
| 446 | 30 | ||
| 447 | #include <asm/io.h> | 31 | #include <asm/io.h> |
| 448 | #include <asm/irq.h> | 32 | #include <asm/irq.h> |
| 33 | #include <asm/dma.h> | ||
| 449 | #include <asm/system.h> | 34 | #include <asm/system.h> |
| 450 | #include <linux/delay.h> | 35 | #include <linux/delay.h> |
| 451 | 36 | ||
| @@ -454,8 +39,9 @@ static char *serial_version = "$Revision: 1.25 $"; | |||
| 454 | /* non-arch dependent serial structures are in linux/serial.h */ | 39 | /* non-arch dependent serial structures are in linux/serial.h */ |
| 455 | #include <linux/serial.h> | 40 | #include <linux/serial.h> |
| 456 | /* while we keep our own stuff (struct e100_serial) in a local .h file */ | 41 | /* while we keep our own stuff (struct e100_serial) in a local .h file */ |
| 457 | #include "serial.h" | 42 | #include "crisv10.h" |
| 458 | #include <asm/fasttimer.h> | 43 | #include <asm/fasttimer.h> |
| 44 | #include <asm/arch/io_interface_mux.h> | ||
| 459 | 45 | ||
| 460 | #ifdef CONFIG_ETRAX_SERIAL_FAST_TIMER | 46 | #ifdef CONFIG_ETRAX_SERIAL_FAST_TIMER |
| 461 | #ifndef CONFIG_ETRAX_FAST_TIMER | 47 | #ifndef CONFIG_ETRAX_FAST_TIMER |
| @@ -504,18 +90,6 @@ struct tty_driver *serial_driver; | |||
| 504 | from eLinux */ | 90 | from eLinux */ |
| 505 | #define SERIAL_HANDLE_EARLY_ERRORS | 91 | #define SERIAL_HANDLE_EARLY_ERRORS |
| 506 | 92 | ||
| 507 | /* Defined and used in n_tty.c, but we need it here as well */ | ||
| 508 | #define TTY_THRESHOLD_THROTTLE 128 | ||
| 509 | |||
| 510 | /* Due to buffersizes and threshold values, our SERIAL_DESCR_BUF_SIZE | ||
| 511 | * must not be to high or flow control won't work if we leave it to the tty | ||
| 512 | * layer so we have our own throttling in flush_to_flip | ||
| 513 | * TTY_FLIPBUF_SIZE=512, | ||
| 514 | * TTY_THRESHOLD_THROTTLE/UNTHROTTLE=128 | ||
| 515 | * BUF_SIZE can't be > 128 | ||
| 516 | */ | ||
| 517 | #define CRIS_BUF_SIZE 512 | ||
| 518 | |||
| 519 | /* Currently 16 descriptors x 128 bytes = 2048 bytes */ | 93 | /* Currently 16 descriptors x 128 bytes = 2048 bytes */ |
| 520 | #define SERIAL_DESCR_BUF_SIZE 256 | 94 | #define SERIAL_DESCR_BUF_SIZE 256 |
| 521 | 95 | ||
| @@ -588,13 +162,13 @@ unsigned long timer_data_to_ns(unsigned long timer_data); | |||
| 588 | static void change_speed(struct e100_serial *info); | 162 | static void change_speed(struct e100_serial *info); |
| 589 | static void rs_throttle(struct tty_struct * tty); | 163 | static void rs_throttle(struct tty_struct * tty); |
| 590 | static void rs_wait_until_sent(struct tty_struct *tty, int timeout); | 164 | static void rs_wait_until_sent(struct tty_struct *tty, int timeout); |
| 591 | static int rs_write(struct tty_struct * tty, int from_user, | 165 | static int rs_write(struct tty_struct *tty, |
| 592 | const unsigned char *buf, int count); | 166 | const unsigned char *buf, int count); |
| 593 | #ifdef CONFIG_ETRAX_RS485 | 167 | #ifdef CONFIG_ETRAX_RS485 |
| 594 | static int e100_write_rs485(struct tty_struct * tty, int from_user, | 168 | static int e100_write_rs485(struct tty_struct *tty, |
| 595 | const unsigned char *buf, int count); | 169 | const unsigned char *buf, int count); |
| 596 | #endif | 170 | #endif |
| 597 | static int get_lsr_info(struct e100_serial * info, unsigned int *value); | 171 | static int get_lsr_info(struct e100_serial *info, unsigned int *value); |
| 598 | 172 | ||
| 599 | 173 | ||
| 600 | #define DEF_BAUD 115200 /* 115.2 kbit/s */ | 174 | #define DEF_BAUD 115200 /* 115.2 kbit/s */ |
| @@ -679,20 +253,39 @@ static struct e100_serial rs_table[] = { | |||
| 679 | .rx_ctrl = DEF_RX, | 253 | .rx_ctrl = DEF_RX, |
| 680 | .tx_ctrl = DEF_TX, | 254 | .tx_ctrl = DEF_TX, |
| 681 | .iseteop = 2, | 255 | .iseteop = 2, |
| 256 | .dma_owner = dma_ser0, | ||
| 257 | .io_if = if_serial_0, | ||
| 682 | #ifdef CONFIG_ETRAX_SERIAL_PORT0 | 258 | #ifdef CONFIG_ETRAX_SERIAL_PORT0 |
| 683 | .enabled = 1, | 259 | .enabled = 1, |
| 684 | #ifdef CONFIG_ETRAX_SERIAL_PORT0_DMA6_OUT | 260 | #ifdef CONFIG_ETRAX_SERIAL_PORT0_DMA6_OUT |
| 685 | .dma_out_enabled = 1, | 261 | .dma_out_enabled = 1, |
| 262 | .dma_out_nbr = SER0_TX_DMA_NBR, | ||
| 263 | .dma_out_irq_nbr = SER0_DMA_TX_IRQ_NBR, | ||
| 264 | .dma_out_irq_flags = IRQF_DISABLED, | ||
| 265 | .dma_out_irq_description = "serial 0 dma tr", | ||
| 686 | #else | 266 | #else |
| 687 | .dma_out_enabled = 0, | 267 | .dma_out_enabled = 0, |
| 268 | .dma_out_nbr = UINT_MAX, | ||
| 269 | .dma_out_irq_nbr = 0, | ||
| 270 | .dma_out_irq_flags = 0, | ||
| 271 | .dma_out_irq_description = NULL, | ||
| 688 | #endif | 272 | #endif |
| 689 | #ifdef CONFIG_ETRAX_SERIAL_PORT0_DMA7_IN | 273 | #ifdef CONFIG_ETRAX_SERIAL_PORT0_DMA7_IN |
| 690 | .dma_in_enabled = 1, | 274 | .dma_in_enabled = 1, |
| 275 | .dma_in_nbr = SER0_RX_DMA_NBR, | ||
| 276 | .dma_in_irq_nbr = SER0_DMA_RX_IRQ_NBR, | ||
| 277 | .dma_in_irq_flags = IRQF_DISABLED, | ||
| 278 | .dma_in_irq_description = "serial 0 dma rec", | ||
| 691 | #else | 279 | #else |
| 692 | .dma_in_enabled = 0 | 280 | .dma_in_enabled = 0, |
| 281 | .dma_in_nbr = UINT_MAX, | ||
| 282 | .dma_in_irq_nbr = 0, | ||
| 283 | .dma_in_irq_flags = 0, | ||
| 284 | .dma_in_irq_description = NULL, | ||
| 693 | #endif | 285 | #endif |
| 694 | #else | 286 | #else |
| 695 | .enabled = 0, | 287 | .enabled = 0, |
| 288 | .io_if_description = NULL, | ||
| 696 | .dma_out_enabled = 0, | 289 | .dma_out_enabled = 0, |
| 697 | .dma_in_enabled = 0 | 290 | .dma_in_enabled = 0 |
| 698 | #endif | 291 | #endif |
| @@ -714,20 +307,42 @@ static struct e100_serial rs_table[] = { | |||
| 714 | .rx_ctrl = DEF_RX, | 307 | .rx_ctrl = DEF_RX, |
| 715 | .tx_ctrl = DEF_TX, | 308 | .tx_ctrl = DEF_TX, |
| 716 | .iseteop = 3, | 309 | .iseteop = 3, |
| 310 | .dma_owner = dma_ser1, | ||
| 311 | .io_if = if_serial_1, | ||
| 717 | #ifdef CONFIG_ETRAX_SERIAL_PORT1 | 312 | #ifdef CONFIG_ETRAX_SERIAL_PORT1 |
| 718 | .enabled = 1, | 313 | .enabled = 1, |
| 314 | .io_if_description = "ser1", | ||
| 719 | #ifdef CONFIG_ETRAX_SERIAL_PORT1_DMA8_OUT | 315 | #ifdef CONFIG_ETRAX_SERIAL_PORT1_DMA8_OUT |
| 720 | .dma_out_enabled = 1, | 316 | .dma_out_enabled = 1, |
| 317 | .dma_out_nbr = SER1_TX_DMA_NBR, | ||
| 318 | .dma_out_irq_nbr = SER1_DMA_TX_IRQ_NBR, | ||
| 319 | .dma_out_irq_flags = IRQF_DISABLED, | ||
| 320 | .dma_out_irq_description = "serial 1 dma tr", | ||
| 721 | #else | 321 | #else |
| 722 | .dma_out_enabled = 0, | 322 | .dma_out_enabled = 0, |
| 323 | .dma_out_nbr = UINT_MAX, | ||
| 324 | .dma_out_irq_nbr = 0, | ||
| 325 | .dma_out_irq_flags = 0, | ||
| 326 | .dma_out_irq_description = NULL, | ||
| 723 | #endif | 327 | #endif |
| 724 | #ifdef CONFIG_ETRAX_SERIAL_PORT1_DMA9_IN | 328 | #ifdef CONFIG_ETRAX_SERIAL_PORT1_DMA9_IN |
| 725 | .dma_in_enabled = 1, | 329 | .dma_in_enabled = 1, |
| 330 | .dma_in_nbr = SER1_RX_DMA_NBR, | ||
| 331 | .dma_in_irq_nbr = SER1_DMA_RX_IRQ_NBR, | ||
| 332 | .dma_in_irq_flags = IRQF_DISABLED, | ||
| 333 | .dma_in_irq_description = "serial 1 dma rec", | ||
| 726 | #else | 334 | #else |
| 727 | .dma_in_enabled = 0 | 335 | .dma_in_enabled = 0, |
| 336 | .dma_in_enabled = 0, | ||
| 337 | .dma_in_nbr = UINT_MAX, | ||
| 338 | .dma_in_irq_nbr = 0, | ||
| 339 | .dma_in_irq_flags = 0, | ||
| 340 | .dma_in_irq_description = NULL, | ||
| 728 | #endif | 341 | #endif |
| 729 | #else | 342 | #else |
| 730 | .enabled = 0, | 343 | .enabled = 0, |
| 344 | .io_if_description = NULL, | ||
| 345 | .dma_in_irq_nbr = 0, | ||
| 731 | .dma_out_enabled = 0, | 346 | .dma_out_enabled = 0, |
| 732 | .dma_in_enabled = 0 | 347 | .dma_in_enabled = 0 |
| 733 | #endif | 348 | #endif |
| @@ -748,20 +363,40 @@ static struct e100_serial rs_table[] = { | |||
| 748 | .rx_ctrl = DEF_RX, | 363 | .rx_ctrl = DEF_RX, |
| 749 | .tx_ctrl = DEF_TX, | 364 | .tx_ctrl = DEF_TX, |
| 750 | .iseteop = 0, | 365 | .iseteop = 0, |
| 366 | .dma_owner = dma_ser2, | ||
| 367 | .io_if = if_serial_2, | ||
| 751 | #ifdef CONFIG_ETRAX_SERIAL_PORT2 | 368 | #ifdef CONFIG_ETRAX_SERIAL_PORT2 |
| 752 | .enabled = 1, | 369 | .enabled = 1, |
| 370 | .io_if_description = "ser2", | ||
| 753 | #ifdef CONFIG_ETRAX_SERIAL_PORT2_DMA2_OUT | 371 | #ifdef CONFIG_ETRAX_SERIAL_PORT2_DMA2_OUT |
| 754 | .dma_out_enabled = 1, | 372 | .dma_out_enabled = 1, |
| 373 | .dma_out_nbr = SER2_TX_DMA_NBR, | ||
| 374 | .dma_out_irq_nbr = SER2_DMA_TX_IRQ_NBR, | ||
| 375 | .dma_out_irq_flags = IRQF_DISABLED, | ||
| 376 | .dma_out_irq_description = "serial 2 dma tr", | ||
| 755 | #else | 377 | #else |
| 756 | .dma_out_enabled = 0, | 378 | .dma_out_enabled = 0, |
| 379 | .dma_out_nbr = UINT_MAX, | ||
| 380 | .dma_out_irq_nbr = 0, | ||
| 381 | .dma_out_irq_flags = 0, | ||
| 382 | .dma_out_irq_description = NULL, | ||
| 757 | #endif | 383 | #endif |
| 758 | #ifdef CONFIG_ETRAX_SERIAL_PORT2_DMA3_IN | 384 | #ifdef CONFIG_ETRAX_SERIAL_PORT2_DMA3_IN |
| 759 | .dma_in_enabled = 1, | 385 | .dma_in_enabled = 1, |
| 386 | .dma_in_nbr = SER2_RX_DMA_NBR, | ||
| 387 | .dma_in_irq_nbr = SER2_DMA_RX_IRQ_NBR, | ||
| 388 | .dma_in_irq_flags = IRQF_DISABLED, | ||
| 389 | .dma_in_irq_description = "serial 2 dma rec", | ||
| 760 | #else | 390 | #else |
| 761 | .dma_in_enabled = 0 | 391 | .dma_in_enabled = 0, |
| 392 | .dma_in_nbr = UINT_MAX, | ||
| 393 | .dma_in_irq_nbr = 0, | ||
| 394 | .dma_in_irq_flags = 0, | ||
| 395 | .dma_in_irq_description = NULL, | ||
| 762 | #endif | 396 | #endif |
| 763 | #else | 397 | #else |
| 764 | .enabled = 0, | 398 | .enabled = 0, |
| 399 | .io_if_description = NULL, | ||
| 765 | .dma_out_enabled = 0, | 400 | .dma_out_enabled = 0, |
| 766 | .dma_in_enabled = 0 | 401 | .dma_in_enabled = 0 |
| 767 | #endif | 402 | #endif |
| @@ -782,20 +417,40 @@ static struct e100_serial rs_table[] = { | |||
| 782 | .rx_ctrl = DEF_RX, | 417 | .rx_ctrl = DEF_RX, |
| 783 | .tx_ctrl = DEF_TX, | 418 | .tx_ctrl = DEF_TX, |
| 784 | .iseteop = 1, | 419 | .iseteop = 1, |
| 420 | .dma_owner = dma_ser3, | ||
| 421 | .io_if = if_serial_3, | ||
| 785 | #ifdef CONFIG_ETRAX_SERIAL_PORT3 | 422 | #ifdef CONFIG_ETRAX_SERIAL_PORT3 |
| 786 | .enabled = 1, | 423 | .enabled = 1, |
| 424 | .io_if_description = "ser3", | ||
| 787 | #ifdef CONFIG_ETRAX_SERIAL_PORT3_DMA4_OUT | 425 | #ifdef CONFIG_ETRAX_SERIAL_PORT3_DMA4_OUT |
| 788 | .dma_out_enabled = 1, | 426 | .dma_out_enabled = 1, |
| 427 | .dma_out_nbr = SER3_TX_DMA_NBR, | ||
| 428 | .dma_out_irq_nbr = SER3_DMA_TX_IRQ_NBR, | ||
| 429 | .dma_out_irq_flags = IRQF_DISABLED, | ||
| 430 | .dma_out_irq_description = "serial 3 dma tr", | ||
| 789 | #else | 431 | #else |
| 790 | .dma_out_enabled = 0, | 432 | .dma_out_enabled = 0, |
| 433 | .dma_out_nbr = UINT_MAX, | ||
| 434 | .dma_out_irq_nbr = 0, | ||
| 435 | .dma_out_irq_flags = 0, | ||
| 436 | .dma_out_irq_description = NULL, | ||
| 791 | #endif | 437 | #endif |
| 792 | #ifdef CONFIG_ETRAX_SERIAL_PORT3_DMA5_IN | 438 | #ifdef CONFIG_ETRAX_SERIAL_PORT3_DMA5_IN |
| 793 | .dma_in_enabled = 1, | 439 | .dma_in_enabled = 1, |
| 440 | .dma_in_nbr = SER3_RX_DMA_NBR, | ||
| 441 | .dma_in_irq_nbr = SER3_DMA_RX_IRQ_NBR, | ||
| 442 | .dma_in_irq_flags = IRQF_DISABLED, | ||
| 443 | .dma_in_irq_description = "serial 3 dma rec", | ||
| 794 | #else | 444 | #else |
| 795 | .dma_in_enabled = 0 | 445 | .dma_in_enabled = 0, |
| 446 | .dma_in_nbr = UINT_MAX, | ||
| 447 | .dma_in_irq_nbr = 0, | ||
| 448 | .dma_in_irq_flags = 0, | ||
| 449 | .dma_in_irq_description = NULL | ||
| 796 | #endif | 450 | #endif |
| 797 | #else | 451 | #else |
| 798 | .enabled = 0, | 452 | .enabled = 0, |
| 453 | .io_if_description = NULL, | ||
| 799 | .dma_out_enabled = 0, | 454 | .dma_out_enabled = 0, |
| 800 | .dma_in_enabled = 0 | 455 | .dma_in_enabled = 0 |
| 801 | #endif | 456 | #endif |
| @@ -1416,12 +1071,11 @@ e100_dtr(struct e100_serial *info, int set) | |||
| 1416 | { | 1071 | { |
| 1417 | unsigned long flags; | 1072 | unsigned long flags; |
| 1418 | 1073 | ||
| 1419 | save_flags(flags); | 1074 | local_irq_save(flags); |
| 1420 | cli(); | ||
| 1421 | *e100_modem_pins[info->line].dtr_shadow &= ~mask; | 1075 | *e100_modem_pins[info->line].dtr_shadow &= ~mask; |
| 1422 | *e100_modem_pins[info->line].dtr_shadow |= (set ? 0 : mask); | 1076 | *e100_modem_pins[info->line].dtr_shadow |= (set ? 0 : mask); |
| 1423 | *e100_modem_pins[info->line].dtr_port = *e100_modem_pins[info->line].dtr_shadow; | 1077 | *e100_modem_pins[info->line].dtr_port = *e100_modem_pins[info->line].dtr_shadow; |
| 1424 | restore_flags(flags); | 1078 | local_irq_restore(flags); |
| 1425 | } | 1079 | } |
| 1426 | 1080 | ||
| 1427 | #ifdef SERIAL_DEBUG_IO | 1081 | #ifdef SERIAL_DEBUG_IO |
| @@ -1440,12 +1094,11 @@ e100_rts(struct e100_serial *info, int set) | |||
| 1440 | { | 1094 | { |
| 1441 | #ifndef CONFIG_SVINTO_SIM | 1095 | #ifndef CONFIG_SVINTO_SIM |
| 1442 | unsigned long flags; | 1096 | unsigned long flags; |
| 1443 | save_flags(flags); | 1097 | local_irq_save(flags); |
| 1444 | cli(); | ||
| 1445 | info->rx_ctrl &= ~E100_RTS_MASK; | 1098 | info->rx_ctrl &= ~E100_RTS_MASK; |
| 1446 | info->rx_ctrl |= (set ? 0 : E100_RTS_MASK); /* RTS is active low */ | 1099 | info->rx_ctrl |= (set ? 0 : E100_RTS_MASK); /* RTS is active low */ |
| 1447 | info->port[REG_REC_CTRL] = info->rx_ctrl; | 1100 | info->port[REG_REC_CTRL] = info->rx_ctrl; |
| 1448 | restore_flags(flags); | 1101 | local_irq_restore(flags); |
| 1449 | #ifdef SERIAL_DEBUG_IO | 1102 | #ifdef SERIAL_DEBUG_IO |
| 1450 | printk("ser%i rts %i\n", info->line, set); | 1103 | printk("ser%i rts %i\n", info->line, set); |
| 1451 | #endif | 1104 | #endif |
| @@ -1463,12 +1116,11 @@ e100_ri_out(struct e100_serial *info, int set) | |||
| 1463 | unsigned char mask = e100_modem_pins[info->line].ri_mask; | 1116 | unsigned char mask = e100_modem_pins[info->line].ri_mask; |
| 1464 | unsigned long flags; | 1117 | unsigned long flags; |
| 1465 | 1118 | ||
| 1466 | save_flags(flags); | 1119 | local_irq_save(flags); |
| 1467 | cli(); | ||
| 1468 | *e100_modem_pins[info->line].ri_shadow &= ~mask; | 1120 | *e100_modem_pins[info->line].ri_shadow &= ~mask; |
| 1469 | *e100_modem_pins[info->line].ri_shadow |= (set ? 0 : mask); | 1121 | *e100_modem_pins[info->line].ri_shadow |= (set ? 0 : mask); |
| 1470 | *e100_modem_pins[info->line].ri_port = *e100_modem_pins[info->line].ri_shadow; | 1122 | *e100_modem_pins[info->line].ri_port = *e100_modem_pins[info->line].ri_shadow; |
| 1471 | restore_flags(flags); | 1123 | local_irq_restore(flags); |
| 1472 | } | 1124 | } |
| 1473 | #endif | 1125 | #endif |
| 1474 | } | 1126 | } |
| @@ -1481,12 +1133,11 @@ e100_cd_out(struct e100_serial *info, int set) | |||
| 1481 | unsigned char mask = e100_modem_pins[info->line].cd_mask; | 1133 | unsigned char mask = e100_modem_pins[info->line].cd_mask; |
| 1482 | unsigned long flags; | 1134 | unsigned long flags; |
| 1483 | 1135 | ||
| 1484 | save_flags(flags); | 1136 | local_irq_save(flags); |
| 1485 | cli(); | ||
| 1486 | *e100_modem_pins[info->line].cd_shadow &= ~mask; | 1137 | *e100_modem_pins[info->line].cd_shadow &= ~mask; |
| 1487 | *e100_modem_pins[info->line].cd_shadow |= (set ? 0 : mask); | 1138 | *e100_modem_pins[info->line].cd_shadow |= (set ? 0 : mask); |
| 1488 | *e100_modem_pins[info->line].cd_port = *e100_modem_pins[info->line].cd_shadow; | 1139 | *e100_modem_pins[info->line].cd_port = *e100_modem_pins[info->line].cd_shadow; |
| 1489 | restore_flags(flags); | 1140 | local_irq_restore(flags); |
| 1490 | } | 1141 | } |
| 1491 | #endif | 1142 | #endif |
| 1492 | } | 1143 | } |
| @@ -1560,8 +1211,7 @@ static void e100_disable_txdma_channel(struct e100_serial *info) | |||
| 1560 | /* Disable output DMA channel for the serial port in question | 1211 | /* Disable output DMA channel for the serial port in question |
| 1561 | * ( set to something other then serialX) | 1212 | * ( set to something other then serialX) |
| 1562 | */ | 1213 | */ |
| 1563 | save_flags(flags); | 1214 | local_irq_save(flags); |
| 1564 | cli(); | ||
| 1565 | DFLOW(DEBUG_LOG(info->line, "disable_txdma_channel %i\n", info->line)); | 1215 | DFLOW(DEBUG_LOG(info->line, "disable_txdma_channel %i\n", info->line)); |
| 1566 | if (info->line == 0) { | 1216 | if (info->line == 0) { |
| 1567 | if ((genconfig_shadow & IO_MASK(R_GEN_CONFIG, dma6)) == | 1217 | if ((genconfig_shadow & IO_MASK(R_GEN_CONFIG, dma6)) == |
| @@ -1589,7 +1239,7 @@ static void e100_disable_txdma_channel(struct e100_serial *info) | |||
| 1589 | } | 1239 | } |
| 1590 | } | 1240 | } |
| 1591 | *R_GEN_CONFIG = genconfig_shadow; | 1241 | *R_GEN_CONFIG = genconfig_shadow; |
| 1592 | restore_flags(flags); | 1242 | local_irq_restore(flags); |
| 1593 | } | 1243 | } |
| 1594 | 1244 | ||
| 1595 | 1245 | ||
| @@ -1597,8 +1247,7 @@ static void e100_enable_txdma_channel(struct e100_serial *info) | |||
| 1597 | { | 1247 | { |
| 1598 | unsigned long flags; | 1248 | unsigned long flags; |
| 1599 | 1249 | ||
| 1600 | save_flags(flags); | 1250 | local_irq_save(flags); |
| 1601 | cli(); | ||
| 1602 | DFLOW(DEBUG_LOG(info->line, "enable_txdma_channel %i\n", info->line)); | 1251 | DFLOW(DEBUG_LOG(info->line, "enable_txdma_channel %i\n", info->line)); |
| 1603 | /* Enable output DMA channel for the serial port in question */ | 1252 | /* Enable output DMA channel for the serial port in question */ |
| 1604 | if (info->line == 0) { | 1253 | if (info->line == 0) { |
| @@ -1615,7 +1264,7 @@ static void e100_enable_txdma_channel(struct e100_serial *info) | |||
| 1615 | genconfig_shadow |= IO_STATE(R_GEN_CONFIG, dma4, serial3); | 1264 | genconfig_shadow |= IO_STATE(R_GEN_CONFIG, dma4, serial3); |
| 1616 | } | 1265 | } |
| 1617 | *R_GEN_CONFIG = genconfig_shadow; | 1266 | *R_GEN_CONFIG = genconfig_shadow; |
| 1618 | restore_flags(flags); | 1267 | local_irq_restore(flags); |
| 1619 | } | 1268 | } |
| 1620 | 1269 | ||
| 1621 | static void e100_disable_rxdma_channel(struct e100_serial *info) | 1270 | static void e100_disable_rxdma_channel(struct e100_serial *info) |
| @@ -1625,8 +1274,7 @@ static void e100_disable_rxdma_channel(struct e100_serial *info) | |||
| 1625 | /* Disable input DMA channel for the serial port in question | 1274 | /* Disable input DMA channel for the serial port in question |
| 1626 | * ( set to something other then serialX) | 1275 | * ( set to something other then serialX) |
| 1627 | */ | 1276 | */ |
| 1628 | save_flags(flags); | 1277 | local_irq_save(flags); |
| 1629 | cli(); | ||
| 1630 | if (info->line == 0) { | 1278 | if (info->line == 0) { |
| 1631 | if ((genconfig_shadow & IO_MASK(R_GEN_CONFIG, dma7)) == | 1279 | if ((genconfig_shadow & IO_MASK(R_GEN_CONFIG, dma7)) == |
| 1632 | IO_STATE(R_GEN_CONFIG, dma7, serial0)) { | 1280 | IO_STATE(R_GEN_CONFIG, dma7, serial0)) { |
| @@ -1653,7 +1301,7 @@ static void e100_disable_rxdma_channel(struct e100_serial *info) | |||
| 1653 | } | 1301 | } |
| 1654 | } | 1302 | } |
| 1655 | *R_GEN_CONFIG = genconfig_shadow; | 1303 | *R_GEN_CONFIG = genconfig_shadow; |
| 1656 | restore_flags(flags); | 1304 | local_irq_restore(flags); |
| 1657 | } | 1305 | } |
| 1658 | 1306 | ||
| 1659 | 1307 | ||
| @@ -1661,8 +1309,7 @@ static void e100_enable_rxdma_channel(struct e100_serial *info) | |||
| 1661 | { | 1309 | { |
| 1662 | unsigned long flags; | 1310 | unsigned long flags; |
| 1663 | 1311 | ||
| 1664 | save_flags(flags); | 1312 | local_irq_save(flags); |
| 1665 | cli(); | ||
| 1666 | /* Enable input DMA channel for the serial port in question */ | 1313 | /* Enable input DMA channel for the serial port in question */ |
| 1667 | if (info->line == 0) { | 1314 | if (info->line == 0) { |
| 1668 | genconfig_shadow &= ~IO_MASK(R_GEN_CONFIG, dma7); | 1315 | genconfig_shadow &= ~IO_MASK(R_GEN_CONFIG, dma7); |
| @@ -1678,7 +1325,7 @@ static void e100_enable_rxdma_channel(struct e100_serial *info) | |||
| 1678 | genconfig_shadow |= IO_STATE(R_GEN_CONFIG, dma5, serial3); | 1325 | genconfig_shadow |= IO_STATE(R_GEN_CONFIG, dma5, serial3); |
| 1679 | } | 1326 | } |
| 1680 | *R_GEN_CONFIG = genconfig_shadow; | 1327 | *R_GEN_CONFIG = genconfig_shadow; |
| 1681 | restore_flags(flags); | 1328 | local_irq_restore(flags); |
| 1682 | } | 1329 | } |
| 1683 | 1330 | ||
| 1684 | #ifdef SERIAL_HANDLE_EARLY_ERRORS | 1331 | #ifdef SERIAL_HANDLE_EARLY_ERRORS |
| @@ -1785,7 +1432,7 @@ e100_enable_rs485(struct tty_struct *tty,struct rs485_control *r) | |||
| 1785 | } | 1432 | } |
| 1786 | 1433 | ||
| 1787 | static int | 1434 | static int |
| 1788 | e100_write_rs485(struct tty_struct *tty, int from_user, | 1435 | e100_write_rs485(struct tty_struct *tty, |
| 1789 | const unsigned char *buf, int count) | 1436 | const unsigned char *buf, int count) |
| 1790 | { | 1437 | { |
| 1791 | struct e100_serial * info = (struct e100_serial *)tty->driver_data; | 1438 | struct e100_serial * info = (struct e100_serial *)tty->driver_data; |
| @@ -1798,7 +1445,7 @@ e100_write_rs485(struct tty_struct *tty, int from_user, | |||
| 1798 | */ | 1445 | */ |
| 1799 | info->rs485.enabled = 1; | 1446 | info->rs485.enabled = 1; |
| 1800 | /* rs_write now deals with RS485 if enabled */ | 1447 | /* rs_write now deals with RS485 if enabled */ |
| 1801 | count = rs_write(tty, from_user, buf, count); | 1448 | count = rs_write(tty, buf, count); |
| 1802 | info->rs485.enabled = old_enabled; | 1449 | info->rs485.enabled = old_enabled; |
| 1803 | return count; | 1450 | return count; |
| 1804 | } | 1451 | } |
| @@ -1836,7 +1483,7 @@ rs_stop(struct tty_struct *tty) | |||
| 1836 | unsigned long flags; | 1483 | unsigned long flags; |
| 1837 | unsigned long xoff; | 1484 | unsigned long xoff; |
| 1838 | 1485 | ||
| 1839 | save_flags(flags); cli(); | 1486 | local_irq_save(flags); |
| 1840 | DFLOW(DEBUG_LOG(info->line, "XOFF rs_stop xmit %i\n", | 1487 | DFLOW(DEBUG_LOG(info->line, "XOFF rs_stop xmit %i\n", |
| 1841 | CIRC_CNT(info->xmit.head, | 1488 | CIRC_CNT(info->xmit.head, |
| 1842 | info->xmit.tail,SERIAL_XMIT_SIZE))); | 1489 | info->xmit.tail,SERIAL_XMIT_SIZE))); |
| @@ -1848,7 +1495,7 @@ rs_stop(struct tty_struct *tty) | |||
| 1848 | } | 1495 | } |
| 1849 | 1496 | ||
| 1850 | *((unsigned long *)&info->port[REG_XOFF]) = xoff; | 1497 | *((unsigned long *)&info->port[REG_XOFF]) = xoff; |
| 1851 | restore_flags(flags); | 1498 | local_irq_restore(flags); |
| 1852 | } | 1499 | } |
| 1853 | } | 1500 | } |
| 1854 | 1501 | ||
| @@ -1860,7 +1507,7 @@ rs_start(struct tty_struct *tty) | |||
| 1860 | unsigned long flags; | 1507 | unsigned long flags; |
| 1861 | unsigned long xoff; | 1508 | unsigned long xoff; |
| 1862 | 1509 | ||
| 1863 | save_flags(flags); cli(); | 1510 | local_irq_save(flags); |
| 1864 | DFLOW(DEBUG_LOG(info->line, "XOFF rs_start xmit %i\n", | 1511 | DFLOW(DEBUG_LOG(info->line, "XOFF rs_start xmit %i\n", |
| 1865 | CIRC_CNT(info->xmit.head, | 1512 | CIRC_CNT(info->xmit.head, |
| 1866 | info->xmit.tail,SERIAL_XMIT_SIZE))); | 1513 | info->xmit.tail,SERIAL_XMIT_SIZE))); |
| @@ -1875,7 +1522,7 @@ rs_start(struct tty_struct *tty) | |||
| 1875 | info->xmit.head != info->xmit.tail && info->xmit.buf) | 1522 | info->xmit.head != info->xmit.tail && info->xmit.buf) |
| 1876 | e100_enable_serial_tx_ready_irq(info); | 1523 | e100_enable_serial_tx_ready_irq(info); |
| 1877 | 1524 | ||
| 1878 | restore_flags(flags); | 1525 | local_irq_restore(flags); |
| 1879 | } | 1526 | } |
| 1880 | } | 1527 | } |
| 1881 | 1528 | ||
| @@ -2055,8 +1702,7 @@ static int serial_fast_timer_expired = 0; | |||
| 2055 | static void flush_timeout_function(unsigned long data); | 1702 | static void flush_timeout_function(unsigned long data); |
| 2056 | #define START_FLUSH_FAST_TIMER_TIME(info, string, usec) {\ | 1703 | #define START_FLUSH_FAST_TIMER_TIME(info, string, usec) {\ |
| 2057 | unsigned long timer_flags; \ | 1704 | unsigned long timer_flags; \ |
| 2058 | save_flags(timer_flags); \ | 1705 | local_irq_save(timer_flags); \ |
| 2059 | cli(); \ | ||
| 2060 | if (fast_timers[info->line].function == NULL) { \ | 1706 | if (fast_timers[info->line].function == NULL) { \ |
| 2061 | serial_fast_timer_started++; \ | 1707 | serial_fast_timer_started++; \ |
| 2062 | TIMERD(DEBUG_LOG(info->line, "start_timer %i ", info->line)); \ | 1708 | TIMERD(DEBUG_LOG(info->line, "start_timer %i ", info->line)); \ |
| @@ -2070,7 +1716,7 @@ static void flush_timeout_function(unsigned long data); | |||
| 2070 | else { \ | 1716 | else { \ |
| 2071 | TIMERD(DEBUG_LOG(info->line, "timer %i already running\n", info->line)); \ | 1717 | TIMERD(DEBUG_LOG(info->line, "timer %i already running\n", info->line)); \ |
| 2072 | } \ | 1718 | } \ |
| 2073 | restore_flags(timer_flags); \ | 1719 | local_irq_restore(timer_flags); \ |
| 2074 | } | 1720 | } |
| 2075 | #define START_FLUSH_FAST_TIMER(info, string) START_FLUSH_FAST_TIMER_TIME(info, string, info->flush_time_usec) | 1721 | #define START_FLUSH_FAST_TIMER(info, string) START_FLUSH_FAST_TIMER_TIME(info, string, info->flush_time_usec) |
| 2076 | 1722 | ||
| @@ -2099,8 +1745,7 @@ append_recv_buffer(struct e100_serial *info, struct etrax_recv_buffer *buffer) | |||
| 2099 | { | 1745 | { |
| 2100 | unsigned long flags; | 1746 | unsigned long flags; |
| 2101 | 1747 | ||
| 2102 | save_flags(flags); | 1748 | local_irq_save(flags); |
| 2103 | cli(); | ||
| 2104 | 1749 | ||
| 2105 | if (!info->first_recv_buffer) | 1750 | if (!info->first_recv_buffer) |
| 2106 | info->first_recv_buffer = buffer; | 1751 | info->first_recv_buffer = buffer; |
| @@ -2113,7 +1758,7 @@ append_recv_buffer(struct e100_serial *info, struct etrax_recv_buffer *buffer) | |||
| 2113 | if (info->recv_cnt > info->max_recv_cnt) | 1758 | if (info->recv_cnt > info->max_recv_cnt) |
| 2114 | info->max_recv_cnt = info->recv_cnt; | 1759 | info->max_recv_cnt = info->recv_cnt; |
| 2115 | 1760 | ||
| 2116 | restore_flags(flags); | 1761 | local_irq_restore(flags); |
| 2117 | } | 1762 | } |
| 2118 | 1763 | ||
| 2119 | static int | 1764 | static int |
| @@ -2133,11 +1778,7 @@ add_char_and_flag(struct e100_serial *info, unsigned char data, unsigned char fl | |||
| 2133 | info->icount.rx++; | 1778 | info->icount.rx++; |
| 2134 | } else { | 1779 | } else { |
| 2135 | struct tty_struct *tty = info->tty; | 1780 | struct tty_struct *tty = info->tty; |
| 2136 | *tty->flip.char_buf_ptr = data; | 1781 | tty_insert_flip_char(tty, data, flag); |
| 2137 | *tty->flip.flag_buf_ptr = flag; | ||
| 2138 | tty->flip.flag_buf_ptr++; | ||
| 2139 | tty->flip.char_buf_ptr++; | ||
| 2140 | tty->flip.count++; | ||
| 2141 | info->icount.rx++; | 1782 | info->icount.rx++; |
| 2142 | } | 1783 | } |
| 2143 | 1784 | ||
| @@ -2322,7 +1963,6 @@ start_receive(struct e100_serial *info) | |||
| 2322 | */ | 1963 | */ |
| 2323 | return; | 1964 | return; |
| 2324 | #endif | 1965 | #endif |
| 2325 | info->tty->flip.count = 0; | ||
| 2326 | if (info->uses_dma_in) { | 1966 | if (info->uses_dma_in) { |
| 2327 | /* reset the input dma channel to be sure it works */ | 1967 | /* reset the input dma channel to be sure it works */ |
| 2328 | 1968 | ||
| @@ -2484,32 +2124,20 @@ static void flush_to_flip_buffer(struct e100_serial *info) | |||
| 2484 | { | 2124 | { |
| 2485 | struct tty_struct *tty; | 2125 | struct tty_struct *tty; |
| 2486 | struct etrax_recv_buffer *buffer; | 2126 | struct etrax_recv_buffer *buffer; |
| 2487 | unsigned int length; | ||
| 2488 | unsigned long flags; | 2127 | unsigned long flags; |
| 2489 | int max_flip_size; | ||
| 2490 | |||
| 2491 | if (!info->first_recv_buffer) | ||
| 2492 | return; | ||
| 2493 | 2128 | ||
| 2494 | save_flags(flags); | 2129 | local_irq_save(flags); |
| 2495 | cli(); | 2130 | tty = info->tty; |
| 2496 | 2131 | ||
| 2497 | if (!(tty = info->tty)) { | 2132 | if (!tty) { |
| 2498 | restore_flags(flags); | 2133 | local_irq_restore(flags); |
| 2499 | return; | 2134 | return; |
| 2500 | } | 2135 | } |
| 2501 | 2136 | ||
| 2502 | while ((buffer = info->first_recv_buffer) != NULL) { | 2137 | while ((buffer = info->first_recv_buffer) != NULL) { |
| 2503 | unsigned int count = buffer->length; | 2138 | unsigned int count = buffer->length; |
| 2504 | 2139 | ||
| 2505 | count = tty_buffer_request_room(tty, count); | 2140 | tty_insert_flip_string(tty, buffer->buffer, count); |
| 2506 | if (count == 0) /* Throttle ?? */ | ||
| 2507 | break; | ||
| 2508 | |||
| 2509 | if (count > 1) | ||
| 2510 | tty_insert_flip_strings(tty, buffer->buffer, count - 1); | ||
| 2511 | tty_insert_flip_char(tty, buffer->buffer[count-1], buffer->error); | ||
| 2512 | |||
| 2513 | info->recv_cnt -= count; | 2141 | info->recv_cnt -= count; |
| 2514 | 2142 | ||
| 2515 | if (count == buffer->length) { | 2143 | if (count == buffer->length) { |
| @@ -2525,18 +2153,9 @@ static void flush_to_flip_buffer(struct e100_serial *info) | |||
| 2525 | if (!info->first_recv_buffer) | 2153 | if (!info->first_recv_buffer) |
| 2526 | info->last_recv_buffer = NULL; | 2154 | info->last_recv_buffer = NULL; |
| 2527 | 2155 | ||
| 2528 | restore_flags(flags); | 2156 | local_irq_restore(flags); |
| 2529 | |||
| 2530 | DFLIP( | ||
| 2531 | if (1) { | ||
| 2532 | DEBUG_LOG(info->line, "*** rxtot %i\n", info->icount.rx); | ||
| 2533 | DEBUG_LOG(info->line, "ldisc %lu\n", tty->ldisc.chars_in_buffer(tty)); | ||
| 2534 | DEBUG_LOG(info->line, "room %lu\n", tty->ldisc.receive_room(tty)); | ||
| 2535 | } | ||
| 2536 | 2157 | ||
| 2537 | ); | 2158 | /* This includes a check for low-latency */ |
| 2538 | |||
| 2539 | /* this includes a check for low-latency */ | ||
| 2540 | tty_flip_buffer_push(tty); | 2159 | tty_flip_buffer_push(tty); |
| 2541 | } | 2160 | } |
| 2542 | 2161 | ||
| @@ -2679,21 +2298,7 @@ struct e100_serial * handle_ser_rx_interrupt_no_dma(struct e100_serial *info) | |||
| 2679 | printk("!NO TTY!\n"); | 2298 | printk("!NO TTY!\n"); |
| 2680 | return info; | 2299 | return info; |
| 2681 | } | 2300 | } |
| 2682 | if (tty->flip.count >= CRIS_BUF_SIZE - TTY_THRESHOLD_THROTTLE) { | 2301 | |
| 2683 | /* check TTY_THROTTLED first so it indicates our state */ | ||
| 2684 | if (!test_and_set_bit(TTY_THROTTLED, &tty->flags)) { | ||
| 2685 | DFLOW(DEBUG_LOG(info->line, "rs_throttle flip.count: %i\n", tty->flip.count)); | ||
| 2686 | rs_throttle(tty); | ||
| 2687 | } | ||
| 2688 | } | ||
| 2689 | if (tty->flip.count >= CRIS_BUF_SIZE) { | ||
| 2690 | DEBUG_LOG(info->line, "force FLIP! %i\n", tty->flip.count); | ||
| 2691 | tty->flip.work.func((void *) tty); | ||
| 2692 | if (tty->flip.count >= CRIS_BUF_SIZE) { | ||
| 2693 | DEBUG_LOG(info->line, "FLIP FULL! %i\n", tty->flip.count); | ||
| 2694 | return info; /* if TTY_DONT_FLIP is set */ | ||
| 2695 | } | ||
| 2696 | } | ||
| 2697 | /* Read data and status at the same time */ | 2302 | /* Read data and status at the same time */ |
| 2698 | data_read = *((unsigned long *)&info->port[REG_DATA_STATUS32]); | 2303 | data_read = *((unsigned long *)&info->port[REG_DATA_STATUS32]); |
| 2699 | more_data: | 2304 | more_data: |
| @@ -2746,27 +2351,26 @@ more_data: | |||
| 2746 | DEBUG_LOG(info->line, "EBRK %i\n", info->break_detected_cnt); | 2351 | DEBUG_LOG(info->line, "EBRK %i\n", info->break_detected_cnt); |
| 2747 | info->errorcode = ERRCODE_INSERT_BREAK; | 2352 | info->errorcode = ERRCODE_INSERT_BREAK; |
| 2748 | } else { | 2353 | } else { |
| 2354 | unsigned char data = IO_EXTRACT(R_SERIAL0_READ, | ||
| 2355 | data_in, data_read); | ||
| 2356 | char flag = TTY_NORMAL; | ||
| 2749 | if (info->errorcode == ERRCODE_INSERT_BREAK) { | 2357 | if (info->errorcode == ERRCODE_INSERT_BREAK) { |
| 2750 | info->icount.brk++; | 2358 | struct tty_struct *tty = info->tty; |
| 2751 | *tty->flip.char_buf_ptr = 0; | 2359 | tty_insert_flip_char(tty, 0, flag); |
| 2752 | *tty->flip.flag_buf_ptr = TTY_BREAK; | ||
| 2753 | tty->flip.flag_buf_ptr++; | ||
| 2754 | tty->flip.char_buf_ptr++; | ||
| 2755 | tty->flip.count++; | ||
| 2756 | info->icount.rx++; | 2360 | info->icount.rx++; |
| 2757 | } | 2361 | } |
| 2758 | *tty->flip.char_buf_ptr = IO_EXTRACT(R_SERIAL0_READ, data_in, data_read); | ||
| 2759 | 2362 | ||
| 2760 | if (data_read & IO_MASK(R_SERIAL0_READ, par_err)) { | 2363 | if (data_read & IO_MASK(R_SERIAL0_READ, par_err)) { |
| 2761 | info->icount.parity++; | 2364 | info->icount.parity++; |
| 2762 | *tty->flip.flag_buf_ptr = TTY_PARITY; | 2365 | flag = TTY_PARITY; |
| 2763 | } else if (data_read & IO_MASK(R_SERIAL0_READ, overrun)) { | 2366 | } else if (data_read & IO_MASK(R_SERIAL0_READ, overrun)) { |
| 2764 | info->icount.overrun++; | 2367 | info->icount.overrun++; |
| 2765 | *tty->flip.flag_buf_ptr = TTY_OVERRUN; | 2368 | flag = TTY_OVERRUN; |
| 2766 | } else if (data_read & IO_MASK(R_SERIAL0_READ, framing_err)) { | 2369 | } else if (data_read & IO_MASK(R_SERIAL0_READ, framing_err)) { |
| 2767 | info->icount.frame++; | 2370 | info->icount.frame++; |
| 2768 | *tty->flip.flag_buf_ptr = TTY_FRAME; | 2371 | flag = TTY_FRAME; |
| 2769 | } | 2372 | } |
| 2373 | tty_insert_flip_char(tty, data, flag); | ||
| 2770 | info->errorcode = 0; | 2374 | info->errorcode = 0; |
| 2771 | } | 2375 | } |
| 2772 | info->break_detected_cnt = 0; | 2376 | info->break_detected_cnt = 0; |
| @@ -2782,16 +2386,14 @@ more_data: | |||
| 2782 | log_int(rdpc(), 0, 0); | 2386 | log_int(rdpc(), 0, 0); |
| 2783 | } | 2387 | } |
| 2784 | ); | 2388 | ); |
| 2785 | *tty->flip.char_buf_ptr = IO_EXTRACT(R_SERIAL0_READ, data_in, data_read); | 2389 | tty_insert_flip_char(tty, |
| 2786 | *tty->flip.flag_buf_ptr = 0; | 2390 | IO_EXTRACT(R_SERIAL0_READ, data_in, data_read), |
| 2391 | TTY_NORMAL); | ||
| 2787 | } else { | 2392 | } else { |
| 2788 | DEBUG_LOG(info->line, "ser_rx int but no data_avail %08lX\n", data_read); | 2393 | DEBUG_LOG(info->line, "ser_rx int but no data_avail %08lX\n", data_read); |
| 2789 | } | 2394 | } |
| 2790 | 2395 | ||
| 2791 | 2396 | ||
| 2792 | tty->flip.flag_buf_ptr++; | ||
| 2793 | tty->flip.char_buf_ptr++; | ||
| 2794 | tty->flip.count++; | ||
| 2795 | info->icount.rx++; | 2397 | info->icount.rx++; |
| 2796 | data_read = *((unsigned long *)&info->port[REG_DATA_STATUS32]); | 2398 | data_read = *((unsigned long *)&info->port[REG_DATA_STATUS32]); |
| 2797 | if (data_read & IO_MASK(R_SERIAL0_READ, data_avail)) { | 2399 | if (data_read & IO_MASK(R_SERIAL0_READ, data_avail)) { |
| @@ -2929,7 +2531,7 @@ static void handle_ser_tx_interrupt(struct e100_serial *info) | |||
| 2929 | if (info->x_char) { | 2531 | if (info->x_char) { |
| 2930 | unsigned char rstat; | 2532 | unsigned char rstat; |
| 2931 | DFLOW(DEBUG_LOG(info->line, "tx_int: xchar 0x%02X\n", info->x_char)); | 2533 | DFLOW(DEBUG_LOG(info->line, "tx_int: xchar 0x%02X\n", info->x_char)); |
| 2932 | save_flags(flags); cli(); | 2534 | local_irq_save(flags); |
| 2933 | rstat = info->port[REG_STATUS]; | 2535 | rstat = info->port[REG_STATUS]; |
| 2934 | DFLOW(DEBUG_LOG(info->line, "stat %x\n", rstat)); | 2536 | DFLOW(DEBUG_LOG(info->line, "stat %x\n", rstat)); |
| 2935 | 2537 | ||
| @@ -2938,7 +2540,7 @@ static void handle_ser_tx_interrupt(struct e100_serial *info) | |||
| 2938 | info->x_char = 0; | 2540 | info->x_char = 0; |
| 2939 | /* We must enable since it is disabled in ser_interrupt */ | 2541 | /* We must enable since it is disabled in ser_interrupt */ |
| 2940 | e100_enable_serial_tx_ready_irq(info); | 2542 | e100_enable_serial_tx_ready_irq(info); |
| 2941 | restore_flags(flags); | 2543 | local_irq_restore(flags); |
| 2942 | return; | 2544 | return; |
| 2943 | } | 2545 | } |
| 2944 | if (info->uses_dma_out) { | 2546 | if (info->uses_dma_out) { |
| @@ -2946,7 +2548,7 @@ static void handle_ser_tx_interrupt(struct e100_serial *info) | |||
| 2946 | int i; | 2548 | int i; |
| 2947 | /* We only use normal tx interrupt when sending x_char */ | 2549 | /* We only use normal tx interrupt when sending x_char */ |
| 2948 | DFLOW(DEBUG_LOG(info->line, "tx_int: xchar sent\n", 0)); | 2550 | DFLOW(DEBUG_LOG(info->line, "tx_int: xchar sent\n", 0)); |
| 2949 | save_flags(flags); cli(); | 2551 | local_irq_save(flags); |
| 2950 | rstat = info->port[REG_STATUS]; | 2552 | rstat = info->port[REG_STATUS]; |
| 2951 | DFLOW(DEBUG_LOG(info->line, "stat %x\n", rstat)); | 2553 | DFLOW(DEBUG_LOG(info->line, "stat %x\n", rstat)); |
| 2952 | e100_disable_serial_tx_ready_irq(info); | 2554 | e100_disable_serial_tx_ready_irq(info); |
| @@ -2959,7 +2561,7 @@ static void handle_ser_tx_interrupt(struct e100_serial *info) | |||
| 2959 | nop(); | 2561 | nop(); |
| 2960 | 2562 | ||
| 2961 | *info->ocmdadr = IO_STATE(R_DMA_CH6_CMD, cmd, continue); | 2563 | *info->ocmdadr = IO_STATE(R_DMA_CH6_CMD, cmd, continue); |
| 2962 | restore_flags(flags); | 2564 | local_irq_restore(flags); |
| 2963 | return; | 2565 | return; |
| 2964 | } | 2566 | } |
| 2965 | /* Normal char-by-char interrupt */ | 2567 | /* Normal char-by-char interrupt */ |
| @@ -2973,7 +2575,7 @@ static void handle_ser_tx_interrupt(struct e100_serial *info) | |||
| 2973 | } | 2575 | } |
| 2974 | DINTR2(DEBUG_LOG(info->line, "tx_int %c\n", info->xmit.buf[info->xmit.tail])); | 2576 | DINTR2(DEBUG_LOG(info->line, "tx_int %c\n", info->xmit.buf[info->xmit.tail])); |
| 2975 | /* Send a byte, rs485 timing is critical so turn of ints */ | 2577 | /* Send a byte, rs485 timing is critical so turn of ints */ |
| 2976 | save_flags(flags); cli(); | 2578 | local_irq_save(flags); |
| 2977 | info->port[REG_TR_DATA] = info->xmit.buf[info->xmit.tail]; | 2579 | info->port[REG_TR_DATA] = info->xmit.buf[info->xmit.tail]; |
| 2978 | info->xmit.tail = (info->xmit.tail + 1) & (SERIAL_XMIT_SIZE-1); | 2580 | info->xmit.tail = (info->xmit.tail + 1) & (SERIAL_XMIT_SIZE-1); |
| 2979 | info->icount.tx++; | 2581 | info->icount.tx++; |
| @@ -2997,7 +2599,7 @@ static void handle_ser_tx_interrupt(struct e100_serial *info) | |||
| 2997 | /* We must enable since it is disabled in ser_interrupt */ | 2599 | /* We must enable since it is disabled in ser_interrupt */ |
| 2998 | e100_enable_serial_tx_ready_irq(info); | 2600 | e100_enable_serial_tx_ready_irq(info); |
| 2999 | } | 2601 | } |
| 3000 | restore_flags(flags); | 2602 | local_irq_restore(flags); |
| 3001 | 2603 | ||
| 3002 | if (CIRC_CNT(info->xmit.head, | 2604 | if (CIRC_CNT(info->xmit.head, |
| 3003 | info->xmit.tail, | 2605 | info->xmit.tail, |
| @@ -3022,7 +2624,7 @@ ser_interrupt(int irq, void *dev_id) | |||
| 3022 | int handled = 0; | 2624 | int handled = 0; |
| 3023 | static volatile unsigned long reentered_ready_mask = 0; | 2625 | static volatile unsigned long reentered_ready_mask = 0; |
| 3024 | 2626 | ||
| 3025 | save_flags(flags); cli(); | 2627 | local_irq_save(flags); |
| 3026 | irq_mask1_rd = *R_IRQ_MASK1_RD; | 2628 | irq_mask1_rd = *R_IRQ_MASK1_RD; |
| 3027 | /* First handle all rx interrupts with ints disabled */ | 2629 | /* First handle all rx interrupts with ints disabled */ |
| 3028 | info = rs_table; | 2630 | info = rs_table; |
| @@ -3067,7 +2669,7 @@ ser_interrupt(int irq, void *dev_id) | |||
| 3067 | /* Unblock the serial interrupt */ | 2669 | /* Unblock the serial interrupt */ |
| 3068 | *R_VECT_MASK_SET = IO_STATE(R_VECT_MASK_SET, serial, set); | 2670 | *R_VECT_MASK_SET = IO_STATE(R_VECT_MASK_SET, serial, set); |
| 3069 | 2671 | ||
| 3070 | sti(); | 2672 | local_irq_enable(); |
| 3071 | ready_mask = (1 << (8+1+2*0)); /* ser0 tr_ready */ | 2673 | ready_mask = (1 << (8+1+2*0)); /* ser0 tr_ready */ |
| 3072 | info = rs_table; | 2674 | info = rs_table; |
| 3073 | for (i = 0; i < NR_PORTS; i++) { | 2675 | for (i = 0; i < NR_PORTS; i++) { |
| @@ -3080,11 +2682,11 @@ ser_interrupt(int irq, void *dev_id) | |||
| 3080 | ready_mask <<= 2; | 2682 | ready_mask <<= 2; |
| 3081 | } | 2683 | } |
| 3082 | /* handle_ser_tx_interrupt enables tr_ready interrupts */ | 2684 | /* handle_ser_tx_interrupt enables tr_ready interrupts */ |
| 3083 | cli(); | 2685 | local_irq_disable(); |
| 3084 | /* Handle reentered TX interrupt */ | 2686 | /* Handle reentered TX interrupt */ |
| 3085 | irq_mask1_rd = reentered_ready_mask; | 2687 | irq_mask1_rd = reentered_ready_mask; |
| 3086 | } | 2688 | } |
| 3087 | cli(); | 2689 | local_irq_disable(); |
| 3088 | tx_started = 0; | 2690 | tx_started = 0; |
| 3089 | } else { | 2691 | } else { |
| 3090 | unsigned long ready_mask; | 2692 | unsigned long ready_mask; |
| @@ -3100,7 +2702,7 @@ ser_interrupt(int irq, void *dev_id) | |||
| 3100 | } | 2702 | } |
| 3101 | } | 2703 | } |
| 3102 | 2704 | ||
| 3103 | restore_flags(flags); | 2705 | local_irq_restore(flags); |
| 3104 | return IRQ_RETVAL(handled); | 2706 | return IRQ_RETVAL(handled); |
| 3105 | } /* ser_interrupt */ | 2707 | } /* ser_interrupt */ |
| 3106 | #endif | 2708 | #endif |
| @@ -3121,11 +2723,13 @@ ser_interrupt(int irq, void *dev_id) | |||
| 3121 | * them using rs_sched_event(), and they get done here. | 2723 | * them using rs_sched_event(), and they get done here. |
| 3122 | */ | 2724 | */ |
| 3123 | static void | 2725 | static void |
| 3124 | do_softint(void *private_) | 2726 | do_softint(struct work_struct *work) |
| 3125 | { | 2727 | { |
| 3126 | struct e100_serial *info = (struct e100_serial *) private_; | 2728 | struct e100_serial *info; |
| 3127 | struct tty_struct *tty; | 2729 | struct tty_struct *tty; |
| 3128 | 2730 | ||
| 2731 | info = container_of(work, struct e100_serial, work); | ||
| 2732 | |||
| 3129 | tty = info->tty; | 2733 | tty = info->tty; |
| 3130 | if (!tty) | 2734 | if (!tty) |
| 3131 | return; | 2735 | return; |
| @@ -3145,13 +2749,12 @@ startup(struct e100_serial * info) | |||
| 3145 | if (!xmit_page) | 2749 | if (!xmit_page) |
| 3146 | return -ENOMEM; | 2750 | return -ENOMEM; |
| 3147 | 2751 | ||
| 3148 | save_flags(flags); | 2752 | local_irq_save(flags); |
| 3149 | cli(); | ||
| 3150 | 2753 | ||
| 3151 | /* if it was already initialized, skip this */ | 2754 | /* if it was already initialized, skip this */ |
| 3152 | 2755 | ||
| 3153 | if (info->flags & ASYNC_INITIALIZED) { | 2756 | if (info->flags & ASYNC_INITIALIZED) { |
| 3154 | restore_flags(flags); | 2757 | local_irq_restore(flags); |
| 3155 | free_page(xmit_page); | 2758 | free_page(xmit_page); |
| 3156 | return 0; | 2759 | return 0; |
| 3157 | } | 2760 | } |
| @@ -3277,7 +2880,7 @@ startup(struct e100_serial * info) | |||
| 3277 | 2880 | ||
| 3278 | info->flags |= ASYNC_INITIALIZED; | 2881 | info->flags |= ASYNC_INITIALIZED; |
| 3279 | 2882 | ||
| 3280 | restore_flags(flags); | 2883 | local_irq_restore(flags); |
| 3281 | return 0; | 2884 | return 0; |
| 3282 | } | 2885 | } |
| 3283 | 2886 | ||
| @@ -3328,8 +2931,7 @@ shutdown(struct e100_serial * info) | |||
| 3328 | info->irq); | 2931 | info->irq); |
| 3329 | #endif | 2932 | #endif |
| 3330 | 2933 | ||
| 3331 | save_flags(flags); | 2934 | local_irq_save(flags); |
| 3332 | cli(); /* Disable interrupts */ | ||
| 3333 | 2935 | ||
| 3334 | if (info->xmit.buf) { | 2936 | if (info->xmit.buf) { |
| 3335 | free_page((unsigned long)info->xmit.buf); | 2937 | free_page((unsigned long)info->xmit.buf); |
| @@ -3353,7 +2955,7 @@ shutdown(struct e100_serial * info) | |||
| 3353 | set_bit(TTY_IO_ERROR, &info->tty->flags); | 2955 | set_bit(TTY_IO_ERROR, &info->tty->flags); |
| 3354 | 2956 | ||
| 3355 | info->flags &= ~ASYNC_INITIALIZED; | 2957 | info->flags &= ~ASYNC_INITIALIZED; |
| 3356 | restore_flags(flags); | 2958 | local_irq_restore(flags); |
| 3357 | } | 2959 | } |
| 3358 | 2960 | ||
| 3359 | 2961 | ||
| @@ -3411,7 +3013,6 @@ change_speed(struct e100_serial *info) | |||
| 3411 | DBAUD(printk("using external baudrate: %lu\n", CONFIG_ETRAX_EXTERN_PB6CLK_FREQ/8)); | 3013 | DBAUD(printk("using external baudrate: %lu\n", CONFIG_ETRAX_EXTERN_PB6CLK_FREQ/8)); |
| 3412 | info->baud = CONFIG_ETRAX_EXTERN_PB6CLK_FREQ/8; | 3014 | info->baud = CONFIG_ETRAX_EXTERN_PB6CLK_FREQ/8; |
| 3413 | } | 3015 | } |
| 3414 | } | ||
| 3415 | #endif | 3016 | #endif |
| 3416 | else | 3017 | else |
| 3417 | { | 3018 | { |
| @@ -3445,8 +3046,7 @@ change_speed(struct e100_serial *info) | |||
| 3445 | 3046 | ||
| 3446 | #ifndef CONFIG_SVINTO_SIM | 3047 | #ifndef CONFIG_SVINTO_SIM |
| 3447 | /* start with default settings and then fill in changes */ | 3048 | /* start with default settings and then fill in changes */ |
| 3448 | save_flags(flags); | 3049 | local_irq_save(flags); |
| 3449 | cli(); | ||
| 3450 | /* 8 bit, no/even parity */ | 3050 | /* 8 bit, no/even parity */ |
| 3451 | info->rx_ctrl &= ~(IO_MASK(R_SERIAL0_REC_CTRL, rec_bitnr) | | 3051 | info->rx_ctrl &= ~(IO_MASK(R_SERIAL0_REC_CTRL, rec_bitnr) | |
| 3452 | IO_MASK(R_SERIAL0_REC_CTRL, rec_par_en) | | 3052 | IO_MASK(R_SERIAL0_REC_CTRL, rec_par_en) | |
| @@ -3510,7 +3110,7 @@ change_speed(struct e100_serial *info) | |||
| 3510 | } | 3110 | } |
| 3511 | 3111 | ||
| 3512 | *((unsigned long *)&info->port[REG_XOFF]) = xoff; | 3112 | *((unsigned long *)&info->port[REG_XOFF]) = xoff; |
| 3513 | restore_flags(flags); | 3113 | local_irq_restore(flags); |
| 3514 | #endif /* !CONFIG_SVINTO_SIM */ | 3114 | #endif /* !CONFIG_SVINTO_SIM */ |
| 3515 | 3115 | ||
| 3516 | update_char_time(info); | 3116 | update_char_time(info); |
| @@ -3538,13 +3138,12 @@ rs_flush_chars(struct tty_struct *tty) | |||
| 3538 | 3138 | ||
| 3539 | /* this protection might not exactly be necessary here */ | 3139 | /* this protection might not exactly be necessary here */ |
| 3540 | 3140 | ||
| 3541 | save_flags(flags); | 3141 | local_irq_save(flags); |
| 3542 | cli(); | ||
| 3543 | start_transmit(info); | 3142 | start_transmit(info); |
| 3544 | restore_flags(flags); | 3143 | local_irq_restore(flags); |
| 3545 | } | 3144 | } |
| 3546 | 3145 | ||
| 3547 | static int rs_raw_write(struct tty_struct * tty, int from_user, | 3146 | static int rs_raw_write(struct tty_struct *tty, |
| 3548 | const unsigned char *buf, int count) | 3147 | const unsigned char *buf, int count) |
| 3549 | { | 3148 | { |
| 3550 | int c, ret = 0; | 3149 | int c, ret = 0; |
| @@ -3567,53 +3166,19 @@ static int rs_raw_write(struct tty_struct * tty, int from_user, | |||
| 3567 | SIMCOUT(buf, count); | 3166 | SIMCOUT(buf, count); |
| 3568 | return count; | 3167 | return count; |
| 3569 | #endif | 3168 | #endif |
| 3570 | save_flags(flags); | 3169 | local_save_flags(flags); |
| 3571 | DFLOW(DEBUG_LOG(info->line, "write count %i ", count)); | 3170 | DFLOW(DEBUG_LOG(info->line, "write count %i ", count)); |
| 3572 | DFLOW(DEBUG_LOG(info->line, "ldisc %i\n", tty->ldisc.chars_in_buffer(tty))); | 3171 | DFLOW(DEBUG_LOG(info->line, "ldisc %i\n", tty->ldisc.chars_in_buffer(tty))); |
| 3573 | 3172 | ||
| 3574 | 3173 | ||
| 3575 | /* the cli/restore_flags pairs below are needed because the | 3174 | /* The local_irq_disable/restore_flags pairs below are needed |
| 3576 | * DMA interrupt handler moves the info->xmit values. the memcpy | 3175 | * because the DMA interrupt handler moves the info->xmit values. |
| 3577 | * needs to be in the critical region unfortunately, because we | 3176 | * the memcpy needs to be in the critical region unfortunately, |
| 3578 | * need to read xmit values, memcpy, write xmit values in one | 3177 | * because we need to read xmit values, memcpy, write xmit values |
| 3579 | * atomic operation... this could perhaps be avoided by more clever | 3178 | * in one atomic operation... this could perhaps be avoided by |
| 3580 | * design. | 3179 | * more clever design. |
| 3581 | */ | 3180 | */ |
| 3582 | if (from_user) { | 3181 | local_irq_disable(); |
| 3583 | mutex_lock(&tmp_buf_mutex); | ||
| 3584 | while (1) { | ||
| 3585 | int c1; | ||
| 3586 | c = CIRC_SPACE_TO_END(info->xmit.head, | ||
| 3587 | info->xmit.tail, | ||
| 3588 | SERIAL_XMIT_SIZE); | ||
| 3589 | if (count < c) | ||
| 3590 | c = count; | ||
| 3591 | if (c <= 0) | ||
| 3592 | break; | ||
| 3593 | |||
| 3594 | c -= copy_from_user(tmp_buf, buf, c); | ||
| 3595 | if (!c) { | ||
| 3596 | if (!ret) | ||
| 3597 | ret = -EFAULT; | ||
| 3598 | break; | ||
| 3599 | } | ||
| 3600 | cli(); | ||
| 3601 | c1 = CIRC_SPACE_TO_END(info->xmit.head, | ||
| 3602 | info->xmit.tail, | ||
| 3603 | SERIAL_XMIT_SIZE); | ||
| 3604 | if (c1 < c) | ||
| 3605 | c = c1; | ||
| 3606 | memcpy(info->xmit.buf + info->xmit.head, tmp_buf, c); | ||
| 3607 | info->xmit.head = ((info->xmit.head + c) & | ||
| 3608 | (SERIAL_XMIT_SIZE-1)); | ||
| 3609 | restore_flags(flags); | ||
| 3610 | buf += c; | ||
| 3611 | count -= c; | ||
| 3612 | ret += c; | ||
| 3613 | } | ||
| 3614 | mutex_unlock(&tmp_buf_mutex); | ||
| 3615 | } else { | ||
| 3616 | cli(); | ||
| 3617 | while (count) { | 3182 | while (count) { |
| 3618 | c = CIRC_SPACE_TO_END(info->xmit.head, | 3183 | c = CIRC_SPACE_TO_END(info->xmit.head, |
| 3619 | info->xmit.tail, | 3184 | info->xmit.tail, |
| @@ -3631,8 +3196,7 @@ static int rs_raw_write(struct tty_struct * tty, int from_user, | |||
| 3631 | count -= c; | 3196 | count -= c; |
| 3632 | ret += c; | 3197 | ret += c; |
| 3633 | } | 3198 | } |
| 3634 | restore_flags(flags); | 3199 | local_irq_restore(flags); |
| 3635 | } | ||
| 3636 | 3200 | ||
| 3637 | /* enable transmitter if not running, unless the tty is stopped | 3201 | /* enable transmitter if not running, unless the tty is stopped |
| 3638 | * this does not need IRQ protection since if tr_running == 0 | 3202 | * this does not need IRQ protection since if tr_running == 0 |
| @@ -3651,7 +3215,7 @@ static int rs_raw_write(struct tty_struct * tty, int from_user, | |||
| 3651 | } /* raw_raw_write() */ | 3215 | } /* raw_raw_write() */ |
| 3652 | 3216 | ||
| 3653 | static int | 3217 | static int |
| 3654 | rs_write(struct tty_struct * tty, int from_user, | 3218 | rs_write(struct tty_struct *tty, |
| 3655 | const unsigned char *buf, int count) | 3219 | const unsigned char *buf, int count) |
| 3656 | { | 3220 | { |
| 3657 | #if defined(CONFIG_ETRAX_RS485) | 3221 | #if defined(CONFIG_ETRAX_RS485) |
| @@ -3678,7 +3242,7 @@ rs_write(struct tty_struct * tty, int from_user, | |||
| 3678 | } | 3242 | } |
| 3679 | #endif /* CONFIG_ETRAX_RS485 */ | 3243 | #endif /* CONFIG_ETRAX_RS485 */ |
| 3680 | 3244 | ||
| 3681 | count = rs_raw_write(tty, from_user, buf, count); | 3245 | count = rs_raw_write(tty, buf, count); |
| 3682 | 3246 | ||
| 3683 | #if defined(CONFIG_ETRAX_RS485) | 3247 | #if defined(CONFIG_ETRAX_RS485) |
| 3684 | if (info->rs485.enabled) | 3248 | if (info->rs485.enabled) |
| @@ -3746,10 +3310,9 @@ rs_flush_buffer(struct tty_struct *tty) | |||
| 3746 | struct e100_serial *info = (struct e100_serial *)tty->driver_data; | 3310 | struct e100_serial *info = (struct e100_serial *)tty->driver_data; |
| 3747 | unsigned long flags; | 3311 | unsigned long flags; |
| 3748 | 3312 | ||
| 3749 | save_flags(flags); | 3313 | local_irq_save(flags); |
| 3750 | cli(); | ||
| 3751 | info->xmit.head = info->xmit.tail = 0; | 3314 | info->xmit.head = info->xmit.tail = 0; |
| 3752 | restore_flags(flags); | 3315 | local_irq_restore(flags); |
| 3753 | 3316 | ||
| 3754 | tty_wakeup(tty); | 3317 | tty_wakeup(tty); |
| 3755 | } | 3318 | } |
| @@ -3767,7 +3330,7 @@ static void rs_send_xchar(struct tty_struct *tty, char ch) | |||
| 3767 | { | 3330 | { |
| 3768 | struct e100_serial *info = (struct e100_serial *)tty->driver_data; | 3331 | struct e100_serial *info = (struct e100_serial *)tty->driver_data; |
| 3769 | unsigned long flags; | 3332 | unsigned long flags; |
| 3770 | save_flags(flags); cli(); | 3333 | local_irq_save(flags); |
| 3771 | if (info->uses_dma_out) { | 3334 | if (info->uses_dma_out) { |
| 3772 | /* Put the DMA on hold and disable the channel */ | 3335 | /* Put the DMA on hold and disable the channel */ |
| 3773 | *info->ocmdadr = IO_STATE(R_DMA_CH6_CMD, cmd, hold); | 3336 | *info->ocmdadr = IO_STATE(R_DMA_CH6_CMD, cmd, hold); |
| @@ -3784,7 +3347,7 @@ static void rs_send_xchar(struct tty_struct *tty, char ch) | |||
| 3784 | DFLOW(DEBUG_LOG(info->line, "rs_send_xchar 0x%02X\n", ch)); | 3347 | DFLOW(DEBUG_LOG(info->line, "rs_send_xchar 0x%02X\n", ch)); |
| 3785 | info->x_char = ch; | 3348 | info->x_char = ch; |
| 3786 | e100_enable_serial_tx_ready_irq(info); | 3349 | e100_enable_serial_tx_ready_irq(info); |
| 3787 | restore_flags(flags); | 3350 | local_irq_restore(flags); |
| 3788 | } | 3351 | } |
| 3789 | 3352 | ||
| 3790 | /* | 3353 | /* |
| @@ -3996,21 +3559,61 @@ char *get_control_state_str(int MLines, char *s) | |||
| 3996 | } | 3559 | } |
| 3997 | #endif | 3560 | #endif |
| 3998 | 3561 | ||
| 3562 | static void | ||
| 3563 | rs_break(struct tty_struct *tty, int break_state) | ||
| 3564 | { | ||
| 3565 | struct e100_serial *info = (struct e100_serial *)tty->driver_data; | ||
| 3566 | unsigned long flags; | ||
| 3567 | |||
| 3568 | if (!info->port) | ||
| 3569 | return; | ||
| 3570 | |||
| 3571 | local_irq_save(flags); | ||
| 3572 | if (break_state == -1) { | ||
| 3573 | /* Go to manual mode and set the txd pin to 0 */ | ||
| 3574 | /* Clear bit 7 (txd) and 6 (tr_enable) */ | ||
| 3575 | info->tx_ctrl &= 0x3F; | ||
| 3576 | } else { | ||
| 3577 | /* Set bit 7 (txd) and 6 (tr_enable) */ | ||
| 3578 | info->tx_ctrl |= (0x80 | 0x40); | ||
| 3579 | } | ||
| 3580 | info->port[REG_TR_CTRL] = info->tx_ctrl; | ||
| 3581 | local_irq_restore(flags); | ||
| 3582 | } | ||
| 3583 | |||
| 3999 | static int | 3584 | static int |
| 4000 | get_modem_info(struct e100_serial * info, unsigned int *value) | 3585 | rs_tiocmset(struct tty_struct *tty, struct file *file, |
| 3586 | unsigned int set, unsigned int clear) | ||
| 4001 | { | 3587 | { |
| 4002 | unsigned int result; | 3588 | struct e100_serial *info = (struct e100_serial *)tty->driver_data; |
| 4003 | /* Polarity isn't verified */ | ||
| 4004 | #if 0 /*def SERIAL_DEBUG_IO */ | ||
| 4005 | 3589 | ||
| 4006 | printk("get_modem_info: RTS: %i DTR: %i CD: %i RI: %i DSR: %i CTS: %i\n", | 3590 | if (clear & TIOCM_RTS) |
| 4007 | E100_RTS_GET(info), | 3591 | e100_rts(info, 0); |
| 4008 | E100_DTR_GET(info), | 3592 | if (clear & TIOCM_DTR) |
| 4009 | E100_CD_GET(info), | 3593 | e100_dtr(info, 0); |
| 4010 | E100_RI_GET(info), | 3594 | /* Handle FEMALE behaviour */ |
| 4011 | E100_DSR_GET(info), | 3595 | if (clear & TIOCM_RI) |
| 4012 | E100_CTS_GET(info)); | 3596 | e100_ri_out(info, 0); |
| 4013 | #endif | 3597 | if (clear & TIOCM_CD) |
| 3598 | e100_cd_out(info, 0); | ||
| 3599 | |||
| 3600 | if (set & TIOCM_RTS) | ||
| 3601 | e100_rts(info, 1); | ||
| 3602 | if (set & TIOCM_DTR) | ||
| 3603 | e100_dtr(info, 1); | ||
| 3604 | /* Handle FEMALE behaviour */ | ||
| 3605 | if (set & TIOCM_RI) | ||
| 3606 | e100_ri_out(info, 1); | ||
| 3607 | if (set & TIOCM_CD) | ||
| 3608 | e100_cd_out(info, 1); | ||
| 3609 | return 0; | ||
| 3610 | } | ||
| 3611 | |||
| 3612 | static int | ||
| 3613 | rs_tiocmget(struct tty_struct *tty, struct file *file) | ||
| 3614 | { | ||
| 3615 | struct e100_serial *info = (struct e100_serial *)tty->driver_data; | ||
| 3616 | unsigned int result; | ||
| 4014 | 3617 | ||
| 4015 | result = | 3618 | result = |
| 4016 | (!E100_RTS_GET(info) ? TIOCM_RTS : 0) | 3619 | (!E100_RTS_GET(info) ? TIOCM_RTS : 0) |
| @@ -4021,95 +3624,20 @@ get_modem_info(struct e100_serial * info, unsigned int *value) | |||
| 4021 | | (!E100_CTS_GET(info) ? TIOCM_CTS : 0); | 3624 | | (!E100_CTS_GET(info) ? TIOCM_CTS : 0); |
| 4022 | 3625 | ||
| 4023 | #ifdef SERIAL_DEBUG_IO | 3626 | #ifdef SERIAL_DEBUG_IO |
| 4024 | printk("e100ser: modem state: %i 0x%08X\n", result, result); | 3627 | printk(KERN_DEBUG "ser%i: modem state: %i 0x%08X\n", |
| 3628 | info->line, result, result); | ||
| 4025 | { | 3629 | { |
| 4026 | char s[100]; | 3630 | char s[100]; |
| 4027 | 3631 | ||
| 4028 | get_control_state_str(result, s); | 3632 | get_control_state_str(result, s); |
| 4029 | printk("state: %s\n", s); | 3633 | printk(KERN_DEBUG "state: %s\n", s); |
| 4030 | } | 3634 | } |
| 4031 | #endif | 3635 | #endif |
| 4032 | if (copy_to_user(value, &result, sizeof(int))) | 3636 | return result; |
| 4033 | return -EFAULT; | ||
| 4034 | return 0; | ||
| 4035 | } | ||
| 4036 | 3637 | ||
| 4037 | |||
| 4038 | static int | ||
| 4039 | set_modem_info(struct e100_serial * info, unsigned int cmd, | ||
| 4040 | unsigned int *value) | ||
| 4041 | { | ||
| 4042 | unsigned int arg; | ||
| 4043 | |||
| 4044 | if (copy_from_user(&arg, value, sizeof(int))) | ||
| 4045 | return -EFAULT; | ||
| 4046 | |||
| 4047 | switch (cmd) { | ||
| 4048 | case TIOCMBIS: | ||
| 4049 | if (arg & TIOCM_RTS) { | ||
| 4050 | e100_rts(info, 1); | ||
| 4051 | } | ||
| 4052 | if (arg & TIOCM_DTR) { | ||
| 4053 | e100_dtr(info, 1); | ||
| 4054 | } | ||
| 4055 | /* Handle FEMALE behaviour */ | ||
| 4056 | if (arg & TIOCM_RI) { | ||
| 4057 | e100_ri_out(info, 1); | ||
| 4058 | } | ||
| 4059 | if (arg & TIOCM_CD) { | ||
| 4060 | e100_cd_out(info, 1); | ||
| 4061 | } | ||
| 4062 | break; | ||
| 4063 | case TIOCMBIC: | ||
| 4064 | if (arg & TIOCM_RTS) { | ||
| 4065 | e100_rts(info, 0); | ||
| 4066 | } | ||
| 4067 | if (arg & TIOCM_DTR) { | ||
| 4068 | e100_dtr(info, 0); | ||
| 4069 | } | ||
| 4070 | /* Handle FEMALE behaviour */ | ||
| 4071 | if (arg & TIOCM_RI) { | ||
| 4072 | e100_ri_out(info, 0); | ||
| 4073 | } | ||
| 4074 | if (arg & TIOCM_CD) { | ||
| 4075 | e100_cd_out(info, 0); | ||
| 4076 | } | ||
| 4077 | break; | ||
| 4078 | case TIOCMSET: | ||
| 4079 | e100_rts(info, arg & TIOCM_RTS); | ||
| 4080 | e100_dtr(info, arg & TIOCM_DTR); | ||
| 4081 | /* Handle FEMALE behaviour */ | ||
| 4082 | e100_ri_out(info, arg & TIOCM_RI); | ||
| 4083 | e100_cd_out(info, arg & TIOCM_CD); | ||
| 4084 | break; | ||
| 4085 | default: | ||
| 4086 | return -EINVAL; | ||
| 4087 | } | ||
| 4088 | return 0; | ||
| 4089 | } | 3638 | } |
| 4090 | 3639 | ||
| 4091 | 3640 | ||
| 4092 | static void | ||
| 4093 | rs_break(struct tty_struct *tty, int break_state) | ||
| 4094 | { | ||
| 4095 | struct e100_serial * info = (struct e100_serial *)tty->driver_data; | ||
| 4096 | unsigned long flags; | ||
| 4097 | |||
| 4098 | if (!info->port) | ||
| 4099 | return; | ||
| 4100 | |||
| 4101 | save_flags(flags); | ||
| 4102 | cli(); | ||
| 4103 | if (break_state == -1) { | ||
| 4104 | /* Go to manual mode and set the txd pin to 0 */ | ||
| 4105 | info->tx_ctrl &= 0x3F; /* Clear bit 7 (txd) and 6 (tr_enable) */ | ||
| 4106 | } else { | ||
| 4107 | info->tx_ctrl |= (0x80 | 0x40); /* Set bit 7 (txd) and 6 (tr_enable) */ | ||
| 4108 | } | ||
| 4109 | info->port[REG_TR_CTRL] = info->tx_ctrl; | ||
| 4110 | restore_flags(flags); | ||
| 4111 | } | ||
| 4112 | |||
| 4113 | static int | 3641 | static int |
| 4114 | rs_ioctl(struct tty_struct *tty, struct file * file, | 3642 | rs_ioctl(struct tty_struct *tty, struct file * file, |
| 4115 | unsigned int cmd, unsigned long arg) | 3643 | unsigned int cmd, unsigned long arg) |
| @@ -4124,49 +3652,45 @@ rs_ioctl(struct tty_struct *tty, struct file * file, | |||
| 4124 | } | 3652 | } |
| 4125 | 3653 | ||
| 4126 | switch (cmd) { | 3654 | switch (cmd) { |
| 4127 | case TIOCMGET: | 3655 | case TIOCGSERIAL: |
| 4128 | return get_modem_info(info, (unsigned int *) arg); | 3656 | return get_serial_info(info, |
| 4129 | case TIOCMBIS: | 3657 | (struct serial_struct *) arg); |
| 4130 | case TIOCMBIC: | 3658 | case TIOCSSERIAL: |
| 4131 | case TIOCMSET: | 3659 | return set_serial_info(info, |
| 4132 | return set_modem_info(info, cmd, (unsigned int *) arg); | 3660 | (struct serial_struct *) arg); |
| 4133 | case TIOCGSERIAL: | 3661 | case TIOCSERGETLSR: /* Get line status register */ |
| 4134 | return get_serial_info(info, | 3662 | return get_lsr_info(info, (unsigned int *) arg); |
| 4135 | (struct serial_struct *) arg); | 3663 | |
| 4136 | case TIOCSSERIAL: | 3664 | case TIOCSERGSTRUCT: |
| 4137 | return set_serial_info(info, | 3665 | if (copy_to_user((struct e100_serial *) arg, |
| 4138 | (struct serial_struct *) arg); | 3666 | info, sizeof(struct e100_serial))) |
| 4139 | case TIOCSERGETLSR: /* Get line status register */ | 3667 | return -EFAULT; |
| 4140 | return get_lsr_info(info, (unsigned int *) arg); | 3668 | return 0; |
| 4141 | |||
| 4142 | case TIOCSERGSTRUCT: | ||
| 4143 | if (copy_to_user((struct e100_serial *) arg, | ||
| 4144 | info, sizeof(struct e100_serial))) | ||
| 4145 | return -EFAULT; | ||
| 4146 | return 0; | ||
| 4147 | 3669 | ||
| 4148 | #if defined(CONFIG_ETRAX_RS485) | 3670 | #if defined(CONFIG_ETRAX_RS485) |
| 4149 | case TIOCSERSETRS485: | 3671 | case TIOCSERSETRS485: |
| 4150 | { | 3672 | { |
| 4151 | struct rs485_control rs485ctrl; | 3673 | struct rs485_control rs485ctrl; |
| 4152 | if (copy_from_user(&rs485ctrl, (struct rs485_control*)arg, sizeof(rs485ctrl))) | 3674 | if (copy_from_user(&rs485ctrl, (struct rs485_control *)arg, |
| 4153 | return -EFAULT; | 3675 | sizeof(rs485ctrl))) |
| 3676 | return -EFAULT; | ||
| 4154 | 3677 | ||
| 4155 | return e100_enable_rs485(tty, &rs485ctrl); | 3678 | return e100_enable_rs485(tty, &rs485ctrl); |
| 4156 | } | 3679 | } |
| 4157 | 3680 | ||
| 4158 | case TIOCSERWRRS485: | 3681 | case TIOCSERWRRS485: |
| 4159 | { | 3682 | { |
| 4160 | struct rs485_write rs485wr; | 3683 | struct rs485_write rs485wr; |
| 4161 | if (copy_from_user(&rs485wr, (struct rs485_write*)arg, sizeof(rs485wr))) | 3684 | if (copy_from_user(&rs485wr, (struct rs485_write *)arg, |
| 4162 | return -EFAULT; | 3685 | sizeof(rs485wr))) |
| 3686 | return -EFAULT; | ||
| 4163 | 3687 | ||
| 4164 | return e100_write_rs485(tty, 1, rs485wr.outc, rs485wr.outc_size); | 3688 | return e100_write_rs485(tty, rs485wr.outc, rs485wr.outc_size); |
| 4165 | } | 3689 | } |
| 4166 | #endif | 3690 | #endif |
| 4167 | 3691 | ||
| 4168 | default: | 3692 | default: |
| 4169 | return -ENOIOCTLCMD; | 3693 | return -ENOIOCTLCMD; |
| 4170 | } | 3694 | } |
| 4171 | return 0; | 3695 | return 0; |
| 4172 | } | 3696 | } |
| @@ -4191,46 +3715,6 @@ rs_set_termios(struct tty_struct *tty, struct ktermios *old_termios) | |||
| 4191 | 3715 | ||
| 4192 | } | 3716 | } |
| 4193 | 3717 | ||
| 4194 | /* In debugport.c - register a console write function that uses the normal | ||
| 4195 | * serial driver | ||
| 4196 | */ | ||
| 4197 | typedef int (*debugport_write_function)(int i, const char *buf, unsigned int len); | ||
| 4198 | |||
| 4199 | extern debugport_write_function debug_write_function; | ||
| 4200 | |||
| 4201 | static int rs_debug_write_function(int i, const char *buf, unsigned int len) | ||
| 4202 | { | ||
| 4203 | int cnt; | ||
| 4204 | int written = 0; | ||
| 4205 | struct tty_struct *tty; | ||
| 4206 | static int recurse_cnt = 0; | ||
| 4207 | |||
| 4208 | tty = rs_table[i].tty; | ||
| 4209 | if (tty) { | ||
| 4210 | unsigned long flags; | ||
| 4211 | if (recurse_cnt > 5) /* We skip this debug output */ | ||
| 4212 | return 1; | ||
| 4213 | |||
| 4214 | local_irq_save(flags); | ||
| 4215 | recurse_cnt++; | ||
| 4216 | local_irq_restore(flags); | ||
| 4217 | do { | ||
| 4218 | cnt = rs_write(tty, 0, buf + written, len); | ||
| 4219 | if (cnt >= 0) { | ||
| 4220 | written += cnt; | ||
| 4221 | buf += cnt; | ||
| 4222 | len -= cnt; | ||
| 4223 | } else | ||
| 4224 | len = cnt; | ||
| 4225 | } while(len > 0); | ||
| 4226 | local_irq_save(flags); | ||
| 4227 | recurse_cnt--; | ||
| 4228 | local_irq_restore(flags); | ||
| 4229 | return 1; | ||
| 4230 | } | ||
| 4231 | return 0; | ||
| 4232 | } | ||
| 4233 | |||
| 4234 | /* | 3718 | /* |
| 4235 | * ------------------------------------------------------------ | 3719 | * ------------------------------------------------------------ |
| 4236 | * rs_close() | 3720 | * rs_close() |
| @@ -4252,11 +3736,10 @@ rs_close(struct tty_struct *tty, struct file * filp) | |||
| 4252 | 3736 | ||
| 4253 | /* interrupts are disabled for this entire function */ | 3737 | /* interrupts are disabled for this entire function */ |
| 4254 | 3738 | ||
| 4255 | save_flags(flags); | 3739 | local_irq_save(flags); |
| 4256 | cli(); | ||
| 4257 | 3740 | ||
| 4258 | if (tty_hung_up_p(filp)) { | 3741 | if (tty_hung_up_p(filp)) { |
| 4259 | restore_flags(flags); | 3742 | local_irq_restore(flags); |
| 4260 | return; | 3743 | return; |
| 4261 | } | 3744 | } |
| 4262 | 3745 | ||
| @@ -4283,7 +3766,7 @@ rs_close(struct tty_struct *tty, struct file * filp) | |||
| 4283 | info->count = 0; | 3766 | info->count = 0; |
| 4284 | } | 3767 | } |
| 4285 | if (info->count) { | 3768 | if (info->count) { |
| 4286 | restore_flags(flags); | 3769 | local_irq_restore(flags); |
| 4287 | return; | 3770 | return; |
| 4288 | } | 3771 | } |
| 4289 | info->flags |= ASYNC_CLOSING; | 3772 | info->flags |= ASYNC_CLOSING; |
| @@ -4337,7 +3820,7 @@ rs_close(struct tty_struct *tty, struct file * filp) | |||
| 4337 | } | 3820 | } |
| 4338 | info->flags &= ~(ASYNC_NORMAL_ACTIVE|ASYNC_CLOSING); | 3821 | info->flags &= ~(ASYNC_NORMAL_ACTIVE|ASYNC_CLOSING); |
| 4339 | wake_up_interruptible(&info->close_wait); | 3822 | wake_up_interruptible(&info->close_wait); |
| 4340 | restore_flags(flags); | 3823 | local_irq_restore(flags); |
| 4341 | 3824 | ||
| 4342 | /* port closed */ | 3825 | /* port closed */ |
| 4343 | 3826 | ||
| @@ -4359,6 +3842,28 @@ rs_close(struct tty_struct *tty, struct file * filp) | |||
| 4359 | #endif | 3842 | #endif |
| 4360 | } | 3843 | } |
| 4361 | #endif | 3844 | #endif |
| 3845 | |||
| 3846 | /* | ||
| 3847 | * Release any allocated DMA irq's. | ||
| 3848 | */ | ||
| 3849 | if (info->dma_in_enabled) { | ||
| 3850 | free_irq(info->dma_in_irq_nbr, info); | ||
| 3851 | cris_free_dma(info->dma_in_nbr, info->dma_in_irq_description); | ||
| 3852 | info->uses_dma_in = 0; | ||
| 3853 | #ifdef SERIAL_DEBUG_OPEN | ||
| 3854 | printk(KERN_DEBUG "DMA irq '%s' freed\n", | ||
| 3855 | info->dma_in_irq_description); | ||
| 3856 | #endif | ||
| 3857 | } | ||
| 3858 | if (info->dma_out_enabled) { | ||
| 3859 | free_irq(info->dma_out_irq_nbr, info); | ||
| 3860 | cris_free_dma(info->dma_out_nbr, info->dma_out_irq_description); | ||
| 3861 | info->uses_dma_out = 0; | ||
| 3862 | #ifdef SERIAL_DEBUG_OPEN | ||
| 3863 | printk(KERN_DEBUG "DMA irq '%s' freed\n", | ||
| 3864 | info->dma_out_irq_description); | ||
| 3865 | #endif | ||
| 3866 | } | ||
| 4362 | } | 3867 | } |
| 4363 | 3868 | ||
| 4364 | /* | 3869 | /* |
| @@ -4433,8 +3938,8 @@ block_til_ready(struct tty_struct *tty, struct file * filp, | |||
| 4433 | */ | 3938 | */ |
| 4434 | if (tty_hung_up_p(filp) || | 3939 | if (tty_hung_up_p(filp) || |
| 4435 | (info->flags & ASYNC_CLOSING)) { | 3940 | (info->flags & ASYNC_CLOSING)) { |
| 4436 | if (info->flags & ASYNC_CLOSING) | 3941 | wait_event_interruptible(info->close_wait, |
| 4437 | interruptible_sleep_on(&info->close_wait); | 3942 | !(info->flags & ASYNC_CLOSING)); |
| 4438 | #ifdef SERIAL_DO_RESTART | 3943 | #ifdef SERIAL_DO_RESTART |
| 4439 | if (info->flags & ASYNC_HUP_NOTIFY) | 3944 | if (info->flags & ASYNC_HUP_NOTIFY) |
| 4440 | return -EAGAIN; | 3945 | return -EAGAIN; |
| @@ -4472,21 +3977,19 @@ block_til_ready(struct tty_struct *tty, struct file * filp, | |||
| 4472 | printk("block_til_ready before block: ttyS%d, count = %d\n", | 3977 | printk("block_til_ready before block: ttyS%d, count = %d\n", |
| 4473 | info->line, info->count); | 3978 | info->line, info->count); |
| 4474 | #endif | 3979 | #endif |
| 4475 | save_flags(flags); | 3980 | local_irq_save(flags); |
| 4476 | cli(); | ||
| 4477 | if (!tty_hung_up_p(filp)) { | 3981 | if (!tty_hung_up_p(filp)) { |
| 4478 | extra_count++; | 3982 | extra_count++; |
| 4479 | info->count--; | 3983 | info->count--; |
| 4480 | } | 3984 | } |
| 4481 | restore_flags(flags); | 3985 | local_irq_restore(flags); |
| 4482 | info->blocked_open++; | 3986 | info->blocked_open++; |
| 4483 | while (1) { | 3987 | while (1) { |
| 4484 | save_flags(flags); | 3988 | local_irq_save(flags); |
| 4485 | cli(); | ||
| 4486 | /* assert RTS and DTR */ | 3989 | /* assert RTS and DTR */ |
| 4487 | e100_rts(info, 1); | 3990 | e100_rts(info, 1); |
| 4488 | e100_dtr(info, 1); | 3991 | e100_dtr(info, 1); |
| 4489 | restore_flags(flags); | 3992 | local_irq_restore(flags); |
| 4490 | set_current_state(TASK_INTERRUPTIBLE); | 3993 | set_current_state(TASK_INTERRUPTIBLE); |
| 4491 | if (tty_hung_up_p(filp) || | 3994 | if (tty_hung_up_p(filp) || |
| 4492 | !(info->flags & ASYNC_INITIALIZED)) { | 3995 | !(info->flags & ASYNC_INITIALIZED)) { |
| @@ -4528,6 +4031,19 @@ block_til_ready(struct tty_struct *tty, struct file * filp, | |||
| 4528 | return 0; | 4031 | return 0; |
| 4529 | } | 4032 | } |
| 4530 | 4033 | ||
| 4034 | static void | ||
| 4035 | deinit_port(struct e100_serial *info) | ||
| 4036 | { | ||
| 4037 | if (info->dma_out_enabled) { | ||
| 4038 | cris_free_dma(info->dma_out_nbr, info->dma_out_irq_description); | ||
| 4039 | free_irq(info->dma_out_irq_nbr, info); | ||
| 4040 | } | ||
| 4041 | if (info->dma_in_enabled) { | ||
| 4042 | cris_free_dma(info->dma_in_nbr, info->dma_in_irq_description); | ||
| 4043 | free_irq(info->dma_in_irq_nbr, info); | ||
| 4044 | } | ||
| 4045 | } | ||
| 4046 | |||
| 4531 | /* | 4047 | /* |
| 4532 | * This routine is called whenever a serial port is opened. | 4048 | * This routine is called whenever a serial port is opened. |
| 4533 | * It performs the serial-specific initialization for the tty structure. | 4049 | * It performs the serial-specific initialization for the tty structure. |
| @@ -4538,9 +4054,9 @@ rs_open(struct tty_struct *tty, struct file * filp) | |||
| 4538 | struct e100_serial *info; | 4054 | struct e100_serial *info; |
| 4539 | int retval, line; | 4055 | int retval, line; |
| 4540 | unsigned long page; | 4056 | unsigned long page; |
| 4057 | int allocated_resources = 0; | ||
| 4541 | 4058 | ||
| 4542 | /* find which port we want to open */ | 4059 | /* find which port we want to open */ |
| 4543 | |||
| 4544 | line = tty->index; | 4060 | line = tty->index; |
| 4545 | 4061 | ||
| 4546 | if (line < 0 || line >= NR_PORTS) | 4062 | if (line < 0 || line >= NR_PORTS) |
| @@ -4580,8 +4096,8 @@ rs_open(struct tty_struct *tty, struct file * filp) | |||
| 4580 | */ | 4096 | */ |
| 4581 | if (tty_hung_up_p(filp) || | 4097 | if (tty_hung_up_p(filp) || |
| 4582 | (info->flags & ASYNC_CLOSING)) { | 4098 | (info->flags & ASYNC_CLOSING)) { |
| 4583 | if (info->flags & ASYNC_CLOSING) | 4099 | wait_event_interruptible(info->close_wait, |
| 4584 | interruptible_sleep_on(&info->close_wait); | 4100 | !(info->flags & ASYNC_CLOSING)); |
| 4585 | #ifdef SERIAL_DO_RESTART | 4101 | #ifdef SERIAL_DO_RESTART |
| 4586 | return ((info->flags & ASYNC_HUP_NOTIFY) ? | 4102 | return ((info->flags & ASYNC_HUP_NOTIFY) ? |
| 4587 | -EAGAIN : -ERESTARTSYS); | 4103 | -EAGAIN : -ERESTARTSYS); |
| @@ -4591,12 +4107,85 @@ rs_open(struct tty_struct *tty, struct file * filp) | |||
| 4591 | } | 4107 | } |
| 4592 | 4108 | ||
| 4593 | /* | 4109 | /* |
| 4110 | * If DMA is enabled try to allocate the irq's. | ||
| 4111 | */ | ||
| 4112 | if (info->count == 1) { | ||
| 4113 | allocated_resources = 1; | ||
| 4114 | if (info->dma_in_enabled) { | ||
| 4115 | if (request_irq(info->dma_in_irq_nbr, | ||
| 4116 | rec_interrupt, | ||
| 4117 | info->dma_in_irq_flags, | ||
| 4118 | info->dma_in_irq_description, | ||
| 4119 | info)) { | ||
| 4120 | printk(KERN_WARNING "DMA irq '%s' busy; " | ||
| 4121 | "falling back to non-DMA mode\n", | ||
| 4122 | info->dma_in_irq_description); | ||
| 4123 | /* Make sure we never try to use DMA in */ | ||
| 4124 | /* for the port again. */ | ||
| 4125 | info->dma_in_enabled = 0; | ||
| 4126 | } else if (cris_request_dma(info->dma_in_nbr, | ||
| 4127 | info->dma_in_irq_description, | ||
| 4128 | DMA_VERBOSE_ON_ERROR, | ||
| 4129 | info->dma_owner)) { | ||
| 4130 | free_irq(info->dma_in_irq_nbr, info); | ||
| 4131 | printk(KERN_WARNING "DMA '%s' busy; " | ||
| 4132 | "falling back to non-DMA mode\n", | ||
| 4133 | info->dma_in_irq_description); | ||
| 4134 | /* Make sure we never try to use DMA in */ | ||
| 4135 | /* for the port again. */ | ||
| 4136 | info->dma_in_enabled = 0; | ||
| 4137 | } | ||
| 4138 | #ifdef SERIAL_DEBUG_OPEN | ||
| 4139 | else | ||
| 4140 | printk(KERN_DEBUG "DMA irq '%s' allocated\n", | ||
| 4141 | info->dma_in_irq_description); | ||
| 4142 | #endif | ||
| 4143 | } | ||
| 4144 | if (info->dma_out_enabled) { | ||
| 4145 | if (request_irq(info->dma_out_irq_nbr, | ||
| 4146 | tr_interrupt, | ||
| 4147 | info->dma_out_irq_flags, | ||
| 4148 | info->dma_out_irq_description, | ||
| 4149 | info)) { | ||
| 4150 | printk(KERN_WARNING "DMA irq '%s' busy; " | ||
| 4151 | "falling back to non-DMA mode\n", | ||
| 4152 | info->dma_out_irq_description); | ||
| 4153 | /* Make sure we never try to use DMA out */ | ||
| 4154 | /* for the port again. */ | ||
| 4155 | info->dma_out_enabled = 0; | ||
| 4156 | } else if (cris_request_dma(info->dma_out_nbr, | ||
| 4157 | info->dma_out_irq_description, | ||
| 4158 | DMA_VERBOSE_ON_ERROR, | ||
| 4159 | info->dma_owner)) { | ||
| 4160 | free_irq(info->dma_out_irq_nbr, info); | ||
| 4161 | printk(KERN_WARNING "DMA '%s' busy; " | ||
| 4162 | "falling back to non-DMA mode\n", | ||
| 4163 | info->dma_out_irq_description); | ||
| 4164 | /* Make sure we never try to use DMA out */ | ||
| 4165 | /* for the port again. */ | ||
| 4166 | info->dma_out_enabled = 0; | ||
| 4167 | } | ||
| 4168 | #ifdef SERIAL_DEBUG_OPEN | ||
| 4169 | else | ||
| 4170 | printk(KERN_DEBUG "DMA irq '%s' allocated\n", | ||
| 4171 | info->dma_out_irq_description); | ||
| 4172 | #endif | ||
| 4173 | } | ||
| 4174 | } | ||
| 4175 | |||
| 4176 | /* | ||
| 4594 | * Start up the serial port | 4177 | * Start up the serial port |
| 4595 | */ | 4178 | */ |
| 4596 | 4179 | ||
| 4597 | retval = startup(info); | 4180 | retval = startup(info); |
| 4598 | if (retval) | 4181 | if (retval) { |
| 4182 | if (allocated_resources) | ||
| 4183 | deinit_port(info); | ||
| 4184 | |||
| 4185 | /* FIXME Decrease count info->count here too? */ | ||
| 4599 | return retval; | 4186 | return retval; |
| 4187 | } | ||
| 4188 | |||
| 4600 | 4189 | ||
| 4601 | retval = block_til_ready(tty, filp, info); | 4190 | retval = block_til_ready(tty, filp, info); |
| 4602 | if (retval) { | 4191 | if (retval) { |
| @@ -4604,6 +4193,9 @@ rs_open(struct tty_struct *tty, struct file * filp) | |||
| 4604 | printk("rs_open returning after block_til_ready with %d\n", | 4193 | printk("rs_open returning after block_til_ready with %d\n", |
| 4605 | retval); | 4194 | retval); |
| 4606 | #endif | 4195 | #endif |
| 4196 | if (allocated_resources) | ||
| 4197 | deinit_port(info); | ||
| 4198 | |||
| 4607 | return retval; | 4199 | return retval; |
| 4608 | } | 4200 | } |
| 4609 | 4201 | ||
| @@ -4793,6 +4385,8 @@ static const struct tty_operations rs_ops = { | |||
| 4793 | .send_xchar = rs_send_xchar, | 4385 | .send_xchar = rs_send_xchar, |
| 4794 | .wait_until_sent = rs_wait_until_sent, | 4386 | .wait_until_sent = rs_wait_until_sent, |
| 4795 | .read_proc = rs_read_proc, | 4387 | .read_proc = rs_read_proc, |
| 4388 | .tiocmget = rs_tiocmget, | ||
| 4389 | .tiocmset = rs_tiocmset | ||
| 4796 | }; | 4390 | }; |
| 4797 | 4391 | ||
| 4798 | static int __init | 4392 | static int __init |
| @@ -4810,9 +4404,27 @@ rs_init(void) | |||
| 4810 | /* Setup the timed flush handler system */ | 4404 | /* Setup the timed flush handler system */ |
| 4811 | 4405 | ||
| 4812 | #if !defined(CONFIG_ETRAX_SERIAL_FAST_TIMER) | 4406 | #if !defined(CONFIG_ETRAX_SERIAL_FAST_TIMER) |
| 4813 | init_timer(&flush_timer); | 4407 | setup_timer(&flush_timer, timed_flush_handler, 0); |
| 4814 | flush_timer.function = timed_flush_handler; | 4408 | mod_timer(&flush_timer, jiffies + 5); |
| 4815 | mod_timer(&flush_timer, jiffies + CONFIG_ETRAX_SERIAL_RX_TIMEOUT_TICKS); | 4409 | #endif |
| 4410 | |||
| 4411 | #if defined(CONFIG_ETRAX_RS485) | ||
| 4412 | #if defined(CONFIG_ETRAX_RS485_ON_PA) | ||
| 4413 | if (cris_io_interface_allocate_pins(if_ser0, 'a', rs485_pa_bit, | ||
| 4414 | rs485_pa_bit)) { | ||
| 4415 | printk(KERN_CRIT "ETRAX100LX serial: Could not allocate " | ||
| 4416 | "RS485 pin\n"); | ||
| 4417 | return -EBUSY; | ||
| 4418 | } | ||
| 4419 | #endif | ||
| 4420 | #if defined(CONFIG_ETRAX_RS485_ON_PORT_G) | ||
| 4421 | if (cris_io_interface_allocate_pins(if_ser0, 'g', rs485_pa_bit, | ||
| 4422 | rs485_port_g_bit)) { | ||
| 4423 | printk(KERN_CRIT "ETRAX100LX serial: Could not allocate " | ||
| 4424 | "RS485 pin\n"); | ||
| 4425 | return -EBUSY; | ||
| 4426 | } | ||
| 4427 | #endif | ||
| 4816 | #endif | 4428 | #endif |
| 4817 | 4429 | ||
| 4818 | /* Initialize the tty_driver structure */ | 4430 | /* Initialize the tty_driver structure */ |
| @@ -4839,6 +4451,16 @@ rs_init(void) | |||
| 4839 | /* do some initializing for the separate ports */ | 4451 | /* do some initializing for the separate ports */ |
| 4840 | 4452 | ||
| 4841 | for (i = 0, info = rs_table; i < NR_PORTS; i++,info++) { | 4453 | for (i = 0, info = rs_table; i < NR_PORTS; i++,info++) { |
| 4454 | if (info->enabled) { | ||
| 4455 | if (cris_request_io_interface(info->io_if, | ||
| 4456 | info->io_if_description)) { | ||
| 4457 | printk(KERN_CRIT "ETRAX100LX async serial: " | ||
| 4458 | "Could not allocate IO pins for " | ||
| 4459 | "%s, port %d\n", | ||
| 4460 | info->io_if_description, i); | ||
| 4461 | info->enabled = 0; | ||
| 4462 | } | ||
| 4463 | } | ||
| 4842 | info->uses_dma_in = 0; | 4464 | info->uses_dma_in = 0; |
| 4843 | info->uses_dma_out = 0; | 4465 | info->uses_dma_out = 0; |
| 4844 | info->line = i; | 4466 | info->line = i; |
| @@ -4872,7 +4494,7 @@ rs_init(void) | |||
| 4872 | info->rs485.delay_rts_before_send = 0; | 4494 | info->rs485.delay_rts_before_send = 0; |
| 4873 | info->rs485.enabled = 0; | 4495 | info->rs485.enabled = 0; |
| 4874 | #endif | 4496 | #endif |
| 4875 | INIT_WORK(&info->work, do_softint, info); | 4497 | INIT_WORK(&info->work, do_softint); |
| 4876 | 4498 | ||
| 4877 | if (info->enabled) { | 4499 | if (info->enabled) { |
| 4878 | printk(KERN_INFO "%s%d at 0x%x is a builtin UART with DMA\n", | 4500 | printk(KERN_INFO "%s%d at 0x%x is a builtin UART with DMA\n", |
| @@ -4890,64 +4512,17 @@ rs_init(void) | |||
| 4890 | #endif | 4512 | #endif |
| 4891 | 4513 | ||
| 4892 | #ifndef CONFIG_SVINTO_SIM | 4514 | #ifndef CONFIG_SVINTO_SIM |
| 4515 | #ifndef CONFIG_ETRAX_KGDB | ||
| 4893 | /* Not needed in simulator. May only complicate stuff. */ | 4516 | /* Not needed in simulator. May only complicate stuff. */ |
| 4894 | /* hook the irq's for DMA channel 6 and 7, serial output and input, and some more... */ | 4517 | /* hook the irq's for DMA channel 6 and 7, serial output and input, and some more... */ |
| 4895 | 4518 | ||
| 4896 | if (request_irq(SERIAL_IRQ_NBR, ser_interrupt, IRQF_SHARED | IRQF_DISABLED, "serial ", NULL)) | 4519 | if (request_irq(SERIAL_IRQ_NBR, ser_interrupt, |
| 4897 | panic("irq8"); | 4520 | IRQF_SHARED | IRQF_DISABLED, "serial ", driver)) |
| 4898 | 4521 | panic("%s: Failed to request irq8", __FUNCTION__); | |
| 4899 | #ifdef CONFIG_ETRAX_SERIAL_PORT0 | ||
| 4900 | #ifdef CONFIG_ETRAX_SERIAL_PORT0_DMA6_OUT | ||
| 4901 | if (request_irq(SER0_DMA_TX_IRQ_NBR, tr_interrupt, IRQF_DISABLED, "serial 0 dma tr", NULL)) | ||
| 4902 | panic("irq22"); | ||
| 4903 | #endif | ||
| 4904 | #ifdef CONFIG_ETRAX_SERIAL_PORT0_DMA7_IN | ||
| 4905 | if (request_irq(SER0_DMA_RX_IRQ_NBR, rec_interrupt, IRQF_DISABLED, "serial 0 dma rec", NULL)) | ||
| 4906 | panic("irq23"); | ||
| 4907 | #endif | ||
| 4908 | #endif | ||
| 4909 | |||
| 4910 | #ifdef CONFIG_ETRAX_SERIAL_PORT1 | ||
| 4911 | #ifdef CONFIG_ETRAX_SERIAL_PORT1_DMA8_OUT | ||
| 4912 | if (request_irq(SER1_DMA_TX_IRQ_NBR, tr_interrupt, IRQF_DISABLED, "serial 1 dma tr", NULL)) | ||
| 4913 | panic("irq24"); | ||
| 4914 | #endif | ||
| 4915 | #ifdef CONFIG_ETRAX_SERIAL_PORT1_DMA9_IN | ||
| 4916 | if (request_irq(SER1_DMA_RX_IRQ_NBR, rec_interrupt, IRQF_DISABLED, "serial 1 dma rec", NULL)) | ||
| 4917 | panic("irq25"); | ||
| 4918 | #endif | ||
| 4919 | #endif | ||
| 4920 | #ifdef CONFIG_ETRAX_SERIAL_PORT2 | ||
| 4921 | /* DMA Shared with par0 (and SCSI0 and ATA) */ | ||
| 4922 | #ifdef CONFIG_ETRAX_SERIAL_PORT2_DMA2_OUT | ||
| 4923 | if (request_irq(SER2_DMA_TX_IRQ_NBR, tr_interrupt, IRQF_SHARED | IRQF_DISABLED, "serial 2 dma tr", NULL)) | ||
| 4924 | panic("irq18"); | ||
| 4925 | #endif | ||
| 4926 | #ifdef CONFIG_ETRAX_SERIAL_PORT2_DMA3_IN | ||
| 4927 | if (request_irq(SER2_DMA_RX_IRQ_NBR, rec_interrupt, IRQF_SHARED | IRQF_DISABLED, "serial 2 dma rec", NULL)) | ||
| 4928 | panic("irq19"); | ||
| 4929 | #endif | ||
| 4930 | #endif | ||
| 4931 | #ifdef CONFIG_ETRAX_SERIAL_PORT3 | ||
| 4932 | /* DMA Shared with par1 (and SCSI1 and Extern DMA 0) */ | ||
| 4933 | #ifdef CONFIG_ETRAX_SERIAL_PORT3_DMA4_OUT | ||
| 4934 | if (request_irq(SER3_DMA_TX_IRQ_NBR, tr_interrupt, IRQF_SHARED | IRQF_DISABLED, "serial 3 dma tr", NULL)) | ||
| 4935 | panic("irq20"); | ||
| 4936 | #endif | ||
| 4937 | #ifdef CONFIG_ETRAX_SERIAL_PORT3_DMA5_IN | ||
| 4938 | if (request_irq(SER3_DMA_RX_IRQ_NBR, rec_interrupt, IRQF_SHARED | IRQF_DISABLED, "serial 3 dma rec", NULL)) | ||
| 4939 | panic("irq21"); | ||
| 4940 | #endif | ||
| 4941 | #endif | ||
| 4942 | 4522 | ||
| 4943 | #ifdef CONFIG_ETRAX_SERIAL_FLUSH_DMA_FAST | ||
| 4944 | if (request_irq(TIMER1_IRQ_NBR, timeout_interrupt, IRQF_SHARED | IRQF_DISABLED, | ||
| 4945 | "fast serial dma timeout", NULL)) { | ||
| 4946 | printk(KERN_CRIT "err: timer1 irq\n"); | ||
| 4947 | } | ||
| 4948 | #endif | 4523 | #endif |
| 4949 | #endif /* CONFIG_SVINTO_SIM */ | 4524 | #endif /* CONFIG_SVINTO_SIM */ |
| 4950 | debug_write_function = rs_debug_write_function; | 4525 | |
| 4951 | return 0; | 4526 | return 0; |
| 4952 | } | 4527 | } |
| 4953 | 4528 | ||
diff --git a/drivers/serial/crisv10.h b/drivers/serial/crisv10.h new file mode 100644 index 000000000000..ccd0f32b7372 --- /dev/null +++ b/drivers/serial/crisv10.h | |||
| @@ -0,0 +1,146 @@ | |||
| 1 | /* | ||
| 2 | * serial.h: Arch-dep definitions for the Etrax100 serial driver. | ||
| 3 | * | ||
| 4 | * Copyright (C) 1998-2007 Axis Communications AB | ||
| 5 | */ | ||
| 6 | |||
| 7 | #ifndef _ETRAX_SERIAL_H | ||
| 8 | #define _ETRAX_SERIAL_H | ||
| 9 | |||
| 10 | #include <linux/circ_buf.h> | ||
| 11 | #include <asm/termios.h> | ||
| 12 | #include <asm/dma.h> | ||
| 13 | #include <asm/arch/io_interface_mux.h> | ||
| 14 | |||
| 15 | /* Software state per channel */ | ||
| 16 | |||
| 17 | #ifdef __KERNEL__ | ||
| 18 | /* | ||
| 19 | * This is our internal structure for each serial port's state. | ||
| 20 | * | ||
| 21 | * Many fields are paralleled by the structure used by the serial_struct | ||
| 22 | * structure. | ||
| 23 | * | ||
| 24 | * For definitions of the flags field, see tty.h | ||
| 25 | */ | ||
| 26 | |||
| 27 | #define SERIAL_RECV_DESCRIPTORS 8 | ||
| 28 | |||
| 29 | struct etrax_recv_buffer { | ||
| 30 | struct etrax_recv_buffer *next; | ||
| 31 | unsigned short length; | ||
| 32 | unsigned char error; | ||
| 33 | unsigned char pad; | ||
| 34 | |||
| 35 | unsigned char buffer[0]; | ||
| 36 | }; | ||
| 37 | |||
| 38 | struct e100_serial { | ||
| 39 | int baud; | ||
| 40 | volatile u8 *port; /* R_SERIALx_CTRL */ | ||
| 41 | u32 irq; /* bitnr in R_IRQ_MASK2 for dmaX_descr */ | ||
| 42 | |||
| 43 | /* Output registers */ | ||
| 44 | volatile u8 *oclrintradr; /* adr to R_DMA_CHx_CLR_INTR */ | ||
| 45 | volatile u32 *ofirstadr; /* adr to R_DMA_CHx_FIRST */ | ||
| 46 | volatile u8 *ocmdadr; /* adr to R_DMA_CHx_CMD */ | ||
| 47 | const volatile u8 *ostatusadr; /* adr to R_DMA_CHx_STATUS */ | ||
| 48 | |||
| 49 | /* Input registers */ | ||
| 50 | volatile u8 *iclrintradr; /* adr to R_DMA_CHx_CLR_INTR */ | ||
| 51 | volatile u32 *ifirstadr; /* adr to R_DMA_CHx_FIRST */ | ||
| 52 | volatile u8 *icmdadr; /* adr to R_DMA_CHx_CMD */ | ||
| 53 | volatile u32 *idescradr; /* adr to R_DMA_CHx_DESCR */ | ||
| 54 | |||
| 55 | int flags; /* defined in tty.h */ | ||
| 56 | |||
| 57 | u8 rx_ctrl; /* shadow for R_SERIALx_REC_CTRL */ | ||
| 58 | u8 tx_ctrl; /* shadow for R_SERIALx_TR_CTRL */ | ||
| 59 | u8 iseteop; /* bit number for R_SET_EOP for the input dma */ | ||
| 60 | int enabled; /* Set to 1 if the port is enabled in HW config */ | ||
| 61 | |||
| 62 | u8 dma_out_enabled; /* Set to 1 if DMA should be used */ | ||
| 63 | u8 dma_in_enabled; /* Set to 1 if DMA should be used */ | ||
| 64 | |||
| 65 | /* end of fields defined in rs_table[] in .c-file */ | ||
| 66 | int dma_owner; | ||
| 67 | unsigned int dma_in_nbr; | ||
| 68 | unsigned int dma_out_nbr; | ||
| 69 | unsigned int dma_in_irq_nbr; | ||
| 70 | unsigned int dma_out_irq_nbr; | ||
| 71 | unsigned long dma_in_irq_flags; | ||
| 72 | unsigned long dma_out_irq_flags; | ||
| 73 | char *dma_in_irq_description; | ||
| 74 | char *dma_out_irq_description; | ||
| 75 | |||
| 76 | enum cris_io_interface io_if; | ||
| 77 | char *io_if_description; | ||
| 78 | |||
| 79 | u8 uses_dma_in; /* Set to 1 if DMA is used */ | ||
| 80 | u8 uses_dma_out; /* Set to 1 if DMA is used */ | ||
| 81 | u8 forced_eop; /* a fifo eop has been forced */ | ||
| 82 | int baud_base; /* For special baudrates */ | ||
| 83 | int custom_divisor; /* For special baudrates */ | ||
| 84 | struct etrax_dma_descr tr_descr; | ||
| 85 | struct etrax_dma_descr rec_descr[SERIAL_RECV_DESCRIPTORS]; | ||
| 86 | int cur_rec_descr; | ||
| 87 | |||
| 88 | volatile int tr_running; /* 1 if output is running */ | ||
| 89 | |||
| 90 | struct tty_struct *tty; | ||
| 91 | int read_status_mask; | ||
| 92 | int ignore_status_mask; | ||
| 93 | int x_char; /* xon/xoff character */ | ||
| 94 | int close_delay; | ||
| 95 | unsigned short closing_wait; | ||
| 96 | unsigned short closing_wait2; | ||
| 97 | unsigned long event; | ||
| 98 | unsigned long last_active; | ||
| 99 | int line; | ||
| 100 | int type; /* PORT_ETRAX */ | ||
| 101 | int count; /* # of fd on device */ | ||
| 102 | int blocked_open; /* # of blocked opens */ | ||
| 103 | struct circ_buf xmit; | ||
| 104 | struct etrax_recv_buffer *first_recv_buffer; | ||
| 105 | struct etrax_recv_buffer *last_recv_buffer; | ||
| 106 | unsigned int recv_cnt; | ||
| 107 | unsigned int max_recv_cnt; | ||
| 108 | |||
| 109 | struct work_struct work; | ||
| 110 | struct async_icount icount; /* error-statistics etc.*/ | ||
| 111 | struct ktermios normal_termios; | ||
| 112 | struct ktermios callout_termios; | ||
| 113 | wait_queue_head_t open_wait; | ||
| 114 | wait_queue_head_t close_wait; | ||
| 115 | |||
| 116 | unsigned long char_time_usec; /* The time for 1 char, in usecs */ | ||
| 117 | unsigned long flush_time_usec; /* How often we should flush */ | ||
| 118 | unsigned long last_tx_active_usec; /* Last tx usec in the jiffies */ | ||
| 119 | unsigned long last_tx_active; /* Last tx time in jiffies */ | ||
| 120 | unsigned long last_rx_active_usec; /* Last rx usec in the jiffies */ | ||
| 121 | unsigned long last_rx_active; /* Last rx time in jiffies */ | ||
| 122 | |||
| 123 | int break_detected_cnt; | ||
| 124 | int errorcode; | ||
| 125 | |||
| 126 | #ifdef CONFIG_ETRAX_RS485 | ||
| 127 | struct rs485_control rs485; /* RS-485 support */ | ||
| 128 | #endif | ||
| 129 | }; | ||
| 130 | |||
| 131 | /* this PORT is not in the standard serial.h. it's not actually used for | ||
| 132 | * anything since we only have one type of async serial-port anyway in this | ||
| 133 | * system. | ||
| 134 | */ | ||
| 135 | |||
| 136 | #define PORT_ETRAX 1 | ||
| 137 | |||
| 138 | /* | ||
| 139 | * Events are used to schedule things to happen at timer-interrupt | ||
| 140 | * time, instead of at rs interrupt time. | ||
| 141 | */ | ||
| 142 | #define RS_EVENT_WRITE_WAKEUP 0 | ||
| 143 | |||
| 144 | #endif /* __KERNEL__ */ | ||
| 145 | |||
| 146 | #endif /* !_ETRAX_SERIAL_H */ | ||
diff --git a/drivers/spi/spi.c b/drivers/spi/spi.c index 89769ce16f88..b31f4431849b 100644 --- a/drivers/spi/spi.c +++ b/drivers/spi/spi.c | |||
| @@ -457,10 +457,11 @@ done: | |||
| 457 | EXPORT_SYMBOL_GPL(spi_register_master); | 457 | EXPORT_SYMBOL_GPL(spi_register_master); |
| 458 | 458 | ||
| 459 | 459 | ||
| 460 | static int __unregister(struct device *dev, void *unused) | 460 | static int __unregister(struct device *dev, void *master_dev) |
| 461 | { | 461 | { |
| 462 | /* note: before about 2.6.14-rc1 this would corrupt memory: */ | 462 | /* note: before about 2.6.14-rc1 this would corrupt memory: */ |
| 463 | spi_unregister_device(to_spi_device(dev)); | 463 | if (dev != master_dev) |
| 464 | spi_unregister_device(to_spi_device(dev)); | ||
| 464 | return 0; | 465 | return 0; |
| 465 | } | 466 | } |
| 466 | 467 | ||
| @@ -478,7 +479,8 @@ void spi_unregister_master(struct spi_master *master) | |||
| 478 | { | 479 | { |
| 479 | int dummy; | 480 | int dummy; |
| 480 | 481 | ||
| 481 | dummy = device_for_each_child(master->dev.parent, NULL, __unregister); | 482 | dummy = device_for_each_child(master->dev.parent, &master->dev, |
| 483 | __unregister); | ||
| 482 | device_unregister(&master->dev); | 484 | device_unregister(&master->dev); |
| 483 | } | 485 | } |
| 484 | EXPORT_SYMBOL_GPL(spi_unregister_master); | 486 | EXPORT_SYMBOL_GPL(spi_unregister_master); |
diff --git a/drivers/spi/spi_txx9.c b/drivers/spi/spi_txx9.c index cc5094f37dd3..363ac8e68821 100644 --- a/drivers/spi/spi_txx9.c +++ b/drivers/spi/spi_txx9.c | |||
| @@ -24,6 +24,7 @@ | |||
| 24 | #include <linux/spi/spi.h> | 24 | #include <linux/spi/spi.h> |
| 25 | #include <linux/err.h> | 25 | #include <linux/err.h> |
| 26 | #include <linux/clk.h> | 26 | #include <linux/clk.h> |
| 27 | #include <linux/io.h> | ||
| 27 | #include <asm/gpio.h> | 28 | #include <asm/gpio.h> |
| 28 | 29 | ||
| 29 | 30 | ||
| @@ -74,7 +75,6 @@ struct txx9spi { | |||
| 74 | struct list_head queue; | 75 | struct list_head queue; |
| 75 | wait_queue_head_t waitq; | 76 | wait_queue_head_t waitq; |
| 76 | void __iomem *membase; | 77 | void __iomem *membase; |
| 77 | int irq; | ||
| 78 | int baseclk; | 78 | int baseclk; |
| 79 | struct clk *clk; | 79 | struct clk *clk; |
| 80 | u32 max_speed_hz, min_speed_hz; | 80 | u32 max_speed_hz, min_speed_hz; |
| @@ -350,12 +350,12 @@ static int __init txx9spi_probe(struct platform_device *dev) | |||
| 350 | struct resource *res; | 350 | struct resource *res; |
| 351 | int ret = -ENODEV; | 351 | int ret = -ENODEV; |
| 352 | u32 mcr; | 352 | u32 mcr; |
| 353 | int irq; | ||
| 353 | 354 | ||
| 354 | master = spi_alloc_master(&dev->dev, sizeof(*c)); | 355 | master = spi_alloc_master(&dev->dev, sizeof(*c)); |
| 355 | if (!master) | 356 | if (!master) |
| 356 | return ret; | 357 | return ret; |
| 357 | c = spi_master_get_devdata(master); | 358 | c = spi_master_get_devdata(master); |
| 358 | c->irq = -1; | ||
| 359 | platform_set_drvdata(dev, master); | 359 | platform_set_drvdata(dev, master); |
| 360 | 360 | ||
| 361 | INIT_WORK(&c->work, txx9spi_work); | 361 | INIT_WORK(&c->work, txx9spi_work); |
| @@ -381,32 +381,36 @@ static int __init txx9spi_probe(struct platform_device *dev) | |||
| 381 | 381 | ||
| 382 | res = platform_get_resource(dev, IORESOURCE_MEM, 0); | 382 | res = platform_get_resource(dev, IORESOURCE_MEM, 0); |
| 383 | if (!res) | 383 | if (!res) |
| 384 | goto exit; | 384 | goto exit_busy; |
| 385 | c->membase = ioremap(res->start, res->end - res->start + 1); | 385 | if (!devm_request_mem_region(&dev->dev, |
| 386 | res->start, res->end - res->start + 1, | ||
| 387 | "spi_txx9")) | ||
| 388 | goto exit_busy; | ||
| 389 | c->membase = devm_ioremap(&dev->dev, | ||
| 390 | res->start, res->end - res->start + 1); | ||
| 386 | if (!c->membase) | 391 | if (!c->membase) |
| 387 | goto exit; | 392 | goto exit_busy; |
| 388 | 393 | ||
| 389 | /* enter config mode */ | 394 | /* enter config mode */ |
| 390 | mcr = txx9spi_rd(c, TXx9_SPMCR); | 395 | mcr = txx9spi_rd(c, TXx9_SPMCR); |
| 391 | mcr &= ~(TXx9_SPMCR_OPMODE | TXx9_SPMCR_SPSTP | TXx9_SPMCR_BCLR); | 396 | mcr &= ~(TXx9_SPMCR_OPMODE | TXx9_SPMCR_SPSTP | TXx9_SPMCR_BCLR); |
| 392 | txx9spi_wr(c, mcr | TXx9_SPMCR_CONFIG | TXx9_SPMCR_BCLR, TXx9_SPMCR); | 397 | txx9spi_wr(c, mcr | TXx9_SPMCR_CONFIG | TXx9_SPMCR_BCLR, TXx9_SPMCR); |
| 393 | 398 | ||
| 394 | c->irq = platform_get_irq(dev, 0); | 399 | irq = platform_get_irq(dev, 0); |
| 395 | if (c->irq < 0) | 400 | if (irq < 0) |
| 396 | goto exit; | 401 | goto exit_busy; |
| 397 | ret = request_irq(c->irq, txx9spi_interrupt, 0, dev->name, c); | 402 | ret = devm_request_irq(&dev->dev, irq, txx9spi_interrupt, 0, |
| 398 | if (ret) { | 403 | "spi_txx9", c); |
| 399 | c->irq = -1; | 404 | if (ret) |
| 400 | goto exit; | 405 | goto exit; |
| 401 | } | ||
| 402 | 406 | ||
| 403 | c->workqueue = create_singlethread_workqueue(master->dev.parent->bus_id); | 407 | c->workqueue = create_singlethread_workqueue(master->dev.parent->bus_id); |
| 404 | if (!c->workqueue) | 408 | if (!c->workqueue) |
| 405 | goto exit; | 409 | goto exit_busy; |
| 406 | c->last_chipselect = -1; | 410 | c->last_chipselect = -1; |
| 407 | 411 | ||
| 408 | dev_info(&dev->dev, "at %#llx, irq %d, %dMHz\n", | 412 | dev_info(&dev->dev, "at %#llx, irq %d, %dMHz\n", |
| 409 | (unsigned long long)res->start, c->irq, | 413 | (unsigned long long)res->start, irq, |
| 410 | (c->baseclk + 500000) / 1000000); | 414 | (c->baseclk + 500000) / 1000000); |
| 411 | 415 | ||
| 412 | master->bus_num = dev->id; | 416 | master->bus_num = dev->id; |
| @@ -418,13 +422,11 @@ static int __init txx9spi_probe(struct platform_device *dev) | |||
| 418 | if (ret) | 422 | if (ret) |
| 419 | goto exit; | 423 | goto exit; |
| 420 | return 0; | 424 | return 0; |
| 425 | exit_busy: | ||
| 426 | ret = -EBUSY; | ||
| 421 | exit: | 427 | exit: |
| 422 | if (c->workqueue) | 428 | if (c->workqueue) |
| 423 | destroy_workqueue(c->workqueue); | 429 | destroy_workqueue(c->workqueue); |
| 424 | if (c->irq >= 0) | ||
| 425 | free_irq(c->irq, c); | ||
| 426 | if (c->membase) | ||
| 427 | iounmap(c->membase); | ||
| 428 | if (c->clk) { | 430 | if (c->clk) { |
| 429 | clk_disable(c->clk); | 431 | clk_disable(c->clk); |
| 430 | clk_put(c->clk); | 432 | clk_put(c->clk); |
| @@ -442,8 +444,6 @@ static int __exit txx9spi_remove(struct platform_device *dev) | |||
| 442 | spi_unregister_master(master); | 444 | spi_unregister_master(master); |
| 443 | platform_set_drvdata(dev, NULL); | 445 | platform_set_drvdata(dev, NULL); |
| 444 | destroy_workqueue(c->workqueue); | 446 | destroy_workqueue(c->workqueue); |
| 445 | free_irq(c->irq, c); | ||
| 446 | iounmap(c->membase); | ||
| 447 | clk_disable(c->clk); | 447 | clk_disable(c->clk); |
| 448 | clk_put(c->clk); | 448 | clk_put(c->clk); |
| 449 | spi_master_put(master); | 449 | spi_master_put(master); |
diff --git a/drivers/spi/tle62x0.c b/drivers/spi/tle62x0.c index 6da58ca48b33..455991fbe28f 100644 --- a/drivers/spi/tle62x0.c +++ b/drivers/spi/tle62x0.c | |||
| @@ -107,8 +107,11 @@ static ssize_t tle62x0_status_show(struct device *dev, | |||
| 107 | 107 | ||
| 108 | mutex_lock(&st->lock); | 108 | mutex_lock(&st->lock); |
| 109 | ret = tle62x0_read(st); | 109 | ret = tle62x0_read(st); |
| 110 | |||
| 111 | dev_dbg(dev, "tle62x0_read() returned %d\n", ret); | 110 | dev_dbg(dev, "tle62x0_read() returned %d\n", ret); |
| 111 | if (ret < 0) { | ||
| 112 | mutex_unlock(&st->lock); | ||
| 113 | return ret; | ||
| 114 | } | ||
| 112 | 115 | ||
| 113 | for (ptr = 0; ptr < (st->nr_gpio * 2)/8; ptr += 1) { | 116 | for (ptr = 0; ptr < (st->nr_gpio * 2)/8; ptr += 1) { |
| 114 | fault <<= 8; | 117 | fault <<= 8; |
diff --git a/drivers/usb/serial/keyspan.c b/drivers/usb/serial/keyspan.c index 6bfdba6a213f..1f7ab15df36d 100644 --- a/drivers/usb/serial/keyspan.c +++ b/drivers/usb/serial/keyspan.c | |||
| @@ -1215,20 +1215,18 @@ static int keyspan_chars_in_buffer (struct usb_serial_port *port) | |||
| 1215 | 1215 | ||
| 1216 | static int keyspan_open (struct usb_serial_port *port, struct file *filp) | 1216 | static int keyspan_open (struct usb_serial_port *port, struct file *filp) |
| 1217 | { | 1217 | { |
| 1218 | struct keyspan_port_private *p_priv; | 1218 | struct keyspan_port_private *p_priv; |
| 1219 | struct keyspan_serial_private *s_priv; | 1219 | struct keyspan_serial_private *s_priv; |
| 1220 | struct usb_serial *serial = port->serial; | 1220 | struct usb_serial *serial = port->serial; |
| 1221 | const struct keyspan_device_details *d_details; | 1221 | const struct keyspan_device_details *d_details; |
| 1222 | int i, err; | 1222 | int i, err; |
| 1223 | int baud_rate, device_port; | ||
| 1224 | struct urb *urb; | 1223 | struct urb *urb; |
| 1225 | unsigned int cflag; | ||
| 1226 | 1224 | ||
| 1227 | s_priv = usb_get_serial_data(serial); | 1225 | s_priv = usb_get_serial_data(serial); |
| 1228 | p_priv = usb_get_serial_port_data(port); | 1226 | p_priv = usb_get_serial_port_data(port); |
| 1229 | d_details = p_priv->device_details; | 1227 | d_details = p_priv->device_details; |
| 1230 | 1228 | ||
| 1231 | dbg("%s - port%d.", __FUNCTION__, port->number); | 1229 | dbg("%s - port%d.", __FUNCTION__, port->number); |
| 1232 | 1230 | ||
| 1233 | /* Set some sane defaults */ | 1231 | /* Set some sane defaults */ |
| 1234 | p_priv->rts_state = 1; | 1232 | p_priv->rts_state = 1; |
| @@ -1249,7 +1247,7 @@ static int keyspan_open (struct usb_serial_port *port, struct file *filp) | |||
| 1249 | urb->dev = serial->dev; | 1247 | urb->dev = serial->dev; |
| 1250 | 1248 | ||
| 1251 | /* make sure endpoint data toggle is synchronized with the device */ | 1249 | /* make sure endpoint data toggle is synchronized with the device */ |
| 1252 | 1250 | ||
| 1253 | usb_clear_halt(urb->dev, urb->pipe); | 1251 | usb_clear_halt(urb->dev, urb->pipe); |
| 1254 | 1252 | ||
| 1255 | if ((err = usb_submit_urb(urb, GFP_KERNEL)) != 0) { | 1253 | if ((err = usb_submit_urb(urb, GFP_KERNEL)) != 0) { |
| @@ -1265,30 +1263,6 @@ static int keyspan_open (struct usb_serial_port *port, struct file *filp) | |||
| 1265 | /* usb_settoggle(urb->dev, usb_pipeendpoint(urb->pipe), usb_pipeout(urb->pipe), 0); */ | 1263 | /* usb_settoggle(urb->dev, usb_pipeendpoint(urb->pipe), usb_pipeout(urb->pipe), 0); */ |
| 1266 | } | 1264 | } |
| 1267 | 1265 | ||
| 1268 | /* get the terminal config for the setup message now so we don't | ||
| 1269 | * need to send 2 of them */ | ||
| 1270 | |||
| 1271 | cflag = port->tty->termios->c_cflag; | ||
| 1272 | device_port = port->number - port->serial->minor; | ||
| 1273 | |||
| 1274 | /* Baud rate calculation takes baud rate as an integer | ||
| 1275 | so other rates can be generated if desired. */ | ||
| 1276 | baud_rate = tty_get_baud_rate(port->tty); | ||
| 1277 | /* If no match or invalid, leave as default */ | ||
| 1278 | if (baud_rate >= 0 | ||
| 1279 | && d_details->calculate_baud_rate(baud_rate, d_details->baudclk, | ||
| 1280 | NULL, NULL, NULL, device_port) == KEYSPAN_BAUD_RATE_OK) { | ||
| 1281 | p_priv->baud = baud_rate; | ||
| 1282 | } | ||
| 1283 | |||
| 1284 | /* set CTS/RTS handshake etc. */ | ||
| 1285 | p_priv->cflag = cflag; | ||
| 1286 | p_priv->flow_control = (cflag & CRTSCTS)? flow_cts: flow_none; | ||
| 1287 | |||
| 1288 | keyspan_send_setup(port, 1); | ||
| 1289 | //mdelay(100); | ||
| 1290 | //keyspan_set_termios(port, NULL); | ||
| 1291 | |||
| 1292 | return (0); | 1266 | return (0); |
| 1293 | } | 1267 | } |
| 1294 | 1268 | ||
diff --git a/drivers/video/Kconfig b/drivers/video/Kconfig index cc4b60f899ca..7d86e9eae915 100644 --- a/drivers/video/Kconfig +++ b/drivers/video/Kconfig | |||
| @@ -503,7 +503,7 @@ config FB_VALKYRIE | |||
| 503 | 503 | ||
| 504 | config FB_CT65550 | 504 | config FB_CT65550 |
| 505 | bool "Chips 65550 display support" | 505 | bool "Chips 65550 display support" |
| 506 | depends on (FB = y) && PPC32 | 506 | depends on (FB = y) && PPC32 && PCI |
| 507 | select FB_CFB_FILLRECT | 507 | select FB_CFB_FILLRECT |
| 508 | select FB_CFB_COPYAREA | 508 | select FB_CFB_COPYAREA |
| 509 | select FB_CFB_IMAGEBLIT | 509 | select FB_CFB_IMAGEBLIT |
diff --git a/drivers/video/gbefb.c b/drivers/video/gbefb.c index b9b572b293d4..2e552d5bbb5d 100644 --- a/drivers/video/gbefb.c +++ b/drivers/video/gbefb.c | |||
| @@ -183,8 +183,8 @@ static struct fb_videomode default_mode_LCD __initdata = { | |||
| 183 | .vmode = FB_VMODE_NONINTERLACED, | 183 | .vmode = FB_VMODE_NONINTERLACED, |
| 184 | }; | 184 | }; |
| 185 | 185 | ||
| 186 | struct fb_videomode *default_mode = &default_mode_CRT; | 186 | struct fb_videomode *default_mode __initdata = &default_mode_CRT; |
| 187 | struct fb_var_screeninfo *default_var = &default_var_CRT; | 187 | struct fb_var_screeninfo *default_var __initdata = &default_var_CRT; |
| 188 | 188 | ||
| 189 | static int flat_panel_enabled = 0; | 189 | static int flat_panel_enabled = 0; |
| 190 | 190 | ||
diff --git a/drivers/video/geode/lxfb.h b/drivers/video/geode/lxfb.h index 6c227f9592a5..ca13c48d19b0 100644 --- a/drivers/video/geode/lxfb.h +++ b/drivers/video/geode/lxfb.h | |||
| @@ -33,7 +33,7 @@ void lx_set_palette_reg(struct fb_info *, unsigned int, unsigned int, | |||
| 33 | 33 | ||
| 34 | #define MSR_LX_GLD_CONFIG 0x48002001 | 34 | #define MSR_LX_GLD_CONFIG 0x48002001 |
| 35 | #define MSR_LX_GLCP_DOTPLL 0x4c000015 | 35 | #define MSR_LX_GLCP_DOTPLL 0x4c000015 |
| 36 | #define MSR_LX_DF_PADSEL 0x48000011 | 36 | #define MSR_LX_DF_PADSEL 0x48002011 |
| 37 | #define MSR_LX_DC_SPARE 0x80000011 | 37 | #define MSR_LX_DC_SPARE 0x80000011 |
| 38 | #define MSR_LX_DF_GLCONFIG 0x48002001 | 38 | #define MSR_LX_DF_GLCONFIG 0x48002001 |
| 39 | 39 | ||
diff --git a/drivers/video/ps3fb.c b/drivers/video/ps3fb.c index b3463ddcfd60..75836aa83191 100644 --- a/drivers/video/ps3fb.c +++ b/drivers/video/ps3fb.c | |||
| @@ -727,7 +727,7 @@ static int ps3fb_blank(int blank, struct fb_info *info) | |||
| 727 | 727 | ||
| 728 | static int ps3fb_get_vblank(struct fb_vblank *vblank) | 728 | static int ps3fb_get_vblank(struct fb_vblank *vblank) |
| 729 | { | 729 | { |
| 730 | memset(vblank, 0, sizeof(&vblank)); | 730 | memset(vblank, 0, sizeof(*vblank)); |
| 731 | vblank->flags = FB_VBLANK_HAVE_VSYNC; | 731 | vblank->flags = FB_VBLANK_HAVE_VSYNC; |
| 732 | return 0; | 732 | return 0; |
| 733 | } | 733 | } |
diff --git a/drivers/video/s1d13xxxfb.c b/drivers/video/s1d13xxxfb.c index a5333c190789..b829dc7c5edf 100644 --- a/drivers/video/s1d13xxxfb.c +++ b/drivers/video/s1d13xxxfb.c | |||
| @@ -540,7 +540,7 @@ s1d13xxxfb_probe(struct platform_device *pdev) | |||
| 540 | int ret = 0; | 540 | int ret = 0; |
| 541 | u8 revision; | 541 | u8 revision; |
| 542 | 542 | ||
| 543 | dbg("probe called: device is %p\n", dev); | 543 | dbg("probe called: device is %p\n", pdev); |
| 544 | 544 | ||
| 545 | printk(KERN_INFO "Epson S1D13XXX FB Driver\n"); | 545 | printk(KERN_INFO "Epson S1D13XXX FB Driver\n"); |
| 546 | 546 | ||
| @@ -753,8 +753,11 @@ static struct platform_driver s1d13xxxfb_driver = { | |||
| 753 | static int __init | 753 | static int __init |
| 754 | s1d13xxxfb_init(void) | 754 | s1d13xxxfb_init(void) |
| 755 | { | 755 | { |
| 756 | |||
| 757 | #ifndef MODULE | ||
| 756 | if (fb_get_options("s1d13xxxfb", NULL)) | 758 | if (fb_get_options("s1d13xxxfb", NULL)) |
| 757 | return -ENODEV; | 759 | return -ENODEV; |
| 760 | #endif | ||
| 758 | 761 | ||
| 759 | return platform_driver_register(&s1d13xxxfb_driver); | 762 | return platform_driver_register(&s1d13xxxfb_driver); |
| 760 | } | 763 | } |
diff --git a/drivers/video/sis/sis_main.c b/drivers/video/sis/sis_main.c index bc7d23683735..37bd24b8d83b 100644 --- a/drivers/video/sis/sis_main.c +++ b/drivers/video/sis/sis_main.c | |||
| @@ -1248,7 +1248,6 @@ sisfb_do_set_var(struct fb_var_screeninfo *var, int isactive, struct fb_info *in | |||
| 1248 | if(found_mode) { | 1248 | if(found_mode) { |
| 1249 | ivideo->sisfb_mode_idx = sisfb_validate_mode(ivideo, | 1249 | ivideo->sisfb_mode_idx = sisfb_validate_mode(ivideo, |
| 1250 | ivideo->sisfb_mode_idx, ivideo->currentvbflags); | 1250 | ivideo->sisfb_mode_idx, ivideo->currentvbflags); |
| 1251 | ivideo->mode_no = sisbios_mode[ivideo->sisfb_mode_idx].mode_no[ivideo->mni]; | ||
| 1252 | } else { | 1251 | } else { |
| 1253 | ivideo->sisfb_mode_idx = -1; | 1252 | ivideo->sisfb_mode_idx = -1; |
| 1254 | } | 1253 | } |
| @@ -1260,6 +1259,8 @@ sisfb_do_set_var(struct fb_var_screeninfo *var, int isactive, struct fb_info *in | |||
| 1260 | return -EINVAL; | 1259 | return -EINVAL; |
| 1261 | } | 1260 | } |
| 1262 | 1261 | ||
| 1262 | ivideo->mode_no = sisbios_mode[ivideo->sisfb_mode_idx].mode_no[ivideo->mni]; | ||
| 1263 | |||
| 1263 | if(sisfb_search_refresh_rate(ivideo, ivideo->refresh_rate, ivideo->sisfb_mode_idx) == 0) { | 1264 | if(sisfb_search_refresh_rate(ivideo, ivideo->refresh_rate, ivideo->sisfb_mode_idx) == 0) { |
| 1264 | ivideo->rate_idx = sisbios_mode[ivideo->sisfb_mode_idx].rate_idx; | 1265 | ivideo->rate_idx = sisbios_mode[ivideo->sisfb_mode_idx].rate_idx; |
| 1265 | ivideo->refresh_rate = 60; | 1266 | ivideo->refresh_rate = 60; |
diff --git a/drivers/video/uvesafb.c b/drivers/video/uvesafb.c index b983d262ab78..d1d6c0facd54 100644 --- a/drivers/video/uvesafb.c +++ b/drivers/video/uvesafb.c | |||
| @@ -926,8 +926,10 @@ static int uvesafb_setpalette(struct uvesafb_pal_entry *entries, int count, | |||
| 926 | int start, struct fb_info *info) | 926 | int start, struct fb_info *info) |
| 927 | { | 927 | { |
| 928 | struct uvesafb_ktask *task; | 928 | struct uvesafb_ktask *task; |
| 929 | #ifdef CONFIG_X86 | ||
| 929 | struct uvesafb_par *par = info->par; | 930 | struct uvesafb_par *par = info->par; |
| 930 | int i = par->mode_idx; | 931 | int i = par->mode_idx; |
| 932 | #endif | ||
| 931 | int err = 0; | 933 | int err = 0; |
| 932 | 934 | ||
| 933 | /* | 935 | /* |
| @@ -1103,11 +1105,11 @@ static int uvesafb_pan_display(struct fb_var_screeninfo *var, | |||
| 1103 | 1105 | ||
| 1104 | static int uvesafb_blank(int blank, struct fb_info *info) | 1106 | static int uvesafb_blank(int blank, struct fb_info *info) |
| 1105 | { | 1107 | { |
| 1106 | struct uvesafb_par *par = info->par; | ||
| 1107 | struct uvesafb_ktask *task; | 1108 | struct uvesafb_ktask *task; |
| 1108 | int err = 1; | 1109 | int err = 1; |
| 1109 | |||
| 1110 | #ifdef CONFIG_X86 | 1110 | #ifdef CONFIG_X86 |
| 1111 | struct uvesafb_par *par = info->par; | ||
| 1112 | |||
| 1111 | if (par->vbe_ib.capabilities & VBE_CAP_VGACOMPAT) { | 1113 | if (par->vbe_ib.capabilities & VBE_CAP_VGACOMPAT) { |
| 1112 | int loop = 10000; | 1114 | int loop = 10000; |
| 1113 | u8 seq = 0, crtc17 = 0; | 1115 | u8 seq = 0, crtc17 = 0; |
diff --git a/drivers/w1/masters/ds2490.c b/drivers/w1/masters/ds2490.c index 299e274d241a..b63b5e044a4c 100644 --- a/drivers/w1/masters/ds2490.c +++ b/drivers/w1/masters/ds2490.c | |||
| @@ -233,7 +233,7 @@ static int ds_recv_status_nodump(struct ds_device *dev, struct ds_status *st, | |||
| 233 | { | 233 | { |
| 234 | int count, err; | 234 | int count, err; |
| 235 | 235 | ||
| 236 | memset(st, 0, sizeof(st)); | 236 | memset(st, 0, sizeof(*st)); |
| 237 | 237 | ||
| 238 | count = 0; | 238 | count = 0; |
| 239 | err = usb_bulk_msg(dev->udev, usb_rcvbulkpipe(dev->udev, dev->ep[EP_STATUS]), buf, size, &count, 100); | 239 | err = usb_bulk_msg(dev->udev, usb_rcvbulkpipe(dev->udev, dev->ep[EP_STATUS]), buf, size, &count, 100); |
diff --git a/fs/bfs/bfs.h b/fs/bfs/bfs.h index 130f6c66c5ba..ac7a8b1d6c3a 100644 --- a/fs/bfs/bfs.h +++ b/fs/bfs/bfs.h | |||
| @@ -14,8 +14,6 @@ struct bfs_sb_info { | |||
| 14 | unsigned long si_blocks; | 14 | unsigned long si_blocks; |
| 15 | unsigned long si_freeb; | 15 | unsigned long si_freeb; |
| 16 | unsigned long si_freei; | 16 | unsigned long si_freei; |
| 17 | unsigned long si_lf_ioff; | ||
| 18 | unsigned long si_lf_sblk; | ||
| 19 | unsigned long si_lf_eblk; | 17 | unsigned long si_lf_eblk; |
| 20 | unsigned long si_lasti; | 18 | unsigned long si_lasti; |
| 21 | unsigned long * si_imap; | 19 | unsigned long * si_imap; |
| @@ -39,7 +37,7 @@ static inline struct bfs_sb_info *BFS_SB(struct super_block *sb) | |||
| 39 | 37 | ||
| 40 | static inline struct bfs_inode_info *BFS_I(struct inode *inode) | 38 | static inline struct bfs_inode_info *BFS_I(struct inode *inode) |
| 41 | { | 39 | { |
| 42 | return list_entry(inode, struct bfs_inode_info, vfs_inode); | 40 | return container_of(inode, struct bfs_inode_info, vfs_inode); |
| 43 | } | 41 | } |
| 44 | 42 | ||
| 45 | 43 | ||
diff --git a/fs/bfs/dir.c b/fs/bfs/dir.c index 097f1497f743..1fd056d0fc3d 100644 --- a/fs/bfs/dir.c +++ b/fs/bfs/dir.c | |||
| @@ -21,29 +21,32 @@ | |||
| 21 | #define dprintf(x...) | 21 | #define dprintf(x...) |
| 22 | #endif | 22 | #endif |
| 23 | 23 | ||
| 24 | static int bfs_add_entry(struct inode * dir, const unsigned char * name, int namelen, int ino); | 24 | static int bfs_add_entry(struct inode *dir, const unsigned char *name, |
| 25 | static struct buffer_head * bfs_find_entry(struct inode * dir, | 25 | int namelen, int ino); |
| 26 | const unsigned char * name, int namelen, struct bfs_dirent ** res_dir); | 26 | static struct buffer_head *bfs_find_entry(struct inode *dir, |
| 27 | const unsigned char *name, int namelen, | ||
| 28 | struct bfs_dirent **res_dir); | ||
| 27 | 29 | ||
| 28 | static int bfs_readdir(struct file * f, void * dirent, filldir_t filldir) | 30 | static int bfs_readdir(struct file *f, void *dirent, filldir_t filldir) |
| 29 | { | 31 | { |
| 30 | struct inode * dir = f->f_path.dentry->d_inode; | 32 | struct inode *dir = f->f_path.dentry->d_inode; |
| 31 | struct buffer_head * bh; | 33 | struct buffer_head *bh; |
| 32 | struct bfs_dirent * de; | 34 | struct bfs_dirent *de; |
| 33 | unsigned int offset; | 35 | unsigned int offset; |
| 34 | int block; | 36 | int block; |
| 35 | 37 | ||
| 36 | lock_kernel(); | 38 | lock_kernel(); |
| 37 | 39 | ||
| 38 | if (f->f_pos & (BFS_DIRENT_SIZE-1)) { | 40 | if (f->f_pos & (BFS_DIRENT_SIZE - 1)) { |
| 39 | printf("Bad f_pos=%08lx for %s:%08lx\n", (unsigned long)f->f_pos, | 41 | printf("Bad f_pos=%08lx for %s:%08lx\n", |
| 40 | dir->i_sb->s_id, dir->i_ino); | 42 | (unsigned long)f->f_pos, |
| 43 | dir->i_sb->s_id, dir->i_ino); | ||
| 41 | unlock_kernel(); | 44 | unlock_kernel(); |
| 42 | return -EBADF; | 45 | return -EBADF; |
| 43 | } | 46 | } |
| 44 | 47 | ||
| 45 | while (f->f_pos < dir->i_size) { | 48 | while (f->f_pos < dir->i_size) { |
| 46 | offset = f->f_pos & (BFS_BSIZE-1); | 49 | offset = f->f_pos & (BFS_BSIZE - 1); |
| 47 | block = BFS_I(dir)->i_sblock + (f->f_pos >> BFS_BSIZE_BITS); | 50 | block = BFS_I(dir)->i_sblock + (f->f_pos >> BFS_BSIZE_BITS); |
| 48 | bh = sb_bread(dir->i_sb, block); | 51 | bh = sb_bread(dir->i_sb, block); |
| 49 | if (!bh) { | 52 | if (!bh) { |
| @@ -54,7 +57,9 @@ static int bfs_readdir(struct file * f, void * dirent, filldir_t filldir) | |||
| 54 | de = (struct bfs_dirent *)(bh->b_data + offset); | 57 | de = (struct bfs_dirent *)(bh->b_data + offset); |
| 55 | if (de->ino) { | 58 | if (de->ino) { |
| 56 | int size = strnlen(de->name, BFS_NAMELEN); | 59 | int size = strnlen(de->name, BFS_NAMELEN); |
| 57 | if (filldir(dirent, de->name, size, f->f_pos, le16_to_cpu(de->ino), DT_UNKNOWN) < 0) { | 60 | if (filldir(dirent, de->name, size, f->f_pos, |
| 61 | le16_to_cpu(de->ino), | ||
| 62 | DT_UNKNOWN) < 0) { | ||
| 58 | brelse(bh); | 63 | brelse(bh); |
| 59 | unlock_kernel(); | 64 | unlock_kernel(); |
| 60 | return 0; | 65 | return 0; |
| @@ -62,7 +67,7 @@ static int bfs_readdir(struct file * f, void * dirent, filldir_t filldir) | |||
| 62 | } | 67 | } |
| 63 | offset += BFS_DIRENT_SIZE; | 68 | offset += BFS_DIRENT_SIZE; |
| 64 | f->f_pos += BFS_DIRENT_SIZE; | 69 | f->f_pos += BFS_DIRENT_SIZE; |
| 65 | } while (offset < BFS_BSIZE && f->f_pos < dir->i_size); | 70 | } while ((offset < BFS_BSIZE) && (f->f_pos < dir->i_size)); |
| 66 | brelse(bh); | 71 | brelse(bh); |
| 67 | } | 72 | } |
| 68 | 73 | ||
| @@ -78,13 +83,13 @@ const struct file_operations bfs_dir_operations = { | |||
| 78 | 83 | ||
| 79 | extern void dump_imap(const char *, struct super_block *); | 84 | extern void dump_imap(const char *, struct super_block *); |
| 80 | 85 | ||
| 81 | static int bfs_create(struct inode * dir, struct dentry * dentry, int mode, | 86 | static int bfs_create(struct inode *dir, struct dentry *dentry, int mode, |
| 82 | struct nameidata *nd) | 87 | struct nameidata *nd) |
| 83 | { | 88 | { |
| 84 | int err; | 89 | int err; |
| 85 | struct inode * inode; | 90 | struct inode *inode; |
| 86 | struct super_block * s = dir->i_sb; | 91 | struct super_block *s = dir->i_sb; |
| 87 | struct bfs_sb_info * info = BFS_SB(s); | 92 | struct bfs_sb_info *info = BFS_SB(s); |
| 88 | unsigned long ino; | 93 | unsigned long ino; |
| 89 | 94 | ||
| 90 | inode = new_inode(s); | 95 | inode = new_inode(s); |
| @@ -97,7 +102,7 @@ static int bfs_create(struct inode * dir, struct dentry * dentry, int mode, | |||
| 97 | iput(inode); | 102 | iput(inode); |
| 98 | return -ENOSPC; | 103 | return -ENOSPC; |
| 99 | } | 104 | } |
| 100 | set_bit(ino, info->si_imap); | 105 | set_bit(ino, info->si_imap); |
| 101 | info->si_freei--; | 106 | info->si_freei--; |
| 102 | inode->i_uid = current->fsuid; | 107 | inode->i_uid = current->fsuid; |
| 103 | inode->i_gid = (dir->i_mode & S_ISGID) ? dir->i_gid : current->fsgid; | 108 | inode->i_gid = (dir->i_mode & S_ISGID) ? dir->i_gid : current->fsgid; |
| @@ -113,9 +118,10 @@ static int bfs_create(struct inode * dir, struct dentry * dentry, int mode, | |||
| 113 | BFS_I(inode)->i_eblock = 0; | 118 | BFS_I(inode)->i_eblock = 0; |
| 114 | insert_inode_hash(inode); | 119 | insert_inode_hash(inode); |
| 115 | mark_inode_dirty(inode); | 120 | mark_inode_dirty(inode); |
| 116 | dump_imap("create",s); | 121 | dump_imap("create", s); |
| 117 | 122 | ||
| 118 | err = bfs_add_entry(dir, dentry->d_name.name, dentry->d_name.len, inode->i_ino); | 123 | err = bfs_add_entry(dir, dentry->d_name.name, dentry->d_name.len, |
| 124 | inode->i_ino); | ||
| 119 | if (err) { | 125 | if (err) { |
| 120 | inode_dec_link_count(inode); | 126 | inode_dec_link_count(inode); |
| 121 | iput(inode); | 127 | iput(inode); |
| @@ -127,11 +133,12 @@ static int bfs_create(struct inode * dir, struct dentry * dentry, int mode, | |||
| 127 | return 0; | 133 | return 0; |
| 128 | } | 134 | } |
| 129 | 135 | ||
| 130 | static struct dentry * bfs_lookup(struct inode * dir, struct dentry * dentry, struct nameidata *nd) | 136 | static struct dentry *bfs_lookup(struct inode *dir, struct dentry *dentry, |
| 137 | struct nameidata *nd) | ||
| 131 | { | 138 | { |
| 132 | struct inode * inode = NULL; | 139 | struct inode *inode = NULL; |
| 133 | struct buffer_head * bh; | 140 | struct buffer_head *bh; |
| 134 | struct bfs_dirent * de; | 141 | struct bfs_dirent *de; |
| 135 | 142 | ||
| 136 | if (dentry->d_name.len > BFS_NAMELEN) | 143 | if (dentry->d_name.len > BFS_NAMELEN) |
| 137 | return ERR_PTR(-ENAMETOOLONG); | 144 | return ERR_PTR(-ENAMETOOLONG); |
| @@ -152,13 +159,15 @@ static struct dentry * bfs_lookup(struct inode * dir, struct dentry * dentry, st | |||
| 152 | return NULL; | 159 | return NULL; |
| 153 | } | 160 | } |
| 154 | 161 | ||
| 155 | static int bfs_link(struct dentry * old, struct inode * dir, struct dentry * new) | 162 | static int bfs_link(struct dentry *old, struct inode *dir, |
| 163 | struct dentry *new) | ||
| 156 | { | 164 | { |
| 157 | struct inode * inode = old->d_inode; | 165 | struct inode *inode = old->d_inode; |
| 158 | int err; | 166 | int err; |
| 159 | 167 | ||
| 160 | lock_kernel(); | 168 | lock_kernel(); |
| 161 | err = bfs_add_entry(dir, new->d_name.name, new->d_name.len, inode->i_ino); | 169 | err = bfs_add_entry(dir, new->d_name.name, new->d_name.len, |
| 170 | inode->i_ino); | ||
| 162 | if (err) { | 171 | if (err) { |
| 163 | unlock_kernel(); | 172 | unlock_kernel(); |
| 164 | return err; | 173 | return err; |
| @@ -172,23 +181,23 @@ static int bfs_link(struct dentry * old, struct inode * dir, struct dentry * new | |||
| 172 | return 0; | 181 | return 0; |
| 173 | } | 182 | } |
| 174 | 183 | ||
| 175 | 184 | static int bfs_unlink(struct inode *dir, struct dentry *dentry) | |
| 176 | static int bfs_unlink(struct inode * dir, struct dentry * dentry) | ||
| 177 | { | 185 | { |
| 178 | int error = -ENOENT; | 186 | int error = -ENOENT; |
| 179 | struct inode * inode; | 187 | struct inode *inode; |
| 180 | struct buffer_head * bh; | 188 | struct buffer_head *bh; |
| 181 | struct bfs_dirent * de; | 189 | struct bfs_dirent *de; |
| 182 | 190 | ||
| 183 | inode = dentry->d_inode; | 191 | inode = dentry->d_inode; |
| 184 | lock_kernel(); | 192 | lock_kernel(); |
| 185 | bh = bfs_find_entry(dir, dentry->d_name.name, dentry->d_name.len, &de); | 193 | bh = bfs_find_entry(dir, dentry->d_name.name, dentry->d_name.len, &de); |
| 186 | if (!bh || le16_to_cpu(de->ino) != inode->i_ino) | 194 | if (!bh || (le16_to_cpu(de->ino) != inode->i_ino)) |
| 187 | goto out_brelse; | 195 | goto out_brelse; |
| 188 | 196 | ||
| 189 | if (!inode->i_nlink) { | 197 | if (!inode->i_nlink) { |
| 190 | printf("unlinking non-existent file %s:%lu (nlink=%d)\n", inode->i_sb->s_id, | 198 | printf("unlinking non-existent file %s:%lu (nlink=%d)\n", |
| 191 | inode->i_ino, inode->i_nlink); | 199 | inode->i_sb->s_id, inode->i_ino, |
| 200 | inode->i_nlink); | ||
| 192 | inode->i_nlink = 1; | 201 | inode->i_nlink = 1; |
| 193 | } | 202 | } |
| 194 | de->ino = 0; | 203 | de->ino = 0; |
| @@ -205,12 +214,12 @@ out_brelse: | |||
| 205 | return error; | 214 | return error; |
| 206 | } | 215 | } |
| 207 | 216 | ||
| 208 | static int bfs_rename(struct inode * old_dir, struct dentry * old_dentry, | 217 | static int bfs_rename(struct inode *old_dir, struct dentry *old_dentry, |
| 209 | struct inode * new_dir, struct dentry * new_dentry) | 218 | struct inode *new_dir, struct dentry *new_dentry) |
| 210 | { | 219 | { |
| 211 | struct inode * old_inode, * new_inode; | 220 | struct inode *old_inode, *new_inode; |
| 212 | struct buffer_head * old_bh, * new_bh; | 221 | struct buffer_head *old_bh, *new_bh; |
| 213 | struct bfs_dirent * old_de, * new_de; | 222 | struct bfs_dirent *old_de, *new_de; |
| 214 | int error = -ENOENT; | 223 | int error = -ENOENT; |
| 215 | 224 | ||
| 216 | old_bh = new_bh = NULL; | 225 | old_bh = new_bh = NULL; |
| @@ -223,7 +232,7 @@ static int bfs_rename(struct inode * old_dir, struct dentry * old_dentry, | |||
| 223 | old_dentry->d_name.name, | 232 | old_dentry->d_name.name, |
| 224 | old_dentry->d_name.len, &old_de); | 233 | old_dentry->d_name.len, &old_de); |
| 225 | 234 | ||
| 226 | if (!old_bh || le16_to_cpu(old_de->ino) != old_inode->i_ino) | 235 | if (!old_bh || (le16_to_cpu(old_de->ino) != old_inode->i_ino)) |
| 227 | goto end_rename; | 236 | goto end_rename; |
| 228 | 237 | ||
| 229 | error = -EPERM; | 238 | error = -EPERM; |
| @@ -239,7 +248,8 @@ static int bfs_rename(struct inode * old_dir, struct dentry * old_dentry, | |||
| 239 | if (!new_bh) { | 248 | if (!new_bh) { |
| 240 | error = bfs_add_entry(new_dir, | 249 | error = bfs_add_entry(new_dir, |
| 241 | new_dentry->d_name.name, | 250 | new_dentry->d_name.name, |
| 242 | new_dentry->d_name.len, old_inode->i_ino); | 251 | new_dentry->d_name.len, |
| 252 | old_inode->i_ino); | ||
| 243 | if (error) | 253 | if (error) |
| 244 | goto end_rename; | 254 | goto end_rename; |
| 245 | } | 255 | } |
| @@ -268,11 +278,12 @@ const struct inode_operations bfs_dir_inops = { | |||
| 268 | .rename = bfs_rename, | 278 | .rename = bfs_rename, |
| 269 | }; | 279 | }; |
| 270 | 280 | ||
| 271 | static int bfs_add_entry(struct inode * dir, const unsigned char * name, int namelen, int ino) | 281 | static int bfs_add_entry(struct inode *dir, const unsigned char *name, |
| 282 | int namelen, int ino) | ||
| 272 | { | 283 | { |
| 273 | struct buffer_head * bh; | 284 | struct buffer_head *bh; |
| 274 | struct bfs_dirent * de; | 285 | struct bfs_dirent *de; |
| 275 | int block, sblock, eblock, off, eoff; | 286 | int block, sblock, eblock, off, pos; |
| 276 | int i; | 287 | int i; |
| 277 | 288 | ||
| 278 | dprintf("name=%s, namelen=%d\n", name, namelen); | 289 | dprintf("name=%s, namelen=%d\n", name, namelen); |
| @@ -284,27 +295,24 @@ static int bfs_add_entry(struct inode * dir, const unsigned char * name, int nam | |||
| 284 | 295 | ||
| 285 | sblock = BFS_I(dir)->i_sblock; | 296 | sblock = BFS_I(dir)->i_sblock; |
| 286 | eblock = BFS_I(dir)->i_eblock; | 297 | eblock = BFS_I(dir)->i_eblock; |
| 287 | eoff = dir->i_size % BFS_BSIZE; | 298 | for (block = sblock; block <= eblock; block++) { |
| 288 | for (block=sblock; block<=eblock; block++) { | ||
| 289 | bh = sb_bread(dir->i_sb, block); | 299 | bh = sb_bread(dir->i_sb, block); |
| 290 | if(!bh) | 300 | if (!bh) |
| 291 | return -ENOSPC; | 301 | return -ENOSPC; |
| 292 | for (off=0; off<BFS_BSIZE; off+=BFS_DIRENT_SIZE) { | 302 | for (off = 0; off < BFS_BSIZE; off += BFS_DIRENT_SIZE) { |
| 293 | de = (struct bfs_dirent *)(bh->b_data + off); | 303 | de = (struct bfs_dirent *)(bh->b_data + off); |
| 294 | if (block==eblock && off>=eoff) { | ||
| 295 | /* Do not read/interpret the garbage in the end of eblock. */ | ||
| 296 | de->ino = 0; | ||
| 297 | } | ||
| 298 | if (!de->ino) { | 304 | if (!de->ino) { |
| 299 | if ((block-sblock)*BFS_BSIZE + off >= dir->i_size) { | 305 | pos = (block - sblock) * BFS_BSIZE + off; |
| 306 | if (pos >= dir->i_size) { | ||
| 300 | dir->i_size += BFS_DIRENT_SIZE; | 307 | dir->i_size += BFS_DIRENT_SIZE; |
| 301 | dir->i_ctime = CURRENT_TIME_SEC; | 308 | dir->i_ctime = CURRENT_TIME_SEC; |
| 302 | } | 309 | } |
| 303 | dir->i_mtime = CURRENT_TIME_SEC; | 310 | dir->i_mtime = CURRENT_TIME_SEC; |
| 304 | mark_inode_dirty(dir); | 311 | mark_inode_dirty(dir); |
| 305 | de->ino = cpu_to_le16((u16)ino); | 312 | de->ino = cpu_to_le16((u16)ino); |
| 306 | for (i=0; i<BFS_NAMELEN; i++) | 313 | for (i = 0; i < BFS_NAMELEN; i++) |
| 307 | de->name[i] = (i < namelen) ? name[i] : 0; | 314 | de->name[i] = |
| 315 | (i < namelen) ? name[i] : 0; | ||
| 308 | mark_buffer_dirty(bh); | 316 | mark_buffer_dirty(bh); |
| 309 | brelse(bh); | 317 | brelse(bh); |
| 310 | return 0; | 318 | return 0; |
| @@ -315,25 +323,26 @@ static int bfs_add_entry(struct inode * dir, const unsigned char * name, int nam | |||
| 315 | return -ENOSPC; | 323 | return -ENOSPC; |
| 316 | } | 324 | } |
| 317 | 325 | ||
| 318 | static inline int bfs_namecmp(int len, const unsigned char * name, const char * buffer) | 326 | static inline int bfs_namecmp(int len, const unsigned char *name, |
| 327 | const char *buffer) | ||
| 319 | { | 328 | { |
| 320 | if (len < BFS_NAMELEN && buffer[len]) | 329 | if ((len < BFS_NAMELEN) && buffer[len]) |
| 321 | return 0; | 330 | return 0; |
| 322 | return !memcmp(name, buffer, len); | 331 | return !memcmp(name, buffer, len); |
| 323 | } | 332 | } |
| 324 | 333 | ||
| 325 | static struct buffer_head * bfs_find_entry(struct inode * dir, | 334 | static struct buffer_head *bfs_find_entry(struct inode *dir, |
| 326 | const unsigned char * name, int namelen, struct bfs_dirent ** res_dir) | 335 | const unsigned char *name, int namelen, |
| 336 | struct bfs_dirent **res_dir) | ||
| 327 | { | 337 | { |
| 328 | unsigned long block, offset; | 338 | unsigned long block = 0, offset = 0; |
| 329 | struct buffer_head * bh; | 339 | struct buffer_head *bh = NULL; |
| 330 | struct bfs_dirent * de; | 340 | struct bfs_dirent *de; |
| 331 | 341 | ||
| 332 | *res_dir = NULL; | 342 | *res_dir = NULL; |
| 333 | if (namelen > BFS_NAMELEN) | 343 | if (namelen > BFS_NAMELEN) |
| 334 | return NULL; | 344 | return NULL; |
| 335 | bh = NULL; | 345 | |
| 336 | block = offset = 0; | ||
| 337 | while (block * BFS_BSIZE + offset < dir->i_size) { | 346 | while (block * BFS_BSIZE + offset < dir->i_size) { |
| 338 | if (!bh) { | 347 | if (!bh) { |
| 339 | bh = sb_bread(dir->i_sb, BFS_I(dir)->i_sblock + block); | 348 | bh = sb_bread(dir->i_sb, BFS_I(dir)->i_sblock + block); |
| @@ -344,7 +353,8 @@ static struct buffer_head * bfs_find_entry(struct inode * dir, | |||
| 344 | } | 353 | } |
| 345 | de = (struct bfs_dirent *)(bh->b_data + offset); | 354 | de = (struct bfs_dirent *)(bh->b_data + offset); |
| 346 | offset += BFS_DIRENT_SIZE; | 355 | offset += BFS_DIRENT_SIZE; |
| 347 | if (le16_to_cpu(de->ino) && bfs_namecmp(namelen, name, de->name)) { | 356 | if (le16_to_cpu(de->ino) && |
| 357 | bfs_namecmp(namelen, name, de->name)) { | ||
| 348 | *res_dir = de; | 358 | *res_dir = de; |
| 349 | return bh; | 359 | return bh; |
| 350 | } | 360 | } |
diff --git a/fs/bfs/file.c b/fs/bfs/file.c index 911b4ccf470f..b11e63e8fbcd 100644 --- a/fs/bfs/file.c +++ b/fs/bfs/file.c | |||
| @@ -2,6 +2,11 @@ | |||
| 2 | * fs/bfs/file.c | 2 | * fs/bfs/file.c |
| 3 | * BFS file operations. | 3 | * BFS file operations. |
| 4 | * Copyright (C) 1999,2000 Tigran Aivazian <tigran@veritas.com> | 4 | * Copyright (C) 1999,2000 Tigran Aivazian <tigran@veritas.com> |
| 5 | * | ||
| 6 | * Make the file block allocation algorithm understand the size | ||
| 7 | * of the underlying block device. | ||
| 8 | * Copyright (C) 2007 Dmitri Vorobiev <dmitri.vorobiev@gmail.com> | ||
| 9 | * | ||
| 5 | */ | 10 | */ |
| 6 | 11 | ||
| 7 | #include <linux/fs.h> | 12 | #include <linux/fs.h> |
| @@ -27,7 +32,8 @@ const struct file_operations bfs_file_operations = { | |||
| 27 | .splice_read = generic_file_splice_read, | 32 | .splice_read = generic_file_splice_read, |
| 28 | }; | 33 | }; |
| 29 | 34 | ||
| 30 | static int bfs_move_block(unsigned long from, unsigned long to, struct super_block *sb) | 35 | static int bfs_move_block(unsigned long from, unsigned long to, |
| 36 | struct super_block *sb) | ||
| 31 | { | 37 | { |
| 32 | struct buffer_head *bh, *new; | 38 | struct buffer_head *bh, *new; |
| 33 | 39 | ||
| @@ -43,21 +49,22 @@ static int bfs_move_block(unsigned long from, unsigned long to, struct super_blo | |||
| 43 | } | 49 | } |
| 44 | 50 | ||
| 45 | static int bfs_move_blocks(struct super_block *sb, unsigned long start, | 51 | static int bfs_move_blocks(struct super_block *sb, unsigned long start, |
| 46 | unsigned long end, unsigned long where) | 52 | unsigned long end, unsigned long where) |
| 47 | { | 53 | { |
| 48 | unsigned long i; | 54 | unsigned long i; |
| 49 | 55 | ||
| 50 | dprintf("%08lx-%08lx->%08lx\n", start, end, where); | 56 | dprintf("%08lx-%08lx->%08lx\n", start, end, where); |
| 51 | for (i = start; i <= end; i++) | 57 | for (i = start; i <= end; i++) |
| 52 | if(bfs_move_block(i, where + i, sb)) { | 58 | if(bfs_move_block(i, where + i, sb)) { |
| 53 | dprintf("failed to move block %08lx -> %08lx\n", i, where + i); | 59 | dprintf("failed to move block %08lx -> %08lx\n", i, |
| 60 | where + i); | ||
| 54 | return -EIO; | 61 | return -EIO; |
| 55 | } | 62 | } |
| 56 | return 0; | 63 | return 0; |
| 57 | } | 64 | } |
| 58 | 65 | ||
| 59 | static int bfs_get_block(struct inode * inode, sector_t block, | 66 | static int bfs_get_block(struct inode *inode, sector_t block, |
| 60 | struct buffer_head * bh_result, int create) | 67 | struct buffer_head *bh_result, int create) |
| 61 | { | 68 | { |
| 62 | unsigned long phys; | 69 | unsigned long phys; |
| 63 | int err; | 70 | int err; |
| @@ -66,9 +73,6 @@ static int bfs_get_block(struct inode * inode, sector_t block, | |||
| 66 | struct bfs_inode_info *bi = BFS_I(inode); | 73 | struct bfs_inode_info *bi = BFS_I(inode); |
| 67 | struct buffer_head *sbh = info->si_sbh; | 74 | struct buffer_head *sbh = info->si_sbh; |
| 68 | 75 | ||
| 69 | if (block > info->si_blocks) | ||
| 70 | return -EIO; | ||
| 71 | |||
| 72 | phys = bi->i_sblock + block; | 76 | phys = bi->i_sblock + block; |
| 73 | if (!create) { | 77 | if (!create) { |
| 74 | if (phys <= bi->i_eblock) { | 78 | if (phys <= bi->i_eblock) { |
| @@ -79,21 +83,29 @@ static int bfs_get_block(struct inode * inode, sector_t block, | |||
| 79 | return 0; | 83 | return 0; |
| 80 | } | 84 | } |
| 81 | 85 | ||
| 82 | /* if the file is not empty and the requested block is within the range | 86 | /* |
| 83 | of blocks allocated for this file, we can grant it */ | 87 | * If the file is not empty and the requested block is within the |
| 84 | if (inode->i_size && phys <= bi->i_eblock) { | 88 | * range of blocks allocated for this file, we can grant it. |
| 89 | */ | ||
| 90 | if (bi->i_sblock && (phys <= bi->i_eblock)) { | ||
| 85 | dprintf("c=%d, b=%08lx, phys=%08lx (interim block granted)\n", | 91 | dprintf("c=%d, b=%08lx, phys=%08lx (interim block granted)\n", |
| 86 | create, (unsigned long)block, phys); | 92 | create, (unsigned long)block, phys); |
| 87 | map_bh(bh_result, sb, phys); | 93 | map_bh(bh_result, sb, phys); |
| 88 | return 0; | 94 | return 0; |
| 89 | } | 95 | } |
| 90 | 96 | ||
| 91 | /* the rest has to be protected against itself */ | 97 | /* The file will be extended, so let's see if there is enough space. */ |
| 98 | if (phys >= info->si_blocks) | ||
| 99 | return -ENOSPC; | ||
| 100 | |||
| 101 | /* The rest has to be protected against itself. */ | ||
| 92 | lock_kernel(); | 102 | lock_kernel(); |
| 93 | 103 | ||
| 94 | /* if the last data block for this file is the last allocated | 104 | /* |
| 95 | block, we can extend the file trivially, without moving it | 105 | * If the last data block for this file is the last allocated |
| 96 | anywhere */ | 106 | * block, we can extend the file trivially, without moving it |
| 107 | * anywhere. | ||
| 108 | */ | ||
| 97 | if (bi->i_eblock == info->si_lf_eblk) { | 109 | if (bi->i_eblock == info->si_lf_eblk) { |
| 98 | dprintf("c=%d, b=%08lx, phys=%08lx (simple extension)\n", | 110 | dprintf("c=%d, b=%08lx, phys=%08lx (simple extension)\n", |
| 99 | create, (unsigned long)block, phys); | 111 | create, (unsigned long)block, phys); |
| @@ -106,13 +118,19 @@ static int bfs_get_block(struct inode * inode, sector_t block, | |||
| 106 | goto out; | 118 | goto out; |
| 107 | } | 119 | } |
| 108 | 120 | ||
| 109 | /* Ok, we have to move this entire file to the next free block */ | 121 | /* Ok, we have to move this entire file to the next free block. */ |
| 110 | phys = info->si_lf_eblk + 1; | 122 | phys = info->si_lf_eblk + 1; |
| 111 | if (bi->i_sblock) { /* if data starts on block 0 then there is no data */ | 123 | if (phys + block >= info->si_blocks) { |
| 124 | err = -ENOSPC; | ||
| 125 | goto out; | ||
| 126 | } | ||
| 127 | |||
| 128 | if (bi->i_sblock) { | ||
| 112 | err = bfs_move_blocks(inode->i_sb, bi->i_sblock, | 129 | err = bfs_move_blocks(inode->i_sb, bi->i_sblock, |
| 113 | bi->i_eblock, phys); | 130 | bi->i_eblock, phys); |
| 114 | if (err) { | 131 | if (err) { |
| 115 | dprintf("failed to move ino=%08lx -> fs corruption\n", inode->i_ino); | 132 | dprintf("failed to move ino=%08lx -> fs corruption\n", |
| 133 | inode->i_ino); | ||
| 116 | goto out; | 134 | goto out; |
| 117 | } | 135 | } |
| 118 | } else | 136 | } else |
| @@ -124,8 +142,10 @@ static int bfs_get_block(struct inode * inode, sector_t block, | |||
| 124 | phys += block; | 142 | phys += block; |
| 125 | info->si_lf_eblk = bi->i_eblock = phys; | 143 | info->si_lf_eblk = bi->i_eblock = phys; |
| 126 | 144 | ||
| 127 | /* this assumes nothing can write the inode back while we are here | 145 | /* |
| 128 | * and thus update inode->i_blocks! (XXX)*/ | 146 | * This assumes nothing can write the inode back while we are here |
| 147 | * and thus update inode->i_blocks! (XXX) | ||
| 148 | */ | ||
| 129 | info->si_freeb -= bi->i_eblock - bi->i_sblock + 1 - inode->i_blocks; | 149 | info->si_freeb -= bi->i_eblock - bi->i_sblock + 1 - inode->i_blocks; |
| 130 | mark_inode_dirty(inode); | 150 | mark_inode_dirty(inode); |
| 131 | mark_buffer_dirty(sbh); | 151 | mark_buffer_dirty(sbh); |
diff --git a/fs/bfs/inode.c b/fs/bfs/inode.c index 7bd9c2bbe6ee..294c41baef6e 100644 --- a/fs/bfs/inode.c +++ b/fs/bfs/inode.c | |||
| @@ -30,25 +30,26 @@ MODULE_LICENSE("GPL"); | |||
| 30 | #define dprintf(x...) | 30 | #define dprintf(x...) |
| 31 | #endif | 31 | #endif |
| 32 | 32 | ||
| 33 | void dump_imap(const char *prefix, struct super_block * s); | 33 | void dump_imap(const char *prefix, struct super_block *s); |
| 34 | 34 | ||
| 35 | static void bfs_read_inode(struct inode * inode) | 35 | static void bfs_read_inode(struct inode *inode) |
| 36 | { | 36 | { |
| 37 | unsigned long ino = inode->i_ino; | 37 | unsigned long ino = inode->i_ino; |
| 38 | struct bfs_inode * di; | 38 | struct bfs_inode *di; |
| 39 | struct buffer_head * bh; | 39 | struct buffer_head *bh; |
| 40 | int block, off; | 40 | int block, off; |
| 41 | 41 | ||
| 42 | if (ino < BFS_ROOT_INO || ino > BFS_SB(inode->i_sb)->si_lasti) { | 42 | if ((ino < BFS_ROOT_INO) || (ino > BFS_SB(inode->i_sb)->si_lasti)) { |
| 43 | printf("Bad inode number %s:%08lx\n", inode->i_sb->s_id, ino); | 43 | printf("Bad inode number %s:%08lx\n", inode->i_sb->s_id, ino); |
| 44 | make_bad_inode(inode); | 44 | make_bad_inode(inode); |
| 45 | return; | 45 | return; |
| 46 | } | 46 | } |
| 47 | 47 | ||
| 48 | block = (ino - BFS_ROOT_INO)/BFS_INODES_PER_BLOCK + 1; | 48 | block = (ino - BFS_ROOT_INO) / BFS_INODES_PER_BLOCK + 1; |
| 49 | bh = sb_bread(inode->i_sb, block); | 49 | bh = sb_bread(inode->i_sb, block); |
| 50 | if (!bh) { | 50 | if (!bh) { |
| 51 | printf("Unable to read inode %s:%08lx\n", inode->i_sb->s_id, ino); | 51 | printf("Unable to read inode %s:%08lx\n", inode->i_sb->s_id, |
| 52 | ino); | ||
| 52 | make_bad_inode(inode); | 53 | make_bad_inode(inode); |
| 53 | return; | 54 | return; |
| 54 | } | 55 | } |
| @@ -56,7 +57,7 @@ static void bfs_read_inode(struct inode * inode) | |||
| 56 | off = (ino - BFS_ROOT_INO) % BFS_INODES_PER_BLOCK; | 57 | off = (ino - BFS_ROOT_INO) % BFS_INODES_PER_BLOCK; |
| 57 | di = (struct bfs_inode *)bh->b_data + off; | 58 | di = (struct bfs_inode *)bh->b_data + off; |
| 58 | 59 | ||
| 59 | inode->i_mode = 0x0000FFFF & le32_to_cpu(di->i_mode); | 60 | inode->i_mode = 0x0000FFFF & le32_to_cpu(di->i_mode); |
| 60 | if (le32_to_cpu(di->i_vtype) == BFS_VDIR) { | 61 | if (le32_to_cpu(di->i_vtype) == BFS_VDIR) { |
| 61 | inode->i_mode |= S_IFDIR; | 62 | inode->i_mode |= S_IFDIR; |
| 62 | inode->i_op = &bfs_dir_inops; | 63 | inode->i_op = &bfs_dir_inops; |
| @@ -70,48 +71,48 @@ static void bfs_read_inode(struct inode * inode) | |||
| 70 | 71 | ||
| 71 | BFS_I(inode)->i_sblock = le32_to_cpu(di->i_sblock); | 72 | BFS_I(inode)->i_sblock = le32_to_cpu(di->i_sblock); |
| 72 | BFS_I(inode)->i_eblock = le32_to_cpu(di->i_eblock); | 73 | BFS_I(inode)->i_eblock = le32_to_cpu(di->i_eblock); |
| 74 | BFS_I(inode)->i_dsk_ino = le16_to_cpu(di->i_ino); | ||
| 73 | inode->i_uid = le32_to_cpu(di->i_uid); | 75 | inode->i_uid = le32_to_cpu(di->i_uid); |
| 74 | inode->i_gid = le32_to_cpu(di->i_gid); | 76 | inode->i_gid = le32_to_cpu(di->i_gid); |
| 75 | inode->i_nlink = le32_to_cpu(di->i_nlink); | 77 | inode->i_nlink = le32_to_cpu(di->i_nlink); |
| 76 | inode->i_size = BFS_FILESIZE(di); | 78 | inode->i_size = BFS_FILESIZE(di); |
| 77 | inode->i_blocks = BFS_FILEBLOCKS(di); | 79 | inode->i_blocks = BFS_FILEBLOCKS(di); |
| 78 | if (inode->i_size || inode->i_blocks) dprintf("Registered inode with %lld size, %ld blocks\n", inode->i_size, inode->i_blocks); | ||
| 79 | inode->i_atime.tv_sec = le32_to_cpu(di->i_atime); | 80 | inode->i_atime.tv_sec = le32_to_cpu(di->i_atime); |
| 80 | inode->i_mtime.tv_sec = le32_to_cpu(di->i_mtime); | 81 | inode->i_mtime.tv_sec = le32_to_cpu(di->i_mtime); |
| 81 | inode->i_ctime.tv_sec = le32_to_cpu(di->i_ctime); | 82 | inode->i_ctime.tv_sec = le32_to_cpu(di->i_ctime); |
| 82 | inode->i_atime.tv_nsec = 0; | 83 | inode->i_atime.tv_nsec = 0; |
| 83 | inode->i_mtime.tv_nsec = 0; | 84 | inode->i_mtime.tv_nsec = 0; |
| 84 | inode->i_ctime.tv_nsec = 0; | 85 | inode->i_ctime.tv_nsec = 0; |
| 85 | BFS_I(inode)->i_dsk_ino = le16_to_cpu(di->i_ino); /* can be 0 so we store a copy */ | ||
| 86 | 86 | ||
| 87 | brelse(bh); | 87 | brelse(bh); |
| 88 | } | 88 | } |
| 89 | 89 | ||
| 90 | static int bfs_write_inode(struct inode * inode, int unused) | 90 | static int bfs_write_inode(struct inode *inode, int unused) |
| 91 | { | 91 | { |
| 92 | unsigned int ino = (u16)inode->i_ino; | 92 | unsigned int ino = (u16)inode->i_ino; |
| 93 | unsigned long i_sblock; | 93 | unsigned long i_sblock; |
| 94 | struct bfs_inode * di; | 94 | struct bfs_inode *di; |
| 95 | struct buffer_head * bh; | 95 | struct buffer_head *bh; |
| 96 | int block, off; | 96 | int block, off; |
| 97 | 97 | ||
| 98 | dprintf("ino=%08x\n", ino); | 98 | dprintf("ino=%08x\n", ino); |
| 99 | 99 | ||
| 100 | if (ino < BFS_ROOT_INO || ino > BFS_SB(inode->i_sb)->si_lasti) { | 100 | if ((ino < BFS_ROOT_INO) || (ino > BFS_SB(inode->i_sb)->si_lasti)) { |
| 101 | printf("Bad inode number %s:%08x\n", inode->i_sb->s_id, ino); | 101 | printf("Bad inode number %s:%08x\n", inode->i_sb->s_id, ino); |
| 102 | return -EIO; | 102 | return -EIO; |
| 103 | } | 103 | } |
| 104 | 104 | ||
| 105 | lock_kernel(); | 105 | lock_kernel(); |
| 106 | block = (ino - BFS_ROOT_INO)/BFS_INODES_PER_BLOCK + 1; | 106 | block = (ino - BFS_ROOT_INO) / BFS_INODES_PER_BLOCK + 1; |
| 107 | bh = sb_bread(inode->i_sb, block); | 107 | bh = sb_bread(inode->i_sb, block); |
| 108 | if (!bh) { | 108 | if (!bh) { |
| 109 | printf("Unable to read inode %s:%08x\n", inode->i_sb->s_id, ino); | 109 | printf("Unable to read inode %s:%08x\n", |
| 110 | inode->i_sb->s_id, ino); | ||
| 110 | unlock_kernel(); | 111 | unlock_kernel(); |
| 111 | return -EIO; | 112 | return -EIO; |
| 112 | } | 113 | } |
| 113 | 114 | ||
| 114 | off = (ino - BFS_ROOT_INO)%BFS_INODES_PER_BLOCK; | 115 | off = (ino - BFS_ROOT_INO) % BFS_INODES_PER_BLOCK; |
| 115 | di = (struct bfs_inode *)bh->b_data + off; | 116 | di = (struct bfs_inode *)bh->b_data + off; |
| 116 | 117 | ||
| 117 | if (ino == BFS_ROOT_INO) | 118 | if (ino == BFS_ROOT_INO) |
| @@ -133,27 +134,26 @@ static int bfs_write_inode(struct inode * inode, int unused) | |||
| 133 | di->i_eoffset = cpu_to_le32(i_sblock * BFS_BSIZE + inode->i_size - 1); | 134 | di->i_eoffset = cpu_to_le32(i_sblock * BFS_BSIZE + inode->i_size - 1); |
| 134 | 135 | ||
| 135 | mark_buffer_dirty(bh); | 136 | mark_buffer_dirty(bh); |
| 136 | dprintf("Written ino=%d into %d:%d\n",le16_to_cpu(di->i_ino),block,off); | ||
| 137 | brelse(bh); | 137 | brelse(bh); |
| 138 | unlock_kernel(); | 138 | unlock_kernel(); |
| 139 | return 0; | 139 | return 0; |
| 140 | } | 140 | } |
| 141 | 141 | ||
| 142 | static void bfs_delete_inode(struct inode * inode) | 142 | static void bfs_delete_inode(struct inode *inode) |
| 143 | { | 143 | { |
| 144 | unsigned long ino = inode->i_ino; | 144 | unsigned long ino = inode->i_ino; |
| 145 | struct bfs_inode * di; | 145 | struct bfs_inode *di; |
| 146 | struct buffer_head * bh; | 146 | struct buffer_head *bh; |
| 147 | int block, off; | 147 | int block, off; |
| 148 | struct super_block * s = inode->i_sb; | 148 | struct super_block *s = inode->i_sb; |
| 149 | struct bfs_sb_info * info = BFS_SB(s); | 149 | struct bfs_sb_info *info = BFS_SB(s); |
| 150 | struct bfs_inode_info * bi = BFS_I(inode); | 150 | struct bfs_inode_info *bi = BFS_I(inode); |
| 151 | 151 | ||
| 152 | dprintf("ino=%08lx\n", ino); | 152 | dprintf("ino=%08lx\n", ino); |
| 153 | 153 | ||
| 154 | truncate_inode_pages(&inode->i_data, 0); | 154 | truncate_inode_pages(&inode->i_data, 0); |
| 155 | 155 | ||
| 156 | if (ino < BFS_ROOT_INO || ino > info->si_lasti) { | 156 | if ((ino < BFS_ROOT_INO) || (ino > info->si_lasti)) { |
| 157 | printf("invalid ino=%08lx\n", ino); | 157 | printf("invalid ino=%08lx\n", ino); |
| 158 | return; | 158 | return; |
| 159 | } | 159 | } |
| @@ -162,31 +162,35 @@ static void bfs_delete_inode(struct inode * inode) | |||
| 162 | inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME_SEC; | 162 | inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME_SEC; |
| 163 | lock_kernel(); | 163 | lock_kernel(); |
| 164 | mark_inode_dirty(inode); | 164 | mark_inode_dirty(inode); |
| 165 | block = (ino - BFS_ROOT_INO)/BFS_INODES_PER_BLOCK + 1; | 165 | |
| 166 | block = (ino - BFS_ROOT_INO) / BFS_INODES_PER_BLOCK + 1; | ||
| 166 | bh = sb_bread(s, block); | 167 | bh = sb_bread(s, block); |
| 167 | if (!bh) { | 168 | if (!bh) { |
| 168 | printf("Unable to read inode %s:%08lx\n", inode->i_sb->s_id, ino); | 169 | printf("Unable to read inode %s:%08lx\n", |
| 170 | inode->i_sb->s_id, ino); | ||
| 169 | unlock_kernel(); | 171 | unlock_kernel(); |
| 170 | return; | 172 | return; |
| 171 | } | 173 | } |
| 172 | off = (ino - BFS_ROOT_INO)%BFS_INODES_PER_BLOCK; | 174 | off = (ino - BFS_ROOT_INO) % BFS_INODES_PER_BLOCK; |
| 173 | di = (struct bfs_inode *) bh->b_data + off; | 175 | di = (struct bfs_inode *)bh->b_data + off; |
| 176 | memset((void *)di, 0, sizeof(struct bfs_inode)); | ||
| 177 | mark_buffer_dirty(bh); | ||
| 178 | brelse(bh); | ||
| 179 | |||
| 174 | if (bi->i_dsk_ino) { | 180 | if (bi->i_dsk_ino) { |
| 175 | info->si_freeb += 1 + bi->i_eblock - bi->i_sblock; | 181 | info->si_freeb += BFS_FILEBLOCKS(bi); |
| 176 | info->si_freei++; | 182 | info->si_freei++; |
| 177 | clear_bit(ino, info->si_imap); | 183 | clear_bit(ino, info->si_imap); |
| 178 | dump_imap("delete_inode", s); | 184 | dump_imap("delete_inode", s); |
| 179 | } | 185 | } |
| 180 | di->i_ino = 0; | ||
| 181 | di->i_sblock = 0; | ||
| 182 | mark_buffer_dirty(bh); | ||
| 183 | brelse(bh); | ||
| 184 | 186 | ||
| 185 | /* if this was the last file, make the previous | 187 | /* |
| 186 | block "last files last block" even if there is no real file there, | 188 | * If this was the last file, make the previous block |
| 187 | saves us 1 gap */ | 189 | * "last block of the last file" even if there is no |
| 188 | if (info->si_lf_eblk == BFS_I(inode)->i_eblock) { | 190 | * real file there, saves us 1 gap. |
| 189 | info->si_lf_eblk = BFS_I(inode)->i_sblock - 1; | 191 | */ |
| 192 | if (info->si_lf_eblk == bi->i_eblock) { | ||
| 193 | info->si_lf_eblk = bi->i_sblock - 1; | ||
| 190 | mark_buffer_dirty(info->si_sbh); | 194 | mark_buffer_dirty(info->si_sbh); |
| 191 | } | 195 | } |
| 192 | unlock_kernel(); | 196 | unlock_kernel(); |
| @@ -228,7 +232,7 @@ static void bfs_write_super(struct super_block *s) | |||
| 228 | unlock_kernel(); | 232 | unlock_kernel(); |
| 229 | } | 233 | } |
| 230 | 234 | ||
| 231 | static struct kmem_cache * bfs_inode_cachep; | 235 | static struct kmem_cache *bfs_inode_cachep; |
| 232 | 236 | ||
| 233 | static struct inode *bfs_alloc_inode(struct super_block *sb) | 237 | static struct inode *bfs_alloc_inode(struct super_block *sb) |
| 234 | { | 238 | { |
| @@ -279,7 +283,7 @@ static const struct super_operations bfs_sops = { | |||
| 279 | .statfs = bfs_statfs, | 283 | .statfs = bfs_statfs, |
| 280 | }; | 284 | }; |
| 281 | 285 | ||
| 282 | void dump_imap(const char *prefix, struct super_block * s) | 286 | void dump_imap(const char *prefix, struct super_block *s) |
| 283 | { | 287 | { |
| 284 | #ifdef DEBUG | 288 | #ifdef DEBUG |
| 285 | int i; | 289 | int i; |
| @@ -287,25 +291,26 @@ void dump_imap(const char *prefix, struct super_block * s) | |||
| 287 | 291 | ||
| 288 | if (!tmpbuf) | 292 | if (!tmpbuf) |
| 289 | return; | 293 | return; |
| 290 | for (i=BFS_SB(s)->si_lasti; i>=0; i--) { | 294 | for (i = BFS_SB(s)->si_lasti; i >= 0; i--) { |
| 291 | if (i > PAGE_SIZE-100) break; | 295 | if (i > PAGE_SIZE - 100) break; |
| 292 | if (test_bit(i, BFS_SB(s)->si_imap)) | 296 | if (test_bit(i, BFS_SB(s)->si_imap)) |
| 293 | strcat(tmpbuf, "1"); | 297 | strcat(tmpbuf, "1"); |
| 294 | else | 298 | else |
| 295 | strcat(tmpbuf, "0"); | 299 | strcat(tmpbuf, "0"); |
| 296 | } | 300 | } |
| 297 | printk(KERN_ERR "BFS-fs: %s: lasti=%08lx <%s>\n", prefix, BFS_SB(s)->si_lasti, tmpbuf); | 301 | printf("BFS-fs: %s: lasti=%08lx <%s>\n", |
| 302 | prefix, BFS_SB(s)->si_lasti, tmpbuf); | ||
| 298 | free_page((unsigned long)tmpbuf); | 303 | free_page((unsigned long)tmpbuf); |
| 299 | #endif | 304 | #endif |
| 300 | } | 305 | } |
| 301 | 306 | ||
| 302 | static int bfs_fill_super(struct super_block *s, void *data, int silent) | 307 | static int bfs_fill_super(struct super_block *s, void *data, int silent) |
| 303 | { | 308 | { |
| 304 | struct buffer_head * bh; | 309 | struct buffer_head *bh; |
| 305 | struct bfs_super_block * bfs_sb; | 310 | struct bfs_super_block *bfs_sb; |
| 306 | struct inode * inode; | 311 | struct inode *inode; |
| 307 | unsigned i, imap_len; | 312 | unsigned i, imap_len; |
| 308 | struct bfs_sb_info * info; | 313 | struct bfs_sb_info *info; |
| 309 | 314 | ||
| 310 | info = kzalloc(sizeof(*info), GFP_KERNEL); | 315 | info = kzalloc(sizeof(*info), GFP_KERNEL); |
| 311 | if (!info) | 316 | if (!info) |
| @@ -329,14 +334,14 @@ static int bfs_fill_super(struct super_block *s, void *data, int silent) | |||
| 329 | 334 | ||
| 330 | s->s_magic = BFS_MAGIC; | 335 | s->s_magic = BFS_MAGIC; |
| 331 | info->si_sbh = bh; | 336 | info->si_sbh = bh; |
| 332 | info->si_lasti = (le32_to_cpu(bfs_sb->s_start) - BFS_BSIZE)/sizeof(struct bfs_inode) | 337 | info->si_lasti = (le32_to_cpu(bfs_sb->s_start) - BFS_BSIZE) / |
| 333 | + BFS_ROOT_INO - 1; | 338 | sizeof(struct bfs_inode) |
| 334 | 339 | + BFS_ROOT_INO - 1; | |
| 335 | imap_len = info->si_lasti/8 + 1; | 340 | imap_len = (info->si_lasti / 8) + 1; |
| 336 | info->si_imap = kzalloc(imap_len, GFP_KERNEL); | 341 | info->si_imap = kzalloc(imap_len, GFP_KERNEL); |
| 337 | if (!info->si_imap) | 342 | if (!info->si_imap) |
| 338 | goto out; | 343 | goto out; |
| 339 | for (i=0; i<BFS_ROOT_INO; i++) | 344 | for (i = 0; i < BFS_ROOT_INO; i++) |
| 340 | set_bit(i, info->si_imap); | 345 | set_bit(i, info->si_imap); |
| 341 | 346 | ||
| 342 | s->s_op = &bfs_sops; | 347 | s->s_op = &bfs_sops; |
| @@ -352,16 +357,15 @@ static int bfs_fill_super(struct super_block *s, void *data, int silent) | |||
| 352 | goto out; | 357 | goto out; |
| 353 | } | 358 | } |
| 354 | 359 | ||
| 355 | info->si_blocks = (le32_to_cpu(bfs_sb->s_end) + 1)>>BFS_BSIZE_BITS; /* for statfs(2) */ | 360 | info->si_blocks = (le32_to_cpu(bfs_sb->s_end) + 1) >> BFS_BSIZE_BITS; |
| 356 | info->si_freeb = (le32_to_cpu(bfs_sb->s_end) + 1 - le32_to_cpu(bfs_sb->s_start))>>BFS_BSIZE_BITS; | 361 | info->si_freeb = (le32_to_cpu(bfs_sb->s_end) + 1 |
| 362 | - le32_to_cpu(bfs_sb->s_start)) >> BFS_BSIZE_BITS; | ||
| 357 | info->si_freei = 0; | 363 | info->si_freei = 0; |
| 358 | info->si_lf_eblk = 0; | 364 | info->si_lf_eblk = 0; |
| 359 | info->si_lf_sblk = 0; | ||
| 360 | info->si_lf_ioff = 0; | ||
| 361 | bh = NULL; | 365 | bh = NULL; |
| 362 | for (i=BFS_ROOT_INO; i<=info->si_lasti; i++) { | 366 | for (i = BFS_ROOT_INO; i <= info->si_lasti; i++) { |
| 363 | struct bfs_inode *di; | 367 | struct bfs_inode *di; |
| 364 | int block = (i - BFS_ROOT_INO)/BFS_INODES_PER_BLOCK + 1; | 368 | int block = (i - BFS_ROOT_INO) / BFS_INODES_PER_BLOCK + 1; |
| 365 | int off = (i - BFS_ROOT_INO) % BFS_INODES_PER_BLOCK; | 369 | int off = (i - BFS_ROOT_INO) % BFS_INODES_PER_BLOCK; |
| 366 | unsigned long sblock, eblock; | 370 | unsigned long sblock, eblock; |
| 367 | 371 | ||
| @@ -384,11 +388,8 @@ static int bfs_fill_super(struct super_block *s, void *data, int silent) | |||
| 384 | 388 | ||
| 385 | sblock = le32_to_cpu(di->i_sblock); | 389 | sblock = le32_to_cpu(di->i_sblock); |
| 386 | eblock = le32_to_cpu(di->i_eblock); | 390 | eblock = le32_to_cpu(di->i_eblock); |
| 387 | if (eblock > info->si_lf_eblk) { | 391 | if (eblock > info->si_lf_eblk) |
| 388 | info->si_lf_eblk = eblock; | 392 | info->si_lf_eblk = eblock; |
| 389 | info->si_lf_sblk = sblock; | ||
| 390 | info->si_lf_ioff = BFS_INO2OFF(i); | ||
| 391 | } | ||
| 392 | } | 393 | } |
| 393 | brelse(bh); | 394 | brelse(bh); |
| 394 | if (!(s->s_flags & MS_RDONLY)) { | 395 | if (!(s->s_flags & MS_RDONLY)) { |
diff --git a/fs/ecryptfs/read_write.c b/fs/ecryptfs/read_write.c index 2150edf9a58e..6b7474a4336a 100644 --- a/fs/ecryptfs/read_write.c +++ b/fs/ecryptfs/read_write.c | |||
| @@ -87,7 +87,7 @@ int ecryptfs_write_lower_page_segment(struct inode *ecryptfs_inode, | |||
| 87 | loff_t offset; | 87 | loff_t offset; |
| 88 | int rc; | 88 | int rc; |
| 89 | 89 | ||
| 90 | offset = ((((off_t)page_for_lower->index) << PAGE_CACHE_SHIFT) | 90 | offset = ((((loff_t)page_for_lower->index) << PAGE_CACHE_SHIFT) |
| 91 | + offset_in_page); | 91 | + offset_in_page); |
| 92 | virt = kmap(page_for_lower); | 92 | virt = kmap(page_for_lower); |
| 93 | rc = ecryptfs_write_lower(ecryptfs_inode, virt, offset, size); | 93 | rc = ecryptfs_write_lower(ecryptfs_inode, virt, offset, size); |
diff --git a/fs/ext2/ioctl.c b/fs/ext2/ioctl.c index c2324d5fe4ac..320b2cb3d4d2 100644 --- a/fs/ext2/ioctl.c +++ b/fs/ext2/ioctl.c | |||
| @@ -47,6 +47,11 @@ int ext2_ioctl (struct inode * inode, struct file * filp, unsigned int cmd, | |||
| 47 | flags &= ~EXT2_DIRSYNC_FL; | 47 | flags &= ~EXT2_DIRSYNC_FL; |
| 48 | 48 | ||
| 49 | mutex_lock(&inode->i_mutex); | 49 | mutex_lock(&inode->i_mutex); |
| 50 | /* Is it quota file? Do not allow user to mess with it */ | ||
| 51 | if (IS_NOQUOTA(inode)) { | ||
| 52 | mutex_unlock(&inode->i_mutex); | ||
| 53 | return -EPERM; | ||
| 54 | } | ||
| 50 | oldflags = ei->i_flags; | 55 | oldflags = ei->i_flags; |
| 51 | 56 | ||
| 52 | /* | 57 | /* |
diff --git a/fs/ext3/dir.c b/fs/ext3/dir.c index c8e4ee3af1d0..8ca3bfd72427 100644 --- a/fs/ext3/dir.c +++ b/fs/ext3/dir.c | |||
| @@ -67,7 +67,7 @@ int ext3_check_dir_entry (const char * function, struct inode * dir, | |||
| 67 | unsigned long offset) | 67 | unsigned long offset) |
| 68 | { | 68 | { |
| 69 | const char * error_msg = NULL; | 69 | const char * error_msg = NULL; |
| 70 | const int rlen = le16_to_cpu(de->rec_len); | 70 | const int rlen = ext3_rec_len_from_disk(de->rec_len); |
| 71 | 71 | ||
| 72 | if (rlen < EXT3_DIR_REC_LEN(1)) | 72 | if (rlen < EXT3_DIR_REC_LEN(1)) |
| 73 | error_msg = "rec_len is smaller than minimal"; | 73 | error_msg = "rec_len is smaller than minimal"; |
| @@ -173,10 +173,10 @@ revalidate: | |||
| 173 | * least that it is non-zero. A | 173 | * least that it is non-zero. A |
| 174 | * failure will be detected in the | 174 | * failure will be detected in the |
| 175 | * dirent test below. */ | 175 | * dirent test below. */ |
| 176 | if (le16_to_cpu(de->rec_len) < | 176 | if (ext3_rec_len_from_disk(de->rec_len) < |
| 177 | EXT3_DIR_REC_LEN(1)) | 177 | EXT3_DIR_REC_LEN(1)) |
| 178 | break; | 178 | break; |
| 179 | i += le16_to_cpu(de->rec_len); | 179 | i += ext3_rec_len_from_disk(de->rec_len); |
| 180 | } | 180 | } |
| 181 | offset = i; | 181 | offset = i; |
| 182 | filp->f_pos = (filp->f_pos & ~(sb->s_blocksize - 1)) | 182 | filp->f_pos = (filp->f_pos & ~(sb->s_blocksize - 1)) |
| @@ -197,7 +197,7 @@ revalidate: | |||
| 197 | ret = stored; | 197 | ret = stored; |
| 198 | goto out; | 198 | goto out; |
| 199 | } | 199 | } |
| 200 | offset += le16_to_cpu(de->rec_len); | 200 | offset += ext3_rec_len_from_disk(de->rec_len); |
| 201 | if (le32_to_cpu(de->inode)) { | 201 | if (le32_to_cpu(de->inode)) { |
| 202 | /* We might block in the next section | 202 | /* We might block in the next section |
| 203 | * if the data destination is | 203 | * if the data destination is |
| @@ -219,7 +219,7 @@ revalidate: | |||
| 219 | goto revalidate; | 219 | goto revalidate; |
| 220 | stored ++; | 220 | stored ++; |
| 221 | } | 221 | } |
| 222 | filp->f_pos += le16_to_cpu(de->rec_len); | 222 | filp->f_pos += ext3_rec_len_from_disk(de->rec_len); |
| 223 | } | 223 | } |
| 224 | offset = 0; | 224 | offset = 0; |
| 225 | brelse (bh); | 225 | brelse (bh); |
diff --git a/fs/ext3/ioctl.c b/fs/ext3/ioctl.c index 4a2a02c95bf9..023a070f55f1 100644 --- a/fs/ext3/ioctl.c +++ b/fs/ext3/ioctl.c | |||
| @@ -51,6 +51,11 @@ int ext3_ioctl (struct inode * inode, struct file * filp, unsigned int cmd, | |||
| 51 | flags &= ~EXT3_DIRSYNC_FL; | 51 | flags &= ~EXT3_DIRSYNC_FL; |
| 52 | 52 | ||
| 53 | mutex_lock(&inode->i_mutex); | 53 | mutex_lock(&inode->i_mutex); |
| 54 | /* Is it quota file? Do not allow user to mess with it */ | ||
| 55 | if (IS_NOQUOTA(inode)) { | ||
| 56 | mutex_unlock(&inode->i_mutex); | ||
| 57 | return -EPERM; | ||
| 58 | } | ||
| 54 | oldflags = ei->i_flags; | 59 | oldflags = ei->i_flags; |
| 55 | 60 | ||
| 56 | /* The JOURNAL_DATA flag is modifiable only by root */ | 61 | /* The JOURNAL_DATA flag is modifiable only by root */ |
diff --git a/fs/ext3/namei.c b/fs/ext3/namei.c index ec8170adac53..4ab6f76e63d0 100644 --- a/fs/ext3/namei.c +++ b/fs/ext3/namei.c | |||
| @@ -177,6 +177,16 @@ static int ext3_dx_add_entry(handle_t *handle, struct dentry *dentry, | |||
| 177 | struct inode *inode); | 177 | struct inode *inode); |
| 178 | 178 | ||
| 179 | /* | 179 | /* |
| 180 | * p is at least 6 bytes before the end of page | ||
| 181 | */ | ||
| 182 | static inline struct ext3_dir_entry_2 * | ||
| 183 | ext3_next_entry(struct ext3_dir_entry_2 *p) | ||
| 184 | { | ||
| 185 | return (struct ext3_dir_entry_2 *)((char *)p + | ||
| 186 | ext3_rec_len_from_disk(p->rec_len)); | ||
| 187 | } | ||
| 188 | |||
| 189 | /* | ||
| 180 | * Future: use high four bits of block for coalesce-on-delete flags | 190 | * Future: use high four bits of block for coalesce-on-delete flags |
| 181 | * Mask them off for now. | 191 | * Mask them off for now. |
| 182 | */ | 192 | */ |
| @@ -280,7 +290,7 @@ static struct stats dx_show_leaf(struct dx_hash_info *hinfo, struct ext3_dir_ent | |||
| 280 | space += EXT3_DIR_REC_LEN(de->name_len); | 290 | space += EXT3_DIR_REC_LEN(de->name_len); |
| 281 | names++; | 291 | names++; |
| 282 | } | 292 | } |
| 283 | de = (struct ext3_dir_entry_2 *) ((char *) de + le16_to_cpu(de->rec_len)); | 293 | de = ext3_next_entry(de); |
| 284 | } | 294 | } |
| 285 | printk("(%i)\n", names); | 295 | printk("(%i)\n", names); |
| 286 | return (struct stats) { names, space, 1 }; | 296 | return (struct stats) { names, space, 1 }; |
| @@ -547,14 +557,6 @@ static int ext3_htree_next_block(struct inode *dir, __u32 hash, | |||
| 547 | 557 | ||
| 548 | 558 | ||
| 549 | /* | 559 | /* |
| 550 | * p is at least 6 bytes before the end of page | ||
| 551 | */ | ||
| 552 | static inline struct ext3_dir_entry_2 *ext3_next_entry(struct ext3_dir_entry_2 *p) | ||
| 553 | { | ||
| 554 | return (struct ext3_dir_entry_2 *)((char*)p + le16_to_cpu(p->rec_len)); | ||
| 555 | } | ||
| 556 | |||
| 557 | /* | ||
| 558 | * This function fills a red-black tree with information from a | 560 | * This function fills a red-black tree with information from a |
| 559 | * directory block. It returns the number directory entries loaded | 561 | * directory block. It returns the number directory entries loaded |
| 560 | * into the tree. If there is an error it is returned in err. | 562 | * into the tree. If there is an error it is returned in err. |
| @@ -720,7 +722,7 @@ static int dx_make_map (struct ext3_dir_entry_2 *de, int size, | |||
| 720 | cond_resched(); | 722 | cond_resched(); |
| 721 | } | 723 | } |
| 722 | /* XXX: do we need to check rec_len == 0 case? -Chris */ | 724 | /* XXX: do we need to check rec_len == 0 case? -Chris */ |
| 723 | de = (struct ext3_dir_entry_2 *) ((char *) de + le16_to_cpu(de->rec_len)); | 725 | de = ext3_next_entry(de); |
| 724 | } | 726 | } |
| 725 | return count; | 727 | return count; |
| 726 | } | 728 | } |
| @@ -822,7 +824,7 @@ static inline int search_dirblock(struct buffer_head * bh, | |||
| 822 | return 1; | 824 | return 1; |
| 823 | } | 825 | } |
| 824 | /* prevent looping on a bad block */ | 826 | /* prevent looping on a bad block */ |
| 825 | de_len = le16_to_cpu(de->rec_len); | 827 | de_len = ext3_rec_len_from_disk(de->rec_len); |
| 826 | if (de_len <= 0) | 828 | if (de_len <= 0) |
| 827 | return -1; | 829 | return -1; |
| 828 | offset += de_len; | 830 | offset += de_len; |
| @@ -1130,7 +1132,7 @@ dx_move_dirents(char *from, char *to, struct dx_map_entry *map, int count) | |||
| 1130 | rec_len = EXT3_DIR_REC_LEN(de->name_len); | 1132 | rec_len = EXT3_DIR_REC_LEN(de->name_len); |
| 1131 | memcpy (to, de, rec_len); | 1133 | memcpy (to, de, rec_len); |
| 1132 | ((struct ext3_dir_entry_2 *) to)->rec_len = | 1134 | ((struct ext3_dir_entry_2 *) to)->rec_len = |
| 1133 | cpu_to_le16(rec_len); | 1135 | ext3_rec_len_to_disk(rec_len); |
| 1134 | de->inode = 0; | 1136 | de->inode = 0; |
| 1135 | map++; | 1137 | map++; |
| 1136 | to += rec_len; | 1138 | to += rec_len; |
| @@ -1149,13 +1151,12 @@ static struct ext3_dir_entry_2* dx_pack_dirents(char *base, int size) | |||
| 1149 | 1151 | ||
| 1150 | prev = to = de; | 1152 | prev = to = de; |
| 1151 | while ((char*)de < base + size) { | 1153 | while ((char*)de < base + size) { |
| 1152 | next = (struct ext3_dir_entry_2 *) ((char *) de + | 1154 | next = ext3_next_entry(de); |
| 1153 | le16_to_cpu(de->rec_len)); | ||
| 1154 | if (de->inode && de->name_len) { | 1155 | if (de->inode && de->name_len) { |
| 1155 | rec_len = EXT3_DIR_REC_LEN(de->name_len); | 1156 | rec_len = EXT3_DIR_REC_LEN(de->name_len); |
| 1156 | if (de > to) | 1157 | if (de > to) |
| 1157 | memmove(to, de, rec_len); | 1158 | memmove(to, de, rec_len); |
| 1158 | to->rec_len = cpu_to_le16(rec_len); | 1159 | to->rec_len = ext3_rec_len_to_disk(rec_len); |
| 1159 | prev = to; | 1160 | prev = to; |
| 1160 | to = (struct ext3_dir_entry_2 *) (((char *) to) + rec_len); | 1161 | to = (struct ext3_dir_entry_2 *) (((char *) to) + rec_len); |
| 1161 | } | 1162 | } |
| @@ -1229,8 +1230,8 @@ static struct ext3_dir_entry_2 *do_split(handle_t *handle, struct inode *dir, | |||
| 1229 | /* Fancy dance to stay within two buffers */ | 1230 | /* Fancy dance to stay within two buffers */ |
| 1230 | de2 = dx_move_dirents(data1, data2, map + split, count - split); | 1231 | de2 = dx_move_dirents(data1, data2, map + split, count - split); |
| 1231 | de = dx_pack_dirents(data1,blocksize); | 1232 | de = dx_pack_dirents(data1,blocksize); |
| 1232 | de->rec_len = cpu_to_le16(data1 + blocksize - (char *) de); | 1233 | de->rec_len = ext3_rec_len_to_disk(data1 + blocksize - (char *) de); |
| 1233 | de2->rec_len = cpu_to_le16(data2 + blocksize - (char *) de2); | 1234 | de2->rec_len = ext3_rec_len_to_disk(data2 + blocksize - (char *) de2); |
| 1234 | dxtrace(dx_show_leaf (hinfo, (struct ext3_dir_entry_2 *) data1, blocksize, 1)); | 1235 | dxtrace(dx_show_leaf (hinfo, (struct ext3_dir_entry_2 *) data1, blocksize, 1)); |
| 1235 | dxtrace(dx_show_leaf (hinfo, (struct ext3_dir_entry_2 *) data2, blocksize, 1)); | 1236 | dxtrace(dx_show_leaf (hinfo, (struct ext3_dir_entry_2 *) data2, blocksize, 1)); |
| 1236 | 1237 | ||
| @@ -1300,7 +1301,7 @@ static int add_dirent_to_buf(handle_t *handle, struct dentry *dentry, | |||
| 1300 | return -EEXIST; | 1301 | return -EEXIST; |
| 1301 | } | 1302 | } |
| 1302 | nlen = EXT3_DIR_REC_LEN(de->name_len); | 1303 | nlen = EXT3_DIR_REC_LEN(de->name_len); |
| 1303 | rlen = le16_to_cpu(de->rec_len); | 1304 | rlen = ext3_rec_len_from_disk(de->rec_len); |
| 1304 | if ((de->inode? rlen - nlen: rlen) >= reclen) | 1305 | if ((de->inode? rlen - nlen: rlen) >= reclen) |
| 1305 | break; | 1306 | break; |
| 1306 | de = (struct ext3_dir_entry_2 *)((char *)de + rlen); | 1307 | de = (struct ext3_dir_entry_2 *)((char *)de + rlen); |
| @@ -1319,11 +1320,11 @@ static int add_dirent_to_buf(handle_t *handle, struct dentry *dentry, | |||
| 1319 | 1320 | ||
| 1320 | /* By now the buffer is marked for journaling */ | 1321 | /* By now the buffer is marked for journaling */ |
| 1321 | nlen = EXT3_DIR_REC_LEN(de->name_len); | 1322 | nlen = EXT3_DIR_REC_LEN(de->name_len); |
| 1322 | rlen = le16_to_cpu(de->rec_len); | 1323 | rlen = ext3_rec_len_from_disk(de->rec_len); |
| 1323 | if (de->inode) { | 1324 | if (de->inode) { |
| 1324 | struct ext3_dir_entry_2 *de1 = (struct ext3_dir_entry_2 *)((char *)de + nlen); | 1325 | struct ext3_dir_entry_2 *de1 = (struct ext3_dir_entry_2 *)((char *)de + nlen); |
| 1325 | de1->rec_len = cpu_to_le16(rlen - nlen); | 1326 | de1->rec_len = ext3_rec_len_to_disk(rlen - nlen); |
| 1326 | de->rec_len = cpu_to_le16(nlen); | 1327 | de->rec_len = ext3_rec_len_to_disk(nlen); |
| 1327 | de = de1; | 1328 | de = de1; |
| 1328 | } | 1329 | } |
| 1329 | de->file_type = EXT3_FT_UNKNOWN; | 1330 | de->file_type = EXT3_FT_UNKNOWN; |
| @@ -1400,17 +1401,18 @@ static int make_indexed_dir(handle_t *handle, struct dentry *dentry, | |||
| 1400 | 1401 | ||
| 1401 | /* The 0th block becomes the root, move the dirents out */ | 1402 | /* The 0th block becomes the root, move the dirents out */ |
| 1402 | fde = &root->dotdot; | 1403 | fde = &root->dotdot; |
| 1403 | de = (struct ext3_dir_entry_2 *)((char *)fde + le16_to_cpu(fde->rec_len)); | 1404 | de = (struct ext3_dir_entry_2 *)((char *)fde + |
| 1405 | ext3_rec_len_from_disk(fde->rec_len)); | ||
| 1404 | len = ((char *) root) + blocksize - (char *) de; | 1406 | len = ((char *) root) + blocksize - (char *) de; |
| 1405 | memcpy (data1, de, len); | 1407 | memcpy (data1, de, len); |
| 1406 | de = (struct ext3_dir_entry_2 *) data1; | 1408 | de = (struct ext3_dir_entry_2 *) data1; |
| 1407 | top = data1 + len; | 1409 | top = data1 + len; |
| 1408 | while ((char *)(de2=(void*)de+le16_to_cpu(de->rec_len)) < top) | 1410 | while ((char *)(de2 = ext3_next_entry(de)) < top) |
| 1409 | de = de2; | 1411 | de = de2; |
| 1410 | de->rec_len = cpu_to_le16(data1 + blocksize - (char *) de); | 1412 | de->rec_len = ext3_rec_len_to_disk(data1 + blocksize - (char *) de); |
| 1411 | /* Initialize the root; the dot dirents already exist */ | 1413 | /* Initialize the root; the dot dirents already exist */ |
| 1412 | de = (struct ext3_dir_entry_2 *) (&root->dotdot); | 1414 | de = (struct ext3_dir_entry_2 *) (&root->dotdot); |
| 1413 | de->rec_len = cpu_to_le16(blocksize - EXT3_DIR_REC_LEN(2)); | 1415 | de->rec_len = ext3_rec_len_to_disk(blocksize - EXT3_DIR_REC_LEN(2)); |
| 1414 | memset (&root->info, 0, sizeof(root->info)); | 1416 | memset (&root->info, 0, sizeof(root->info)); |
| 1415 | root->info.info_length = sizeof(root->info); | 1417 | root->info.info_length = sizeof(root->info); |
| 1416 | root->info.hash_version = EXT3_SB(dir->i_sb)->s_def_hash_version; | 1418 | root->info.hash_version = EXT3_SB(dir->i_sb)->s_def_hash_version; |
| @@ -1490,7 +1492,7 @@ static int ext3_add_entry (handle_t *handle, struct dentry *dentry, | |||
| 1490 | return retval; | 1492 | return retval; |
| 1491 | de = (struct ext3_dir_entry_2 *) bh->b_data; | 1493 | de = (struct ext3_dir_entry_2 *) bh->b_data; |
| 1492 | de->inode = 0; | 1494 | de->inode = 0; |
| 1493 | de->rec_len = cpu_to_le16(blocksize); | 1495 | de->rec_len = ext3_rec_len_to_disk(blocksize); |
| 1494 | return add_dirent_to_buf(handle, dentry, inode, de, bh); | 1496 | return add_dirent_to_buf(handle, dentry, inode, de, bh); |
| 1495 | } | 1497 | } |
| 1496 | 1498 | ||
| @@ -1553,7 +1555,7 @@ static int ext3_dx_add_entry(handle_t *handle, struct dentry *dentry, | |||
| 1553 | goto cleanup; | 1555 | goto cleanup; |
| 1554 | node2 = (struct dx_node *)(bh2->b_data); | 1556 | node2 = (struct dx_node *)(bh2->b_data); |
| 1555 | entries2 = node2->entries; | 1557 | entries2 = node2->entries; |
| 1556 | node2->fake.rec_len = cpu_to_le16(sb->s_blocksize); | 1558 | node2->fake.rec_len = ext3_rec_len_to_disk(sb->s_blocksize); |
| 1557 | node2->fake.inode = 0; | 1559 | node2->fake.inode = 0; |
| 1558 | BUFFER_TRACE(frame->bh, "get_write_access"); | 1560 | BUFFER_TRACE(frame->bh, "get_write_access"); |
| 1559 | err = ext3_journal_get_write_access(handle, frame->bh); | 1561 | err = ext3_journal_get_write_access(handle, frame->bh); |
| @@ -1651,9 +1653,9 @@ static int ext3_delete_entry (handle_t *handle, | |||
| 1651 | BUFFER_TRACE(bh, "get_write_access"); | 1653 | BUFFER_TRACE(bh, "get_write_access"); |
| 1652 | ext3_journal_get_write_access(handle, bh); | 1654 | ext3_journal_get_write_access(handle, bh); |
| 1653 | if (pde) | 1655 | if (pde) |
| 1654 | pde->rec_len = | 1656 | pde->rec_len = ext3_rec_len_to_disk( |
| 1655 | cpu_to_le16(le16_to_cpu(pde->rec_len) + | 1657 | ext3_rec_len_from_disk(pde->rec_len) + |
| 1656 | le16_to_cpu(de->rec_len)); | 1658 | ext3_rec_len_from_disk(de->rec_len)); |
| 1657 | else | 1659 | else |
| 1658 | de->inode = 0; | 1660 | de->inode = 0; |
| 1659 | dir->i_version++; | 1661 | dir->i_version++; |
| @@ -1661,10 +1663,9 @@ static int ext3_delete_entry (handle_t *handle, | |||
| 1661 | ext3_journal_dirty_metadata(handle, bh); | 1663 | ext3_journal_dirty_metadata(handle, bh); |
| 1662 | return 0; | 1664 | return 0; |
| 1663 | } | 1665 | } |
| 1664 | i += le16_to_cpu(de->rec_len); | 1666 | i += ext3_rec_len_from_disk(de->rec_len); |
| 1665 | pde = de; | 1667 | pde = de; |
| 1666 | de = (struct ext3_dir_entry_2 *) | 1668 | de = ext3_next_entry(de); |
| 1667 | ((char *) de + le16_to_cpu(de->rec_len)); | ||
| 1668 | } | 1669 | } |
| 1669 | return -ENOENT; | 1670 | return -ENOENT; |
| 1670 | } | 1671 | } |
| @@ -1798,13 +1799,13 @@ retry: | |||
| 1798 | de = (struct ext3_dir_entry_2 *) dir_block->b_data; | 1799 | de = (struct ext3_dir_entry_2 *) dir_block->b_data; |
| 1799 | de->inode = cpu_to_le32(inode->i_ino); | 1800 | de->inode = cpu_to_le32(inode->i_ino); |
| 1800 | de->name_len = 1; | 1801 | de->name_len = 1; |
| 1801 | de->rec_len = cpu_to_le16(EXT3_DIR_REC_LEN(de->name_len)); | 1802 | de->rec_len = ext3_rec_len_to_disk(EXT3_DIR_REC_LEN(de->name_len)); |
| 1802 | strcpy (de->name, "."); | 1803 | strcpy (de->name, "."); |
| 1803 | ext3_set_de_type(dir->i_sb, de, S_IFDIR); | 1804 | ext3_set_de_type(dir->i_sb, de, S_IFDIR); |
| 1804 | de = (struct ext3_dir_entry_2 *) | 1805 | de = ext3_next_entry(de); |
| 1805 | ((char *) de + le16_to_cpu(de->rec_len)); | ||
| 1806 | de->inode = cpu_to_le32(dir->i_ino); | 1806 | de->inode = cpu_to_le32(dir->i_ino); |
| 1807 | de->rec_len = cpu_to_le16(inode->i_sb->s_blocksize-EXT3_DIR_REC_LEN(1)); | 1807 | de->rec_len = ext3_rec_len_to_disk(inode->i_sb->s_blocksize - |
| 1808 | EXT3_DIR_REC_LEN(1)); | ||
| 1808 | de->name_len = 2; | 1809 | de->name_len = 2; |
| 1809 | strcpy (de->name, ".."); | 1810 | strcpy (de->name, ".."); |
| 1810 | ext3_set_de_type(dir->i_sb, de, S_IFDIR); | 1811 | ext3_set_de_type(dir->i_sb, de, S_IFDIR); |
| @@ -1856,8 +1857,7 @@ static int empty_dir (struct inode * inode) | |||
| 1856 | return 1; | 1857 | return 1; |
| 1857 | } | 1858 | } |
| 1858 | de = (struct ext3_dir_entry_2 *) bh->b_data; | 1859 | de = (struct ext3_dir_entry_2 *) bh->b_data; |
| 1859 | de1 = (struct ext3_dir_entry_2 *) | 1860 | de1 = ext3_next_entry(de); |
| 1860 | ((char *) de + le16_to_cpu(de->rec_len)); | ||
| 1861 | if (le32_to_cpu(de->inode) != inode->i_ino || | 1861 | if (le32_to_cpu(de->inode) != inode->i_ino || |
| 1862 | !le32_to_cpu(de1->inode) || | 1862 | !le32_to_cpu(de1->inode) || |
| 1863 | strcmp (".", de->name) || | 1863 | strcmp (".", de->name) || |
| @@ -1868,9 +1868,9 @@ static int empty_dir (struct inode * inode) | |||
| 1868 | brelse (bh); | 1868 | brelse (bh); |
| 1869 | return 1; | 1869 | return 1; |
| 1870 | } | 1870 | } |
| 1871 | offset = le16_to_cpu(de->rec_len) + le16_to_cpu(de1->rec_len); | 1871 | offset = ext3_rec_len_from_disk(de->rec_len) + |
| 1872 | de = (struct ext3_dir_entry_2 *) | 1872 | ext3_rec_len_from_disk(de1->rec_len); |
| 1873 | ((char *) de1 + le16_to_cpu(de1->rec_len)); | 1873 | de = ext3_next_entry(de1); |
| 1874 | while (offset < inode->i_size ) { | 1874 | while (offset < inode->i_size ) { |
| 1875 | if (!bh || | 1875 | if (!bh || |
| 1876 | (void *) de >= (void *) (bh->b_data+sb->s_blocksize)) { | 1876 | (void *) de >= (void *) (bh->b_data+sb->s_blocksize)) { |
| @@ -1899,9 +1899,8 @@ static int empty_dir (struct inode * inode) | |||
| 1899 | brelse (bh); | 1899 | brelse (bh); |
| 1900 | return 0; | 1900 | return 0; |
| 1901 | } | 1901 | } |
| 1902 | offset += le16_to_cpu(de->rec_len); | 1902 | offset += ext3_rec_len_from_disk(de->rec_len); |
| 1903 | de = (struct ext3_dir_entry_2 *) | 1903 | de = ext3_next_entry(de); |
| 1904 | ((char *) de + le16_to_cpu(de->rec_len)); | ||
| 1905 | } | 1904 | } |
| 1906 | brelse (bh); | 1905 | brelse (bh); |
| 1907 | return 1; | 1906 | return 1; |
| @@ -2255,8 +2254,7 @@ retry: | |||
| 2255 | } | 2254 | } |
| 2256 | 2255 | ||
| 2257 | #define PARENT_INO(buffer) \ | 2256 | #define PARENT_INO(buffer) \ |
| 2258 | ((struct ext3_dir_entry_2 *) ((char *) buffer + \ | 2257 | (ext3_next_entry((struct ext3_dir_entry_2 *)(buffer))->inode) |
| 2259 | le16_to_cpu(((struct ext3_dir_entry_2 *) buffer)->rec_len)))->inode | ||
| 2260 | 2258 | ||
| 2261 | /* | 2259 | /* |
| 2262 | * Anybody can rename anything with this: the permission checks are left to the | 2260 | * Anybody can rename anything with this: the permission checks are left to the |
diff --git a/fs/ext4/ioctl.c b/fs/ext4/ioctl.c index c04c7ccba9e3..e7f894bdb420 100644 --- a/fs/ext4/ioctl.c +++ b/fs/ext4/ioctl.c | |||
| @@ -51,6 +51,11 @@ int ext4_ioctl (struct inode * inode, struct file * filp, unsigned int cmd, | |||
| 51 | flags &= ~EXT4_DIRSYNC_FL; | 51 | flags &= ~EXT4_DIRSYNC_FL; |
| 52 | 52 | ||
| 53 | mutex_lock(&inode->i_mutex); | 53 | mutex_lock(&inode->i_mutex); |
| 54 | /* Is it quota file? Do not allow user to mess with it */ | ||
| 55 | if (IS_NOQUOTA(inode)) { | ||
| 56 | mutex_unlock(&inode->i_mutex); | ||
| 57 | return -EPERM; | ||
| 58 | } | ||
| 54 | oldflags = ei->i_flags; | 59 | oldflags = ei->i_flags; |
| 55 | 60 | ||
| 56 | /* The JOURNAL_DATA flag is modifiable only by root */ | 61 | /* The JOURNAL_DATA flag is modifiable only by root */ |
diff --git a/fs/fuse/file.c b/fs/fuse/file.c index 0fcdba9d47c0..535b37399009 100644 --- a/fs/fuse/file.c +++ b/fs/fuse/file.c | |||
| @@ -55,9 +55,10 @@ struct fuse_file *fuse_file_alloc(void) | |||
| 55 | if (!ff->reserved_req) { | 55 | if (!ff->reserved_req) { |
| 56 | kfree(ff); | 56 | kfree(ff); |
| 57 | ff = NULL; | 57 | ff = NULL; |
| 58 | } else { | ||
| 59 | INIT_LIST_HEAD(&ff->write_entry); | ||
| 60 | atomic_set(&ff->count, 0); | ||
| 58 | } | 61 | } |
| 59 | INIT_LIST_HEAD(&ff->write_entry); | ||
| 60 | atomic_set(&ff->count, 0); | ||
| 61 | } | 62 | } |
| 62 | return ff; | 63 | return ff; |
| 63 | } | 64 | } |
diff --git a/fs/hugetlbfs/inode.c b/fs/hugetlbfs/inode.c index 12aca8ed605f..09ee07f02663 100644 --- a/fs/hugetlbfs/inode.c +++ b/fs/hugetlbfs/inode.c | |||
| @@ -364,7 +364,6 @@ static void truncate_hugepages(struct inode *inode, loff_t lstart) | |||
| 364 | ++next; | 364 | ++next; |
| 365 | truncate_huge_page(page); | 365 | truncate_huge_page(page); |
| 366 | unlock_page(page); | 366 | unlock_page(page); |
| 367 | hugetlb_put_quota(mapping); | ||
| 368 | freed++; | 367 | freed++; |
| 369 | } | 368 | } |
| 370 | huge_pagevec_release(&pvec); | 369 | huge_pagevec_release(&pvec); |
| @@ -859,15 +858,15 @@ out_free: | |||
| 859 | return -ENOMEM; | 858 | return -ENOMEM; |
| 860 | } | 859 | } |
| 861 | 860 | ||
| 862 | int hugetlb_get_quota(struct address_space *mapping) | 861 | int hugetlb_get_quota(struct address_space *mapping, long delta) |
| 863 | { | 862 | { |
| 864 | int ret = 0; | 863 | int ret = 0; |
| 865 | struct hugetlbfs_sb_info *sbinfo = HUGETLBFS_SB(mapping->host->i_sb); | 864 | struct hugetlbfs_sb_info *sbinfo = HUGETLBFS_SB(mapping->host->i_sb); |
| 866 | 865 | ||
| 867 | if (sbinfo->free_blocks > -1) { | 866 | if (sbinfo->free_blocks > -1) { |
| 868 | spin_lock(&sbinfo->stat_lock); | 867 | spin_lock(&sbinfo->stat_lock); |
| 869 | if (sbinfo->free_blocks > 0) | 868 | if (sbinfo->free_blocks - delta >= 0) |
| 870 | sbinfo->free_blocks--; | 869 | sbinfo->free_blocks -= delta; |
| 871 | else | 870 | else |
| 872 | ret = -ENOMEM; | 871 | ret = -ENOMEM; |
| 873 | spin_unlock(&sbinfo->stat_lock); | 872 | spin_unlock(&sbinfo->stat_lock); |
| @@ -876,13 +875,13 @@ int hugetlb_get_quota(struct address_space *mapping) | |||
| 876 | return ret; | 875 | return ret; |
| 877 | } | 876 | } |
| 878 | 877 | ||
| 879 | void hugetlb_put_quota(struct address_space *mapping) | 878 | void hugetlb_put_quota(struct address_space *mapping, long delta) |
| 880 | { | 879 | { |
| 881 | struct hugetlbfs_sb_info *sbinfo = HUGETLBFS_SB(mapping->host->i_sb); | 880 | struct hugetlbfs_sb_info *sbinfo = HUGETLBFS_SB(mapping->host->i_sb); |
| 882 | 881 | ||
| 883 | if (sbinfo->free_blocks > -1) { | 882 | if (sbinfo->free_blocks > -1) { |
| 884 | spin_lock(&sbinfo->stat_lock); | 883 | spin_lock(&sbinfo->stat_lock); |
| 885 | sbinfo->free_blocks++; | 884 | sbinfo->free_blocks += delta; |
| 886 | spin_unlock(&sbinfo->stat_lock); | 885 | spin_unlock(&sbinfo->stat_lock); |
| 887 | } | 886 | } |
| 888 | } | 887 | } |
diff --git a/fs/jfs/ioctl.c b/fs/jfs/ioctl.c index 3c8663bea98c..dfda12a073e1 100644 --- a/fs/jfs/ioctl.c +++ b/fs/jfs/ioctl.c | |||
| @@ -79,6 +79,9 @@ int jfs_ioctl(struct inode * inode, struct file * filp, unsigned int cmd, | |||
| 79 | if (!S_ISDIR(inode->i_mode)) | 79 | if (!S_ISDIR(inode->i_mode)) |
| 80 | flags &= ~JFS_DIRSYNC_FL; | 80 | flags &= ~JFS_DIRSYNC_FL; |
| 81 | 81 | ||
| 82 | /* Is it quota file? Do not allow user to mess with it */ | ||
| 83 | if (IS_NOQUOTA(inode)) | ||
| 84 | return -EPERM; | ||
| 82 | jfs_get_inode_flags(jfs_inode); | 85 | jfs_get_inode_flags(jfs_inode); |
| 83 | oldflags = jfs_inode->mode2; | 86 | oldflags = jfs_inode->mode2; |
| 84 | 87 | ||
| @@ -1061,7 +1061,7 @@ asmlinkage long sys_open(const char __user *filename, int flags, int mode) | |||
| 1061 | prevent_tail_call(ret); | 1061 | prevent_tail_call(ret); |
| 1062 | return ret; | 1062 | return ret; |
| 1063 | } | 1063 | } |
| 1064 | EXPORT_SYMBOL_GPL(sys_open); | 1064 | EXPORT_UNUSED_SYMBOL_GPL(sys_open); /* To be deleted for 2.6.25 */ |
| 1065 | 1065 | ||
| 1066 | asmlinkage long sys_openat(int dfd, const char __user *filename, int flags, | 1066 | asmlinkage long sys_openat(int dfd, const char __user *filename, int flags, |
| 1067 | int mode) | 1067 | int mode) |
diff --git a/fs/proc/base.c b/fs/proc/base.c index aeaf0d0f2f51..a17c26859074 100644 --- a/fs/proc/base.c +++ b/fs/proc/base.c | |||
| @@ -2328,21 +2328,18 @@ out: | |||
| 2328 | 2328 | ||
| 2329 | void proc_flush_task(struct task_struct *task) | 2329 | void proc_flush_task(struct task_struct *task) |
| 2330 | { | 2330 | { |
| 2331 | int i, leader; | 2331 | int i; |
| 2332 | struct pid *pid, *tgid; | 2332 | struct pid *pid, *tgid = NULL; |
| 2333 | struct upid *upid; | 2333 | struct upid *upid; |
| 2334 | 2334 | ||
| 2335 | leader = thread_group_leader(task); | ||
| 2336 | proc_flush_task_mnt(proc_mnt, task->pid, leader ? task->tgid : 0); | ||
| 2337 | pid = task_pid(task); | 2335 | pid = task_pid(task); |
| 2338 | if (pid->level == 0) | 2336 | if (thread_group_leader(task)) |
| 2339 | return; | 2337 | tgid = task_tgid(task); |
| 2340 | 2338 | ||
| 2341 | tgid = task_tgid(task); | 2339 | for (i = 0; i <= pid->level; i++) { |
| 2342 | for (i = 1; i <= pid->level; i++) { | ||
| 2343 | upid = &pid->numbers[i]; | 2340 | upid = &pid->numbers[i]; |
| 2344 | proc_flush_task_mnt(upid->ns->proc_mnt, upid->nr, | 2341 | proc_flush_task_mnt(upid->ns->proc_mnt, upid->nr, |
| 2345 | leader ? 0 : tgid->numbers[i].nr); | 2342 | tgid ? tgid->numbers[i].nr : 0); |
| 2346 | } | 2343 | } |
| 2347 | 2344 | ||
| 2348 | upid = &pid->numbers[pid->level]; | 2345 | upid = &pid->numbers[pid->level]; |
diff --git a/fs/proc/generic.c b/fs/proc/generic.c index 1bdb62435758..a9806bc21ec3 100644 --- a/fs/proc/generic.c +++ b/fs/proc/generic.c | |||
| @@ -561,28 +561,33 @@ static int proc_register(struct proc_dir_entry * dir, struct proc_dir_entry * dp | |||
| 561 | static void proc_kill_inodes(struct proc_dir_entry *de) | 561 | static void proc_kill_inodes(struct proc_dir_entry *de) |
| 562 | { | 562 | { |
| 563 | struct list_head *p; | 563 | struct list_head *p; |
| 564 | struct super_block *sb = proc_mnt->mnt_sb; | 564 | struct super_block *sb; |
| 565 | 565 | ||
| 566 | /* | 566 | /* |
| 567 | * Actually it's a partial revoke(). | 567 | * Actually it's a partial revoke(). |
| 568 | */ | 568 | */ |
| 569 | file_list_lock(); | 569 | spin_lock(&sb_lock); |
| 570 | list_for_each(p, &sb->s_files) { | 570 | list_for_each_entry(sb, &proc_fs_type.fs_supers, s_instances) { |
| 571 | struct file * filp = list_entry(p, struct file, f_u.fu_list); | 571 | file_list_lock(); |
| 572 | struct dentry * dentry = filp->f_path.dentry; | 572 | list_for_each(p, &sb->s_files) { |
| 573 | struct inode * inode; | 573 | struct file *filp = list_entry(p, struct file, |
| 574 | const struct file_operations *fops; | 574 | f_u.fu_list); |
| 575 | 575 | struct dentry *dentry = filp->f_path.dentry; | |
| 576 | if (dentry->d_op != &proc_dentry_operations) | 576 | struct inode *inode; |
| 577 | continue; | 577 | const struct file_operations *fops; |
| 578 | inode = dentry->d_inode; | 578 | |
| 579 | if (PDE(inode) != de) | 579 | if (dentry->d_op != &proc_dentry_operations) |
| 580 | continue; | 580 | continue; |
| 581 | fops = filp->f_op; | 581 | inode = dentry->d_inode; |
| 582 | filp->f_op = NULL; | 582 | if (PDE(inode) != de) |
| 583 | fops_put(fops); | 583 | continue; |
| 584 | fops = filp->f_op; | ||
| 585 | filp->f_op = NULL; | ||
| 586 | fops_put(fops); | ||
| 587 | } | ||
| 588 | file_list_unlock(); | ||
| 584 | } | 589 | } |
| 585 | file_list_unlock(); | 590 | spin_unlock(&sb_lock); |
| 586 | } | 591 | } |
| 587 | 592 | ||
| 588 | static struct proc_dir_entry *proc_create(struct proc_dir_entry **parent, | 593 | static struct proc_dir_entry *proc_create(struct proc_dir_entry **parent, |
diff --git a/fs/proc/internal.h b/fs/proc/internal.h index 1820eb2ef762..1b2b6c6bb475 100644 --- a/fs/proc/internal.h +++ b/fs/proc/internal.h | |||
| @@ -78,3 +78,5 @@ static inline int proc_fd(struct inode *inode) | |||
| 78 | { | 78 | { |
| 79 | return PROC_I(inode)->fd; | 79 | return PROC_I(inode)->fd; |
| 80 | } | 80 | } |
| 81 | |||
| 82 | extern struct file_system_type proc_fs_type; | ||
diff --git a/fs/proc/root.c b/fs/proc/root.c index ec9cb3b6c93b..1f86bb860e04 100644 --- a/fs/proc/root.c +++ b/fs/proc/root.c | |||
| @@ -98,7 +98,7 @@ static void proc_kill_sb(struct super_block *sb) | |||
| 98 | put_pid_ns(ns); | 98 | put_pid_ns(ns); |
| 99 | } | 99 | } |
| 100 | 100 | ||
| 101 | static struct file_system_type proc_fs_type = { | 101 | struct file_system_type proc_fs_type = { |
| 102 | .name = "proc", | 102 | .name = "proc", |
| 103 | .get_sb = proc_get_sb, | 103 | .get_sb = proc_get_sb, |
| 104 | .kill_sb = proc_kill_sb, | 104 | .kill_sb = proc_kill_sb, |
diff --git a/fs/read_write.c b/fs/read_write.c index 124693e8d3fa..ea1f94cc722e 100644 --- a/fs/read_write.c +++ b/fs/read_write.c | |||
| @@ -370,7 +370,7 @@ asmlinkage ssize_t sys_read(unsigned int fd, char __user * buf, size_t count) | |||
| 370 | 370 | ||
| 371 | return ret; | 371 | return ret; |
| 372 | } | 372 | } |
| 373 | EXPORT_SYMBOL_GPL(sys_read); | 373 | EXPORT_UNUSED_SYMBOL_GPL(sys_read); /* to be deleted for 2.6.25 */ |
| 374 | 374 | ||
| 375 | asmlinkage ssize_t sys_write(unsigned int fd, const char __user * buf, size_t count) | 375 | asmlinkage ssize_t sys_write(unsigned int fd, const char __user * buf, size_t count) |
| 376 | { | 376 | { |
diff --git a/fs/reiserfs/ioctl.c b/fs/reiserfs/ioctl.c index c438a8f83f26..e0f0f098a523 100644 --- a/fs/reiserfs/ioctl.c +++ b/fs/reiserfs/ioctl.c | |||
| @@ -57,6 +57,9 @@ int reiserfs_ioctl(struct inode *inode, struct file *filp, unsigned int cmd, | |||
| 57 | if (get_user(flags, (int __user *)arg)) | 57 | if (get_user(flags, (int __user *)arg)) |
| 58 | return -EFAULT; | 58 | return -EFAULT; |
| 59 | 59 | ||
| 60 | /* Is it quota file? Do not allow user to mess with it. */ | ||
| 61 | if (IS_NOQUOTA(inode)) | ||
| 62 | return -EPERM; | ||
| 60 | if (((flags ^ REISERFS_I(inode)-> | 63 | if (((flags ^ REISERFS_I(inode)-> |
| 61 | i_attrs) & (REISERFS_IMMUTABLE_FL | | 64 | i_attrs) & (REISERFS_IMMUTABLE_FL | |
| 62 | REISERFS_APPEND_FL)) | 65 | REISERFS_APPEND_FL)) |
diff --git a/fs/reiserfs/stree.c b/fs/reiserfs/stree.c index ca41567d7890..d2db2417b2bd 100644 --- a/fs/reiserfs/stree.c +++ b/fs/reiserfs/stree.c | |||
| @@ -1458,9 +1458,6 @@ static void unmap_buffers(struct page *page, loff_t pos) | |||
| 1458 | } | 1458 | } |
| 1459 | bh = next; | 1459 | bh = next; |
| 1460 | } while (bh != head); | 1460 | } while (bh != head); |
| 1461 | if (PAGE_SIZE == bh->b_size) { | ||
| 1462 | cancel_dirty_page(page, PAGE_CACHE_SIZE); | ||
| 1463 | } | ||
| 1464 | } | 1461 | } |
| 1465 | } | 1462 | } |
| 1466 | } | 1463 | } |
diff --git a/fs/smbfs/file.c b/fs/smbfs/file.c index f5d14cebc75a..efbe29af3d7a 100644 --- a/fs/smbfs/file.c +++ b/fs/smbfs/file.c | |||
| @@ -234,7 +234,7 @@ smb_file_aio_read(struct kiocb *iocb, const struct iovec *iov, | |||
| 234 | 234 | ||
| 235 | VERBOSE("before read, size=%ld, flags=%x, atime=%ld\n", | 235 | VERBOSE("before read, size=%ld, flags=%x, atime=%ld\n", |
| 236 | (long)dentry->d_inode->i_size, | 236 | (long)dentry->d_inode->i_size, |
| 237 | dentry->d_inode->i_flags, dentry->d_inode->i_atime); | 237 | dentry->d_inode->i_flags, dentry->d_inode->i_atime.tv_sec); |
| 238 | 238 | ||
| 239 | status = generic_file_aio_read(iocb, iov, nr_segs, pos); | 239 | status = generic_file_aio_read(iocb, iov, nr_segs, pos); |
| 240 | out: | 240 | out: |
| @@ -269,7 +269,7 @@ smb_file_splice_read(struct file *file, loff_t *ppos, | |||
| 269 | struct dentry *dentry = file->f_path.dentry; | 269 | struct dentry *dentry = file->f_path.dentry; |
| 270 | ssize_t status; | 270 | ssize_t status; |
| 271 | 271 | ||
| 272 | VERBOSE("file %s/%s, pos=%Ld, count=%d\n", | 272 | VERBOSE("file %s/%s, pos=%Ld, count=%lu\n", |
| 273 | DENTRY_PATH(dentry), *ppos, count); | 273 | DENTRY_PATH(dentry), *ppos, count); |
| 274 | 274 | ||
| 275 | status = smb_revalidate_inode(dentry); | 275 | status = smb_revalidate_inode(dentry); |
| @@ -363,7 +363,8 @@ smb_file_aio_write(struct kiocb *iocb, const struct iovec *iov, | |||
| 363 | result = generic_file_aio_write(iocb, iov, nr_segs, pos); | 363 | result = generic_file_aio_write(iocb, iov, nr_segs, pos); |
| 364 | VERBOSE("pos=%ld, size=%ld, mtime=%ld, atime=%ld\n", | 364 | VERBOSE("pos=%ld, size=%ld, mtime=%ld, atime=%ld\n", |
| 365 | (long) file->f_pos, (long) dentry->d_inode->i_size, | 365 | (long) file->f_pos, (long) dentry->d_inode->i_size, |
| 366 | dentry->d_inode->i_mtime, dentry->d_inode->i_atime); | 366 | dentry->d_inode->i_mtime.tv_sec, |
| 367 | dentry->d_inode->i_atime.tv_sec); | ||
| 367 | } | 368 | } |
| 368 | out: | 369 | out: |
| 369 | return result; | 370 | return result; |
diff --git a/fs/smbfs/inode.c b/fs/smbfs/inode.c index ab517755ece0..9416ead0c7aa 100644 --- a/fs/smbfs/inode.c +++ b/fs/smbfs/inode.c | |||
| @@ -536,7 +536,7 @@ static int smb_fill_super(struct super_block *sb, void *raw_data, int silent) | |||
| 536 | 536 | ||
| 537 | /* Allocate the global temp buffer and some superblock helper structs */ | 537 | /* Allocate the global temp buffer and some superblock helper structs */ |
| 538 | /* FIXME: move these to the smb_sb_info struct */ | 538 | /* FIXME: move these to the smb_sb_info struct */ |
| 539 | VERBOSE("alloc chunk = %d\n", sizeof(struct smb_ops) + | 539 | VERBOSE("alloc chunk = %lu\n", sizeof(struct smb_ops) + |
| 540 | sizeof(struct smb_mount_data_kernel)); | 540 | sizeof(struct smb_mount_data_kernel)); |
| 541 | mem = kmalloc(sizeof(struct smb_ops) + | 541 | mem = kmalloc(sizeof(struct smb_ops) + |
| 542 | sizeof(struct smb_mount_data_kernel), GFP_KERNEL); | 542 | sizeof(struct smb_mount_data_kernel), GFP_KERNEL); |
diff --git a/fs/smbfs/proc.c b/fs/smbfs/proc.c index feac46050619..d517a27b7f4b 100644 --- a/fs/smbfs/proc.c +++ b/fs/smbfs/proc.c | |||
| @@ -2593,7 +2593,7 @@ smb_proc_getattr_ff(struct smb_sb_info *server, struct dentry *dentry, | |||
| 2593 | fattr->f_mtime.tv_sec = date_dos2unix(server, date, time); | 2593 | fattr->f_mtime.tv_sec = date_dos2unix(server, date, time); |
| 2594 | fattr->f_mtime.tv_nsec = 0; | 2594 | fattr->f_mtime.tv_nsec = 0; |
| 2595 | VERBOSE("name=%s, date=%x, time=%x, mtime=%ld\n", | 2595 | VERBOSE("name=%s, date=%x, time=%x, mtime=%ld\n", |
| 2596 | mask, date, time, fattr->f_mtime); | 2596 | mask, date, time, fattr->f_mtime.tv_sec); |
| 2597 | fattr->f_size = DVAL(req->rq_data, 12); | 2597 | fattr->f_size = DVAL(req->rq_data, 12); |
| 2598 | /* ULONG allocation size */ | 2598 | /* ULONG allocation size */ |
| 2599 | fattr->attr = WVAL(req->rq_data, 20); | 2599 | fattr->attr = WVAL(req->rq_data, 20); |
diff --git a/fs/smbfs/smbiod.c b/fs/smbfs/smbiod.c index 283c5720c9de..fae8e85af0ed 100644 --- a/fs/smbfs/smbiod.c +++ b/fs/smbfs/smbiod.c | |||
| @@ -227,7 +227,7 @@ int smbiod_retry(struct smb_sb_info *server) | |||
| 227 | printk(KERN_ERR "smb_retry: signal failed [%d]\n", result); | 227 | printk(KERN_ERR "smb_retry: signal failed [%d]\n", result); |
| 228 | goto out; | 228 | goto out; |
| 229 | } | 229 | } |
| 230 | VERBOSE("signalled pid %d\n", pid); | 230 | VERBOSE("signalled pid %d\n", pid_nr(pid)); |
| 231 | 231 | ||
| 232 | /* FIXME: The retried requests should perhaps get a "time boost". */ | 232 | /* FIXME: The retried requests should perhaps get a "time boost". */ |
| 233 | 233 | ||
diff --git a/include/asm-avr32/sysreg.h b/include/asm-avr32/sysreg.h index c02bc8304b13..dd21182b60e0 100644 --- a/include/asm-avr32/sysreg.h +++ b/include/asm-avr32/sysreg.h | |||
| @@ -215,6 +215,8 @@ | |||
| 215 | #define SYSREG_IRP_SIZE 6 | 215 | #define SYSREG_IRP_SIZE 6 |
| 216 | 216 | ||
| 217 | /* Bitfields in PCCR */ | 217 | /* Bitfields in PCCR */ |
| 218 | #define SYSREG_PCCR_E_OFFSET 0 | ||
| 219 | #define SYSREG_PCCR_E_SIZE 1 | ||
| 218 | #define SYSREG_PCCR_R_OFFSET 1 | 220 | #define SYSREG_PCCR_R_OFFSET 1 |
| 219 | #define SYSREG_PCCR_R_SIZE 1 | 221 | #define SYSREG_PCCR_R_SIZE 1 |
| 220 | #define SYSREG_PCCR_C_OFFSET 2 | 222 | #define SYSREG_PCCR_C_OFFSET 2 |
diff --git a/include/asm-cris/atomic.h b/include/asm-cris/atomic.h index 0b51a87e5532..2949a945876a 100644 --- a/include/asm-cris/atomic.h +++ b/include/asm-cris/atomic.h | |||
| @@ -3,6 +3,8 @@ | |||
| 3 | #ifndef __ASM_CRIS_ATOMIC__ | 3 | #ifndef __ASM_CRIS_ATOMIC__ |
| 4 | #define __ASM_CRIS_ATOMIC__ | 4 | #define __ASM_CRIS_ATOMIC__ |
| 5 | 5 | ||
| 6 | #include <linux/compiler.h> | ||
| 7 | |||
| 6 | #include <asm/system.h> | 8 | #include <asm/system.h> |
| 7 | #include <asm/arch/atomic.h> | 9 | #include <asm/arch/atomic.h> |
| 8 | 10 | ||
diff --git a/include/asm-cris/checksum.h b/include/asm-cris/checksum.h index 180dbf2757b0..c6c5be62c698 100644 --- a/include/asm-cris/checksum.h +++ b/include/asm-cris/checksum.h | |||
| @@ -62,7 +62,7 @@ static inline __sum16 ip_fast_csum(const void *iph, unsigned int ihl) | |||
| 62 | * returns a 16-bit checksum, already complemented | 62 | * returns a 16-bit checksum, already complemented |
| 63 | */ | 63 | */ |
| 64 | 64 | ||
| 65 | static inline __sum16 int csum_tcpudp_magic(__be32 saddr, __be32 daddr, | 65 | static inline __sum16 csum_tcpudp_magic(__be32 saddr, __be32 daddr, |
| 66 | unsigned short len, | 66 | unsigned short len, |
| 67 | unsigned short proto, | 67 | unsigned short proto, |
| 68 | __wsum sum) | 68 | __wsum sum) |
diff --git a/include/asm-cris/ethernet.h b/include/asm-cris/ethernet.h index 30da58a7d00d..4d58652c3a49 100644 --- a/include/asm-cris/ethernet.h +++ b/include/asm-cris/ethernet.h | |||
| @@ -15,4 +15,7 @@ | |||
| 15 | #define SET_ETH_DUPLEX_AUTO SIOCDEVPRIVATE+3 /* Auto neg duplex */ | 15 | #define SET_ETH_DUPLEX_AUTO SIOCDEVPRIVATE+3 /* Auto neg duplex */ |
| 16 | #define SET_ETH_DUPLEX_HALF SIOCDEVPRIVATE+4 /* Full duplex */ | 16 | #define SET_ETH_DUPLEX_HALF SIOCDEVPRIVATE+4 /* Full duplex */ |
| 17 | #define SET_ETH_DUPLEX_FULL SIOCDEVPRIVATE+5 /* Half duplex */ | 17 | #define SET_ETH_DUPLEX_FULL SIOCDEVPRIVATE+5 /* Half duplex */ |
| 18 | #define SET_ETH_ENABLE_LEDS SIOCDEVPRIVATE+6 /* Enable net LEDs */ | ||
| 19 | #define SET_ETH_DISABLE_LEDS SIOCDEVPRIVATE+7 /* Disable net LEDs */ | ||
| 20 | #define SET_ETH_AUTONEG SIOCDEVPRIVATE+8 | ||
| 18 | #endif /* _CRIS_ETHERNET_H */ | 21 | #endif /* _CRIS_ETHERNET_H */ |
diff --git a/include/asm-cris/fasttimer.h b/include/asm-cris/fasttimer.h index a3a77132ce32..8f8a8d6c9653 100644 --- a/include/asm-cris/fasttimer.h +++ b/include/asm-cris/fasttimer.h | |||
| @@ -1,9 +1,8 @@ | |||
| 1 | /* $Id: fasttimer.h,v 1.3 2004/05/14 10:19:19 starvik Exp $ | 1 | /* |
| 2 | * linux/include/asm-cris/fasttimer.h | 2 | * linux/include/asm-cris/fasttimer.h |
| 3 | * | 3 | * |
| 4 | * Fast timers for ETRAX100LX | 4 | * Fast timers for ETRAX100LX |
| 5 | * This may be useful in other OS than Linux so use 2 space indentation... | 5 | * Copyright (C) 2000-2007 Axis Communications AB |
| 6 | * Copyright (C) 2000, 2002 Axis Communications AB | ||
| 7 | */ | 6 | */ |
| 8 | #include <linux/time.h> /* struct timeval */ | 7 | #include <linux/time.h> /* struct timeval */ |
| 9 | #include <linux/timex.h> | 8 | #include <linux/timex.h> |
| @@ -12,11 +11,16 @@ | |||
| 12 | 11 | ||
| 13 | typedef void fast_timer_function_type(unsigned long); | 12 | typedef void fast_timer_function_type(unsigned long); |
| 14 | 13 | ||
| 14 | struct fasttime_t { | ||
| 15 | unsigned long tv_jiff; /* jiffies */ | ||
| 16 | unsigned long tv_usec; /* microseconds */ | ||
| 17 | }; | ||
| 18 | |||
| 15 | struct fast_timer{ /* Close to timer_list */ | 19 | struct fast_timer{ /* Close to timer_list */ |
| 16 | struct fast_timer *next; | 20 | struct fast_timer *next; |
| 17 | struct fast_timer *prev; | 21 | struct fast_timer *prev; |
| 18 | struct timeval tv_set; | 22 | struct fasttime_t tv_set; |
| 19 | struct timeval tv_expires; | 23 | struct fasttime_t tv_expires; |
| 20 | unsigned long delay_us; | 24 | unsigned long delay_us; |
| 21 | fast_timer_function_type *function; | 25 | fast_timer_function_type *function; |
| 22 | unsigned long data; | 26 | unsigned long data; |
| @@ -38,6 +42,6 @@ int del_fast_timer(struct fast_timer * t); | |||
| 38 | void schedule_usleep(unsigned long us); | 42 | void schedule_usleep(unsigned long us); |
| 39 | 43 | ||
| 40 | 44 | ||
| 41 | void fast_timer_init(void); | 45 | int fast_timer_init(void); |
| 42 | 46 | ||
| 43 | #endif | 47 | #endif |
diff --git a/include/asm-cris/hardirq.h b/include/asm-cris/hardirq.h index 1c13dd3faac3..74178adeb1cd 100644 --- a/include/asm-cris/hardirq.h +++ b/include/asm-cris/hardirq.h | |||
| @@ -1,6 +1,7 @@ | |||
| 1 | #ifndef __ASM_HARDIRQ_H | 1 | #ifndef __ASM_HARDIRQ_H |
| 2 | #define __ASM_HARDIRQ_H | 2 | #define __ASM_HARDIRQ_H |
| 3 | 3 | ||
| 4 | #include <asm/irq.h> | ||
| 4 | #include <linux/threads.h> | 5 | #include <linux/threads.h> |
| 5 | #include <linux/cache.h> | 6 | #include <linux/cache.h> |
| 6 | 7 | ||
diff --git a/include/asm-cris/posix_types.h b/include/asm-cris/posix_types.h index 92000d0c3f97..3a5e4c43eae7 100644 --- a/include/asm-cris/posix_types.h +++ b/include/asm-cris/posix_types.h | |||
| @@ -52,7 +52,6 @@ typedef struct { | |||
| 52 | } __kernel_fsid_t; | 52 | } __kernel_fsid_t; |
| 53 | 53 | ||
| 54 | #ifdef __KERNEL__ | 54 | #ifdef __KERNEL__ |
| 55 | #include <linux/bitops.h> | ||
| 56 | 55 | ||
| 57 | #undef __FD_SET | 56 | #undef __FD_SET |
| 58 | #define __FD_SET(fd,fdsetp) set_bit(fd, (void *)(fdsetp)) | 57 | #define __FD_SET(fd,fdsetp) set_bit(fd, (void *)(fdsetp)) |
diff --git a/include/asm-cris/termbits.h b/include/asm-cris/termbits.h index 71c1b36269b8..66e1a7492a0c 100644 --- a/include/asm-cris/termbits.h +++ b/include/asm-cris/termbits.h | |||
| @@ -171,6 +171,19 @@ struct ktermios { | |||
| 171 | #define B115200 0010002 | 171 | #define B115200 0010002 |
| 172 | #define B230400 0010003 | 172 | #define B230400 0010003 |
| 173 | #define B460800 0010004 | 173 | #define B460800 0010004 |
| 174 | |||
| 175 | /* Unsupported rates, but needed to avoid compile error. */ | ||
| 176 | #define B500000 0010005 | ||
| 177 | #define B576000 0010006 | ||
| 178 | #define B1000000 0010010 | ||
| 179 | #define B1152000 0010011 | ||
| 180 | #define B1500000 0010012 | ||
| 181 | #define B2000000 0010013 | ||
| 182 | #define B2500000 0010014 | ||
| 183 | #define B3000000 0010015 | ||
| 184 | #define B3500000 0010016 | ||
| 185 | #define B4000000 0010017 | ||
| 186 | |||
| 174 | /* etrax supports these additional three baud rates */ | 187 | /* etrax supports these additional three baud rates */ |
| 175 | #define B921600 0010005 | 188 | #define B921600 0010005 |
| 176 | #define B1843200 0010006 | 189 | #define B1843200 0010006 |
diff --git a/include/asm-cris/thread_info.h b/include/asm-cris/thread_info.h index fde39f6c49c7..784668ab0fa2 100644 --- a/include/asm-cris/thread_info.h +++ b/include/asm-cris/thread_info.h | |||
| @@ -32,6 +32,7 @@ struct thread_info { | |||
| 32 | unsigned long flags; /* low level flags */ | 32 | unsigned long flags; /* low level flags */ |
| 33 | __u32 cpu; /* current CPU */ | 33 | __u32 cpu; /* current CPU */ |
| 34 | int preempt_count; /* 0 => preemptable, <0 => BUG */ | 34 | int preempt_count; /* 0 => preemptable, <0 => BUG */ |
| 35 | __u32 tls; /* TLS for this thread */ | ||
| 35 | 36 | ||
| 36 | mm_segment_t addr_limit; /* thread address space: | 37 | mm_segment_t addr_limit; /* thread address space: |
| 37 | 0-0xBFFFFFFF for user-thead | 38 | 0-0xBFFFFFFF for user-thead |
| @@ -79,14 +80,18 @@ struct thread_info { | |||
| 79 | * - other flags in MSW | 80 | * - other flags in MSW |
| 80 | */ | 81 | */ |
| 81 | #define TIF_SYSCALL_TRACE 0 /* syscall trace active */ | 82 | #define TIF_SYSCALL_TRACE 0 /* syscall trace active */ |
| 82 | #define TIF_SIGPENDING 1 /* signal pending */ | 83 | #define TIF_NOTIFY_RESUME 1 /* resumption notification requested */ |
| 83 | #define TIF_NEED_RESCHED 2 /* rescheduling necessary */ | 84 | #define TIF_SIGPENDING 2 /* signal pending */ |
| 85 | #define TIF_NEED_RESCHED 3 /* rescheduling necessary */ | ||
| 86 | #define TIF_RESTORE_SIGMASK 9 /* restore signal mask in do_signal() */ | ||
| 84 | #define TIF_POLLING_NRFLAG 16 /* true if poll_idle() is polling TIF_NEED_RESCHED */ | 87 | #define TIF_POLLING_NRFLAG 16 /* true if poll_idle() is polling TIF_NEED_RESCHED */ |
| 85 | #define TIF_MEMDIE 17 | 88 | #define TIF_MEMDIE 17 |
| 86 | 89 | ||
| 87 | #define _TIF_SYSCALL_TRACE (1<<TIF_SYSCALL_TRACE) | 90 | #define _TIF_SYSCALL_TRACE (1<<TIF_SYSCALL_TRACE) |
| 91 | #define _TIF_NOTIFY_RESUME (1<<TIF_NOTIFY_RESUME) | ||
| 88 | #define _TIF_SIGPENDING (1<<TIF_SIGPENDING) | 92 | #define _TIF_SIGPENDING (1<<TIF_SIGPENDING) |
| 89 | #define _TIF_NEED_RESCHED (1<<TIF_NEED_RESCHED) | 93 | #define _TIF_NEED_RESCHED (1<<TIF_NEED_RESCHED) |
| 94 | #define _TIF_RESTORE_SIGMASK (1<<TIF_RESTORE_SIGMASK) | ||
| 90 | #define _TIF_POLLING_NRFLAG (1<<TIF_POLLING_NRFLAG) | 95 | #define _TIF_POLLING_NRFLAG (1<<TIF_POLLING_NRFLAG) |
| 91 | 96 | ||
| 92 | #define _TIF_WORK_MASK 0x0000FFFE /* work to do on interrupt/exception return */ | 97 | #define _TIF_WORK_MASK 0x0000FFFE /* work to do on interrupt/exception return */ |
diff --git a/include/asm-cris/tlb.h b/include/asm-cris/tlb.h index 6cc26debe40f..7724246a2601 100644 --- a/include/asm-cris/tlb.h +++ b/include/asm-cris/tlb.h | |||
| @@ -1,6 +1,8 @@ | |||
| 1 | #ifndef _CRIS_TLB_H | 1 | #ifndef _CRIS_TLB_H |
| 2 | #define _CRIS_TLB_H | 2 | #define _CRIS_TLB_H |
| 3 | 3 | ||
| 4 | #include <linux/pagemap.h> | ||
| 5 | |||
| 4 | #include <asm/arch/tlb.h> | 6 | #include <asm/arch/tlb.h> |
| 5 | 7 | ||
| 6 | /* | 8 | /* |
diff --git a/include/asm-cris/unistd.h b/include/asm-cris/unistd.h index 7c90fa970c38..6f2d924f4fd6 100644 --- a/include/asm-cris/unistd.h +++ b/include/asm-cris/unistd.h | |||
| @@ -255,6 +255,7 @@ | |||
| 255 | #define __NR_io_submit 248 | 255 | #define __NR_io_submit 248 |
| 256 | #define __NR_io_cancel 249 | 256 | #define __NR_io_cancel 249 |
| 257 | #define __NR_fadvise64 250 | 257 | #define __NR_fadvise64 250 |
| 258 | /* 251 is available for reuse (was briefly sys_set_zone_reclaim) */ | ||
| 258 | #define __NR_exit_group 252 | 259 | #define __NR_exit_group 252 |
| 259 | #define __NR_lookup_dcookie 253 | 260 | #define __NR_lookup_dcookie 253 |
| 260 | #define __NR_epoll_create 254 | 261 | #define __NR_epoll_create 254 |
| @@ -292,10 +293,46 @@ | |||
| 292 | #define __NR_add_key 286 | 293 | #define __NR_add_key 286 |
| 293 | #define __NR_request_key 287 | 294 | #define __NR_request_key 287 |
| 294 | #define __NR_keyctl 288 | 295 | #define __NR_keyctl 288 |
| 296 | #define __NR_ioprio_set 289 | ||
| 297 | #define __NR_ioprio_get 290 | ||
| 298 | #define __NR_inotify_init 291 | ||
| 299 | #define __NR_inotify_add_watch 292 | ||
| 300 | #define __NR_inotify_rm_watch 293 | ||
| 301 | #define __NR_migrate_pages 294 | ||
| 302 | #define __NR_openat 295 | ||
| 303 | #define __NR_mkdirat 296 | ||
| 304 | #define __NR_mknodat 297 | ||
| 305 | #define __NR_fchownat 298 | ||
| 306 | #define __NR_futimesat 299 | ||
| 307 | #define __NR_fstatat64 300 | ||
| 308 | #define __NR_unlinkat 301 | ||
| 309 | #define __NR_renameat 302 | ||
| 310 | #define __NR_linkat 303 | ||
| 311 | #define __NR_symlinkat 304 | ||
| 312 | #define __NR_readlinkat 305 | ||
| 313 | #define __NR_fchmodat 306 | ||
| 314 | #define __NR_faccessat 307 | ||
| 315 | #define __NR_pselect6 308 | ||
| 316 | #define __NR_ppoll 309 | ||
| 317 | #define __NR_unshare 310 | ||
| 318 | #define __NR_set_robust_list 311 | ||
| 319 | #define __NR_get_robust_list 312 | ||
| 320 | #define __NR_splice 313 | ||
| 321 | #define __NR_sync_file_range 314 | ||
| 322 | #define __NR_tee 315 | ||
| 323 | #define __NR_vmsplice 316 | ||
| 324 | #define __NR_move_pages 317 | ||
| 325 | #define __NR_getcpu 318 | ||
| 326 | #define __NR_epoll_pwait 319 | ||
| 327 | #define __NR_utimensat 320 | ||
| 328 | #define __NR_signalfd 321 | ||
| 329 | #define __NR_timerfd 322 | ||
| 330 | #define __NR_eventfd 323 | ||
| 331 | #define __NR_fallocate 324 | ||
| 295 | 332 | ||
| 296 | #ifdef __KERNEL__ | 333 | #ifdef __KERNEL__ |
| 297 | 334 | ||
| 298 | #define NR_syscalls 289 | 335 | #define NR_syscalls 325 |
| 299 | 336 | ||
| 300 | #include <asm/arch/unistd.h> | 337 | #include <asm/arch/unistd.h> |
| 301 | 338 | ||
diff --git a/include/asm-mips/cpu-info.h b/include/asm-mips/cpu-info.h index 94f1c8172360..ed5c02c6afbb 100644 --- a/include/asm-mips/cpu-info.h +++ b/include/asm-mips/cpu-info.h | |||
| @@ -54,6 +54,7 @@ struct cpuinfo_mips { | |||
| 54 | struct cache_desc dcache; /* Primary D or combined I/D cache */ | 54 | struct cache_desc dcache; /* Primary D or combined I/D cache */ |
| 55 | struct cache_desc scache; /* Secondary cache */ | 55 | struct cache_desc scache; /* Secondary cache */ |
| 56 | struct cache_desc tcache; /* Tertiary/split secondary cache */ | 56 | struct cache_desc tcache; /* Tertiary/split secondary cache */ |
| 57 | int srsets; /* Shadow register sets */ | ||
| 57 | #if defined(CONFIG_MIPS_MT_SMTC) | 58 | #if defined(CONFIG_MIPS_MT_SMTC) |
| 58 | /* | 59 | /* |
| 59 | * In the MIPS MT "SMTC" model, each TC is considered | 60 | * In the MIPS MT "SMTC" model, each TC is considered |
diff --git a/include/asm-mips/lasat/lasatint.h b/include/asm-mips/lasat/lasatint.h index 581dc45685a2..e0d2458b43d0 100644 --- a/include/asm-mips/lasat/lasatint.h +++ b/include/asm-mips/lasat/lasatint.h | |||
| @@ -1,11 +1,6 @@ | |||
| 1 | #ifndef __ASM_LASAT_LASATINT_H | 1 | #ifndef __ASM_LASAT_LASATINT_H |
| 2 | #define __ASM_LASAT_LASATINT_H | 2 | #define __ASM_LASAT_LASATINT_H |
| 3 | 3 | ||
| 4 | #include <linux/irq.h> | ||
| 5 | |||
| 6 | #define LASATINT_BASE MIPS_CPU_IRQ_BASE | ||
| 7 | #define LASATINT_END (LASATINT_BASE + 16) | ||
| 8 | |||
| 9 | /* lasat 100 */ | 4 | /* lasat 100 */ |
| 10 | #define LASAT_INT_STATUS_REG_100 (KSEG1ADDR(0x1c880000)) | 5 | #define LASAT_INT_STATUS_REG_100 (KSEG1ADDR(0x1c880000)) |
| 11 | #define LASAT_INT_MASK_REG_100 (KSEG1ADDR(0x1c890000)) | 6 | #define LASAT_INT_MASK_REG_100 (KSEG1ADDR(0x1c890000)) |
diff --git a/include/asm-mips/mach-lasat/irq.h b/include/asm-mips/mach-lasat/irq.h new file mode 100644 index 000000000000..da75f89f3723 --- /dev/null +++ b/include/asm-mips/mach-lasat/irq.h | |||
| @@ -0,0 +1,13 @@ | |||
| 1 | #ifndef _ASM_MACH_LASAT_IRQ_H | ||
| 2 | #define _ASM_MACH_LASAT_IRQ_H | ||
| 3 | |||
| 4 | #define LASAT_CASCADE_IRQ (MIPS_CPU_IRQ_BASE + 0) | ||
| 5 | |||
| 6 | #define LASAT_IRQ_BASE 8 | ||
| 7 | #define LASAT_IRQ_END 23 | ||
| 8 | |||
| 9 | #define NR_IRQS 24 | ||
| 10 | |||
| 11 | #include_next <irq.h> | ||
| 12 | |||
| 13 | #endif /* _ASM_MACH_LASAT_IRQ_H */ | ||
diff --git a/include/asm-mips/timex.h b/include/asm-mips/timex.h index 5816ad1569d6..6529704aa73a 100644 --- a/include/asm-mips/timex.h +++ b/include/asm-mips/timex.h | |||
| @@ -35,7 +35,7 @@ typedef unsigned int cycles_t; | |||
| 35 | 35 | ||
| 36 | static inline cycles_t get_cycles(void) | 36 | static inline cycles_t get_cycles(void) |
| 37 | { | 37 | { |
| 38 | return read_c0_count(); | 38 | return 0; |
| 39 | } | 39 | } |
| 40 | 40 | ||
| 41 | #endif /* __KERNEL__ */ | 41 | #endif /* __KERNEL__ */ |
diff --git a/include/asm-um/pgtable-3level.h b/include/asm-um/pgtable-3level.h index aa82b88db805..3ebafbaacb24 100644 --- a/include/asm-um/pgtable-3level.h +++ b/include/asm-um/pgtable-3level.h | |||
| @@ -71,7 +71,7 @@ static inline pmd_t *pmd_alloc_one(struct mm_struct *mm, unsigned long address) | |||
| 71 | 71 | ||
| 72 | static inline void pud_clear (pud_t *pud) | 72 | static inline void pud_clear (pud_t *pud) |
| 73 | { | 73 | { |
| 74 | set_pud(pud, __pud(0)); | 74 | set_pud(pud, __pud(_PAGE_NEWPAGE)); |
| 75 | } | 75 | } |
| 76 | 76 | ||
| 77 | #define pud_page(pud) phys_to_page(pud_val(pud) & PAGE_MASK) | 77 | #define pud_page(pud) phys_to_page(pud_val(pud) & PAGE_MASK) |
diff --git a/include/asm-x86/mach-default/mach_reboot.h b/include/asm-x86/mach-default/mach_reboot.h index e23fd9fbebb3..6adee6a97dec 100644 --- a/include/asm-x86/mach-default/mach_reboot.h +++ b/include/asm-x86/mach-default/mach_reboot.h | |||
| @@ -49,7 +49,7 @@ static inline void mach_reboot(void) | |||
| 49 | udelay(50); | 49 | udelay(50); |
| 50 | kb_wait(); | 50 | kb_wait(); |
| 51 | udelay(50); | 51 | udelay(50); |
| 52 | outb(cmd | 0x04, 0x60); /* set "System flag" */ | 52 | outb(cmd | 0x14, 0x60); /* set "System flag" and "Keyboard Disabled" */ |
| 53 | udelay(50); | 53 | udelay(50); |
| 54 | kb_wait(); | 54 | kb_wait(); |
| 55 | udelay(50); | 55 | udelay(50); |
diff --git a/include/asm-x86/mach-es7000/mach_mpparse.h b/include/asm-x86/mach-es7000/mach_mpparse.h index 8aa10547b4b1..52ee75cd0fe1 100644 --- a/include/asm-x86/mach-es7000/mach_mpparse.h +++ b/include/asm-x86/mach-es7000/mach_mpparse.h | |||
| @@ -29,9 +29,9 @@ extern int mps_oem_check(struct mp_config_table *mpc, char *oem, | |||
| 29 | static inline int es7000_check_dsdt(void) | 29 | static inline int es7000_check_dsdt(void) |
| 30 | { | 30 | { |
| 31 | struct acpi_table_header header; | 31 | struct acpi_table_header header; |
| 32 | memcpy(&header, 0, sizeof(struct acpi_table_header)); | 32 | |
| 33 | acpi_get_table_header(ACPI_SIG_DSDT, 0, &header); | 33 | if (ACPI_SUCCESS(acpi_get_table_header(ACPI_SIG_DSDT, 0, &header)) && |
| 34 | if (!strncmp(header.oem_id, "UNISYS", 6)) | 34 | !strncmp(header.oem_id, "UNISYS", 6)) |
| 35 | return 1; | 35 | return 1; |
| 36 | return 0; | 36 | return 0; |
| 37 | } | 37 | } |
diff --git a/include/asm-x86/mach-voyager/setup_arch.h b/include/asm-x86/mach-voyager/setup_arch.h index 1710ae10eb67..71729ca05cd7 100644 --- a/include/asm-x86/mach-voyager/setup_arch.h +++ b/include/asm-x86/mach-voyager/setup_arch.h | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | #include <asm/voyager.h> | 1 | #include <asm/voyager.h> |
| 2 | #include <asm/setup_32.h> | 2 | #include <asm/setup.h> |
| 3 | #define VOYAGER_BIOS_INFO ((struct voyager_bios_info *) \ | 3 | #define VOYAGER_BIOS_INFO ((struct voyager_bios_info *) \ |
| 4 | (&boot_params.apm_bios_info)) | 4 | (&boot_params.apm_bios_info)) |
| 5 | 5 | ||
diff --git a/include/asm-x86/ptrace.h b/include/asm-x86/ptrace.h index 213c97300cb3..51ddb2590870 100644 --- a/include/asm-x86/ptrace.h +++ b/include/asm-x86/ptrace.h | |||
| @@ -60,7 +60,7 @@ static inline int v8086_mode(struct pt_regs *regs) | |||
| 60 | 60 | ||
| 61 | #define instruction_pointer(regs) ((regs)->eip) | 61 | #define instruction_pointer(regs) ((regs)->eip) |
| 62 | #define frame_pointer(regs) ((regs)->ebp) | 62 | #define frame_pointer(regs) ((regs)->ebp) |
| 63 | #define stack_pointer(regs) ((regs)->esp) | 63 | #define stack_pointer(regs) ((unsigned long)(regs)) |
| 64 | #define regs_return_value(regs) ((regs)->eax) | 64 | #define regs_return_value(regs) ((regs)->eax) |
| 65 | 65 | ||
| 66 | extern unsigned long profile_pc(struct pt_regs *regs); | 66 | extern unsigned long profile_pc(struct pt_regs *regs); |
diff --git a/include/linux/cgroup_subsys.h b/include/linux/cgroup_subsys.h index 0b9bfbde8168..d62fcee9a08a 100644 --- a/include/linux/cgroup_subsys.h +++ b/include/linux/cgroup_subsys.h | |||
| @@ -13,12 +13,6 @@ SUBSYS(cpuset) | |||
| 13 | 13 | ||
| 14 | /* */ | 14 | /* */ |
| 15 | 15 | ||
| 16 | #ifdef CONFIG_CGROUP_CPUACCT | ||
| 17 | SUBSYS(cpuacct) | ||
| 18 | #endif | ||
| 19 | |||
| 20 | /* */ | ||
| 21 | |||
| 22 | #ifdef CONFIG_CGROUP_DEBUG | 16 | #ifdef CONFIG_CGROUP_DEBUG |
| 23 | SUBSYS(debug) | 17 | SUBSYS(debug) |
| 24 | #endif | 18 | #endif |
diff --git a/include/linux/cpu_acct.h b/include/linux/cpu_acct.h deleted file mode 100644 index 6b5fd8a66c8d..000000000000 --- a/include/linux/cpu_acct.h +++ /dev/null | |||
| @@ -1,14 +0,0 @@ | |||
| 1 | |||
| 2 | #ifndef _LINUX_CPU_ACCT_H | ||
| 3 | #define _LINUX_CPU_ACCT_H | ||
| 4 | |||
| 5 | #include <linux/cgroup.h> | ||
| 6 | #include <asm/cputime.h> | ||
| 7 | |||
| 8 | #ifdef CONFIG_CGROUP_CPUACCT | ||
| 9 | extern void cpuacct_charge(struct task_struct *, cputime_t cputime); | ||
| 10 | #else | ||
| 11 | static void inline cpuacct_charge(struct task_struct *p, cputime_t cputime) {} | ||
| 12 | #endif | ||
| 13 | |||
| 14 | #endif | ||
diff --git a/include/linux/ext3_fs.h b/include/linux/ext3_fs.h index 64134456ed8c..241c01cb92b2 100644 --- a/include/linux/ext3_fs.h +++ b/include/linux/ext3_fs.h | |||
| @@ -656,6 +656,26 @@ struct ext3_dir_entry_2 { | |||
| 656 | #define EXT3_DIR_ROUND (EXT3_DIR_PAD - 1) | 656 | #define EXT3_DIR_ROUND (EXT3_DIR_PAD - 1) |
| 657 | #define EXT3_DIR_REC_LEN(name_len) (((name_len) + 8 + EXT3_DIR_ROUND) & \ | 657 | #define EXT3_DIR_REC_LEN(name_len) (((name_len) + 8 + EXT3_DIR_ROUND) & \ |
| 658 | ~EXT3_DIR_ROUND) | 658 | ~EXT3_DIR_ROUND) |
| 659 | #define EXT3_MAX_REC_LEN ((1<<16)-1) | ||
| 660 | |||
| 661 | static inline unsigned ext3_rec_len_from_disk(__le16 dlen) | ||
| 662 | { | ||
| 663 | unsigned len = le16_to_cpu(dlen); | ||
| 664 | |||
| 665 | if (len == EXT3_MAX_REC_LEN) | ||
| 666 | return 1 << 16; | ||
| 667 | return len; | ||
| 668 | } | ||
| 669 | |||
| 670 | static inline __le16 ext3_rec_len_to_disk(unsigned len) | ||
| 671 | { | ||
| 672 | if (len == (1 << 16)) | ||
| 673 | return cpu_to_le16(EXT3_MAX_REC_LEN); | ||
| 674 | else if (len > (1 << 16)) | ||
| 675 | BUG(); | ||
| 676 | return cpu_to_le16(len); | ||
| 677 | } | ||
| 678 | |||
| 659 | /* | 679 | /* |
| 660 | * Hash Tree Directory indexing | 680 | * Hash Tree Directory indexing |
| 661 | * (c) Daniel Phillips, 2001 | 681 | * (c) Daniel Phillips, 2001 |
diff --git a/include/linux/hugetlb.h b/include/linux/hugetlb.h index ea0f50bfbe03..24968790bc3e 100644 --- a/include/linux/hugetlb.h +++ b/include/linux/hugetlb.h | |||
| @@ -19,7 +19,7 @@ static inline int is_vm_hugetlb_page(struct vm_area_struct *vma) | |||
| 19 | int hugetlb_sysctl_handler(struct ctl_table *, int, struct file *, void __user *, size_t *, loff_t *); | 19 | int hugetlb_sysctl_handler(struct ctl_table *, int, struct file *, void __user *, size_t *, loff_t *); |
| 20 | int hugetlb_treat_movable_handler(struct ctl_table *, int, struct file *, void __user *, size_t *, loff_t *); | 20 | int hugetlb_treat_movable_handler(struct ctl_table *, int, struct file *, void __user *, size_t *, loff_t *); |
| 21 | int copy_hugetlb_page_range(struct mm_struct *, struct mm_struct *, struct vm_area_struct *); | 21 | int copy_hugetlb_page_range(struct mm_struct *, struct mm_struct *, struct vm_area_struct *); |
| 22 | int follow_hugetlb_page(struct mm_struct *, struct vm_area_struct *, struct page **, struct vm_area_struct **, unsigned long *, int *, int); | 22 | int follow_hugetlb_page(struct mm_struct *, struct vm_area_struct *, struct page **, struct vm_area_struct **, unsigned long *, int *, int, int); |
| 23 | void unmap_hugepage_range(struct vm_area_struct *, unsigned long, unsigned long); | 23 | void unmap_hugepage_range(struct vm_area_struct *, unsigned long, unsigned long); |
| 24 | void __unmap_hugepage_range(struct vm_area_struct *, unsigned long, unsigned long); | 24 | void __unmap_hugepage_range(struct vm_area_struct *, unsigned long, unsigned long); |
| 25 | int hugetlb_prefault(struct address_space *, struct vm_area_struct *); | 25 | int hugetlb_prefault(struct address_space *, struct vm_area_struct *); |
| @@ -106,7 +106,7 @@ static inline unsigned long hugetlb_total_pages(void) | |||
| 106 | return 0; | 106 | return 0; |
| 107 | } | 107 | } |
| 108 | 108 | ||
| 109 | #define follow_hugetlb_page(m,v,p,vs,a,b,i) ({ BUG(); 0; }) | 109 | #define follow_hugetlb_page(m,v,p,vs,a,b,i,w) ({ BUG(); 0; }) |
| 110 | #define follow_huge_addr(mm, addr, write) ERR_PTR(-EINVAL) | 110 | #define follow_huge_addr(mm, addr, write) ERR_PTR(-EINVAL) |
| 111 | #define copy_hugetlb_page_range(src, dst, vma) ({ BUG(); 0; }) | 111 | #define copy_hugetlb_page_range(src, dst, vma) ({ BUG(); 0; }) |
| 112 | #define hugetlb_prefault(mapping, vma) ({ BUG(); 0; }) | 112 | #define hugetlb_prefault(mapping, vma) ({ BUG(); 0; }) |
| @@ -165,8 +165,10 @@ static inline struct hugetlbfs_sb_info *HUGETLBFS_SB(struct super_block *sb) | |||
| 165 | extern const struct file_operations hugetlbfs_file_operations; | 165 | extern const struct file_operations hugetlbfs_file_operations; |
| 166 | extern struct vm_operations_struct hugetlb_vm_ops; | 166 | extern struct vm_operations_struct hugetlb_vm_ops; |
| 167 | struct file *hugetlb_file_setup(const char *name, size_t); | 167 | struct file *hugetlb_file_setup(const char *name, size_t); |
| 168 | int hugetlb_get_quota(struct address_space *mapping); | 168 | int hugetlb_get_quota(struct address_space *mapping, long delta); |
| 169 | void hugetlb_put_quota(struct address_space *mapping); | 169 | void hugetlb_put_quota(struct address_space *mapping, long delta); |
| 170 | |||
| 171 | #define BLOCKS_PER_HUGEPAGE (HPAGE_SIZE / 512) | ||
| 170 | 172 | ||
| 171 | static inline int is_file_hugepages(struct file *file) | 173 | static inline int is_file_hugepages(struct file *file) |
| 172 | { | 174 | { |
diff --git a/include/linux/i2c.h b/include/linux/i2c.h index 8033e6b33271..a100c9f8eb7c 100644 --- a/include/linux/i2c.h +++ b/include/linux/i2c.h | |||
| @@ -400,11 +400,6 @@ extern int i2c_release_client(struct i2c_client *); | |||
| 400 | extern void i2c_clients_command(struct i2c_adapter *adap, | 400 | extern void i2c_clients_command(struct i2c_adapter *adap, |
| 401 | unsigned int cmd, void *arg); | 401 | unsigned int cmd, void *arg); |
| 402 | 402 | ||
| 403 | /* returns -EBUSY if address has been taken, 0 if not. Note that the only | ||
| 404 | other place at which this is called is within i2c_attach_client; so | ||
| 405 | you can cheat by simply not registering. Not recommended, of course! */ | ||
| 406 | extern int i2c_check_addr (struct i2c_adapter *adapter, int addr); | ||
| 407 | |||
| 408 | /* Detect function. It iterates over all possible addresses itself. | 403 | /* Detect function. It iterates over all possible addresses itself. |
| 409 | * It will only call found_proc if some client is connected at the | 404 | * It will only call found_proc if some client is connected at the |
| 410 | * specific address (unless a 'force' matched); | 405 | * specific address (unless a 'force' matched); |
diff --git a/include/linux/mc146818rtc.h b/include/linux/mc146818rtc.h index 580b3f4956ee..2f4e957af656 100644 --- a/include/linux/mc146818rtc.h +++ b/include/linux/mc146818rtc.h | |||
| @@ -109,8 +109,11 @@ struct cmos_rtc_board_info { | |||
| 109 | #ifndef ARCH_RTC_LOCATION /* Override by <asm/mc146818rtc.h>? */ | 109 | #ifndef ARCH_RTC_LOCATION /* Override by <asm/mc146818rtc.h>? */ |
| 110 | 110 | ||
| 111 | #define RTC_IO_EXTENT 0x8 | 111 | #define RTC_IO_EXTENT 0x8 |
| 112 | #define RTC_IO_EXTENT_USED 0x2 | ||
| 112 | #define RTC_IOMAPPED 1 /* Default to I/O mapping. */ | 113 | #define RTC_IOMAPPED 1 /* Default to I/O mapping. */ |
| 113 | 114 | ||
| 115 | #else | ||
| 116 | #define RTC_IO_EXTENT_USED RTC_IO_EXTENT | ||
| 114 | #endif /* ARCH_RTC_LOCATION */ | 117 | #endif /* ARCH_RTC_LOCATION */ |
| 115 | 118 | ||
| 116 | #endif /* _MC146818RTC_H */ | 119 | #endif /* _MC146818RTC_H */ |
diff --git a/include/linux/pci_ids.h b/include/linux/pci_ids.h index cd6cdb3cd7a5..1ee009e8fec8 100644 --- a/include/linux/pci_ids.h +++ b/include/linux/pci_ids.h | |||
| @@ -2332,6 +2332,7 @@ | |||
| 2332 | #define PCI_DEVICE_ID_INTEL_MCH_PC1 0x359a | 2332 | #define PCI_DEVICE_ID_INTEL_MCH_PC1 0x359a |
| 2333 | #define PCI_DEVICE_ID_INTEL_E7525_MCH 0x359e | 2333 | #define PCI_DEVICE_ID_INTEL_E7525_MCH 0x359e |
| 2334 | #define PCI_DEVICE_ID_INTEL_IOAT_CNB 0x360b | 2334 | #define PCI_DEVICE_ID_INTEL_IOAT_CNB 0x360b |
| 2335 | #define PCI_DEVICE_ID_INTEL_IOAT_SNB 0x402f | ||
| 2335 | #define PCI_DEVICE_ID_INTEL_IOAT_SCNB 0x65ff | 2336 | #define PCI_DEVICE_ID_INTEL_IOAT_SCNB 0x65ff |
| 2336 | #define PCI_DEVICE_ID_INTEL_TOLAPAI_0 0x5031 | 2337 | #define PCI_DEVICE_ID_INTEL_TOLAPAI_0 0x5031 |
| 2337 | #define PCI_DEVICE_ID_INTEL_TOLAPAI_1 0x5032 | 2338 | #define PCI_DEVICE_ID_INTEL_TOLAPAI_1 0x5032 |
diff --git a/include/linux/pid_namespace.h b/include/linux/pid_namespace.h index 0135c76c76c6..1689e28483e4 100644 --- a/include/linux/pid_namespace.h +++ b/include/linux/pid_namespace.h | |||
| @@ -29,6 +29,7 @@ struct pid_namespace { | |||
| 29 | 29 | ||
| 30 | extern struct pid_namespace init_pid_ns; | 30 | extern struct pid_namespace init_pid_ns; |
| 31 | 31 | ||
| 32 | #ifdef CONFIG_PID_NS | ||
| 32 | static inline struct pid_namespace *get_pid_ns(struct pid_namespace *ns) | 33 | static inline struct pid_namespace *get_pid_ns(struct pid_namespace *ns) |
| 33 | { | 34 | { |
| 34 | if (ns != &init_pid_ns) | 35 | if (ns != &init_pid_ns) |
| @@ -45,6 +46,28 @@ static inline void put_pid_ns(struct pid_namespace *ns) | |||
| 45 | kref_put(&ns->kref, free_pid_ns); | 46 | kref_put(&ns->kref, free_pid_ns); |
| 46 | } | 47 | } |
| 47 | 48 | ||
| 49 | #else /* !CONFIG_PID_NS */ | ||
| 50 | #include <linux/err.h> | ||
| 51 | |||
| 52 | static inline struct pid_namespace *get_pid_ns(struct pid_namespace *ns) | ||
| 53 | { | ||
| 54 | return ns; | ||
| 55 | } | ||
| 56 | |||
| 57 | static inline struct pid_namespace * | ||
| 58 | copy_pid_ns(unsigned long flags, struct pid_namespace *ns) | ||
| 59 | { | ||
| 60 | if (flags & CLONE_NEWPID) | ||
| 61 | ns = ERR_PTR(-EINVAL); | ||
| 62 | return ns; | ||
| 63 | } | ||
| 64 | |||
| 65 | static inline void put_pid_ns(struct pid_namespace *ns) | ||
| 66 | { | ||
| 67 | } | ||
| 68 | |||
| 69 | #endif /* CONFIG_PID_NS */ | ||
| 70 | |||
| 48 | static inline struct pid_namespace *task_active_pid_ns(struct task_struct *tsk) | 71 | static inline struct pid_namespace *task_active_pid_ns(struct task_struct *tsk) |
| 49 | { | 72 | { |
| 50 | return tsk->nsproxy->pid_ns; | 73 | return tsk->nsproxy->pid_ns; |
diff --git a/include/linux/selinux.h b/include/linux/selinux.h index d1b7ca6c1c57..6080f73fc85f 100644 --- a/include/linux/selinux.h +++ b/include/linux/selinux.h | |||
| @@ -136,7 +136,7 @@ static inline int selinux_audit_rule_init(u32 field, u32 op, | |||
| 136 | char *rulestr, | 136 | char *rulestr, |
| 137 | struct selinux_audit_rule **rule) | 137 | struct selinux_audit_rule **rule) |
| 138 | { | 138 | { |
| 139 | return -ENOTSUPP; | 139 | return -EOPNOTSUPP; |
| 140 | } | 140 | } |
| 141 | 141 | ||
| 142 | static inline void selinux_audit_rule_free(struct selinux_audit_rule *rule) | 142 | static inline void selinux_audit_rule_free(struct selinux_audit_rule *rule) |
diff --git a/include/net/request_sock.h b/include/net/request_sock.h index 7aed02ce2b65..cff4608179c1 100644 --- a/include/net/request_sock.h +++ b/include/net/request_sock.h | |||
| @@ -124,23 +124,7 @@ struct request_sock_queue { | |||
| 124 | extern int reqsk_queue_alloc(struct request_sock_queue *queue, | 124 | extern int reqsk_queue_alloc(struct request_sock_queue *queue, |
| 125 | unsigned int nr_table_entries); | 125 | unsigned int nr_table_entries); |
| 126 | 126 | ||
| 127 | static inline struct listen_sock *reqsk_queue_yank_listen_sk(struct request_sock_queue *queue) | 127 | extern void __reqsk_queue_destroy(struct request_sock_queue *queue); |
| 128 | { | ||
| 129 | struct listen_sock *lopt; | ||
| 130 | |||
| 131 | write_lock_bh(&queue->syn_wait_lock); | ||
| 132 | lopt = queue->listen_opt; | ||
| 133 | queue->listen_opt = NULL; | ||
| 134 | write_unlock_bh(&queue->syn_wait_lock); | ||
| 135 | |||
| 136 | return lopt; | ||
| 137 | } | ||
| 138 | |||
| 139 | static inline void __reqsk_queue_destroy(struct request_sock_queue *queue) | ||
| 140 | { | ||
| 141 | kfree(reqsk_queue_yank_listen_sk(queue)); | ||
| 142 | } | ||
| 143 | |||
| 144 | extern void reqsk_queue_destroy(struct request_sock_queue *queue); | 128 | extern void reqsk_queue_destroy(struct request_sock_queue *queue); |
| 145 | 129 | ||
| 146 | static inline struct request_sock * | 130 | static inline struct request_sock * |
diff --git a/include/net/sock.h b/include/net/sock.h index 5504fb9fa88a..567e468d7492 100644 --- a/include/net/sock.h +++ b/include/net/sock.h | |||
| @@ -1235,14 +1235,16 @@ static inline struct sk_buff *sk_stream_alloc_pskb(struct sock *sk, | |||
| 1235 | gfp_t gfp) | 1235 | gfp_t gfp) |
| 1236 | { | 1236 | { |
| 1237 | struct sk_buff *skb; | 1237 | struct sk_buff *skb; |
| 1238 | int hdr_len; | ||
| 1239 | 1238 | ||
| 1240 | hdr_len = SKB_DATA_ALIGN(sk->sk_prot->max_header); | 1239 | skb = alloc_skb_fclone(size + sk->sk_prot->max_header, gfp); |
| 1241 | skb = alloc_skb_fclone(size + hdr_len, gfp); | ||
| 1242 | if (skb) { | 1240 | if (skb) { |
| 1243 | skb->truesize += mem; | 1241 | skb->truesize += mem; |
| 1244 | if (sk_stream_wmem_schedule(sk, skb->truesize)) { | 1242 | if (sk_stream_wmem_schedule(sk, skb->truesize)) { |
| 1245 | skb_reserve(skb, hdr_len); | 1243 | /* |
| 1244 | * Make sure that we have exactly size bytes | ||
| 1245 | * available to the caller, no more, no less. | ||
| 1246 | */ | ||
| 1247 | skb_reserve(skb, skb_tailroom(skb) - size); | ||
| 1246 | return skb; | 1248 | return skb; |
| 1247 | } | 1249 | } |
| 1248 | __kfree_skb(skb); | 1250 | __kfree_skb(skb); |
diff --git a/include/pcmcia/cs_types.h b/include/pcmcia/cs_types.h index c1d1629fcd27..5f388035687d 100644 --- a/include/pcmcia/cs_types.h +++ b/include/pcmcia/cs_types.h | |||
| @@ -21,7 +21,7 @@ | |||
| 21 | #include <sys/types.h> | 21 | #include <sys/types.h> |
| 22 | #endif | 22 | #endif |
| 23 | 23 | ||
| 24 | #if defined(__arm__) || defined(__mips__) | 24 | #if defined(__arm__) || defined(__mips__) || defined(__avr32__) |
| 25 | /* This (ioaddr_t) is exposed to userspace & hence cannot be changed. */ | 25 | /* This (ioaddr_t) is exposed to userspace & hence cannot be changed. */ |
| 26 | typedef u_int ioaddr_t; | 26 | typedef u_int ioaddr_t; |
| 27 | #else | 27 | #else |
diff --git a/init/Kconfig b/init/Kconfig index 8b88d0bedcbd..c5b354b1409e 100644 --- a/init/Kconfig +++ b/init/Kconfig | |||
| @@ -215,6 +215,18 @@ config USER_NS | |||
| 215 | vservers, to use user namespaces to provide different | 215 | vservers, to use user namespaces to provide different |
| 216 | user info for different servers. If unsure, say N. | 216 | user info for different servers. If unsure, say N. |
| 217 | 217 | ||
| 218 | config PID_NS | ||
| 219 | bool "PID Namespaces (EXPERIMENTAL)" | ||
| 220 | default n | ||
| 221 | depends on EXPERIMENTAL | ||
| 222 | help | ||
| 223 | Suport process id namespaces. This allows having multiple | ||
| 224 | process with the same pid as long as they are in different | ||
| 225 | pid namespaces. This is a building block of containers. | ||
| 226 | |||
| 227 | Unless you want to work with an experimental feature | ||
| 228 | say N here. | ||
| 229 | |||
| 218 | config AUDIT | 230 | config AUDIT |
| 219 | bool "Auditing support" | 231 | bool "Auditing support" |
| 220 | depends on NET | 232 | depends on NET |
| @@ -301,13 +313,6 @@ config CGROUP_NS | |||
| 301 | for instance virtual servers and checkpoint/restart | 313 | for instance virtual servers and checkpoint/restart |
| 302 | jobs. | 314 | jobs. |
| 303 | 315 | ||
| 304 | config CGROUP_CPUACCT | ||
| 305 | bool "Simple CPU accounting cgroup subsystem" | ||
| 306 | depends on CGROUPS | ||
| 307 | help | ||
| 308 | Provides a simple Resource Controller for monitoring the | ||
| 309 | total CPU consumed by the tasks in a cgroup | ||
| 310 | |||
| 311 | config CPUSETS | 316 | config CPUSETS |
| 312 | bool "Cpuset support" | 317 | bool "Cpuset support" |
| 313 | depends on SMP && CGROUPS | 318 | depends on SMP && CGROUPS |
diff --git a/kernel/Makefile b/kernel/Makefile index f60afe742599..dfa96956dae0 100644 --- a/kernel/Makefile +++ b/kernel/Makefile | |||
| @@ -40,7 +40,6 @@ obj-$(CONFIG_COMPAT) += compat.o | |||
| 40 | obj-$(CONFIG_CGROUPS) += cgroup.o | 40 | obj-$(CONFIG_CGROUPS) += cgroup.o |
| 41 | obj-$(CONFIG_CGROUP_DEBUG) += cgroup_debug.o | 41 | obj-$(CONFIG_CGROUP_DEBUG) += cgroup_debug.o |
| 42 | obj-$(CONFIG_CPUSETS) += cpuset.o | 42 | obj-$(CONFIG_CPUSETS) += cpuset.o |
| 43 | obj-$(CONFIG_CGROUP_CPUACCT) += cpu_acct.o | ||
| 44 | obj-$(CONFIG_CGROUP_NS) += ns_cgroup.o | 43 | obj-$(CONFIG_CGROUP_NS) += ns_cgroup.o |
| 45 | obj-$(CONFIG_IKCONFIG) += configs.o | 44 | obj-$(CONFIG_IKCONFIG) += configs.o |
| 46 | obj-$(CONFIG_STOP_MACHINE) += stop_machine.o | 45 | obj-$(CONFIG_STOP_MACHINE) += stop_machine.o |
diff --git a/kernel/cgroup.c b/kernel/cgroup.c index 3fe21e19c96e..1a3c23936d43 100644 --- a/kernel/cgroup.c +++ b/kernel/cgroup.c | |||
| @@ -1,6 +1,4 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * kernel/cgroup.c | ||
| 3 | * | ||
| 4 | * Generic process-grouping system. | 2 | * Generic process-grouping system. |
| 5 | * | 3 | * |
| 6 | * Based originally on the cpuset system, extracted by Paul Menage | 4 | * Based originally on the cpuset system, extracted by Paul Menage |
| @@ -2200,7 +2198,8 @@ static void cgroup_init_subsys(struct cgroup_subsys *ss) | |||
| 2200 | { | 2198 | { |
| 2201 | struct cgroup_subsys_state *css; | 2199 | struct cgroup_subsys_state *css; |
| 2202 | struct list_head *l; | 2200 | struct list_head *l; |
| 2203 | printk(KERN_ERR "Initializing cgroup subsys %s\n", ss->name); | 2201 | |
| 2202 | printk(KERN_INFO "Initializing cgroup subsys %s\n", ss->name); | ||
| 2204 | 2203 | ||
| 2205 | /* Create the top cgroup state for this subsystem */ | 2204 | /* Create the top cgroup state for this subsystem */ |
| 2206 | ss->root = &rootnode; | 2205 | ss->root = &rootnode; |
| @@ -2273,7 +2272,7 @@ int __init cgroup_init_early(void) | |||
| 2273 | BUG_ON(!ss->create); | 2272 | BUG_ON(!ss->create); |
| 2274 | BUG_ON(!ss->destroy); | 2273 | BUG_ON(!ss->destroy); |
| 2275 | if (ss->subsys_id != i) { | 2274 | if (ss->subsys_id != i) { |
| 2276 | printk(KERN_ERR "Subsys %s id == %d\n", | 2275 | printk(KERN_ERR "cgroup: Subsys %s id == %d\n", |
| 2277 | ss->name, ss->subsys_id); | 2276 | ss->name, ss->subsys_id); |
| 2278 | BUG(); | 2277 | BUG(); |
| 2279 | } | 2278 | } |
| @@ -2605,7 +2604,7 @@ int cgroup_clone(struct task_struct *tsk, struct cgroup_subsys *subsys) | |||
| 2605 | dentry = lookup_one_len(nodename, parent->dentry, strlen(nodename)); | 2604 | dentry = lookup_one_len(nodename, parent->dentry, strlen(nodename)); |
| 2606 | if (IS_ERR(dentry)) { | 2605 | if (IS_ERR(dentry)) { |
| 2607 | printk(KERN_INFO | 2606 | printk(KERN_INFO |
| 2608 | "Couldn't allocate dentry for %s: %ld\n", nodename, | 2607 | "cgroup: Couldn't allocate dentry for %s: %ld\n", nodename, |
| 2609 | PTR_ERR(dentry)); | 2608 | PTR_ERR(dentry)); |
| 2610 | ret = PTR_ERR(dentry); | 2609 | ret = PTR_ERR(dentry); |
| 2611 | goto out_release; | 2610 | goto out_release; |
diff --git a/kernel/cpu_acct.c b/kernel/cpu_acct.c deleted file mode 100644 index 731e47e7f164..000000000000 --- a/kernel/cpu_acct.c +++ /dev/null | |||
| @@ -1,186 +0,0 @@ | |||
| 1 | /* | ||
| 2 | * kernel/cpu_acct.c - CPU accounting cgroup subsystem | ||
| 3 | * | ||
| 4 | * Copyright (C) Google Inc, 2006 | ||
| 5 | * | ||
| 6 | * Developed by Paul Menage (menage@google.com) and Balbir Singh | ||
| 7 | * (balbir@in.ibm.com) | ||
| 8 | * | ||
| 9 | */ | ||
| 10 | |||
| 11 | /* | ||
| 12 | * Example cgroup subsystem for reporting total CPU usage of tasks in a | ||
| 13 | * cgroup, along with percentage load over a time interval | ||
| 14 | */ | ||
| 15 | |||
| 16 | #include <linux/module.h> | ||
| 17 | #include <linux/cgroup.h> | ||
| 18 | #include <linux/fs.h> | ||
| 19 | #include <linux/rcupdate.h> | ||
| 20 | |||
| 21 | #include <asm/div64.h> | ||
| 22 | |||
| 23 | struct cpuacct { | ||
| 24 | struct cgroup_subsys_state css; | ||
| 25 | spinlock_t lock; | ||
| 26 | /* total time used by this class */ | ||
| 27 | cputime64_t time; | ||
| 28 | |||
| 29 | /* time when next load calculation occurs */ | ||
| 30 | u64 next_interval_check; | ||
| 31 | |||
| 32 | /* time used in current period */ | ||
| 33 | cputime64_t current_interval_time; | ||
| 34 | |||
| 35 | /* time used in last period */ | ||
| 36 | cputime64_t last_interval_time; | ||
| 37 | }; | ||
| 38 | |||
| 39 | struct cgroup_subsys cpuacct_subsys; | ||
| 40 | |||
| 41 | static inline struct cpuacct *cgroup_ca(struct cgroup *cont) | ||
| 42 | { | ||
| 43 | return container_of(cgroup_subsys_state(cont, cpuacct_subsys_id), | ||
| 44 | struct cpuacct, css); | ||
| 45 | } | ||
| 46 | |||
| 47 | static inline struct cpuacct *task_ca(struct task_struct *task) | ||
| 48 | { | ||
| 49 | return container_of(task_subsys_state(task, cpuacct_subsys_id), | ||
| 50 | struct cpuacct, css); | ||
| 51 | } | ||
| 52 | |||
| 53 | #define INTERVAL (HZ * 10) | ||
| 54 | |||
| 55 | static inline u64 next_interval_boundary(u64 now) | ||
| 56 | { | ||
| 57 | /* calculate the next interval boundary beyond the | ||
| 58 | * current time */ | ||
| 59 | do_div(now, INTERVAL); | ||
| 60 | return (now + 1) * INTERVAL; | ||
| 61 | } | ||
| 62 | |||
| 63 | static struct cgroup_subsys_state *cpuacct_create( | ||
| 64 | struct cgroup_subsys *ss, struct cgroup *cont) | ||
| 65 | { | ||
| 66 | struct cpuacct *ca = kzalloc(sizeof(*ca), GFP_KERNEL); | ||
| 67 | |||
| 68 | if (!ca) | ||
| 69 | return ERR_PTR(-ENOMEM); | ||
| 70 | spin_lock_init(&ca->lock); | ||
| 71 | ca->next_interval_check = next_interval_boundary(get_jiffies_64()); | ||
| 72 | return &ca->css; | ||
| 73 | } | ||
| 74 | |||
| 75 | static void cpuacct_destroy(struct cgroup_subsys *ss, | ||
| 76 | struct cgroup *cont) | ||
| 77 | { | ||
| 78 | kfree(cgroup_ca(cont)); | ||
| 79 | } | ||
| 80 | |||
| 81 | /* Lazily update the load calculation if necessary. Called with ca locked */ | ||
| 82 | static void cpuusage_update(struct cpuacct *ca) | ||
| 83 | { | ||
| 84 | u64 now = get_jiffies_64(); | ||
| 85 | |||
| 86 | /* If we're not due for an update, return */ | ||
| 87 | if (ca->next_interval_check > now) | ||
| 88 | return; | ||
| 89 | |||
| 90 | if (ca->next_interval_check <= (now - INTERVAL)) { | ||
| 91 | /* If it's been more than an interval since the last | ||
| 92 | * check, then catch up - the last interval must have | ||
| 93 | * been zero load */ | ||
| 94 | ca->last_interval_time = 0; | ||
| 95 | ca->next_interval_check = next_interval_boundary(now); | ||
| 96 | } else { | ||
| 97 | /* If a steal takes the last interval time negative, | ||
| 98 | * then we just ignore it */ | ||
| 99 | if ((s64)ca->current_interval_time > 0) | ||
| 100 | ca->last_interval_time = ca->current_interval_time; | ||
| 101 | else | ||
| 102 | ca->last_interval_time = 0; | ||
| 103 | ca->next_interval_check += INTERVAL; | ||
| 104 | } | ||
| 105 | ca->current_interval_time = 0; | ||
| 106 | } | ||
| 107 | |||
| 108 | static u64 cpuusage_read(struct cgroup *cont, struct cftype *cft) | ||
| 109 | { | ||
| 110 | struct cpuacct *ca = cgroup_ca(cont); | ||
| 111 | u64 time; | ||
| 112 | |||
| 113 | spin_lock_irq(&ca->lock); | ||
| 114 | cpuusage_update(ca); | ||
| 115 | time = cputime64_to_jiffies64(ca->time); | ||
| 116 | spin_unlock_irq(&ca->lock); | ||
| 117 | |||
| 118 | /* Convert 64-bit jiffies to seconds */ | ||
| 119 | time *= 1000; | ||
| 120 | do_div(time, HZ); | ||
| 121 | return time; | ||
| 122 | } | ||
| 123 | |||
| 124 | static u64 load_read(struct cgroup *cont, struct cftype *cft) | ||
| 125 | { | ||
| 126 | struct cpuacct *ca = cgroup_ca(cont); | ||
| 127 | u64 time; | ||
| 128 | |||
| 129 | /* Find the time used in the previous interval */ | ||
| 130 | spin_lock_irq(&ca->lock); | ||
| 131 | cpuusage_update(ca); | ||
| 132 | time = cputime64_to_jiffies64(ca->last_interval_time); | ||
| 133 | spin_unlock_irq(&ca->lock); | ||
| 134 | |||
| 135 | /* Convert time to a percentage, to give the load in the | ||
| 136 | * previous period */ | ||
| 137 | time *= 100; | ||
| 138 | do_div(time, INTERVAL); | ||
| 139 | |||
| 140 | return time; | ||
| 141 | } | ||
| 142 | |||
| 143 | static struct cftype files[] = { | ||
| 144 | { | ||
| 145 | .name = "usage", | ||
| 146 | .read_uint = cpuusage_read, | ||
| 147 | }, | ||
| 148 | { | ||
| 149 | .name = "load", | ||
| 150 | .read_uint = load_read, | ||
| 151 | } | ||
| 152 | }; | ||
| 153 | |||
| 154 | static int cpuacct_populate(struct cgroup_subsys *ss, struct cgroup *cont) | ||
| 155 | { | ||
| 156 | return cgroup_add_files(cont, ss, files, ARRAY_SIZE(files)); | ||
| 157 | } | ||
| 158 | |||
| 159 | void cpuacct_charge(struct task_struct *task, cputime_t cputime) | ||
| 160 | { | ||
| 161 | |||
| 162 | struct cpuacct *ca; | ||
| 163 | unsigned long flags; | ||
| 164 | |||
| 165 | if (!cpuacct_subsys.active) | ||
| 166 | return; | ||
| 167 | rcu_read_lock(); | ||
| 168 | ca = task_ca(task); | ||
| 169 | if (ca) { | ||
| 170 | spin_lock_irqsave(&ca->lock, flags); | ||
| 171 | cpuusage_update(ca); | ||
| 172 | ca->time = cputime64_add(ca->time, cputime); | ||
| 173 | ca->current_interval_time = | ||
| 174 | cputime64_add(ca->current_interval_time, cputime); | ||
| 175 | spin_unlock_irqrestore(&ca->lock, flags); | ||
| 176 | } | ||
| 177 | rcu_read_unlock(); | ||
| 178 | } | ||
| 179 | |||
| 180 | struct cgroup_subsys cpuacct_subsys = { | ||
| 181 | .name = "cpuacct", | ||
| 182 | .create = cpuacct_create, | ||
| 183 | .destroy = cpuacct_destroy, | ||
| 184 | .populate = cpuacct_populate, | ||
| 185 | .subsys_id = cpuacct_subsys_id, | ||
| 186 | }; | ||
diff --git a/kernel/exit.c b/kernel/exit.c index f1aec27f1df0..cd0f1d4137a7 100644 --- a/kernel/exit.c +++ b/kernel/exit.c | |||
| @@ -1386,8 +1386,7 @@ static int wait_task_stopped(struct task_struct *p, int delayed_group_leader, | |||
| 1386 | int why = (p->ptrace & PT_PTRACED) ? CLD_TRAPPED : CLD_STOPPED; | 1386 | int why = (p->ptrace & PT_PTRACED) ? CLD_TRAPPED : CLD_STOPPED; |
| 1387 | 1387 | ||
| 1388 | exit_code = p->exit_code; | 1388 | exit_code = p->exit_code; |
| 1389 | if (unlikely(!exit_code) || | 1389 | if (unlikely(!exit_code) || unlikely(p->exit_state)) |
| 1390 | unlikely(p->state & TASK_TRACED)) | ||
| 1391 | goto bail_ref; | 1390 | goto bail_ref; |
| 1392 | return wait_noreap_copyout(p, pid, uid, | 1391 | return wait_noreap_copyout(p, pid, uid, |
| 1393 | why, (exit_code << 8) | 0x7f, | 1392 | why, (exit_code << 8) | 0x7f, |
diff --git a/kernel/irq/handle.c b/kernel/irq/handle.c index e391cbb1f566..dc335ad27525 100644 --- a/kernel/irq/handle.c +++ b/kernel/irq/handle.c | |||
| @@ -178,9 +178,11 @@ fastcall unsigned int __do_IRQ(unsigned int irq) | |||
| 178 | */ | 178 | */ |
| 179 | if (desc->chip->ack) | 179 | if (desc->chip->ack) |
| 180 | desc->chip->ack(irq); | 180 | desc->chip->ack(irq); |
| 181 | action_ret = handle_IRQ_event(irq, desc->action); | 181 | if (likely(!(desc->status & IRQ_DISABLED))) { |
| 182 | if (!noirqdebug) | 182 | action_ret = handle_IRQ_event(irq, desc->action); |
| 183 | note_interrupt(irq, desc, action_ret); | 183 | if (!noirqdebug) |
| 184 | note_interrupt(irq, desc, action_ret); | ||
| 185 | } | ||
| 184 | desc->chip->end(irq); | 186 | desc->chip->end(irq); |
| 185 | return 1; | 187 | return 1; |
| 186 | } | 188 | } |
diff --git a/kernel/marker.c b/kernel/marker.c index ccb48d9a3657..5323cfaedbce 100644 --- a/kernel/marker.c +++ b/kernel/marker.c | |||
| @@ -28,7 +28,7 @@ extern struct marker __start___markers[]; | |||
| 28 | extern struct marker __stop___markers[]; | 28 | extern struct marker __stop___markers[]; |
| 29 | 29 | ||
| 30 | /* | 30 | /* |
| 31 | * module_mutex nests inside markers_mutex. Markers mutex protects the builtin | 31 | * markers_mutex nests inside module_mutex. Markers mutex protects the builtin |
| 32 | * and module markers, the hash table and deferred_sync. | 32 | * and module markers, the hash table and deferred_sync. |
| 33 | */ | 33 | */ |
| 34 | static DEFINE_MUTEX(markers_mutex); | 34 | static DEFINE_MUTEX(markers_mutex); |
| @@ -257,7 +257,6 @@ static void disable_marker(struct marker *elem) | |||
| 257 | * @refcount: number of references left to the given probe_module (out) | 257 | * @refcount: number of references left to the given probe_module (out) |
| 258 | * | 258 | * |
| 259 | * Updates the probe callback corresponding to a range of markers. | 259 | * Updates the probe callback corresponding to a range of markers. |
| 260 | * Must be called with markers_mutex held. | ||
| 261 | */ | 260 | */ |
| 262 | void marker_update_probe_range(struct marker *begin, | 261 | void marker_update_probe_range(struct marker *begin, |
| 263 | struct marker *end, struct module *probe_module, | 262 | struct marker *end, struct module *probe_module, |
| @@ -266,6 +265,7 @@ void marker_update_probe_range(struct marker *begin, | |||
| 266 | struct marker *iter; | 265 | struct marker *iter; |
| 267 | struct marker_entry *mark_entry; | 266 | struct marker_entry *mark_entry; |
| 268 | 267 | ||
| 268 | mutex_lock(&markers_mutex); | ||
| 269 | for (iter = begin; iter < end; iter++) { | 269 | for (iter = begin; iter < end; iter++) { |
| 270 | mark_entry = get_marker(iter->name); | 270 | mark_entry = get_marker(iter->name); |
| 271 | if (mark_entry && mark_entry->refcount) { | 271 | if (mark_entry && mark_entry->refcount) { |
| @@ -281,6 +281,7 @@ void marker_update_probe_range(struct marker *begin, | |||
| 281 | disable_marker(iter); | 281 | disable_marker(iter); |
| 282 | } | 282 | } |
| 283 | } | 283 | } |
| 284 | mutex_unlock(&markers_mutex); | ||
| 284 | } | 285 | } |
| 285 | 286 | ||
| 286 | /* | 287 | /* |
| @@ -293,7 +294,6 @@ static void marker_update_probes(struct module *probe_module) | |||
| 293 | { | 294 | { |
| 294 | int refcount = 0; | 295 | int refcount = 0; |
| 295 | 296 | ||
| 296 | mutex_lock(&markers_mutex); | ||
| 297 | /* Core kernel markers */ | 297 | /* Core kernel markers */ |
| 298 | marker_update_probe_range(__start___markers, | 298 | marker_update_probe_range(__start___markers, |
| 299 | __stop___markers, probe_module, &refcount); | 299 | __stop___markers, probe_module, &refcount); |
| @@ -303,7 +303,6 @@ static void marker_update_probes(struct module *probe_module) | |||
| 303 | synchronize_sched(); | 303 | synchronize_sched(); |
| 304 | deferred_sync = 0; | 304 | deferred_sync = 0; |
| 305 | } | 305 | } |
| 306 | mutex_unlock(&markers_mutex); | ||
| 307 | } | 306 | } |
| 308 | 307 | ||
| 309 | /** | 308 | /** |
| @@ -320,7 +319,7 @@ int marker_probe_register(const char *name, const char *format, | |||
| 320 | marker_probe_func *probe, void *private) | 319 | marker_probe_func *probe, void *private) |
| 321 | { | 320 | { |
| 322 | struct marker_entry *entry; | 321 | struct marker_entry *entry; |
| 323 | int ret = 0, need_update = 0; | 322 | int ret = 0; |
| 324 | 323 | ||
| 325 | mutex_lock(&markers_mutex); | 324 | mutex_lock(&markers_mutex); |
| 326 | entry = get_marker(name); | 325 | entry = get_marker(name); |
| @@ -335,11 +334,11 @@ int marker_probe_register(const char *name, const char *format, | |||
| 335 | ret = add_marker(name, format, probe, private); | 334 | ret = add_marker(name, format, probe, private); |
| 336 | if (ret) | 335 | if (ret) |
| 337 | goto end; | 336 | goto end; |
| 338 | need_update = 1; | 337 | mutex_unlock(&markers_mutex); |
| 338 | marker_update_probes(NULL); | ||
| 339 | return ret; | ||
| 339 | end: | 340 | end: |
| 340 | mutex_unlock(&markers_mutex); | 341 | mutex_unlock(&markers_mutex); |
| 341 | if (need_update) | ||
| 342 | marker_update_probes(NULL); | ||
| 343 | return ret; | 342 | return ret; |
| 344 | } | 343 | } |
| 345 | EXPORT_SYMBOL_GPL(marker_probe_register); | 344 | EXPORT_SYMBOL_GPL(marker_probe_register); |
| @@ -355,7 +354,6 @@ void *marker_probe_unregister(const char *name) | |||
| 355 | struct module *probe_module; | 354 | struct module *probe_module; |
| 356 | struct marker_entry *entry; | 355 | struct marker_entry *entry; |
| 357 | void *private; | 356 | void *private; |
| 358 | int need_update = 0; | ||
| 359 | 357 | ||
| 360 | mutex_lock(&markers_mutex); | 358 | mutex_lock(&markers_mutex); |
| 361 | entry = get_marker(name); | 359 | entry = get_marker(name); |
| @@ -368,11 +366,11 @@ void *marker_probe_unregister(const char *name) | |||
| 368 | probe_module = __module_text_address((unsigned long)entry->probe); | 366 | probe_module = __module_text_address((unsigned long)entry->probe); |
| 369 | private = remove_marker(name); | 367 | private = remove_marker(name); |
| 370 | deferred_sync = 1; | 368 | deferred_sync = 1; |
| 371 | need_update = 1; | 369 | mutex_unlock(&markers_mutex); |
| 370 | marker_update_probes(probe_module); | ||
| 371 | return private; | ||
| 372 | end: | 372 | end: |
| 373 | mutex_unlock(&markers_mutex); | 373 | mutex_unlock(&markers_mutex); |
| 374 | if (need_update) | ||
| 375 | marker_update_probes(probe_module); | ||
| 376 | return private; | 374 | return private; |
| 377 | } | 375 | } |
| 378 | EXPORT_SYMBOL_GPL(marker_probe_unregister); | 376 | EXPORT_SYMBOL_GPL(marker_probe_unregister); |
| @@ -392,7 +390,6 @@ void *marker_probe_unregister_private_data(void *private) | |||
| 392 | struct marker_entry *entry; | 390 | struct marker_entry *entry; |
| 393 | int found = 0; | 391 | int found = 0; |
| 394 | unsigned int i; | 392 | unsigned int i; |
| 395 | int need_update = 0; | ||
| 396 | 393 | ||
| 397 | mutex_lock(&markers_mutex); | 394 | mutex_lock(&markers_mutex); |
| 398 | for (i = 0; i < MARKER_TABLE_SIZE; i++) { | 395 | for (i = 0; i < MARKER_TABLE_SIZE; i++) { |
| @@ -414,11 +411,11 @@ iter_end: | |||
| 414 | probe_module = __module_text_address((unsigned long)entry->probe); | 411 | probe_module = __module_text_address((unsigned long)entry->probe); |
| 415 | private = remove_marker(entry->name); | 412 | private = remove_marker(entry->name); |
| 416 | deferred_sync = 1; | 413 | deferred_sync = 1; |
| 417 | need_update = 1; | 414 | mutex_unlock(&markers_mutex); |
| 415 | marker_update_probes(probe_module); | ||
| 416 | return private; | ||
| 418 | end: | 417 | end: |
| 419 | mutex_unlock(&markers_mutex); | 418 | mutex_unlock(&markers_mutex); |
| 420 | if (need_update) | ||
| 421 | marker_update_probes(probe_module); | ||
| 422 | return private; | 419 | return private; |
| 423 | } | 420 | } |
| 424 | EXPORT_SYMBOL_GPL(marker_probe_unregister_private_data); | 421 | EXPORT_SYMBOL_GPL(marker_probe_unregister_private_data); |
| @@ -434,7 +431,7 @@ EXPORT_SYMBOL_GPL(marker_probe_unregister_private_data); | |||
| 434 | int marker_arm(const char *name) | 431 | int marker_arm(const char *name) |
| 435 | { | 432 | { |
| 436 | struct marker_entry *entry; | 433 | struct marker_entry *entry; |
| 437 | int ret = 0, need_update = 0; | 434 | int ret = 0; |
| 438 | 435 | ||
| 439 | mutex_lock(&markers_mutex); | 436 | mutex_lock(&markers_mutex); |
| 440 | entry = get_marker(name); | 437 | entry = get_marker(name); |
| @@ -447,11 +444,9 @@ int marker_arm(const char *name) | |||
| 447 | */ | 444 | */ |
| 448 | if (entry->refcount++) | 445 | if (entry->refcount++) |
| 449 | goto end; | 446 | goto end; |
| 450 | need_update = 1; | ||
| 451 | end: | 447 | end: |
| 452 | mutex_unlock(&markers_mutex); | 448 | mutex_unlock(&markers_mutex); |
| 453 | if (need_update) | 449 | marker_update_probes(NULL); |
| 454 | marker_update_probes(NULL); | ||
| 455 | return ret; | 450 | return ret; |
| 456 | } | 451 | } |
| 457 | EXPORT_SYMBOL_GPL(marker_arm); | 452 | EXPORT_SYMBOL_GPL(marker_arm); |
| @@ -467,7 +462,7 @@ EXPORT_SYMBOL_GPL(marker_arm); | |||
| 467 | int marker_disarm(const char *name) | 462 | int marker_disarm(const char *name) |
| 468 | { | 463 | { |
| 469 | struct marker_entry *entry; | 464 | struct marker_entry *entry; |
| 470 | int ret = 0, need_update = 0; | 465 | int ret = 0; |
| 471 | 466 | ||
| 472 | mutex_lock(&markers_mutex); | 467 | mutex_lock(&markers_mutex); |
| 473 | entry = get_marker(name); | 468 | entry = get_marker(name); |
| @@ -486,11 +481,9 @@ int marker_disarm(const char *name) | |||
| 486 | ret = -EPERM; | 481 | ret = -EPERM; |
| 487 | goto end; | 482 | goto end; |
| 488 | } | 483 | } |
| 489 | need_update = 1; | ||
| 490 | end: | 484 | end: |
| 491 | mutex_unlock(&markers_mutex); | 485 | mutex_unlock(&markers_mutex); |
| 492 | if (need_update) | 486 | marker_update_probes(NULL); |
| 493 | marker_update_probes(NULL); | ||
| 494 | return ret; | 487 | return ret; |
| 495 | } | 488 | } |
| 496 | EXPORT_SYMBOL_GPL(marker_disarm); | 489 | EXPORT_SYMBOL_GPL(marker_disarm); |
diff --git a/kernel/params.c b/kernel/params.c index 16f269e9ddc9..2a4c51487e72 100644 --- a/kernel/params.c +++ b/kernel/params.c | |||
| @@ -592,19 +592,16 @@ static void __init param_sysfs_builtin(void) | |||
| 592 | 592 | ||
| 593 | for (i=0; i < __stop___param - __start___param; i++) { | 593 | for (i=0; i < __stop___param - __start___param; i++) { |
| 594 | char *dot; | 594 | char *dot; |
| 595 | size_t kplen; | 595 | size_t max_name_len; |
| 596 | 596 | ||
| 597 | kp = &__start___param[i]; | 597 | kp = &__start___param[i]; |
| 598 | kplen = strlen(kp->name); | 598 | max_name_len = |
| 599 | min_t(size_t, MAX_KBUILD_MODNAME, strlen(kp->name)); | ||
| 599 | 600 | ||
| 600 | /* We do not handle args without periods. */ | 601 | dot = memchr(kp->name, '.', max_name_len); |
| 601 | if (kplen > MAX_KBUILD_MODNAME) { | ||
| 602 | DEBUGP("kernel parameter name is too long: %s\n", kp->name); | ||
| 603 | continue; | ||
| 604 | } | ||
| 605 | dot = memchr(kp->name, '.', kplen); | ||
| 606 | if (!dot) { | 602 | if (!dot) { |
| 607 | DEBUGP("couldn't find period in %s\n", kp->name); | 603 | DEBUGP("couldn't find period in first %d characters " |
| 604 | "of %s\n", MAX_KBUILD_MODNAME, kp->name); | ||
| 608 | continue; | 605 | continue; |
| 609 | } | 606 | } |
| 610 | name_len = dot - kp->name; | 607 | name_len = dot - kp->name; |
diff --git a/kernel/pid.c b/kernel/pid.c index d1db36b94674..f815455431bf 100644 --- a/kernel/pid.c +++ b/kernel/pid.c | |||
| @@ -537,6 +537,7 @@ err_alloc: | |||
| 537 | return NULL; | 537 | return NULL; |
| 538 | } | 538 | } |
| 539 | 539 | ||
| 540 | #ifdef CONFIG_PID_NS | ||
| 540 | static struct pid_namespace *create_pid_namespace(int level) | 541 | static struct pid_namespace *create_pid_namespace(int level) |
| 541 | { | 542 | { |
| 542 | struct pid_namespace *ns; | 543 | struct pid_namespace *ns; |
| @@ -621,6 +622,7 @@ void free_pid_ns(struct kref *kref) | |||
| 621 | if (parent != NULL) | 622 | if (parent != NULL) |
| 622 | put_pid_ns(parent); | 623 | put_pid_ns(parent); |
| 623 | } | 624 | } |
| 625 | #endif /* CONFIG_PID_NS */ | ||
| 624 | 626 | ||
| 625 | void zap_pid_ns_processes(struct pid_namespace *pid_ns) | 627 | void zap_pid_ns_processes(struct pid_namespace *pid_ns) |
| 626 | { | 628 | { |
diff --git a/kernel/power/disk.c b/kernel/power/disk.c index 8b15f777010a..05b64790fe83 100644 --- a/kernel/power/disk.c +++ b/kernel/power/disk.c | |||
| @@ -456,7 +456,17 @@ static int software_resume(void) | |||
| 456 | int error; | 456 | int error; |
| 457 | unsigned int flags; | 457 | unsigned int flags; |
| 458 | 458 | ||
| 459 | mutex_lock(&pm_mutex); | 459 | /* |
| 460 | * name_to_dev_t() below takes a sysfs buffer mutex when sysfs | ||
| 461 | * is configured into the kernel. Since the regular hibernate | ||
| 462 | * trigger path is via sysfs which takes a buffer mutex before | ||
| 463 | * calling hibernate functions (which take pm_mutex) this can | ||
| 464 | * cause lockdep to complain about a possible ABBA deadlock | ||
| 465 | * which cannot happen since we're in the boot code here and | ||
| 466 | * sysfs can't be invoked yet. Therefore, we use a subclass | ||
| 467 | * here to avoid lockdep complaining. | ||
| 468 | */ | ||
| 469 | mutex_lock_nested(&pm_mutex, SINGLE_DEPTH_NESTING); | ||
| 460 | if (!swsusp_resume_device) { | 470 | if (!swsusp_resume_device) { |
| 461 | if (!strlen(resume_file)) { | 471 | if (!strlen(resume_file)) { |
| 462 | mutex_unlock(&pm_mutex); | 472 | mutex_unlock(&pm_mutex); |
diff --git a/kernel/resource.c b/kernel/resource.c index a358142ff48f..2eb553d9b517 100644 --- a/kernel/resource.c +++ b/kernel/resource.c | |||
| @@ -277,7 +277,7 @@ walk_memory_resource(unsigned long start_pfn, unsigned long nr_pages, void *arg, | |||
| 277 | int ret = -1; | 277 | int ret = -1; |
| 278 | res.start = (u64) start_pfn << PAGE_SHIFT; | 278 | res.start = (u64) start_pfn << PAGE_SHIFT; |
| 279 | res.end = ((u64)(start_pfn + nr_pages) << PAGE_SHIFT) - 1; | 279 | res.end = ((u64)(start_pfn + nr_pages) << PAGE_SHIFT) - 1; |
| 280 | res.flags = IORESOURCE_MEM; | 280 | res.flags = IORESOURCE_MEM | IORESOURCE_BUSY; |
| 281 | orig_end = res.end; | 281 | orig_end = res.end; |
| 282 | while ((res.start < res.end) && (find_next_system_ram(&res) >= 0)) { | 282 | while ((res.start < res.end) && (find_next_system_ram(&res) >= 0)) { |
| 283 | pfn = (unsigned long)(res.start >> PAGE_SHIFT); | 283 | pfn = (unsigned long)(res.start >> PAGE_SHIFT); |
diff --git a/kernel/sched.c b/kernel/sched.c index b18f231a4875..38933cafea8a 100644 --- a/kernel/sched.c +++ b/kernel/sched.c | |||
| @@ -52,7 +52,6 @@ | |||
| 52 | #include <linux/cpu.h> | 52 | #include <linux/cpu.h> |
| 53 | #include <linux/cpuset.h> | 53 | #include <linux/cpuset.h> |
| 54 | #include <linux/percpu.h> | 54 | #include <linux/percpu.h> |
| 55 | #include <linux/cpu_acct.h> | ||
| 56 | #include <linux/kthread.h> | 55 | #include <linux/kthread.h> |
| 57 | #include <linux/seq_file.h> | 56 | #include <linux/seq_file.h> |
| 58 | #include <linux/sysctl.h> | 57 | #include <linux/sysctl.h> |
| @@ -217,15 +216,15 @@ static inline struct task_group *task_group(struct task_struct *p) | |||
| 217 | } | 216 | } |
| 218 | 217 | ||
| 219 | /* Change a task's cfs_rq and parent entity if it moves across CPUs/groups */ | 218 | /* Change a task's cfs_rq and parent entity if it moves across CPUs/groups */ |
| 220 | static inline void set_task_cfs_rq(struct task_struct *p) | 219 | static inline void set_task_cfs_rq(struct task_struct *p, unsigned int cpu) |
| 221 | { | 220 | { |
| 222 | p->se.cfs_rq = task_group(p)->cfs_rq[task_cpu(p)]; | 221 | p->se.cfs_rq = task_group(p)->cfs_rq[cpu]; |
| 223 | p->se.parent = task_group(p)->se[task_cpu(p)]; | 222 | p->se.parent = task_group(p)->se[cpu]; |
| 224 | } | 223 | } |
| 225 | 224 | ||
| 226 | #else | 225 | #else |
| 227 | 226 | ||
| 228 | static inline void set_task_cfs_rq(struct task_struct *p) { } | 227 | static inline void set_task_cfs_rq(struct task_struct *p, unsigned int cpu) { } |
| 229 | 228 | ||
| 230 | #endif /* CONFIG_FAIR_GROUP_SCHED */ | 229 | #endif /* CONFIG_FAIR_GROUP_SCHED */ |
| 231 | 230 | ||
| @@ -456,18 +455,18 @@ static void update_rq_clock(struct rq *rq) | |||
| 456 | */ | 455 | */ |
| 457 | enum { | 456 | enum { |
| 458 | SCHED_FEAT_NEW_FAIR_SLEEPERS = 1, | 457 | SCHED_FEAT_NEW_FAIR_SLEEPERS = 1, |
| 459 | SCHED_FEAT_START_DEBIT = 2, | 458 | SCHED_FEAT_WAKEUP_PREEMPT = 2, |
| 460 | SCHED_FEAT_TREE_AVG = 4, | 459 | SCHED_FEAT_START_DEBIT = 4, |
| 461 | SCHED_FEAT_APPROX_AVG = 8, | 460 | SCHED_FEAT_TREE_AVG = 8, |
| 462 | SCHED_FEAT_WAKEUP_PREEMPT = 16, | 461 | SCHED_FEAT_APPROX_AVG = 16, |
| 463 | }; | 462 | }; |
| 464 | 463 | ||
| 465 | const_debug unsigned int sysctl_sched_features = | 464 | const_debug unsigned int sysctl_sched_features = |
| 466 | SCHED_FEAT_NEW_FAIR_SLEEPERS * 1 | | 465 | SCHED_FEAT_NEW_FAIR_SLEEPERS * 1 | |
| 466 | SCHED_FEAT_WAKEUP_PREEMPT * 1 | | ||
| 467 | SCHED_FEAT_START_DEBIT * 1 | | 467 | SCHED_FEAT_START_DEBIT * 1 | |
| 468 | SCHED_FEAT_TREE_AVG * 0 | | 468 | SCHED_FEAT_TREE_AVG * 0 | |
| 469 | SCHED_FEAT_APPROX_AVG * 0 | | 469 | SCHED_FEAT_APPROX_AVG * 0; |
| 470 | SCHED_FEAT_WAKEUP_PREEMPT * 1; | ||
| 471 | 470 | ||
| 472 | #define sched_feat(x) (sysctl_sched_features & SCHED_FEAT_##x) | 471 | #define sched_feat(x) (sysctl_sched_features & SCHED_FEAT_##x) |
| 473 | 472 | ||
| @@ -1023,10 +1022,16 @@ unsigned long weighted_cpuload(const int cpu) | |||
| 1023 | 1022 | ||
| 1024 | static inline void __set_task_cpu(struct task_struct *p, unsigned int cpu) | 1023 | static inline void __set_task_cpu(struct task_struct *p, unsigned int cpu) |
| 1025 | { | 1024 | { |
| 1025 | set_task_cfs_rq(p, cpu); | ||
| 1026 | #ifdef CONFIG_SMP | 1026 | #ifdef CONFIG_SMP |
| 1027 | /* | ||
| 1028 | * After ->cpu is set up to a new value, task_rq_lock(p, ...) can be | ||
| 1029 | * successfuly executed on another CPU. We must ensure that updates of | ||
| 1030 | * per-task data have been completed by this moment. | ||
| 1031 | */ | ||
| 1032 | smp_wmb(); | ||
| 1027 | task_thread_info(p)->cpu = cpu; | 1033 | task_thread_info(p)->cpu = cpu; |
| 1028 | #endif | 1034 | #endif |
| 1029 | set_task_cfs_rq(p); | ||
| 1030 | } | 1035 | } |
| 1031 | 1036 | ||
| 1032 | #ifdef CONFIG_SMP | 1037 | #ifdef CONFIG_SMP |
| @@ -3338,13 +3343,9 @@ void account_user_time(struct task_struct *p, cputime_t cputime) | |||
| 3338 | { | 3343 | { |
| 3339 | struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat; | 3344 | struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat; |
| 3340 | cputime64_t tmp; | 3345 | cputime64_t tmp; |
| 3341 | struct rq *rq = this_rq(); | ||
| 3342 | 3346 | ||
| 3343 | p->utime = cputime_add(p->utime, cputime); | 3347 | p->utime = cputime_add(p->utime, cputime); |
| 3344 | 3348 | ||
| 3345 | if (p != rq->idle) | ||
| 3346 | cpuacct_charge(p, cputime); | ||
| 3347 | |||
| 3348 | /* Add user time to cpustat. */ | 3349 | /* Add user time to cpustat. */ |
| 3349 | tmp = cputime_to_cputime64(cputime); | 3350 | tmp = cputime_to_cputime64(cputime); |
| 3350 | if (TASK_NICE(p) > 0) | 3351 | if (TASK_NICE(p) > 0) |
| @@ -3395,10 +3396,8 @@ void account_system_time(struct task_struct *p, int hardirq_offset, | |||
| 3395 | struct rq *rq = this_rq(); | 3396 | struct rq *rq = this_rq(); |
| 3396 | cputime64_t tmp; | 3397 | cputime64_t tmp; |
| 3397 | 3398 | ||
| 3398 | if (p->flags & PF_VCPU) { | 3399 | if ((p->flags & PF_VCPU) && (irq_count() - hardirq_offset == 0)) |
| 3399 | account_guest_time(p, cputime); | 3400 | return account_guest_time(p, cputime); |
| 3400 | return; | ||
| 3401 | } | ||
| 3402 | 3401 | ||
| 3403 | p->stime = cputime_add(p->stime, cputime); | 3402 | p->stime = cputime_add(p->stime, cputime); |
| 3404 | 3403 | ||
| @@ -3408,10 +3407,9 @@ void account_system_time(struct task_struct *p, int hardirq_offset, | |||
| 3408 | cpustat->irq = cputime64_add(cpustat->irq, tmp); | 3407 | cpustat->irq = cputime64_add(cpustat->irq, tmp); |
| 3409 | else if (softirq_count()) | 3408 | else if (softirq_count()) |
| 3410 | cpustat->softirq = cputime64_add(cpustat->softirq, tmp); | 3409 | cpustat->softirq = cputime64_add(cpustat->softirq, tmp); |
| 3411 | else if (p != rq->idle) { | 3410 | else if (p != rq->idle) |
| 3412 | cpustat->system = cputime64_add(cpustat->system, tmp); | 3411 | cpustat->system = cputime64_add(cpustat->system, tmp); |
| 3413 | cpuacct_charge(p, cputime); | 3412 | else if (atomic_read(&rq->nr_iowait) > 0) |
| 3414 | } else if (atomic_read(&rq->nr_iowait) > 0) | ||
| 3415 | cpustat->iowait = cputime64_add(cpustat->iowait, tmp); | 3413 | cpustat->iowait = cputime64_add(cpustat->iowait, tmp); |
| 3416 | else | 3414 | else |
| 3417 | cpustat->idle = cputime64_add(cpustat->idle, tmp); | 3415 | cpustat->idle = cputime64_add(cpustat->idle, tmp); |
| @@ -3447,10 +3445,8 @@ void account_steal_time(struct task_struct *p, cputime_t steal) | |||
| 3447 | cpustat->iowait = cputime64_add(cpustat->iowait, tmp); | 3445 | cpustat->iowait = cputime64_add(cpustat->iowait, tmp); |
| 3448 | else | 3446 | else |
| 3449 | cpustat->idle = cputime64_add(cpustat->idle, tmp); | 3447 | cpustat->idle = cputime64_add(cpustat->idle, tmp); |
| 3450 | } else { | 3448 | } else |
| 3451 | cpustat->steal = cputime64_add(cpustat->steal, tmp); | 3449 | cpustat->steal = cputime64_add(cpustat->steal, tmp); |
| 3452 | cpuacct_charge(p, -tmp); | ||
| 3453 | } | ||
| 3454 | } | 3450 | } |
| 3455 | 3451 | ||
| 3456 | /* | 3452 | /* |
| @@ -5286,23 +5282,9 @@ static void migrate_live_tasks(int src_cpu) | |||
| 5286 | } | 5282 | } |
| 5287 | 5283 | ||
| 5288 | /* | 5284 | /* |
| 5289 | * activate_idle_task - move idle task to the _front_ of runqueue. | ||
| 5290 | */ | ||
| 5291 | static void activate_idle_task(struct task_struct *p, struct rq *rq) | ||
| 5292 | { | ||
| 5293 | update_rq_clock(rq); | ||
| 5294 | |||
| 5295 | if (p->state == TASK_UNINTERRUPTIBLE) | ||
| 5296 | rq->nr_uninterruptible--; | ||
| 5297 | |||
| 5298 | enqueue_task(rq, p, 0); | ||
| 5299 | inc_nr_running(p, rq); | ||
| 5300 | } | ||
| 5301 | |||
| 5302 | /* | ||
| 5303 | * Schedules idle task to be the next runnable task on current CPU. | 5285 | * Schedules idle task to be the next runnable task on current CPU. |
| 5304 | * It does so by boosting its priority to highest possible and adding it to | 5286 | * It does so by boosting its priority to highest possible. |
| 5305 | * the _front_ of the runqueue. Used by CPU offline code. | 5287 | * Used by CPU offline code. |
| 5306 | */ | 5288 | */ |
| 5307 | void sched_idle_next(void) | 5289 | void sched_idle_next(void) |
| 5308 | { | 5290 | { |
| @@ -5322,8 +5304,8 @@ void sched_idle_next(void) | |||
| 5322 | 5304 | ||
| 5323 | __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1); | 5305 | __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1); |
| 5324 | 5306 | ||
| 5325 | /* Add idle task to the _front_ of its priority queue: */ | 5307 | update_rq_clock(rq); |
| 5326 | activate_idle_task(p, rq); | 5308 | activate_task(rq, p, 0); |
| 5327 | 5309 | ||
| 5328 | spin_unlock_irqrestore(&rq->lock, flags); | 5310 | spin_unlock_irqrestore(&rq->lock, flags); |
| 5329 | } | 5311 | } |
| @@ -7097,8 +7079,10 @@ void sched_move_task(struct task_struct *tsk) | |||
| 7097 | 7079 | ||
| 7098 | rq = task_rq_lock(tsk, &flags); | 7080 | rq = task_rq_lock(tsk, &flags); |
| 7099 | 7081 | ||
| 7100 | if (tsk->sched_class != &fair_sched_class) | 7082 | if (tsk->sched_class != &fair_sched_class) { |
| 7083 | set_task_cfs_rq(tsk, task_cpu(tsk)); | ||
| 7101 | goto done; | 7084 | goto done; |
| 7085 | } | ||
| 7102 | 7086 | ||
| 7103 | update_rq_clock(rq); | 7087 | update_rq_clock(rq); |
| 7104 | 7088 | ||
| @@ -7111,7 +7095,7 @@ void sched_move_task(struct task_struct *tsk) | |||
| 7111 | tsk->sched_class->put_prev_task(rq, tsk); | 7095 | tsk->sched_class->put_prev_task(rq, tsk); |
| 7112 | } | 7096 | } |
| 7113 | 7097 | ||
| 7114 | set_task_cfs_rq(tsk); | 7098 | set_task_cfs_rq(tsk, task_cpu(tsk)); |
| 7115 | 7099 | ||
| 7116 | if (on_rq) { | 7100 | if (on_rq) { |
| 7117 | if (unlikely(running)) | 7101 | if (unlikely(running)) |
diff --git a/kernel/sched_fair.c b/kernel/sched_fair.c index d3c03070872d..ee00da284b12 100644 --- a/kernel/sched_fair.c +++ b/kernel/sched_fair.c | |||
| @@ -43,7 +43,7 @@ unsigned int sysctl_sched_min_granularity = 1000000ULL; | |||
| 43 | /* | 43 | /* |
| 44 | * is kept at sysctl_sched_latency / sysctl_sched_min_granularity | 44 | * is kept at sysctl_sched_latency / sysctl_sched_min_granularity |
| 45 | */ | 45 | */ |
| 46 | unsigned int sched_nr_latency = 20; | 46 | static unsigned int sched_nr_latency = 20; |
| 47 | 47 | ||
| 48 | /* | 48 | /* |
| 49 | * After fork, child runs first. (default) If set to 0 then | 49 | * After fork, child runs first. (default) If set to 0 then |
diff --git a/kernel/sys.c b/kernel/sys.c index 304b5410d746..d1fe71eb4546 100644 --- a/kernel/sys.c +++ b/kernel/sys.c | |||
| @@ -1750,7 +1750,7 @@ asmlinkage long sys_prctl(int option, unsigned long arg2, unsigned long arg3, | |||
| 1750 | } | 1750 | } |
| 1751 | 1751 | ||
| 1752 | asmlinkage long sys_getcpu(unsigned __user *cpup, unsigned __user *nodep, | 1752 | asmlinkage long sys_getcpu(unsigned __user *cpup, unsigned __user *nodep, |
| 1753 | struct getcpu_cache __user *cache) | 1753 | struct getcpu_cache __user *unused) |
| 1754 | { | 1754 | { |
| 1755 | int err = 0; | 1755 | int err = 0; |
| 1756 | int cpu = raw_smp_processor_id(); | 1756 | int cpu = raw_smp_processor_id(); |
| @@ -1758,24 +1758,6 @@ asmlinkage long sys_getcpu(unsigned __user *cpup, unsigned __user *nodep, | |||
| 1758 | err |= put_user(cpu, cpup); | 1758 | err |= put_user(cpu, cpup); |
| 1759 | if (nodep) | 1759 | if (nodep) |
| 1760 | err |= put_user(cpu_to_node(cpu), nodep); | 1760 | err |= put_user(cpu_to_node(cpu), nodep); |
| 1761 | if (cache) { | ||
| 1762 | /* | ||
| 1763 | * The cache is not needed for this implementation, | ||
| 1764 | * but make sure user programs pass something | ||
| 1765 | * valid. vsyscall implementations can instead make | ||
| 1766 | * good use of the cache. Only use t0 and t1 because | ||
| 1767 | * these are available in both 32bit and 64bit ABI (no | ||
| 1768 | * need for a compat_getcpu). 32bit has enough | ||
| 1769 | * padding | ||
| 1770 | */ | ||
| 1771 | unsigned long t0, t1; | ||
| 1772 | get_user(t0, &cache->blob[0]); | ||
| 1773 | get_user(t1, &cache->blob[1]); | ||
| 1774 | t0++; | ||
| 1775 | t1++; | ||
| 1776 | put_user(t0, &cache->blob[0]); | ||
| 1777 | put_user(t1, &cache->blob[1]); | ||
| 1778 | } | ||
| 1779 | return err ? -EFAULT : 0; | 1761 | return err ? -EFAULT : 0; |
| 1780 | } | 1762 | } |
| 1781 | 1763 | ||
diff --git a/kernel/sysctl.c b/kernel/sysctl.c index 3a1744fed2b6..0deed82a6156 100644 --- a/kernel/sysctl.c +++ b/kernel/sysctl.c | |||
| @@ -2620,6 +2620,10 @@ static int deprecated_sysctl_warning(struct __sysctl_args *args) | |||
| 2620 | int name[CTL_MAXNAME]; | 2620 | int name[CTL_MAXNAME]; |
| 2621 | int i; | 2621 | int i; |
| 2622 | 2622 | ||
| 2623 | /* Check args->nlen. */ | ||
| 2624 | if (args->nlen < 0 || args->nlen > CTL_MAXNAME) | ||
| 2625 | return -ENOTDIR; | ||
| 2626 | |||
| 2623 | /* Read in the sysctl name for better debug message logging */ | 2627 | /* Read in the sysctl name for better debug message logging */ |
| 2624 | for (i = 0; i < args->nlen; i++) | 2628 | for (i = 0; i < args->nlen; i++) |
| 2625 | if (get_user(name[i], args->name + i)) | 2629 | if (get_user(name[i], args->name + i)) |
diff --git a/kernel/sysctl_check.c b/kernel/sysctl_check.c index 5a2f2b2bf888..4abc6d2306f4 100644 --- a/kernel/sysctl_check.c +++ b/kernel/sysctl_check.c | |||
| @@ -738,7 +738,7 @@ static struct trans_ctl_table trans_net_table[] = { | |||
| 738 | { NET_ROSE, "rose", trans_net_rose_table }, | 738 | { NET_ROSE, "rose", trans_net_rose_table }, |
| 739 | { NET_IPV6, "ipv6", trans_net_ipv6_table }, | 739 | { NET_IPV6, "ipv6", trans_net_ipv6_table }, |
| 740 | { NET_X25, "x25", trans_net_x25_table }, | 740 | { NET_X25, "x25", trans_net_x25_table }, |
| 741 | { NET_TR, "tr", trans_net_tr_table }, | 741 | { NET_TR, "token-ring", trans_net_tr_table }, |
| 742 | { NET_DECNET, "decnet", trans_net_decnet_table }, | 742 | { NET_DECNET, "decnet", trans_net_decnet_table }, |
| 743 | /* NET_ECONET not used */ | 743 | /* NET_ECONET not used */ |
| 744 | { NET_SCTP, "sctp", trans_net_sctp_table }, | 744 | { NET_SCTP, "sctp", trans_net_sctp_table }, |
diff --git a/kernel/taskstats.c b/kernel/taskstats.c index 354e74bc17c1..07e86a828073 100644 --- a/kernel/taskstats.c +++ b/kernel/taskstats.c | |||
| @@ -398,31 +398,31 @@ static int cgroupstats_user_cmd(struct sk_buff *skb, struct genl_info *info) | |||
| 398 | 398 | ||
| 399 | fd = nla_get_u32(info->attrs[CGROUPSTATS_CMD_ATTR_FD]); | 399 | fd = nla_get_u32(info->attrs[CGROUPSTATS_CMD_ATTR_FD]); |
| 400 | file = fget_light(fd, &fput_needed); | 400 | file = fget_light(fd, &fput_needed); |
| 401 | if (file) { | 401 | if (!file) |
| 402 | size = nla_total_size(sizeof(struct cgroupstats)); | 402 | return 0; |
| 403 | 403 | ||
| 404 | rc = prepare_reply(info, CGROUPSTATS_CMD_NEW, &rep_skb, | 404 | size = nla_total_size(sizeof(struct cgroupstats)); |
| 405 | size); | ||
| 406 | if (rc < 0) | ||
| 407 | goto err; | ||
| 408 | 405 | ||
| 409 | na = nla_reserve(rep_skb, CGROUPSTATS_TYPE_CGROUP_STATS, | 406 | rc = prepare_reply(info, CGROUPSTATS_CMD_NEW, &rep_skb, |
| 410 | sizeof(struct cgroupstats)); | 407 | size); |
| 411 | stats = nla_data(na); | 408 | if (rc < 0) |
| 412 | memset(stats, 0, sizeof(*stats)); | 409 | goto err; |
| 413 | 410 | ||
| 414 | rc = cgroupstats_build(stats, file->f_dentry); | 411 | na = nla_reserve(rep_skb, CGROUPSTATS_TYPE_CGROUP_STATS, |
| 415 | if (rc < 0) | 412 | sizeof(struct cgroupstats)); |
| 416 | goto err; | 413 | stats = nla_data(na); |
| 414 | memset(stats, 0, sizeof(*stats)); | ||
| 417 | 415 | ||
| 418 | fput_light(file, fput_needed); | 416 | rc = cgroupstats_build(stats, file->f_dentry); |
| 419 | return send_reply(rep_skb, info->snd_pid); | 417 | if (rc < 0) { |
| 418 | nlmsg_free(rep_skb); | ||
| 419 | goto err; | ||
| 420 | } | 420 | } |
| 421 | 421 | ||
| 422 | rc = send_reply(rep_skb, info->snd_pid); | ||
| 423 | |||
| 422 | err: | 424 | err: |
| 423 | if (file) | 425 | fput_light(file, fput_needed); |
| 424 | fput_light(file, fput_needed); | ||
| 425 | nlmsg_free(rep_skb); | ||
| 426 | return rc; | 426 | return rc; |
| 427 | } | 427 | } |
| 428 | 428 | ||
diff --git a/kernel/time/ntp.c b/kernel/time/ntp.c index de6a2d6b3ebb..14a2ecf2b318 100644 --- a/kernel/time/ntp.c +++ b/kernel/time/ntp.c | |||
| @@ -205,7 +205,7 @@ static void sync_cmos_clock(unsigned long dummy) | |||
| 205 | return; | 205 | return; |
| 206 | 206 | ||
| 207 | getnstimeofday(&now); | 207 | getnstimeofday(&now); |
| 208 | if (abs(xtime.tv_nsec - (NSEC_PER_SEC / 2)) <= tick_nsec / 2) | 208 | if (abs(now.tv_nsec - (NSEC_PER_SEC / 2)) <= tick_nsec / 2) |
| 209 | fail = update_persistent_clock(now); | 209 | fail = update_persistent_clock(now); |
| 210 | 210 | ||
| 211 | next.tv_nsec = (NSEC_PER_SEC / 2) - now.tv_nsec; | 211 | next.tv_nsec = (NSEC_PER_SEC / 2) - now.tv_nsec; |
diff --git a/lib/Makefile b/lib/Makefile index 3a0983b77412..b6793ed28d84 100644 --- a/lib/Makefile +++ b/lib/Makefile | |||
| @@ -4,7 +4,7 @@ | |||
| 4 | 4 | ||
| 5 | lib-y := ctype.o string.o vsprintf.o cmdline.o \ | 5 | lib-y := ctype.o string.o vsprintf.o cmdline.o \ |
| 6 | rbtree.o radix-tree.o dump_stack.o \ | 6 | rbtree.o radix-tree.o dump_stack.o \ |
| 7 | idr.o int_sqrt.o bitmap.o extable.o prio_tree.o \ | 7 | idr.o int_sqrt.o extable.o prio_tree.o \ |
| 8 | sha1.o irq_regs.o reciprocal_div.o argv_split.o \ | 8 | sha1.o irq_regs.o reciprocal_div.o argv_split.o \ |
| 9 | proportions.o prio_heap.o | 9 | proportions.o prio_heap.o |
| 10 | 10 | ||
| @@ -14,7 +14,7 @@ lib-$(CONFIG_SMP) += cpumask.o | |||
| 14 | lib-y += kobject.o kref.o klist.o | 14 | lib-y += kobject.o kref.o klist.o |
| 15 | 15 | ||
| 16 | obj-y += div64.o sort.o parser.o halfmd4.o debug_locks.o random32.o \ | 16 | obj-y += div64.o sort.o parser.o halfmd4.o debug_locks.o random32.o \ |
| 17 | bust_spinlocks.o hexdump.o kasprintf.o | 17 | bust_spinlocks.o hexdump.o kasprintf.o bitmap.o |
| 18 | 18 | ||
| 19 | ifeq ($(CONFIG_DEBUG_KOBJECT),y) | 19 | ifeq ($(CONFIG_DEBUG_KOBJECT),y) |
| 20 | CFLAGS_kobject.o += -DDEBUG | 20 | CFLAGS_kobject.o += -DDEBUG |
diff --git a/mm/hugetlb.c b/mm/hugetlb.c index 8b809ecefa39..6121b57bbe96 100644 --- a/mm/hugetlb.c +++ b/mm/hugetlb.c | |||
| @@ -116,7 +116,9 @@ static void update_and_free_page(struct page *page) | |||
| 116 | static void free_huge_page(struct page *page) | 116 | static void free_huge_page(struct page *page) |
| 117 | { | 117 | { |
| 118 | int nid = page_to_nid(page); | 118 | int nid = page_to_nid(page); |
| 119 | struct address_space *mapping; | ||
| 119 | 120 | ||
| 121 | mapping = (struct address_space *) page_private(page); | ||
| 120 | BUG_ON(page_count(page)); | 122 | BUG_ON(page_count(page)); |
| 121 | INIT_LIST_HEAD(&page->lru); | 123 | INIT_LIST_HEAD(&page->lru); |
| 122 | 124 | ||
| @@ -129,6 +131,9 @@ static void free_huge_page(struct page *page) | |||
| 129 | enqueue_huge_page(page); | 131 | enqueue_huge_page(page); |
| 130 | } | 132 | } |
| 131 | spin_unlock(&hugetlb_lock); | 133 | spin_unlock(&hugetlb_lock); |
| 134 | if (mapping) | ||
| 135 | hugetlb_put_quota(mapping, 1); | ||
| 136 | set_page_private(page, 0); | ||
| 132 | } | 137 | } |
| 133 | 138 | ||
| 134 | /* | 139 | /* |
| @@ -323,7 +328,7 @@ free: | |||
| 323 | * allocated to satisfy the reservation must be explicitly freed if they were | 328 | * allocated to satisfy the reservation must be explicitly freed if they were |
| 324 | * never used. | 329 | * never used. |
| 325 | */ | 330 | */ |
| 326 | void return_unused_surplus_pages(unsigned long unused_resv_pages) | 331 | static void return_unused_surplus_pages(unsigned long unused_resv_pages) |
| 327 | { | 332 | { |
| 328 | static int nid = -1; | 333 | static int nid = -1; |
| 329 | struct page *page; | 334 | struct page *page; |
| @@ -353,35 +358,50 @@ void return_unused_surplus_pages(unsigned long unused_resv_pages) | |||
| 353 | } | 358 | } |
| 354 | } | 359 | } |
| 355 | 360 | ||
| 356 | static struct page *alloc_huge_page(struct vm_area_struct *vma, | 361 | |
| 357 | unsigned long addr) | 362 | static struct page *alloc_huge_page_shared(struct vm_area_struct *vma, |
| 363 | unsigned long addr) | ||
| 358 | { | 364 | { |
| 359 | struct page *page = NULL; | 365 | struct page *page; |
| 360 | int use_reserved_page = vma->vm_flags & VM_MAYSHARE; | ||
| 361 | 366 | ||
| 362 | spin_lock(&hugetlb_lock); | 367 | spin_lock(&hugetlb_lock); |
| 363 | if (!use_reserved_page && (free_huge_pages <= resv_huge_pages)) | ||
| 364 | goto fail; | ||
| 365 | |||
| 366 | page = dequeue_huge_page(vma, addr); | 368 | page = dequeue_huge_page(vma, addr); |
| 367 | if (!page) | ||
| 368 | goto fail; | ||
| 369 | |||
| 370 | spin_unlock(&hugetlb_lock); | 369 | spin_unlock(&hugetlb_lock); |
| 371 | set_page_refcounted(page); | 370 | return page ? page : ERR_PTR(-VM_FAULT_OOM); |
| 372 | return page; | 371 | } |
| 373 | 372 | ||
| 374 | fail: | 373 | static struct page *alloc_huge_page_private(struct vm_area_struct *vma, |
| 375 | spin_unlock(&hugetlb_lock); | 374 | unsigned long addr) |
| 375 | { | ||
| 376 | struct page *page = NULL; | ||
| 376 | 377 | ||
| 377 | /* | 378 | if (hugetlb_get_quota(vma->vm_file->f_mapping, 1)) |
| 378 | * Private mappings do not use reserved huge pages so the allocation | 379 | return ERR_PTR(-VM_FAULT_SIGBUS); |
| 379 | * may have failed due to an undersized hugetlb pool. Try to grab a | 380 | |
| 380 | * surplus huge page from the buddy allocator. | 381 | spin_lock(&hugetlb_lock); |
| 381 | */ | 382 | if (free_huge_pages > resv_huge_pages) |
| 382 | if (!use_reserved_page) | 383 | page = dequeue_huge_page(vma, addr); |
| 384 | spin_unlock(&hugetlb_lock); | ||
| 385 | if (!page) | ||
| 383 | page = alloc_buddy_huge_page(vma, addr); | 386 | page = alloc_buddy_huge_page(vma, addr); |
| 387 | return page ? page : ERR_PTR(-VM_FAULT_OOM); | ||
| 388 | } | ||
| 389 | |||
| 390 | static struct page *alloc_huge_page(struct vm_area_struct *vma, | ||
| 391 | unsigned long addr) | ||
| 392 | { | ||
| 393 | struct page *page; | ||
| 394 | struct address_space *mapping = vma->vm_file->f_mapping; | ||
| 384 | 395 | ||
| 396 | if (vma->vm_flags & VM_MAYSHARE) | ||
| 397 | page = alloc_huge_page_shared(vma, addr); | ||
| 398 | else | ||
| 399 | page = alloc_huge_page_private(vma, addr); | ||
| 400 | |||
| 401 | if (!IS_ERR(page)) { | ||
| 402 | set_page_refcounted(page); | ||
| 403 | set_page_private(page, (unsigned long) mapping); | ||
| 404 | } | ||
| 385 | return page; | 405 | return page; |
| 386 | } | 406 | } |
| 387 | 407 | ||
| @@ -726,9 +746,9 @@ static int hugetlb_cow(struct mm_struct *mm, struct vm_area_struct *vma, | |||
| 726 | page_cache_get(old_page); | 746 | page_cache_get(old_page); |
| 727 | new_page = alloc_huge_page(vma, address); | 747 | new_page = alloc_huge_page(vma, address); |
| 728 | 748 | ||
| 729 | if (!new_page) { | 749 | if (IS_ERR(new_page)) { |
| 730 | page_cache_release(old_page); | 750 | page_cache_release(old_page); |
| 731 | return VM_FAULT_OOM; | 751 | return -PTR_ERR(new_page); |
| 732 | } | 752 | } |
| 733 | 753 | ||
| 734 | spin_unlock(&mm->page_table_lock); | 754 | spin_unlock(&mm->page_table_lock); |
| @@ -772,27 +792,28 @@ retry: | |||
| 772 | size = i_size_read(mapping->host) >> HPAGE_SHIFT; | 792 | size = i_size_read(mapping->host) >> HPAGE_SHIFT; |
| 773 | if (idx >= size) | 793 | if (idx >= size) |
| 774 | goto out; | 794 | goto out; |
| 775 | if (hugetlb_get_quota(mapping)) | ||
| 776 | goto out; | ||
| 777 | page = alloc_huge_page(vma, address); | 795 | page = alloc_huge_page(vma, address); |
| 778 | if (!page) { | 796 | if (IS_ERR(page)) { |
| 779 | hugetlb_put_quota(mapping); | 797 | ret = -PTR_ERR(page); |
| 780 | ret = VM_FAULT_OOM; | ||
| 781 | goto out; | 798 | goto out; |
| 782 | } | 799 | } |
| 783 | clear_huge_page(page, address); | 800 | clear_huge_page(page, address); |
| 784 | 801 | ||
| 785 | if (vma->vm_flags & VM_SHARED) { | 802 | if (vma->vm_flags & VM_SHARED) { |
| 786 | int err; | 803 | int err; |
| 804 | struct inode *inode = mapping->host; | ||
| 787 | 805 | ||
| 788 | err = add_to_page_cache(page, mapping, idx, GFP_KERNEL); | 806 | err = add_to_page_cache(page, mapping, idx, GFP_KERNEL); |
| 789 | if (err) { | 807 | if (err) { |
| 790 | put_page(page); | 808 | put_page(page); |
| 791 | hugetlb_put_quota(mapping); | ||
| 792 | if (err == -EEXIST) | 809 | if (err == -EEXIST) |
| 793 | goto retry; | 810 | goto retry; |
| 794 | goto out; | 811 | goto out; |
| 795 | } | 812 | } |
| 813 | |||
| 814 | spin_lock(&inode->i_lock); | ||
| 815 | inode->i_blocks += BLOCKS_PER_HUGEPAGE; | ||
| 816 | spin_unlock(&inode->i_lock); | ||
| 796 | } else | 817 | } else |
| 797 | lock_page(page); | 818 | lock_page(page); |
| 798 | } | 819 | } |
| @@ -822,7 +843,6 @@ out: | |||
| 822 | 843 | ||
| 823 | backout: | 844 | backout: |
| 824 | spin_unlock(&mm->page_table_lock); | 845 | spin_unlock(&mm->page_table_lock); |
| 825 | hugetlb_put_quota(mapping); | ||
| 826 | unlock_page(page); | 846 | unlock_page(page); |
| 827 | put_page(page); | 847 | put_page(page); |
| 828 | goto out; | 848 | goto out; |
| @@ -868,7 +888,8 @@ int hugetlb_fault(struct mm_struct *mm, struct vm_area_struct *vma, | |||
| 868 | 888 | ||
| 869 | int follow_hugetlb_page(struct mm_struct *mm, struct vm_area_struct *vma, | 889 | int follow_hugetlb_page(struct mm_struct *mm, struct vm_area_struct *vma, |
| 870 | struct page **pages, struct vm_area_struct **vmas, | 890 | struct page **pages, struct vm_area_struct **vmas, |
| 871 | unsigned long *position, int *length, int i) | 891 | unsigned long *position, int *length, int i, |
| 892 | int write) | ||
| 872 | { | 893 | { |
| 873 | unsigned long pfn_offset; | 894 | unsigned long pfn_offset; |
| 874 | unsigned long vaddr = *position; | 895 | unsigned long vaddr = *position; |
| @@ -890,7 +911,7 @@ int follow_hugetlb_page(struct mm_struct *mm, struct vm_area_struct *vma, | |||
| 890 | int ret; | 911 | int ret; |
| 891 | 912 | ||
| 892 | spin_unlock(&mm->page_table_lock); | 913 | spin_unlock(&mm->page_table_lock); |
| 893 | ret = hugetlb_fault(mm, vma, vaddr, 0); | 914 | ret = hugetlb_fault(mm, vma, vaddr, write); |
| 894 | spin_lock(&mm->page_table_lock); | 915 | spin_lock(&mm->page_table_lock); |
| 895 | if (!(ret & VM_FAULT_ERROR)) | 916 | if (!(ret & VM_FAULT_ERROR)) |
| 896 | continue; | 917 | continue; |
| @@ -1132,6 +1153,8 @@ int hugetlb_reserve_pages(struct inode *inode, long from, long to) | |||
| 1132 | if (chg < 0) | 1153 | if (chg < 0) |
| 1133 | return chg; | 1154 | return chg; |
| 1134 | 1155 | ||
| 1156 | if (hugetlb_get_quota(inode->i_mapping, chg)) | ||
| 1157 | return -ENOSPC; | ||
| 1135 | ret = hugetlb_acct_memory(chg); | 1158 | ret = hugetlb_acct_memory(chg); |
| 1136 | if (ret < 0) | 1159 | if (ret < 0) |
| 1137 | return ret; | 1160 | return ret; |
| @@ -1142,5 +1165,11 @@ int hugetlb_reserve_pages(struct inode *inode, long from, long to) | |||
| 1142 | void hugetlb_unreserve_pages(struct inode *inode, long offset, long freed) | 1165 | void hugetlb_unreserve_pages(struct inode *inode, long offset, long freed) |
| 1143 | { | 1166 | { |
| 1144 | long chg = region_truncate(&inode->i_mapping->private_list, offset); | 1167 | long chg = region_truncate(&inode->i_mapping->private_list, offset); |
| 1145 | hugetlb_acct_memory(freed - chg); | 1168 | |
| 1169 | spin_lock(&inode->i_lock); | ||
| 1170 | inode->i_blocks -= BLOCKS_PER_HUGEPAGE * freed; | ||
| 1171 | spin_unlock(&inode->i_lock); | ||
| 1172 | |||
| 1173 | hugetlb_put_quota(inode->i_mapping, (chg - freed)); | ||
| 1174 | hugetlb_acct_memory(-(chg - freed)); | ||
| 1146 | } | 1175 | } |
diff --git a/mm/memory.c b/mm/memory.c index 9791e4786843..4bf0b6d0eb2a 100644 --- a/mm/memory.c +++ b/mm/memory.c | |||
| @@ -1036,7 +1036,7 @@ int get_user_pages(struct task_struct *tsk, struct mm_struct *mm, | |||
| 1036 | 1036 | ||
| 1037 | if (is_vm_hugetlb_page(vma)) { | 1037 | if (is_vm_hugetlb_page(vma)) { |
| 1038 | i = follow_hugetlb_page(mm, vma, pages, vmas, | 1038 | i = follow_hugetlb_page(mm, vma, pages, vmas, |
| 1039 | &start, &len, i); | 1039 | &start, &len, i, write); |
| 1040 | continue; | 1040 | continue; |
| 1041 | } | 1041 | } |
| 1042 | 1042 | ||
| @@ -2084,9 +2084,9 @@ static int do_swap_page(struct mm_struct *mm, struct vm_area_struct *vma, | |||
| 2084 | count_vm_event(PGMAJFAULT); | 2084 | count_vm_event(PGMAJFAULT); |
| 2085 | } | 2085 | } |
| 2086 | 2086 | ||
| 2087 | delayacct_clear_flag(DELAYACCT_PF_SWAPIN); | ||
| 2088 | mark_page_accessed(page); | 2087 | mark_page_accessed(page); |
| 2089 | lock_page(page); | 2088 | lock_page(page); |
| 2089 | delayacct_clear_flag(DELAYACCT_PF_SWAPIN); | ||
| 2090 | 2090 | ||
| 2091 | /* | 2091 | /* |
| 2092 | * Back out if somebody else already faulted in this pte. | 2092 | * Back out if somebody else already faulted in this pte. |
diff --git a/mm/memory_hotplug.c b/mm/memory_hotplug.c index 3a47871a29d9..9512a544d044 100644 --- a/mm/memory_hotplug.c +++ b/mm/memory_hotplug.c | |||
| @@ -39,7 +39,7 @@ static struct resource *register_memory_resource(u64 start, u64 size) | |||
| 39 | res->name = "System RAM"; | 39 | res->name = "System RAM"; |
| 40 | res->start = start; | 40 | res->start = start; |
| 41 | res->end = start + size - 1; | 41 | res->end = start + size - 1; |
| 42 | res->flags = IORESOURCE_MEM; | 42 | res->flags = IORESOURCE_MEM | IORESOURCE_BUSY; |
| 43 | if (request_resource(&iomem_resource, res) < 0) { | 43 | if (request_resource(&iomem_resource, res) < 0) { |
| 44 | printk("System RAM resource %llx - %llx cannot be added\n", | 44 | printk("System RAM resource %llx - %llx cannot be added\n", |
| 45 | (unsigned long long)res->start, (unsigned long long)res->end); | 45 | (unsigned long long)res->start, (unsigned long long)res->end); |
| @@ -574,8 +574,8 @@ repeat: | |||
| 574 | /* Ok, all of our target is islaoted. | 574 | /* Ok, all of our target is islaoted. |
| 575 | We cannot do rollback at this point. */ | 575 | We cannot do rollback at this point. */ |
| 576 | offline_isolated_pages(start_pfn, end_pfn); | 576 | offline_isolated_pages(start_pfn, end_pfn); |
| 577 | /* reset pagetype flags */ | 577 | /* reset pagetype flags and makes migrate type to be MOVABLE */ |
| 578 | start_isolate_page_range(start_pfn, end_pfn); | 578 | undo_isolate_page_range(start_pfn, end_pfn); |
| 579 | /* removal success */ | 579 | /* removal success */ |
| 580 | zone->present_pages -= offlined_pages; | 580 | zone->present_pages -= offlined_pages; |
| 581 | zone->zone_pgdat->node_present_pages -= offlined_pages; | 581 | zone->zone_pgdat->node_present_pages -= offlined_pages; |
diff --git a/mm/mempolicy.c b/mm/mempolicy.c index c1592a94582f..83c69f8a64c2 100644 --- a/mm/mempolicy.c +++ b/mm/mempolicy.c | |||
| @@ -722,12 +722,29 @@ out: | |||
| 722 | 722 | ||
| 723 | } | 723 | } |
| 724 | 724 | ||
| 725 | /* | ||
| 726 | * Allocate a new page for page migration based on vma policy. | ||
| 727 | * Start assuming that page is mapped by vma pointed to by @private. | ||
| 728 | * Search forward from there, if not. N.B., this assumes that the | ||
| 729 | * list of pages handed to migrate_pages()--which is how we get here-- | ||
| 730 | * is in virtual address order. | ||
| 731 | */ | ||
| 725 | static struct page *new_vma_page(struct page *page, unsigned long private, int **x) | 732 | static struct page *new_vma_page(struct page *page, unsigned long private, int **x) |
| 726 | { | 733 | { |
| 727 | struct vm_area_struct *vma = (struct vm_area_struct *)private; | 734 | struct vm_area_struct *vma = (struct vm_area_struct *)private; |
| 735 | unsigned long uninitialized_var(address); | ||
| 728 | 736 | ||
| 729 | return alloc_page_vma(GFP_HIGHUSER_MOVABLE, vma, | 737 | while (vma) { |
| 730 | page_address_in_vma(page, vma)); | 738 | address = page_address_in_vma(page, vma); |
| 739 | if (address != -EFAULT) | ||
| 740 | break; | ||
| 741 | vma = vma->vm_next; | ||
| 742 | } | ||
| 743 | |||
| 744 | /* | ||
| 745 | * if !vma, alloc_page_vma() will use task or system default policy | ||
| 746 | */ | ||
| 747 | return alloc_page_vma(GFP_HIGHUSER_MOVABLE, vma, address); | ||
| 731 | } | 748 | } |
| 732 | #else | 749 | #else |
| 733 | 750 | ||
diff --git a/mm/page-writeback.c b/mm/page-writeback.c index 838a5e31394c..d55cfcae2ef1 100644 --- a/mm/page-writeback.c +++ b/mm/page-writeback.c | |||
| @@ -297,20 +297,12 @@ get_dirty_limits(long *pbackground, long *pdirty, long *pbdi_dirty, | |||
| 297 | { | 297 | { |
| 298 | int background_ratio; /* Percentages */ | 298 | int background_ratio; /* Percentages */ |
| 299 | int dirty_ratio; | 299 | int dirty_ratio; |
| 300 | int unmapped_ratio; | ||
| 301 | long background; | 300 | long background; |
| 302 | long dirty; | 301 | long dirty; |
| 303 | unsigned long available_memory = determine_dirtyable_memory(); | 302 | unsigned long available_memory = determine_dirtyable_memory(); |
| 304 | struct task_struct *tsk; | 303 | struct task_struct *tsk; |
| 305 | 304 | ||
| 306 | unmapped_ratio = 100 - ((global_page_state(NR_FILE_MAPPED) + | ||
| 307 | global_page_state(NR_ANON_PAGES)) * 100) / | ||
| 308 | available_memory; | ||
| 309 | |||
| 310 | dirty_ratio = vm_dirty_ratio; | 305 | dirty_ratio = vm_dirty_ratio; |
| 311 | if (dirty_ratio > unmapped_ratio / 2) | ||
| 312 | dirty_ratio = unmapped_ratio / 2; | ||
| 313 | |||
| 314 | if (dirty_ratio < 5) | 306 | if (dirty_ratio < 5) |
| 315 | dirty_ratio = 5; | 307 | dirty_ratio = 5; |
| 316 | 308 | ||
| @@ -355,8 +347,8 @@ get_dirty_limits(long *pbackground, long *pdirty, long *pbdi_dirty, | |||
| 355 | */ | 347 | */ |
| 356 | static void balance_dirty_pages(struct address_space *mapping) | 348 | static void balance_dirty_pages(struct address_space *mapping) |
| 357 | { | 349 | { |
| 358 | long bdi_nr_reclaimable; | 350 | long nr_reclaimable, bdi_nr_reclaimable; |
| 359 | long bdi_nr_writeback; | 351 | long nr_writeback, bdi_nr_writeback; |
| 360 | long background_thresh; | 352 | long background_thresh; |
| 361 | long dirty_thresh; | 353 | long dirty_thresh; |
| 362 | long bdi_thresh; | 354 | long bdi_thresh; |
| @@ -376,11 +368,26 @@ static void balance_dirty_pages(struct address_space *mapping) | |||
| 376 | 368 | ||
| 377 | get_dirty_limits(&background_thresh, &dirty_thresh, | 369 | get_dirty_limits(&background_thresh, &dirty_thresh, |
| 378 | &bdi_thresh, bdi); | 370 | &bdi_thresh, bdi); |
| 371 | |||
| 372 | nr_reclaimable = global_page_state(NR_FILE_DIRTY) + | ||
| 373 | global_page_state(NR_UNSTABLE_NFS); | ||
| 374 | nr_writeback = global_page_state(NR_WRITEBACK); | ||
| 375 | |||
| 379 | bdi_nr_reclaimable = bdi_stat(bdi, BDI_RECLAIMABLE); | 376 | bdi_nr_reclaimable = bdi_stat(bdi, BDI_RECLAIMABLE); |
| 380 | bdi_nr_writeback = bdi_stat(bdi, BDI_WRITEBACK); | 377 | bdi_nr_writeback = bdi_stat(bdi, BDI_WRITEBACK); |
| 378 | |||
| 381 | if (bdi_nr_reclaimable + bdi_nr_writeback <= bdi_thresh) | 379 | if (bdi_nr_reclaimable + bdi_nr_writeback <= bdi_thresh) |
| 382 | break; | 380 | break; |
| 383 | 381 | ||
| 382 | /* | ||
| 383 | * Throttle it only when the background writeback cannot | ||
| 384 | * catch-up. This avoids (excessively) small writeouts | ||
| 385 | * when the bdi limits are ramping up. | ||
| 386 | */ | ||
| 387 | if (nr_reclaimable + nr_writeback < | ||
| 388 | (background_thresh + dirty_thresh) / 2) | ||
| 389 | break; | ||
| 390 | |||
| 384 | if (!bdi->dirty_exceeded) | 391 | if (!bdi->dirty_exceeded) |
| 385 | bdi->dirty_exceeded = 1; | 392 | bdi->dirty_exceeded = 1; |
| 386 | 393 | ||
diff --git a/mm/page_isolation.c b/mm/page_isolation.c index 8f92a29695cc..3444b58033c8 100644 --- a/mm/page_isolation.c +++ b/mm/page_isolation.c | |||
| @@ -55,7 +55,7 @@ start_isolate_page_range(unsigned long start_pfn, unsigned long end_pfn) | |||
| 55 | return 0; | 55 | return 0; |
| 56 | undo: | 56 | undo: |
| 57 | for (pfn = start_pfn; | 57 | for (pfn = start_pfn; |
| 58 | pfn <= undo_pfn; | 58 | pfn < undo_pfn; |
| 59 | pfn += pageblock_nr_pages) | 59 | pfn += pageblock_nr_pages) |
| 60 | unset_migratetype_isolate(pfn_to_page(pfn)); | 60 | unset_migratetype_isolate(pfn_to_page(pfn)); |
| 61 | 61 | ||
| @@ -76,7 +76,7 @@ undo_isolate_page_range(unsigned long start_pfn, unsigned long end_pfn) | |||
| 76 | pfn < end_pfn; | 76 | pfn < end_pfn; |
| 77 | pfn += pageblock_nr_pages) { | 77 | pfn += pageblock_nr_pages) { |
| 78 | page = __first_valid_page(pfn, pageblock_nr_pages); | 78 | page = __first_valid_page(pfn, pageblock_nr_pages); |
| 79 | if (!page || get_pageblock_flags(page) != MIGRATE_ISOLATE) | 79 | if (!page || get_pageblock_migratetype(page) != MIGRATE_ISOLATE) |
| 80 | continue; | 80 | continue; |
| 81 | unset_migratetype_isolate(page); | 81 | unset_migratetype_isolate(page); |
| 82 | } | 82 | } |
| @@ -126,7 +126,7 @@ int test_pages_isolated(unsigned long start_pfn, unsigned long end_pfn) | |||
| 126 | */ | 126 | */ |
| 127 | for (pfn = start_pfn; pfn < end_pfn; pfn += pageblock_nr_pages) { | 127 | for (pfn = start_pfn; pfn < end_pfn; pfn += pageblock_nr_pages) { |
| 128 | page = __first_valid_page(pfn, pageblock_nr_pages); | 128 | page = __first_valid_page(pfn, pageblock_nr_pages); |
| 129 | if (page && get_pageblock_flags(page) != MIGRATE_ISOLATE) | 129 | if (page && get_pageblock_migratetype(page) != MIGRATE_ISOLATE) |
| 130 | break; | 130 | break; |
| 131 | } | 131 | } |
| 132 | if (pfn < end_pfn) | 132 | if (pfn < end_pfn) |
| @@ -183,7 +183,9 @@ static void page_unlock_anon_vma(struct anon_vma *anon_vma) | |||
| 183 | } | 183 | } |
| 184 | 184 | ||
| 185 | /* | 185 | /* |
| 186 | * At what user virtual address is page expected in vma? | 186 | * At what user virtual address is page expected in @vma? |
| 187 | * Returns virtual address or -EFAULT if page's index/offset is not | ||
| 188 | * within the range mapped the @vma. | ||
| 187 | */ | 189 | */ |
| 188 | static inline unsigned long | 190 | static inline unsigned long |
| 189 | vma_address(struct page *page, struct vm_area_struct *vma) | 191 | vma_address(struct page *page, struct vm_area_struct *vma) |
| @@ -193,8 +195,7 @@ vma_address(struct page *page, struct vm_area_struct *vma) | |||
| 193 | 195 | ||
| 194 | address = vma->vm_start + ((pgoff - vma->vm_pgoff) << PAGE_SHIFT); | 196 | address = vma->vm_start + ((pgoff - vma->vm_pgoff) << PAGE_SHIFT); |
| 195 | if (unlikely(address < vma->vm_start || address >= vma->vm_end)) { | 197 | if (unlikely(address < vma->vm_start || address >= vma->vm_end)) { |
| 196 | /* page should be within any vma from prio_tree_next */ | 198 | /* page should be within @vma mapping range */ |
| 197 | BUG_ON(!PageAnon(page)); | ||
| 198 | return -EFAULT; | 199 | return -EFAULT; |
| 199 | } | 200 | } |
| 200 | return address; | 201 | return address; |
| @@ -1043,7 +1043,7 @@ static struct array_cache **alloc_alien_cache(int node, int limit) | |||
| 1043 | } | 1043 | } |
| 1044 | ac_ptr[i] = alloc_arraycache(node, limit, 0xbaadf00d); | 1044 | ac_ptr[i] = alloc_arraycache(node, limit, 0xbaadf00d); |
| 1045 | if (!ac_ptr[i]) { | 1045 | if (!ac_ptr[i]) { |
| 1046 | for (i--; i <= 0; i--) | 1046 | for (i--; i >= 0; i--) |
| 1047 | kfree(ac_ptr[i]); | 1047 | kfree(ac_ptr[i]); |
| 1048 | kfree(ac_ptr); | 1048 | kfree(ac_ptr); |
| 1049 | return NULL; | 1049 | return NULL; |
| @@ -321,7 +321,8 @@ static void *slob_alloc(size_t size, gfp_t gfp, int align, int node) | |||
| 321 | /* Improve fragment distribution and reduce our average | 321 | /* Improve fragment distribution and reduce our average |
| 322 | * search time by starting our next search here. (see | 322 | * search time by starting our next search here. (see |
| 323 | * Knuth vol 1, sec 2.5, pg 449) */ | 323 | * Knuth vol 1, sec 2.5, pg 449) */ |
| 324 | if (free_slob_pages.next != prev->next) | 324 | if (prev != free_slob_pages.prev && |
| 325 | free_slob_pages.next != prev->next) | ||
| 325 | list_move_tail(&free_slob_pages, prev->next); | 326 | list_move_tail(&free_slob_pages, prev->next); |
| 326 | break; | 327 | break; |
| 327 | } | 328 | } |
| @@ -95,8 +95,8 @@ void *krealloc(const void *p, size_t new_size, gfp_t flags) | |||
| 95 | return (void *)p; | 95 | return (void *)p; |
| 96 | 96 | ||
| 97 | ret = kmalloc_track_caller(new_size, flags); | 97 | ret = kmalloc_track_caller(new_size, flags); |
| 98 | if (ret) { | 98 | if (ret && p) { |
| 99 | memcpy(ret, p, min(new_size, ks)); | 99 | memcpy(ret, p, ks); |
| 100 | kfree(p); | 100 | kfree(p); |
| 101 | } | 101 | } |
| 102 | return ret; | 102 | return ret; |
diff --git a/mm/vmstat.c b/mm/vmstat.c index 4651bf153f35..e8d846f57774 100644 --- a/mm/vmstat.c +++ b/mm/vmstat.c | |||
| @@ -803,7 +803,7 @@ static void vmstat_update(struct work_struct *w) | |||
| 803 | sysctl_stat_interval); | 803 | sysctl_stat_interval); |
| 804 | } | 804 | } |
| 805 | 805 | ||
| 806 | static void __devinit start_cpu_timer(int cpu) | 806 | static void __cpuinit start_cpu_timer(int cpu) |
| 807 | { | 807 | { |
| 808 | struct delayed_work *vmstat_work = &per_cpu(vmstat_work, cpu); | 808 | struct delayed_work *vmstat_work = &per_cpu(vmstat_work, cpu); |
| 809 | 809 | ||
diff --git a/net/core/dev.c b/net/core/dev.c index dd40b35bb006..86d62611f2fc 100644 --- a/net/core/dev.c +++ b/net/core/dev.c | |||
| @@ -1171,6 +1171,8 @@ rollback: | |||
| 1171 | nb->notifier_call(nb, NETDEV_UNREGISTER, dev); | 1171 | nb->notifier_call(nb, NETDEV_UNREGISTER, dev); |
| 1172 | } | 1172 | } |
| 1173 | } | 1173 | } |
| 1174 | |||
| 1175 | raw_notifier_chain_unregister(&netdev_chain, nb); | ||
| 1174 | goto unlock; | 1176 | goto unlock; |
| 1175 | } | 1177 | } |
| 1176 | 1178 | ||
diff --git a/net/core/request_sock.c b/net/core/request_sock.c index 5f0818d815e6..45aed75cb571 100644 --- a/net/core/request_sock.c +++ b/net/core/request_sock.c | |||
| @@ -71,6 +71,41 @@ int reqsk_queue_alloc(struct request_sock_queue *queue, | |||
| 71 | 71 | ||
| 72 | EXPORT_SYMBOL(reqsk_queue_alloc); | 72 | EXPORT_SYMBOL(reqsk_queue_alloc); |
| 73 | 73 | ||
| 74 | void __reqsk_queue_destroy(struct request_sock_queue *queue) | ||
| 75 | { | ||
| 76 | struct listen_sock *lopt; | ||
| 77 | size_t lopt_size; | ||
| 78 | |||
| 79 | /* | ||
| 80 | * this is an error recovery path only | ||
| 81 | * no locking needed and the lopt is not NULL | ||
| 82 | */ | ||
| 83 | |||
| 84 | lopt = queue->listen_opt; | ||
| 85 | lopt_size = sizeof(struct listen_sock) + | ||
| 86 | lopt->nr_table_entries * sizeof(struct request_sock *); | ||
| 87 | |||
| 88 | if (lopt_size > PAGE_SIZE) | ||
| 89 | vfree(lopt); | ||
| 90 | else | ||
| 91 | kfree(lopt); | ||
| 92 | } | ||
| 93 | |||
| 94 | EXPORT_SYMBOL(__reqsk_queue_destroy); | ||
| 95 | |||
| 96 | static inline struct listen_sock *reqsk_queue_yank_listen_sk( | ||
| 97 | struct request_sock_queue *queue) | ||
| 98 | { | ||
| 99 | struct listen_sock *lopt; | ||
| 100 | |||
| 101 | write_lock_bh(&queue->syn_wait_lock); | ||
| 102 | lopt = queue->listen_opt; | ||
| 103 | queue->listen_opt = NULL; | ||
| 104 | write_unlock_bh(&queue->syn_wait_lock); | ||
| 105 | |||
| 106 | return lopt; | ||
| 107 | } | ||
| 108 | |||
| 74 | void reqsk_queue_destroy(struct request_sock_queue *queue) | 109 | void reqsk_queue_destroy(struct request_sock_queue *queue) |
| 75 | { | 110 | { |
| 76 | /* make all the listen_opt local to us */ | 111 | /* make all the listen_opt local to us */ |
diff --git a/net/ipv4/route.c b/net/ipv4/route.c index 45651834e1e2..1bff9ed349ff 100644 --- a/net/ipv4/route.c +++ b/net/ipv4/route.c | |||
| @@ -578,6 +578,9 @@ static void rt_check_expire(struct work_struct *work) | |||
| 578 | i = (i + 1) & rt_hash_mask; | 578 | i = (i + 1) & rt_hash_mask; |
| 579 | rthp = &rt_hash_table[i].chain; | 579 | rthp = &rt_hash_table[i].chain; |
| 580 | 580 | ||
| 581 | if (need_resched()) | ||
| 582 | cond_resched(); | ||
| 583 | |||
| 581 | if (*rthp == NULL) | 584 | if (*rthp == NULL) |
| 582 | continue; | 585 | continue; |
| 583 | spin_lock_bh(rt_hash_lock_addr(i)); | 586 | spin_lock_bh(rt_hash_lock_addr(i)); |
diff --git a/net/ipv4/tcp_input.c b/net/ipv4/tcp_input.c index 20c9440ab85e..0f0c1c9829a1 100644 --- a/net/ipv4/tcp_input.c +++ b/net/ipv4/tcp_input.c | |||
| @@ -1269,6 +1269,9 @@ tcp_sacktag_write_queue(struct sock *sk, struct sk_buff *ack_skb, u32 prior_snd_ | |||
| 1269 | if (before(TCP_SKB_CB(ack_skb)->ack_seq, prior_snd_una - tp->max_window)) | 1269 | if (before(TCP_SKB_CB(ack_skb)->ack_seq, prior_snd_una - tp->max_window)) |
| 1270 | return 0; | 1270 | return 0; |
| 1271 | 1271 | ||
| 1272 | if (!tp->packets_out) | ||
| 1273 | goto out; | ||
| 1274 | |||
| 1272 | /* SACK fastpath: | 1275 | /* SACK fastpath: |
| 1273 | * if the only SACK change is the increase of the end_seq of | 1276 | * if the only SACK change is the increase of the end_seq of |
| 1274 | * the first block then only apply that SACK block | 1277 | * the first block then only apply that SACK block |
| @@ -1515,6 +1518,8 @@ tcp_sacktag_write_queue(struct sock *sk, struct sk_buff *ack_skb, u32 prior_snd_ | |||
| 1515 | (!tp->frto_highmark || after(tp->snd_una, tp->frto_highmark))) | 1518 | (!tp->frto_highmark || after(tp->snd_una, tp->frto_highmark))) |
| 1516 | tcp_update_reordering(sk, tp->fackets_out - reord, 0); | 1519 | tcp_update_reordering(sk, tp->fackets_out - reord, 0); |
| 1517 | 1520 | ||
| 1521 | out: | ||
| 1522 | |||
| 1518 | #if FASTRETRANS_DEBUG > 0 | 1523 | #if FASTRETRANS_DEBUG > 0 |
| 1519 | BUG_TRAP((int)tp->sacked_out >= 0); | 1524 | BUG_TRAP((int)tp->sacked_out >= 0); |
| 1520 | BUG_TRAP((int)tp->lost_out >= 0); | 1525 | BUG_TRAP((int)tp->lost_out >= 0); |
| @@ -1669,6 +1674,9 @@ void tcp_enter_frto(struct sock *sk) | |||
| 1669 | } | 1674 | } |
| 1670 | tcp_verify_left_out(tp); | 1675 | tcp_verify_left_out(tp); |
| 1671 | 1676 | ||
| 1677 | /* Too bad if TCP was application limited */ | ||
| 1678 | tp->snd_cwnd = min(tp->snd_cwnd, tcp_packets_in_flight(tp) + 1); | ||
| 1679 | |||
| 1672 | /* Earlier loss recovery underway (see RFC4138; Appendix B). | 1680 | /* Earlier loss recovery underway (see RFC4138; Appendix B). |
| 1673 | * The last condition is necessary at least in tp->frto_counter case. | 1681 | * The last condition is necessary at least in tp->frto_counter case. |
| 1674 | */ | 1682 | */ |
| @@ -1701,6 +1709,8 @@ static void tcp_enter_frto_loss(struct sock *sk, int allowed_segments, int flag) | |||
| 1701 | tcp_for_write_queue(skb, sk) { | 1709 | tcp_for_write_queue(skb, sk) { |
| 1702 | if (skb == tcp_send_head(sk)) | 1710 | if (skb == tcp_send_head(sk)) |
| 1703 | break; | 1711 | break; |
| 1712 | |||
| 1713 | TCP_SKB_CB(skb)->sacked &= ~TCPCB_LOST; | ||
| 1704 | /* | 1714 | /* |
| 1705 | * Count the retransmission made on RTO correctly (only when | 1715 | * Count the retransmission made on RTO correctly (only when |
| 1706 | * waiting for the first ACK and did not get it)... | 1716 | * waiting for the first ACK and did not get it)... |
| @@ -1714,7 +1724,7 @@ static void tcp_enter_frto_loss(struct sock *sk, int allowed_segments, int flag) | |||
| 1714 | } else { | 1724 | } else { |
| 1715 | if (TCP_SKB_CB(skb)->sacked & TCPCB_RETRANS) | 1725 | if (TCP_SKB_CB(skb)->sacked & TCPCB_RETRANS) |
| 1716 | tp->undo_marker = 0; | 1726 | tp->undo_marker = 0; |
| 1717 | TCP_SKB_CB(skb)->sacked &= ~(TCPCB_LOST|TCPCB_SACKED_RETRANS); | 1727 | TCP_SKB_CB(skb)->sacked &= ~TCPCB_SACKED_RETRANS; |
| 1718 | } | 1728 | } |
| 1719 | 1729 | ||
| 1720 | /* Don't lost mark skbs that were fwd transmitted after RTO */ | 1730 | /* Don't lost mark skbs that were fwd transmitted after RTO */ |
| @@ -3103,11 +3113,11 @@ static int tcp_ack(struct sock *sk, struct sk_buff *skb, int flag) | |||
| 3103 | /* See if we can take anything off of the retransmit queue. */ | 3113 | /* See if we can take anything off of the retransmit queue. */ |
| 3104 | flag |= tcp_clean_rtx_queue(sk, &seq_rtt, prior_fackets); | 3114 | flag |= tcp_clean_rtx_queue(sk, &seq_rtt, prior_fackets); |
| 3105 | 3115 | ||
| 3116 | if (tp->frto_counter) | ||
| 3117 | frto_cwnd = tcp_process_frto(sk, flag); | ||
| 3106 | /* Guarantee sacktag reordering detection against wrap-arounds */ | 3118 | /* Guarantee sacktag reordering detection against wrap-arounds */ |
| 3107 | if (before(tp->frto_highmark, tp->snd_una)) | 3119 | if (before(tp->frto_highmark, tp->snd_una)) |
| 3108 | tp->frto_highmark = 0; | 3120 | tp->frto_highmark = 0; |
| 3109 | if (tp->frto_counter) | ||
| 3110 | frto_cwnd = tcp_process_frto(sk, flag); | ||
| 3111 | 3121 | ||
| 3112 | if (tcp_ack_is_dubious(sk, flag)) { | 3122 | if (tcp_ack_is_dubious(sk, flag)) { |
| 3113 | /* Advance CWND, if state allows this. */ | 3123 | /* Advance CWND, if state allows this. */ |
diff --git a/net/mac80211/ieee80211_i.h b/net/mac80211/ieee80211_i.h index b4e32ab3664d..72e1c93dd87e 100644 --- a/net/mac80211/ieee80211_i.h +++ b/net/mac80211/ieee80211_i.h | |||
| @@ -242,6 +242,8 @@ struct ieee80211_if_sta { | |||
| 242 | u8 bssid[ETH_ALEN], prev_bssid[ETH_ALEN]; | 242 | u8 bssid[ETH_ALEN], prev_bssid[ETH_ALEN]; |
| 243 | u8 ssid[IEEE80211_MAX_SSID_LEN]; | 243 | u8 ssid[IEEE80211_MAX_SSID_LEN]; |
| 244 | size_t ssid_len; | 244 | size_t ssid_len; |
| 245 | u8 scan_ssid[IEEE80211_MAX_SSID_LEN]; | ||
| 246 | size_t scan_ssid_len; | ||
| 245 | u16 aid; | 247 | u16 aid; |
| 246 | u16 ap_capab, capab; | 248 | u16 ap_capab, capab; |
| 247 | u8 *extra_ie; /* to be added to the end of AssocReq */ | 249 | u8 *extra_ie; /* to be added to the end of AssocReq */ |
diff --git a/net/mac80211/ieee80211_sta.c b/net/mac80211/ieee80211_sta.c index 2079e988fc56..015b3f879aa9 100644 --- a/net/mac80211/ieee80211_sta.c +++ b/net/mac80211/ieee80211_sta.c | |||
| @@ -2002,7 +2002,10 @@ void ieee80211_sta_work(struct work_struct *work) | |||
| 2002 | if (ifsta->state != IEEE80211_AUTHENTICATE && | 2002 | if (ifsta->state != IEEE80211_AUTHENTICATE && |
| 2003 | ifsta->state != IEEE80211_ASSOCIATE && | 2003 | ifsta->state != IEEE80211_ASSOCIATE && |
| 2004 | test_and_clear_bit(IEEE80211_STA_REQ_SCAN, &ifsta->request)) { | 2004 | test_and_clear_bit(IEEE80211_STA_REQ_SCAN, &ifsta->request)) { |
| 2005 | ieee80211_sta_start_scan(dev, NULL, 0); | 2005 | if (ifsta->scan_ssid_len) |
| 2006 | ieee80211_sta_start_scan(dev, ifsta->scan_ssid, ifsta->scan_ssid_len); | ||
| 2007 | else | ||
| 2008 | ieee80211_sta_start_scan(dev, NULL, 0); | ||
| 2006 | return; | 2009 | return; |
| 2007 | } | 2010 | } |
| 2008 | 2011 | ||
| @@ -2872,6 +2875,9 @@ int ieee80211_sta_req_scan(struct net_device *dev, u8 *ssid, size_t ssid_len) | |||
| 2872 | return -EBUSY; | 2875 | return -EBUSY; |
| 2873 | } | 2876 | } |
| 2874 | 2877 | ||
| 2878 | ifsta->scan_ssid_len = ssid_len; | ||
| 2879 | if (ssid_len) | ||
| 2880 | memcpy(ifsta->scan_ssid, ssid, ssid_len); | ||
| 2875 | set_bit(IEEE80211_STA_REQ_SCAN, &ifsta->request); | 2881 | set_bit(IEEE80211_STA_REQ_SCAN, &ifsta->request); |
| 2876 | queue_work(local->hw.workqueue, &ifsta->work); | 2882 | queue_work(local->hw.workqueue, &ifsta->work); |
| 2877 | return 0; | 2883 | return 0; |
diff --git a/net/netfilter/nf_conntrack_extend.c b/net/netfilter/nf_conntrack_extend.c index a1a65a1313b3..cf6ba6659a80 100644 --- a/net/netfilter/nf_conntrack_extend.c +++ b/net/netfilter/nf_conntrack_extend.c | |||
| @@ -109,7 +109,7 @@ void *__nf_ct_ext_add(struct nf_conn *ct, enum nf_ct_ext_id id, gfp_t gfp) | |||
| 109 | rcu_read_lock(); | 109 | rcu_read_lock(); |
| 110 | t = rcu_dereference(nf_ct_ext_types[i]); | 110 | t = rcu_dereference(nf_ct_ext_types[i]); |
| 111 | if (t && t->move) | 111 | if (t && t->move) |
| 112 | t->move(ct, ct->ext + ct->ext->offset[id]); | 112 | t->move(ct, ct->ext + ct->ext->offset[i]); |
| 113 | rcu_read_unlock(); | 113 | rcu_read_unlock(); |
| 114 | } | 114 | } |
| 115 | kfree(ct->ext); | 115 | kfree(ct->ext); |
diff --git a/net/netfilter/nf_sockopt.c b/net/netfilter/nf_sockopt.c index 87bc1443c520..3dd4b3c76d81 100644 --- a/net/netfilter/nf_sockopt.c +++ b/net/netfilter/nf_sockopt.c | |||
| @@ -143,12 +143,12 @@ static int compat_nf_sockopt(struct sock *sk, int pf, int val, | |||
| 143 | if (ops->compat_get) | 143 | if (ops->compat_get) |
| 144 | ret = ops->compat_get(sk, val, opt, len); | 144 | ret = ops->compat_get(sk, val, opt, len); |
| 145 | else | 145 | else |
| 146 | ret = ops->get(sk, val, ops, len); | 146 | ret = ops->get(sk, val, opt, len); |
| 147 | } else { | 147 | } else { |
| 148 | if (ops->compat_set) | 148 | if (ops->compat_set) |
| 149 | ret = ops->compat_set(sk, val, ops, *len); | 149 | ret = ops->compat_set(sk, val, opt, *len); |
| 150 | else | 150 | else |
| 151 | ret = ops->set(sk, val, ops, *len); | 151 | ret = ops->set(sk, val, opt, *len); |
| 152 | } | 152 | } |
| 153 | 153 | ||
| 154 | module_put(ops->owner); | 154 | module_put(ops->owner); |
diff --git a/net/sched/sch_generic.c b/net/sched/sch_generic.c index fa1a6f45dc41..e595e6570ce0 100644 --- a/net/sched/sch_generic.c +++ b/net/sched/sch_generic.c | |||
| @@ -134,7 +134,7 @@ static inline int qdisc_restart(struct net_device *dev) | |||
| 134 | { | 134 | { |
| 135 | struct Qdisc *q = dev->qdisc; | 135 | struct Qdisc *q = dev->qdisc; |
| 136 | struct sk_buff *skb; | 136 | struct sk_buff *skb; |
| 137 | int ret; | 137 | int ret = NETDEV_TX_BUSY; |
| 138 | 138 | ||
| 139 | /* Dequeue packet */ | 139 | /* Dequeue packet */ |
| 140 | if (unlikely((skb = dev_dequeue_skb(dev, q)) == NULL)) | 140 | if (unlikely((skb = dev_dequeue_skb(dev, q)) == NULL)) |
| @@ -145,7 +145,8 @@ static inline int qdisc_restart(struct net_device *dev) | |||
| 145 | spin_unlock(&dev->queue_lock); | 145 | spin_unlock(&dev->queue_lock); |
| 146 | 146 | ||
| 147 | HARD_TX_LOCK(dev, smp_processor_id()); | 147 | HARD_TX_LOCK(dev, smp_processor_id()); |
| 148 | ret = dev_hard_start_xmit(skb, dev); | 148 | if (!netif_subqueue_stopped(dev, skb)) |
| 149 | ret = dev_hard_start_xmit(skb, dev); | ||
| 149 | HARD_TX_UNLOCK(dev); | 150 | HARD_TX_UNLOCK(dev); |
| 150 | 151 | ||
| 151 | spin_lock(&dev->queue_lock); | 152 | spin_lock(&dev->queue_lock); |
diff --git a/net/sunrpc/xprtrdma/transport.c b/net/sunrpc/xprtrdma/transport.c index dc55cc974c90..1afeb3eb8e4c 100644 --- a/net/sunrpc/xprtrdma/transport.c +++ b/net/sunrpc/xprtrdma/transport.c | |||
| @@ -320,9 +320,9 @@ xprt_setup_rdma(struct xprt_create *args) | |||
| 320 | xprt->slot = kcalloc(xprt->max_reqs, | 320 | xprt->slot = kcalloc(xprt->max_reqs, |
| 321 | sizeof(struct rpc_rqst), GFP_KERNEL); | 321 | sizeof(struct rpc_rqst), GFP_KERNEL); |
| 322 | if (xprt->slot == NULL) { | 322 | if (xprt->slot == NULL) { |
| 323 | kfree(xprt); | ||
| 324 | dprintk("RPC: %s: couldn't allocate %d slots\n", | 323 | dprintk("RPC: %s: couldn't allocate %d slots\n", |
| 325 | __func__, xprt->max_reqs); | 324 | __func__, xprt->max_reqs); |
| 325 | kfree(xprt); | ||
| 326 | return ERR_PTR(-ENOMEM); | 326 | return ERR_PTR(-ENOMEM); |
| 327 | } | 327 | } |
| 328 | 328 | ||
diff --git a/samples/markers/marker-example.c b/samples/markers/marker-example.c index e787c6d16dd7..05e438f8b4e2 100644 --- a/samples/markers/marker-example.c +++ b/samples/markers/marker-example.c | |||
| @@ -19,7 +19,8 @@ static int my_open(struct inode *inode, struct file *file) | |||
| 19 | { | 19 | { |
| 20 | int i; | 20 | int i; |
| 21 | 21 | ||
| 22 | trace_mark(subsystem_event, "%d %s", 123, "example string"); | 22 | trace_mark(subsystem_event, "integer %d string %s", 123, |
| 23 | "example string"); | ||
| 23 | for (i = 0; i < 10; i++) | 24 | for (i = 0; i < 10; i++) |
| 24 | trace_mark(subsystem_eventb, MARK_NOARGS); | 25 | trace_mark(subsystem_eventb, MARK_NOARGS); |
| 25 | return -EPERM; | 26 | return -EPERM; |
diff --git a/samples/markers/probe-example.c b/samples/markers/probe-example.c index 238b2e384fc8..a36797535615 100644 --- a/samples/markers/probe-example.c +++ b/samples/markers/probe-example.c | |||
| @@ -53,7 +53,7 @@ void probe_subsystem_eventb(const struct marker *mdata, void *private, | |||
| 53 | static struct probe_data probe_array[] = | 53 | static struct probe_data probe_array[] = |
| 54 | { | 54 | { |
| 55 | { .name = "subsystem_event", | 55 | { .name = "subsystem_event", |
| 56 | .format = "%d %s", | 56 | .format = "integer %d string %s", |
| 57 | .probe_func = probe_subsystem_event }, | 57 | .probe_func = probe_subsystem_event }, |
| 58 | { .name = "subsystem_eventb", | 58 | { .name = "subsystem_eventb", |
| 59 | .format = MARK_NOARGS, | 59 | .format = MARK_NOARGS, |
diff --git a/scripts/kconfig/Makefile b/scripts/kconfig/Makefile index 59594126e8b6..1ad6f7fc490a 100644 --- a/scripts/kconfig/Makefile +++ b/scripts/kconfig/Makefile | |||
| @@ -4,12 +4,7 @@ | |||
| 4 | 4 | ||
| 5 | PHONY += oldconfig xconfig gconfig menuconfig config silentoldconfig update-po-config | 5 | PHONY += oldconfig xconfig gconfig menuconfig config silentoldconfig update-po-config |
| 6 | 6 | ||
| 7 | # If a arch/$(SRCARCH)/Kconfig.$(ARCH) file exist use it | 7 | Kconfig := arch/$(SRCARCH)/Kconfig |
| 8 | ifneq ($(wildcard $(srctree)/arch/$(SRCARCH)/Kconfig.$(ARCH)),) | ||
| 9 | Kconfig := arch/$(SRCARCH)/Kconfig.$(ARCH) | ||
| 10 | else | ||
| 11 | Kconfig := arch/$(SRCARCH)/Kconfig | ||
| 12 | endif | ||
| 13 | 8 | ||
| 14 | xconfig: $(obj)/qconf | 9 | xconfig: $(obj)/qconf |
| 15 | $< $(Kconfig) | 10 | $< $(Kconfig) |
diff --git a/scripts/kconfig/confdata.c b/scripts/kconfig/confdata.c index b2913e9da495..e0f402f3b75d 100644 --- a/scripts/kconfig/confdata.c +++ b/scripts/kconfig/confdata.c | |||
| @@ -83,6 +83,68 @@ char *conf_get_default_confname(void) | |||
| 83 | return name; | 83 | return name; |
| 84 | } | 84 | } |
| 85 | 85 | ||
| 86 | static int conf_set_sym_val(struct symbol *sym, int def, int def_flags, char *p) | ||
| 87 | { | ||
| 88 | char *p2; | ||
| 89 | |||
| 90 | switch (sym->type) { | ||
| 91 | case S_TRISTATE: | ||
| 92 | if (p[0] == 'm') { | ||
| 93 | sym->def[def].tri = mod; | ||
| 94 | sym->flags |= def_flags; | ||
| 95 | break; | ||
| 96 | } | ||
| 97 | case S_BOOLEAN: | ||
| 98 | if (p[0] == 'y') { | ||
| 99 | sym->def[def].tri = yes; | ||
| 100 | sym->flags |= def_flags; | ||
| 101 | break; | ||
| 102 | } | ||
| 103 | if (p[0] == 'n') { | ||
| 104 | sym->def[def].tri = no; | ||
| 105 | sym->flags |= def_flags; | ||
| 106 | break; | ||
| 107 | } | ||
| 108 | conf_warning("symbol value '%s' invalid for %s", p, sym->name); | ||
| 109 | break; | ||
| 110 | case S_OTHER: | ||
| 111 | if (*p != '"') { | ||
| 112 | for (p2 = p; *p2 && !isspace(*p2); p2++) | ||
| 113 | ; | ||
| 114 | sym->type = S_STRING; | ||
| 115 | goto done; | ||
| 116 | } | ||
| 117 | case S_STRING: | ||
| 118 | if (*p++ != '"') | ||
| 119 | break; | ||
| 120 | for (p2 = p; (p2 = strpbrk(p2, "\"\\")); p2++) { | ||
| 121 | if (*p2 == '"') { | ||
| 122 | *p2 = 0; | ||
| 123 | break; | ||
| 124 | } | ||
| 125 | memmove(p2, p2 + 1, strlen(p2)); | ||
| 126 | } | ||
| 127 | if (!p2) { | ||
| 128 | conf_warning("invalid string found"); | ||
| 129 | return 1; | ||
| 130 | } | ||
| 131 | case S_INT: | ||
| 132 | case S_HEX: | ||
| 133 | done: | ||
| 134 | if (sym_string_valid(sym, p)) { | ||
| 135 | sym->def[def].val = strdup(p); | ||
| 136 | sym->flags |= def_flags; | ||
| 137 | } else { | ||
| 138 | conf_warning("symbol value '%s' invalid for %s", p, sym->name); | ||
| 139 | return 1; | ||
| 140 | } | ||
| 141 | break; | ||
| 142 | default: | ||
| 143 | ; | ||
| 144 | } | ||
| 145 | return 0; | ||
| 146 | } | ||
| 147 | |||
| 86 | int conf_read_simple(const char *name, int def) | 148 | int conf_read_simple(const char *name, int def) |
| 87 | { | 149 | { |
| 88 | FILE *in = NULL; | 150 | FILE *in = NULL; |
| @@ -213,61 +275,8 @@ load: | |||
| 213 | conf_warning("trying to reassign symbol %s", sym->name); | 275 | conf_warning("trying to reassign symbol %s", sym->name); |
| 214 | break; | 276 | break; |
| 215 | } | 277 | } |
| 216 | switch (sym->type) { | 278 | if (conf_set_sym_val(sym, def, def_flags, p)) |
| 217 | case S_TRISTATE: | 279 | continue; |
| 218 | if (p[0] == 'm') { | ||
| 219 | sym->def[def].tri = mod; | ||
| 220 | sym->flags |= def_flags; | ||
| 221 | break; | ||
| 222 | } | ||
| 223 | case S_BOOLEAN: | ||
| 224 | if (p[0] == 'y') { | ||
| 225 | sym->def[def].tri = yes; | ||
| 226 | sym->flags |= def_flags; | ||
| 227 | break; | ||
| 228 | } | ||
| 229 | if (p[0] == 'n') { | ||
| 230 | sym->def[def].tri = no; | ||
| 231 | sym->flags |= def_flags; | ||
| 232 | break; | ||
| 233 | } | ||
| 234 | conf_warning("symbol value '%s' invalid for %s", p, sym->name); | ||
| 235 | break; | ||
| 236 | case S_OTHER: | ||
| 237 | if (*p != '"') { | ||
| 238 | for (p2 = p; *p2 && !isspace(*p2); p2++) | ||
| 239 | ; | ||
| 240 | sym->type = S_STRING; | ||
| 241 | goto done; | ||
| 242 | } | ||
| 243 | case S_STRING: | ||
| 244 | if (*p++ != '"') | ||
| 245 | break; | ||
| 246 | for (p2 = p; (p2 = strpbrk(p2, "\"\\")); p2++) { | ||
| 247 | if (*p2 == '"') { | ||
| 248 | *p2 = 0; | ||
| 249 | break; | ||
| 250 | } | ||
| 251 | memmove(p2, p2 + 1, strlen(p2)); | ||
| 252 | } | ||
| 253 | if (!p2) { | ||
| 254 | conf_warning("invalid string found"); | ||
| 255 | continue; | ||
| 256 | } | ||
| 257 | case S_INT: | ||
| 258 | case S_HEX: | ||
| 259 | done: | ||
| 260 | if (sym_string_valid(sym, p)) { | ||
| 261 | sym->def[def].val = strdup(p); | ||
| 262 | sym->flags |= def_flags; | ||
| 263 | } else { | ||
| 264 | conf_warning("symbol value '%s' invalid for %s", p, sym->name); | ||
| 265 | continue; | ||
| 266 | } | ||
| 267 | break; | ||
| 268 | default: | ||
| 269 | ; | ||
| 270 | } | ||
| 271 | break; | 280 | break; |
| 272 | case '\r': | 281 | case '\r': |
| 273 | case '\n': | 282 | case '\n': |
diff --git a/security/commoncap.c b/security/commoncap.c index bf67871173ef..302e8d0839a9 100644 --- a/security/commoncap.c +++ b/security/commoncap.c | |||
| @@ -526,6 +526,10 @@ int cap_task_kill(struct task_struct *p, struct siginfo *info, | |||
| 526 | if (info != SEND_SIG_NOINFO && (is_si_special(info) || SI_FROMKERNEL(info))) | 526 | if (info != SEND_SIG_NOINFO && (is_si_special(info) || SI_FROMKERNEL(info))) |
| 527 | return 0; | 527 | return 0; |
| 528 | 528 | ||
| 529 | /* sigcont is permitted within same session */ | ||
| 530 | if (sig == SIGCONT && (task_session_nr(current) == task_session_nr(p))) | ||
| 531 | return 0; | ||
| 532 | |||
| 529 | if (secid) | 533 | if (secid) |
| 530 | /* | 534 | /* |
| 531 | * Signal sent as a particular user. | 535 | * Signal sent as a particular user. |
