diff options
| author | Ingo Molnar <mingo@elte.hu> | 2008-08-15 12:15:17 -0400 |
|---|---|---|
| committer | Ingo Molnar <mingo@elte.hu> | 2008-08-15 12:15:17 -0400 |
| commit | f3efbe582b5396d134024c03a5fa253f2a85d9a6 (patch) | |
| tree | e4e15b7567b82d24cb1e7327398286a2b88df04c /kernel/irq/manage.c | |
| parent | 05d3ed0a1fe3ea05ab9f3b8d32576a0bc2e19660 (diff) | |
| parent | b635acec48bcaa9183fcbf4e3955616b0d4119b5 (diff) | |
Merge branch 'linus' into x86/gart
Diffstat (limited to 'kernel/irq/manage.c')
| -rw-r--r-- | kernel/irq/manage.c | 111 |
1 files changed, 72 insertions, 39 deletions
diff --git a/kernel/irq/manage.c b/kernel/irq/manage.c index 77a51be36010..0314074fa232 100644 --- a/kernel/irq/manage.c +++ b/kernel/irq/manage.c | |||
| @@ -177,8 +177,7 @@ static void __enable_irq(struct irq_desc *desc, unsigned int irq) | |||
| 177 | { | 177 | { |
| 178 | switch (desc->depth) { | 178 | switch (desc->depth) { |
| 179 | case 0: | 179 | case 0: |
| 180 | printk(KERN_WARNING "Unbalanced enable for IRQ %d\n", irq); | 180 | WARN(1, KERN_WARNING "Unbalanced enable for IRQ %d\n", irq); |
| 181 | WARN_ON(1); | ||
| 182 | break; | 181 | break; |
| 183 | case 1: { | 182 | case 1: { |
| 184 | unsigned int status = desc->status & ~IRQ_DISABLED; | 183 | unsigned int status = desc->status & ~IRQ_DISABLED; |
| @@ -217,6 +216,17 @@ void enable_irq(unsigned int irq) | |||
| 217 | } | 216 | } |
| 218 | EXPORT_SYMBOL(enable_irq); | 217 | EXPORT_SYMBOL(enable_irq); |
| 219 | 218 | ||
| 219 | int set_irq_wake_real(unsigned int irq, unsigned int on) | ||
| 220 | { | ||
| 221 | struct irq_desc *desc = irq_desc + irq; | ||
| 222 | int ret = -ENXIO; | ||
| 223 | |||
| 224 | if (desc->chip->set_wake) | ||
| 225 | ret = desc->chip->set_wake(irq, on); | ||
| 226 | |||
| 227 | return ret; | ||
| 228 | } | ||
| 229 | |||
| 220 | /** | 230 | /** |
| 221 | * set_irq_wake - control irq power management wakeup | 231 | * set_irq_wake - control irq power management wakeup |
| 222 | * @irq: interrupt to control | 232 | * @irq: interrupt to control |
| @@ -233,30 +243,32 @@ int set_irq_wake(unsigned int irq, unsigned int on) | |||
| 233 | { | 243 | { |
| 234 | struct irq_desc *desc = irq_desc + irq; | 244 | struct irq_desc *desc = irq_desc + irq; |
| 235 | unsigned long flags; | 245 | unsigned long flags; |
| 236 | int ret = -ENXIO; | 246 | int ret = 0; |
| 237 | int (*set_wake)(unsigned, unsigned) = desc->chip->set_wake; | ||
| 238 | 247 | ||
| 239 | /* wakeup-capable irqs can be shared between drivers that | 248 | /* wakeup-capable irqs can be shared between drivers that |
| 240 | * don't need to have the same sleep mode behaviors. | 249 | * don't need to have the same sleep mode behaviors. |
| 241 | */ | 250 | */ |
| 242 | spin_lock_irqsave(&desc->lock, flags); | 251 | spin_lock_irqsave(&desc->lock, flags); |
| 243 | if (on) { | 252 | if (on) { |
| 244 | if (desc->wake_depth++ == 0) | 253 | if (desc->wake_depth++ == 0) { |
| 245 | desc->status |= IRQ_WAKEUP; | 254 | ret = set_irq_wake_real(irq, on); |
| 246 | else | 255 | if (ret) |
| 247 | set_wake = NULL; | 256 | desc->wake_depth = 0; |
| 257 | else | ||
| 258 | desc->status |= IRQ_WAKEUP; | ||
| 259 | } | ||
| 248 | } else { | 260 | } else { |
| 249 | if (desc->wake_depth == 0) { | 261 | if (desc->wake_depth == 0) { |
| 250 | printk(KERN_WARNING "Unbalanced IRQ %d " | 262 | WARN(1, "Unbalanced IRQ %d wake disable\n", irq); |
| 251 | "wake disable\n", irq); | 263 | } else if (--desc->wake_depth == 0) { |
| 252 | WARN_ON(1); | 264 | ret = set_irq_wake_real(irq, on); |
| 253 | } else if (--desc->wake_depth == 0) | 265 | if (ret) |
| 254 | desc->status &= ~IRQ_WAKEUP; | 266 | desc->wake_depth = 1; |
| 255 | else | 267 | else |
| 256 | set_wake = NULL; | 268 | desc->status &= ~IRQ_WAKEUP; |
| 269 | } | ||
| 257 | } | 270 | } |
| 258 | if (set_wake) | 271 | |
| 259 | ret = desc->chip->set_wake(irq, on); | ||
| 260 | spin_unlock_irqrestore(&desc->lock, flags); | 272 | spin_unlock_irqrestore(&desc->lock, flags); |
| 261 | return ret; | 273 | return ret; |
| 262 | } | 274 | } |
| @@ -293,6 +305,31 @@ void compat_irq_chip_set_default_handler(struct irq_desc *desc) | |||
| 293 | desc->handle_irq = NULL; | 305 | desc->handle_irq = NULL; |
| 294 | } | 306 | } |
| 295 | 307 | ||
| 308 | static int __irq_set_trigger(struct irq_chip *chip, unsigned int irq, | ||
| 309 | unsigned long flags) | ||
| 310 | { | ||
| 311 | int ret; | ||
| 312 | |||
| 313 | if (!chip || !chip->set_type) { | ||
| 314 | /* | ||
| 315 | * IRQF_TRIGGER_* but the PIC does not support multiple | ||
| 316 | * flow-types? | ||
| 317 | */ | ||
| 318 | pr_warning("No set_type function for IRQ %d (%s)\n", irq, | ||
| 319 | chip ? (chip->name ? : "unknown") : "unknown"); | ||
| 320 | return 0; | ||
| 321 | } | ||
| 322 | |||
| 323 | ret = chip->set_type(irq, flags & IRQF_TRIGGER_MASK); | ||
| 324 | |||
| 325 | if (ret) | ||
| 326 | pr_err("setting trigger mode %d for irq %u failed (%pF)\n", | ||
| 327 | (int)(flags & IRQF_TRIGGER_MASK), | ||
| 328 | irq, chip->set_type); | ||
| 329 | |||
| 330 | return ret; | ||
| 331 | } | ||
| 332 | |||
| 296 | /* | 333 | /* |
| 297 | * Internal function to register an irqaction - typically used to | 334 | * Internal function to register an irqaction - typically used to |
| 298 | * allocate special interrupts that are part of the architecture. | 335 | * allocate special interrupts that are part of the architecture. |
| @@ -304,6 +341,7 @@ int setup_irq(unsigned int irq, struct irqaction *new) | |||
| 304 | const char *old_name = NULL; | 341 | const char *old_name = NULL; |
| 305 | unsigned long flags; | 342 | unsigned long flags; |
| 306 | int shared = 0; | 343 | int shared = 0; |
| 344 | int ret; | ||
| 307 | 345 | ||
| 308 | if (irq >= NR_IRQS) | 346 | if (irq >= NR_IRQS) |
| 309 | return -EINVAL; | 347 | return -EINVAL; |
| @@ -361,35 +399,23 @@ int setup_irq(unsigned int irq, struct irqaction *new) | |||
| 361 | shared = 1; | 399 | shared = 1; |
| 362 | } | 400 | } |
| 363 | 401 | ||
| 364 | *p = new; | ||
| 365 | |||
| 366 | /* Exclude IRQ from balancing */ | ||
| 367 | if (new->flags & IRQF_NOBALANCING) | ||
| 368 | desc->status |= IRQ_NO_BALANCING; | ||
| 369 | |||
| 370 | if (!shared) { | 402 | if (!shared) { |
| 371 | irq_chip_set_defaults(desc->chip); | 403 | irq_chip_set_defaults(desc->chip); |
| 372 | 404 | ||
| 373 | #if defined(CONFIG_IRQ_PER_CPU) | ||
| 374 | if (new->flags & IRQF_PERCPU) | ||
| 375 | desc->status |= IRQ_PER_CPU; | ||
| 376 | #endif | ||
| 377 | |||
| 378 | /* Setup the type (level, edge polarity) if configured: */ | 405 | /* Setup the type (level, edge polarity) if configured: */ |
| 379 | if (new->flags & IRQF_TRIGGER_MASK) { | 406 | if (new->flags & IRQF_TRIGGER_MASK) { |
| 380 | if (desc->chip->set_type) | 407 | ret = __irq_set_trigger(desc->chip, irq, new->flags); |
| 381 | desc->chip->set_type(irq, | 408 | |
| 382 | new->flags & IRQF_TRIGGER_MASK); | 409 | if (ret) { |
| 383 | else | 410 | spin_unlock_irqrestore(&desc->lock, flags); |
| 384 | /* | 411 | return ret; |
| 385 | * IRQF_TRIGGER_* but the PIC does not support | 412 | } |
| 386 | * multiple flow-types? | ||
| 387 | */ | ||
| 388 | printk(KERN_WARNING "No IRQF_TRIGGER set_type " | ||
| 389 | "function for IRQ %d (%s)\n", irq, | ||
| 390 | desc->chip->name); | ||
| 391 | } else | 413 | } else |
| 392 | compat_irq_chip_set_default_handler(desc); | 414 | compat_irq_chip_set_default_handler(desc); |
| 415 | #if defined(CONFIG_IRQ_PER_CPU) | ||
| 416 | if (new->flags & IRQF_PERCPU) | ||
| 417 | desc->status |= IRQ_PER_CPU; | ||
| 418 | #endif | ||
| 393 | 419 | ||
| 394 | desc->status &= ~(IRQ_AUTODETECT | IRQ_WAITING | | 420 | desc->status &= ~(IRQ_AUTODETECT | IRQ_WAITING | |
| 395 | IRQ_INPROGRESS | IRQ_SPURIOUS_DISABLED); | 421 | IRQ_INPROGRESS | IRQ_SPURIOUS_DISABLED); |
| @@ -408,6 +434,13 @@ int setup_irq(unsigned int irq, struct irqaction *new) | |||
| 408 | /* Set default affinity mask once everything is setup */ | 434 | /* Set default affinity mask once everything is setup */ |
| 409 | irq_select_affinity(irq); | 435 | irq_select_affinity(irq); |
| 410 | } | 436 | } |
| 437 | |||
| 438 | *p = new; | ||
| 439 | |||
| 440 | /* Exclude IRQ from balancing */ | ||
| 441 | if (new->flags & IRQF_NOBALANCING) | ||
| 442 | desc->status |= IRQ_NO_BALANCING; | ||
| 443 | |||
| 411 | /* Reset broken irq detection when installing new handler */ | 444 | /* Reset broken irq detection when installing new handler */ |
| 412 | desc->irq_count = 0; | 445 | desc->irq_count = 0; |
| 413 | desc->irqs_unhandled = 0; | 446 | desc->irqs_unhandled = 0; |
